Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Venezuela - Fix HolidayTypes #706

Merged
merged 1 commit into from
Oct 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/Nager.Date/HolidayProviders/VenezuelaHolidayProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ protected override IEnumerable<HolidaySpecification> GetHolidaySpecifications(in
{
Date = new DateTime(year, 4, 19),
EnglishName = "Beginning of the Independence Movement",
LocalName = "Diez y nueve de abril",
HolidayTypes = HolidayTypes.Observance
LocalName = "Proclamación de la Independencia",
HolidayTypes = HolidayTypes.Public
},
new HolidaySpecification
{
Expand Down Expand Up @@ -152,9 +152,9 @@ protected override IEnumerable<HolidaySpecification> GetHolidaySpecifications(in
new HolidaySpecification
{
Date = new DateTime(year, 6, 24),
EnglishName = "Feast of Saint John the Baptist and the Anniversary of the Battle of Carabobo",
LocalName = "Día de San Juan Bautista y aniversario de la Batalla de Carabobo",
HolidayTypes = HolidayTypes.Observance
EnglishName = "Anniversary of the Battle of Carabobo",
LocalName = "Aniversario de la Batalla de Carabobo",
HolidayTypes = HolidayTypes.Public
},
new HolidaySpecification
{
Expand All @@ -180,9 +180,9 @@ protected override IEnumerable<HolidaySpecification> GetHolidaySpecifications(in
new HolidaySpecification
{
Date = new DateTime(year, 7, 24),
EnglishName = "Birth of the Liberator",
LocalName = "Natalicio del Libertador, Dia de la Armada Nacional",
HolidayTypes = HolidayTypes.Observance
EnglishName = "Simón Bolívar's Birthday",
LocalName = "Natalicio del Libertador Simón Bolívar",
HolidayTypes = HolidayTypes.Public
},
new HolidaySpecification
{
Expand Down