mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
refactor(i18n): Follow IETF standard (#26171)
* refactor(18n): Follow IETF standard Rename zh_SIMPLIFIED to zh_Hans Makes it easier to merge #21337 * fix(web): zh_SIMPLIFIED -> zh_Hans
This commit is contained in:
parent
434ded92f5
commit
2fb9f84b56
2 changed files with 2 additions and 2 deletions
|
|
@ -340,8 +340,8 @@ export const langs: Lang[] = [
|
|||
{
|
||||
name: 'Chinese (Simplified)',
|
||||
code: 'zh-CN',
|
||||
weblateCode: 'zh_SIMPLIFIED',
|
||||
loader: () => import('$i18n/zh_SIMPLIFIED.json'),
|
||||
weblateCode: 'zh_Hans',
|
||||
loader: () => import('$i18n/zh_Hans.json'),
|
||||
},
|
||||
{ name: 'Development (keys only)', code: 'dev', loader: () => Promise.resolve({ default: {} }) },
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue