Fix missing translations key (#133)

* translation: add simplified & traditional chinese

* Fix missing translations

* fix chinese translations
This commit is contained in:
wengtad
2021-01-31 03:32:40 +08:00
committed by GitHub
parent 874bea7fa4
commit 9b41990ea9
22 changed files with 434 additions and 153 deletions

View File

@@ -6,7 +6,7 @@
<v-card-title> {{$t('settings.add-a-new-theme')}} </v-card-title>
<v-card-text>
<v-text-field
label="Theme Name"
:label="$t('settings.theme.theme-name')"
v-model="themeName"
:rules="[rules.required]"
></v-text-field>
@@ -34,7 +34,7 @@ export default {
dialog: false,
themeName: "",
rules: {
required: (val) => !!val || "Required.",
required: (val) => !!val || this.$t("settings.theme.theme-name-is-required"),
},
};
},