From 8a755e646af983bcf26001db90d8fc617e378603 Mon Sep 17 00:00:00 2001 From: Andrei Lesnitsky Date: Fri, 1 Sep 2023 13:15:33 +0200 Subject: [PATCH] fix(ui_localizations, ui_auth): add missing labels --- .../screens/email_verification_screen.dart | 14 ++--- .../lib/src/screens/profile_screen.dart | 22 +++---- .../lib/src/widgets/phone_input.dart | 4 +- .../lib/l10n/firebase_ui_ar.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_de.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_en.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_es.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_es_419.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_fr.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_he.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_hi.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_hu.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_id.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_it.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_ja.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_ko.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_nl.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_pl.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_pt.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_ru.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_th.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_tr.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_uk.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_zh.arb | 57 ++++++++++++++++++- .../lib/l10n/firebase_ui_zh_TW.arb | 57 ++++++++++++++++++- .../lib/src/default_localizations.dart | 36 +++++++++++- .../lib/src/lang/ar.dart | 37 ++++++++++++ .../lib/src/lang/de.dart | 37 ++++++++++++ .../lib/src/lang/en.dart | 37 ++++++++++++ .../lib/src/lang/es.dart | 37 ++++++++++++ .../lib/src/lang/es_419.dart | 37 ++++++++++++ .../lib/src/lang/fr.dart | 37 ++++++++++++ .../lib/src/lang/he.dart | 37 ++++++++++++ .../lib/src/lang/hi.dart | 37 ++++++++++++ .../lib/src/lang/hu.dart | 37 ++++++++++++ .../lib/src/lang/id.dart | 37 ++++++++++++ .../lib/src/lang/it.dart | 37 ++++++++++++ .../lib/src/lang/ja.dart | 37 ++++++++++++ .../lib/src/lang/ko.dart | 37 ++++++++++++ .../lib/src/lang/nl.dart | 37 ++++++++++++ .../lib/src/lang/pl.dart | 37 ++++++++++++ .../lib/src/lang/pt.dart | 37 ++++++++++++ .../lib/src/lang/ru.dart | 37 ++++++++++++ .../lib/src/lang/th.dart | 37 ++++++++++++ .../lib/src/lang/tr.dart | 37 ++++++++++++ .../lib/src/lang/uk.dart | 37 ++++++++++++ .../lib/src/lang/zh.dart | 37 ++++++++++++ .../lib/src/lang/zh_tw.dart | 37 ++++++++++++ 48 files changed, 2100 insertions(+), 44 deletions(-) diff --git a/packages/firebase_ui_auth/lib/src/screens/email_verification_screen.dart b/packages/firebase_ui_auth/lib/src/screens/email_verification_screen.dart index d0fd09c7..0be789e6 100644 --- a/packages/firebase_ui_auth/lib/src/screens/email_verification_screen.dart +++ b/packages/firebase_ui_auth/lib/src/screens/email_verification_screen.dart @@ -167,15 +167,11 @@ class __EmailVerificationScreenContentState mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.stretch, children: [ - const Align( - child: Title(text: 'Verify your email'), + Align( + child: Title(text: l.verifyEmailTitle), ), const SizedBox(height: 32), - const Text( - 'A verification email has been sent to your email address. ' - 'Please check your email and click on the link to verify ' - 'your email address.', - ), + Text(l.verificationEmailSentText), const SizedBox(height: 32), if (state == EmailVerificationState.pending) const Center(child: LoadingIndicator(size: 32, borderWidth: 2)) @@ -193,13 +189,13 @@ class __EmailVerificationScreenContentState const Center(child: LoadingIndicator(size: 32, borderWidth: 2)), if (state == EmailVerificationState.unverified) ...[ Text( - "We couldn't verify your email address. ", + l.verificationFailedText, textAlign: TextAlign.center, style: TextStyle(color: Theme.of(context).colorScheme.error), ), const SizedBox(height: 16), UniversalButton( - text: 'Resend verification email', + text: l.resendVerificationEmailButtonLabel, onPressed: () { controller.sendVerificationEmail( Theme.of(context).platform, diff --git a/packages/firebase_ui_auth/lib/src/screens/profile_screen.dart b/packages/firebase_ui_auth/lib/src/screens/profile_screen.dart index 057a7e46..a5ff468d 100644 --- a/packages/firebase_ui_auth/lib/src/screens/profile_screen.dart +++ b/packages/firebase_ui_auth/lib/src/screens/profile_screen.dart @@ -356,6 +356,8 @@ class _EmailVerificationBadgeState extends State<_EmailVerificationBadge> { return const SizedBox.shrink(); } + final l = FirebaseUILocalizations.labelsOf(context); + return Padding( padding: const EdgeInsets.only(top: 16), child: Column( @@ -374,15 +376,13 @@ class _EmailVerificationBadgeState extends State<_EmailVerificationBadge> { Subtitle( text: state == EmailVerificationState.sent || state == EmailVerificationState.pending - ? 'Verification email sent' - : 'Email is not verified', + ? l.verificationEmailSentTextShort + : l.emailIsNotVerifiedText, fontWeight: FontWeight.bold, ), if (state == EmailVerificationState.pending) ...[ const SizedBox(height: 8), - const Text( - 'Please check your email and click the link to verify your email address.', - ), + Text(l.checkEmailHintText), ] ], ), @@ -393,10 +393,10 @@ class _EmailVerificationBadgeState extends State<_EmailVerificationBadge> { // ignore: prefer_const_constructors Row( mainAxisAlignment: MainAxisAlignment.center, - children: const [ - LoadingIndicator(size: 16, borderWidth: 0.5), - SizedBox(width: 16), - Text('Waiting for email verification'), + children: [ + const LoadingIndicator(size: 16, borderWidth: 0.5), + const SizedBox(width: 16), + Text(l.waitingForEmailVerificationText), ], ) else @@ -409,7 +409,7 @@ class _EmailVerificationBadgeState extends State<_EmailVerificationBadge> { variant: ButtonVariant.text, materialColor: Theme.of(context).colorScheme.error, cupertinoColor: CupertinoColors.destructiveRed, - text: 'Dismiss', + text: l.dismissButtonLabel, onPressed: () { setState(service.dismiss); }, @@ -428,7 +428,7 @@ class _EmailVerificationBadgeState extends State<_EmailVerificationBadge> { else UniversalButton( variant: ButtonVariant.text, - text: 'Ok', + text: l.okButtonLabel, onPressed: () { setState(service.dismiss); }, diff --git a/packages/firebase_ui_auth/lib/src/widgets/phone_input.dart b/packages/firebase_ui_auth/lib/src/widgets/phone_input.dart index d3feb6c7..1b39457c 100644 --- a/packages/firebase_ui_auth/lib/src/widgets/phone_input.dart +++ b/packages/firebase_ui_auth/lib/src/widgets/phone_input.dart @@ -189,6 +189,8 @@ class PhoneInputState extends State { } void _showCountryPicker(BuildContext context) { + final l = FirebaseUILocalizations.labelsOf(context); + showCupertinoModalPopup( context: context, builder: (context) { @@ -221,7 +223,7 @@ class PhoneInputState extends State { ), ), CupertinoButton( - child: const Text('Done'), + child: Text(l.doneButtonLabel), onPressed: () => Navigator.pop(context), ), ], diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ar.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ar.arb index c6e94079..3c32b301 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ar.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ar.arb @@ -1,6 +1,6 @@ { "@@locale": "ar", - "@@last_modified": "2023-08-31T15:49:19.840754", + "@@last_modified": "2023-09-01T13:12:06.522803", "accessDisabledErrorText": "تم إيقاف إذن الوصول إلى هذا الحساب مؤقتًا.", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_de.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_de.arb index 26985b1b..6f1c2355 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_de.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_de.arb @@ -1,6 +1,6 @@ { "@@locale": "de", - "@@last_modified": "2023-08-31T15:49:19.835367", + "@@last_modified": "2023-09-01T13:12:06.516313", "accessDisabledErrorText": "Der Zugriff auf dieses Konto wurde vorübergehend gesperrt", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_en.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_en.arb index eb8569d6..dc38760c 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_en.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_en.arb @@ -1,6 +1,6 @@ { "@@locale": "en", - "@@last_modified": "2023-08-31T15:49:19.843264", + "@@last_modified": "2023-09-01T13:12:06.523448", "accessDisabledErrorText": "Access to this account has been temporarily disabled", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es.arb index 09558600..32923109 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es.arb @@ -1,6 +1,6 @@ { "@@locale": "es", - "@@last_modified": "2023-08-31T15:49:19.812582", + "@@last_modified": "2023-09-01T13:12:06.492378", "accessDisabledErrorText": "Se ha inhabilitado temporalmente al acceso a esta cuenta", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es_419.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es_419.arb index ad0d4200..133c7ab3 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es_419.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_es_419.arb @@ -1,6 +1,6 @@ { "@@locale": "es_419", - "@@last_modified": "2023-08-31T15:49:19.840098", + "@@last_modified": "2023-09-01T13:12:06.522080", "accessDisabledErrorText": "Se inhabilitó temporalmente el acceso a la cuenta", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_fr.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_fr.arb index c210be3e..f532a702 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_fr.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_fr.arb @@ -1,6 +1,6 @@ { "@@locale": "fr", - "@@last_modified": "2023-08-31T15:49:19.846260", + "@@last_modified": "2023-09-01T13:12:06.525671", "accessDisabledErrorText": "L'accès à ce compte a été temporairement désactivé", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_he.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_he.arb index cd694bbc..94625031 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_he.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_he.arb @@ -1,6 +1,6 @@ { "@@locale": "he", - "@@last_modified": "2023-08-31T15:49:19.833349", + "@@last_modified": "2023-09-01T13:12:06.520582", "accessDisabledErrorText": "הגישה לחשבון זה הושבתה באופן זמני", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hi.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hi.arb index b3f42798..02e23fa6 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hi.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hi.arb @@ -1,6 +1,6 @@ { "@@locale": "hi", - "@@last_modified": "2023-08-31T15:49:19.845305", + "@@last_modified": "2023-09-01T13:12:06.526288", "accessDisabledErrorText": "इस खाते के ऐक्सेस पर, कुछ समय के लिए रोक लगा दी गई है", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hu.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hu.arb index f45f7738..5b1ac0d6 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hu.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_hu.arb @@ -1,6 +1,6 @@ { "@@locale": "hu", - "@@last_modified": "2023-08-31T15:49:19.825507", + "@@last_modified": "2023-09-01T13:12:06.501369", "accessDisabledErrorText": "A fiók átmenetileg le van tiltva", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_id.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_id.arb index 04068789..82d313bc 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_id.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_id.arb @@ -1,6 +1,6 @@ { "@@locale": "id", - "@@last_modified": "2023-08-31T15:49:19.827378", + "@@last_modified": "2023-09-01T13:12:06.512030", "accessDisabledErrorText": "Akses ke akun ini telah dinonaktifkan untuk sementara waktu", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_it.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_it.arb index 5ec967f4..7ef1959d 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_it.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_it.arb @@ -1,6 +1,6 @@ { "@@locale": "it", - "@@last_modified": "2023-08-31T15:49:19.834393", + "@@last_modified": "2023-09-01T13:12:06.506104", "accessDisabledErrorText": "L'accesso a questo account è stato temporaneamente disabilitato", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ja.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ja.arb index 98681226..22ce1701 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ja.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ja.arb @@ -1,6 +1,6 @@ { "@@locale": "ja", - "@@last_modified": "2023-08-31T15:49:19.843967", + "@@last_modified": "2023-09-01T13:12:06.524530", "accessDisabledErrorText": "このアカウントへのアクセスが一時的に無効になっています", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ko.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ko.arb index affdb28b..4516b481 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ko.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ko.arb @@ -1,6 +1,6 @@ { "@@locale": "ko", - "@@last_modified": "2023-08-31T15:49:19.820707", + "@@last_modified": "2023-09-01T13:12:06.509561", "accessDisabledErrorText": "이 계정의 액세스가 일시적으로 중지되었습니다.", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_nl.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_nl.arb index 34eee9ef..8fad4f34 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_nl.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_nl.arb @@ -1,6 +1,6 @@ { "@@locale": "nl", - "@@last_modified": "2023-08-31T15:49:19.842616", + "@@last_modified": "2023-09-01T13:12:06.518202", "accessDisabledErrorText": "De toegang tot dit account is tijdelijk uitgezet", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pl.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pl.arb index 646216ca..5e77a186 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pl.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pl.arb @@ -1,6 +1,6 @@ { "@@locale": "pl", - "@@last_modified": "2023-08-31T15:49:19.841548", + "@@last_modified": "2023-09-01T13:12:06.521431", "accessDisabledErrorText": "Dostęp do tego konta został tymczasowo wyłączony", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pt.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pt.arb index 322a9cdb..91f56d15 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pt.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_pt.arb @@ -1,6 +1,6 @@ { "@@locale": "pt", - "@@last_modified": "2023-08-31T15:49:19.829447", + "@@last_modified": "2023-09-01T13:12:06.514305", "accessDisabledErrorText": "O acesso a esta conta foi desativado temporariamente", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ru.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ru.arb index f0b2c797..cb86ffc5 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ru.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_ru.arb @@ -1,6 +1,6 @@ { "@@locale": "ru", - "@@last_modified": "2023-08-31T15:49:19.845798", + "@@last_modified": "2023-09-01T13:12:06.525039", "accessDisabledErrorText": "Доступ к этому аккаунту временно заблокирован.", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_th.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_th.arb index 0f60082f..58257afe 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_th.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_th.arb @@ -1,6 +1,6 @@ { "@@locale": "th", - "@@last_modified": "2023-08-31T15:49:19.837815", + "@@last_modified": "2023-09-01T13:12:06.510999", "accessDisabledErrorText": "มีการปิดใช้สิทธิ์เข้าถึงบัญชีนี้ชั่วคราว", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_tr.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_tr.arb index e59043fc..a7c4f413 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_tr.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_tr.arb @@ -1,6 +1,6 @@ { "@@locale": "tr", - "@@last_modified": "2023-08-31T15:49:19.839337", + "@@last_modified": "2023-09-01T13:12:06.517141", "accessDisabledErrorText": "Bu hesaba erişim geçici olarak devre dışı bırakıldı", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_uk.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_uk.arb index 1273ac54..143e3595 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_uk.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_uk.arb @@ -1,6 +1,6 @@ { "@@locale": "uk", - "@@last_modified": "2023-08-31T15:49:19.836705", + "@@last_modified": "2023-09-01T13:12:06.513079", "accessDisabledErrorText": "Доступ до цього облікового запису тимчасово вимкнено", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh.arb index 96a5b140..c3544bd5 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh.arb @@ -1,6 +1,6 @@ { "@@locale": "zh", - "@@last_modified": "2023-08-31T15:49:19.844650", + "@@last_modified": "2023-09-01T13:12:06.524014", "accessDisabledErrorText": "对此帐号的访问权限已被临时停用", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh_TW.arb b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh_TW.arb index 25d2201d..cb52df40 100644 --- a/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh_TW.arb +++ b/packages/firebase_ui_localizations/lib/l10n/firebase_ui_zh_TW.arb @@ -1,6 +1,6 @@ { "@@locale": "zh_TW", - "@@last_modified": "2023-08-31T15:49:19.838651", + "@@last_modified": "2023-09-01T13:12:06.515336", "accessDisabledErrorText": "這個帳戶暫時無法存取", "@accessDisabledErrorText": { "description": "Used as an error message when account is blocked and user tries to perform some actions with the account (e.g. unlinking a credential).", @@ -428,5 +428,60 @@ "@uploadButtonText": { "description": "UploadButton label", "placeholders": {} + }, + "verifyEmailTitle": "Verify your email", + "@verifyEmailTitle": { + "description": "EmailVerificationScreen title", + "placeholders": {} + }, + "verificationEmailSentText": "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address.", + "@verificationEmailSentText": { + "description": "Hint text indicating that verification email has been sent", + "placeholders": {} + }, + "verificationFailedText": "We couldn't verify your email address. ", + "@verificationFailedText": { + "description": "Message indicating that something went wrong during email verification", + "placeholders": {} + }, + "resendVerificationEmailButtonLabel": "Resend verification email", + "@resendVerificationEmailButtonLabel": { + "description": "Button label that suggests to resend verification email", + "placeholders": {} + }, + "verificationEmailSentTextShort": "Verification email sent", + "@verificationEmailSentTextShort": { + "description": "Short version of the hint text indicating that verification email has been sent", + "placeholders": {} + }, + "emailIsNotVerifiedText": "Email is not verified", + "@emailIsNotVerifiedText": { + "description": "Message indicating that email is not verified", + "placeholders": {} + }, + "waitingForEmailVerificationText": "Waiting for email verification", + "@waitingForEmailVerificationText": { + "description": "Message indicating that email is being verified", + "placeholders": {} + }, + "dismissButtonLabel": "Dismiss", + "@dismiss": { + "description": "Dissmiss button label", + "placeholders": {} + }, + "okButtonLabel": "OK", + "@okButtonLabel": { + "description": "OK button label", + "placeholders": {} + }, + "checkEmailHintText": "Please check your email and click the link to verify your email address.", + "@checkEmailHintText": { + "description": "Hint text prompting the user to check email for verification link", + "placeholders": {} + }, + "doneButtonLabel": "Done", + "@doneButtonLabel": { + "description": "Done button label", + "placeholders": {} } } diff --git a/packages/firebase_ui_localizations/lib/src/default_localizations.dart b/packages/firebase_ui_localizations/lib/src/default_localizations.dart index dc630fcf..f03e9f88 100644 --- a/packages/firebase_ui_localizations/lib/src/default_localizations.dart +++ b/packages/firebase_ui_localizations/lib/src/default_localizations.dart @@ -269,7 +269,41 @@ abstract class FirebaseUILocalizationLabels { String get referenceLabel; /// `UploadButton` label - String get uploadButtonText => "Upload file"; + String get uploadButtonText; + + /// EmailVerificationScreen title + String get verifyEmailTitle; + + /// Hint text indicating that verification email has been sent + String get verificationEmailSentText; + + /// Short version of the hint text indicating that verification email has + /// been sent + String get verificationEmailSentTextShort; + + /// Message indicating that something went wrong during email verification + String get verificationFailedText; + + /// Message indicating that email is not verified + String get emailIsNotVerifiedText; + + /// Message indicating that email is being verified + String get waitingForEmailVerificationText; + + /// Button label that suggests to resend verification email + String get resendVerificationEmailButtonLabel; + + /// Hint text prompting the user to check email for verification link + String get checkEmailHintText; + + /// Dissmiss button label + String get dismissButtonLabel; + + /// OK button label + String get okButtonLabel; + + /// Done button label + String get doneButtonLabel; } class DefaultLocalizations extends EnLocalizations { diff --git a/packages/firebase_ui_localizations/lib/src/lang/ar.dart b/packages/firebase_ui_localizations/lib/src/lang/ar.dart index ef3ad2c9..a5957036 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/ar.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/ar.dart @@ -272,4 +272,41 @@ class ArLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/de.dart b/packages/firebase_ui_localizations/lib/src/lang/de.dart index 04b55bc1..61d2f4a3 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/de.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/de.dart @@ -269,4 +269,41 @@ class DeLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/en.dart b/packages/firebase_ui_localizations/lib/src/lang/en.dart index a68da548..3eab0b82 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/en.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/en.dart @@ -265,4 +265,41 @@ class EnLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/es.dart b/packages/firebase_ui_localizations/lib/src/lang/es.dart index e61f8468..2674699e 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/es.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/es.dart @@ -274,4 +274,41 @@ class EsLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/es_419.dart b/packages/firebase_ui_localizations/lib/src/lang/es_419.dart index 82d352c2..e8b049be 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/es_419.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/es_419.dart @@ -271,4 +271,41 @@ class Es419Localizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/fr.dart b/packages/firebase_ui_localizations/lib/src/lang/fr.dart index a56a7ece..e220c8e1 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/fr.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/fr.dart @@ -275,4 +275,41 @@ class FrLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/he.dart b/packages/firebase_ui_localizations/lib/src/lang/he.dart index 33a90bfa..92ec352c 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/he.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/he.dart @@ -265,4 +265,41 @@ class HeLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/hi.dart b/packages/firebase_ui_localizations/lib/src/lang/hi.dart index 466d4067..e842d40a 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/hi.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/hi.dart @@ -268,4 +268,41 @@ class HiLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/hu.dart b/packages/firebase_ui_localizations/lib/src/lang/hu.dart index a67120f8..9e720bba 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/hu.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/hu.dart @@ -266,4 +266,41 @@ class HuLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/id.dart b/packages/firebase_ui_localizations/lib/src/lang/id.dart index 46de49f6..67dc5e11 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/id.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/id.dart @@ -266,4 +266,41 @@ class IdLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/it.dart b/packages/firebase_ui_localizations/lib/src/lang/it.dart index 788e26f9..551e1279 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/it.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/it.dart @@ -269,4 +269,41 @@ class ItLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/ja.dart b/packages/firebase_ui_localizations/lib/src/lang/ja.dart index 39d4e455..95ee6735 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/ja.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/ja.dart @@ -262,4 +262,41 @@ class JaLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/ko.dart b/packages/firebase_ui_localizations/lib/src/lang/ko.dart index 8358a398..24c239ff 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/ko.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/ko.dart @@ -260,4 +260,41 @@ class KoLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/nl.dart b/packages/firebase_ui_localizations/lib/src/lang/nl.dart index 5a3589ce..44a45c14 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/nl.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/nl.dart @@ -268,4 +268,41 @@ class NlLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/pl.dart b/packages/firebase_ui_localizations/lib/src/lang/pl.dart index 913e2f64..7517997e 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/pl.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/pl.dart @@ -268,4 +268,41 @@ class PlLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/pt.dart b/packages/firebase_ui_localizations/lib/src/lang/pt.dart index 7703780b..44a84d1e 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/pt.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/pt.dart @@ -269,4 +269,41 @@ class PtLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/ru.dart b/packages/firebase_ui_localizations/lib/src/lang/ru.dart index 0776d7bf..ebb06010 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/ru.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/ru.dart @@ -268,4 +268,41 @@ class RuLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/th.dart b/packages/firebase_ui_localizations/lib/src/lang/th.dart index bccdd0db..d0e35b65 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/th.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/th.dart @@ -265,4 +265,41 @@ class ThLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/tr.dart b/packages/firebase_ui_localizations/lib/src/lang/tr.dart index 01101e72..3f6d89a5 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/tr.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/tr.dart @@ -268,4 +268,41 @@ class TrLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/uk.dart b/packages/firebase_ui_localizations/lib/src/lang/uk.dart index 8a5c0314..5e4c3746 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/uk.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/uk.dart @@ -270,4 +270,41 @@ class UkLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/zh.dart b/packages/firebase_ui_localizations/lib/src/lang/zh.dart index bf1e9adf..7105ea1d 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/zh.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/zh.dart @@ -258,4 +258,41 @@ class ZhLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; } diff --git a/packages/firebase_ui_localizations/lib/src/lang/zh_tw.dart b/packages/firebase_ui_localizations/lib/src/lang/zh_tw.dart index d32265e5..0054b862 100644 --- a/packages/firebase_ui_localizations/lib/src/lang/zh_tw.dart +++ b/packages/firebase_ui_localizations/lib/src/lang/zh_tw.dart @@ -258,4 +258,41 @@ class ZhTWLocalizations extends FirebaseUILocalizationLabels { @override String get uploadButtonText => "Upload file"; + + @override + String get verifyEmailTitle => "Verify your email"; + + @override + String get verificationEmailSentText => + "A verification email has been sent to your email address. Please check your email and click on the link to verify your email address."; + + @override + String get verificationFailedText => + "We couldn't verify your email address. "; + + @override + String get resendVerificationEmailButtonLabel => "Resend verification email"; + + @override + String get verificationEmailSentTextShort => "Verification email sent"; + + @override + String get emailIsNotVerifiedText => "Email is not verified"; + + @override + String get waitingForEmailVerificationText => + "Waiting for email verification"; + + @override + String get dismissButtonLabel => "Dismiss"; + + @override + String get okButtonLabel => "OK"; + + @override + String get checkEmailHintText => + "Please check your email and click the link to verify your email address."; + + @override + String get doneButtonLabel => "Done"; }