diff options
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 0bb981cd7..cf67d2d5d 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -147,10 +147,12 @@ Kirigami.ApplicationWindow { onTriggered: { syncToCloud = !syncToCloud if (!syncToCloud) { - var alertText = "Turning off automatic sync to cloud causes all data to only be stored locally.\n" - alertText += "This can be very useful in situations with limited or no network access.\n" - alertText += "Please chose 'Manual sync with cloud' if you have network connectivity\n" - alertText += "and want to sync your data to cloud storage." + var alertText = "Turning off automatic sync to cloud causes all data\n" + alertText +=" to only be stored locally.\n" + alertText += "This can be very useful in situations with\n" + alertText += " limited or no network access.\n" + alertText += "Please chose 'Manual sync with cloud' if you have network\n" + alertText += " connectivity and want to sync your data to cloud storage." showPassiveNotification(alertText, 10000) } } |