Class: Liquid::I18n
- Inherits:
-
Object
- Object
- Liquid::I18n
- Defined in:
- lib/liquid/i18n.rb
Constant Summary collapse
- DEFAULT_LOCALE =
File.join(File.(__dir__), "locales", "en.yml")
- TranslationError =
Class.new(StandardError)
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path = DEFAULT_LOCALE) ⇒ I18n
constructor
A new instance of I18n.
- #locale ⇒ Object
- #translate(name, vars = {}) ⇒ Object (also: #t)
Constructor Details
#initialize(path = DEFAULT_LOCALE) ⇒ I18n
Returns a new instance of I18n.
11 12 13 |
# File 'lib/liquid/i18n.rb', line 11 def initialize(path = DEFAULT_LOCALE) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
9 10 11 |
# File 'lib/liquid/i18n.rb', line 9 def path @path end |
Instance Method Details
#locale ⇒ Object
20 21 22 |
# File 'lib/liquid/i18n.rb', line 20 def locale @locale ||= YAML.load_file(@path) end |
#translate(name, vars = {}) ⇒ Object Also known as: t
15 16 17 |
# File 'lib/liquid/i18n.rb', line 15 def translate(name, vars = {}) interpolate(deep_fetch_translation(name), vars) end |