From a1a3b9b656b3c9b21ef9e00d687b207d7afb53a6 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Fri, 2 Jun 2023 19:46:36 +0300 Subject: [PATCH] kcms/rules: Use ellipses instead of triple period A real ellipsis character is better for accessibility, as screen readers will describe it appropriately. --- src/kcms/rules/package/contents/ui/main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/kcms/rules/package/contents/ui/main.qml b/src/kcms/rules/package/contents/ui/main.qml index 08adf043af..5955bef9b0 100644 --- a/src/kcms/rules/package/contents/ui/main.qml +++ b/src/kcms/rules/package/contents/ui/main.qml @@ -58,7 +58,7 @@ KCM.ScrollViewKCM { anchors.centerIn: parent width: parent.width - (Kirigami.Units.largeSpacing * 4) text: i18n("No rules for specific windows are currently set"); - explanation: xi18nc("@info", "Click the Add New... button below to add some") + explanation: xi18nc("@info", "Click the Add New… button below to add some") } } @@ -95,7 +95,7 @@ KCM.ScrollViewKCM { footer: RowLayout { QQC2.Button { - text: i18n("Add New...") + text: i18n("Add New…") icon.name: "list-add" enabled: !exportInfo.visible onClicked: { @@ -106,7 +106,7 @@ KCM.ScrollViewKCM { Layout.fillWidth: true } QQC2.Button { - text: i18n("Import...") + text: i18n("Import…") icon.name: "document-import" enabled: !exportInfo.visible onClicked: { @@ -114,7 +114,7 @@ KCM.ScrollViewKCM { } } QQC2.Button { - text: checked ? i18n("Cancel Export") : i18n("Export...") + text: checked ? i18n("Cancel Export") : i18n("Export…") icon.name: exportInfo.visible ? "dialog-cancel" : "document-export" enabled: ruleBookView.count > 0 checkable: true