1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 08:31:59 +00:00

fix(web): change the code zh-Hans to zh-CN (#13414)

fix/(web) change the code zh-Hans to zh-CN
This commit is contained in:
fa1seut0pia 2024-10-14 09:23:20 +08:00 committed by GitHub
parent e7397f35c9
commit 1193adf0f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -314,13 +314,13 @@ export const langs = [
{ name: 'Vietnamese', code: 'vi', loader: () => import('$lib/i18n/vi.json') }, { name: 'Vietnamese', code: 'vi', loader: () => import('$lib/i18n/vi.json') },
{ {
name: 'Chinese (Traditional)', name: 'Chinese (Traditional)',
code: 'zh-Hant', code: 'zh-TW',
weblateCode: 'zh_Hant', weblateCode: 'zh_Hant',
loader: () => import('$lib/i18n/zh_Hant.json'), loader: () => import('$lib/i18n/zh_Hant.json'),
}, },
{ {
name: 'Chinese (Simplified)', name: 'Chinese (Simplified)',
code: 'zh-Hans', code: 'zh-CN',
weblateCode: 'zh_SIMPLIFIED', weblateCode: 'zh_SIMPLIFIED',
loader: () => import('$lib/i18n/zh_SIMPLIFIED.json'), loader: () => import('$lib/i18n/zh_SIMPLIFIED.json'),
}, },