jp_JP → ja_JP (#11219)

This commit is contained in:
Jeffrey Chen 2024-05-01 17:43:03 +08:00 committed by GitHub
parent 73b254e9e4
commit 65ab8a8d0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -210,7 +210,7 @@
<option value="fr_FR">Français</option>
<option value="zh_CN">简体中文</option>
<option value="zh_CHT">繁體中文</option>
<option value="jp_JP">日本語</option>
<option value="ja_JP">日本語</option>
</select>
</label>
<label class="b3-label">
@ -254,7 +254,7 @@
<option value="fr_FR">Français</option>
<option value="zh_CN">简体中文</option>
<option value="zh_CHT">繁體中文</option>
<option value="jp_JP">日本語</option>
<option value="ja_JP">日本語</option>
</select>
</label>
<label class="b3-label">

View file

@ -190,7 +190,7 @@ export abstract class Constants {
en_US: "20210808180117-6v0mkxr",
fr_FR: "20210808180117-6v0mkxr",
es_ES: "20210808180117-6v0mkxr",
jp_JP: "20210808180117-6v0mkxr",
ja_JP: "20210808180117-6v0mkxr",
};
public static readonly QUICK_DECK_ID = "20230218211946-2kw8jgx";

View file

@ -263,7 +263,7 @@ declare namespace Config {
* User interface language
* Same as {@link IAppearance.lang}
*/
export type TLang = "en_US" | "es_ES" | "fr_FR" | "zh_CHT" | "zh_CN" | "jp_JP";
export type TLang = "en_US" | "es_ES" | "fr_FR" | "zh_CHT" | "zh_CN" | "ja_JP";
/**
* SiYuan bazaar related configuration

View file

@ -79,7 +79,7 @@ func Boot() {
readOnly := flag.String("readonly", "false", "read-only mode")
accessAuthCode := flag.String("accessAuthCode", "", "access auth code")
ssl := flag.Bool("ssl", false, "for https and wss")
lang := flag.String("lang", "", "zh_CN/zh_CHT/en_US/fr_FR/es_ES/jp_JP")
lang := flag.String("lang", "", "zh_CN/zh_CHT/en_US/fr_FR/es_ES/ja_JP")
mode := flag.String("mode", "prod", "dev/prod")
flag.Parse()