Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有翻译成 en 和 ru 的页面。如果用户将使用其他语言环境来页面,我希望在语言环境中使用它。可以通过吗?
config.i18n.fallbacks = true config.i18n.default_locale = "en"
config.i18n.fallbacks = true
config.i18n.default_locale = "en"
您可以创建一个辅助方法,您可以在其中执行以下操作:
def trans(key) I18n.t(key, :default => I18n.t(key, :locale => :en)) end