Module: I18n::Backend::Base
- Includes:
- Transliterator
- Defined in:
- lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb
Constant Summary collapse
- RESERVED_KEYS =
[:scope, :default, :separator, :resolve]
- RESERVED_KEYS_PATTERN =
/%\{(#{RESERVED_KEYS.join("|")})\}/
- DEPRECATED_INTERPOLATION_SYNTAX_PATTERN =
/(\\)?\{\{([^\}]+)\}\}/
- INTERPOLATION_SYNTAX_PATTERN =
/%\{([^\}]+)\}/
Constants included from Transliterator
Transliterator::DEFAULT_REPLACEMENT_CHAR
Instance Method Summary collapse
-
#available_locales ⇒ Object
Returns an array of locales for which translations are available ignoring the reserved translation meta data key :i18n.
-
#load_translations(*filenames) ⇒ Object
Accepts a list of paths to translation files.
-
#localize(locale, object, format = :default, options = {}) ⇒ Object
Acts the same as
strftime
, but uses a localized version of the format string. - #reload! ⇒ Object
-
#store_translations(locale, data, options = {}) ⇒ Object
This method receives a locale, a data hash and options for storing translations.
- #translate(locale, key, options = {}) ⇒ Object
Methods included from Transliterator
Instance Method Details
#available_locales ⇒ Object
Returns an array of locales for which translations are available ignoring the reserved translation meta data key :i18n.
81 82 83 |
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb', line 81 def available_locales raise NotImplementedError end |
#load_translations(*filenames) ⇒ Object
Accepts a list of paths to translation files. Loads translations from plain Ruby (*.rb) or YAML files (*.yml). See #load_rb and #load_yml for details.
19 20 21 22 |
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb', line 19 def load_translations(*filenames) filenames = I18n.load_path.flatten if filenames.empty? filenames.each { |filename| load_file(filename) } end |
#localize(locale, object, format = :default, options = {}) ⇒ Object
Acts the same as strftime
, but uses a localized version of the format string. Takes a key from the date/time formats translations as a format argument (e.g., :short
in :'date.formats'
).
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb', line 56 def localize(locale, object, format = :default, = {}) raise ArgumentError, "Object must be a Date, DateTime or Time object. #{object.inspect} given." unless object.respond_to?(:strftime) if Symbol === format key = format type = object.respond_to?(:sec) ? 'time' : 'date' format = I18n.t(:"#{type}.formats.#{key}", .merge(:raise => true, :object => object, :locale => locale)) end # format = resolve(locale, object, format, options) format = format.to_s.gsub(/%[aAbBp]/) do |match| case match when '%a' then I18n.t(:"date.abbr_day_names", :locale => locale, :format => format)[object.wday] when '%A' then I18n.t(:"date.day_names", :locale => locale, :format => format)[object.wday] when '%b' then I18n.t(:"date.abbr_month_names", :locale => locale, :format => format)[object.mon] when '%B' then I18n.t(:"date.month_names", :locale => locale, :format => format)[object.mon] when '%p' then I18n.t(:"time.#{object.hour < 12 ? :am : :pm}", :locale => locale, :format => format) if object.respond_to? :hour end end object.strftime(format) end |
#reload! ⇒ Object
85 86 87 |
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb', line 85 def reload! @skip_syntax_deprecation = false end |
#store_translations(locale, data, options = {}) ⇒ Object
This method receives a locale, a data hash and options for storing translations. Should be implemented
26 27 28 |
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb', line 26 def store_translations(locale, data, = {}) raise NotImplementedError end |
#translate(locale, key, options = {}) ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/base.rb', line 30 def translate(locale, key, = {}) raise InvalidLocale.new(locale) unless locale return key.map { |k| translate(locale, k, ) } if key.is_a?(Array) entry = key && lookup(locale, key, [:scope], ) if .empty? entry = resolve(locale, key, entry, ) else count, default = .values_at(:count, :default) values = .except(*RESERVED_KEYS) entry = entry.nil? && default ? default(locale, key, default, ) : resolve(locale, key, entry, ) end raise(I18n::MissingTranslationData.new(locale, key, )) if entry.nil? entry = entry.dup if entry.is_a?(String) entry = pluralize(locale, entry, count) if count entry = interpolate(locale, entry, values) if values entry end |