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:
parent
e16a6d6561
commit
a1a3b9b656
1 changed files with 4 additions and 4 deletions
|
@ -58,7 +58,7 @@ KCM.ScrollViewKCM {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
width: parent.width - (Kirigami.Units.largeSpacing * 4)
|
width: parent.width - (Kirigami.Units.largeSpacing * 4)
|
||||||
text: i18n("No rules for specific windows are currently set");
|
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 {
|
footer: RowLayout {
|
||||||
QQC2.Button {
|
QQC2.Button {
|
||||||
text: i18n("Add New...")
|
text: i18n("Add New…")
|
||||||
icon.name: "list-add"
|
icon.name: "list-add"
|
||||||
enabled: !exportInfo.visible
|
enabled: !exportInfo.visible
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
@ -106,7 +106,7 @@ KCM.ScrollViewKCM {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
}
|
}
|
||||||
QQC2.Button {
|
QQC2.Button {
|
||||||
text: i18n("Import...")
|
text: i18n("Import…")
|
||||||
icon.name: "document-import"
|
icon.name: "document-import"
|
||||||
enabled: !exportInfo.visible
|
enabled: !exportInfo.visible
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
@ -114,7 +114,7 @@ KCM.ScrollViewKCM {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
QQC2.Button {
|
QQC2.Button {
|
||||||
text: checked ? i18n("Cancel Export") : i18n("Export...")
|
text: checked ? i18n("Cancel Export") : i18n("Export…")
|
||||||
icon.name: exportInfo.visible ? "dialog-cancel" : "document-export"
|
icon.name: exportInfo.visible ? "dialog-cancel" : "document-export"
|
||||||
enabled: ruleBookView.count > 0
|
enabled: ruleBookView.count > 0
|
||||||
checkable: true
|
checkable: true
|
||||||
|
|
Loading…
Reference in a new issue