@@ -497,6 +497,84 @@ abstract class AppLocalizations {
497497 /// In en, this message translates to:
498498 /// **'Privacy conscious'**
499499 String get privacyConscious;
500+
501+ /// Main tagline shown on welcome/intro screen
502+ ///
503+ /// In en, this message translates to:
504+ /// **'An open-source, multicoin wallet for everyone'**
505+ String get welcomeTagline;
506+
507+ /// Button text for starting wallet setup on mobile
508+ ///
509+ /// In en, this message translates to:
510+ /// **'Get started'**
511+ String get getStartedButton;
512+
513+ /// Button text for creating new wallet on desktop
514+ ///
515+ /// In en, this message translates to:
516+ /// **'Create new {appPrefix}'**
517+ String createNewWalletButton (String appPrefix);
518+
519+ /// Button text for restoring from backup on desktop
520+ ///
521+ /// In en, this message translates to:
522+ /// **'Restore from {appPrefix} backup'**
523+ String restoreFromBackupButton (String appPrefix);
524+
525+ /// First part of privacy agreement text
526+ ///
527+ /// In en, this message translates to:
528+ /// **'By using {appName}, you agree to the '**
529+ String privacyAgreementText (String appName);
530+
531+ /// Link text for terms of service
532+ ///
533+ /// In en, this message translates to:
534+ /// **'Terms of service'**
535+ String get termsOfServiceLinkText;
536+
537+ /// Conjunction between terms and privacy policy links
538+ ///
539+ /// In en, this message translates to:
540+ /// **' and '**
541+ String get privacyAgreementConjunction;
542+
543+ /// Link text for privacy policy
544+ ///
545+ /// In en, this message translates to:
546+ /// **'Privacy policy'**
547+ String get privacyPolicyLinkText;
548+
549+ /// Title text for PIN entry screen
550+ ///
551+ /// In en, this message translates to:
552+ /// **'Enter PIN'**
553+ String get enterPinTitle;
554+
555+ /// Button text for using biometric authentication
556+ ///
557+ /// In en, this message translates to:
558+ /// **'Use biometrics'**
559+ String get useBiometricsButton;
560+
561+ /// Loading message while wallets are being loaded
562+ ///
563+ /// In en, this message translates to:
564+ /// **'Loading wallets...'**
565+ String get loadingWalletsMessage;
566+
567+ /// Error message for incorrect PIN entry
568+ ///
569+ /// In en, this message translates to:
570+ /// **'Incorrect PIN. Please try again'**
571+ String get incorrectPinTryAgainError;
572+
573+ /// Error message when PIN attempts are throttled
574+ ///
575+ /// In en, this message translates to:
576+ /// **'Incorrect PIN entered too many times. Please wait {waitTime}'**
577+ String incorrectPinThrottleError (String waitTime);
500578}
501579
502580class _AppLocalizationsDelegate extends LocalizationsDelegate <AppLocalizations > {
0 commit comments