将 en.yaml 更改为 Rails 中的另一个 en.yaml
我设法获得了 fr.yaml。我希望这是默认值,旧的 Rails 2.2 教程说要添加:
config.i18n.default_locale = :fr
在 environment.rb
中
它不起作用,我的 Rails 服务器在此配置行上崩溃。
Rails 3 中此设置的语法是什么?我不需要多语言应用程序,我只想使用法语设置。
I managed to get a fr.yaml. I want this to be the default, an old Rails 2.2 tutorial says to add:
config.i18n.default_locale = :fr
in environment.rb
It does not work, my rails server crashes on this config line.
What is the syntax for this setting in Rails 3? I do not want a multi-language app, I want to use only the french settings.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Rails3 中,将此行添加到
application.rb
In Rails3, you add this line to
application.rb
这位于 Rails 3 的 config/application.rb 中。
This goes in
config/application.rb
in rails 3.