feat(translations): chinese translations (#316)
Some checks failed
Docker / Build and Push (push) Has been cancelled
github-pages / deploy (push) Has been cancelled
Docker / release (push) Has been cancelled

*  feat(translations): chinese translations

*  feat(App.vue): append dropdown item
This commit is contained in:
ClarkQAQ
2024-11-02 01:05:38 +08:00
committed by GitHub
parent bf9183256a
commit 486a6ac038
3 changed files with 499 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import de from './translations/de.json';
import ru from './translations/ru.json';
import en from './translations/en.json';
import vi from './translations/vi.json';
import zh from './translations/zh.json';
import {createI18n} from "vue-i18n";
// Create i18n instance with options
@@ -20,7 +21,8 @@ const i18n = createI18n({
"de": de,
"ru": ru,
"en": en,
"vi": vi
"vi": vi,
"zh": zh
}
});