summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptengine/translatable.js
blob: 30e139a7d45c21cca0850f85ab24528b6ec20276 (plain)
1
2
3
4
5
6
7
8
9
qsTr("One");
qsTranslate("FooContext", "Two");

var greeting_strings = [
    QT_TR_NOOP("Hello"),
    QT_TRANSLATE_NOOP("FooContext", "Goodbye")
];

qsTr("One", "not the same one");