docs(en): Add English translation
All checks were successful
Deploy website to alys.phundrak.com / build (push) Successful in 25s

This commit is contained in:
2024-06-28 06:04:42 +02:00
parent 71447e3c70
commit 1e7576be36
7 changed files with 306 additions and 18 deletions

View File

@@ -8,25 +8,56 @@ export default defineConfig({
description: 'Chanteuse Virtuelle Francophone',
head: appHead,
cleanUrls: true,
themeConfig: {
editLink: {
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
},
nav: [
{ text: 'Home', link: '/' },
{ text: 'À Propos', link: '/about' },
],
sidebar: [
{
text: 'Pages principales',
items: [
{ text: 'Téléchargements', link: '/download' },
{ text: 'FAQ', link: '/faq' },
{ text: 'Communauté', link: '/community' },
{ text: 'À propos', link: '/about' },
locales: {
root: {
label: 'Français',
lang: 'fr',
themeConfig: {
editLink: {
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
},
nav: [
{ text: 'Accueil', link: '/' },
{ text: 'À Propos', link: '/about' },
],
sidebar: [
{
text: 'Pages principales',
items: [
{ text: 'Téléchargements', link: '/download' },
{ text: 'FAQ', link: '/faq' },
{ text: 'Communauté', link: '/community' },
{ text: 'À propos', link: '/about' },
],
},
],
socialLinks: socialLinks,
},
],
socialLinks: socialLinks,
},
en: {
label: 'English',
lang: 'en',
themeConfig: {
editLink: {
pattern: 'https://labs.phundrak.com/ALYS/alys.phundrak.com/src/branch/main/docs/:path',
},
nav: [
{ text: 'Home', link: '/en/' },
{ text: 'About', link: '/en/about' },
],
sidebar: [
{
text: 'Main Pages',
items: [
{ text: 'Download', link: '/en/download' },
{ text: 'FAQ', link: '/en/faq' },
{ text: 'Community', link: '/en/community' },
{ text: 'About', link: '/en/about' },
],
},
],
socialLinks: socialLinks,
},
},
},
});