This commit is contained in:
2019-07-19 19:41:58 +00:00
parent 177f08f49d
commit 7bbe2bd315
22 changed files with 191 additions and 192 deletions

View File

@@ -38,7 +38,7 @@ export default {
//LOGOUT
vm.appBar.menuItems.push({
title: vm.$gzlocale.get("Logout"),
title: window.$gz.locale.get("Logout"),
icon: "sign-out-alt",
key: "app:logout"
});
@@ -48,7 +48,7 @@ export default {
//HELP
vm.appBar.menuItems.push({
title: vm.$gzlocale.get("MenuHelp"),
title: window.$gz.locale.get("MenuHelp"),
icon: "question-circle",
key: "app:help",
data: vm.appBar.helpUrl
@@ -56,7 +56,7 @@ export default {
//ABOUT
vm.appBar.menuItems.push({
title: vm.$gzlocale.get("HelpAboutAyaNova"),
title: window.$gz.locale.get("HelpAboutAyaNova"),
icon: "info-circle",
key: "app:nav:abt",
data: "about"
@@ -75,7 +75,7 @@ export default {
vm.appBar.menuItems.push({ divider: true, inset: false });
//customize
vm.appBar.menuItems.push({
title: vm.$gzlocale.get("Customize"),
title: window.$gz.locale.get("Customize"),
icon: "sliders-h",
data: ctx.formData.ayaType,
key: "app:customize"