mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-21 21:03:00 -05:00
Update and add new translations
This commit is contained in:
parent
2a30c724e4
commit
4873eb1f6e
3 changed files with 21 additions and 4 deletions
11
src/i18n.ts
11
src/i18n.ts
|
@ -14,6 +14,11 @@ import fr from '@/locales/fr.json'
|
|||
import uk from '@/locales/uk.json'
|
||||
import de from '@/locales/de.json'
|
||||
import zh_Hans from '@/locales/zh_Hans.json'
|
||||
import ca from '@/locales/ca.json'
|
||||
import fi from '@/locales/fi.json'
|
||||
import tr from '@/locales/tr.json'
|
||||
import vi from '@/locales/vi.json'
|
||||
|
||||
|
||||
export default createI18n({
|
||||
legacy: false,
|
||||
|
@ -36,6 +41,10 @@ export default createI18n({
|
|||
'fr-FR': fr,
|
||||
'uk-UA': uk,
|
||||
'de-DE': de,
|
||||
'zh-Hans': zh_Hans
|
||||
'zh-Hans': zh_Hans,
|
||||
'ca-ES': ca,
|
||||
'fi-FI': fi,
|
||||
'tr-TR': tr,
|
||||
'vi-VN': vi
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ab2f0a559435802d2b4d548f159b3dea78586ac5
|
||||
Subproject commit c17ad6f535b37faa658909999dc850d8c7bfe029
|
|
@ -13,7 +13,11 @@ const locales = [
|
|||
'fr-FR',
|
||||
'uk-UA',
|
||||
'de-DE',
|
||||
'zh-Hans'
|
||||
'zh-Hans',
|
||||
'ca-ES',
|
||||
'fi-FI',
|
||||
'tr-TR',
|
||||
'vi-VN'
|
||||
]
|
||||
const languages = [
|
||||
'English',
|
||||
|
@ -30,7 +34,11 @@ const languages = [
|
|||
'Français',
|
||||
'Українська',
|
||||
'Deutsch',
|
||||
'中文(简体)'
|
||||
'中文(简体)',
|
||||
'Català',
|
||||
'Suomi',
|
||||
'Türkçe',
|
||||
'Tiếng Việt'
|
||||
]
|
||||
|
||||
export interface SettingsCheckbox {
|
||||
|
|
Loading…
Reference in a new issue