如果使用后备,Rails I18n会在翻译文本周围放置

时间:2011-11-01 19:14:05

标签: ruby-on-rails ruby-on-rails-3 internationalization translation

我正在使用内置I18n(简单后端)的Rails。我已将默认语言环境设置为:en和enabled fallbacks。假设我有英语和西班牙语的特定项目的翻译。现在一位德国访客来到我的网站,它又回归英语。我将如何检测回退并将其包裹在一个范围内?

<span class="fallback">Hello</span>而非Hello

这样我就可以使用客户端机器翻译了。

我希望避免编写自己的后端来取代“简单”。

2 个答案:

答案 0 :(得分:0)

不得不求助于I18n :: Backend :: FallBacks中的翻译功能 https://github.com/svenfuchs/i18n/blob/master/lib/i18n/backend/fallbacks.rb

module I18n
  module Backend
    module Fallbacks
      def translate(locale, key, options = {})
        return super if options[:fallback]
        default = extract_non_symbol_default!(options) if options[:default]

        options[:fallback] = true
        I18n.fallbacks[locale].each do |fallback|
          catch(:exception) do
            result = super(fallback, key, options)
            if locale != fallback
              return "<span class=\"translation_fallback\">#{result}</span>".html_safe unless result.nil?
            else
              return result unless result.nil?
            end
          end
        end
        options.delete(:fallback)

        return super(locale, nil, options.merge(:default => default)) if default
        throw(:exception, I18n::MissingTranslation.new(locale, key, options))
      end
    end
  end
end

我只是将此代码放在初始化程序中。

对我来说感觉非常混乱......我仍然希望将其他人更好的答案标记为正确。

答案 1 :(得分:0)

使用I18n中的元数据模块提供更好的解决方案。还要登录私人日志文件以帮助发现缺少的翻译。您可以使用Rails.logger替换调用或删除它们。

I18n::Backend::Simple.include(I18n::Backend::Metadata)

# This work with <%= t %>,but  not with <%= I18n.t %>
module ActionView
  module Helpers
    module TranslationHelper
      alias_method :translate_basic, :translate
      mattr_accessor :i18n_logger

      def translate(key, options = {})
        @i18n_logger ||= Logger.new("#{Rails.root}/log/I18n.log")
        @i18n_logger.info "Translate key '#{key}' with options #{options.inspect}"
        options.merge!(:rescue_format => :html) unless options.key?(:rescue_format)
        options.merge!(:locale => I18n.locale)  unless options.key?(:locale)
        reqested_locale = options[:locale].to_sym
        s = translate_basic(key, options)
        if s.translation_metadata[:locale] != reqested_locale &&
           options[:rescue_format] == :html && Rails.env.development?

           @i18n_logger.error "* Translate missing for key '#{key}' with options #{options.inspect}"
           missing_key = I18n.normalize_keys(reqested_locale, key, options[:scope])
           @i18n_logger.error "* Add key #{missing_key.join(".")}\n"

          %(<span class="translation_fallback" title="translation fallback #{reqested_locale}->#{s.translation_metadata[:locale]} for '#{key}'">#{s}</span>).html_safe
        else
          s
        end
      end
      alias :t :translate

    end
  end
end

然后使用CSS样式

.translation_fallback {
  background-color: yellow;
}

.translation_missing {
  background-color: red;
}