我使用“rails new blog”从rails教程创建了博客应用程序。
只有在您使用用户名登录时才能加载页面。
登录页面是通过rails自动生成的。
我想翻译登录页面。
我在我的 application.rb 中将default_locale更改为:de。它看起来像这样:
...
module Blog
class Application < Rails::Application
config.active_record.raise_in_transactional_callbacks = true
config.i18n.default_locale = :de
end
end
我的索引页面上的<%= I18n.locale %>
表示“de”。
在登录页面上,仍然是英文的“密码/注册/ ...”。