From 0d0ab5080c0d588ea2959fd7816b8be27b8b224e Mon Sep 17 00:00:00 2001 From: sss3978 <106522699+soma3978@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:56:52 +0900 Subject: [PATCH] Update supportedLanguages.ts --- client/src/i18n/supportedLanguages.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/i18n/supportedLanguages.ts b/client/src/i18n/supportedLanguages.ts index 458a9fff..ace1a6c6 100644 --- a/client/src/i18n/supportedLanguages.ts +++ b/client/src/i18n/supportedLanguages.ts @@ -12,8 +12,9 @@ export const SUPPORTED_LANGUAGES = [ { value: 'zh', label: '简体中文', locale: 'zh-CN' }, { value: 'zh-TW', label: '繁體中文', locale: 'zh-TW' }, { value: 'it', label: 'Italiano', locale: 'it-IT' }, - { value: 'ar', label: 'العربية', locale: 'ar-SA' }, + { value: 'ar', label: 'العربية', locale: 'ar-SA' }, { value: 'id', label: 'Bahasa Indonesia', locale: 'id-ID' }, + { value: 'ja', label: '日本語', locale: 'ja-JP' }, ] as const export type SupportedLanguageCode = typeof SUPPORTED_LANGUAGES[number]['value']