В моем коде React у меня есть:
<Trans id={"hello"} />
В файле .po у меня есть:
msgid "hello" msgstr "Hello <strong> world! </strong>"
Но перевод не работает с <strong>. Есть ли способ сделать этот текст жирным?
<strong>
Спасибо
Я нашел решение:
<Trans id={"hello"}> <strong>world!</strong> </Trans> msgid "hello" msgstr "Hello <0> world! </0>"