翻译缺少 activeadmin、Ruby on Rails
我翻译了我的活动管理菜单:
# encoding: utf-8
ActiveAdmin.register City do
menu :parent => "Données géographiques", :label => I18n.t(:cities)
end
在我的 active_admin.fr.yml 中:
fr:
active_admin:
dashboard: "Tableau de Bord"
dashboard_welcome:
welcome: "Bienvenue dans Active Admin. Ceci est la page par défaut."
call_to_action: "Pour ajouter des sections au tableau de bord, consultez 'app/admin/dashboards.rb'"
cities: "Villes"
在我的本地(debian 6)中一切正常,但在我的预生产(debian 6)中,它是作者:
translation missing: fr.cities
我尝试重新启动 apache,清除缓存,重新加载我……我失败了。
有什么想法吗?
I translated my active admin menu :
# encoding: utf-8
ActiveAdmin.register City do
menu :parent => "Données géographiques", :label => I18n.t(:cities)
end
In my active_admin.fr.yml :
fr:
active_admin:
dashboard: "Tableau de Bord"
dashboard_welcome:
welcome: "Bienvenue dans Active Admin. Ceci est la page par défaut."
call_to_action: "Pour ajouter des sections au tableau de bord, consultez 'app/admin/dashboards.rb'"
cities: "Villes"
In my local (debian 6) everything works fine, but on my pre-production (debian 6), it's writter :
translation missing: fr.cities
I tried to reboot apache, clear cache, reload I18n... I failed.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用:
This worked for me:
我找到了解决方案,你必须将其写在你的 application.rb 上:
重新启动 apache,这很好!
I found the solution, you have to write that on your application.rb :
Reboot apache and that's good!
我找到了解决方案,将其添加到 application.rb 中
I found the solution, add this in application.rb