From 5ad75e81c3c35201165781f4b14ae93d1ce385ce Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Mon, 11 Dec 2023 23:00:07 +1300 Subject: [PATCH] Mobile: Add Warning About Delay for Initial Synch. Add a warning to the initial login screen telling the user that the first synchronisation can take a few minutes. Fixes a misunderstanding pointed out in a recent post in the Subsurface mailing list. Signed-off-by: Michael Keller --- mobile-widgets/qml/StartPage.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mobile-widgets/qml/StartPage.qml b/mobile-widgets/qml/StartPage.qml index 18245bc85..dfffb8e6f 100644 --- a/mobile-widgets/qml/StartPage.qml +++ b/mobile-widgets/qml/StartPage.qml @@ -32,6 +32,9 @@ Kirigami.ScrollablePage { Layout.margins: Kirigami.Units.gridUnit Layout.topMargin: Kirigami.Units.gridUnit * 3 text: qsTr("To use Subsurface-mobile with Subsurface cloud storage, please enter your cloud credentials.

" + + "If you are an existing user with dives stored in the cloud then " + + "synchronisation can take a few minutes. Please be patient and wait until your dives appear in " + + "the list.

" + "If this is the first time you use Subsurface cloud storage, enter a valid email (all lower case) " + "and a password of your choice (letters and numbers).

" + "To use Subsurface-mobile only with local data on this device, select " +