Sha256: 36d78769314f1dc99b89a2f05722644bc0da4e1a74f37c7c2670f64da9fe5225

Contents?: true

Size: 1.78 KB

Versions: 1

Compression:

Stored size: 1.78 KB

Contents

require 'i18n'
require 'active_support/core_ext/hash/keys'

module I18n
  module Backend
    class SideBySide < Simple
      VERSION = File.read(File.expand_path('../../../../VERSION', __FILE__))
      LOCALE_PREFIX = '_'

      protected

      def load_file(filename)
        type = File.extname(filename).tr('.', '').downcase
        raise UnknownFileType.new(type, filename) unless respond_to?(:"load_#{type}", true)
        data = send(:"load_#{type}", filename).first
        unless data.is_a?(Hash)
          raise InvalidLocaleData.new(filename, 'expects it to return a hash, but does not')
        end

        if data.first.first.to_s == LOCALE_PREFIX
          _process([], data.deep_symbolize_keys[LOCALE_PREFIX.to_sym])
        else
          data.each { |locale, d| store_translations(locale, d || {}) }
        end
      end

      private

      def _process(path, hash)
        if !hash.is_a?(Hash)
          ### TRANSLATION KEY WITHOUT SPECIFIED LANGUAGE - WILL BE APPLIED TO ALL LANGUAGES
          value = hash
          translations.keys.each do |locale|
            _store([locale] + path, value)
          end
        elsif _contains_locales?(hash)
          hash.each do |locale, value|
            _store([_strip_locale_prefix(locale)] + path, value)
          end
        else
          hash.each { |key, value| _process(path + [key], value) }
        end
      end

      def _store(path, value)
        *keys, last_key = path
        target = keys.inject(translations) do |hash, key|
          hash[key] ||= {}
          hash[key]
        end
        target[last_key] = value
      end

      def _contains_locales?(hash)
        hash.first.first[0] == LOCALE_PREFIX
      end

      def _strip_locale_prefix(locale)
        locale[LOCALE_PREFIX.length..-1].to_sym
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
i18n-backend-side_by_side-1.3.0 lib/i18n/backend/side_by_side.rb