Files
RedBear-OS/local/recipes/kde/kf6-ki18n/source/autotests/Test.qml
T
2026-04-14 10:51:06 +01:00

15 lines
705 B
QML

import QtQml 2.1
QtObject
{
readonly property real numOne: 1
readonly property real numThree: 3
property string nullString
readonly property string testString: i18n("Awesome")
readonly property string testStringSingular: i18np("and %1 other window", "and %1 other windows", numOne);
readonly property string testStringPlural: i18np("and %1 other window", "and %1 other windows", numThree);
readonly property string testStringPluralWithDomain: i18ndp("plasma_lookandfeel_org.kde.lookandfeel", "in 1 second", "in %1 seconds", 3);
readonly property string testNullStringArg: i18n("Awesome %1", nullString)
readonly property string testZero: i18n("I'm %1 years old", 0)
}