This commit is contained in:
@@ -436,7 +436,7 @@ export default function initialize() {
|
|||||||
|
|
||||||
//FILES IN DATABASE
|
//FILES IN DATABASE
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("FILES MANAGER"),
|
title: window.$gz.locale.get("Attachments"),
|
||||||
icon: "folder",
|
icon: "folder",
|
||||||
route: "/files",
|
route: "/files",
|
||||||
key: key++
|
key: key++
|
||||||
@@ -444,7 +444,7 @@ export default function initialize() {
|
|||||||
|
|
||||||
//EVENT LOG / HISTORY
|
//EVENT LOG / HISTORY
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("HISTORY"),
|
title: window.$gz.locale.get("History"),
|
||||||
icon: "history",
|
icon: "history",
|
||||||
route: "/history",
|
route: "/history",
|
||||||
key: key++
|
key: key++
|
||||||
@@ -452,9 +452,9 @@ export default function initialize() {
|
|||||||
|
|
||||||
//KPI / METRICS / CHARTS AND STUFF
|
//KPI / METRICS / CHARTS AND STUFF
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("KPI CHARTS"),
|
title: window.$gz.locale.get("Statistics"),
|
||||||
icon: "chart-line",
|
icon: "chart-line",
|
||||||
route: "/kpi",
|
route: "/statistics",
|
||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -276,6 +276,7 @@ export default new Router({
|
|||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "vendors" */ "./views/accounting.vue")
|
import(/* webpackChunkName: "vendors" */ "./views/accounting.vue")
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
path: "/globalsettings",
|
path: "/globalsettings",
|
||||||
name: "globalsettings",
|
name: "globalsettings",
|
||||||
@@ -327,10 +328,12 @@ export default new Router({
|
|||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
path: "/kpi",
|
path: "/statistics",
|
||||||
name: "kpi",
|
name: "statistics",
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "administration" */ "./views/kpi.vue")
|
import(
|
||||||
|
/* webpackChunkName: "administration" */ "./views/statistics.vue"
|
||||||
|
)
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "folder",
|
icon: "folder",
|
||||||
title: window.$gz.locale.get("FILES MANAGER"),
|
title: window.$gz.locale.get("Attachments"),
|
||||||
helpUrl: "user-form-files-list"
|
helpUrl: "user-form-files-list"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "history",
|
icon: "history",
|
||||||
title: window.$gz.locale.get("HISTORY"),
|
title: window.$gz.locale.get("History"),
|
||||||
helpUrl: "user-form-history"
|
helpUrl: "user-form-history"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "chart-line",
|
icon: "chart-line",
|
||||||
title: window.$gz.locale.get("KPI CHARTS"),
|
title: window.$gz.locale.get("Statistics"),
|
||||||
helpUrl: "user-form-kpi"
|
helpUrl: "user-form-kpi"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user