reformat strings

This commit is contained in:
Julius Zeidler 2024-02-20 10:16:16 +01:00
parent 3cc77e346a
commit e81751544e

View file

@ -1,60 +1,65 @@
const { defaultTheme } = require('@vuepress/theme-default') const { defaultTheme } = require("@vuepress/theme-default");
const { socialSharePlugin } = require(`vuepress-plugin-social-share`) const { socialSharePlugin } = require(`vuepress-plugin-social-share`);
const { registerComponentsPlugin } = require('@vuepress/plugin-register-components') const {
const { path } = require('@vuepress/utils') registerComponentsPlugin,
const { usePagesPlugin } = require('vuepress-plugin-use-pages') } = require("@vuepress/plugin-register-components");
const { path } = require("@vuepress/utils");
const { usePagesPlugin } = require("vuepress-plugin-use-pages");
module.exports = { module.exports = {
lang: 'de-DE', lang: "de-DE",
title: 'Draussenfunker.de | QRV im Grünen', title: "Draussenfunker.de | QRV im Grünen",
description: 'Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.', description:
"Wir sind eine Gruppe von Funkamateuren, die sich mit dem Thema Funken im Freien beschäftigt.",
plugins: [ plugins: [
usePagesPlugin({ startsWith: '/aktivitaeten/'}), usePagesPlugin({ startsWith: "/aktivitaeten/" }),
socialSharePlugin(), socialSharePlugin(),
registerComponentsPlugin({ registerComponentsPlugin({
componentsDir: path.resolve(__dirname, './components'), componentsDir: path.resolve(__dirname, "./components"),
}) }),
], ],
theme: defaultTheme({ theme: defaultTheme({
sidebarDepth: 2, sidebarDepth: 2,
contributors: false, contributors: false,
notFound: ['Sorry, etwas ist schief gelaufen.'], hostname: "https://draussenfunker.de",
backToHome: 'Zurück zur Startseite',
lastUpdatedText: 'Aktualisiert am', notFound: ["Sorry, etwas ist schief gelaufen."],
backToHome: "Zurück zur Startseite",
lastUpdatedText: "Aktualisiert am",
navbar: [ navbar: [
// NavbarItem // NavbarItem
{ {
text: 'Start', text: "Start",
link: '/', link: "/",
}, },
{ {
text: 'Aktivitäten', text: "Aktivitäten",
link: '/aktivitaeten', link: "/aktivitaeten",
}, },
{ {
text: 'Amateurfunk', text: "Amateurfunk",
link: '/amateurfunk', link: "/amateurfunk",
}, },
{ {
text: 'Mitmachen', text: "Mitmachen",
link: '/mitmachen', link: "/mitmachen",
}, },
{ {
text: 'DIY', text: "DIY",
children: [ children: [
'/diy/teleskop-viertelwellen-vertical', "/diy/teleskop-viertelwellen-vertical",
'/diy/efhw', "/diy/efhw",
'/diy/portabelrucksack' "/diy/portabelrucksack",
], ],
}, },
{ {
text: 'FAQ', text: "FAQ",
link: '/faq', link: "/faq",
}, },
{ {
text: 'Impressum', text: "Impressum",
link: '/impressum', link: "/impressum",
}, },
], ],
}), }),
} };