如何在symfony2中创建dynemic翻译文件translation / messages.fr.xlf,translations / messages.en.xlf
我希望以下文件创建语言明智(en,fr)
文件名:messages.en.xlf
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="1">
<source>Action</source>
<target>Action EN</target>
</trans-unit>
<trans-unit id="2">
<source>Add</source>
<target>Add EN</target>
</trans-unit>
</body>
</file>
</xliff>
我希望从数据库中获取<source>
和<target>
值但是如何在symfony2中实现此代码
答案 0 :(得分:0)
你应该使用真棒JMSTranslationBundle,它会为你提供一个网页界面和一个填充所有翻译文件的命令。
此外,您可以使用JMSI18nRoutingBundle
请阅读我提供给您的文档,并按照教程设置此捆绑包并使用它。
希望这有帮助:)