From dc15c496581dfdef92b62b41cebfb39a70f18f6a Mon Sep 17 00:00:00 2001 From: Vito0912 <86927734+Vito0912@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:00:25 +0200 Subject: [PATCH] first draft --- client/components/app/ConfigSideNav.vue | 5 + client/pages/config/to-go.vue | 215 ++++++++++++++++++++++++ client/strings/en-us.json | 1 + 3 files changed, 221 insertions(+) create mode 100644 client/pages/config/to-go.vue diff --git a/client/components/app/ConfigSideNav.vue b/client/components/app/ConfigSideNav.vue index adc99e5ae..1e24b1a0b 100644 --- a/client/components/app/ConfigSideNav.vue +++ b/client/components/app/ConfigSideNav.vue @@ -123,6 +123,11 @@ export default { title: this.$strings.HeaderYourStats, path: '/config/stats' }) + configRoutes.push({ + id: 'config-to-go', + title: this.$strings.HeaderToGo, + path: '/config/to-go' + }) } return configRoutes diff --git a/client/pages/config/to-go.vue b/client/pages/config/to-go.vue new file mode 100644 index 000000000..8ef474ffc --- /dev/null +++ b/client/pages/config/to-go.vue @@ -0,0 +1,215 @@ + + + + + diff --git a/client/strings/en-us.json b/client/strings/en-us.json index 7420c1e75..c6bc938a9 100644 --- a/client/strings/en-us.json +++ b/client/strings/en-us.json @@ -185,6 +185,7 @@ "HeaderStatsTop10Authors": "Top 10 Authors", "HeaderStatsTop5Genres": "Top 5 Genres", "HeaderTableOfContents": "Table of Contents", + "HeaderToGo": "To Go", "HeaderTools": "Tools", "HeaderUpdateAccount": "Update Account", "HeaderUpdateAuthor": "Update Author",