blob: eee66f17c1944dd8937a20d5640fbcefa36b6e64 (
plain)
1
2
3
4
5
6
7
8
9
|
qsTr("Three");
qsTranslate("BarContext", "Four");
var celebration_strings = [
QT_TR_NOOP("Happy birthday!"),
QT_TRANSLATE_NOOP("BarContext", "Congratulations!")
];
qsTr("Three", "not the same three");
|