Sha256: 8350f7452591ef4b6c274f44e4ec76c1e6154f28db3af118ff94555ad74fd8c4
Contents?: true
Size: 451 Bytes
Versions: 19
Compression:
Stored size: 451 Bytes
Contents
# -*- encoding : utf-8 -*- module Phrase module Formats class Gettext < Phrase::Formats::Base def self.directory_for_locale(locale) "./#{locale.name}/" end def self.filename_for_locale(locale) "#{config.domain}.po" end def self.target_directory "locales/" end def self.locale_aware? true end def self.extensions [:po] end end end end
Version data entries
19 entries across 19 versions & 1 rubygems