Skip to content

Commit

Permalink
Translate skill names in header
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Oct 20, 2024
1 parent 5db6051 commit 3b76b51
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ const t = useTranslations(lang);
const skills = [
{
name: "App-Entwicklung",
name: t({ de: "App-Entwicklung", en: "Mobile Applications Development" }),
href: getRelativeLocaleUrl(lang, "mobile-applications-development"),
},
{
name: "Software-Entwicklung",
name: t({
de: "Software-Entwicklung",
en: "IT Software Solutions for Business",
}),
href: getRelativeLocaleUrl(lang, "it-software-solutions-for-business"),
},
];
Expand Down

0 comments on commit 3b76b51

Please sign in to comment.