From e35762144221b319a56d5e9a02d4e5c771a78dca Mon Sep 17 00:00:00 2001 From: lubej <9722540+lubej@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:10:49 +0200 Subject: [PATCH] Update missing translations --- .../Toolbar/Features/Account/DerivationFormatter.tsx | 2 +- src/locales/en/translation.json | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/app/components/Toolbar/Features/Account/DerivationFormatter.tsx b/src/app/components/Toolbar/Features/Account/DerivationFormatter.tsx index ef6d7e030e..519b10c41f 100644 --- a/src/app/components/Toolbar/Features/Account/DerivationFormatter.tsx +++ b/src/app/components/Toolbar/Features/Account/DerivationFormatter.tsx @@ -12,7 +12,7 @@ export const DerivationFormatter = (props: DerivationFormatterProps) => { const { t } = useTranslation() const walletTypes: { [type in WalletType]: string } = { [WalletType.Ledger]: t('toolbar.wallets.type.usbLedger', 'USB Ledger'), - [WalletType.BleLedger]: t('toolbar.wallets.type.bluetoothLedger', 'Bluetooth Ledger'), + [WalletType.BleLedger]: t('toolbar.wallets.type.bluetoothLedger', 'BLE Ledger'), [WalletType.Mnemonic]: t('toolbar.wallets.type.mnemonic', 'Mnemonic'), [WalletType.PrivateKey]: t('toolbar.wallets.type.privateKey', 'Private key'), } diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json index 5f2485d110..0f634d25cb 100644 --- a/src/locales/en/translation.json +++ b/src/locales/en/translation.json @@ -30,11 +30,6 @@ "send": "Send", "success": "Transaction successfully sent. The transaction might take up to a minute to appear on your account." }, - "settings": { - "exportPrivateKey": { - "copied": "Private key copied." - } - }, "subnavigation": { "activeDelegations": "Active delegations", "debondingDelegations": "Debonding delegations", @@ -142,6 +137,7 @@ "errors": { "LedgerDerivedDifferentAccount": "This account does not belong to the currently connected Ledger.", "LedgerOasisAppIsNotOpen": "Oasis App on Ledger is closed.", + "bluetoothTransportNotSupported": "Your device does not support Bluetooth.", "cannotSendToSelf": "Cannot send to yourself", "disconnectedError": "Lost connection.", "duplicateTransaction": "Duplicate transaction", @@ -223,6 +219,7 @@ "idle": "Idle", "loadingAccounts": "Loading account details", "loadingBalances": "Loading balance details", + "loadingBluetoothDevices": "Loading bluetooth devices", "openingUsb": "Opening Ledger through USB" } }, @@ -435,6 +432,7 @@ "contacts": "Contacts", "exportPrivateKey": { "confirm": "I understand, reveal my private key", + "copied": "Private key copied.", "hint1": "The private key consists of a string of characters. Anyone with access to your private key has direct access to the assets of that account.", "hint2": "Once the private key is lost, it cannot be retrieved. Please make sure to Backup the private key and keep it in a safe place.", "title": "Export Private Key" @@ -447,7 +445,7 @@ "wallets": { "select": "Select", "type": { - "bluetoothLedger": "Bluetooth Ledger", + "bluetoothLedger": "BLE Ledger", "mnemonic": "Mnemonic", "privateKey": "Private key", "usbLedger": "USB Ledger"