diff options
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/CloudCredentials.qml | 4 | ||||
-rw-r--r-- | mobile-widgets/qml/StartPage.qml | 2 | ||||
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/mobile-widgets/qml/CloudCredentials.qml b/mobile-widgets/qml/CloudCredentials.qml index 50db7c952..502d15af2 100644 --- a/mobile-widgets/qml/CloudCredentials.qml +++ b/mobile-widgets/qml/CloudCredentials.qml @@ -58,7 +58,7 @@ Item { Controls.TextField { id: login - text: prefs.cloudUserName + text: PrefCloudStorage.cloud_storage_email visible: !prefs.showPin Layout.fillWidth: true inputMethodHints: Qt.ImhEmailCharactersOnly | @@ -101,7 +101,7 @@ Item { visible: prefs.showPin SsrfButton { id: registerpin - text: qsTr("Register") + text: qsTr("Register") onClicked: { saveCredentials() } diff --git a/mobile-widgets/qml/StartPage.qml b/mobile-widgets/qml/StartPage.qml index 9c5e1a22c..5b6a82bb0 100644 --- a/mobile-widgets/qml/StartPage.qml +++ b/mobile-widgets/qml/StartPage.qml @@ -50,7 +50,7 @@ Kirigami.ScrollablePage { "If you do not receive an email from us within 15 minutes, please check " + "the correct spelling of your email address and your spam box first.<br/><br/>" + "In case of any problems regarding cloud account setup, please contact us " + - "at our user forum \(https://subsurface-divelog.org/user-forum/\).<br/><br/>").arg(prefs.cloudUserName) + "at our user forum \(https://subsurface-divelog.org/user-forum/\).<br/><br/>").arg(PrefCloudStorage.cloud_storage_email) wrapMode: Text.WordWrap } Item { width: Kirigami.Units.gridUnit; height: 3 * Kirigami.Units.gridUnit} diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 3737f3357..728a06d08 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -225,7 +225,7 @@ Kirigami.ApplicationWindow { visible: text.length > 0 level: 3 color: "white" - text: prefs.cloudUserName + text: PrefCloudStorage.cloud_storage_email wrapMode: Text.NoWrap elide: Text.ElideRight font.weight: Font.Normal |