Sha256: c69f6e00254eb6c190cc50dc3a3c2fc0e58b92077fcf0f51140c66a64f6fa51e

Contents?: true

Size: 936 Bytes

Versions: 6

Compression:

Stored size: 936 Bytes

Contents

require 'yaml'

module Liquid
  class I18n
    DEFAULT_LOCALE = File.join(File.expand_path(__dir__), "locales", "en.yml")

    TranslationError = Class.new(StandardError)

    attr_reader :path

    def initialize(path = DEFAULT_LOCALE)
      @path = path
    end

    def translate(name, vars = {})
      interpolate(deep_fetch_translation(name), vars)
    end
    alias_method :t, :translate

    def locale
      @locale ||= YAML.load_file(@path)
    end

    private

    def interpolate(name, vars)
      name.gsub(/%\{(\w+)\}/) do
        # raise TranslationError, "Undefined key #{$1} for interpolation in translation #{name}"  unless vars[$1.to_sym]
        "#{vars[$1.to_sym]}"
      end
    end

    def deep_fetch_translation(name)
      name.split('.'.freeze).reduce(locale) do |level, cur|
        level[cur] or raise TranslationError, "Translation for #{name} does not exist in locale #{path}"
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
liquid-4-0-2-4.0.2 lib/liquid/i18n.rb
liquid-4.0.1 lib/liquid/i18n.rb
liquid-4.0.0 lib/liquid/i18n.rb
liquid-4.0.0.rc3 lib/liquid/i18n.rb
liquid-4.0.0.rc2 lib/liquid/i18n.rb
liquid-4.0.0.rc1 lib/liquid/i18n.rb