mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
add missing i18n key + fix menu paths
This commit is contained in:
parent
b2e43c1b04
commit
8c108dd51b
5 changed files with 63 additions and 13 deletions
|
|
@ -23,53 +23,53 @@ const bannerStore = useBannerStore();
|
|||
// Navigation with components
|
||||
// resolveComponent allow to replace a tag by a real Vue component
|
||||
const navList = [
|
||||
{ tag: "home", svg: "house", svgColor: "cyan", path: "/home" },
|
||||
{ tag: "home", svg: "house", svgColor: "cyan", path: "home" },
|
||||
{
|
||||
tag: "instances",
|
||||
svg: "box",
|
||||
svgColor: "dark",
|
||||
path: "/instances",
|
||||
path: "instances",
|
||||
},
|
||||
|
||||
{
|
||||
tag: "global_config",
|
||||
svg: "settings",
|
||||
svgColor: "blue",
|
||||
path: "/global-config",
|
||||
path: "global-config",
|
||||
},
|
||||
{
|
||||
tag: "services",
|
||||
svg: "disk",
|
||||
svgColor: "orange",
|
||||
path: "/services",
|
||||
path: "services",
|
||||
},
|
||||
{
|
||||
tag: "configs",
|
||||
svg: "gear",
|
||||
svgColor: "purple",
|
||||
path: "/configs",
|
||||
path: "configs",
|
||||
},
|
||||
{
|
||||
tag: "plugins",
|
||||
svg: "puzzle",
|
||||
svgColor: "yellow",
|
||||
path: "/plugins",
|
||||
path: "plugins",
|
||||
},
|
||||
{
|
||||
tag: "cache",
|
||||
svg: "carton",
|
||||
svgColor: "purple",
|
||||
path: "/cache",
|
||||
path: "cache",
|
||||
},
|
||||
{
|
||||
tag: "reports",
|
||||
svg: "flag",
|
||||
svgColor: "amber",
|
||||
path: "/reports",
|
||||
path: "reports",
|
||||
},
|
||||
{ tag: "bans", svg: "funnel", svgColor: "red", path: "/bans" },
|
||||
{ tag: "jobs", svg: "task", svgColor: "emerald", path: "/jobs" },
|
||||
{ tag: "logs", svg: "list", svgColor: "dark", path: "/logs" },
|
||||
{ tag: "bans", svg: "funnel", svgColor: "red", path: "bans" },
|
||||
{ tag: "jobs", svg: "task", svgColor: "emerald", path: "jobs" },
|
||||
{ tag: "logs", svg: "list", svgColor: "dark", path: "logs" },
|
||||
];
|
||||
|
||||
// Social links
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"dashboard_placeholder" : "{placeholder}",
|
||||
"dashboard_details": "details",
|
||||
"dashboard_placehoder" : "{placeholder}",
|
||||
"dashboard_logo_alt": "BunkerWeb logo image",
|
||||
"dashboard_logo_link_label": "Redirect to home page",
|
||||
"dashboard_bw": "BunkerWeb",
|
||||
|
|
|
|||
25
src/ui/static/assets/home-7b366ea2.js
Normal file
25
src/ui/static/assets/home-7b366ea2.js
Normal file
File diff suppressed because one or more lines are too long
25
src/ui/static/assets/home-c051e220.js
Normal file
25
src/ui/static/assets/home-c051e220.js
Normal file
File diff suppressed because one or more lines are too long
2
src/ui/templates/home.html
vendored
2
src/ui/templates/home.html
vendored
|
|
@ -7,7 +7,7 @@
|
|||
<link rel="stylesheet" href="css/flag-icons.min.css" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>BunkerWeb | DASHBOARD</title>
|
||||
<script nonce="{{ script_nonce }}" type="module" crossorigin src="assets/home-4dedb9c1.js"></script>
|
||||
<script nonce="{{ script_nonce }}" type="module" crossorigin src="assets/home-7b366ea2.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="hidden" data-csrf-token="{{ csrf_token() }}"></div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue