123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- import 'package:flutter/material.dart';
- import 'package:intl/intl.dart';
- import 'intl/messages_all.dart';
- // **************************************************************************
- // Generator: Flutter Intl IDE plugin
- // Made by Localizely
- // **************************************************************************
- // ignore_for_file: non_constant_identifier_names, lines_longer_than_80_chars
- // ignore_for_file: join_return_with_assignment, prefer_final_in_for_each
- // ignore_for_file: avoid_redundant_argument_values, avoid_escaping_inner_quotes
- class S {
- S();
- static S? _current;
- static S get current {
- assert(_current != null,
- 'No instance of S was loaded. Try to initialize the S delegate before accessing S.current.');
- return _current!;
- }
- static const AppLocalizationDelegate delegate = AppLocalizationDelegate();
- static Future<S> load(Locale locale) {
- final name = (locale.countryCode?.isEmpty ?? false)
- ? locale.languageCode
- : locale.toString();
- final localeName = Intl.canonicalizedLocale(name);
- return initializeMessages(localeName).then((_) {
- Intl.defaultLocale = localeName;
- final instance = S();
- S._current = instance;
- return instance;
- });
- }
- static S of(BuildContext context) {
- final instance = S.maybeOf(context);
- assert(instance != null,
- 'No instance of S present in the widget tree. Did you add S.delegate in localizationsDelegates?');
- return instance!;
- }
- static S? maybeOf(BuildContext context) {
- return Localizations.of<S>(context, S);
- }
- /// `Enter your email address`
- String get enterYourEmailAddress {
- return Intl.message(
- 'Enter your email address',
- name: 'enterYourEmailAddress',
- desc: '',
- args: [],
- );
- }
- /// `Welcome back!`
- String get accountWelcomeBack {
- return Intl.message(
- 'Welcome back!',
- name: 'accountWelcomeBack',
- desc: '',
- args: [],
- );
- }
- /// `Email`
- String get email {
- return Intl.message(
- 'Email',
- name: 'email',
- desc: '',
- args: [],
- );
- }
- /// `Cancel`
- String get cancel {
- return Intl.message(
- 'Cancel',
- name: 'cancel',
- desc: '',
- args: [],
- );
- }
- /// `Verify`
- String get verify {
- return Intl.message(
- 'Verify',
- name: 'verify',
- desc: '',
- args: [],
- );
- }
- /// `Invalid email address`
- String get invalidEmailAddress {
- return Intl.message(
- 'Invalid email address',
- name: 'invalidEmailAddress',
- desc: '',
- args: [],
- );
- }
- /// `Please enter a valid email address.`
- String get enterValidEmail {
- return Intl.message(
- 'Please enter a valid email address.',
- name: 'enterValidEmail',
- desc: '',
- args: [],
- );
- }
- /// `Delete account`
- String get deleteAccount {
- return Intl.message(
- 'Delete account',
- name: 'deleteAccount',
- desc: '',
- args: [],
- );
- }
- /// `What is the main reason you are deleting your account?`
- String get askDeleteReason {
- return Intl.message(
- 'What is the main reason you are deleting your account?',
- name: 'askDeleteReason',
- desc: '',
- args: [],
- );
- }
- /// `We are sorry to see you go. Please share your feedback to help us improve.`
- String get deleteAccountFeedbackPrompt {
- return Intl.message(
- 'We are sorry to see you go. Please share your feedback to help us improve.',
- name: 'deleteAccountFeedbackPrompt',
- desc: '',
- args: [],
- );
- }
- /// `Feedback`
- String get feedback {
- return Intl.message(
- 'Feedback',
- name: 'feedback',
- desc: '',
- args: [],
- );
- }
- /// `Kindly help us with this information`
- String get kindlyHelpUsWithThisInformation {
- return Intl.message(
- 'Kindly help us with this information',
- name: 'kindlyHelpUsWithThisInformation',
- desc: '',
- args: [],
- );
- }
- /// `Yes, I want to permanently delete this account and all its data.`
- String get confirmDeletePrompt {
- return Intl.message(
- 'Yes, I want to permanently delete this account and all its data.',
- name: 'confirmDeletePrompt',
- desc: '',
- args: [],
- );
- }
- /// `Confirm Account Deletion`
- String get confirmAccountDeletion {
- return Intl.message(
- 'Confirm Account Deletion',
- name: 'confirmAccountDeletion',
- desc: '',
- args: [],
- );
- }
- /// `You are about to permanently delete your account and all its data.\nThis action is irreversible.`
- String get deleteConfirmDialogBody {
- return Intl.message(
- 'You are about to permanently delete your account and all its data.\nThis action is irreversible.',
- name: 'deleteConfirmDialogBody',
- desc: '',
- args: [],
- );
- }
- /// `Delete Account Permanently`
- String get deleteAccountPermanentlyButton {
- return Intl.message(
- 'Delete Account Permanently',
- name: 'deleteAccountPermanentlyButton',
- desc: '',
- args: [],
- );
- }
- /// `Your account has been deleted`
- String get yourAccountHasBeenDeleted {
- return Intl.message(
- 'Your account has been deleted',
- name: 'yourAccountHasBeenDeleted',
- desc: '',
- args: [],
- );
- }
- /// `Select reason`
- String get selectReason {
- return Intl.message(
- 'Select reason',
- name: 'selectReason',
- desc: '',
- args: [],
- );
- }
- /// `It’s missing a key feature that I need`
- String get deleteReason1 {
- return Intl.message(
- 'It’s missing a key feature that I need',
- name: 'deleteReason1',
- desc: '',
- args: [],
- );
- }
- /// `The app or a certain feature does not \nbehave as I think it should`
- String get deleteReason2 {
- return Intl.message(
- 'The app or a certain feature does not \nbehave as I think it should',
- name: 'deleteReason2',
- desc: '',
- args: [],
- );
- }
- /// `I found another service that I like better`
- String get deleteReason3 {
- return Intl.message(
- 'I found another service that I like better',
- name: 'deleteReason3',
- desc: '',
- args: [],
- );
- }
- /// `My reason isn’t listed`
- String get deleteReason4 {
- return Intl.message(
- 'My reason isn’t listed',
- name: 'deleteReason4',
- desc: '',
- args: [],
- );
- }
- /// `Send email`
- String get sendEmail {
- return Intl.message(
- 'Send email',
- name: 'sendEmail',
- desc: '',
- args: [],
- );
- }
- /// `Your request will be processed within 72 hours.`
- String get deleteRequestSLAText {
- return Intl.message(
- 'Your request will be processed within 72 hours.',
- name: 'deleteRequestSLAText',
- desc: '',
- args: [],
- );
- }
- /// `Please send an email to`
- String get pleaseSendAnEmailTo {
- return Intl.message(
- 'Please send an email to',
- name: 'pleaseSendAnEmailTo',
- desc:
- 'This text is part of the sentence \'Please send an email to email@ente.io from your registered email address.\'',
- args: [],
- );
- }
- /// `from your registered email address.`
- String get fromYourRegisteredEmailAddress {
- return Intl.message(
- 'from your registered email address.',
- name: 'fromYourRegisteredEmailAddress',
- desc:
- 'This text is part of the sentence \'Please send an email to email@ente.io from your registered email address.\'',
- args: [],
- );
- }
- /// `Ok`
- String get ok {
- return Intl.message(
- 'Ok',
- name: 'ok',
- desc: '',
- args: [],
- );
- }
- /// `Create account`
- String get createAccount {
- return Intl.message(
- 'Create account',
- name: 'createAccount',
- desc: '',
- args: [],
- );
- }
- /// `Create new account`
- String get createNewAccount {
- return Intl.message(
- 'Create new account',
- name: 'createNewAccount',
- desc: '',
- args: [],
- );
- }
- /// `Password`
- String get password {
- return Intl.message(
- 'Password',
- name: 'password',
- desc: '',
- args: [],
- );
- }
- /// `Confirm password`
- String get confirmPassword {
- return Intl.message(
- 'Confirm password',
- name: 'confirmPassword',
- desc: '',
- args: [],
- );
- }
- /// `Active sessions`
- String get activeSessions {
- return Intl.message(
- 'Active sessions',
- name: 'activeSessions',
- desc: '',
- args: [],
- );
- }
- /// `Oops`
- String get oops {
- return Intl.message(
- 'Oops',
- name: 'oops',
- desc: '',
- args: [],
- );
- }
- /// `Something went wrong, please try again`
- String get somethingWentWrongPleaseTryAgain {
- return Intl.message(
- 'Something went wrong, please try again',
- name: 'somethingWentWrongPleaseTryAgain',
- desc: '',
- args: [],
- );
- }
- /// `This will log you out of this device!`
- String get thisWillLogYouOutOfThisDevice {
- return Intl.message(
- 'This will log you out of this device!',
- name: 'thisWillLogYouOutOfThisDevice',
- desc: '',
- args: [],
- );
- }
- /// `This will log you out of the following device:`
- String get thisWillLogYouOutOfTheFollowingDevice {
- return Intl.message(
- 'This will log you out of the following device:',
- name: 'thisWillLogYouOutOfTheFollowingDevice',
- desc: '',
- args: [],
- );
- }
- /// `Terminate session?`
- String get terminateSession {
- return Intl.message(
- 'Terminate session?',
- name: 'terminateSession',
- desc: '',
- args: [],
- );
- }
- /// `Terminate`
- String get terminate {
- return Intl.message(
- 'Terminate',
- name: 'terminate',
- desc: '',
- args: [],
- );
- }
- /// `This device`
- String get thisDevice {
- return Intl.message(
- 'This device',
- name: 'thisDevice',
- desc: '',
- args: [],
- );
- }
- /// `Recover`
- String get recoverButton {
- return Intl.message(
- 'Recover',
- name: 'recoverButton',
- desc: '',
- args: [],
- );
- }
- /// `Recovery successful!`
- String get recoverySuccessful {
- return Intl.message(
- 'Recovery successful!',
- name: 'recoverySuccessful',
- desc: '',
- args: [],
- );
- }
- /// `Decrypting...`
- String get decrypting {
- return Intl.message(
- 'Decrypting...',
- name: 'decrypting',
- desc: '',
- args: [],
- );
- }
- /// `Incorrect recovery key`
- String get incorrectRecoveryKeyTitle {
- return Intl.message(
- 'Incorrect recovery key',
- name: 'incorrectRecoveryKeyTitle',
- desc: '',
- args: [],
- );
- }
- /// `The recovery key you entered is incorrect`
- String get incorrectRecoveryKeyBody {
- return Intl.message(
- 'The recovery key you entered is incorrect',
- name: 'incorrectRecoveryKeyBody',
- desc: '',
- args: [],
- );
- }
- /// `Forgot password`
- String get forgotPassword {
- return Intl.message(
- 'Forgot password',
- name: 'forgotPassword',
- desc: '',
- args: [],
- );
- }
- /// `Enter your recovery key`
- String get enterYourRecoveryKey {
- return Intl.message(
- 'Enter your recovery key',
- name: 'enterYourRecoveryKey',
- desc: '',
- args: [],
- );
- }
- /// `No recovery key?`
- String get noRecoveryKey {
- return Intl.message(
- 'No recovery key?',
- name: 'noRecoveryKey',
- desc: '',
- args: [],
- );
- }
- /// `Sorry`
- String get sorry {
- return Intl.message(
- 'Sorry',
- name: 'sorry',
- desc: '',
- args: [],
- );
- }
- /// `Due to the nature of our end-to-end encryption protocol, your data cannot be decrypted without your password or recovery key`
- String get noRecoveryKeyNoDecryption {
- return Intl.message(
- 'Due to the nature of our end-to-end encryption protocol, your data cannot be decrypted without your password or recovery key',
- name: 'noRecoveryKeyNoDecryption',
- desc: '',
- args: [],
- );
- }
- /// `Verify email`
- String get verifyEmail {
- return Intl.message(
- 'Verify email',
- name: 'verifyEmail',
- desc: '',
- args: [],
- );
- }
- /// `Please check your inbox (and spam) to complete verification`
- String get checkInboxAndSpamFolder {
- return Intl.message(
- 'Please check your inbox (and spam) to complete verification',
- name: 'checkInboxAndSpamFolder',
- desc: '',
- args: [],
- );
- }
- /// `Tap to enter code`
- String get tapToEnterCode {
- return Intl.message(
- 'Tap to enter code',
- name: 'tapToEnterCode',
- desc: '',
- args: [],
- );
- }
- /// `Resend email`
- String get resendEmail {
- return Intl.message(
- 'Resend email',
- name: 'resendEmail',
- desc: '',
- args: [],
- );
- }
- /// `We've sent a mail to`
- String get weveSentAMailTo {
- return Intl.message(
- 'We\'ve sent a mail to',
- name: 'weveSentAMailTo',
- desc: '',
- args: [],
- );
- }
- /// `Set password`
- String get setPasswordTitle {
- return Intl.message(
- 'Set password',
- name: 'setPasswordTitle',
- desc: '',
- args: [],
- );
- }
- /// `Change password`
- String get changePasswordTitle {
- return Intl.message(
- 'Change password',
- name: 'changePasswordTitle',
- desc: '',
- args: [],
- );
- }
- /// `Reset password`
- String get resetPasswordTitle {
- return Intl.message(
- 'Reset password',
- name: 'resetPasswordTitle',
- desc: '',
- args: [],
- );
- }
- /// `Encryption keys`
- String get encryptionKeys {
- return Intl.message(
- 'Encryption keys',
- name: 'encryptionKeys',
- desc: '',
- args: [],
- );
- }
- /// `We don't store this password, so if you forget,`
- String get noPasswordWarningPart1 {
- return Intl.message(
- 'We don\'t store this password, so if you forget,',
- name: 'noPasswordWarningPart1',
- desc:
- 'This text is part1 the sentence \'We don\'t store this password, so if you forget, we cannot decrypt your data.\'',
- args: [],
- );
- }
- /// `we cannot decrypt your data`
- String get noPasswordWarningPart2 {
- return Intl.message(
- 'we cannot decrypt your data',
- name: 'noPasswordWarningPart2',
- desc:
- 'This text is part2 the sentence \'We don\'t store this password, so if you forget, we cannot decrypt your data.\'',
- args: [],
- );
- }
- /// `Enter a password we can use to encrypt your data`
- String get enterPasswordToEncrypt {
- return Intl.message(
- 'Enter a password we can use to encrypt your data',
- name: 'enterPasswordToEncrypt',
- desc: '',
- args: [],
- );
- }
- /// `Enter a new password we can use to encrypt your data`
- String get enterNewPasswordToEncrypt {
- return Intl.message(
- 'Enter a new password we can use to encrypt your data',
- name: 'enterNewPasswordToEncrypt',
- desc: '',
- args: [],
- );
- }
- /// `Weak`
- String get weakStrength {
- return Intl.message(
- 'Weak',
- name: 'weakStrength',
- desc: '',
- args: [],
- );
- }
- /// `Strong`
- String get strongStrength {
- return Intl.message(
- 'Strong',
- name: 'strongStrength',
- desc: '',
- args: [],
- );
- }
- /// `Moderate`
- String get moderateStrength {
- return Intl.message(
- 'Moderate',
- name: 'moderateStrength',
- desc: '',
- args: [],
- );
- }
- /// `Password strength: {passwordStrengthValue}`
- String passwordStrength(String passwordStrengthValue) {
- return Intl.message(
- 'Password strength: $passwordStrengthValue',
- name: 'passwordStrength',
- desc: 'Text to indicate the password strength',
- args: [passwordStrengthValue],
- );
- }
- /// `Password changed successfully`
- String get passwordChangedSuccessfully {
- return Intl.message(
- 'Password changed successfully',
- name: 'passwordChangedSuccessfully',
- desc: '',
- args: [],
- );
- }
- /// `Generating encryption keys...`
- String get generatingEncryptionKeys {
- return Intl.message(
- 'Generating encryption keys...',
- name: 'generatingEncryptionKeys',
- desc: '',
- args: [],
- );
- }
- /// `Please wait...`
- String get pleaseWait {
- return Intl.message(
- 'Please wait...',
- name: 'pleaseWait',
- desc: '',
- args: [],
- );
- }
- /// `Continue`
- String get continueLabel {
- return Intl.message(
- 'Continue',
- name: 'continueLabel',
- desc: '',
- args: [],
- );
- }
- /// `Insecure device`
- String get insecureDevice {
- return Intl.message(
- 'Insecure device',
- name: 'insecureDevice',
- desc: '',
- args: [],
- );
- }
- /// `Sorry, we could not generate secure keys on this device.\n\nplease sign up from a different device.`
- String get sorryWeCouldNotGenerateSecureKeysOnThisDevicennplease {
- return Intl.message(
- 'Sorry, we could not generate secure keys on this device.\n\nplease sign up from a different device.',
- name: 'sorryWeCouldNotGenerateSecureKeysOnThisDevicennplease',
- desc: '',
- args: [],
- );
- }
- /// `How it works`
- String get howItWorks {
- return Intl.message(
- 'How it works',
- name: 'howItWorks',
- desc: '',
- args: [],
- );
- }
- /// `Encryption`
- String get encryption {
- return Intl.message(
- 'Encryption',
- name: 'encryption',
- desc: '',
- args: [],
- );
- }
- /// `I understand that if I lose my password, I may lose my data since my data is `
- String get ackPasswordLostWarningPart1 {
- return Intl.message(
- 'I understand that if I lose my password, I may lose my data since my data is ',
- name: 'ackPasswordLostWarningPart1',
- desc: '',
- args: [],
- );
- }
- /// `end-to-end encrypted`
- String get endToEndEncrypted {
- return Intl.message(
- 'end-to-end encrypted',
- name: 'endToEndEncrypted',
- desc: '',
- args: [],
- );
- }
- /// ` with ente`
- String get ackPasswordLostWarningPart2 {
- return Intl.message(
- ' with ente',
- name: 'ackPasswordLostWarningPart2',
- desc:
- 'This text is part2 the sentence \'I understand that if I lose my password, I may lose my data since my data is end-to-end encrypted with ente.\'',
- args: [],
- );
- }
- /// `Privacy Policy`
- String get privacyPolicyTitle {
- return Intl.message(
- 'Privacy Policy',
- name: 'privacyPolicyTitle',
- desc: '',
- args: [],
- );
- }
- /// `Terms`
- String get termsOfServicesTitle {
- return Intl.message(
- 'Terms',
- name: 'termsOfServicesTitle',
- desc: '',
- args: [],
- );
- }
- /// `I agree to the`
- String get termsAgreePart1 {
- return Intl.message(
- 'I agree to the',
- name: 'termsAgreePart1',
- desc:
- 'This text is part the sentence \'I agree to the terms of service and privacy policy.\'',
- args: [],
- );
- }
- /// `privacy policy`
- String get privacyPolicy {
- return Intl.message(
- 'privacy policy',
- name: 'privacyPolicy',
- desc: '',
- args: [],
- );
- }
- /// `and`
- String get and {
- return Intl.message(
- 'and',
- name: 'and',
- desc:
- 'Separator used in sentences like \'I agree to the terms of service and privacy policy.\'',
- args: [],
- );
- }
- /// `terms of service`
- String get termsOfService {
- return Intl.message(
- 'terms of service',
- name: 'termsOfService',
- desc: '',
- args: [],
- );
- }
- }
- class AppLocalizationDelegate extends LocalizationsDelegate<S> {
- const AppLocalizationDelegate();
- List<Locale> get supportedLocales {
- return const <Locale>[
- Locale.fromSubtags(languageCode: 'en'),
- ];
- }
- @override
- bool isSupported(Locale locale) => _isSupported(locale);
- @override
- Future<S> load(Locale locale) => S.load(locale);
- @override
- bool shouldReload(AppLocalizationDelegate old) => false;
- bool _isSupported(Locale locale) {
- for (var supportedLocale in supportedLocales) {
- if (supportedLocale.languageCode == locale.languageCode) {
- return true;
- }
- }
- return false;
- }
- }
|