This commit is contained in:
@@ -474,15 +474,15 @@ export default function initialize() {
|
|||||||
|
|
||||||
// ARCHIVE
|
// ARCHIVE
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("ARCHIVE DATA"),
|
title: window.$gz.locale.get("Backup"),
|
||||||
icon: "archive",
|
icon: "backup",
|
||||||
route: "/archives",
|
route: "/backup",
|
||||||
key: key++
|
key: key++
|
||||||
});
|
});
|
||||||
|
|
||||||
// JOBS
|
// JOBS
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("SERVER JOBS"),
|
title: window.$gz.locale.get("ServerJobs"),
|
||||||
icon: "robot",
|
icon: "robot",
|
||||||
route: "/jobs",
|
route: "/jobs",
|
||||||
key: key++
|
key: key++
|
||||||
@@ -490,7 +490,7 @@ export default function initialize() {
|
|||||||
|
|
||||||
// LOGS
|
// LOGS
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("Log"),
|
title: window.$gz.locale.get("ServerLog"),
|
||||||
icon: "history",
|
icon: "history",
|
||||||
route: "/serverlogs",
|
route: "/serverlogs",
|
||||||
key: key++
|
key: key++
|
||||||
@@ -498,7 +498,7 @@ export default function initialize() {
|
|||||||
|
|
||||||
//METRICS
|
//METRICS
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("SERVER METRICS"),
|
title: window.$gz.locale.get("ServerMetrics"),
|
||||||
icon: "file-medical-alt",
|
icon: "file-medical-alt",
|
||||||
route: "/metrics",
|
route: "/metrics",
|
||||||
key: key++
|
key: key++
|
||||||
|
|||||||
@@ -337,10 +337,10 @@ export default new Router({
|
|||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
path: "/archives",
|
path: "/backup",
|
||||||
name: "archives",
|
name: "backup",
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "operations" */ "./views/archives.vue")
|
import(/* webpackChunkName: "operations" */ "./views/backup.vue")
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "archive",
|
icon: "archive",
|
||||||
title: window.$gz.locale.get("ARCHIVE DATA"),
|
title: window.$gz.locale.get("Backup"),
|
||||||
helpUrl: "user-form-archives"
|
helpUrl: "user-form-backup"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -13,7 +13,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "robot",
|
icon: "robot",
|
||||||
title: window.$gz.locale.get("SERVER JOBS"),
|
title: window.$gz.locale.get("ServerJobs"),
|
||||||
helpUrl: "user-form-jobs"
|
helpUrl: "user-form-jobs"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export default {
|
|||||||
window.$gz.eventBus.$emit("menu-change", {
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
isMain: true,
|
isMain: true,
|
||||||
icon: "file-medical-alt",
|
icon: "file-medical-alt",
|
||||||
title: window.$gz.locale.get("SERVER METRICS"),
|
title: window.$gz.locale.get("ServerMetrics"),
|
||||||
helpUrl: "user-form-server-metrics"
|
helpUrl: "user-form-server-metrics"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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("Log"),
|
title: window.$gz.locale.get("ServerLog"),
|
||||||
helpUrl: "user-form-server-logs"
|
helpUrl: "user-form-server-logs"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user