diff --git a/ayanova/src/views/adm-global-select-templates.vue b/ayanova/src/views/adm-global-select-templates.vue index 3f7afc9b..63f95e8a 100644 --- a/ayanova/src/views/adm-global-select-templates.vue +++ b/ayanova/src/views/adm-global-select-templates.vue @@ -400,7 +400,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: null, - title: vm.$ay.t("PickListTemplates"), + title: "PickListTemplates", helpUrl: "form-adm-global-select-templates", formData: { ayaType: window.$gz.type.FormCustom, @@ -411,7 +411,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -420,7 +420,7 @@ function generateMenu(vm) { if (vm.rights.delete) { menuOptions.menuItems.push({ - title: vm.$ay.t("ResetToDefault"), + title: "ResetToDefault", icon: "fa-undo", surface: false, key: FORM_KEY + ":delete", diff --git a/ayanova/src/views/adm-license.vue b/ayanova/src/views/adm-license.vue index e6575f57..3f191d3e 100644 --- a/ayanova/src/views/adm-license.vue +++ b/ayanova/src/views/adm-license.vue @@ -517,7 +517,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-ticket-alt", - title: vm.$ay.t("HelpLicense"), + title: "HelpLicense", helpUrl: "form-adm-license", formData: { ayaType: window.$gz.type.License @@ -527,7 +527,7 @@ function generateMenu(vm) { //copy dbid menuOptions.menuItems.push({ - title: vm.$ay.t("CopyDbId"), + title: "CopyDbId", icon: "fa-copy", key: FORM_KEY + ":copydbid", vm: vm @@ -536,7 +536,7 @@ function generateMenu(vm) { if (vm.rights.change) { //Trigger license check menuOptions.menuItems.push({ - title: vm.$ay.t("CheckForLicense"), + title: "CheckForLicense", icon: "fa-ticket-alt", key: FORM_KEY + ":fetch", vm: vm @@ -544,7 +544,7 @@ function generateMenu(vm) { //erase database menuOptions.menuItems.push({ - title: vm.$ay.t("AdminEraseDatabase"), + title: "AdminEraseDatabase", icon: "fa-skull-crossbones", key: FORM_KEY + ":erase", vm: vm diff --git a/ayanova/src/views/adm-translation.vue b/ayanova/src/views/adm-translation.vue index 23cbf54c..41ae4ffb 100644 --- a/ayanova/src/views/adm-translation.vue +++ b/ayanova/src/views/adm-translation.vue @@ -492,7 +492,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-language", - title: vm.$ay.t("Translation"), + title: "Translation", helpUrl: "form-translation", formData: { ayaType: window.$gz.type.Translation, @@ -504,7 +504,7 @@ function generateMenu(vm) { if (vm.rights.change && vm.obj.stock != true) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -518,7 +518,7 @@ function generateMenu(vm) { vm.obj.stock != true ) { menuOptions.menuItems.push({ - title: vm.$ay.t("Delete"), + title: "Delete", icon: "fa-trash-alt", surface: true, key: FORM_KEY + ":delete", @@ -529,7 +529,7 @@ function generateMenu(vm) { //STUB REPORTS //Report not Print, print is a further option menuOptions.menuItems.push({ - title: vm.$ay.t("Report"), + title: "Report", icon: "fa-file-alt", key: FORM_KEY + ":report", vm: vm @@ -548,7 +548,7 @@ function generateMenu(vm) { if (vm.rights.change && vm.$route.params.recordid != 0) { menuOptions.menuItems.push({ - title: vm.$ay.t("Duplicate"), + title: "Duplicate", icon: "fa-clone", key: FORM_KEY + ":duplicate", vm: vm diff --git a/ayanova/src/views/adm-translations.vue b/ayanova/src/views/adm-translations.vue index a2d75c87..c6ae4c27 100644 --- a/ayanova/src/views/adm-translations.vue +++ b/ayanova/src/views/adm-translations.vue @@ -71,7 +71,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-language", - title: vm.$ay.t("TranslationList"), + title: "TranslationList", helpUrl: "form-adm-translations", menuItems: [], formData: { @@ -81,7 +81,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("New"), + title: "New", icon: "fa-plus", surface: true, key: FORM_KEY + ":new", @@ -92,7 +92,7 @@ function generateMenu(vm) { //STUB REPORTS //Report not Print, print is a further option menuOptions.menuItems.push({ - title: vm.$ay.t("Report"), + title: "Report", icon: "fa-file-alt", key: FORM_KEY + ":report", vm: vm diff --git a/ayanova/src/views/adm-user.vue b/ayanova/src/views/adm-user.vue index 47466c23..3b5c661b 100644 --- a/ayanova/src/views/adm-user.vue +++ b/ayanova/src/views/adm-user.vue @@ -626,7 +626,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-splotch", - title: vm.$ay.t("User"), + title: "User", helpUrl: "form-user", formData: { ayaType: window.$gz.type.User, @@ -638,7 +638,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -648,7 +648,7 @@ function generateMenu(vm) { if (vm.rights.delete && vm.$route.params.recordid != 0) { menuOptions.menuItems.push({ - title: vm.$ay.t("Delete"), + title: "Delete", icon: "fa-trash-alt", surface: true, key: FORM_KEY + ":delete", @@ -659,7 +659,7 @@ function generateMenu(vm) { //STUB REPORTS //Report not Print, print is a further option menuOptions.menuItems.push({ - title: vm.$ay.t("Report"), + title: "Report", icon: "fa-file-alt", key: FORM_KEY + ":report", vm: vm @@ -678,7 +678,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("New"), + title: "New", icon: "fa-plus", key: FORM_KEY + ":new", vm: vm @@ -687,7 +687,7 @@ function generateMenu(vm) { if (vm.rights.change && vm.$route.params.recordid != 0) { menuOptions.menuItems.push({ - title: vm.$ay.t("Duplicate"), + title: "Duplicate", icon: "fa-clone", key: FORM_KEY + ":duplicate", vm: vm diff --git a/ayanova/src/views/adm-users.vue b/ayanova/src/views/adm-users.vue index bcb17b03..6bb6d564 100644 --- a/ayanova/src/views/adm-users.vue +++ b/ayanova/src/views/adm-users.vue @@ -70,7 +70,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-users", - title: vm.$ay.t("UserList"), + title: "UserList", helpUrl: "form-adm-users", menuItems: [], formData: { @@ -80,7 +80,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("New"), + title: "New", icon: "fa-plus", surface: true, key: FORM_KEY + ":new", @@ -91,7 +91,7 @@ function generateMenu(vm) { //STUB REPORTS //Report not Print, print is a further option menuOptions.menuItems.push({ - title: vm.$ay.t("Report"), + title: "Report", icon: "fa-file-alt", key: FORM_KEY + ":report", vm: vm diff --git a/ayanova/src/views/ay-about.vue b/ayanova/src/views/ay-about.vue index 37ff0a2b..ca50dd7b 100644 --- a/ayanova/src/views/ay-about.vue +++ b/ayanova/src/views/ay-about.vue @@ -192,18 +192,18 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-info-circle", - title: vm.$ay.t("HelpAboutAyaNova"), + title: "HelpAboutAyaNova", helpUrl: "form-ay-about", menuItems: [ { - title: vm.$ay.t("CopySupportInfo"), + title: "CopySupportInfo", icon: "fa-copy", surface: false, key: "about:copysupportinfo", vm: vm }, { - title: vm.$ay.t("Log"), + title: "Log", icon: "fa-glasses", surface: false, key: "app:nav:log", diff --git a/ayanova/src/views/ay-customize.vue b/ayanova/src/views/ay-customize.vue index 7fb77d30..689f9836 100644 --- a/ayanova/src/views/ay-customize.vue +++ b/ayanova/src/views/ay-customize.vue @@ -277,7 +277,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-sliders-h", - title: vm.$ay.t("Customize"), + title: "Customize", helpUrl: "form-ay-customize", formData: { ayaType: window.$gz.type.FormCustom, @@ -288,7 +288,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -299,7 +299,7 @@ function generateMenu(vm) { //Extra link to it here so people can stumble their way onto it //plus it's related to this form and people think Customize for the whole shebang menuOptions.menuItems.push({ - title: vm.$ay.t("Translation"), + title: "Translation", icon: "fa-language", data: "adm-translation", key: "app:nav" diff --git a/ayanova/src/views/ay-data-list-view.vue b/ayanova/src/views/ay-data-list-view.vue index f4f328f8..3a616410 100644 --- a/ayanova/src/views/ay-data-list-view.vue +++ b/ayanova/src/views/ay-data-list-view.vue @@ -887,7 +887,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-filter", - title: vm.$ay.t("DataListView"), + title: "DataListView", helpUrl: "form-ay-data-list-view", formData: { ayaType: window.$gz.type.FormCustom, @@ -898,7 +898,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -907,7 +907,7 @@ function generateMenu(vm) { } if (vm.rights.delete) { menuOptions.menuItems.push({ - title: vm.$ay.t("Delete"), + title: "Delete", icon: "fa-trash-alt", surface: true, key: FORM_KEY + ":delete", @@ -916,7 +916,7 @@ function generateMenu(vm) { } if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Duplicate"), + title: "Duplicate", icon: "fa-clone", key: FORM_KEY + ":duplicate", vm: vm diff --git a/ayanova/src/views/ay-evaluate.vue b/ayanova/src/views/ay-evaluate.vue index 47ac8748..e4b6fffa 100644 --- a/ayanova/src/views/ay-evaluate.vue +++ b/ayanova/src/views/ay-evaluate.vue @@ -271,7 +271,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-rocket", - title: vm.$ay.t("Evaluate"), + title: "Evaluate", helpUrl: "ay-evaluate", menuItems: [] }; diff --git a/ayanova/src/views/ay-history.vue b/ayanova/src/views/ay-history.vue index 2b43d561..27d38388 100644 --- a/ayanova/src/views/ay-history.vue +++ b/ayanova/src/views/ay-history.vue @@ -353,7 +353,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-history", - title: vm.$ay.t("History"), + title: "History", helpUrl: "form-ay-history", menuItems: [] }; diff --git a/ayanova/src/views/home-password.vue b/ayanova/src/views/home-password.vue index 698dfcef..42c232dc 100644 --- a/ayanova/src/views/home-password.vue +++ b/ayanova/src/views/home-password.vue @@ -264,7 +264,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-key", - title: vm.$ay.t("SetLoginPassword"), + title: "SetLoginPassword", helpUrl: "form-home-password", formData: { ayaType: window.$gz.type.UserOptions @@ -274,7 +274,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", diff --git a/ayanova/src/views/home-search.vue b/ayanova/src/views/home-search.vue index 422fe895..90c6be8b 100644 --- a/ayanova/src/views/home-search.vue +++ b/ayanova/src/views/home-search.vue @@ -330,7 +330,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-search", - title: vm.$ay.t("Search"), + title: "Search", helpUrl: "form-home-search", hideSearch: true, formData: { diff --git a/ayanova/src/views/ops-backup.vue b/ayanova/src/views/ops-backup.vue index 88f7a68f..a7592027 100644 --- a/ayanova/src/views/ops-backup.vue +++ b/ayanova/src/views/ops-backup.vue @@ -366,7 +366,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-file-archive", - title: vm.$ay.t("Backup"), + title: "Backup", helpUrl: "form-ops-backup", formData: { ayaType: window.$gz.type.Backup @@ -377,7 +377,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -385,7 +385,7 @@ function generateMenu(vm) { }); menuOptions.menuItems.push({ - title: vm.$ay.t("BackupNow"), + title: "BackupNow", icon: "fa-file-archive", surface: false, key: FORM_KEY + ":backupnow", diff --git a/ayanova/src/views/ops-jobs.vue b/ayanova/src/views/ops-jobs.vue index 3fc5f4f8..6ad4d898 100644 --- a/ayanova/src/views/ops-jobs.vue +++ b/ayanova/src/views/ops-jobs.vue @@ -174,14 +174,14 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-robot", - title: vm.$ay.t("ServerJobs"), + title: "ServerJobs", helpUrl: "form-ops-jobs", formData: { ayaType: window.$gz.type.ServerJob }, menuItems: [ { - title: vm.$ay.t("Copy"), + title: "Copy", icon: "fa-copy", surface: false, key: FORM_KEY + ":copylog", @@ -192,7 +192,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("OpsTestJob"), + title: "OpsTestJob", icon: "fa-robot", surface: false, key: FORM_KEY + ":TEST_JOB", diff --git a/ayanova/src/views/ops-log.vue b/ayanova/src/views/ops-log.vue index 5689fd6f..4aff2b97 100644 --- a/ayanova/src/views/ops-log.vue +++ b/ayanova/src/views/ops-log.vue @@ -146,14 +146,14 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-history", - title: vm.$ay.t("ServerLog"), + title: "ServerLog", helpUrl: "form-ops-log", formData: { ayaType: window.$gz.type.LogFile }, menuItems: [ { - title: vm.$ay.t("Copy"), + title: "Copy", icon: "fa-copy", surface: false, key: FORM_KEY + ":copylog", diff --git a/ayanova/src/views/ops-metrics.vue b/ayanova/src/views/ops-metrics.vue index b19c0e7f..3acef804 100644 --- a/ayanova/src/views/ops-metrics.vue +++ b/ayanova/src/views/ops-metrics.vue @@ -456,7 +456,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-file-medical-alt", - title: vm.$ay.t("ServerMetrics"), + title: "ServerMetrics", helpUrl: "form-ops-metrics", formData: { ayaType: window.$gz.type.ServerMetrics diff --git a/ayanova/src/views/ops-profile.vue b/ayanova/src/views/ops-profile.vue index f3968d83..6a52200a 100644 --- a/ayanova/src/views/ops-profile.vue +++ b/ayanova/src/views/ops-profile.vue @@ -86,14 +86,14 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-binoculars", - title: vm.$ay.t("ServerProfiler"), + title: "ServerProfiler", helpUrl: "form-ops-profile", formData: { ayaType: window.$gz.type.ServerMetrics }, menuItems: [ // { - // title: vm.$ay.t("Copy"), + // title: "Copy"), // icon: "fa-copy", // surface: false, // key: FORM_KEY + ":copylog", diff --git a/ayanova/src/views/ops-server-state.vue b/ayanova/src/views/ops-server-state.vue index 2ffaecf7..cba5c208 100644 --- a/ayanova/src/views/ops-server-state.vue +++ b/ayanova/src/views/ops-server-state.vue @@ -240,7 +240,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-door-open", - title: vm.$ay.t("ServerState"), + title: "ServerState", helpUrl: "form-ops-server-state", formData: { ayaType: window.$gz.type.ServerState @@ -253,7 +253,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", diff --git a/ayanova/src/views/widget.vue b/ayanova/src/views/widget.vue index e1c7c7aa..20941303 100644 --- a/ayanova/src/views/widget.vue +++ b/ayanova/src/views/widget.vue @@ -645,7 +645,7 @@ function generateMenu(vm) { let menuOptions = { isMain: false, icon: "fa-splotch", - title: vm.$ay.t("Widget"), + title: "Widget", helpUrl: "form-widget", formData: { ayaType: window.$gz.type.Widget, @@ -657,7 +657,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Save"), + title: "Save", icon: "fa-save", surface: true, key: FORM_KEY + ":save", @@ -667,7 +667,7 @@ function generateMenu(vm) { if (vm.rights.delete && vm.$route.params.recordid != 0) { menuOptions.menuItems.push({ - title: vm.$ay.t("Delete"), + title: "Delete", icon: "fa-trash-alt", surface: true, key: FORM_KEY + ":delete", @@ -678,7 +678,7 @@ function generateMenu(vm) { //STUB REPORTS //Report not Print, print is a further option menuOptions.menuItems.push({ - title: vm.$ay.t("Report"), + title: "Report", icon: "fa-file-alt", key: FORM_KEY + ":report", vm: vm @@ -697,7 +697,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("New"), + title: "New", icon: "fa-plus", key: FORM_KEY + ":new", vm: vm @@ -706,7 +706,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("Duplicate"), + title: "Duplicate", icon: "fa-clone", key: FORM_KEY + ":duplicate", vm: vm diff --git a/ayanova/src/views/widgets.vue b/ayanova/src/views/widgets.vue index c5f073b1..5fc96976 100644 --- a/ayanova/src/views/widgets.vue +++ b/ayanova/src/views/widgets.vue @@ -70,7 +70,7 @@ function generateMenu(vm) { let menuOptions = { isMain: true, icon: "fa-vial", - title: vm.$ay.t("WidgetList"), + title: "WidgetList", helpUrl: "form-ay-data-list-view", menuItems: [], formData: { @@ -80,7 +80,7 @@ function generateMenu(vm) { if (vm.rights.change) { menuOptions.menuItems.push({ - title: vm.$ay.t("New"), + title: "New", icon: "fa-plus", surface: true, key: FORM_KEY + ":new", @@ -91,7 +91,7 @@ function generateMenu(vm) { //STUB REPORTS //Report not Print, print is a further option menuOptions.menuItems.push({ - title: vm.$ay.t("Report"), + title: "Report", icon: "fa-file-alt", key: FORM_KEY + ":report", vm: vm