mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-04 06:30:53 +00:00
Add Japanese
日本語の追加と各言語でのメニュー表記の修正
This commit is contained in:
parent
105ad743fa
commit
5aa2d93928
9 changed files with 949 additions and 6 deletions
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
export type SupportedLanguage = 'en' | 'zh' | 'ru' | 'de' | string;
|
||||
export type SupportedLanguage = 'en' | 'zh' | 'ru' | 'de' | 'ja' | string;
|
||||
|
||||
export interface LanguageDefinition {
|
||||
/** The internal locale code used by the i18n system (e.g., 'en', 'zh'). */
|
||||
|
|
@ -36,6 +36,11 @@ export const SUPPORTED_LANGUAGES: readonly LanguageDefinition[] = [
|
|||
id: 'de-DE',
|
||||
fullName: 'German',
|
||||
},
|
||||
{
|
||||
code: 'ja',
|
||||
id: 'ja-JP',
|
||||
fullName: 'Japanese',
|
||||
},
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue