mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 09:00:50 +00:00
address feedback
This commit is contained in:
parent
499c8b8d08
commit
d312c02759
@ -122,6 +122,7 @@ const msg = {
|
|||||||
linux: "Linux",
|
linux: "Linux",
|
||||||
editWarning: "You are entering edit mode",
|
editWarning: "You are entering edit mode",
|
||||||
viewWarning: "You are entering view mode",
|
viewWarning: "You are entering view mode",
|
||||||
|
virtualDatabase: "Virtual Database",
|
||||||
reloadDashboards: "Reload dashboards",
|
reloadDashboards: "Reload dashboards",
|
||||||
kubernetesService: "Service",
|
kubernetesService: "Service",
|
||||||
kubernetesCluster: "Cluster",
|
kubernetesCluster: "Cluster",
|
||||||
|
@ -124,6 +124,7 @@ const msg = {
|
|||||||
linux: "Linux",
|
linux: "Linux",
|
||||||
editWarning: "Estás entrando en modo edición",
|
editWarning: "Estás entrando en modo edición",
|
||||||
viewWarning: "Estás entrando en modo visualización",
|
viewWarning: "Estás entrando en modo visualización",
|
||||||
|
virtualDatabase: "Base de Datos Virtual",
|
||||||
reloadDashboards: "Recargar Panel",
|
reloadDashboards: "Recargar Panel",
|
||||||
kubernetesService: "Servicio",
|
kubernetesService: "Servicio",
|
||||||
kubernetesCluster: "Cluster",
|
kubernetesCluster: "Cluster",
|
||||||
|
@ -120,6 +120,7 @@ const msg = {
|
|||||||
browser: "浏览器",
|
browser: "浏览器",
|
||||||
editWarning: "你正在进入编辑模式",
|
editWarning: "你正在进入编辑模式",
|
||||||
viewWarning: "你正在进入预览模式",
|
viewWarning: "你正在进入预览模式",
|
||||||
|
virtualDatabase: "虚拟数据库",
|
||||||
reloadDashboards: "重新加载仪表盘",
|
reloadDashboards: "重新加载仪表盘",
|
||||||
kubernetesService: "服务",
|
kubernetesService: "服务",
|
||||||
kubernetesCluster: "集群",
|
kubernetesCluster: "集群",
|
||||||
|
@ -17,13 +17,14 @@
|
|||||||
import { RouteRecordRaw } from "vue-router";
|
import { RouteRecordRaw } from "vue-router";
|
||||||
import Layout from "@/layout/Index.vue";
|
import Layout from "@/layout/Index.vue";
|
||||||
|
|
||||||
export const routesMySQL: Array<RouteRecordRaw> = [
|
export const routesDatabase: Array<RouteRecordRaw> = [
|
||||||
{
|
{
|
||||||
path: "",
|
path: "",
|
||||||
name: "MySQL",
|
name: "MySQL",
|
||||||
meta: {
|
meta: {
|
||||||
title: "mySQL",
|
title: "database",
|
||||||
icon: "storage",
|
icon: "storage",
|
||||||
|
hasGroup: true,
|
||||||
},
|
},
|
||||||
redirect: "/mySQL",
|
redirect: "/mySQL",
|
||||||
component: Layout,
|
component: Layout,
|
@ -53,7 +53,7 @@ export const routesGen: Array<RouteRecordRaw> = [
|
|||||||
path: "/database",
|
path: "/database",
|
||||||
name: "Database",
|
name: "Database",
|
||||||
meta: {
|
meta: {
|
||||||
title: "database",
|
title: "virtualDatabase",
|
||||||
exact: true,
|
exact: true,
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
|
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
|
||||||
import { routesGen } from "./general";
|
import { routesGen } from "./general";
|
||||||
import { routesMesh } from "./serviceMesh";
|
import { routesMesh } from "./serviceMesh";
|
||||||
import { routesMySQL } from "./mySQL";
|
import { routesDatabase } from "./database";
|
||||||
import { routesInfra } from "./infrastructure";
|
import { routesInfra } from "./infrastructure";
|
||||||
import { routesDashboard } from "./dashboard";
|
import { routesDashboard } from "./dashboard";
|
||||||
import { routesSetting } from "./setting";
|
import { routesSetting } from "./setting";
|
||||||
@ -34,7 +34,7 @@ const routes: Array<RouteRecordRaw> = [
|
|||||||
...routesK8s,
|
...routesK8s,
|
||||||
...routesInfra,
|
...routesInfra,
|
||||||
...routesBrowser,
|
...routesBrowser,
|
||||||
...routesMySQL,
|
...routesDatabase,
|
||||||
...routesSelf,
|
...routesSelf,
|
||||||
...routesDashboard,
|
...routesDashboard,
|
||||||
...routesAlarm,
|
...routesAlarm,
|
||||||
|
Loading…
Reference in New Issue
Block a user