如何在Symfony2中使用Gettext(.mo / .po)文件?

时间:2015-03-23 14:54:30

标签: php symfony translation gettext

我想在Gettext

上使用Symfony2来翻译我的网站

../Resources/translations/我有我的翻译文件:

translations/en/LC_MESSAGES/en.mo
translations/en/LC_MESSAGES/en.po
translations/fr/LC_MESSAGES/fr.mo
translations/fr/LC_MESSAGES/fr.po
...

我已经在Symfony2 cookbook的帮助下将默认局部变量配置为法语(fr)http://symfony.com/doc/current/book/translation.html#the-locale-and-the-url

当我去app_dev.php/fr/hello/test时,我的Hello World是英文版。我需要配置其他东西吗?

已经尝试过此配置:Configure Translation component in Symfony 2 to use get text

2 个答案:

答案 0 :(得分:2)

经过几天的研究,我终于找到了答案。它不是我要搜索的那个,但它是一个非常好的选择。

我发现了这个很棒的套装https://github.com/LeaseWeb/LswGettextTranslationBundle

非常容易安装,我建议您使用"路线"改变这样的语言环境:

prefix:   /{_locale}/
    requirements:
        _locale: |fr|en|es|pt #All your locales "shortcuts"

请将Bundle配置为使用Lsw/GettextTranslationBundle/Resources/config/config.yml中的区域设置快捷方式:

parameters:
    gettext.locale_shortcuts:
        en: en_US
        fr: fr_FR
        pt: pt_PT
        es: es_ES

对于所有配置,请使用逐步捆绑配置(易于使用)

答案 1 :(得分:2)

使用带有Symfony的Gettext(.mo / .po)文件非常简单,不需要任何额外的包。

以下是有关如何使用* .po文件进行翻译的示例。

首先在 parameters.yml

中添加default_locale参数
parameters:
    # ...
    default_locale: en_US
    # ...

然后在 config.yml

中启用翻译器
framework:
    # ...
    translator:
            enabled: true
            fallbacks: ['%default_locale%']
            paths:
                - '%kernel.root_dir%/Resources/translations'
    # ...

将服务添加到services.yml文件中:

translation.loader.po:
    class: Symfony\Component\Translation\Loader\PoFileLoader
    tags:
        - { name: translation.loader, alias: po }

使用以下结构将您的mo / po翻译文件放在app/Resources/translations下:

app/Resources/translations/messages.en.po

app/Resources/translations/messages.it.po

...

现在您可以通过控制器致电:

$this->get('translator')->trans('my.message.id');