Skip to content

Commit

Permalink
Merge branch 'main' into text-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Oct 30, 2024
2 parents 2770db9 + cfb4dae commit a6f47d8
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
5 changes: 4 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
});
4 changes: 2 additions & 2 deletions src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ 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({
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 @@ -36,7 +36,7 @@ const t = useTranslations(lang);
</p>
</div>
<p>
{skill || <br />}
{skill ? t(skill) : <br />}
</p>
</div>
</div>
4 changes: 2 additions & 2 deletions src/components/team/PersonImage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
);
---

<Image
class={clsx(
"mx-auto h-40 w-40 rounded-full object-cover shadow-lg xl:h-56 xl:w-56",
imagePath && "p-5",
!imagePath && "p-5"
)}
src={imagePath ? images[imagePath]() : WsgHandsImage}
alt=""
Expand Down
4 changes: 2 additions & 2 deletions src/pages/en/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ const lang = (Astro.currentLocale || defaultLang) as Language;
}}
/>
<SkillCard
name="IT Software Solutions for Business"
name="Software Applications Development"
description="This skill 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."
action={{
label: "Find out more",
url: getRelativeLocaleUrl(lang, "it-software-solutions-for-business"),
url: getRelativeLocaleUrl(lang, "software-applications-development"),
}}
/>
<SkillCard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ const historyData = historyJson[lang]["skill09"];
---

<SkillPage
skillName="IT Software Solutions for Business"
skillName="Software Applications Development"
skillDescription="Creating new systems and modifying existing ones to provide software solutions to large and small businesses."
skillInformation={{
description:
"The skill IT Software Solutions for Business 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.<br /><br />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.<br /><br />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",
Expand All @@ -28,12 +28,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",
},
]}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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"),
}}
/>
<SkillCard
Expand Down

0 comments on commit a6f47d8

Please sign in to comment.