File Metadata

Author
victorr
Created
Sep 5 2019, 9:45 PM

qml.patch

diff -urN kscreen/kcm/package/contents/ui/main.qml kscreen-patched/kcm/package/contents/ui/main.qml
--- kscreen/kcm/package/contents/ui/main.qml 2019-09-05 19:10:39.000000000 +0300
+++ kscreen-patched/kcm/package/contents/ui/main.qml 2019-09-05 23:47:38.220826352 +0300
@@ -41,8 +41,7 @@
Layout.fillWidth: true
type: Kirigami.MessageType.Warning
- text: i18n("Are you sure you want to disable all outputs? " +
- "This might render the device unusable.")
+ text: i18n("Are you sure you want to disable all outputs? This might render the device unusable.")
showCloseButton: true
actions: [
@@ -76,8 +75,7 @@
id: scaleMsg
Layout.fillWidth: true
type: Kirigami.MessageType.Positive
- text: i18n("New global scale applied. " +
- "Change will come into effect after restart.")
+ text: i18n("New global scale applied. Change will come into effect after restart.")
visible: false
showCloseButton: true
}
@@ -96,11 +94,9 @@
onGlobalScaleWritten: scaleMsg.visible = true;
onOutputConnect: {
if (connected) {
- connectMsg.text = i18n("A new output has been added. " +
- " Settings have been reloaded.");
+ connectMsg.text = i18n("A new output has been added. Settings have been reloaded.");
} else {
- connectMsg.text = i18n("An output has been removed. " +
- " Settings have been reloaded.");
+ connectMsg.text = i18n("An output has been removed. Settings have been reloaded.");
}
connectMsg.visible = true;
}