30 lines
2.1 KiB
TypeScript
30 lines
2.1 KiB
TypeScript
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.",
|
|
},
|
|
};
|