我正在尝试在 Rails 应用程序中翻译路线。我尝试使用i18n_routes
,但在翻译不依赖资源的操作时遇到了一些问题。最后,我在不使用 i18n_routes 的情况下解决了这个问题,如此处所述。
现在的问题是我找不到翻译范围的方法。这是我的routes.rb
:
scope "sport" do
translated_named_route 'it_is_healthy', 'sport#it_is_healthy'
translated_named_route 'it_is_social', 'sport#it_is_social'
end
如何翻译运动?我i18n_routes
再次尝试,但我不知道如何翻译范围。谢谢!