Skip to content

Commit

Permalink
Merge pull request #230 from alephium/fix-i18n
Browse files Browse the repository at this point in the history
Fix translation string
  • Loading branch information
h0ngcha0 authored Jan 9, 2025
2 parents 6ef963f + 974b233 commit 6bf7a34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/extension/locales/en-US/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@
"Got it": "Got it",
"Could not add new account": "Could not add new account",
"Could not discover active accounts for {{ networkId }}.": "Could not discover active accounts for {{ networkId }}.",
"Could add new ledger account": "Could add new ledger account",
"Could not add new ledger account": "Could not add new ledger account",
"Rejected": "Rejected",
"Could not delete account": "Could not delete account",
"Could not upgrade account": "Could not upgrade account",
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/ui/services/backgroundAccounts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const importNewLedgerAccount = async (account: WalletAccount) => {
waitForMessage("ALPH_NEW_LEDGER_ACCOUNT_REJ").then(() => "error" as const),
])
} catch {
throw Error(i18n.t("Could add new ledger account"))
throw Error(i18n.t("Could not add new ledger account"))
}
}

Expand Down

0 comments on commit 6bf7a34

Please sign in to comment.