diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 103b473e..71b0729f 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -47,9 +47,9 @@ CURRENT TODOs SHELL / NAV / MENUS / LAYOUT -TODO: IMPLEMENT and stub out entire nav layout, don't hae to open actual form, can use placeholder - - Also remove the fake ones that won't be used - - Navigation panel can support up to 3 layers https://vuetifyjs.com/en/components/lists#nested-lists +TODO: LOCALIZATION ISSUES + - All service *templates are only in english, need to be translated i.e. pmTemplate, quotetemplate etc + - Schedulemarkers is not translated out of english and it's appearing instead of "Reminders" so fix that or make a new key or whatever is required TODO: Review and prioritize order of items in nav panel TODO: Make the stub pages so each menu item triggers a view change (make one for each) diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js index fe4e9245..8aeff78a 100644 --- a/ayanova/src/api/initialize.js +++ b/ayanova/src/api/initialize.js @@ -475,7 +475,7 @@ export default function initialize() { // ARCHIVE sub.push({ title: window.$gz.locale.get("Backup"), - icon: "backup", + icon: "file-archive", route: "/backup", key: key++ }); diff --git a/ayanova/src/api/locale.js b/ayanova/src/api/locale.js index cf8f3fad..966ab996 100644 --- a/ayanova/src/api/locale.js +++ b/ayanova/src/api/locale.js @@ -83,11 +83,18 @@ export default { "LocalizedTextDesign", "ReportList", "ScheduleMarkerList", - //"Dispatch", "Inventory", "Accounting", "Administration", "Operations", + "Attachments", + "History", + "Statistics", + "Backup", + "ServerJobs", + "ServerLog", + "ServerMetrics", + "NotificationSettings", "HelpAboutAyaNova", "MenuHelp", "More", diff --git a/ayanova/src/views/backup.vue b/ayanova/src/views/backup.vue index c2bc25fd..eebcbc85 100644 --- a/ayanova/src/views/backup.vue +++ b/ayanova/src/views/backup.vue @@ -12,7 +12,7 @@ export default { beforeCreate() { window.$gz.eventBus.$emit("menu-change", { isMain: true, - icon: "archive", + icon: "file-archive", title: window.$gz.locale.get("Backup"), helpUrl: "user-form-backup" });