Added Simplified Chinese translation (#268)

* Added Simplified Chinese translation

* Add the missing switch

* Improve Simplified Chinese translation
This commit is contained in:
西行寺鬼鬼子
2023-06-03 14:59:58 +02:00
committed by GitHub
parent 2077c6a95f
commit 64743af2ce
3 changed files with 183 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import LanguageDetector from 'i18next-browser-languagedetector'
import translationEN from 'locales/en/translation.json'
import translationRU from 'locales/ru/translation.json'
import translationUA from 'locales/ua/translation.json'
import translationZH from 'locales/zh/translation.json'
i18n
.use(LanguageDetector)
@@ -15,6 +16,7 @@ i18n
en: { translation: translationEN },
ru: { translation: translationRU },
ua: { translation: translationUA },
zh: { translation: translationZH }
},
})