Improve messaging while connecting to server

This commit is contained in:
Ming Ming 2022-12-09 00:27:46 +08:00
parent ccb8c821cf
commit 94113b4df4
3 changed files with 21 additions and 0 deletions

View file

@ -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"

View file

@ -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",

View file

@ -113,6 +113,12 @@ class _ConnectState extends State<Connect> {
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,
),
],
),
),