kcms/rules: Use ellipses instead of triple period

A real ellipsis character is better for accessibility, as screen readers
will describe it appropriately.
This commit is contained in:
ivan tkachenko 2023-06-02 19:46:36 +03:00
parent e16a6d6561
commit a1a3b9b656
No known key found for this signature in database
GPG key ID: AF72731B7C654CB3

View file

@ -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 <interface>Add New...</interface> button below to add some")
explanation: xi18nc("@info", "Click the <interface>Add New</interface> 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