Skip to content

Commit

Permalink
feat: My account, modals, merge changes
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalheartxs committed Sep 27, 2024
1 parent 9e2814d commit 921a8bc
Show file tree
Hide file tree
Showing 3 changed files with 156 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,84 @@ abstract class VoicesLocalizations {
/// In en, this message translates to:
/// **'No wallet found.'**
String get noWalletFound;

/// A title on delete keychain dialog
///
/// In en, this message translates to:
/// **'Delete Keychain?'**
String get deleteKeychainDialogTitle;

/// A subtitle on delete keychain dialog
///
/// In en, this message translates to:
/// **'Are you sure you wants to delete your 
Catalyst Keychain from this device?'**
String get deleteKeychainDialogSubtitle;

/// A warning on delete keychain dialog
///
/// In en, this message translates to:
/// **'Make sure you have a working Catalyst 12-word seedphrase!'**
String get deleteKeychainDialogWarning;

/// A warning info on delete keychain dialog
///
/// In en, this message translates to:
/// **'Your Catalyst account will be removed,
this action cannot be undone!'**
String get deleteKeychainDialogWarningInfo;

/// A typing info on delete keychain dialog
///
/// In en, this message translates to:
/// **'To avoid mistakes, please type ‘Remove Keychain’ below.'**
String get deleteKeychainDialogTypingInfo;

/// An input label on delete keychain dialog
///
/// In en, this message translates to:
/// **'Confirm removal'**
String get deleteKeychainDialogInputLabel;

/// An error text on text field on delete keychain dialog
///
/// In en, this message translates to:
/// **'Error. Please type \'Remove keychain\' to remove your account from this device.'**
String get deleteKeychainDialogErrorText;

/// A removing phrase on delete keychain dialog
///
/// In en, this message translates to:
/// **'Remove Keychain'**
String get deleteKeychainDialogRemovingPhrase;

/// No description provided for @delete.
///
/// In en, this message translates to:
/// **'Delete'**
String get delete;

/// No description provided for @close.
///
/// In en, this message translates to:
/// **'Close'**
String get close;

/// A title on keychain deleted dialog
///
/// In en, this message translates to:
/// **'Catalyst keychain removed'**
String get keychainDeletedDialogTitle;

/// A subtitle on keychain deleted dialog
///
/// In en, this message translates to:
/// **'Catalyst keychain removed'**
String get keychainDeletedDialogSubtitle;

/// An info on keychain deleted dialog
///
/// In en, this message translates to:
/// **'Catalyst keychain removed'**
String get keychainDeletedDialogInfo;
}

class _VoicesLocalizationsDelegate extends LocalizationsDelegate<VoicesLocalizations> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,4 +459,43 @@ class VoicesLocalizationsEn extends VoicesLocalizations {

@override
String get noWalletFound => 'No wallet found.';

@override
String get deleteKeychainDialogTitle => 'Delete Keychain?';

@override
String get deleteKeychainDialogSubtitle => 'Are you sure you wants to delete your 
Catalyst Keychain from this device?';

@override
String get deleteKeychainDialogWarning => 'Make sure you have a working Catalyst 12-word seedphrase!';

@override
String get deleteKeychainDialogWarningInfo => 'Your Catalyst account will be removed,
this action cannot be undone!';

@override
String get deleteKeychainDialogTypingInfo => 'To avoid mistakes, please type ‘Remove Keychain’ below.';

@override
String get deleteKeychainDialogInputLabel => 'Confirm removal';

@override
String get deleteKeychainDialogErrorText => 'Error. Please type \'Remove keychain\' to remove your account from this device.';

@override
String get deleteKeychainDialogRemovingPhrase => 'Remove Keychain';

@override
String get delete => 'Delete';

@override
String get close => 'Close';

@override
String get keychainDeletedDialogTitle => 'Catalyst keychain removed';

@override
String get keychainDeletedDialogSubtitle => 'Catalyst keychain removed';

@override
String get keychainDeletedDialogInfo => 'Catalyst keychain removed';
}
Original file line number Diff line number Diff line change
Expand Up @@ -459,4 +459,43 @@ class VoicesLocalizationsEs extends VoicesLocalizations {

@override
String get noWalletFound => 'No wallet found.';

@override
String get deleteKeychainDialogTitle => 'Delete Keychain?';

@override
String get deleteKeychainDialogSubtitle => 'Are you sure you wants to delete your 
Catalyst Keychain from this device?';

@override
String get deleteKeychainDialogWarning => 'Make sure you have a working Catalyst 12-word seedphrase!';

@override
String get deleteKeychainDialogWarningInfo => 'Your Catalyst account will be removed,
this action cannot be undone!';

@override
String get deleteKeychainDialogTypingInfo => 'To avoid mistakes, please type ‘Remove Keychain’ below.';

@override
String get deleteKeychainDialogInputLabel => 'Confirm removal';

@override
String get deleteKeychainDialogErrorText => 'Error. Please type \'Remove keychain\' to remove your account from this device.';

@override
String get deleteKeychainDialogRemovingPhrase => 'Remove Keychain';

@override
String get delete => 'Delete';

@override
String get close => 'Close';

@override
String get keychainDeletedDialogTitle => 'Catalyst keychain removed';

@override
String get keychainDeletedDialogSubtitle => 'Catalyst keychain removed';

@override
String get keychainDeletedDialogInfo => 'Catalyst keychain removed';
}

0 comments on commit 921a8bc

Please sign in to comment.