Angular 国际化 - 带有 HTML 标签的 XLIFF
Angular internationalization - XLIFF with HTML tags
我想知道是否可以翻译文本中包含 HTML 标记的页面部分。
示例:
<p i18n="@@genericError">
Please Try again or <a href="https://help.companyx.com">get in touch</a> with us for help.
</p>
我的翻译文件是这样的:
<trans-unit id="genericError" datatype="html">
<source>
Please Try again or <x id="START_LINK" ctype="x-a" equiv-text="<a>" />get in touch<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>" /> with us for help.
</source>
<target>
Por favor tente novamente ou <x id="START_LINK" ctype="x-a" equiv-text="<a>" />entre em contato<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>" /> conosco.
</target>
</trans-unit>
当我尝试使用 ng serve 运行 我的项目时,出现以下错误:
ERROR in Unknown placeholder START_LINK
我在网上查了一下 (https://github.com/angular/angular/issues/25242),如果我理解正确的话,好像 HTML 并不是要嵌入到翻译文件中。
你们有解决办法吗?
谢谢!
是的。您必须将每个文本节点与 a 标签周围的任何其他标签分开。
我想知道是否可以翻译文本中包含 HTML 标记的页面部分。
示例:
<p i18n="@@genericError">
Please Try again or <a href="https://help.companyx.com">get in touch</a> with us for help.
</p>
我的翻译文件是这样的:
<trans-unit id="genericError" datatype="html">
<source>
Please Try again or <x id="START_LINK" ctype="x-a" equiv-text="<a>" />get in touch<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>" /> with us for help.
</source>
<target>
Por favor tente novamente ou <x id="START_LINK" ctype="x-a" equiv-text="<a>" />entre em contato<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>" /> conosco.
</target>
</trans-unit>
当我尝试使用 ng serve 运行 我的项目时,出现以下错误:
ERROR in Unknown placeholder START_LINK
我在网上查了一下 (https://github.com/angular/angular/issues/25242),如果我理解正确的话,好像 HTML 并不是要嵌入到翻译文件中。
你们有解决办法吗?
谢谢!
是的。您必须将每个文本节点与 a 标签周围的任何其他标签分开。