Files
website/src/i18n/ui.ts
Max Richter 666b618a73 WIP
2025-07-20 13:37:29 +02:00

49 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const languages = {
en: 'English',
de: 'Deutsch',
};
export const defaultLang = 'de';
export const ui = {
en: {
"en": "English",
"de": "Deutsch",
"more-posts": "More Posts",
"more-projects": "More Projects",
"read-more": "Read More",
"latest-posts": "Latest Posts",
"latest-projects": "Latest Projects",
'home.title': 'Hi, Im Max :)',
'website-source': 'source',
'home.subtitle': 'Trained Media Designer, Blender Nerd, Developer and Hardware Tinkerer.',
'nav.blog': 'Blog',
'nav.projects': 'Projects',
'nav.resources': 'Resources',
'nav.photos': 'Photos',
'toc.title': 'Table of Contents',
"resume": "Resume",
},
de: {
"en": "English",
"de": "Deutsch",
"more-posts": "Mehr Posts",
"more-projects": "Mehr Projekte",
"latest-posts": "Neueste Posts",
"latest-projects": "Neueste Projekte",
"read-more": "weiterlesen",
'home.title': 'Hi, ich bin Max :)',
'website-source': 'Sourcecode',
'home.subtitle': 'Ausgebildeter Mediengestalter, Blender Nerd, Entwickler und Hardware Bastler.',
'nav.blog': 'Blog',
'nav.projects': 'Projekte',
'nav.resources': 'Resources',
'nav.photos': 'Fotos',
"resume": "Lebenslauf",
'toc.title': 'Inhaltsverzeichnis',
},
} as const;
export const showDefaultLang = false;