In my React code I have:
<Trans id={"hello"} />
In .po file I have:
msgid "hello"
msgstr "Hello <strong> world! </strong>"
But translation does not work with <strong>
. Is there a way I can make this text bold?
Thanks
I found the solution:
<Trans id={"hello"}>
<strong>world!</strong>
</Trans>
msgid "hello"
msgstr "Hello <0> world! </0>"