Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions assets/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,22 +114,22 @@
"walletsManagerStepBuilderCreationWalletError": "Failed to create wallet, please try again later",
"walletCreationTitle": "Create wallet",
"walletImportTitle": "Import wallet",
"walletImportByFileTitle": "Importing seed file",
"walletImportByFileTitle": "Importing seed phrase file",
"walletImportCreatePasswordTitle": "Create a password for \"{}\" wallet",
"walletImportByFileDescription": "Create a password of your seed file to decrypt it. This password will be used to log in to your wallet",
"walletImportByFileDescription": "Create a password of your seed phrase file to decrypt it. This password will be used to log in to your wallet",
"walletLogInTitle": "Log in",
"walletCreationNameHint": "Wallet name",
"walletCreationPasswordHint": "Wallet password",
"walletCreationConfirmPasswordHint": "Confirm password",
"walletCreationConfirmPassword": "Confirm password",
"walletCreationUploadFile": "Upload seed file",
"walletCreationEmptySeedError": "Seed should not be empty",
"walletCreationUploadFile": "Upload seed phrase file",
"walletCreationEmptySeedError": "Seed phrase should not be empty",
"walletCreationExistNameError": "Wallet name exists",
"walletCreationNameLengthError": "Name length should be between 1 and 40",
"walletCreationFormatPasswordError": "Password must contain at least 8 characters, with at least one digit, one lower-case, one upper-case and one special symbol. The password can't contain the same character 3 times in a row. The password can't contain the word 'password'",
"walletCreationConfirmPasswordError": "Your passwords do not match. Please try again.",
"incorrectPassword": "Incorrect password",
"importSeedEnterSeedPhraseHint": "Enter seed",
"importSeedEnterSeedPhraseHint": "Enter seed phrase",
"passphraseCheckingTitle": "Let's double check your seed phrase",
"passphraseCheckingDescription": "Your seed phrase is important - that's why it is important to make sure it is saved correctly. We'll ask you to confirm the position of three words in your seed phrase to make sure it has been saved, so you'll be able to easily restore your wallet wherever and whenever you want.",
"passphraseCheckingEnterWord": "Enter the {} word of your seed phrase:",
Expand All @@ -140,7 +140,7 @@
"settingsMenuSecurity": "Security",
"settingsMenuAbout": "About",
"seedPhraseSettingControlsViewSeed": "View seed phrase",
"seedPhraseSettingControlsDownloadSeed": "Download seed file",
"seedPhraseSettingControlsDownloadSeed": "Download seed phrase file",
"debugSettingsResetActivatedCoins": "Reset activated coins",
"debugSettingsDownloadButton": "Download logs",
"or": "Or",
Expand Down Expand Up @@ -201,8 +201,8 @@
"transactionDetailsTitle": "Transaction completed",
"customSeedWarningText": "Custom seed phrases are generally less secure and easier to crack than a generated BIP39-compliant seed phrase. To confirm you understand and are aware of the risk, type \"I understand\" in the box below.",
"customSeedIUnderstand": "i understand",
"walletCreationBip39SeedError": "BIP39 seed validation failed, try again or select 'Allow custom seed'",
"walletCreationHdBip39SeedError": "Your input seed is not BIP39 compliant, and can not be used in multi-address wallet mode. Please try again, or disable multi-address wallet mode and select 'Allow custom seed' to proceed.",
"walletCreationBip39SeedError": "BIP39 seed phrase validation failed, try again or select 'Allow custom seed'",
"walletCreationHdBip39SeedError": "Your input seed phrase is not BIP39 compliant, and can not be used in multi-address wallet mode. Please try again, or disable multi-address wallet mode and select 'Allow custom seed' to proceed.",
"walletPageNoSuchAsset": "No assets match search criteria",
"swapCoin": "Swap",
"fiatBalance": "Fiat balance",
Expand Down Expand Up @@ -322,7 +322,6 @@
"exchange": "Exchange",
"connectSomething": "Connect {}",
"hardwareWallet": "Hardware wallet",
"komodoWalletSeed": "Komodo Wallet seed",
"metamask": "Metamask",
"comingSoon": "Coming soon",
"walletsTypeListTitle": "Start using Komodo Wallet",
Expand All @@ -333,7 +332,7 @@
"viewSeedPhrase": "View seed phrase",
"backupSeedPhrase": "Backup seed phrase",
"seedOr": "OR",
"seedDownload": "Download seed file",
"seedDownload": "Download seed phrase file",
"seedSaveAndRemember": "Save and remember",
"seedIntroWarning": "This phrase is the main access to your\nassets, save and never share this phrase",
"seedSettings": "Seed phrase",
Expand Down Expand Up @@ -501,7 +500,7 @@
"enterPassphraseHiddenWalletDescription": "Passphrase is required for hidden wallet",
"skip": "Skip",
"activateToSeeFunds": "Activate to see your funds",
"allowCustomFee": "Allow custom seed",
"useCustomSeedOrWif": "Use custom seed phrase / private key (WIF)",
"cancelOrder": "Cancel Order",
"version": "version",
"copyAddressToClipboard": "Copy {} address to clipboard",
Expand Down
3 changes: 1 addition & 2 deletions lib/generated/codegen_loader.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,6 @@ abstract class LocaleKeys {
static const exchange = 'exchange';
static const connectSomething = 'connectSomething';
static const hardwareWallet = 'hardwareWallet';
static const komodoWalletSeed = 'komodoWalletSeed';
static const metamask = 'metamask';
static const comingSoon = 'comingSoon';
static const walletsTypeListTitle = 'walletsTypeListTitle';
Expand Down Expand Up @@ -536,7 +535,7 @@ abstract class LocaleKeys {
'enterPassphraseHiddenWalletDescription';
static const skip = 'skip';
static const activateToSeeFunds = 'activateToSeeFunds';
static const allowCustomFee = 'allowCustomFee';
static const useCustomSeedOrWif = 'useCustomSeedOrWif';
static const cancelOrder = 'cancelOrder';
static const version = 'version';
static const copyAddressToClipboard = 'copyAddressToClipboard';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CustomSeedCheckbox extends StatelessWidget {
return UiCheckbox(
checkboxKey: const Key('checkbox-custom-seed'),
value: value,
text: LocaleKeys.allowCustomFee.tr(),
text: LocaleKeys.useCustomSeedOrWif.tr(),
onChanged: (newValue) async {
if (!value && newValue) {
final confirmed = await customSeedDialog(context);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class WalletTypeListItem extends StatelessWidget {
switch (type) {
case WalletType.iguana:
case WalletType.hdwallet:
return LocaleKeys.komodoWalletSeed.tr();
return LocaleKeys.komodoWallet.tr();
case WalletType.metamask:
return LocaleKeys.metamask.tr();
case WalletType.keplr:
Expand Down
Loading