Symfony:generator.yml 中的 i18n
有谁知道是否有可能在generator.yml文件中使用i18n,如下所示:
generator:
class: sfDoctrineGenerator
param:
...
config:
edit:
title: Editing Category xyz
现在我想翻译我的i18n文件中的标题。
Does anyone know if there's a possibility to use i18n in the generator.yml file like this:
generator:
class: sfDoctrineGenerator
param:
...
config:
edit:
title: Editing Category xyz
Now I'd like to translate the title in my i18n files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该开箱即用。所有表单标签均自动通过翻译功能。
您需要在应用程序中启用 i18n 并创建翻译文件。就这么简单。
假设您有一个后端应用程序,要启用 i18n,请编辑 apps/backend/settings.yml:
生成您需要的语言的翻译目录:
最后您需要翻译您的消息。只需编辑生成的 apps/backend/i18n/fr/messages.xml 即可。
It should work out of the box. All the form labels are passed through translation function automatically.
You need to enable i18n in your application and create translation files. Simple as that.
Assuming you have a backend application, to enable i18n edit your apps/backend/settings.yml:
Generate translation catalog for language(s) you need:
At the end you need to translate your messages. Simply edit generated apps/backend/i18n/fr/messages.xml.