From e81751544ed3981828e9a24e5b5cf86865c544a7 Mon Sep 17 00:00:00 2001 From: Julius Zeidler Date: Tue, 20 Feb 2024 10:16:16 +0100 Subject: [PATCH] reformat strings --- docs/.vuepress/config.js | 69 +++++++++++++++++++++------------------- 1 file changed, 37 insertions(+), 32 deletions(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index b0938a90..5d373717 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -1,60 +1,65 @@ -const { defaultTheme } = require('@vuepress/theme-default') -const { socialSharePlugin } = require(`vuepress-plugin-social-share`) -const { registerComponentsPlugin } = require('@vuepress/plugin-register-components') -const { path } = require('@vuepress/utils') -const { usePagesPlugin } = require('vuepress-plugin-use-pages') +const { defaultTheme } = require("@vuepress/theme-default"); +const { socialSharePlugin } = require(`vuepress-plugin-social-share`); +const { + registerComponentsPlugin, +} = require("@vuepress/plugin-register-components"); +const { path } = require("@vuepress/utils"); +const { usePagesPlugin } = require("vuepress-plugin-use-pages"); module.exports = { - lang: 'de-DE', - title: 'Draussenfunker.de | QRV im Grünen', - description: 'Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.', + lang: "de-DE", + title: "Draussenfunker.de | QRV im Grünen", + description: + "Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.", plugins: [ - usePagesPlugin({ startsWith: '/aktivitaeten/'}), + usePagesPlugin({ startsWith: "/aktivitaeten/" }), socialSharePlugin(), registerComponentsPlugin({ - componentsDir: path.resolve(__dirname, './components'), - }) + componentsDir: path.resolve(__dirname, "./components"), + }), ], theme: defaultTheme({ sidebarDepth: 2, contributors: false, - notFound: ['Sorry, etwas ist schief gelaufen.'], - backToHome: 'Zurück zur Startseite', - lastUpdatedText: 'Aktualisiert am', + hostname: "https://draussenfunker.de", + + notFound: ["Sorry, etwas ist schief gelaufen."], + backToHome: "Zurück zur Startseite", + lastUpdatedText: "Aktualisiert am", navbar: [ // NavbarItem { - text: 'Start', - link: '/', + text: "Start", + link: "/", }, { - text: 'Aktivitäten', - link: '/aktivitaeten', + text: "Aktivitäten", + link: "/aktivitaeten", }, { - text: 'Amateurfunk', - link: '/amateurfunk', + text: "Amateurfunk", + link: "/amateurfunk", }, { - text: 'Mitmachen', - link: '/mitmachen', + text: "Mitmachen", + link: "/mitmachen", }, { - text: 'DIY', + text: "DIY", children: [ - '/diy/teleskop-viertelwellen-vertical', - '/diy/efhw', - '/diy/portabelrucksack' + "/diy/teleskop-viertelwellen-vertical", + "/diy/efhw", + "/diy/portabelrucksack", ], }, { - text: 'FAQ', - link: '/faq', + text: "FAQ", + link: "/faq", }, { - text: 'Impressum', - link: '/impressum', - }, + text: "Impressum", + link: "/impressum", + }, ], }), -} +};