Merge pull request #111 from LmeSzinc/dev

Bug fix
This commit is contained in:
LmeSzinc 2023-09-26 00:02:21 +08:00 committed by GitHub
commit 8b955975df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 1 deletions

View File

@ -135,6 +135,7 @@ Deploy:
# 'en-US' for English
# 'ja-JP' for Japanese
# 'zh-TW' for Chinese traditional
# 'es-ES' for Spanish
Language: zh-CN
# Theme of web ui
# 'default' for light theme

View File

@ -135,6 +135,7 @@ Deploy:
# 'en-US' for English
# 'ja-JP' for Japanese
# 'zh-TW' for Chinese traditional
# 'es-ES' for Spanish
Language: en-US
# Theme of web ui
# 'default' for light theme

View File

@ -135,6 +135,7 @@ Deploy:
# 'en-US' for English
# 'ja-JP' for Japanese
# 'zh-TW' for Chinese traditional
# 'es-ES' for Spanish
Language: en-US
# Theme of web ui
# 'default' for light theme

View File

@ -135,6 +135,7 @@ Deploy:
# 'en-US' for English
# 'ja-JP' for Japanese
# 'zh-TW' for Chinese traditional
# 'es-ES' for Spanish
Language: {{language}}
# Theme of web ui
# 'default' for light theme

View File

@ -39,5 +39,5 @@ export const localeSetting: LocaleSetting = {
// Default locale
fallback: LOCALE.JA_JP,
// available Locales
availableLocales: [LOCALE.ZH_CN, LOCALE.EN_US, LOCALE.JA_JP, LOCALE.ZH_TW],
availableLocales: [LOCALE.ZH_CN, LOCALE.EN_US, LOCALE.JA_JP, LOCALE.ZH_TW, LOCALE.ES_ES],
};