Skip to content

Commit

Permalink
fix: localize skill names
Browse files Browse the repository at this point in the history
  • Loading branch information
styrix560 committed Oct 29, 2024
1 parent 82060d9 commit 18dfc5b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
15 changes: 12 additions & 3 deletions src/assets/data/team.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,20 @@
"img": "/src/assets/img/team/Jonas Wanke.webp",
"name": "Jonas Wanke",
"lastRole": { "en": "Expert", "de": "Bundestrainer" },
"skill": "Mobile Applications Development",
"skill": {
"de": "App-Entwicklung",
"en": "Mobile Applications Development"
},
"hasMultipleRoles": true
},
{
"img": "/src/assets/img/team/Dr. Olaf Kappler.webp",
"name": "Dr. Olaf Kappler",
"lastRole": { "en": "Expert", "de": "Bundestrainer" },
"skill": "IT Software Solutions for Business"
"skill": {
"de": "Software-Entwicklung",
"en": "IT Software Solutions for Business"
}
},
{
"img": "/src/assets/img/team/Doreen Kappler.webp",
Expand All @@ -27,7 +33,10 @@
"img": "/src/assets/img/team/Glenn Skrzypczak.webp",
"name": "Glenn Skrzypczak",
"lastRole": { "en": "Expert", "de": "Bundestrainer" },
"skill": "Web Technologies",
"skill": {
"de": "Web-Entwicklung",
"en": "Web Technologies"
},
"hasMultipleRoles": true
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/team/Person.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface Props {
name: string;
lastRole: Record<Language, string>;
img?: string;
skill?: string;
skill?: Record<Language, string>;
hasMultipleRoles?: boolean;
}
Expand Down

0 comments on commit 18dfc5b

Please sign in to comment.