我想用 L20n 本地化一个 Web 应用程序,并且在 UI 中,一个单词通常后跟一个冒号。例如:Foo:
。
以下方法有效,但它的缺点是必须为每个单词定义一个额外的标签,后跟一个冒号。
In the .l20n-File:
<foo "Foo">
<fooCol "{{foo}}:">
In the .html-File:
<p data-l10n-id="fooCol"></p>
我尝试了以下方法来避免这些额外的标签,但这种方法不起作用。
In the.l20n-File:
<colon "{{$var}}:">
In the .html-File:
<p data-l10n-id="colon" data-l10n-args='{"var": "{{foo}}"}'></p>
L20n 中是否有一种优雅的方式为单词添加后缀?