diff --git a/README.rst b/README.rst index 605799747..48defd971 100644 --- a/README.rst +++ b/README.rst @@ -412,8 +412,8 @@ All other default values are highlighted with bold: - * - El Salvador - SV - - Departments: AH, CA, CH, CU, LI, MO, PA, SA, SM, SO, SS, SV, UN, US - - + - Departments: AH (Ahuachapán), CA (Cabañas), CH (Chalatenango), CU (Cuscatlán), LI (La Libertad), MO (Morazán), PA (La Paz), SA (Santa Ana), SM (San Miguel), SO (Sonsonate), SS (San Salvador), SV (San Vicente), UN (La Unión), US (Usulután) + - en_US, **es**, uk - * - Estonia - EE diff --git a/holidays/countries/el_salvador.py b/holidays/countries/el_salvador.py index 397f7c10e..92e5bfa96 100644 --- a/holidays/countries/el_salvador.py +++ b/holidays/countries/el_salvador.py @@ -10,6 +10,8 @@ # 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 @@ -17,12 +19,14 @@ class ElSalvador(HolidayBase, ChristianHolidays, InternationalHolidays): """ References: - - https://www.transparencia.gob.sv/institutions/gd-usulutan/documents/192280/download - - https://www.timeanddate.com/holidays/el-salvador - - https://www.officeholidays.com/countries/el-salvador + - `Labor Code 1972 `_ + - https://www.timeanddate.com/holidays/el-salvador + - https://www.officeholidays.com/countries/el-salvador """ country = "SV" + default_language = "es" + supported_languages = ("en_US", "es", "uk") subdivisions = ( "AH", # Ahuachapán "CA", # Cabañas @@ -39,6 +43,24 @@ class ElSalvador(HolidayBase, ChristianHolidays, InternationalHolidays): "UN", # La Unión "US", # Usulután ) + subdivisions_aliases = { + "Ahuachapán": "AH", + "Cabañas": "CA", + "Chalatenango": "CH", + "Cuscatlán": "CU", + "La Libertad": "LI", + "Morazán": "MO", + "La Paz": "PA", + "Santa Ana": "SA", + "San Miguel": "SM", + "Sonsonate": "SO", + "San Salvador": "SS", + "San Vicente": "SV", + "La Unión": "UN", + "Usulután": "US", + } + # Labor Code 1972. + start_year = 1973 def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self) @@ -47,48 +69,47 @@ def __init__(self, *args, **kwargs): def _populate_public_holidays(self): # New Year's Day. - self._add_new_years_day("New Year's Day") + self._add_new_years_day(tr("Año Nuevo")) # Maundy Thursday. - self._add_holy_thursday("Maundy Thursday") + self._add_holy_thursday(tr("Jueves Santo")) # Good Friday. - self._add_good_friday("Good Friday") + self._add_good_friday(tr("Viernes Santo")) # Holy Saturday. - self._add_holy_saturday("Holy Saturday") + self._add_holy_saturday(tr("Sábado Santo")) # Labor Day. - self._add_labor_day("Labor Day") + self._add_labor_day(tr("Día del Trabajo")) + # Legislative Decree #399 from Apr 14, 2016. if self._year >= 2016: - # Legislative Decree #399 from Apr 14, 2016 - # Mothers' Day. - self._add_holiday_may_10("Mothers' Day") + # Mother's Day. + self._add_holiday_may_10(tr("Día de la Madre")) + # Legislative Decree #208 from Jun 17, 2012. if self._year >= 2013: - # Legislative Decree #208 from Jun 17, 2012 - # Fathers' Day. - self._add_holiday_jun_17("Fathers' Day") + # Father's Day. + self._add_holiday_jun_17(tr("Día del Padre")) - # Feast of San Salvador. - self._add_holiday_aug_6("Feast of San Salvador") + # Celebrations of San Salvador. + self._add_holiday_aug_6(tr("Celebración del Divino Salvador del Mundo")) # Independence Day. - self._add_holiday_sep_15("Independence Day") + self._add_holiday_sep_15(tr("Día de la Independencia")) # All Souls' Day. - self._add_all_souls_day("All Souls' Day") + self._add_all_souls_day(tr("Día de los Difuntos")) # Christmas Day. - self._add_christmas_day("Christmas Day") + self._add_christmas_day(tr("Navidad")) def _populate_subdiv_ss_public_holidays(self): - # San Salvador Day 1. - self._add_holiday_aug_3("San Salvador Day 1") - - # San Salvador Day 2. - self._add_holiday_aug_5("San Salvador Day 2") + # Feast of San Salvador. + name = tr("Fiesta de San Salvador") + self._add_holiday_aug_3(name) + self._add_holiday_aug_5(name) class SV(ElSalvador): diff --git a/holidays/locale/en_US/LC_MESSAGES/SV.po b/holidays/locale/en_US/LC_MESSAGES/SV.po new file mode 100644 index 000000000..7ef852cd2 --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/SV.po @@ -0,0 +1,75 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# El Salvador holidays en_US localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.64\n" +"POT-Creation-Date: 2025-01-03 16:40+0200\n" +"PO-Revision-Date: 2025-01-03 16:45+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" +"X-Generator: Poedit 3.5\n" + +#. New Year's Day. +msgid "Año Nuevo" +msgstr "New Year's Day" + +#. Maundy Thursday. +msgid "Jueves Santo" +msgstr "Maundy Thursday" + +#. Good Friday. +msgid "Viernes Santo" +msgstr "Good Friday" + +#. Holy Saturday. +msgid "Sábado Santo" +msgstr "Holy Saturday" + +#. Labor Day. +msgid "Día del Trabajo" +msgstr "Labor Day" + +#. Mother's Day. +msgid "Día de la Madre" +msgstr "Mother's Day" + +#. Father's Day. +msgid "Día del Padre" +msgstr "Father's Day" + +#. Celebrations of San Salvador. +msgid "Celebración del Divino Salvador del Mundo" +msgstr "Celebrations of San Salvador" + +#. Independence Day. +msgid "Día de la Independencia" +msgstr "Independence Day" + +#. All Souls' Day. +msgid "Día de los Difuntos" +msgstr "All Souls' Day" + +#. Christmas Day. +msgid "Navidad" +msgstr "Christmas Day" + +#. Feast of San Salvador. +msgid "Fiesta de San Salvador" +msgstr "Feast of San Salvador" diff --git a/holidays/locale/es/LC_MESSAGES/SV.po b/holidays/locale/es/LC_MESSAGES/SV.po new file mode 100644 index 000000000..9d6acad96 --- /dev/null +++ b/holidays/locale/es/LC_MESSAGES/SV.po @@ -0,0 +1,75 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# El Salvador holidays. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.64\n" +"POT-Creation-Date: 2025-01-03 16:40+0200\n" +"PO-Revision-Date: 2025-01-03 16:42+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" +"X-Generator: Poedit 3.5\n" + +#. New Year's Day. +msgid "Año Nuevo" +msgstr "" + +#. Maundy Thursday. +msgid "Jueves Santo" +msgstr "" + +#. Good Friday. +msgid "Viernes Santo" +msgstr "" + +#. Holy Saturday. +msgid "Sábado Santo" +msgstr "" + +#. Labor Day. +msgid "Día del Trabajo" +msgstr "" + +#. Mother's Day. +msgid "Día de la Madre" +msgstr "" + +#. Father's Day. +msgid "Día del Padre" +msgstr "" + +#. Celebrations of San Salvador. +msgid "Celebración del Divino Salvador del Mundo" +msgstr "" + +#. Independence Day. +msgid "Día de la Independencia" +msgstr "" + +#. All Souls' Day. +msgid "Día de los Difuntos" +msgstr "" + +#. Christmas Day. +msgid "Navidad" +msgstr "" + +#. Feast of San Salvador. +msgid "Fiesta de San Salvador" +msgstr "" diff --git a/holidays/locale/uk/LC_MESSAGES/SV.po b/holidays/locale/uk/LC_MESSAGES/SV.po new file mode 100644 index 000000000..de4e4c5ca --- /dev/null +++ b/holidays/locale/uk/LC_MESSAGES/SV.po @@ -0,0 +1,75 @@ +# 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 AUTHORS file) +# dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/vacanza/holidays +# License: MIT (see LICENSE file) +# +# El Salvador holidays uk localization. +# +msgid "" +msgstr "" +"Project-Id-Version: Holidays 0.64\n" +"POT-Creation-Date: 2025-01-03 16:40+0200\n" +"PO-Revision-Date: 2025-01-03 16:50+0200\n" +"Last-Translator: ~Jhellico \n" +"Language-Team: Holidays Localization Team\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Lingva 5.0.4\n" +"X-Generator: Poedit 3.5\n" + +#. New Year's Day. +msgid "Año Nuevo" +msgstr "Новий рік" + +#. Maundy Thursday. +msgid "Jueves Santo" +msgstr "Великий четвер" + +#. Good Friday. +msgid "Viernes Santo" +msgstr "Страсна пʼятниця" + +#. Holy Saturday. +msgid "Sábado Santo" +msgstr "Велика субота" + +#. Labor Day. +msgid "Día del Trabajo" +msgstr "День праці" + +#. Mother's Day. +msgid "Día de la Madre" +msgstr "День матері" + +#. Father's Day. +msgid "Día del Padre" +msgstr "День батька" + +#. Celebrations of San Salvador. +msgid "Celebración del Divino Salvador del Mundo" +msgstr "Свято Божественного Спасителя світу" + +#. Independence Day. +msgid "Día de la Independencia" +msgstr "День незалежності" + +#. All Souls' Day. +msgid "Día de los Difuntos" +msgstr "День усіх померлих" + +#. Christmas Day. +msgid "Navidad" +msgstr "Різдво Христове" + +#. Feast of San Salvador. +msgid "Fiesta de San Salvador" +msgstr "Свято Спасителя" diff --git a/snapshots/countries/SV_AH.json b/snapshots/countries/SV_AH.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_AH.json +++ b/snapshots/countries/SV_AH.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_CA.json b/snapshots/countries/SV_CA.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_CA.json +++ b/snapshots/countries/SV_CA.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_CH.json b/snapshots/countries/SV_CH.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_CH.json +++ b/snapshots/countries/SV_CH.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_COMMON.json b/snapshots/countries/SV_COMMON.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_COMMON.json +++ b/snapshots/countries/SV_COMMON.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_CU.json b/snapshots/countries/SV_CU.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_CU.json +++ b/snapshots/countries/SV_CU.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_LI.json b/snapshots/countries/SV_LI.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_LI.json +++ b/snapshots/countries/SV_LI.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_MO.json b/snapshots/countries/SV_MO.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_MO.json +++ b/snapshots/countries/SV_MO.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_PA.json b/snapshots/countries/SV_PA.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_PA.json +++ b/snapshots/countries/SV_PA.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_SA.json b/snapshots/countries/SV_SA.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_SA.json +++ b/snapshots/countries/SV_SA.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_SM.json b/snapshots/countries/SV_SM.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_SM.json +++ b/snapshots/countries/SV_SM.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_SO.json b/snapshots/countries/SV_SO.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_SO.json +++ b/snapshots/countries/SV_SO.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_SS.json b/snapshots/countries/SV_SS.json index 03652e8d3..faca57f92 100644 --- a/snapshots/countries/SV_SS.json +++ b/snapshots/countries/SV_SS.json @@ -1,265 +1,12 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-03": "San Salvador Day 1", - "1950-08-05": "San Salvador Day 2", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-03": "San Salvador Day 1", - "1951-08-05": "San Salvador Day 2", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-03": "San Salvador Day 1", - "1952-08-05": "San Salvador Day 2", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-03": "San Salvador Day 1", - "1953-08-05": "San Salvador Day 2", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-03": "San Salvador Day 1", - "1954-08-05": "San Salvador Day 2", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-03": "San Salvador Day 1", - "1955-08-05": "San Salvador Day 2", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-03": "San Salvador Day 1", - "1956-08-05": "San Salvador Day 2", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-03": "San Salvador Day 1", - "1957-08-05": "San Salvador Day 2", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-03": "San Salvador Day 1", - "1958-08-05": "San Salvador Day 2", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-03": "San Salvador Day 1", - "1959-08-05": "San Salvador Day 2", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-03": "San Salvador Day 1", - "1960-08-05": "San Salvador Day 2", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-03": "San Salvador Day 1", - "1961-08-05": "San Salvador Day 2", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-03": "San Salvador Day 1", - "1962-08-05": "San Salvador Day 2", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-03": "San Salvador Day 1", - "1963-08-05": "San Salvador Day 2", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-03": "San Salvador Day 1", - "1964-08-05": "San Salvador Day 2", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-03": "San Salvador Day 1", - "1965-08-05": "San Salvador Day 2", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-03": "San Salvador Day 1", - "1966-08-05": "San Salvador Day 2", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-03": "San Salvador Day 1", - "1967-08-05": "San Salvador Day 2", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-03": "San Salvador Day 1", - "1968-08-05": "San Salvador Day 2", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-03": "San Salvador Day 1", - "1969-08-05": "San Salvador Day 2", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-03": "San Salvador Day 1", - "1970-08-05": "San Salvador Day 2", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-03": "San Salvador Day 1", - "1971-08-05": "San Salvador Day 2", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-03": "San Salvador Day 1", - "1972-08-05": "San Salvador Day 2", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-03": "San Salvador Day 1", - "1973-08-05": "San Salvador Day 2", - "1973-08-06": "Feast of San Salvador", + "1973-08-03": "Feast of San Salvador", + "1973-08-05": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -268,9 +15,9 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-03": "San Salvador Day 1", - "1974-08-05": "San Salvador Day 2", - "1974-08-06": "Feast of San Salvador", + "1974-08-03": "Feast of San Salvador", + "1974-08-05": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -279,9 +26,9 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-03": "San Salvador Day 1", - "1975-08-05": "San Salvador Day 2", - "1975-08-06": "Feast of San Salvador", + "1975-08-03": "Feast of San Salvador", + "1975-08-05": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -290,9 +37,9 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-03": "San Salvador Day 1", - "1976-08-05": "San Salvador Day 2", - "1976-08-06": "Feast of San Salvador", + "1976-08-03": "Feast of San Salvador", + "1976-08-05": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -301,9 +48,9 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-03": "San Salvador Day 1", - "1977-08-05": "San Salvador Day 2", - "1977-08-06": "Feast of San Salvador", + "1977-08-03": "Feast of San Salvador", + "1977-08-05": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -312,9 +59,9 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-03": "San Salvador Day 1", - "1978-08-05": "San Salvador Day 2", - "1978-08-06": "Feast of San Salvador", + "1978-08-03": "Feast of San Salvador", + "1978-08-05": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -323,9 +70,9 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-03": "San Salvador Day 1", - "1979-08-05": "San Salvador Day 2", - "1979-08-06": "Feast of San Salvador", + "1979-08-03": "Feast of San Salvador", + "1979-08-05": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -334,9 +81,9 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-03": "San Salvador Day 1", - "1980-08-05": "San Salvador Day 2", - "1980-08-06": "Feast of San Salvador", + "1980-08-03": "Feast of San Salvador", + "1980-08-05": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -345,9 +92,9 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-03": "San Salvador Day 1", - "1981-08-05": "San Salvador Day 2", - "1981-08-06": "Feast of San Salvador", + "1981-08-03": "Feast of San Salvador", + "1981-08-05": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -356,9 +103,9 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-03": "San Salvador Day 1", - "1982-08-05": "San Salvador Day 2", - "1982-08-06": "Feast of San Salvador", + "1982-08-03": "Feast of San Salvador", + "1982-08-05": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -367,9 +114,9 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-03": "San Salvador Day 1", - "1983-08-05": "San Salvador Day 2", - "1983-08-06": "Feast of San Salvador", + "1983-08-03": "Feast of San Salvador", + "1983-08-05": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -378,9 +125,9 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-03": "San Salvador Day 1", - "1984-08-05": "San Salvador Day 2", - "1984-08-06": "Feast of San Salvador", + "1984-08-03": "Feast of San Salvador", + "1984-08-05": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -389,9 +136,9 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-03": "San Salvador Day 1", - "1985-08-05": "San Salvador Day 2", - "1985-08-06": "Feast of San Salvador", + "1985-08-03": "Feast of San Salvador", + "1985-08-05": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -400,9 +147,9 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-03": "San Salvador Day 1", - "1986-08-05": "San Salvador Day 2", - "1986-08-06": "Feast of San Salvador", + "1986-08-03": "Feast of San Salvador", + "1986-08-05": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -411,9 +158,9 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-03": "San Salvador Day 1", - "1987-08-05": "San Salvador Day 2", - "1987-08-06": "Feast of San Salvador", + "1987-08-03": "Feast of San Salvador", + "1987-08-05": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -422,9 +169,9 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-03": "San Salvador Day 1", - "1988-08-05": "San Salvador Day 2", - "1988-08-06": "Feast of San Salvador", + "1988-08-03": "Feast of San Salvador", + "1988-08-05": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -433,9 +180,9 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-03": "San Salvador Day 1", - "1989-08-05": "San Salvador Day 2", - "1989-08-06": "Feast of San Salvador", + "1989-08-03": "Feast of San Salvador", + "1989-08-05": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -444,9 +191,9 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-03": "San Salvador Day 1", - "1990-08-05": "San Salvador Day 2", - "1990-08-06": "Feast of San Salvador", + "1990-08-03": "Feast of San Salvador", + "1990-08-05": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -455,9 +202,9 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-03": "San Salvador Day 1", - "1991-08-05": "San Salvador Day 2", - "1991-08-06": "Feast of San Salvador", + "1991-08-03": "Feast of San Salvador", + "1991-08-05": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -466,9 +213,9 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-03": "San Salvador Day 1", - "1992-08-05": "San Salvador Day 2", - "1992-08-06": "Feast of San Salvador", + "1992-08-03": "Feast of San Salvador", + "1992-08-05": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -477,9 +224,9 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-03": "San Salvador Day 1", - "1993-08-05": "San Salvador Day 2", - "1993-08-06": "Feast of San Salvador", + "1993-08-03": "Feast of San Salvador", + "1993-08-05": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -488,9 +235,9 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-03": "San Salvador Day 1", - "1994-08-05": "San Salvador Day 2", - "1994-08-06": "Feast of San Salvador", + "1994-08-03": "Feast of San Salvador", + "1994-08-05": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -499,9 +246,9 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-03": "San Salvador Day 1", - "1995-08-05": "San Salvador Day 2", - "1995-08-06": "Feast of San Salvador", + "1995-08-03": "Feast of San Salvador", + "1995-08-05": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -510,9 +257,9 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-03": "San Salvador Day 1", - "1996-08-05": "San Salvador Day 2", - "1996-08-06": "Feast of San Salvador", + "1996-08-03": "Feast of San Salvador", + "1996-08-05": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -521,9 +268,9 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-03": "San Salvador Day 1", - "1997-08-05": "San Salvador Day 2", - "1997-08-06": "Feast of San Salvador", + "1997-08-03": "Feast of San Salvador", + "1997-08-05": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -532,9 +279,9 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-03": "San Salvador Day 1", - "1998-08-05": "San Salvador Day 2", - "1998-08-06": "Feast of San Salvador", + "1998-08-03": "Feast of San Salvador", + "1998-08-05": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -543,9 +290,9 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-03": "San Salvador Day 1", - "1999-08-05": "San Salvador Day 2", - "1999-08-06": "Feast of San Salvador", + "1999-08-03": "Feast of San Salvador", + "1999-08-05": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -554,9 +301,9 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-03": "San Salvador Day 1", - "2000-08-05": "San Salvador Day 2", - "2000-08-06": "Feast of San Salvador", + "2000-08-03": "Feast of San Salvador", + "2000-08-05": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -565,9 +312,9 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-03": "San Salvador Day 1", - "2001-08-05": "San Salvador Day 2", - "2001-08-06": "Feast of San Salvador", + "2001-08-03": "Feast of San Salvador", + "2001-08-05": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -576,9 +323,9 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-03": "San Salvador Day 1", - "2002-08-05": "San Salvador Day 2", - "2002-08-06": "Feast of San Salvador", + "2002-08-03": "Feast of San Salvador", + "2002-08-05": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -587,9 +334,9 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-03": "San Salvador Day 1", - "2003-08-05": "San Salvador Day 2", - "2003-08-06": "Feast of San Salvador", + "2003-08-03": "Feast of San Salvador", + "2003-08-05": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -598,9 +345,9 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-03": "San Salvador Day 1", - "2004-08-05": "San Salvador Day 2", - "2004-08-06": "Feast of San Salvador", + "2004-08-03": "Feast of San Salvador", + "2004-08-05": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -609,9 +356,9 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-03": "San Salvador Day 1", - "2005-08-05": "San Salvador Day 2", - "2005-08-06": "Feast of San Salvador", + "2005-08-03": "Feast of San Salvador", + "2005-08-05": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -620,9 +367,9 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-03": "San Salvador Day 1", - "2006-08-05": "San Salvador Day 2", - "2006-08-06": "Feast of San Salvador", + "2006-08-03": "Feast of San Salvador", + "2006-08-05": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -631,9 +378,9 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-03": "San Salvador Day 1", - "2007-08-05": "San Salvador Day 2", - "2007-08-06": "Feast of San Salvador", + "2007-08-03": "Feast of San Salvador", + "2007-08-05": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -642,9 +389,9 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-03": "San Salvador Day 1", - "2008-08-05": "San Salvador Day 2", - "2008-08-06": "Feast of San Salvador", + "2008-08-03": "Feast of San Salvador", + "2008-08-05": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -653,9 +400,9 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-03": "San Salvador Day 1", - "2009-08-05": "San Salvador Day 2", - "2009-08-06": "Feast of San Salvador", + "2009-08-03": "Feast of San Salvador", + "2009-08-05": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -664,9 +411,9 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-03": "San Salvador Day 1", - "2010-08-05": "San Salvador Day 2", - "2010-08-06": "Feast of San Salvador", + "2010-08-03": "Feast of San Salvador", + "2010-08-05": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -675,9 +422,9 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-03": "San Salvador Day 1", - "2011-08-05": "San Salvador Day 2", - "2011-08-06": "Feast of San Salvador", + "2011-08-03": "Feast of San Salvador", + "2011-08-05": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -686,9 +433,9 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-03": "San Salvador Day 1", - "2012-08-05": "San Salvador Day 2", - "2012-08-06": "Feast of San Salvador", + "2012-08-03": "Feast of San Salvador", + "2012-08-05": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -697,10 +444,10 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-03": "San Salvador Day 1", - "2013-08-05": "San Salvador Day 2", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-03": "Feast of San Salvador", + "2013-08-05": "Feast of San Salvador", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -709,10 +456,10 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-03": "San Salvador Day 1", - "2014-08-05": "San Salvador Day 2", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-03": "Feast of San Salvador", + "2014-08-05": "Feast of San Salvador", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -721,10 +468,10 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-03": "San Salvador Day 1", - "2015-08-05": "San Salvador Day 2", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-03": "Feast of San Salvador", + "2015-08-05": "Feast of San Salvador", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -733,11 +480,11 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-03": "San Salvador Day 1", - "2016-08-05": "San Salvador Day 2", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-03": "Feast of San Salvador", + "2016-08-05": "Feast of San Salvador", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -746,11 +493,11 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-03": "San Salvador Day 1", - "2017-08-05": "San Salvador Day 2", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-03": "Feast of San Salvador", + "2017-08-05": "Feast of San Salvador", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -759,11 +506,11 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-03": "San Salvador Day 1", - "2018-08-05": "San Salvador Day 2", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-03": "Feast of San Salvador", + "2018-08-05": "Feast of San Salvador", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -772,11 +519,11 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-03": "San Salvador Day 1", - "2019-08-05": "San Salvador Day 2", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-03": "Feast of San Salvador", + "2019-08-05": "Feast of San Salvador", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -785,11 +532,11 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-03": "San Salvador Day 1", - "2020-08-05": "San Salvador Day 2", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-03": "Feast of San Salvador", + "2020-08-05": "Feast of San Salvador", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -798,11 +545,11 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-03": "San Salvador Day 1", - "2021-08-05": "San Salvador Day 2", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-03": "Feast of San Salvador", + "2021-08-05": "Feast of San Salvador", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -811,11 +558,11 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-03": "San Salvador Day 1", - "2022-08-05": "San Salvador Day 2", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-03": "Feast of San Salvador", + "2022-08-05": "Feast of San Salvador", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -824,11 +571,11 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-03": "San Salvador Day 1", - "2023-08-05": "San Salvador Day 2", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-03": "Feast of San Salvador", + "2023-08-05": "Feast of San Salvador", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -837,11 +584,11 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-03": "San Salvador Day 1", - "2024-08-05": "San Salvador Day 2", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-03": "Feast of San Salvador", + "2024-08-05": "Feast of San Salvador", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -850,11 +597,11 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-03": "San Salvador Day 1", - "2025-08-05": "San Salvador Day 2", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-03": "Feast of San Salvador", + "2025-08-05": "Feast of San Salvador", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -863,11 +610,11 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-03": "San Salvador Day 1", - "2026-08-05": "San Salvador Day 2", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-03": "Feast of San Salvador", + "2026-08-05": "Feast of San Salvador", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -876,11 +623,11 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-03": "San Salvador Day 1", - "2027-08-05": "San Salvador Day 2", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-03": "Feast of San Salvador", + "2027-08-05": "Feast of San Salvador", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -889,11 +636,11 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-03": "San Salvador Day 1", - "2028-08-05": "San Salvador Day 2", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-03": "Feast of San Salvador", + "2028-08-05": "Feast of San Salvador", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -902,11 +649,11 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-03": "San Salvador Day 1", - "2029-08-05": "San Salvador Day 2", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-03": "Feast of San Salvador", + "2029-08-05": "Feast of San Salvador", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -915,11 +662,11 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-03": "San Salvador Day 1", - "2030-08-05": "San Salvador Day 2", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-03": "Feast of San Salvador", + "2030-08-05": "Feast of San Salvador", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -928,11 +675,11 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-03": "San Salvador Day 1", - "2031-08-05": "San Salvador Day 2", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-03": "Feast of San Salvador", + "2031-08-05": "Feast of San Salvador", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -941,11 +688,11 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-03": "San Salvador Day 1", - "2032-08-05": "San Salvador Day 2", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-03": "Feast of San Salvador", + "2032-08-05": "Feast of San Salvador", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -954,11 +701,11 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-03": "San Salvador Day 1", - "2033-08-05": "San Salvador Day 2", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-03": "Feast of San Salvador", + "2033-08-05": "Feast of San Salvador", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -967,11 +714,11 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-03": "San Salvador Day 1", - "2034-08-05": "San Salvador Day 2", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-03": "Feast of San Salvador", + "2034-08-05": "Feast of San Salvador", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -980,11 +727,11 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-03": "San Salvador Day 1", - "2035-08-05": "San Salvador Day 2", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-03": "Feast of San Salvador", + "2035-08-05": "Feast of San Salvador", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -993,11 +740,11 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-03": "San Salvador Day 1", - "2036-08-05": "San Salvador Day 2", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-03": "Feast of San Salvador", + "2036-08-05": "Feast of San Salvador", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -1006,11 +753,11 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-03": "San Salvador Day 1", - "2037-08-05": "San Salvador Day 2", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-03": "Feast of San Salvador", + "2037-08-05": "Feast of San Salvador", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -1019,11 +766,11 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-03": "San Salvador Day 1", - "2038-08-05": "San Salvador Day 2", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-03": "Feast of San Salvador", + "2038-08-05": "Feast of San Salvador", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -1032,11 +779,11 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-03": "San Salvador Day 1", - "2039-08-05": "San Salvador Day 2", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-03": "Feast of San Salvador", + "2039-08-05": "Feast of San Salvador", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -1045,11 +792,11 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-03": "San Salvador Day 1", - "2040-08-05": "San Salvador Day 2", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-03": "Feast of San Salvador", + "2040-08-05": "Feast of San Salvador", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -1058,11 +805,11 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-03": "San Salvador Day 1", - "2041-08-05": "San Salvador Day 2", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-03": "Feast of San Salvador", + "2041-08-05": "Feast of San Salvador", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -1071,11 +818,11 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-03": "San Salvador Day 1", - "2042-08-05": "San Salvador Day 2", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-03": "Feast of San Salvador", + "2042-08-05": "Feast of San Salvador", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -1084,11 +831,11 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-03": "San Salvador Day 1", - "2043-08-05": "San Salvador Day 2", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-03": "Feast of San Salvador", + "2043-08-05": "Feast of San Salvador", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -1097,11 +844,11 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-03": "San Salvador Day 1", - "2044-08-05": "San Salvador Day 2", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-03": "Feast of San Salvador", + "2044-08-05": "Feast of San Salvador", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -1110,11 +857,11 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-03": "San Salvador Day 1", - "2045-08-05": "San Salvador Day 2", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-03": "Feast of San Salvador", + "2045-08-05": "Feast of San Salvador", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -1123,11 +870,11 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-03": "San Salvador Day 1", - "2046-08-05": "San Salvador Day 2", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-03": "Feast of San Salvador", + "2046-08-05": "Feast of San Salvador", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -1136,11 +883,11 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-03": "San Salvador Day 1", - "2047-08-05": "San Salvador Day 2", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-03": "Feast of San Salvador", + "2047-08-05": "Feast of San Salvador", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -1149,11 +896,11 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-03": "San Salvador Day 1", - "2048-08-05": "San Salvador Day 2", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-03": "Feast of San Salvador", + "2048-08-05": "Feast of San Salvador", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -1162,11 +909,11 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-03": "San Salvador Day 1", - "2049-08-05": "San Salvador Day 2", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-03": "Feast of San Salvador", + "2049-08-05": "Feast of San Salvador", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -1175,11 +922,11 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-03": "San Salvador Day 1", - "2050-08-05": "San Salvador Day 2", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-03": "Feast of San Salvador", + "2050-08-05": "Feast of San Salvador", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_SV.json b/snapshots/countries/SV_SV.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_SV.json +++ b/snapshots/countries/SV_SV.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_UN.json b/snapshots/countries/SV_UN.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_UN.json +++ b/snapshots/countries/SV_UN.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/snapshots/countries/SV_US.json b/snapshots/countries/SV_US.json index 0a50e1155..2ef03d56d 100644 --- a/snapshots/countries/SV_US.json +++ b/snapshots/countries/SV_US.json @@ -1,217 +1,10 @@ { - "1950-01-01": "New Year's Day", - "1950-04-06": "Maundy Thursday", - "1950-04-07": "Good Friday", - "1950-04-08": "Holy Saturday", - "1950-05-01": "Labor Day", - "1950-08-06": "Feast of San Salvador", - "1950-09-15": "Independence Day", - "1950-11-02": "All Souls' Day", - "1950-12-25": "Christmas Day", - "1951-01-01": "New Year's Day", - "1951-03-22": "Maundy Thursday", - "1951-03-23": "Good Friday", - "1951-03-24": "Holy Saturday", - "1951-05-01": "Labor Day", - "1951-08-06": "Feast of San Salvador", - "1951-09-15": "Independence Day", - "1951-11-02": "All Souls' Day", - "1951-12-25": "Christmas Day", - "1952-01-01": "New Year's Day", - "1952-04-10": "Maundy Thursday", - "1952-04-11": "Good Friday", - "1952-04-12": "Holy Saturday", - "1952-05-01": "Labor Day", - "1952-08-06": "Feast of San Salvador", - "1952-09-15": "Independence Day", - "1952-11-02": "All Souls' Day", - "1952-12-25": "Christmas Day", - "1953-01-01": "New Year's Day", - "1953-04-02": "Maundy Thursday", - "1953-04-03": "Good Friday", - "1953-04-04": "Holy Saturday", - "1953-05-01": "Labor Day", - "1953-08-06": "Feast of San Salvador", - "1953-09-15": "Independence Day", - "1953-11-02": "All Souls' Day", - "1953-12-25": "Christmas Day", - "1954-01-01": "New Year's Day", - "1954-04-15": "Maundy Thursday", - "1954-04-16": "Good Friday", - "1954-04-17": "Holy Saturday", - "1954-05-01": "Labor Day", - "1954-08-06": "Feast of San Salvador", - "1954-09-15": "Independence Day", - "1954-11-02": "All Souls' Day", - "1954-12-25": "Christmas Day", - "1955-01-01": "New Year's Day", - "1955-04-07": "Maundy Thursday", - "1955-04-08": "Good Friday", - "1955-04-09": "Holy Saturday", - "1955-05-01": "Labor Day", - "1955-08-06": "Feast of San Salvador", - "1955-09-15": "Independence Day", - "1955-11-02": "All Souls' Day", - "1955-12-25": "Christmas Day", - "1956-01-01": "New Year's Day", - "1956-03-29": "Maundy Thursday", - "1956-03-30": "Good Friday", - "1956-03-31": "Holy Saturday", - "1956-05-01": "Labor Day", - "1956-08-06": "Feast of San Salvador", - "1956-09-15": "Independence Day", - "1956-11-02": "All Souls' Day", - "1956-12-25": "Christmas Day", - "1957-01-01": "New Year's Day", - "1957-04-18": "Maundy Thursday", - "1957-04-19": "Good Friday", - "1957-04-20": "Holy Saturday", - "1957-05-01": "Labor Day", - "1957-08-06": "Feast of San Salvador", - "1957-09-15": "Independence Day", - "1957-11-02": "All Souls' Day", - "1957-12-25": "Christmas Day", - "1958-01-01": "New Year's Day", - "1958-04-03": "Maundy Thursday", - "1958-04-04": "Good Friday", - "1958-04-05": "Holy Saturday", - "1958-05-01": "Labor Day", - "1958-08-06": "Feast of San Salvador", - "1958-09-15": "Independence Day", - "1958-11-02": "All Souls' Day", - "1958-12-25": "Christmas Day", - "1959-01-01": "New Year's Day", - "1959-03-26": "Maundy Thursday", - "1959-03-27": "Good Friday", - "1959-03-28": "Holy Saturday", - "1959-05-01": "Labor Day", - "1959-08-06": "Feast of San Salvador", - "1959-09-15": "Independence Day", - "1959-11-02": "All Souls' Day", - "1959-12-25": "Christmas Day", - "1960-01-01": "New Year's Day", - "1960-04-14": "Maundy Thursday", - "1960-04-15": "Good Friday", - "1960-04-16": "Holy Saturday", - "1960-05-01": "Labor Day", - "1960-08-06": "Feast of San Salvador", - "1960-09-15": "Independence Day", - "1960-11-02": "All Souls' Day", - "1960-12-25": "Christmas Day", - "1961-01-01": "New Year's Day", - "1961-03-30": "Maundy Thursday", - "1961-03-31": "Good Friday", - "1961-04-01": "Holy Saturday", - "1961-05-01": "Labor Day", - "1961-08-06": "Feast of San Salvador", - "1961-09-15": "Independence Day", - "1961-11-02": "All Souls' Day", - "1961-12-25": "Christmas Day", - "1962-01-01": "New Year's Day", - "1962-04-19": "Maundy Thursday", - "1962-04-20": "Good Friday", - "1962-04-21": "Holy Saturday", - "1962-05-01": "Labor Day", - "1962-08-06": "Feast of San Salvador", - "1962-09-15": "Independence Day", - "1962-11-02": "All Souls' Day", - "1962-12-25": "Christmas Day", - "1963-01-01": "New Year's Day", - "1963-04-11": "Maundy Thursday", - "1963-04-12": "Good Friday", - "1963-04-13": "Holy Saturday", - "1963-05-01": "Labor Day", - "1963-08-06": "Feast of San Salvador", - "1963-09-15": "Independence Day", - "1963-11-02": "All Souls' Day", - "1963-12-25": "Christmas Day", - "1964-01-01": "New Year's Day", - "1964-03-26": "Maundy Thursday", - "1964-03-27": "Good Friday", - "1964-03-28": "Holy Saturday", - "1964-05-01": "Labor Day", - "1964-08-06": "Feast of San Salvador", - "1964-09-15": "Independence Day", - "1964-11-02": "All Souls' Day", - "1964-12-25": "Christmas Day", - "1965-01-01": "New Year's Day", - "1965-04-15": "Maundy Thursday", - "1965-04-16": "Good Friday", - "1965-04-17": "Holy Saturday", - "1965-05-01": "Labor Day", - "1965-08-06": "Feast of San Salvador", - "1965-09-15": "Independence Day", - "1965-11-02": "All Souls' Day", - "1965-12-25": "Christmas Day", - "1966-01-01": "New Year's Day", - "1966-04-07": "Maundy Thursday", - "1966-04-08": "Good Friday", - "1966-04-09": "Holy Saturday", - "1966-05-01": "Labor Day", - "1966-08-06": "Feast of San Salvador", - "1966-09-15": "Independence Day", - "1966-11-02": "All Souls' Day", - "1966-12-25": "Christmas Day", - "1967-01-01": "New Year's Day", - "1967-03-23": "Maundy Thursday", - "1967-03-24": "Good Friday", - "1967-03-25": "Holy Saturday", - "1967-05-01": "Labor Day", - "1967-08-06": "Feast of San Salvador", - "1967-09-15": "Independence Day", - "1967-11-02": "All Souls' Day", - "1967-12-25": "Christmas Day", - "1968-01-01": "New Year's Day", - "1968-04-11": "Maundy Thursday", - "1968-04-12": "Good Friday", - "1968-04-13": "Holy Saturday", - "1968-05-01": "Labor Day", - "1968-08-06": "Feast of San Salvador", - "1968-09-15": "Independence Day", - "1968-11-02": "All Souls' Day", - "1968-12-25": "Christmas Day", - "1969-01-01": "New Year's Day", - "1969-04-03": "Maundy Thursday", - "1969-04-04": "Good Friday", - "1969-04-05": "Holy Saturday", - "1969-05-01": "Labor Day", - "1969-08-06": "Feast of San Salvador", - "1969-09-15": "Independence Day", - "1969-11-02": "All Souls' Day", - "1969-12-25": "Christmas Day", - "1970-01-01": "New Year's Day", - "1970-03-26": "Maundy Thursday", - "1970-03-27": "Good Friday", - "1970-03-28": "Holy Saturday", - "1970-05-01": "Labor Day", - "1970-08-06": "Feast of San Salvador", - "1970-09-15": "Independence Day", - "1970-11-02": "All Souls' Day", - "1970-12-25": "Christmas Day", - "1971-01-01": "New Year's Day", - "1971-04-08": "Maundy Thursday", - "1971-04-09": "Good Friday", - "1971-04-10": "Holy Saturday", - "1971-05-01": "Labor Day", - "1971-08-06": "Feast of San Salvador", - "1971-09-15": "Independence Day", - "1971-11-02": "All Souls' Day", - "1971-12-25": "Christmas Day", - "1972-01-01": "New Year's Day", - "1972-03-30": "Maundy Thursday", - "1972-03-31": "Good Friday", - "1972-04-01": "Holy Saturday", - "1972-05-01": "Labor Day", - "1972-08-06": "Feast of San Salvador", - "1972-09-15": "Independence Day", - "1972-11-02": "All Souls' Day", - "1972-12-25": "Christmas Day", "1973-01-01": "New Year's Day", "1973-04-19": "Maundy Thursday", "1973-04-20": "Good Friday", "1973-04-21": "Holy Saturday", "1973-05-01": "Labor Day", - "1973-08-06": "Feast of San Salvador", + "1973-08-06": "Celebrations of San Salvador", "1973-09-15": "Independence Day", "1973-11-02": "All Souls' Day", "1973-12-25": "Christmas Day", @@ -220,7 +13,7 @@ "1974-04-12": "Good Friday", "1974-04-13": "Holy Saturday", "1974-05-01": "Labor Day", - "1974-08-06": "Feast of San Salvador", + "1974-08-06": "Celebrations of San Salvador", "1974-09-15": "Independence Day", "1974-11-02": "All Souls' Day", "1974-12-25": "Christmas Day", @@ -229,7 +22,7 @@ "1975-03-28": "Good Friday", "1975-03-29": "Holy Saturday", "1975-05-01": "Labor Day", - "1975-08-06": "Feast of San Salvador", + "1975-08-06": "Celebrations of San Salvador", "1975-09-15": "Independence Day", "1975-11-02": "All Souls' Day", "1975-12-25": "Christmas Day", @@ -238,7 +31,7 @@ "1976-04-16": "Good Friday", "1976-04-17": "Holy Saturday", "1976-05-01": "Labor Day", - "1976-08-06": "Feast of San Salvador", + "1976-08-06": "Celebrations of San Salvador", "1976-09-15": "Independence Day", "1976-11-02": "All Souls' Day", "1976-12-25": "Christmas Day", @@ -247,7 +40,7 @@ "1977-04-08": "Good Friday", "1977-04-09": "Holy Saturday", "1977-05-01": "Labor Day", - "1977-08-06": "Feast of San Salvador", + "1977-08-06": "Celebrations of San Salvador", "1977-09-15": "Independence Day", "1977-11-02": "All Souls' Day", "1977-12-25": "Christmas Day", @@ -256,7 +49,7 @@ "1978-03-24": "Good Friday", "1978-03-25": "Holy Saturday", "1978-05-01": "Labor Day", - "1978-08-06": "Feast of San Salvador", + "1978-08-06": "Celebrations of San Salvador", "1978-09-15": "Independence Day", "1978-11-02": "All Souls' Day", "1978-12-25": "Christmas Day", @@ -265,7 +58,7 @@ "1979-04-13": "Good Friday", "1979-04-14": "Holy Saturday", "1979-05-01": "Labor Day", - "1979-08-06": "Feast of San Salvador", + "1979-08-06": "Celebrations of San Salvador", "1979-09-15": "Independence Day", "1979-11-02": "All Souls' Day", "1979-12-25": "Christmas Day", @@ -274,7 +67,7 @@ "1980-04-04": "Good Friday", "1980-04-05": "Holy Saturday", "1980-05-01": "Labor Day", - "1980-08-06": "Feast of San Salvador", + "1980-08-06": "Celebrations of San Salvador", "1980-09-15": "Independence Day", "1980-11-02": "All Souls' Day", "1980-12-25": "Christmas Day", @@ -283,7 +76,7 @@ "1981-04-17": "Good Friday", "1981-04-18": "Holy Saturday", "1981-05-01": "Labor Day", - "1981-08-06": "Feast of San Salvador", + "1981-08-06": "Celebrations of San Salvador", "1981-09-15": "Independence Day", "1981-11-02": "All Souls' Day", "1981-12-25": "Christmas Day", @@ -292,7 +85,7 @@ "1982-04-09": "Good Friday", "1982-04-10": "Holy Saturday", "1982-05-01": "Labor Day", - "1982-08-06": "Feast of San Salvador", + "1982-08-06": "Celebrations of San Salvador", "1982-09-15": "Independence Day", "1982-11-02": "All Souls' Day", "1982-12-25": "Christmas Day", @@ -301,7 +94,7 @@ "1983-04-01": "Good Friday", "1983-04-02": "Holy Saturday", "1983-05-01": "Labor Day", - "1983-08-06": "Feast of San Salvador", + "1983-08-06": "Celebrations of San Salvador", "1983-09-15": "Independence Day", "1983-11-02": "All Souls' Day", "1983-12-25": "Christmas Day", @@ -310,7 +103,7 @@ "1984-04-20": "Good Friday", "1984-04-21": "Holy Saturday", "1984-05-01": "Labor Day", - "1984-08-06": "Feast of San Salvador", + "1984-08-06": "Celebrations of San Salvador", "1984-09-15": "Independence Day", "1984-11-02": "All Souls' Day", "1984-12-25": "Christmas Day", @@ -319,7 +112,7 @@ "1985-04-05": "Good Friday", "1985-04-06": "Holy Saturday", "1985-05-01": "Labor Day", - "1985-08-06": "Feast of San Salvador", + "1985-08-06": "Celebrations of San Salvador", "1985-09-15": "Independence Day", "1985-11-02": "All Souls' Day", "1985-12-25": "Christmas Day", @@ -328,7 +121,7 @@ "1986-03-28": "Good Friday", "1986-03-29": "Holy Saturday", "1986-05-01": "Labor Day", - "1986-08-06": "Feast of San Salvador", + "1986-08-06": "Celebrations of San Salvador", "1986-09-15": "Independence Day", "1986-11-02": "All Souls' Day", "1986-12-25": "Christmas Day", @@ -337,7 +130,7 @@ "1987-04-17": "Good Friday", "1987-04-18": "Holy Saturday", "1987-05-01": "Labor Day", - "1987-08-06": "Feast of San Salvador", + "1987-08-06": "Celebrations of San Salvador", "1987-09-15": "Independence Day", "1987-11-02": "All Souls' Day", "1987-12-25": "Christmas Day", @@ -346,7 +139,7 @@ "1988-04-01": "Good Friday", "1988-04-02": "Holy Saturday", "1988-05-01": "Labor Day", - "1988-08-06": "Feast of San Salvador", + "1988-08-06": "Celebrations of San Salvador", "1988-09-15": "Independence Day", "1988-11-02": "All Souls' Day", "1988-12-25": "Christmas Day", @@ -355,7 +148,7 @@ "1989-03-24": "Good Friday", "1989-03-25": "Holy Saturday", "1989-05-01": "Labor Day", - "1989-08-06": "Feast of San Salvador", + "1989-08-06": "Celebrations of San Salvador", "1989-09-15": "Independence Day", "1989-11-02": "All Souls' Day", "1989-12-25": "Christmas Day", @@ -364,7 +157,7 @@ "1990-04-13": "Good Friday", "1990-04-14": "Holy Saturday", "1990-05-01": "Labor Day", - "1990-08-06": "Feast of San Salvador", + "1990-08-06": "Celebrations of San Salvador", "1990-09-15": "Independence Day", "1990-11-02": "All Souls' Day", "1990-12-25": "Christmas Day", @@ -373,7 +166,7 @@ "1991-03-29": "Good Friday", "1991-03-30": "Holy Saturday", "1991-05-01": "Labor Day", - "1991-08-06": "Feast of San Salvador", + "1991-08-06": "Celebrations of San Salvador", "1991-09-15": "Independence Day", "1991-11-02": "All Souls' Day", "1991-12-25": "Christmas Day", @@ -382,7 +175,7 @@ "1992-04-17": "Good Friday", "1992-04-18": "Holy Saturday", "1992-05-01": "Labor Day", - "1992-08-06": "Feast of San Salvador", + "1992-08-06": "Celebrations of San Salvador", "1992-09-15": "Independence Day", "1992-11-02": "All Souls' Day", "1992-12-25": "Christmas Day", @@ -391,7 +184,7 @@ "1993-04-09": "Good Friday", "1993-04-10": "Holy Saturday", "1993-05-01": "Labor Day", - "1993-08-06": "Feast of San Salvador", + "1993-08-06": "Celebrations of San Salvador", "1993-09-15": "Independence Day", "1993-11-02": "All Souls' Day", "1993-12-25": "Christmas Day", @@ -400,7 +193,7 @@ "1994-04-01": "Good Friday", "1994-04-02": "Holy Saturday", "1994-05-01": "Labor Day", - "1994-08-06": "Feast of San Salvador", + "1994-08-06": "Celebrations of San Salvador", "1994-09-15": "Independence Day", "1994-11-02": "All Souls' Day", "1994-12-25": "Christmas Day", @@ -409,7 +202,7 @@ "1995-04-14": "Good Friday", "1995-04-15": "Holy Saturday", "1995-05-01": "Labor Day", - "1995-08-06": "Feast of San Salvador", + "1995-08-06": "Celebrations of San Salvador", "1995-09-15": "Independence Day", "1995-11-02": "All Souls' Day", "1995-12-25": "Christmas Day", @@ -418,7 +211,7 @@ "1996-04-05": "Good Friday", "1996-04-06": "Holy Saturday", "1996-05-01": "Labor Day", - "1996-08-06": "Feast of San Salvador", + "1996-08-06": "Celebrations of San Salvador", "1996-09-15": "Independence Day", "1996-11-02": "All Souls' Day", "1996-12-25": "Christmas Day", @@ -427,7 +220,7 @@ "1997-03-28": "Good Friday", "1997-03-29": "Holy Saturday", "1997-05-01": "Labor Day", - "1997-08-06": "Feast of San Salvador", + "1997-08-06": "Celebrations of San Salvador", "1997-09-15": "Independence Day", "1997-11-02": "All Souls' Day", "1997-12-25": "Christmas Day", @@ -436,7 +229,7 @@ "1998-04-10": "Good Friday", "1998-04-11": "Holy Saturday", "1998-05-01": "Labor Day", - "1998-08-06": "Feast of San Salvador", + "1998-08-06": "Celebrations of San Salvador", "1998-09-15": "Independence Day", "1998-11-02": "All Souls' Day", "1998-12-25": "Christmas Day", @@ -445,7 +238,7 @@ "1999-04-02": "Good Friday", "1999-04-03": "Holy Saturday", "1999-05-01": "Labor Day", - "1999-08-06": "Feast of San Salvador", + "1999-08-06": "Celebrations of San Salvador", "1999-09-15": "Independence Day", "1999-11-02": "All Souls' Day", "1999-12-25": "Christmas Day", @@ -454,7 +247,7 @@ "2000-04-21": "Good Friday", "2000-04-22": "Holy Saturday", "2000-05-01": "Labor Day", - "2000-08-06": "Feast of San Salvador", + "2000-08-06": "Celebrations of San Salvador", "2000-09-15": "Independence Day", "2000-11-02": "All Souls' Day", "2000-12-25": "Christmas Day", @@ -463,7 +256,7 @@ "2001-04-13": "Good Friday", "2001-04-14": "Holy Saturday", "2001-05-01": "Labor Day", - "2001-08-06": "Feast of San Salvador", + "2001-08-06": "Celebrations of San Salvador", "2001-09-15": "Independence Day", "2001-11-02": "All Souls' Day", "2001-12-25": "Christmas Day", @@ -472,7 +265,7 @@ "2002-03-29": "Good Friday", "2002-03-30": "Holy Saturday", "2002-05-01": "Labor Day", - "2002-08-06": "Feast of San Salvador", + "2002-08-06": "Celebrations of San Salvador", "2002-09-15": "Independence Day", "2002-11-02": "All Souls' Day", "2002-12-25": "Christmas Day", @@ -481,7 +274,7 @@ "2003-04-18": "Good Friday", "2003-04-19": "Holy Saturday", "2003-05-01": "Labor Day", - "2003-08-06": "Feast of San Salvador", + "2003-08-06": "Celebrations of San Salvador", "2003-09-15": "Independence Day", "2003-11-02": "All Souls' Day", "2003-12-25": "Christmas Day", @@ -490,7 +283,7 @@ "2004-04-09": "Good Friday", "2004-04-10": "Holy Saturday", "2004-05-01": "Labor Day", - "2004-08-06": "Feast of San Salvador", + "2004-08-06": "Celebrations of San Salvador", "2004-09-15": "Independence Day", "2004-11-02": "All Souls' Day", "2004-12-25": "Christmas Day", @@ -499,7 +292,7 @@ "2005-03-25": "Good Friday", "2005-03-26": "Holy Saturday", "2005-05-01": "Labor Day", - "2005-08-06": "Feast of San Salvador", + "2005-08-06": "Celebrations of San Salvador", "2005-09-15": "Independence Day", "2005-11-02": "All Souls' Day", "2005-12-25": "Christmas Day", @@ -508,7 +301,7 @@ "2006-04-14": "Good Friday", "2006-04-15": "Holy Saturday", "2006-05-01": "Labor Day", - "2006-08-06": "Feast of San Salvador", + "2006-08-06": "Celebrations of San Salvador", "2006-09-15": "Independence Day", "2006-11-02": "All Souls' Day", "2006-12-25": "Christmas Day", @@ -517,7 +310,7 @@ "2007-04-06": "Good Friday", "2007-04-07": "Holy Saturday", "2007-05-01": "Labor Day", - "2007-08-06": "Feast of San Salvador", + "2007-08-06": "Celebrations of San Salvador", "2007-09-15": "Independence Day", "2007-11-02": "All Souls' Day", "2007-12-25": "Christmas Day", @@ -526,7 +319,7 @@ "2008-03-21": "Good Friday", "2008-03-22": "Holy Saturday", "2008-05-01": "Labor Day", - "2008-08-06": "Feast of San Salvador", + "2008-08-06": "Celebrations of San Salvador", "2008-09-15": "Independence Day", "2008-11-02": "All Souls' Day", "2008-12-25": "Christmas Day", @@ -535,7 +328,7 @@ "2009-04-10": "Good Friday", "2009-04-11": "Holy Saturday", "2009-05-01": "Labor Day", - "2009-08-06": "Feast of San Salvador", + "2009-08-06": "Celebrations of San Salvador", "2009-09-15": "Independence Day", "2009-11-02": "All Souls' Day", "2009-12-25": "Christmas Day", @@ -544,7 +337,7 @@ "2010-04-02": "Good Friday", "2010-04-03": "Holy Saturday", "2010-05-01": "Labor Day", - "2010-08-06": "Feast of San Salvador", + "2010-08-06": "Celebrations of San Salvador", "2010-09-15": "Independence Day", "2010-11-02": "All Souls' Day", "2010-12-25": "Christmas Day", @@ -553,7 +346,7 @@ "2011-04-22": "Good Friday", "2011-04-23": "Holy Saturday", "2011-05-01": "Labor Day", - "2011-08-06": "Feast of San Salvador", + "2011-08-06": "Celebrations of San Salvador", "2011-09-15": "Independence Day", "2011-11-02": "All Souls' Day", "2011-12-25": "Christmas Day", @@ -562,7 +355,7 @@ "2012-04-06": "Good Friday", "2012-04-07": "Holy Saturday", "2012-05-01": "Labor Day", - "2012-08-06": "Feast of San Salvador", + "2012-08-06": "Celebrations of San Salvador", "2012-09-15": "Independence Day", "2012-11-02": "All Souls' Day", "2012-12-25": "Christmas Day", @@ -571,8 +364,8 @@ "2013-03-29": "Good Friday", "2013-03-30": "Holy Saturday", "2013-05-01": "Labor Day", - "2013-06-17": "Fathers' Day", - "2013-08-06": "Feast of San Salvador", + "2013-06-17": "Father's Day", + "2013-08-06": "Celebrations of San Salvador", "2013-09-15": "Independence Day", "2013-11-02": "All Souls' Day", "2013-12-25": "Christmas Day", @@ -581,8 +374,8 @@ "2014-04-18": "Good Friday", "2014-04-19": "Holy Saturday", "2014-05-01": "Labor Day", - "2014-06-17": "Fathers' Day", - "2014-08-06": "Feast of San Salvador", + "2014-06-17": "Father's Day", + "2014-08-06": "Celebrations of San Salvador", "2014-09-15": "Independence Day", "2014-11-02": "All Souls' Day", "2014-12-25": "Christmas Day", @@ -591,8 +384,8 @@ "2015-04-03": "Good Friday", "2015-04-04": "Holy Saturday", "2015-05-01": "Labor Day", - "2015-06-17": "Fathers' Day", - "2015-08-06": "Feast of San Salvador", + "2015-06-17": "Father's Day", + "2015-08-06": "Celebrations of San Salvador", "2015-09-15": "Independence Day", "2015-11-02": "All Souls' Day", "2015-12-25": "Christmas Day", @@ -601,9 +394,9 @@ "2016-03-25": "Good Friday", "2016-03-26": "Holy Saturday", "2016-05-01": "Labor Day", - "2016-05-10": "Mothers' Day", - "2016-06-17": "Fathers' Day", - "2016-08-06": "Feast of San Salvador", + "2016-05-10": "Mother's Day", + "2016-06-17": "Father's Day", + "2016-08-06": "Celebrations of San Salvador", "2016-09-15": "Independence Day", "2016-11-02": "All Souls' Day", "2016-12-25": "Christmas Day", @@ -612,9 +405,9 @@ "2017-04-14": "Good Friday", "2017-04-15": "Holy Saturday", "2017-05-01": "Labor Day", - "2017-05-10": "Mothers' Day", - "2017-06-17": "Fathers' Day", - "2017-08-06": "Feast of San Salvador", + "2017-05-10": "Mother's Day", + "2017-06-17": "Father's Day", + "2017-08-06": "Celebrations of San Salvador", "2017-09-15": "Independence Day", "2017-11-02": "All Souls' Day", "2017-12-25": "Christmas Day", @@ -623,9 +416,9 @@ "2018-03-30": "Good Friday", "2018-03-31": "Holy Saturday", "2018-05-01": "Labor Day", - "2018-05-10": "Mothers' Day", - "2018-06-17": "Fathers' Day", - "2018-08-06": "Feast of San Salvador", + "2018-05-10": "Mother's Day", + "2018-06-17": "Father's Day", + "2018-08-06": "Celebrations of San Salvador", "2018-09-15": "Independence Day", "2018-11-02": "All Souls' Day", "2018-12-25": "Christmas Day", @@ -634,9 +427,9 @@ "2019-04-19": "Good Friday", "2019-04-20": "Holy Saturday", "2019-05-01": "Labor Day", - "2019-05-10": "Mothers' Day", - "2019-06-17": "Fathers' Day", - "2019-08-06": "Feast of San Salvador", + "2019-05-10": "Mother's Day", + "2019-06-17": "Father's Day", + "2019-08-06": "Celebrations of San Salvador", "2019-09-15": "Independence Day", "2019-11-02": "All Souls' Day", "2019-12-25": "Christmas Day", @@ -645,9 +438,9 @@ "2020-04-10": "Good Friday", "2020-04-11": "Holy Saturday", "2020-05-01": "Labor Day", - "2020-05-10": "Mothers' Day", - "2020-06-17": "Fathers' Day", - "2020-08-06": "Feast of San Salvador", + "2020-05-10": "Mother's Day", + "2020-06-17": "Father's Day", + "2020-08-06": "Celebrations of San Salvador", "2020-09-15": "Independence Day", "2020-11-02": "All Souls' Day", "2020-12-25": "Christmas Day", @@ -656,9 +449,9 @@ "2021-04-02": "Good Friday", "2021-04-03": "Holy Saturday", "2021-05-01": "Labor Day", - "2021-05-10": "Mothers' Day", - "2021-06-17": "Fathers' Day", - "2021-08-06": "Feast of San Salvador", + "2021-05-10": "Mother's Day", + "2021-06-17": "Father's Day", + "2021-08-06": "Celebrations of San Salvador", "2021-09-15": "Independence Day", "2021-11-02": "All Souls' Day", "2021-12-25": "Christmas Day", @@ -667,9 +460,9 @@ "2022-04-15": "Good Friday", "2022-04-16": "Holy Saturday", "2022-05-01": "Labor Day", - "2022-05-10": "Mothers' Day", - "2022-06-17": "Fathers' Day", - "2022-08-06": "Feast of San Salvador", + "2022-05-10": "Mother's Day", + "2022-06-17": "Father's Day", + "2022-08-06": "Celebrations of San Salvador", "2022-09-15": "Independence Day", "2022-11-02": "All Souls' Day", "2022-12-25": "Christmas Day", @@ -678,9 +471,9 @@ "2023-04-07": "Good Friday", "2023-04-08": "Holy Saturday", "2023-05-01": "Labor Day", - "2023-05-10": "Mothers' Day", - "2023-06-17": "Fathers' Day", - "2023-08-06": "Feast of San Salvador", + "2023-05-10": "Mother's Day", + "2023-06-17": "Father's Day", + "2023-08-06": "Celebrations of San Salvador", "2023-09-15": "Independence Day", "2023-11-02": "All Souls' Day", "2023-12-25": "Christmas Day", @@ -689,9 +482,9 @@ "2024-03-29": "Good Friday", "2024-03-30": "Holy Saturday", "2024-05-01": "Labor Day", - "2024-05-10": "Mothers' Day", - "2024-06-17": "Fathers' Day", - "2024-08-06": "Feast of San Salvador", + "2024-05-10": "Mother's Day", + "2024-06-17": "Father's Day", + "2024-08-06": "Celebrations of San Salvador", "2024-09-15": "Independence Day", "2024-11-02": "All Souls' Day", "2024-12-25": "Christmas Day", @@ -700,9 +493,9 @@ "2025-04-18": "Good Friday", "2025-04-19": "Holy Saturday", "2025-05-01": "Labor Day", - "2025-05-10": "Mothers' Day", - "2025-06-17": "Fathers' Day", - "2025-08-06": "Feast of San Salvador", + "2025-05-10": "Mother's Day", + "2025-06-17": "Father's Day", + "2025-08-06": "Celebrations of San Salvador", "2025-09-15": "Independence Day", "2025-11-02": "All Souls' Day", "2025-12-25": "Christmas Day", @@ -711,9 +504,9 @@ "2026-04-03": "Good Friday", "2026-04-04": "Holy Saturday", "2026-05-01": "Labor Day", - "2026-05-10": "Mothers' Day", - "2026-06-17": "Fathers' Day", - "2026-08-06": "Feast of San Salvador", + "2026-05-10": "Mother's Day", + "2026-06-17": "Father's Day", + "2026-08-06": "Celebrations of San Salvador", "2026-09-15": "Independence Day", "2026-11-02": "All Souls' Day", "2026-12-25": "Christmas Day", @@ -722,9 +515,9 @@ "2027-03-26": "Good Friday", "2027-03-27": "Holy Saturday", "2027-05-01": "Labor Day", - "2027-05-10": "Mothers' Day", - "2027-06-17": "Fathers' Day", - "2027-08-06": "Feast of San Salvador", + "2027-05-10": "Mother's Day", + "2027-06-17": "Father's Day", + "2027-08-06": "Celebrations of San Salvador", "2027-09-15": "Independence Day", "2027-11-02": "All Souls' Day", "2027-12-25": "Christmas Day", @@ -733,9 +526,9 @@ "2028-04-14": "Good Friday", "2028-04-15": "Holy Saturday", "2028-05-01": "Labor Day", - "2028-05-10": "Mothers' Day", - "2028-06-17": "Fathers' Day", - "2028-08-06": "Feast of San Salvador", + "2028-05-10": "Mother's Day", + "2028-06-17": "Father's Day", + "2028-08-06": "Celebrations of San Salvador", "2028-09-15": "Independence Day", "2028-11-02": "All Souls' Day", "2028-12-25": "Christmas Day", @@ -744,9 +537,9 @@ "2029-03-30": "Good Friday", "2029-03-31": "Holy Saturday", "2029-05-01": "Labor Day", - "2029-05-10": "Mothers' Day", - "2029-06-17": "Fathers' Day", - "2029-08-06": "Feast of San Salvador", + "2029-05-10": "Mother's Day", + "2029-06-17": "Father's Day", + "2029-08-06": "Celebrations of San Salvador", "2029-09-15": "Independence Day", "2029-11-02": "All Souls' Day", "2029-12-25": "Christmas Day", @@ -755,9 +548,9 @@ "2030-04-19": "Good Friday", "2030-04-20": "Holy Saturday", "2030-05-01": "Labor Day", - "2030-05-10": "Mothers' Day", - "2030-06-17": "Fathers' Day", - "2030-08-06": "Feast of San Salvador", + "2030-05-10": "Mother's Day", + "2030-06-17": "Father's Day", + "2030-08-06": "Celebrations of San Salvador", "2030-09-15": "Independence Day", "2030-11-02": "All Souls' Day", "2030-12-25": "Christmas Day", @@ -766,9 +559,9 @@ "2031-04-11": "Good Friday", "2031-04-12": "Holy Saturday", "2031-05-01": "Labor Day", - "2031-05-10": "Mothers' Day", - "2031-06-17": "Fathers' Day", - "2031-08-06": "Feast of San Salvador", + "2031-05-10": "Mother's Day", + "2031-06-17": "Father's Day", + "2031-08-06": "Celebrations of San Salvador", "2031-09-15": "Independence Day", "2031-11-02": "All Souls' Day", "2031-12-25": "Christmas Day", @@ -777,9 +570,9 @@ "2032-03-26": "Good Friday", "2032-03-27": "Holy Saturday", "2032-05-01": "Labor Day", - "2032-05-10": "Mothers' Day", - "2032-06-17": "Fathers' Day", - "2032-08-06": "Feast of San Salvador", + "2032-05-10": "Mother's Day", + "2032-06-17": "Father's Day", + "2032-08-06": "Celebrations of San Salvador", "2032-09-15": "Independence Day", "2032-11-02": "All Souls' Day", "2032-12-25": "Christmas Day", @@ -788,9 +581,9 @@ "2033-04-15": "Good Friday", "2033-04-16": "Holy Saturday", "2033-05-01": "Labor Day", - "2033-05-10": "Mothers' Day", - "2033-06-17": "Fathers' Day", - "2033-08-06": "Feast of San Salvador", + "2033-05-10": "Mother's Day", + "2033-06-17": "Father's Day", + "2033-08-06": "Celebrations of San Salvador", "2033-09-15": "Independence Day", "2033-11-02": "All Souls' Day", "2033-12-25": "Christmas Day", @@ -799,9 +592,9 @@ "2034-04-07": "Good Friday", "2034-04-08": "Holy Saturday", "2034-05-01": "Labor Day", - "2034-05-10": "Mothers' Day", - "2034-06-17": "Fathers' Day", - "2034-08-06": "Feast of San Salvador", + "2034-05-10": "Mother's Day", + "2034-06-17": "Father's Day", + "2034-08-06": "Celebrations of San Salvador", "2034-09-15": "Independence Day", "2034-11-02": "All Souls' Day", "2034-12-25": "Christmas Day", @@ -810,9 +603,9 @@ "2035-03-23": "Good Friday", "2035-03-24": "Holy Saturday", "2035-05-01": "Labor Day", - "2035-05-10": "Mothers' Day", - "2035-06-17": "Fathers' Day", - "2035-08-06": "Feast of San Salvador", + "2035-05-10": "Mother's Day", + "2035-06-17": "Father's Day", + "2035-08-06": "Celebrations of San Salvador", "2035-09-15": "Independence Day", "2035-11-02": "All Souls' Day", "2035-12-25": "Christmas Day", @@ -821,9 +614,9 @@ "2036-04-11": "Good Friday", "2036-04-12": "Holy Saturday", "2036-05-01": "Labor Day", - "2036-05-10": "Mothers' Day", - "2036-06-17": "Fathers' Day", - "2036-08-06": "Feast of San Salvador", + "2036-05-10": "Mother's Day", + "2036-06-17": "Father's Day", + "2036-08-06": "Celebrations of San Salvador", "2036-09-15": "Independence Day", "2036-11-02": "All Souls' Day", "2036-12-25": "Christmas Day", @@ -832,9 +625,9 @@ "2037-04-03": "Good Friday", "2037-04-04": "Holy Saturday", "2037-05-01": "Labor Day", - "2037-05-10": "Mothers' Day", - "2037-06-17": "Fathers' Day", - "2037-08-06": "Feast of San Salvador", + "2037-05-10": "Mother's Day", + "2037-06-17": "Father's Day", + "2037-08-06": "Celebrations of San Salvador", "2037-09-15": "Independence Day", "2037-11-02": "All Souls' Day", "2037-12-25": "Christmas Day", @@ -843,9 +636,9 @@ "2038-04-23": "Good Friday", "2038-04-24": "Holy Saturday", "2038-05-01": "Labor Day", - "2038-05-10": "Mothers' Day", - "2038-06-17": "Fathers' Day", - "2038-08-06": "Feast of San Salvador", + "2038-05-10": "Mother's Day", + "2038-06-17": "Father's Day", + "2038-08-06": "Celebrations of San Salvador", "2038-09-15": "Independence Day", "2038-11-02": "All Souls' Day", "2038-12-25": "Christmas Day", @@ -854,9 +647,9 @@ "2039-04-08": "Good Friday", "2039-04-09": "Holy Saturday", "2039-05-01": "Labor Day", - "2039-05-10": "Mothers' Day", - "2039-06-17": "Fathers' Day", - "2039-08-06": "Feast of San Salvador", + "2039-05-10": "Mother's Day", + "2039-06-17": "Father's Day", + "2039-08-06": "Celebrations of San Salvador", "2039-09-15": "Independence Day", "2039-11-02": "All Souls' Day", "2039-12-25": "Christmas Day", @@ -865,9 +658,9 @@ "2040-03-30": "Good Friday", "2040-03-31": "Holy Saturday", "2040-05-01": "Labor Day", - "2040-05-10": "Mothers' Day", - "2040-06-17": "Fathers' Day", - "2040-08-06": "Feast of San Salvador", + "2040-05-10": "Mother's Day", + "2040-06-17": "Father's Day", + "2040-08-06": "Celebrations of San Salvador", "2040-09-15": "Independence Day", "2040-11-02": "All Souls' Day", "2040-12-25": "Christmas Day", @@ -876,9 +669,9 @@ "2041-04-19": "Good Friday", "2041-04-20": "Holy Saturday", "2041-05-01": "Labor Day", - "2041-05-10": "Mothers' Day", - "2041-06-17": "Fathers' Day", - "2041-08-06": "Feast of San Salvador", + "2041-05-10": "Mother's Day", + "2041-06-17": "Father's Day", + "2041-08-06": "Celebrations of San Salvador", "2041-09-15": "Independence Day", "2041-11-02": "All Souls' Day", "2041-12-25": "Christmas Day", @@ -887,9 +680,9 @@ "2042-04-04": "Good Friday", "2042-04-05": "Holy Saturday", "2042-05-01": "Labor Day", - "2042-05-10": "Mothers' Day", - "2042-06-17": "Fathers' Day", - "2042-08-06": "Feast of San Salvador", + "2042-05-10": "Mother's Day", + "2042-06-17": "Father's Day", + "2042-08-06": "Celebrations of San Salvador", "2042-09-15": "Independence Day", "2042-11-02": "All Souls' Day", "2042-12-25": "Christmas Day", @@ -898,9 +691,9 @@ "2043-03-27": "Good Friday", "2043-03-28": "Holy Saturday", "2043-05-01": "Labor Day", - "2043-05-10": "Mothers' Day", - "2043-06-17": "Fathers' Day", - "2043-08-06": "Feast of San Salvador", + "2043-05-10": "Mother's Day", + "2043-06-17": "Father's Day", + "2043-08-06": "Celebrations of San Salvador", "2043-09-15": "Independence Day", "2043-11-02": "All Souls' Day", "2043-12-25": "Christmas Day", @@ -909,9 +702,9 @@ "2044-04-15": "Good Friday", "2044-04-16": "Holy Saturday", "2044-05-01": "Labor Day", - "2044-05-10": "Mothers' Day", - "2044-06-17": "Fathers' Day", - "2044-08-06": "Feast of San Salvador", + "2044-05-10": "Mother's Day", + "2044-06-17": "Father's Day", + "2044-08-06": "Celebrations of San Salvador", "2044-09-15": "Independence Day", "2044-11-02": "All Souls' Day", "2044-12-25": "Christmas Day", @@ -920,9 +713,9 @@ "2045-04-07": "Good Friday", "2045-04-08": "Holy Saturday", "2045-05-01": "Labor Day", - "2045-05-10": "Mothers' Day", - "2045-06-17": "Fathers' Day", - "2045-08-06": "Feast of San Salvador", + "2045-05-10": "Mother's Day", + "2045-06-17": "Father's Day", + "2045-08-06": "Celebrations of San Salvador", "2045-09-15": "Independence Day", "2045-11-02": "All Souls' Day", "2045-12-25": "Christmas Day", @@ -931,9 +724,9 @@ "2046-03-23": "Good Friday", "2046-03-24": "Holy Saturday", "2046-05-01": "Labor Day", - "2046-05-10": "Mothers' Day", - "2046-06-17": "Fathers' Day", - "2046-08-06": "Feast of San Salvador", + "2046-05-10": "Mother's Day", + "2046-06-17": "Father's Day", + "2046-08-06": "Celebrations of San Salvador", "2046-09-15": "Independence Day", "2046-11-02": "All Souls' Day", "2046-12-25": "Christmas Day", @@ -942,9 +735,9 @@ "2047-04-12": "Good Friday", "2047-04-13": "Holy Saturday", "2047-05-01": "Labor Day", - "2047-05-10": "Mothers' Day", - "2047-06-17": "Fathers' Day", - "2047-08-06": "Feast of San Salvador", + "2047-05-10": "Mother's Day", + "2047-06-17": "Father's Day", + "2047-08-06": "Celebrations of San Salvador", "2047-09-15": "Independence Day", "2047-11-02": "All Souls' Day", "2047-12-25": "Christmas Day", @@ -953,9 +746,9 @@ "2048-04-03": "Good Friday", "2048-04-04": "Holy Saturday", "2048-05-01": "Labor Day", - "2048-05-10": "Mothers' Day", - "2048-06-17": "Fathers' Day", - "2048-08-06": "Feast of San Salvador", + "2048-05-10": "Mother's Day", + "2048-06-17": "Father's Day", + "2048-08-06": "Celebrations of San Salvador", "2048-09-15": "Independence Day", "2048-11-02": "All Souls' Day", "2048-12-25": "Christmas Day", @@ -964,9 +757,9 @@ "2049-04-16": "Good Friday", "2049-04-17": "Holy Saturday", "2049-05-01": "Labor Day", - "2049-05-10": "Mothers' Day", - "2049-06-17": "Fathers' Day", - "2049-08-06": "Feast of San Salvador", + "2049-05-10": "Mother's Day", + "2049-06-17": "Father's Day", + "2049-08-06": "Celebrations of San Salvador", "2049-09-15": "Independence Day", "2049-11-02": "All Souls' Day", "2049-12-25": "Christmas Day", @@ -975,9 +768,9 @@ "2050-04-08": "Good Friday", "2050-04-09": "Holy Saturday", "2050-05-01": "Labor Day", - "2050-05-10": "Mothers' Day", - "2050-06-17": "Fathers' Day", - "2050-08-06": "Feast of San Salvador", + "2050-05-10": "Mother's Day", + "2050-06-17": "Father's Day", + "2050-08-06": "Celebrations of San Salvador", "2050-09-15": "Independence Day", "2050-11-02": "All Souls' Day", "2050-12-25": "Christmas Day" diff --git a/tests/countries/test_el_salvador.py b/tests/countries/test_el_salvador.py index c8fbca86f..0520fc48c 100644 --- a/tests/countries/test_el_salvador.py +++ b/tests/countries/test_el_salvador.py @@ -19,60 +19,190 @@ class TestElSalvador(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(ElSalvador, years=range(2000, 2050)) + super().setUpClass(ElSalvador, years=range(1973, 2050)) def test_country_aliases(self): self.assertAliases(ElSalvador, SV, SLV) + def test_no_holidays(self): + self.assertNoHolidays(ElSalvador(years=1972)) + + def test_new_years_day(self): + self.assertHolidayName("Año Nuevo", (f"{year}-01-01" for year in range(1973, 2050))) + + def test_maundy_thursday(self): + name = "Jueves Santo" + self.assertHolidayName( + name, + "2016-03-24", + "2017-04-13", + "2018-03-29", + "2019-04-18", + "2020-04-09", + "2021-04-01", + "2022-04-14", + "2023-04-06", + "2024-03-28", + ) + self.assertHolidayName(name, range(1973, 2050)) + + def test_good_friday(self): + name = "Viernes Santo" + self.assertHolidayName( + name, + "2016-03-25", + "2017-04-14", + "2018-03-30", + "2019-04-19", + "2020-04-10", + "2021-04-02", + "2022-04-15", + "2023-04-07", + "2024-03-29", + ) + self.assertHolidayName(name, range(1973, 2050)) + + def test_holy_saturday(self): + name = "Sábado Santo" + self.assertHolidayName( + name, + "2016-03-26", + "2017-04-15", + "2018-03-31", + "2019-04-20", + "2020-04-11", + "2021-04-03", + "2022-04-16", + "2023-04-08", + "2024-03-30", + ) + self.assertHolidayName(name, range(1973, 2050)) + + def test_labor_day(self): + self.assertHolidayName("Día del Trabajo", (f"{year}-05-01" for year in range(1973, 2050))) + def test_mothers_day(self): - name = "Mothers' Day" + name = "Día de la Madre" self.assertHolidayName(name, (f"{year}-05-10" for year in range(2016, 2050))) - self.assertNoHoliday(f"{year}-05-10" for year in range(2000, 2016)) - self.assertNoHolidayName(name, range(2000, 2016)) + self.assertNoHoliday(f"{year}-05-10" for year in range(1973, 2016)) + self.assertNoHolidayName(name, range(1973, 2016)) def test_fathers_day(self): - name = "Fathers' Day" + name = "Día del Padre" self.assertHolidayName(name, (f"{year}-06-17" for year in range(2013, 2050))) - self.assertNoHoliday(f"{year}-06-17" for year in range(2000, 2013)) - self.assertNoHolidayName(name, range(2000, 2013)) + self.assertNoHoliday(f"{year}-06-17" for year in range(1973, 2013)) + self.assertNoHolidayName(name, range(1973, 2013)) + + def test_feast_of_san_salvador(self): + self.assertHolidayName( + "Celebración del Divino Salvador del Mundo", + (f"{year}-08-06" for year in range(1973, 2050)), + ) + + def test_independence_day(self): + self.assertHolidayName( + "Día de la Independencia", (f"{year}-09-15" for year in range(1973, 2050)) + ) + + def test_all_souls_day(self): + self.assertHolidayName( + "Día de los Difuntos", (f"{year}-11-02" for year in range(1973, 2050)) + ) + + def test_christmas_day(self): + self.assertHolidayName("Navidad", (f"{year}-12-25" for year in range(1973, 2050))) def test_ss_holidays(self): - name1 = "San Salvador Day 1" - name2 = "San Salvador Day 2" - self.assertNoHolidayName(name1, range(2000, 2050)) - self.assertNoHolidayName(name2, range(2000, 2050)) - ss_holidays = ElSalvador(subdiv="SS", years=range(2000, 2050)) - self.assertHolidayName(name1, ss_holidays, (f"{year}-08-03" for year in range(2016, 2050))) - self.assertHolidayName(name2, ss_holidays, (f"{year}-08-05" for year in range(2016, 2050))) + name = "Fiesta de San Salvador" + self.assertNoHolidayName(name) + self.assertHolidayName( + name, + ElSalvador(subdiv="SS", years=range(1973, 2050)), + (f"{year}-08-03" for year in range(1973, 2050)), + (f"{year}-08-05" for year in range(1973, 2050)), + ) def test_2021(self): self.assertHolidays( ElSalvador(years=2021), - ("2021-01-01", "New Year's Day"), - ("2021-04-01", "Maundy Thursday"), - ("2021-04-02", "Good Friday"), - ("2021-04-03", "Holy Saturday"), - ("2021-05-01", "Labor Day"), - ("2021-05-10", "Mothers' Day"), - ("2021-06-17", "Fathers' Day"), - ("2021-08-06", "Feast of San Salvador"), - ("2021-09-15", "Independence Day"), - ("2021-11-02", "All Souls' Day"), - ("2021-12-25", "Christmas Day"), + ("2021-01-01", "Año Nuevo"), + ("2021-04-01", "Jueves Santo"), + ("2021-04-02", "Viernes Santo"), + ("2021-04-03", "Sábado Santo"), + ("2021-05-01", "Día del Trabajo"), + ("2021-05-10", "Día de la Madre"), + ("2021-06-17", "Día del Padre"), + ("2021-08-06", "Celebración del Divino Salvador del Mundo"), + ("2021-09-15", "Día de la Independencia"), + ("2021-11-02", "Día de los Difuntos"), + ("2021-12-25", "Navidad"), ) def test_2022(self): self.assertHolidays( ElSalvador(years=2022), - ("2022-01-01", "New Year's Day"), - ("2022-04-14", "Maundy Thursday"), - ("2022-04-15", "Good Friday"), - ("2022-04-16", "Holy Saturday"), - ("2022-05-01", "Labor Day"), - ("2022-05-10", "Mothers' Day"), - ("2022-06-17", "Fathers' Day"), - ("2022-08-06", "Feast of San Salvador"), - ("2022-09-15", "Independence Day"), - ("2022-11-02", "All Souls' Day"), - ("2022-12-25", "Christmas Day"), + ("2022-01-01", "Año Nuevo"), + ("2022-04-14", "Jueves Santo"), + ("2022-04-15", "Viernes Santo"), + ("2022-04-16", "Sábado Santo"), + ("2022-05-01", "Día del Trabajo"), + ("2022-05-10", "Día de la Madre"), + ("2022-06-17", "Día del Padre"), + ("2022-08-06", "Celebración del Divino Salvador del Mundo"), + ("2022-09-15", "Día de la Independencia"), + ("2022-11-02", "Día de los Difuntos"), + ("2022-12-25", "Navidad"), + ) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2024-01-01", "Año Nuevo"), + ("2024-03-28", "Jueves Santo"), + ("2024-03-29", "Viernes Santo"), + ("2024-03-30", "Sábado Santo"), + ("2024-05-01", "Día del Trabajo"), + ("2024-05-10", "Día de la Madre"), + ("2024-06-17", "Día del Padre"), + ("2024-08-03", "Fiesta de San Salvador"), + ("2024-08-05", "Fiesta de San Salvador"), + ("2024-08-06", "Celebración del Divino Salvador del Mundo"), + ("2024-09-15", "Día de la Independencia"), + ("2024-11-02", "Día de los Difuntos"), + ("2024-12-25", "Navidad"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2024-01-01", "New Year's Day"), + ("2024-03-28", "Maundy Thursday"), + ("2024-03-29", "Good Friday"), + ("2024-03-30", "Holy Saturday"), + ("2024-05-01", "Labor Day"), + ("2024-05-10", "Mother's Day"), + ("2024-06-17", "Father's Day"), + ("2024-08-03", "Feast of San Salvador"), + ("2024-08-05", "Feast of San Salvador"), + ("2024-08-06", "Celebrations of San Salvador"), + ("2024-09-15", "Independence Day"), + ("2024-11-02", "All Souls' Day"), + ("2024-12-25", "Christmas Day"), + ) + + def test_l10n_uk(self): + self.assertLocalizedHolidays( + "uk", + ("2024-01-01", "Новий рік"), + ("2024-03-28", "Великий четвер"), + ("2024-03-29", "Страсна пʼятниця"), + ("2024-03-30", "Велика субота"), + ("2024-05-01", "День праці"), + ("2024-05-10", "День матері"), + ("2024-06-17", "День батька"), + ("2024-08-03", "Свято Спасителя"), + ("2024-08-05", "Свято Спасителя"), + ("2024-08-06", "Свято Божественного Спасителя світу"), + ("2024-09-15", "День незалежності"), + ("2024-11-02", "День усіх померлих"), + ("2024-12-25", "Різдво Христове"), )