0

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

David
  • 27
  • 3

1 Answers1

0

I found the solution:

<Trans id={"hello"}>
<strong>world!</strong>
</Trans>

msgid "hello"
msgstr "Hello <0> world! </0>"
David
  • 27
  • 3