我想在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
答案 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');