Remove Netlify adapter from Astro configuration and clean up translations by deleting unused sections for blog and Anti-Fingerprinting Shield Plus. This streamlines the project and improves maintainability.

This commit is contained in:
becarta
2025-05-14 00:19:56 +02:00
parent 8a54efb68d
commit 93e66eb5df
7 changed files with 865 additions and 160 deletions

View File

@@ -0,0 +1,30 @@
import type { Translation } from './translations';
export const supportedLanguages = ['en', 'nl', 'de', 'fr'] as const;
export function getBlogTranslation(lang: string): Translation['blog'] {
return blogTranslations[lang] || blogTranslations['en'];
}
export const blogTranslations: Record<string, Translation['blog']> = {
en: {
title: 'Explore my insightful articles on my blog',
information:
"Welcome to my blog, where I share insights, tips, and solutions on Microsoft 365, Nexthink, Power Automate, PowerShell, and other automation tools. Whether you're looking to streamline workflows, enhance productivity, or dive into technical problem-solving, you'll find practical content to support your journey.",
},
nl: {
title: 'Ontdek mijn inzichtelijke artikelen op mijn blog',
information:
'Welkom op mijn blog, waar ik inzichten, tips en oplossingen deel over Microsoft 365, Nexthink, Power Automate, PowerShell en andere automatiseringstools. Of je nu werkstromen wilt stroomlijnen, productiviteit wilt verhogen of wilt duiken in technische probleemoplossing, je vindt hier praktische content om je reis te ondersteunen.',
},
de: {
title: 'Entdecken Sie meine aufschlussreichen Artikel in meinem Blog',
information:
'Willkommen in meinem Blog, wo ich Einblicke, Tipps und Lösungen zu Microsoft 365, Nexthink, Power Automate, PowerShell und anderen Automatisierungstools teile. Ob Sie Arbeitsabläufe optimieren, die Produktivität steigern oder in technische Problemlösungen eintauchen möchten, hier finden Sie praktische Inhalte zur Unterstützung Ihrer Reise.',
},
fr: {
title: 'Découvrez mes articles pertinents sur mon blog',
information:
"Bienvenue sur mon blog, où je partage des insights, des conseils et des solutions sur Microsoft 365, Nexthink, Power Automate, PowerShell et d'autres outils d'automatisation. Que vous cherchiez à rationaliser les flux de travail, améliorer la productivité ou plonger dans la résolution de problèmes techniques, vous trouverez ici du contenu pratique pour soutenir votre parcours.",
},
};