Sha256: 831209eac9a4e60ed061a1410997a31d4a000b9b5c4e8d1c2ef1e81c33141be9
Contents?: true
Size: 1.87 KB
Versions: 5
Compression:
Stored size: 1.87 KB
Contents
module GettextI18nRails #translates i18n calls to gettext calls class Backend @@translate_defaults = true cattr_accessor :translate_defaults attr_accessor :backend RUBY19 = (RUBY_VERSION > "1.9") def initialize(*args) self.backend = I18n::Backend::Simple.new(*args) end def available_locales FastGettext.available_locales || [] end def translate(locale, key, options) if gettext_key = gettext_key(key, options) translation = FastGettext._(gettext_key) interpolate(translation, options) else result = backend.translate(locale, key, options) (RUBY19 and result.is_a?(String)) ? result.force_encoding("UTF-8") : result end end def method_missing(method, *args) backend.send(method, *args) end protected def gettext_key(key, options) flat_key = flatten_key key, options if FastGettext.key_exist?(flat_key) flat_key elsif self.class.translate_defaults [*options[:default]].each do |default| #try the scoped(more specific) key first e.g. 'activerecord.errors.my custom message' flat_key = flatten_key default, options return flat_key if FastGettext.key_exist?(flat_key) #try the short key thereafter e.g. 'my custom message' return default if FastGettext.key_exist?(default) end return nil end end def interpolate(string, values) if string.respond_to?(:%) reserved_keys = if defined?(I18n::RESERVED_KEYS) # rails 3+ I18n::RESERVED_KEYS else I18n::Backend::Base::RESERVED_KEYS end string % values.except(*reserved_keys) else string end end def flatten_key key, options scope = [*(options[:scope] || [])] scope.empty? ? key.to_s : "#{scope*'.'}.#{key}" end end end
Version data entries
5 entries across 5 versions & 1 rubygems