From 77fd9778978ff7fec84079b84843e9f5336d79ca Mon Sep 17 00:00:00 2001 From: Unheard0840 Date: Wed, 5 Aug 2026 17:10:53 +0000 Subject: [PATCH] Add startos/i18n/dictionaries/default.ts Add Munin Bitcoin default translations --- startos/i18n/dictionaries/default.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 startos/i18n/dictionaries/default.ts diff --git a/startos/i18n/dictionaries/default.ts b/startos/i18n/dictionaries/default.ts new file mode 100644 index 0000000..9f46fbf --- /dev/null +++ b/startos/i18n/dictionaries/default.ts @@ -0,0 +1,20 @@ +export const DEFAULT_LANG = 'en_US' + +const dict = { + // main.ts + 'Starting Munin Bitcoin!': 0, + 'Web Interface': 1, + 'The web interface is ready': 2, + 'The web interface is not ready': 3, + + // interfaces.ts + 'Web UI': 4, + 'The web interface of Munin Bitcoin': 5, +} as const + +/** + * Plumbing. DO NOT EDIT. + */ +export type I18nKey = keyof typeof dict +export type LangDict = Record<(typeof dict)[I18nKey], string> +export default dict \ No newline at end of file