Sha256: e8e881baa81598bf144292a190ae3bbf7d4854e6c65e9d132343245afdf3bda3

Contents?: true

Size: 1014 Bytes

Versions: 4

Compression:

Stored size: 1014 Bytes

Contents

module Locomotive
  module Steam

    class TranslatorService < Struct.new(:repository, :current_locale)

      # Return the translation described by a key.
      #
      # @param [ String ] key The key of the translation.
      # @param [ String ] locale The locale we want the translation in
      # @param [ String ] scope If specified, instead of looking in the translations, it will use I18n instead.
      #
      # @return [ String ] the translated text or nil if not found
      #
      def translate(input, locale, scope = nil)
        locale ||= self.current_locale

        if scope.blank?
          values = repository.by_key(input).try(:values) || {}

          if translation = values[locale.to_s]
            translation
          else
            Locomotive::Common::Logger.warn "Missing translation '#{input}' for the '#{locale}' locale".yellow
            input
          end
        else
          I18n.t(input, scope: scope.split('.'), locale: locale)
        end
      end

    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
locomotivecms_steam-1.0.0.pre.alpha.3 lib/locomotive/steam/services/translator_service.rb
locomotivecms_steam-1.0.0.pre.alpha.2 lib/locomotive/steam/services/translator_service.rb
locomotivecms_steam-1.0.0.pre.alpha.1 lib/locomotive/steam/services/translator_service.rb
locomotivecms_steam-1.0.0.pre.alpha lib/locomotive/steam/services/translator_service.rb