diff --git a/app/lib/l10n/app_en.arb b/app/lib/l10n/app_en.arb index c5d57620..4d7490c4 100644 --- a/app/lib/l10n/app_en.arb +++ b/app/lib/l10n/app_en.arb @@ -217,6 +217,10 @@ "@connectingToServer2": { "description": "Shown when the app is waiting for the user to sign in via an external browser" }, + "connectingToServerInstruction": "Please sign in via the opened browser", + "@connectingToServerInstruction": { + "description": "Shown when the app is waiting for the user to sign in via an external browser" + }, "nameInputHint": "Name", "@nameInputHint": { "description": "Hint of the text field expecting name data" diff --git a/app/lib/l10n/untranslated-messages.txt b/app/lib/l10n/untranslated-messages.txt index 366cd26a..82a23890 100644 --- a/app/lib/l10n/untranslated-messages.txt +++ b/app/lib/l10n/untranslated-messages.txt @@ -1,6 +1,7 @@ { "cs": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -185,6 +186,7 @@ "de": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -381,6 +383,7 @@ "el": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -466,12 +469,14 @@ ], "es": [ + "connectingToServerInstruction", "settingsEnhanceMaxResolutionTitle2", "initialSyncMessage" ], "fi": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsSeedColorTitle", "settingsSeedColorDescription", @@ -482,6 +487,7 @@ "fr": [ "collectionsTooltip", "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -587,6 +593,7 @@ "pl": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -710,6 +717,7 @@ "pt": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -812,6 +820,7 @@ "ru": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -914,6 +923,7 @@ "zh": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", @@ -1016,6 +1026,7 @@ "zh_Hant": [ "connectingToServer2", + "connectingToServerInstruction", "signInHeaderText2", "settingsLanguageOptionSystemDefaultLabel", "settingsExifWifiOnlyTitle", diff --git a/app/lib/widget/connect.dart b/app/lib/widget/connect.dart index 339c898a..bad78260 100644 --- a/app/lib/widget/connect.dart +++ b/app/lib/widget/connect.dart @@ -113,6 +113,12 @@ class _ConnectState extends State { textAlign: TextAlign.center, style: Theme.of(context).textTheme.titleLarge, ), + const SizedBox(height: 16), + Text( + L10n.global().connectingToServerInstruction, + textAlign: TextAlign.center, + style: Theme.of(context).textTheme.titleMedium, + ), ], ), ),