Symfony2翻译

时间:2012-11-08 14:25:50

标签: symfony translation

根据当前Translation Documentation,Symfony2在以下位置查找消息文件(即翻译):

the <kernel root directory>/Resources/translations directory;
the <kernel root directory>/Resources/<bundle name>/translations directory;
the Resources/translations/ directory of the bundle.

有没有办法强迫Symfony2查看

the <kernel root directory>/Resources/translations/mydirectory directory;

1 个答案:

答案 0 :(得分:0)

您必须编写自己的翻译加载程序Symfony\Component\Translation\Loader\LoaderInterface并使用translation.loader标记。

您的翻译人员必须实施loadMessages($directory, MessageCatalogue $catalogue)方法。

您可以将其实施为 $this->symfonyLoader->loadMessages($directory."/subdir", $catalogue);

您可以使用DI容器传递$this->symfonyLoader