Skip to content

Commit 967c2be

Browse files
authored
Germany - Add Uprising of June 17 1953 (#724)
75th anniversary of the uprising of June 17, 1953
1 parent dafae8e commit 967c2be

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Nager.Date/HolidayProviders/GermanyHolidayProvider.cs

+18
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,30 @@ private HolidaySpecification ReformationDay(int year)
297297
return null;
298298
}
299299

300+
private HolidaySpecification? UprisingOfJune171953(int year)
301+
{
302+
if (year == 2028)
303+
{
304+
return new HolidaySpecification
305+
{
306+
Date = new DateTime(year, 5, 8),
307+
EnglishName = "75th anniversary of the uprising of June 17, 1953",
308+
LocalName = "75. Jahrestag des Aufstandes vom 17. Juni 1953",
309+
HolidayTypes = HolidayTypes.Public,
310+
SubdivisionCodes = ["DE-BE"]
311+
};
312+
}
313+
314+
return null;
315+
}
316+
300317
/// <inheritdoc/>
301318
public override IEnumerable<string> GetSources()
302319
{
303320
return
304321
[
305322
"https://de.wikipedia.org/wiki/Gesetzliche_Feiertage_in_Deutschland",
323+
"https://pardok.parlament-berlin.de/starweb/adis/citat/VT/19/gvbl/g24280460.pdf"
306324
];
307325
}
308326
}

0 commit comments

Comments
 (0)