From a8955ac5232e142eb30a7ab70f85a0b304ead0b8 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Tue, 29 Oct 2024 14:18:05 +0100 Subject: [PATCH 1/5] Rename Skill 09 --- astro.config.mjs | 5 ++++- src/components/Header.astro | 6 +++--- src/pages/en/index.astro | 4 ++-- ...ness.astro => software-applications-development.astro} | 8 ++++---- src/pages/index.astro | 2 +- ...ness.astro => software-applications-development.astro} | 0 6 files changed, 14 insertions(+), 11 deletions(-) rename src/pages/en/{it-software-solutions-for-business.astro => software-applications-development.astro} (73%) rename src/pages/{it-software-solutions-for-business.astro => software-applications-development.astro} (100%) diff --git a/astro.config.mjs b/astro.config.mjs index c153d0d..703d679 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -15,6 +15,9 @@ export default defineConfig({ site: "https://blz-it.de", redirects: { "/de/skill08": "/mobile-applications-development", - "/de/skill09": "/it-software-solutions-for-business", + "/de/skill09": "/software-applications-development", + "/it-software-solutions-for-business": "/software-applications-development", + "/en/it-software-solutions-for-business": + "/en/software-applications-development", }, }); diff --git a/src/components/Header.astro b/src/components/Header.astro index 47ec657..817226e 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -17,14 +17,14 @@ const skills = [ { name: t({ de: "Software-Entwicklung", - en: "IT Software Solutions for Business", + en: "Software Applications Development", }), - href: getRelativeLocaleUrl(lang, "it-software-solutions-for-business"), + href: getRelativeLocaleUrl(lang, "software-applications-development"), }, { name: t({ de: "Web-Entwicklung", - en: "Web Technologies" + en: "Web Technologies", }), href: getRelativeLocaleUrl(lang, "web-technologies"), }, diff --git a/src/pages/en/index.astro b/src/pages/en/index.astro index 71068ad..549d333 100644 --- a/src/pages/en/index.astro +++ b/src/pages/en/index.astro @@ -66,11 +66,11 @@ const lang = (Astro.currentLocale || defaultLang) as Language; }} />
For this job you need a good technical understanding and logical thinking. You need to understand the requirements and wishes of the client and develop programs that are reliable, updatable, and easy for users to understand and use.", + "The skill Software Applications Development represents the entire spectrum of software-developing IT professions. All full-stack programmers are suitable. This includes desktop, server, database, mobile app and web development.

For this job you need a good technical understanding and logical thinking. You need to understand the requirements and wishes of the client and develop programs that are reliable, updatable, and easy for users to understand and use.", requirements: "You are proficient in at least one programming language, e.g., C#, can program desktop, server, web, and mobile applications, have knowledge of UML and databases (SQL), and understand English-language tasks.", videoUrl: "https://www.youtube-nocookie.com/embed/tSGg8S-_I4k", @@ -29,12 +29,12 @@ const historyData = historyJson[lang]["skill09"]; additionalLinks={[ { name: "worldskills.org", - text: "IT Software Solutions for Business at WorldSkills International", + text: "Software Applications Development at WorldSkills International", href: "https://worldskills.org/skills/id/221/", }, { name: "worldskills2024.com", - text: "IT Software Solutions for Business at the WorldSkills Lyon 2024", + text: "Software Applications Development at the WorldSkills Lyon 2024", href: "https://worldskills2024.com/en/skills/it-software-solutions-for-business", }, ]} diff --git a/src/pages/index.astro b/src/pages/index.astro index 38889a8..c83091f 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -71,7 +71,7 @@ const lang = (Astro.currentLocale || defaultLang) as Language; description="Diese Disziplin bildet das gesamte Spektrum der Software-entwickelnden IT-Berufe ab. Geeignet sind alle Full-Stack-Programmierer*innen. Dazu zählen Desktop-, Server-, Datenbank-, Mobile-App- und Webentwicklung." action={{ label: "Mehr erfahren", - url: getRelativeLocaleUrl(lang, "it-software-solutions-for-business"), + url: getRelativeLocaleUrl(lang, "software-applications-development"), }} /> Date: Tue, 29 Oct 2024 15:46:02 +0100 Subject: [PATCH 2/5] Fix skill name --- src/components/team/Person.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/team/Person.astro b/src/components/team/Person.astro index cc3a3c1..21310fc 100644 --- a/src/components/team/Person.astro +++ b/src/components/team/Person.astro @@ -36,7 +36,7 @@ const t = useTranslations(lang);

- {skill ||
} + {skill ? t(skill) :
}

From 10611c5d5ee4cc3bfd0c7fd3f943f73abc2acac7 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Tue, 29 Oct 2024 15:46:26 +0100 Subject: [PATCH 3/5] Fix image padding --- src/components/team/PersonImage.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/team/PersonImage.astro b/src/components/team/PersonImage.astro index c73d804..c2945c1 100644 --- a/src/components/team/PersonImage.astro +++ b/src/components/team/PersonImage.astro @@ -9,14 +9,14 @@ interface Props { const { imagePath } = Astro.props; const images = import.meta.glob<{ default: ImageMetadata }>( - "/src/assets/**/*.{jpeg,jpg,png,gif,webp}", + "/src/assets/**/*.{jpeg,jpg,png,gif,webp}" ); --- Date: Tue, 29 Oct 2024 16:16:02 +0100 Subject: [PATCH 4/5] Make padding clearer --- src/components/team/PersonImage.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/team/PersonImage.astro b/src/components/team/PersonImage.astro index c2945c1..e50dfe1 100644 --- a/src/components/team/PersonImage.astro +++ b/src/components/team/PersonImage.astro @@ -16,7 +16,7 @@ const images = import.meta.glob<{ default: ImageMetadata }>( Date: Tue, 29 Oct 2024 16:59:47 +0100 Subject: [PATCH 5/5] Improve code readability --- src/components/team/PersonImage.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/team/PersonImage.astro b/src/components/team/PersonImage.astro index e50dfe1..c618347 100644 --- a/src/components/team/PersonImage.astro +++ b/src/components/team/PersonImage.astro @@ -16,7 +16,7 @@ const images = import.meta.glob<{ default: ImageMetadata }>(