diff --git a/dashboard/public/translation/en.json b/dashboard/public/translation/en.json index 3f2ee3a0c..bfc9e641a 100644 --- a/dashboard/public/translation/en.json +++ b/dashboard/public/translation/en.json @@ -911,7 +911,7 @@ "refresh": "Refresh" }, "settings": { - "title": "System", + "title": "Settings", "appstoreAccount": { "title": "Cloudron.io Account", "description": "A Cloudron.io account is used to manage your subscription.", @@ -1053,6 +1053,10 @@ }, "locale": { "title": "Locale" + }, + "title": "System", + "settings": { + "title": "Settings" } }, "eventlog": { @@ -2150,5 +2154,8 @@ }, "server": { "title": "Server" + }, + "docker": { + "title": "Docker" } } diff --git a/dashboard/src/Index.vue b/dashboard/src/Index.vue index 54c5af494..3a89e191c 100644 --- a/dashboard/src/Index.vue +++ b/dashboard/src/Index.vue @@ -62,7 +62,7 @@ const VIEWS = Object.freeze({ NETWORK: '#/network', PROFILE: '#/profile', SERVICES: '#/services', - SYSTEM_LOCALE: '#/system-locale', + SYSTEM_SETTINGS: '#/system-settings', DOCKER: '#/docker', SYSTEM_EVENTLOG: '#/system-eventlog', SYSTEM_UPDATE: '#/system-update', @@ -175,8 +175,8 @@ function onHashChange() { view.value = VIEWS.PROFILE; } else if (v === VIEWS.SERVICES && profile.value.isAtLeastAdmin) { view.value = VIEWS.SERVICES; - } else if (v === VIEWS.SYSTEM_LOCALE && profile.value.isAtLeastAdmin) { - view.value = VIEWS.SYSTEM_LOCALE; + } else if (v === VIEWS.SYSTEM_SETTINGS && profile.value.isAtLeastAdmin) { + view.value = VIEWS.SYSTEM_SETTINGS; } else if (v === VIEWS.DOCKER && profile.value.isAtLeastAdmin) { view.value = VIEWS.DOCKER; } else if (v === VIEWS.SYSTEM_EVENTLOG && profile.value.isAtLeastAdmin) { @@ -308,6 +308,10 @@ onMounted(async () => { + {{ $t('network.title') }} + {{ $t('volumes.title') }} + {{ $t('docker.title') }} + - {{ $t('volumes.title') }} - - +
- {{ $t('server.title') }} + {{ $t('server.title') }} {{ $t('settings.appstoreAccount.title') }} @@ -365,7 +365,7 @@ onMounted(async () => { - +