I'm trying to pass a text to Qt Linguist in which I want to make the ™ symbol appear.
This text is tagged with QT_TR_NOOP
so that Qt Linguist can recognize it.
Qt Linguist recognizes the text to be translated, but does not display the ™ symbol in the Strings
and Sources and Forms
windows.
Example:
QT_TR_NOOP("A_mark™ disabled\nClose door")
I tried to use the unicode as below, but it does not work:
QT_TR_NOOP("A_mark\u2122 disabled\nClose door")