Warning, /frameworks/ki18n/autotests/test.qml is written in an unsupported language. File is not indexed.

0001 import QtQml 2.1
0002 
0003 QtObject
0004 {
0005     readonly property real numOne: 1
0006     readonly property real numThree: 3
0007     property string nullString
0008     readonly property string testString: i18n("Awesome")
0009     readonly property string testStringSingular: i18np("and %1 other window", "and %1 other windows", numOne);
0010     readonly property string testStringPlural: i18np("and %1 other window", "and %1 other windows", numThree);
0011     readonly property string testStringPluralWithDomain: i18ndp("plasma_lookandfeel_org.kde.lookandfeel", "in 1 second", "in %1 seconds", 3);
0012     readonly property string testNullStringArg: i18n("Awesome %1", nullString)
0013     readonly property string testZero: i18n("I'm %1 years old", 0)
0014 }