根据当前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;
答案 0 :(得分:0)
您必须编写自己的翻译加载程序Symfony\Component\Translation\Loader\LoaderInterface
并使用translation.loader
标记。
您的翻译人员必须实施loadMessages($directory, MessageCatalogue $catalogue)
方法。
您可以将其实施为
$this->symfonyLoader->loadMessages($directory."/subdir", $catalogue);
您可以使用DI容器传递$this->symfonyLoader