symfony:如何翻译包含
的文本?我想在下面翻译:
<?php echo __(<<<EOM
<p>
For security reasons...
</p>
EOM
) ?>
所以我创建了这个翻译单元:
<trans-unit>
<source>For security reasons...</source>
<target>Por razones de seguridad...</target>
</trans-unit>
问题:它的翻译不小于我删除 ;
标签。
有什么方法可以保留这些标签进行翻译吗?
哈维
i want to translate this below:
<?php echo __(<<<EOM
<p>
For security reasons...
</p>
EOM
) ?>
So i create this translation unit:
<trans-unit>
<source>For security reasons...</source>
<target>Por razones de seguridad...</target>
</trans-unit>
The problem: it is not translated less than i remove the <p> </p>
tags.
Any way to translate it keeping those tags?
Javi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不只翻译字符串:
另一种解决方案是包含
标签到翻译字符串中。我不知道交响乐翻译技术,但这就是使用 gettext 完成的方法。
Why not only translating the string:
Another solution would it be to include the <p> tags into the translation strings. I don't know the symphony translation technique but that is how it's done with gettext.