From kde-commits Mon Apr 30 20:11:36 2018 From: Friedrich W. H. Kossebau Date: Mon, 30 Apr 2018 20:11:36 +0000 To: kde-commits Subject: [kdeplasma-addons] applets: Use @info:placeholder Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=152511910928801 Git commit 835af183b0e726698ce71b41bc6029e008d148ee by Friedrich W. H. Koss= ebau. Committed on 30/04/2018 at 20:06. Pushed by kossebau into branch 'master'. Use @info:placeholder M +1 -1 applets/dict/package/contents/ui/main.qml M +1 -1 applets/fifteenPuzzle/package/contents/ui/configAppearance.q= ml M +1 -1 applets/quicklaunch/package/contents/ui/ConfigGeneral.qml https://commits.kde.org/kdeplasma-addons/835af183b0e726698ce71b41bc6029e008= d148ee diff --git a/applets/dict/package/contents/ui/main.qml b/applets/dict/packa= ge/contents/ui/main.qml index d97972916..bb29c299e 100644 --- a/applets/dict/package/contents/ui/main.qml +++ b/applets/dict/package/contents/ui/main.qml @@ -19,7 +19,7 @@ ColumnLayout { Layout.fillWidth: true PlasmaComponents.TextField { id: input - placeholderText: i18n("Enter word to define here") + placeholderText: i18nc("@info:placeholder", "Enter word to def= ine here") implicitWidth: units.gridUnit * 40 onAccepted: { if (input.text =3D=3D=3D "") { diff --git a/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml= b/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml index 2bbf860e7..e1f64ebb3 100644 --- a/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml +++ b/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml @@ -78,7 +78,7 @@ QtLayouts.ColumnLayout { QtControls.TextField { id: imagePathTextField QtLayouts.Layout.fillWidth: true - placeholderText: i18n("Path to custom image") + placeholderText: i18nc("@info:placeholder", "Path to custo= m image") onTextChanged: useImageCheckBox.checked =3D true } = diff --git a/applets/quicklaunch/package/contents/ui/ConfigGeneral.qml b/ap= plets/quicklaunch/package/contents/ui/ConfigGeneral.qml index 534a67cfb..73baeb2a2 100644 --- a/applets/quicklaunch/package/contents/ui/ConfigGeneral.qml +++ b/applets/quicklaunch/package/contents/ui/ConfigGeneral.qml @@ -96,7 +96,7 @@ ColumnLayout { id: title Layout.fillWidth: true enabled: showTitle.checked - placeholderText: i18n("Enter title") + placeholderText: i18nc("@info:placeholder", "Enter title") } } }