|
@@ -170,16 +170,6 @@ class S {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
- /// `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(
|
|
@@ -7714,6 +7704,36 @@ class S {
|
|
|
args: [],
|
|
|
);
|
|
|
}
|
|
|
+
|
|
|
+ ///Note
|
|
|
+ String get note {
|
|
|
+ return Intl.message(
|
|
|
+ 'Note',
|
|
|
+ name: 'note',
|
|
|
+ desc: '',
|
|
|
+ args: [],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ ///Photos and Auth share the same account
|
|
|
+ String get photosAndAuthShareTheSameAccount {
|
|
|
+ return Intl.message(
|
|
|
+ 'Photos and Auth share the same account',
|
|
|
+ name: 'photosAndAuthShareTheSameAccount',
|
|
|
+ desc: '',
|
|
|
+ args: [],
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ ///Yes, I want to permanently delete this account and all its data (Photos and Auth)
|
|
|
+ String get confirmDeletePrompt {
|
|
|
+ return Intl.message(
|
|
|
+ 'Yes, I want to permanently delete this account and all its data (Photos and Auth)',
|
|
|
+ name: 'confirmDeletePrompt',
|
|
|
+ desc: '',
|
|
|
+ args: [],
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|