From 076aa5c13da445a98905ed96b5e3b0f92d721782 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 3 Jul 2026 21:25:29 +0200 Subject: [PATCH] Update Intersolar date to 2027 --- components/blocks/JobListingBlock.tsx | 2 +- content/de/messen.mdx | 2 +- content/en/messen.mdx | 2 +- package.json | 2 +- tests/messen-content.test.ts | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/blocks/JobListingBlock.tsx b/components/blocks/JobListingBlock.tsx index 2876d4f34..cead10b4e 100644 --- a/components/blocks/JobListingBlock.tsx +++ b/components/blocks/JobListingBlock.tsx @@ -53,7 +53,7 @@ export const JobListingBlock = (props: JobListingBlockProps) => { showFairs, fairsTitle = t('fairsTitle'), fairs = [ - { name: 'Intersolar München', date: 'Termin folgt', type: 'Energie-Messe', location: 'Messe München' }, + { name: 'Intersolar München', date: '8. - 10. Juni 2027', type: 'Energie-Messe', location: 'Messe München' }, { name: 'Windenergietage Linstow', date: 'Termin folgt', type: 'Fachkongress', location: 'Linstow' }, { name: 'Kabelwerkstatt Wiesbaden', date: 'Termin folgt', type: 'Fachmesse', location: 'Wiesbaden' } ], diff --git a/content/de/messen.mdx b/content/de/messen.mdx index 1cc380505..4271777da 100644 --- a/content/de/messen.mdx +++ b/content/de/messen.mdx @@ -20,7 +20,7 @@ layout: "fullBleed" showFairs={true} showJobs={false} fairs={[ - { name: 'Intersolar München', date: '23. - 25. Juni 2026', type: 'Messe', location: 'München', url: 'https://www.intersolar.de/' }, + { name: 'Intersolar München', date: '8. - 10. Juni 2027', type: 'Messe', location: 'München', url: 'https://www.intersolar.de/' }, { name: 'Windenergietage Linstow', date: '10. - 12. November 2026', type: 'Fachkongress', location: 'Linstow', url: 'https://www.windenergietage.de/' }, { name: 'Werkstatt Kabel 2026', date: '24. - 25. November 2026', type: 'Fachtagung', location: 'Wiesbaden', url: 'https://werkstatt-kabel.essociation.de/' } ]} diff --git a/content/en/messen.mdx b/content/en/messen.mdx index 65ae57698..8b301957d 100644 --- a/content/en/messen.mdx +++ b/content/en/messen.mdx @@ -20,7 +20,7 @@ layout: "fullBleed" showFairs={true} showJobs={false} fairs={[ - { name: 'Intersolar Munich', date: 'June 23–25, 2026', type: 'Fair', location: 'Munich', url: 'https://www.intersolar.de/' }, + { name: 'Intersolar Munich', date: 'June 8–10, 2027', type: 'Fair', location: 'Munich', url: 'https://www.intersolar.de/' }, { name: 'Wind Energy Days Linstow', date: 'November 10–12, 2026', type: 'Specialist Congress', location: 'Linstow', url: 'https://www.windenergietage.de/' }, { name: 'Werkstatt Kabel 2026', date: 'November 24–25, 2026', type: 'Symposium', location: 'Wiesbaden', url: 'https://werkstatt-kabel.essociation.de/' } ]} diff --git a/package.json b/package.json index a7191621e..37e1219ce 100644 --- a/package.json +++ b/package.json @@ -139,7 +139,7 @@ "prepare": "husky", "preinstall": "npx only-allow pnpm" }, - "version": "2.4.25", + "version": "2.4.26", "pnpm": { "onlyBuiltDependencies": [ "@parcel/watcher", diff --git a/tests/messen-content.test.ts b/tests/messen-content.test.ts index 6c361b734..69dd90bf6 100644 --- a/tests/messen-content.test.ts +++ b/tests/messen-content.test.ts @@ -11,7 +11,7 @@ describe('Messen Content and Translations', () => { // 1. Intersolar München expect(content).toContain("name: 'Intersolar München'"); - expect(content).toContain("date: '23. - 25. Juni 2026'"); + expect(content).toContain("date: '8. - 10. Juni 2027'"); expect(content).toContain("type: 'Messe'"); expect(content).toContain("location: 'München'"); @@ -34,7 +34,7 @@ describe('Messen Content and Translations', () => { // 1. Intersolar Munich expect(content).toContain("name: 'Intersolar Munich'"); - expect(content).toContain("date: 'June 23–25, 2026'"); + expect(content).toContain("date: 'June 8–10, 2027'"); expect(content).toContain("type: 'Fair'"); expect(content).toContain("location: 'Munich'");