Sha256: 330bed3835dafa7d34aa032379992b6634498b167040fe60bd0c032f97116a11

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true
module Decidim
  # Helper that provides convenient methods to deal with translated attributes.
  module TranslationsHelper
    # Public: Returns the translation of an attribute using the current locale,
    # if available.
    #
    # attribute - A Hash where keys (strings) are locales, and their values are
    #             the translation for each locale.
    #
    # Returns a String with the translation.
    def translated_attribute(attribute)
      attribute.try(:[], I18n.locale.to_s)
    end

    # Public: Creates a translation for each available language in the list
    # given a translation key.
    #
    # key     - The key to translate.
    # locales - A list of locales to scope the translations to. Picks up all the
    #           available locales by default.
    #
    # Returns a Hash with the locales as keys and the translations as values.
    def multi_translation(key, locales = I18n.available_locales)
      locales.each_with_object({}) do |locale, result|
        I18n.with_locale(locale) do
          result[locale.to_sym] = I18n.t(key)
        end
      end
    end
    module_function :multi_translation
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
decidim-core-0.0.5 app/helpers/decidim/translations_helper.rb
decidim-core-0.0.3 app/helpers/decidim/translations_helper.rb
decidim-core-0.0.2 app/helpers/decidim/translations_helper.rb
decidim-core-0.0.1 app/helpers/decidim/translations_helper.rb