mahula af0a88dfc7
refactor(other): translate pages to german (#241)
* translate meta and theme texts

* translate profile pages

* fix typo

* translate projects pages

* linting

* translate further pages

* correct text in contact page

* correct changes in vuepress config

* rename imprint page related to translation

* remove description headline fromprojectpages

* fix imprint url in theme config

* fix typos and revise some passages

* adapt directory and file names to translation

* linting

* fix dreammall project image path

* fix ocelot project image path

* linting

* refine history translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine history translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine history translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine ufl profile translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine main text translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine translation for project democracy app

* refine translation for project dreammall

* refine translation for hannes profile

* refine translation for ulf profile

* refine contact translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine history translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine translation for mathias profile

* correct profile path in history text

* move max profile

* refine democracy app translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine dreammall project translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine hannes profile translation

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>

* refine mathias profile translation

---------

Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
2025-03-07 14:44:21 +01:00

74 lines
1.6 KiB
JavaScript

import { hopeTheme } from 'vuepress-theme-hope'
export default hopeTheme({
logo: '/it4c-logo2-clean-bg_alpha-128x128.png',
docsRepo: 'https://github.com/IT4Change/IT4C.dev',
docsBranch: 'master',
docsDir: 'docs',
editLink: true,
lastUpdated: false,
contributors: false,
print: false,
displayFooter: true,
pageInfo: false,
footer: 'CC BY IT4C.dev & Autoren - <a href="/impressum.html">Impressum</a>',
navbar: [
{ text: 'IT4C', link: '/' },
{ text: 'Kontakt', link: '/kontakt' },
{
text: 'Github',
link: 'https://github.com/IT4Change'
},
],
sidebar: [
{
text: 'IT4C',
link: '/',
collapsible: false,
children: [
'/historie',
'/kontakt'
]
},
{
text: 'Projekte',
collapsible: false,
children: [
{
text: 'DEMOCRACY App',
link: '/projekte/democracy.app'
},
{
text: 'Ocelot-Social',
link: '/projekte/ocelot.social'
},
{
text: 'Gradido Software',
link: '/projekte/gradido'
},
{
text: 'DreamMall.earth',
link: '/projekte/dreammall'
},
]
},
{
text: 'Team',
collapsible: false,
children: [
'/team/alexander-friedland',
'/team/hannes-heine',
{ link: '/team/mathias-lenz', text: 'Mathias Lenz' },
'/team/moriz-wahl',
'/team/ulf-gebhardt',
'/team/wolfgang-huss'
]
},
],
plugins: {
slimsearch: {
indexContent: true
},
},
})