【发布时间】:2020-07-03 01:16:52
【问题描述】:
在我的 React 代码中:
<Trans id={"hello"} />
在 .po 文件中我有:
msgid "hello"
msgstr "Hello <strong> world! </strong>"
但翻译不适用于<strong>。有没有办法让这个文本加粗?
谢谢
【问题讨论】:
在我的 React 代码中:
<Trans id={"hello"} />
在 .po 文件中我有:
msgid "hello"
msgstr "Hello <strong> world! </strong>"
但翻译不适用于<strong>。有没有办法让这个文本加粗?
谢谢
【问题讨论】:
我找到了解决办法:
<Trans id={"hello"}>
<strong>world!</strong>
</Trans>
msgid "hello"
msgstr "Hello <0> world! </0>"
【讨论】: