diff --git a/src/app/components/configure-app/configure-app.component.ts b/src/app/components/configure-app/configure-app.component.ts
index 13d2057..54742c5 100644
--- a/src/app/components/configure-app/configure-app.component.ts
+++ b/src/app/components/configure-app/configure-app.component.ts
@@ -40,10 +40,10 @@ export class ConfigureAppComponent implements OnInit {
private ninja: NinjaService,
private renderer: Renderer2,
private qrModalService: QrModalService,
- private translate: TranslocoService) { }
+ private translocoService: TranslocoService) { }
wallet = this.walletService.wallet;
- languages = this.translate.getAvailableLangs() as [{id: string, label: string}];
+ languages = this.translocoService.getAvailableLangs() as [{id: string, label: string}];
selectedLanguage = this.languages[0].id;
denominations = [
@@ -54,13 +54,13 @@ export class ConfigureAppComponent implements OnInit {
selectedDenomination = this.denominations[0].value;
storageOptions = [
- { name: 'Browser Local Storage', value: 'localStorage' },
- { name: 'None', value: 'none' },
+ { name: this.translocoService.translate('configure-app.storage-options.browser-local-storage'), value: 'localStorage' },
+ { name: this.translocoService.translate('configure-app.storage-options.none'), value: 'none' },
];
selectedStorage = this.storageOptions[0].value;
currencies = [
- { name: 'None', value: '' },
+ { name: this.translocoService.translate('configure-app.currencies.none'), value: '' },
{ name: 'USD - US Dollar', value: 'USD' },
{ name: 'BTC - Bitcoin', value: 'BTC' },
{ name: 'AUD - Australian Dollar', value: 'AUD' },
@@ -98,40 +98,40 @@ export class ConfigureAppComponent implements OnInit {
selectedCurrency = this.currencies[0].value;
nightModeOptions = [
- { name: 'Enabled', value: 'enabled' },
- { name: 'Disabled', value: 'disabled' },
+ { name: this.translocoService.translate('configure-app.night-mode-options.enabled'), value: 'enabled' },
+ { name: this.translocoService.translate('configure-app.night-mode-options.disabled'), value: 'disabled' },
];
selectedNightModeOption = this.nightModeOptions[0].value;
identiconOptions = [
- { name: 'None', value: 'none' },
- { name: 'Nanoidenticons (by keerifox)', value: 'nanoidenticons' },
- { name: 'Natricon (by Appditto)', value: 'natricon' },
+ { name: this.translocoService.translate('configure-app.identicon-options.none'), value: 'none' },
+ { name: this.translocoService.translate('configure-app.identicon-options.nanoidenticons-by-keerifox'), value: 'nanoidenticons' },
+ { name: this.translocoService.translate('configure-app.identicon-options.natricon-by-appditto'), value: 'natricon' },
];
selectedIdenticonOption = this.identiconOptions[0].value;
inactivityOptions = [
- { name: 'Never', value: 0 },
- { name: '1 Minute', value: 1 },
- { name: '5 Minutes', value: 5 },
- { name: '15 Minutes', value: 15 },
- { name: '30 Minutes', value: 30 },
- { name: '1 Hour', value: 60 },
- { name: '6 Hours', value: 360 },
+ { name: this.translocoService.translate('configure-app.identicon-options.never'), value: 0 },
+ { name: this.translocoService.translate('configure-app.identicon-options.1-minute'), value: 1 },
+ { name: this.translocoService.translate('configure-app.identicon-options.x-minutes', { minutes: 5 }), value: 5 },
+ { name: this.translocoService.translate('configure-app.identicon-options.x-minutes', { minutes: 15 }), value: 15 },
+ { name: this.translocoService.translate('configure-app.identicon-options.x-minutes', { minutes: 30 }), value: 30 },
+ { name: this.translocoService.translate('configure-app.identicon-options.1-hour'), value: 60 },
+ { name: this.translocoService.translate('configure-app.identicon-options.x-hours', { hours: 6 }), value: 360 },
];
selectedInactivityMinutes = this.inactivityOptions[4].value;
powOptions = [
- { name: 'Best Option Available', value: 'best' },
- { name: 'Client-side - GPU/WebGL', value: 'clientWebGL' },
- { name: 'Client-side - CPU (Slowest)', value: 'clientCPU' },
- { name: 'External - Selected Server', value: 'server' },
- { name: 'External - Custom Server', value: 'custom' },
+ { name: this.translocoService.translate('configure-app.pow-options.best-option-available'), value: 'best' },
+ { name: this.translocoService.translate('configure-app.pow-options.client-side-gpu-webgl'), value: 'clientWebGL' },
+ { name: this.translocoService.translate('configure-app.pow-options.client-side-cpu-slowest'), value: 'clientCPU' },
+ { name: this.translocoService.translate('configure-app.pow-options.external-selected-server'), value: 'server' },
+ { name: this.translocoService.translate('configure-app.pow-options.external-custom-server'), value: 'custom' },
];
selectedPoWOption = this.powOptions[0].value;
multiplierOptions = [
- { name: 'Default (1x or 1/64x)', value: 1 },
+ { name: this.translocoService.translate('configure-app.multiplier-options.default-1x-or-1-64x'), value: 1 },
{ name: '2x', value: 2 },
{ name: '4x', value: 4 },
{ name: '8x', value: 8 },
@@ -142,9 +142,9 @@ export class ConfigureAppComponent implements OnInit {
selectedMultiplierOption: number = this.multiplierOptions[0].value;
pendingOptions = [
- { name: 'Automatic - Largest Amount First', value: 'amount' },
- { name: 'Automatic - Oldest Transaction First', value: 'date' },
- { name: 'Manual', value: 'manual' },
+ { name: this.translocoService.translate('configure-app.pending-options.automatic-largest-amount-first'), value: 'amount' },
+ { name: this.translocoService.translate('configure-app.pending-options.automatic-oldest-transaction-first'), value: 'date' },
+ { name: this.translocoService.translate('configure-app.pending-options.manual'), value: 'manual' },
];
selectedPendingOption = this.pendingOptions[0].value;
@@ -312,7 +312,7 @@ export class ConfigureAppComponent implements OnInit {
const newCurrency = this.selectedCurrency;
// const updatePrefixes = this.appSettings.settings.displayPrefix !== this.selectedPrefix;
const reloadFiat = this.appSettings.settings.displayCurrency !== newCurrency;
- this.notifications.sendSuccess(`App display settings successfully updated!`);
+ this.notifications.sendSuccess(this.translocoService.translate('configure-app.app-display-settings-successfully-updated'));
if (reloadFiat) {
// Reload prices with our currency, then call to reload fiat balances.
@@ -322,7 +322,7 @@ export class ConfigureAppComponent implements OnInit {
}
this.appSettings.setAppSetting('language', this.selectedLanguage);
- this.translate.setActiveLang(this.selectedLanguage);
+ this.translocoService.setActiveLang(this.selectedLanguage);
// if (updatePrefixes) {
// this.appSettings.setAppSetting('displayPrefix', this.selectedPrefix);
@@ -348,11 +348,11 @@ export class ConfigureAppComponent implements OnInit {
if (resaveWallet && newStorage === this.storageOptions[1].value) {
const UIkit = window['UIkit'];
try {
- await UIkit.modal.confirm('
You are about to disable storage of all wallet data, which means there will be no wallet configured next time you use Nault.
Before continuing, make sure you have saved the Nano seed and/or mnemonic of your current wallet.
YOU WILL NOT BE ABLE TO RECOVER THE FUNDS
without a backup of your currently configured wallet.
');
+ await UIkit.modal.confirm('
' + this.translocoService.translate('configure-app.you-are-about-to-disable-storage-of-all-wallet-data-which') + '
' + this.translocoService.translate('reset-wallet.before-continuing-make-sure-you-have-saved-the-nano-seed') + '
' + this.translocoService.translate('reset-wallet.you-will-not-be-able-to-recover-the-funds-without-a-backup') + '
');
} catch (err) {
// pressing cancel, reset storage setting and interrupt
this.selectedStorage = this.storageOptions[0].value;
- this.notifications.sendInfo(`Switched back to "Browser Local Storage" for the wallet data. Use the button again if you want to save other settings.`, {length: 10000});
+ this.notifications.sendInfo(this.translocoService.translate('configure-app.switched-back-to-browser-local-storage-for-the-wallet-data'), {length: 10000});
return;
}
}
@@ -372,17 +372,19 @@ export class ConfigureAppComponent implements OnInit {
if (this.defaultRepresentative && this.defaultRepresentative.length) {
const valid = this.util.account.isValidAccount(this.defaultRepresentative);
if (!valid) {
- return this.notifications.sendWarning(`Default representative is not a valid account`);
+ return this.notifications.sendWarning(
+ this.translocoService.translate('configure-app.default-representative-is-not-a-valid-account')
+ );
}
}
if (this.appSettings.settings.powSource !== newPoW) {
if (newPoW === 'clientWebGL' && !this.pow.hasWebGLSupport()) {
- this.notifications.sendWarning(`WebGL support not available, set PoW to Best`);
+ this.notifications.sendWarning(this.translocoService.translate('configure-app.webgl-support-not-available-set-pow-to-best'));
newPoW = 'best';
}
if (newPoW === 'clientCPU' && !this.pow.hasWorkerSupport()) {
- this.notifications.sendWarning(`CPU Worker support not available, set PoW to Best`);
+ this.notifications.sendWarning(this.translocoService.translate('configure-app.cpu-worker-support-not-available-set-pow-to-best'));
newPoW = 'best';
}
// reset multiplier when not using it to avoid user mistake
@@ -429,7 +431,7 @@ export class ConfigureAppComponent implements OnInit {
};
this.appSettings.setAppSettings(newSettings);
- this.notifications.sendSuccess(`App wallet settings successfully updated!`);
+ this.notifications.sendSuccess(this.translocoService.translate('configure-app.app-wallet-settings-successfully-updated'));
if (resaveWallet) {
this.walletService.saveWalletExport(); // If swapping the storage engine, resave the wallet
@@ -452,7 +454,7 @@ export class ConfigureAppComponent implements OnInit {
if (this.serverAPI.startsWith('https://') || this.serverAPI.startsWith('http://')) {
newSettings.serverAPI = this.serverAPI;
} else {
- return this.notifications.sendWarning(`Custom API Server has an invalid address.`);
+ return this.notifications.sendWarning(this.translocoService.translate('configure-app.custom-api-server-has-an-invalid-address'));
}
}
@@ -460,7 +462,7 @@ export class ConfigureAppComponent implements OnInit {
if (this.serverWS.startsWith('wss://') || this.serverWS.startsWith('ws://')) {
newSettings.serverWS = this.serverWS;
} else {
- return this.notifications.sendWarning(`Custom Update Server has an invalid address.`);
+ return this.notifications.sendWarning(this.translocoService.translate('configure-app.custom-update-server-has-an-invalid-address'));
}
}
@@ -471,11 +473,7 @@ export class ConfigureAppComponent implements OnInit {
this.appSettings.setAppSettings(newSettings);
this.appSettings.loadAppSettings();
- if (this.selectedServer !== 'offline') {
- this.notifications.sendSuccess(`Server settings successfully updated, reconnecting to backend`);
- } else {
- this.notifications.sendSuccess(`Server settings successfully updated. Now in offline mode.`);
- }
+ this.notifications.sendSuccess(this.translocoService.translate('configure-app.server-settings-successfully-updated'));
this.node.node.status = false; // Directly set node to offline since API url changed. Status will get set by reloadBalances
@@ -541,7 +539,7 @@ export class ConfigureAppComponent implements OnInit {
this.serverAPIUpdated = null;
this.serverWS = custom.ws;
this.serverAuth = custom.auth;
- this.shouldRandom = custom.shouldRandom ? 'Yes' : 'No';
+ this.shouldRandom = custom.shouldRandom ? this.translocoService.translate('general.yes') : this.translocoService.translate('general.no');
}
// reset server stats until updated
@@ -575,9 +573,9 @@ export class ConfigureAppComponent implements OnInit {
async clearWorkCache() {
const UIkit = window['UIkit'];
try {
- await UIkit.modal.confirm('
You are about to delete all locally cached Proof of Work values
Are you sure?
');
+ await UIkit.modal.confirm('
' + this.translocoService.translate('configure-app.you-are-about-to-delete-all-locally-cached-proof-of-work') + '
' + this.translocoService.translate('configure-app.are-you-sure') + '
');
this.workPool.clearCache();
- this.notifications.sendSuccess(`Successfully cleared the work cache!`);
+ this.notifications.sendSuccess(this.translocoService.translate('configure-app.successfully-cleared-the-work-cache'));
return true;
} catch (err) { return false; }
}
@@ -585,18 +583,18 @@ export class ConfigureAppComponent implements OnInit {
async clearWalletData() {
const UIkit = window['UIkit'];
try {
- await UIkit.modal.confirm('
You are about to delete all locally stored data about your currently configured wallet.
Before continuing, make sure you have saved the Nano seed and/or mnemonic of your current wallet.
YOU WILL NOT BE ABLE TO RECOVER THE FUNDS
without a backup of your currently configured wallet.
');
+ await UIkit.modal.confirm('
' + this.translocoService.translate('configure-app.you-are-about-to-delete-all-locally-stored-data-about-your') + '
' + this.translocoService.translate('reset-wallet.before-continuing-make-sure-you-have-saved-the-nano-seed') + '
' + this.translocoService.translate('reset-wallet.you-will-not-be-able-to-recover-the-funds-without-a-backup') + '
');
this.walletService.resetWallet();
this.walletService.removeWalletData();
- this.notifications.sendSuccess(`Successfully deleted all wallet data!`);
+ this.notifications.sendSuccess(this.translocoService.translate('configure-app.successfully-deleted-all-wallet-data'));
} catch (err) {}
}
async clearAllData() {
const UIkit = window['UIkit'];
try {
- await UIkit.modal.confirm('
You are about to delete all data stored in Nault, which includes all locally stored data about your currently configured wallet, all entries from your address and representative books, and any other cached data. All settings will be reset to default.
Before continuing, make sure you have saved the Nano seed and/or mnemonic of your current wallet.
YOU WILL NOT BE ABLE TO RECOVER THE FUNDS
without a backup of your currently configured wallet.
');
+ await UIkit.modal.confirm('
' + this.translocoService.translate('configure-app.clear-all-data.1') + '
' + this.translocoService.translate('reset-wallet.before-continuing-make-sure-you-have-saved-the-nano-seed') + '
' + this.translocoService.translate('reset-wallet.you-will-not-be-able-to-recover-the-funds-without-a-backup') + '
');
this.walletService.resetWallet();
this.walletService.removeWalletData();
@@ -608,7 +606,7 @@ export class ConfigureAppComponent implements OnInit {
this.loadFromSettings();
- this.notifications.sendSuccess(`Successfully deleted locally stored data and reset the settings!`);
+ this.notifications.sendSuccess(this.translocoService.translate('configure-app.clear-all-data.successfully-deleted-locally-stored-data-and-reset-the'));
// Get a new random API server or Nault will get stuck in offline mode
this.updateServerSettings();
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 6178791..b5c9fe5 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -82,19 +82,138 @@
"you-can-change-representative-at-any-time": "You can change representative at any time by clicking on its name above.",
"you-have-marked-this-representative-as-trusted": "You have marked this representative as trusted, meaning its status will remain \"Good\" even in case of severe issues with uptime or weight distribution."
},
- "configure-wallet": {
- "set-wallet-password": {
- "set-wallet-password": "Set Wallet Password",
- "choose-a-wallet-password-that-will-be-used-to-unlock-this-application": "Choose a wallet password that will be used to unlock this application.",
- "while-the-application-is-locked-the-secret-recovery-phrase-will-be-encrypted": "While the application is locked, the secret recovery phrase will be encrypted, which prevents sending/receiving funds and managing accounts.",
- "for-the-safety-of-your-funds-use-a-secure-password": "For the safety of your funds, use a secure password (the bar should be green).",
- "errors": {
- "password-must-be-at-least-x-characters-long": "Password must be at least {{ minCharacters }} characters long",
- "passwords-do-not-match": "Passwords do not match!"
- }
+ "configure-app": {
+ "advanced-options": "Advanced Options",
+ "api-server": "API Server",
+ "app-display-settings-successfully-updated": "App display settings successfully updated!",
+ "app-wallet-settings-successfully-updated": "App wallet settings successfully updated!",
+ "are-you-sure": "Are you sure?",
+ "authorization": "Authorization",
+ "change-if-your-wallet-should-be-locked-automatically-after": "Change if your wallet should be locked automatically after you have not interacted with it for a certain period of time",
+ "change-the-currency-pair-used-when-showing-fiat-values": "Change the currency pair used when showing fiat values in the application. Select None to hide fiat pairs.",
+ "change-where-your-wallet-is-stored-if-you-select-none-your": "Change where your wallet is stored. If you select none, your wallet is reset every time you reload.",
+ "change-which-server-is-used-to-communicate-with-the-nano": "Change which server is used to communicate with the Nano network",
+ "clear-all-data": {
+ "1": "You are about to delete all data stored in Nault, which includes all locally stored data about your currently configured wallet, all entries from your address and representative books, and any other cached data. All settings will be reset to default.",
+ "2": "Before continuing, make sure you have saved the Nano seed and/or mnemonic of your current wallet.",
+ "successfully-deleted-locally-stored-data-and-reset-the": "Successfully deleted locally stored data and reset the settings!"
},
+ "clear-work-cache": "Clear Work Cache",
+ "click-to-refresh": "Click to refresh",
+ "component": {
+ "wallet-storage": "Wallet Storage"
+ },
+ "configure-nault": "Configure Nault",
+ "cpu-worker-support-not-available-set-pow-to-best": "CPU Worker support not available, set PoW to Best",
+ "currencies": {
+ "none": "None"
+ },
+ "custom-api-server-has-an-invalid-address": "Custom API Server has an invalid address.",
+ "custom-update-server-has-an-invalid-address": "Custom Update Server has an invalid address.",
+ "default-representative": "Default Representative",
+ "default-representative-is-not-a-valid-account": "Default representative is not a valid account",
+ "delete-all-data": "Delete ALL Data",
+ "delete-wallet-data": "Delete Wallet Data",
+ "display-settings": "Display Settings",
+ "fiat-currency": "FIAT Currency",
+ "for-example-using-basic-auth": "For example using basic auth: Basic xyz",
+ "identicon-options": {
+ "1-hour": "1 Hour",
+ "1-minute": "1 Minute",
+ "nanoidenticons-by-keerifox": "Nanoidenticons (by keerifox)",
+ "natricon-by-appditto": "Natricon (by Appditto)",
+ "never": "Never",
+ "none": "None",
+ "x-hours": "{{ hours }} Hours",
+ "x-minutes": "{{ minutes }} Minutes"
+ },
+ "identicons": "Identicons",
+ "if-automatically-receiving-incoming-transactions-with-the": "If automatically receiving incoming transactions with the largest amount first or chronological from recorded time. Manual will allow you to pick your own transactions from the receive screen.",
+ "language": "Language",
+ "leave-blank-to-accept-transactions-of-any-amount": "Leave blank to accept transactions of any amount",
+ "leave-blank-to-use-a-recommended-one": "Leave blank to use a recommended one",
+ "lock-after-inactivity": "Lock After Inactivity",
+ "min-receive-amount": "Min. Receive Amount",
+ "minimum-nano-amount-to-receive-transactions-below-this": "Minimum NANO amount to receive. Transactions below this amount will be ignored by the wallet both for receiving and in the transactions list. Set to blank or 0 to accept all transactions.",
+ "multiplier-options": {
+ "default-1x-or-1-64x": "Default (1x or 1/64x)"
+ },
+ "night-mode": "Night Mode",
+ "night-mode-options": {
+ "disabled": "Disabled",
+ "enabled": "Enabled"
+ },
+ "node-stats": "Node Stats",
+ "note-since-this-server-only-notifies-about-new-transactions": "Note: Since this server only notifies about new transactions, most of the wallet functions fine without it.",
+ "optional-increased-work-for-transaction-priority-during": "Optional increased work for transaction priority during network saturation. Overrides both default SEND 1x and RECEIVE 1/64x difficulties.",
+ "pending-options": {
+ "automatic-largest-amount-first": "Automatic - Largest Amount First",
+ "automatic-oldest-transaction-first": "Automatic - Oldest Transaction First",
+ "manual": "Manual"
+ },
+ "pow-multiplier": "PoW Multiplier",
+ "pow-options": {
+ "best-option-available": "Best Option Available",
+ "client-side-cpu-slowest": "Client-side - CPU (Slowest)",
+ "client-side-gpu-webgl": "Client-side - GPU/WebGL",
+ "external-custom-server": "External - Custom Server",
+ "external-selected-server": "External - Selected Server"
+ },
+ "pow-source": "PoW Source",
+ "random-server": "Random Server",
+ "receive-method": "Receive Method",
+ "save-settings-to-update": "Save settings to update",
+ "server-configuration": "Server Configuration",
+ "server-settings": "Server Settings",
+ "server-settings-successfully-updated": "Server settings successfully updated!",
+ "storage-options": {
+ "browser-local-storage": "Browser Local Storage",
+ "none": "None"
+ },
+ "successfully-cleared-the-work-cache": "Successfully cleared the work cache!",
+ "successfully-deleted-all-wallet-data": "Successfully deleted all wallet data!",
+ "successfully-updated": "Successfully updated!",
+ "switched-back-to-browser-local-storage-for-the-wallet-data": "Switched back to \"Browser Local Storage\" for the wallet data. Use the button again if you want to save other settings.",
+ "this-has-to-be-a-valid-authorization-header": "This has to be a valid Authorization header.",
+ "this-has-to-be-a-valid-rpc": {
+ "1": "This has to be a valid",
+ "2-link-rpc": "Nano RPC endpoint",
+ "3": "or an API compliant with it."
+ },
+ "this-has-to-be-a-valid-websocket": {
+ "1": "This has to be a valid",
+ "2-link-websocket": "Nano Node Websocket",
+ "3": "or a WebSocket API compliant with it."
+ },
+ "this-has-to-be-a-valid-work": {
+ "1": "This has to be a valid",
+ "2-link-work": "Nano Work Server",
+ "3": "endpoint or an API compliant with it. If your server on localhost does not work, try the desktop app instead."
+ },
+ "this-representative-will-be-used-for-any-new-account": "This representative will be used for any new account",
+ "this-server-is-used-for-rpc-communication-with-the-nano-node": "This server is used for RPC communication with the Nano Node",
+ "this-server-is-used-to-notify-the-wallet-in-real-time-when": "This server is used to notify the wallet in real time when new transactions arrive",
+ "this-will-delete-all-data-related-to-your-wallet-your-seed-a": "This will delete all data related to your wallet (Your seed and accounts)",
+ "this-will-delete-all-locally-cached-proof-of-work-values": "This will delete all locally cached Proof of Work values",
+ "this-will-delete-all-stored-data-and-reset-app-settings-incl": "This will delete ALL stored data and reset app settings, including your wallet, address book and more",
+ "update-display-settings": "Update Display Settings",
+ "update-server-settings": "Update Server Settings",
+ "update-wallet-settings": "Update Wallet Settings",
+ "use-if-the-api-requires-authentication": "Use if the API requires authentication",
+ "wallet-settings": "Wallet Settings",
+ "webgl-support-not-available-set-pow-to-best": "WebGL support not available, set PoW to Best",
+ "websocket-server": "WebSocket Server",
+ "work-server": "Work Server",
+ "you-are-about-to-delete-all-locally-cached-proof-of-work": "You are about to delete all locally cached Proof of Work values.",
+ "you-are-about-to-delete-all-locally-stored-data-about-your": "You are about to delete all locally stored data about your currently configured wallet.",
+ "you-are-about-to-disable-storage-of-all-wallet-data-which": "You are about to disable storage of all wallet data, which means there will be no wallet configured next time you use Nault."
+ },
+ "configure-wallet": {
"new-wallet": {
- "recovery-phrases-for-new-wallet": "Recovery Phrases for New Wallet",
+ "copy-secret-recovery-mnemonic": "Copy Secret Recovery Mnemonic",
+ "copy-secret-recovery-seed": "Copy Secret Recovery Seed",
+ "create-wallet": "Create Wallet",
+ "i-have-securely-stored-recovery-phrases": "I have securely stored the secret recovery seed and/or mnemonic",
"please-take-some-time-to-write-down-recovery-phrases": "Please take some time to backup the secret recovery seed and/or mnemonic, to be able to access this wallet in the future.",
"recovery-phrases-alert": {
"1": {
@@ -104,19 +223,23 @@
},
"2": "It is the master key to all of your accounts, and the only way to recover your funds in an emergency."
},
- "secret-recovery-seed": "Secret Recovery Seed",
+ "recovery-phrases-for-new-wallet": "Recovery Phrases for New Wallet",
"secret-recovery-mnemonic": "Secret Recovery Mnemonic",
- "copy-secret-recovery-seed": "Copy Secret Recovery Seed",
- "copy-secret-recovery-mnemonic": "Copy Secret Recovery Mnemonic",
- "successfully-copied-secret-recovery-seed": "Successfully copied Secret Recovery Seed to clipboard!",
+ "secret-recovery-seed": "Secret Recovery Seed",
"successfully-copied-secret-recovery-mnemonic": "Successfully copied Secret Recovery Mnemonic to clipboard!",
- "i-have-securely-stored-recovery-phrases": "I have securely stored the secret recovery seed and/or mnemonic",
- "create-wallet": "Create Wallet"
+ "successfully-copied-secret-recovery-seed": "Successfully copied Secret Recovery Seed to clipboard!"
+ },
+ "set-wallet-password": {
+ "choose-a-wallet-password-that-will-be-used-to-unlock-this-application": "Choose a wallet password that will be used to unlock this application.",
+ "errors": {
+ "password-must-be-at-least-x-characters-long": "Password must be at least {{ minCharacters }} characters long",
+ "passwords-do-not-match": "Passwords do not match!"
+ },
+ "for-the-safety-of-your-funds-use-a-secure-password": "For the safety of your funds, use a secure password (the bar should be green).",
+ "set-wallet-password": "Set Wallet Password",
+ "while-the-application-is-locked-the-secret-recovery-phrase-will-be-encrypted": "While the application is locked, the secret recovery phrase will be encrypted, which prevents sending/receiving funds and managing accounts."
}
},
- "configure-app": {
- "language": "Language"
- },
"general": {
"account": "Account",
"accounts": "Accounts",
@@ -130,14 +253,21 @@
"address-book": "Address Book",
"amount": "Amount",
"app-settings": "App Settings",
+ "avoid": "Avoid",
"balance": "Balance",
"block": "Block",
+ "block-count": "Block Count",
"cancel": "Cancel",
"copy": "Copy",
"date": "Date",
"edit": "Edit",
"loading": "Loading...",
+ "network": "Network",
"new": "New",
+ "no": "No",
+ "node-version": "Node Version",
+ "peers-stake-required": "Peers Stake Required",
+ "peers-stake-total": "Peers Stake Total",
"receive": "Receive",
"reload": "Reload",
"representative": "Representative",
@@ -145,12 +275,22 @@
"save": "Save",
"scan-qr-code": "Scan QR Code",
"send": "Send",
+ "server": "Server",
"settings": "Settings",
"show-more": "Show More",
"show-qr-code": "Show QR Code",
"successfully-copied-to-clipboard": "Successfully copied to clipboard!",
+ "uncemented-blocks": "Uncemented Blocks",
"unknown": "Unknown",
- "view-details": "View Details"
+ "view-details": "View Details",
+ "yes": "Yes"
+ },
+ "representative-search": {
+ "representative-list-results": "Representative List Results"
+ },
+ "reset-wallet": {
+ "before-continuing-make-sure-you-have-saved-the-nano-seed": "Before continuing, make sure you have saved the Nano seed and/or mnemonic of your current wallet.",
+ "you-will-not-be-able-to-recover-the-funds-without-a-backup": "YOU WILL NOT BE ABLE TO RECOVER THE FUNDS without a backup of your currently configured wallet."
},
"welcome": {
"a-secure-open-source-wallet-for-nano": "A secure open source wallet for Nano",