diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-16 08:08:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-16 08:08:24 -0700 |
commit | 6b9a1f38504885d0af0aa9be4b269559395075bd (patch) | |
tree | 274ad93185772fbe3b6e4f9dc481a69690e75d78 /mobile-widgets/qml | |
parent | e10b252153c1269b65639d10b527ff4413e74638 (diff) | |
download | subsurface-6b9a1f38504885d0af0aa9be4b269559395075bd.tar.gz |
QML UI: change auto cloud sync menu texts
This way the menu items describe what happens when you tap on that menu
item. That seems more consistent and intuitive.
See #1204
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 93793156d..fd5e2de26 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -204,7 +204,7 @@ Kirigami.ApplicationWindow { icon { name: syncToCloud ? "icons/ic_cloud_off.svg" : "icons/ic_cloud_done.svg" } - text: syncToCloud ? qsTr("Offline mode") : qsTr("Auto cloud sync enabled") + text: syncToCloud ? qsTr("Disable auto cloud sync") : qsTr("Enable auto cloud sync") enabled: manager.credentialStatus !== QMLManager.CS_NOCLOUD onTriggered: { syncToCloud = !syncToCloud |