feat: fix missing privacy in sidebar
continuous-integration/drone/push Build is passing Details

This commit not only fixes the missing privacy page in the sidebar when the website is in English or
Elefen, but it also simplifies listing all pages available on the website regardless of the
language.
This commit is contained in:
Lucien Cartier-Tilet 2023-05-08 14:44:10 +02:00
parent 158b61e57c
commit 9641f40f65
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
3 changed files with 20 additions and 32 deletions

View File

@ -2,7 +2,7 @@ import { defineUserConfig, defaultTheme } from 'vuepress';
import { removeHtmlExtensionPlugin } from 'vuepress-plugin-remove-html-extension';
import head from './head';
import locales from './locales';
import themeLocales from './themeLocales';
import { themeLocales } from './themeLocales';
export default defineUserConfig({
lang: 'fr-FR',

View File

@ -1,18 +1,24 @@
const themeLocales = {
const pages: string[] = [
'/index.md',
'/about.md',
'/find-me.md',
'/resume.md',
'/projects.md',
'/conlanging.md',
'/vocal-synthesis.md',
'/privacy.md',
];
const localePages = (languagePrefix: string) => {
return pages.map((page: string) => `/${languagePrefix}${page}`);
};
export const themeLocales = {
'/': {
selectLanguageName: 'Français',
tip: 'nota bene',
warning: 'attention',
sidebar: [
'/README.md',
'/about.md',
'/find-me.md',
'/resume.md',
'/projects.md',
'/conlanging.md',
'/vocal-synthesis.md',
'/privacy.md',
],
sidebar: pages,
notFound: [
'Cest bien vide ici',
'Pourquoi sommes-nous ici?',
@ -30,15 +36,7 @@ const themeLocales = {
tip: 'avisa',
warning: 'averti',
danger: 'peril',
sidebar: [
'/lfn/index.md',
'/lfn/about.md',
'/lfn/find-me.md',
'/lfn/resume.md',
'/lfn/projects.md',
'/lfn/conlanging.md',
'/lfn/vocal-synthesis.md',
],
sidebar: localePages('lfn'),
notFound: [
'Ce? Se no ave no cosa asi',
'A do vade tu?',
@ -53,16 +51,6 @@ const themeLocales = {
},
'/en/': {
selectLanguageName: 'English',
sidebar: [
'/en/index.md',
'/en/about.md',
'/en/find-me.md',
'/en/resume.md',
'/en/projects.md',
'/en/conlanging.md',
'/en/vocal-synthesis.md',
],
sidebar: localePages('en'),
},
};
export default themeLocales;