diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js
index 1aeb2270..490f61f8 100644
--- a/ayanova/src/api/initialize.js
+++ b/ayanova/src/api/initialize.js
@@ -32,12 +32,20 @@ export default function initialize() {
//DASHBOARD
sub.push({
- title: window.$gz.locale.get("DashboardDashboard"),
+ title: window.$gz.locale.get("Dashboard"),
icon: "tachometer-alt",
route: "/home-dashboard",
key: key++
});
+ //SEARCH
+ sub.push({
+ title: window.$gz.locale.get("Search"),
+ icon: "search",
+ route: "/home-search",
+ key: key++
+ });
+
//SCHEDULE (personal)
sub.push({
title: window.$gz.locale.get("Schedule"),
@@ -56,7 +64,7 @@ export default function initialize() {
//REMINDERS (SCHEDULE MARKERS)
sub.push({
- title: window.$gz.locale.get("ScheduleMarkerList"),
+ title: window.$gz.locale.get("ReminderList"),
icon: "sticky-note",
route: "/home-reminders",
key: key++
diff --git a/ayanova/src/api/locale.js b/ayanova/src/api/locale.js
index bb0ccf9d..a774eba6 100644
--- a/ayanova/src/api/locale.js
+++ b/ayanova/src/api/locale.js
@@ -48,7 +48,7 @@ export default {
coreKeys: [
//main nav options
"Home",
- "DashboardDashboard",
+ "Dashboard",
"Schedule",
"MemoList",
"Locale",
@@ -82,7 +82,7 @@ export default {
"UserList",
"LocalizedTextDesign",
"ReportList",
- "ScheduleMarkerList",
+ "ReminderList",
"Inventory",
"Accounting",
"Administration",
diff --git a/ayanova/src/views/home-dashboard.vue b/ayanova/src/views/home-dashboard.vue
index 33f4808f..45a202fd 100644
--- a/ayanova/src/views/home-dashboard.vue
+++ b/ayanova/src/views/home-dashboard.vue
@@ -23,7 +23,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "tachometer-alt",
- title: window.$gz.locale.get("DashboardDashboard"),
+ title: window.$gz.locale.get("Dashboard"),
helpUrl: "form-home-dashboard"
});
}
diff --git a/ayanova/src/views/home-reminders.vue b/ayanova/src/views/home-reminders.vue
index 99add17d..4a97d41c 100644
--- a/ayanova/src/views/home-reminders.vue
+++ b/ayanova/src/views/home-reminders.vue
@@ -13,7 +13,7 @@ export default {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "sticky-note",
- title: window.$gz.locale.get("ScheduleMarkerList"),
+ title: window.$gz.locale.get("ReminderList"),
helpUrl: "form-home-reminders"
});
}
diff --git a/ayanova/src/views/home-search.vue b/ayanova/src/views/home-search.vue
new file mode 100644
index 00000000..f2cdd331
--- /dev/null
+++ b/ayanova/src/views/home-search.vue
@@ -0,0 +1,21 @@
+
+
+
+
+