122 lines
3.6 KiB
Python
122 lines
3.6 KiB
Python
# holidays
|
|
# --------
|
|
# A fast, efficient Python library for generating country, province and state
|
|
# specific sets of holidays on the fly. It aims to make determining whether a
|
|
# specific date is a holiday as fast and flexible as possible.
|
|
#
|
|
# Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file)
|
|
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
|
|
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
|
# Website: https://github.com/vacanza/holidays
|
|
# License: MIT (see LICENSE file)
|
|
|
|
from gettext import gettext as tr
|
|
|
|
from holidays.groups import ChristianHolidays, InternationalHolidays
|
|
from holidays.holiday_base import HolidayBase
|
|
|
|
|
|
class Nicaragua(HolidayBase, ChristianHolidays, InternationalHolidays):
|
|
"""Nicaragua holidays.
|
|
|
|
References:
|
|
* <https://en.wikipedia.org/wiki/Public_holidays_in_Nicaragua>
|
|
* <https://web.archive.org/web/20241102092432/http://legislacion.asamblea.gob.ni/Normaweb.nsf/($All)/FA251B3C54F5BAEF062571C40055736C?OpenDocument>
|
|
* <https://web.archive.org/web/20250427125556/http://legislacion.asamblea.gob.ni/normaweb.nsf/($All)/3B28EC51ABE2787706258848005ADBB0?OpenDocument>
|
|
"""
|
|
|
|
country = "NI"
|
|
default_language = "es"
|
|
subdivisions = (
|
|
"AN", # Costa Caribe Norte.
|
|
"AS", # Costa Caribe Sur.
|
|
"BO", # Boaco.
|
|
"CA", # Carazo.
|
|
"CI", # Chinandega.
|
|
"CO", # Chontales.
|
|
"ES", # Estelí.
|
|
"GR", # Granada.
|
|
"JI", # Jinotega.
|
|
"LE", # León.
|
|
"MD", # Madriz.
|
|
"MN", # Managua.
|
|
"MS", # Masaya.
|
|
"MT", # Matagalpa.
|
|
"NS", # Nueva Segovia.
|
|
"RI", # Rivas.
|
|
"SJ", # Río San Juan.
|
|
)
|
|
subdivisions_aliases = {
|
|
"Costa Caribe Norte": "AN",
|
|
"Costa Caribe Sur": "AS",
|
|
"Boaco": "BO",
|
|
"Carazo": "CA",
|
|
"Chinandega": "CI",
|
|
"Chontales": "CO",
|
|
"Estelí": "ES",
|
|
"Granada": "GR",
|
|
"Jinotega": "JI",
|
|
"León": "LE",
|
|
"Madriz": "MD",
|
|
"Managua": "MN",
|
|
"Masaya": "MS",
|
|
"Matagalpa": "MT",
|
|
"Nueva Segovia": "NS",
|
|
"Rivas": "RI",
|
|
"Río San Juan": "SJ",
|
|
}
|
|
supported_languages = ("en_US", "es", "uk")
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
ChristianHolidays.__init__(self)
|
|
InternationalHolidays.__init__(self)
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def _populate_public_holidays(self):
|
|
# New Year's Day.
|
|
self._add_new_years_day(tr("Año Nuevo"))
|
|
|
|
# Maundy Thursday.
|
|
self._add_holy_thursday(tr("Jueves Santo"))
|
|
|
|
# Good Friday.
|
|
self._add_good_friday(tr("Viernes Santo"))
|
|
|
|
# Labor Day.
|
|
self._add_labor_day(tr("Día del Trabajo"))
|
|
|
|
if self._year >= 2022:
|
|
# Mother's Day.
|
|
self._add_holiday_may_30(tr("Día de la Madre"))
|
|
|
|
if self._year >= 1979:
|
|
# Revolution Day.
|
|
self._add_holiday_jul_19(tr("Día de la Revolución"))
|
|
|
|
# Battle of San Jacinto Day.
|
|
self._add_holiday_sep_14(tr("Batalla de San Jacinto"))
|
|
|
|
# Independence Day.
|
|
self._add_holiday_sep_15(tr("Día de la Independencia"))
|
|
|
|
# Immaculate Conception.
|
|
self._add_immaculate_conception_day(tr("Concepción de María"))
|
|
|
|
# Christmas Day.
|
|
self._add_christmas_day(tr("Navidad"))
|
|
|
|
def _populate_subdiv_mn_public_holidays(self):
|
|
# Descent of Saint Dominic.
|
|
self._add_holiday_aug_1(tr("Bajada de Santo Domingo"))
|
|
|
|
# Ascent of Saint Dominic.
|
|
self._add_holiday_aug_10(tr("Subida de Santo Domingo"))
|
|
|
|
|
|
class NI(Nicaragua):
|
|
pass
|
|
|
|
|
|
class NIC(Nicaragua):
|
|
pass
|