symfony:如何翻译包含

的文本?

发布于 2024-09-15 22:36:00 字数 416 浏览 4 评论 0原文

我想在下面翻译:

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-09-22 22:36:00

为什么不只翻译字符串:

<p> 
<?php echo __("For security reasons...") ?>
</p>

另一种解决方案是包含

标签到翻译字符串中。我不知道交响乐翻译技术,但这就是使用 gettext 完成的方法。

Why not only translating the string:

<p> 
<?php echo __("For security reasons...") ?>
</p>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文