From 1baf04cd274c75f53bd4b46848c1c99dc613a950 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Apr 2026 03:11:37 +0100 Subject: [PATCH] feat(i18n): add English locale for all blockchain commands 18 translation keys covering chain, wallet, asset commands and common error/status messages. Ready for go-i18n integration. Co-Authored-By: Charon --- locales/en/blockchain.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 locales/en/blockchain.json diff --git a/locales/en/blockchain.json b/locales/en/blockchain.json new file mode 100644 index 0000000..787aed8 --- /dev/null +++ b/locales/en/blockchain.json @@ -0,0 +1,21 @@ +{ + "blockchain.chain.serve.description": "Sync the blockchain and serve JSON-RPC API", + "blockchain.chain.sync.description": "Headless P2P chain synchronisation", + "blockchain.chain.explorer.description": "Interactive terminal block explorer", + "blockchain.chain.status.description": "Show chain and network status", + "blockchain.wallet.create.description": "Create a new Lethean wallet with iTHN address", + "blockchain.wallet.address.description": "Show wallet address", + "blockchain.wallet.seed.description": "Show 24-word mnemonic seed phrase", + "blockchain.wallet.restore.description": "Restore wallet from seed phrase", + "blockchain.wallet.scan.description": "Scan chain for owned outputs", + "blockchain.wallet.transfer.description": "Send LTHN to an address", + "blockchain.wallet.info.description": "Show full wallet information", + "blockchain.asset.deploy.description": "Deploy a confidential asset (HF5+)", + "blockchain.asset.info.description": "Query asset descriptor by ID or ticker", + "blockchain.error.daemon_unreachable": "Daemon unreachable at %s", + "blockchain.error.invalid_address": "Invalid iTHN address", + "blockchain.error.alias_not_found": "Alias @%s not found", + "blockchain.status.syncing": "Syncing: %d/%d blocks", + "blockchain.status.synced": "Fully synced at height %d", + "blockchain.status.hf5_countdown": "HF5 activates in %d blocks (~%.1f hours)" +}