如何在 QT 语言翻译中使用 & 符号字符串
How to use Ampersand string using in Language translation in QT
QString = "Command && Profile";
ru.ts 文件
<context>
<message>
<source>Command & Profile</source>
<translation>Команда и профиль</translation>
</message>
</context>
用翻译这个方法不行..这个场景怎么翻译这个..不然其他任何方法都是这个翻译..
你必须在 .ts 文件中写 &&
:
<context>
<message>
<source>Command && Profile</source>
<translation>Команда и профиль</translation>
</message>
</context>
QString = "Command && Profile";
ru.ts 文件
<context>
<message>
<source>Command & Profile</source>
<translation>Команда и профиль</translation>
</message>
</context>
用翻译这个方法不行..这个场景怎么翻译这个..不然其他任何方法都是这个翻译..
你必须在 .ts 文件中写 &&
:
<context>
<message>
<source>Command && Profile</source>
<translation>Команда и профиль</translation>
</message>
</context>