Add Heiligabend (Dec 24) as holiday for NRW 2025 and 2026

This fixes the issue where:
- December 24 was not recognized as a special day
- December 23 was not marked as Vortag (pre-holiday day)

By adding Heiligabend to the holiday list:
- Dec 24 is now Ist_FEIERTAG=TRUE (treated as WE-Tag)
- Dec 23 is now Ist_VORTAG=TRUE (day before holiday, also WE-Tag)

Co-authored-by: Kenearos <86194771+Kenearos@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-12 19:41:15 +00:00
parent 5a72140240
commit 1ee73105dd

View file

@ -23,6 +23,7 @@ NRW_HOLIDAYS_2025 = [
("2025-06-19", "Fronleichnam", "NRW"), ("2025-06-19", "Fronleichnam", "NRW"),
("2025-10-03", "Tag der Deutschen Einheit", "NRW"), ("2025-10-03", "Tag der Deutschen Einheit", "NRW"),
("2025-11-01", "Allerheiligen", "NRW"), ("2025-11-01", "Allerheiligen", "NRW"),
("2025-12-24", "Heiligabend", "NRW"),
("2025-12-25", "1. Weihnachtstag", "NRW"), ("2025-12-25", "1. Weihnachtstag", "NRW"),
("2025-12-26", "2. Weihnachtstag", "NRW"), ("2025-12-26", "2. Weihnachtstag", "NRW"),
] ]
@ -37,6 +38,7 @@ NRW_HOLIDAYS_2026 = [
("2026-06-04", "Fronleichnam", "NRW"), ("2026-06-04", "Fronleichnam", "NRW"),
("2026-10-03", "Tag der Deutschen Einheit", "NRW"), ("2026-10-03", "Tag der Deutschen Einheit", "NRW"),
("2026-11-01", "Allerheiligen", "NRW"), ("2026-11-01", "Allerheiligen", "NRW"),
("2026-12-24", "Heiligabend", "NRW"),
("2026-12-25", "1. Weihnachtstag", "NRW"), ("2026-12-25", "1. Weihnachtstag", "NRW"),
("2026-12-26", "2. Weihnachtstag", "NRW"), ("2026-12-26", "2. Weihnachtstag", "NRW"),
] ]