cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
15 lines
705 B
QML
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)
|
|
}
|