From 9c8266fb0d9601d51d0c27a19e88ecb6c563e3dc Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 21 Jun 2023 20:15:48 +0200 Subject: [PATCH] feat(i18n): enable Japanese translation --- src/i18n/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 25bd8fe39..10a9e08b2 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -17,6 +17,7 @@ export const SUPPORTED_LOCALES = { 'no-NO': 'Norsk Bokmål', 'es-ES': 'Español', 'da-DK': 'Dansk', + 'ja-JP': '日本語', } as const export type SupportedLocale = keyof typeof SUPPORTED_LOCALES