Symfony:generator.yml 中的 i18n

发布于 2024-10-09 14:16:58 字数 216 浏览 7 评论 0原文

有谁知道是否有可能在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如梦亦如幻 2024-10-16 14:16:58

它应该开箱即用。所有表单标签均自动通过翻译功能。

您需要在应用程序中启用 i18n 并创建翻译文件。就这么简单。

假设您有一个后端应用程序,要启用 i18n,请编辑 apps/backend/settings.yml:

all:
  .settings:
    i18n: true

生成您需要的语言的翻译目录:

./symfony i18n:extract --auto-save backend fr

最后您需要翻译您的消息。只需编辑生成的 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:

all:
  .settings:
    i18n: true

Generate translation catalog for language(s) you need:

./symfony i18n:extract --auto-save backend fr

At the end you need to translate your messages. Simply edit generated apps/backend/i18n/fr/messages.xml.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文