12

如何使用语言文件 ( messages.en.xliff) 中的密钥翻译当前的硬编码文本?

我尝试使用

{% trans %} translation_key{% endtrans %}

没有成功。Symfony 返回此错误

消息必须是“ProjectEventsBundle:Default:show_event.html.twig”中的简单文本

500 内部服务器错误 - Twig_Error_Syntax

{% transchoice count %}
{0} The current hardcoded text|{1} is attending|{2} are attending|]2,Inf] and %count% - 2 others are attending
{% endtranschoice %}

提前致谢。

4

5 回答 5

20

我会使用这样的解决方案:

messages.en.xliff:

<trans-unit id="1">
    <source>some.translation.key</source>
    <target>{0} no.attendee|{1} one attendee|{2} two attendees|{3} three attendees|]3,Inf] many attendees</target>
</trans-unit>

树枝模板:

{{ 'some.translation.key'|transchoice(count) }}

如果你需要输入一些参数,你应该将它们作为第二个参数传递。

这是过滤器的原型:

public function transchoice($message, $count, array $arguments = array(), $domain = "messages", $locale = null)
于 2012-05-30T13:39:19.953 回答
11

从Symfony 文档中找到这个:

Symfony2 提供了专门的 Twig 标签(trans 和 transchoice)来帮助静态文本块的消息翻译:

{% trans %}Hello %name%{% endtrans %}

{% transchoice count %}

{0} There are no apples|{1} There is one apple|]1,Inf] There are %count% apples

{% endtranschoice %}

transchoice 标签自动从当前上下文中获取 %count% 变量并将其传递给翻译器。此机制仅在您使用遵循 %var% 模式的占位符时才有效。

于 2012-04-03T20:16:08.870 回答
10

这个主题很老了,但我建议你做这样的事情:

在你的messages.LOCALE.yml

you.translaction.key: "{1}1 Comment|]1,Inf]%count% Comments"

在你的树枝模板中

{% set count = 2 %}

{% transchoice count with {'%count%': count} %}you.translaction.key{% endtranschoice %}

干杯,

西蒙

于 2015-07-13T07:56:25.363 回答
0

带有多个参数的示例:

{{ 'label.policy_expires_in'|transchoice(expiresInDays, {}, 'VopInsPolicyBundle') }}
于 2020-03-17T06:48:35.207 回答
-18

我找到了解决方案。它有点脏,但它正在工作。如果您找到更好的方法,请不要忘记发布它。

    {% set noattendee %}{% trans %} no.attendee {% endtrans %}{% endset %}
    {% set oneattendee %}{% trans %} one.attendee {% endtrans %}{% endset %}
    {% set twoattendees %}{% trans %} two.attendees {% endtrans %}{% endset %}
    {% set treeattendees %}{% trans with {'%people%': people} %} tree.attendees {% endtrans %}{% endset %}
    {% set manyattendees %}{% trans with {'%people%': people} %} many.attendees {% endtrans %}{% endset %}

    {% transchoice count with {
        '%noattendee%': noattendee,
        '%oneattendee%': oneattendee,
        '%twoattendees%': twoattendees,
        '%treeattendees%': treeattendees,
        '%manyattendees%': manyattendees}
    %}
        {0}  %noattendee%|{1}  %oneattendee%|{2} %twoattendees%|{3} %treeattendees%|]3,Inf] %manyattendees%
    {% endtranschoice %}
于 2011-09-13T06:42:07.890 回答