This commit is contained in:
2020-03-27 22:51:07 +00:00
parent 04e499a9e6
commit 679b79b2c5

View File

@@ -1,16 +1,9 @@
<template> <template>
<v-card class="mx-auto"> <v-card class="mx-auto">
<v-list subheader> <v-list subheader>
<v-subheader>Interface</v-subheader> <v-subheader>{{ t("UserInterfaceSettings") }}</v-subheader>
<v-list-item link> <v-list-item link to="adm-translation">
<v-list-item-title>Pick list templates</v-list-item-title> <v-list-item-title>{{ t("PickListTemplates") }}</v-list-item-title>
</v-list-item>
<v-subheader>Section 2</v-subheader>
<v-list-item>
<v-list-item-icon>
<v-icon>fa-home</v-icon>
</v-list-item-icon>
<v-list-item-title>Section 2 item 1</v-list-item-title>
</v-list-item> </v-list-item>
</v-list> </v-list>
</v-card> </v-card>
@@ -83,13 +76,8 @@ function initForm(vm) {
// //
function fetchTranslatedText(vm) { function fetchTranslatedText(vm) {
return window.$gz.translation.fetch([ return window.$gz.translation.fetch([
"CurrencyCode", "UserInterfaceSettings",
"LanguageCode", "PickListTemplates"
"TimeZone",
"UserEmailAddress",
"Hour12",
"UserColor",
"Translation"
]); ]);
} }
</script> </script>