0
QString = "Command && Profile";

ru.ts file

<context>
<message>
        <source>Command &amp; Profile</source>
        <translation>Команда и профиль</translation>
    </message>
</context>

Using translation this method will not working.. This scenario how to translate this.. Otherwise any other method is to do this translation.

Senthil Kumar
  • 562
  • 1
  • 6
  • 14

1 Answers1

1

You have to write &amp;&amp; in .ts file:

<context>
    <message>
        <source>Command &amp;&amp; Profile</source>
        <translation>Команда и профиль</translation>
    </message>
</context>
zett42
  • 25,437
  • 3
  • 35
  • 72