feat(i18n): new translations

This commit is contained in:
github-actions[bot]
2022-09-23 00:32:16 +00:00
parent 3324d992f3
commit 0a8780a9d4
3 changed files with 78 additions and 0 deletions
@@ -3,6 +3,8 @@
// To overwrite this, please overwrite download.ts
import en from './en.json';
import zh_Hans from './zh-Hans.json';
import zh_Hant from './zh-Hant.json';
import sr from './sr.json';
export const LOCALES = [
{
@@ -25,4 +27,24 @@ export const LOCALES = [
completeRate: 1,
res: zh_Hans,
},
{
id: 1000016012,
name: 'Traditional Chinese',
tag: 'zh-Hant',
originalName: '繁體中文',
flagEmoji: '🇭🇰',
base: false,
completeRate: 1,
res: zh_Hant,
},
{
id: 1000034005,
name: 'Serbian',
tag: 'sr',
originalName: 'српски',
flagEmoji: '🇷🇸',
base: false,
completeRate: 0.9166666666666666,
res: sr,
},
] as const;