feat: support turkish

This commit is contained in:
qier222 2021-03-24 22:39:27 +08:00
parent fd16d470bd
commit 750e1997e6
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
4 changed files with 7 additions and 4 deletions

View file

@ -4,6 +4,7 @@ import store from "@/store";
import en from "./lang/en.js";
import zhCN from "./lang/zh-CN.js";
import tr from "./lang/tr.js";
Vue.use(VueI18n);
@ -12,6 +13,7 @@ const i18n = new VueI18n({
messages: {
en,
"zh-CN": zhCN,
tr,
},
silentTranslationWarn: true,
});