diff --git a/holidays/countries/ethiopia.py b/holidays/countries/ethiopia.py index 70af198e9..7702146a2 100644 --- a/holidays/countries/ethiopia.py +++ b/holidays/countries/ethiopia.py @@ -12,13 +12,19 @@ from calendar import isleap from gettext import gettext as tr -from holidays.calendars.gregorian import SEP +from holidays.calendars import _CustomIslamicHolidays +from holidays.calendars.gregorian import JAN, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV from holidays.calendars.julian import JULIAN_CALENDAR from holidays.groups import ChristianHolidays, InternationalHolidays, IslamicHolidays from holidays.holiday_base import HolidayBase class Ethiopia(HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays): + """ + References: + - https://en.wikipedia.org/wiki/Public_holidays_in_Ethiopia + """ + country = "ET" default_language = "am" # %s (estimated). @@ -27,80 +33,71 @@ class Ethiopia(HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHol def _is_leap_year(self): """ - Ethiopian leap years are coincident with leap years in the Gregorian - calendar until the end of February 2100. It starts earlier from new - year of western calendar. - Ethiopian leap year starts on Sep 11, so it has an effect on - holidays between Sep 11 and Jan 1. Therefore, here on the following - function we intentionally add 1 to the leap year to offset the - difference. + Ethiopian leap years are coincident with leap years in the Gregorian calendar until + the end of February 2100. It starts earlier from new year of western calendar. + Ethiopian leap year starts on Sep 11, so it has an effect on holidays between + Sep 11 and Jan 1. Therefore, here on the following function we intentionally add 1 + to the leap year to offset the difference. """ return isleap(self._year + 1) def __init__(self, *args, **kwargs): ChristianHolidays.__init__(self, JULIAN_CALENDAR) InternationalHolidays.__init__(self) - IslamicHolidays.__init__(self) + IslamicHolidays.__init__(self, EthiopiaIslamicHolidays) super().__init__(*args, **kwargs) def _populate_public_holidays(self): - # New Year's Day - # The Ethiopian New Year is called Kudus Yohannes in Ge'ez and - # Tigrinya, while in Amharic, - # the official language of Ethiopia it is called Enkutatash. - # It occurs on September 11 in the Gregorian Calendar; - # except for the year preceding a leap year, when it occurs on - # September 12. - - # Ethiopian New Year. - self._add_holiday(tr("አዲስ ዓመት እንቁጣጣሽ"), SEP, 12 if self._is_leap_year() else 11) - - # Finding of True Cross. - self._add_holiday(tr("መስቀል"), SEP, 28 if self._is_leap_year() else 27) + if self._year <= 1897: + return None - # Orthodox Christmas Day. + # Christmas Day. self._add_christmas_day(tr("ገና")) - # Orthodox Epiphany. - self._add_epiphany_day(tr("ጥምቀት")) + # Epiphany. + self._add_holiday(tr("ጥምቀት"), JAN, 20 if super()._is_leap_year() else 19) - # Orthodox Good Friday. + # Adwa Victory Day. + self._add_holiday_mar_2(tr("አድዋ")) + + # Good Friday. self._add_good_friday(tr("ስቅለት")) - # Orthodox Easter Sunday. + # Easter Sunday. self._add_easter_sunday(tr("ፋሲካ")) - if self._year > 1896: - # Adwa Victory Day. - self._add_holiday_mar_2(tr("አድዋ")) - - # Labor Day. + # Workers' Day. self._add_labor_day(tr("የሰራተኞች ቀን")) - if self._year > 1941: - # Patriots Day. + if self._year >= 1942: + # Patriots' Day. self._add_holiday_may_5(tr("የአርበኞች ቀን")) - if self._year > 1991: + if self._year >= 1992: # Downfall of Dergue Regime Day. self._add_holiday_may_28(tr("ደርግ የወደቀበት ቀን")) - if self._year < 1991 and self._year > 1974: - # Downfall of King Haile Selassie. - self._add_holiday(tr("ደርግ የመጣበት ቀን"), SEP, 13 if self._is_leap_year() else 12) + # Ethiopian New Year. + self._add_holiday(tr("እንቁጣጣሽ"), SEP, 12 if self._is_leap_year() else 11) + + # Finding of True Cross. + self._add_holiday(tr("መስቀል"), SEP, 28 if self._is_leap_year() else 27) + + if 1975 <= self._year <= 1990: + # Revolution Day. + self._add_holiday(tr("የአብዮት ቀን"), SEP, 13 if self._is_leap_year() else 12) + + # October Revolution Day. + self._add_holiday_nov_7(tr("የጥቅምት አብዮት ቀን")) # Eid al-Fitr. self._add_eid_al_fitr_day(tr("ኢድ አልፈጥር")) # Eid al-Adha. - name = tr("አረፋ") - self._add_eid_al_adha_day(name) - self._add_eid_al_adha_day_two(name) + self._add_eid_al_adha_day(tr("አረፋ")) # Prophet's Birthday. - name = tr("መውሊድ") - self._add_mawlid_day(name) - self._add_mawlid_day_two(name) + self._add_mawlid_day(tr("መውሊድ")) class ET(Ethiopia): @@ -109,3 +106,32 @@ class ET(Ethiopia): class ETH(Ethiopia): pass + + +class EthiopiaIslamicHolidays(_CustomIslamicHolidays): + EID_AL_ADHA_DATES = { + 2018: (AUG, 22), + 2019: (AUG, 11), + 2020: (JUL, 31), + 2021: (JUL, 20), + 2022: (JUL, 9), + 2023: (JUN, 28), + } + + EID_AL_FITR_DATES = { + 2018: (JUN, 15), + 2019: (JUN, 4), + 2020: (MAY, 24), + 2021: (MAY, 13), + 2022: (MAY, 2), + 2023: (APR, 21), + } + + MAWLID_DATES = { + 2018: (NOV, 21), + 2019: (NOV, 10), + 2020: (OCT, 29), + 2021: (OCT, 18), + 2022: (OCT, 8), + 2023: (SEP, 27), + } diff --git a/holidays/locale/am/LC_MESSAGES/ET.po b/holidays/locale/am/LC_MESSAGES/ET.po index ee0890ef0..2ddc5a6e7 100644 --- a/holidays/locale/am/LC_MESSAGES/ET.po +++ b/holidays/locale/am/LC_MESSAGES/ET.po @@ -3,51 +3,48 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.26\n" +"Project-Id-Version: Python Holidays 0.44\n" "POT-Creation-Date: 2023-02-15 14:15-0800\n" -"PO-Revision-Date: 2023-02-16 08:42-0800\n" -"Last-Translator: Arkadii Yakovets \n" +"PO-Revision-Date: 2024-02-27 14:46+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.4.2\n" -#. Ethiopian New Year. -msgid "አዲስ ዓመት እንቁጣጣሽ" -msgstr "" - -#. Finding of True Cross. -msgid "መስቀል" +#. %s (estimated). +#, c-format +msgid "%s (ግምት)" msgstr "" -#. Orthodox Christmas Day. +#. Christmas Day. msgid "ገና" msgstr "" -#. Orthodox Epiphany. +#. Epiphany. msgid "ጥምቀት" msgstr "" -#. Orthodox Good Friday. -msgid "ስቅለት" +#. Adwa Victory Day. +msgid "አድዋ" msgstr "" -#. Orthodox Easter Sunday. -msgid "ፋሲካ" +#. Good Friday. +msgid "ስቅለት" msgstr "" -#. Adwa Victory Day. -msgid "አድዋ" +#. Easter Sunday. +msgid "ፋሲካ" msgstr "" -#. Labor Day. +#. Workers' Day. msgid "የሰራተኞች ቀን" msgstr "" -#. Patriots Day. +#. Patriots' Day. msgid "የአርበኞች ቀን" msgstr "" @@ -55,8 +52,20 @@ msgstr "" msgid "ደርግ የወደቀበት ቀን" msgstr "" -#. Downfall of King Haile Selassie. -msgid "ደርግ የመጣበት ቀን" +#. Ethiopian New Year. +msgid "እንቁጣጣሽ" +msgstr "" + +#. Finding of True Cross. +msgid "መስቀል" +msgstr "" + +#. Revolution Day. +msgid "የአብዮት ቀን" +msgstr "" + +#. October Revolution Day. +msgid "የጥቅምት አብዮት ቀን" msgstr "" #. Eid al-Fitr. @@ -70,8 +79,3 @@ msgstr "" #. Prophet's Birthday. msgid "መውሊድ" msgstr "" - -#. %s (estimated). -#, c-format -msgid "%s (ግምት)" -msgstr "" diff --git a/holidays/locale/ar/LC_MESSAGES/ET.po b/holidays/locale/ar/LC_MESSAGES/ET.po index dba51321b..23921dc83 100644 --- a/holidays/locale/ar/LC_MESSAGES/ET.po +++ b/holidays/locale/ar/LC_MESSAGES/ET.po @@ -1,12 +1,12 @@ -# Ethiopia holidays ar localization (PoC). +# Ethiopia holidays ar localization. # Authors: Arkadii Yakovets , (c) 2023. # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.26\n" -"POT-Creation-Date: 2023-05-20 18:48-0700\n" -"PO-Revision-Date: 2023-05-20 18:51-0700\n" -"Last-Translator: Arkadii Yakovets \n" +"Project-Id-Version: Python Holidays 0.44\n" +"POT-Creation-Date: 2024-02-27 14:42+0200\n" +"PO-Revision-Date: 2024-02-27 14:51+0200\n" +"Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: ar\n" "MIME-Version: 1.0\n" @@ -14,46 +14,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.3.1\n" +"X-Generator: Poedit 3.4.2\n" #. %s (estimated). #, c-format msgid "%s (ግምት)" msgstr "(تقدير) %s" -#. Ethiopian New Year. -msgid "አዲስ ዓመት እንቁጣጣሽ" -msgstr "السنة الإثيوبية الجديدة" - -#. Finding of True Cross. -msgid "መስቀል" -msgstr "العثور على الصليب الحقيقي" - -#. Orthodox Christmas Day. +#. Christmas Day. msgid "ገና" msgstr "عيد الميلاد" -#. Orthodox Epiphany. +#. Epiphany. msgid "ጥምቀት" msgstr "عيد الغطاس" -#. Orthodox Good Friday. +#. Adwa Victory Day. +msgid "አድዋ" +msgstr "العدوة" + +#. Good Friday. msgid "ስቅለት" msgstr "جمعة جيدة" -#. Orthodox Easter Sunday. +#. Easter Sunday. msgid "ፋሲካ" msgstr "عيد الفصح" -#. Adwa Victory Day. -msgid "አድዋ" -msgstr "العدوة" - -#. Labor Day. +#. Workers' Day. msgid "የሰራተኞች ቀን" msgstr "يوم العمال" -#. Patriots Day. +#. Patriots' Day. msgid "የአርበኞች ቀን" msgstr "يوم الوطنيين" @@ -61,9 +53,21 @@ msgstr "يوم الوطنيين" msgid "ደርግ የወደቀበት ቀን" msgstr "يوم سقوط ديرج" -#. Downfall of King Haile Selassie. -msgid "ደርግ የመጣበት ቀን" -msgstr "اليوم الذي جاء فيه ديرج" +#. Ethiopian New Year. +msgid "እንቁጣጣሽ" +msgstr "السنة الإثيوبية الجديدة" + +#. Finding of True Cross. +msgid "መስቀል" +msgstr "مسكل" + +#. Revolution Day. +msgid "የአብዮት ቀን" +msgstr "يوم الثورة" + +#. October Revolution Day. +msgid "የጥቅምት አብዮት ቀን" +msgstr "يوم ثورة أكتوبر" #. Eid al-Fitr. msgid "ኢድ አልፈጥር" diff --git a/holidays/locale/en_US/LC_MESSAGES/ET.po b/holidays/locale/en_US/LC_MESSAGES/ET.po index 7117c65c0..e3975cba8 100644 --- a/holidays/locale/en_US/LC_MESSAGES/ET.po +++ b/holidays/locale/en_US/LC_MESSAGES/ET.po @@ -3,9 +3,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.42\n" +"Project-Id-Version: Python Holidays 0.44\n" "POT-Creation-Date: 2023-02-15 14:15-0800\n" -"PO-Revision-Date: 2024-01-25 20:53+0200\n" +"PO-Revision-Date: 2024-02-27 14:49+0200\n" "Last-Translator: ~Jhellico \n" "Language-Team: Python Holidays localization team\n" "Language: en_US\n" @@ -14,51 +14,60 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Lingua 4.15.0\n" -"X-Generator: Poedit 3.4\n" +"X-Generator: Poedit 3.4.2\n" -#. Ethiopian New Year. -msgid "አዲስ ዓመት እንቁጣጣሽ" -msgstr "Ethiopian New Year's Day" - -#. Finding of True Cross. -msgid "መስቀል" -msgstr "Finding of True Cross" +#. %s (estimated). +#, c-format +msgid "%s (ግምት)" +msgstr "%s (estimated)" -#. Orthodox Christmas Day. +#. Christmas Day. msgid "ገና" -msgstr "Orthodox Christmas Day" +msgstr "Christmas Day" -#. Orthodox Epiphany. +#. Epiphany. msgid "ጥምቀት" -msgstr "Orthodox Epiphany Day" - -#. Orthodox Good Friday. -msgid "ስቅለት" -msgstr "Orthodox Good Friday" - -#. Orthodox Easter Sunday. -msgid "ፋሲካ" -msgstr "Orthodox Easter Sunday" +msgstr "Epiphany Day" #. Adwa Victory Day. msgid "አድዋ" msgstr "Adwa Victory Day" -#. Labor Day. +#. Good Friday. +msgid "ስቅለት" +msgstr "Good Friday" + +#. Easter Sunday. +msgid "ፋሲካ" +msgstr "Easter Sunday" + +#. Workers' Day. msgid "የሰራተኞች ቀን" -msgstr "Labor Day" +msgstr "Workers' Day" -#. Patriots Day. +#. Patriots' Day. msgid "የአርበኞች ቀን" -msgstr "Patriots Day" +msgstr "Patriots' Day" #. Downfall of Dergue Regime Day. msgid "ደርግ የወደቀበት ቀን" msgstr "Downfall of Dergue Regime Day" -#. Downfall of King Haile Selassie. -msgid "ደርግ የመጣበት ቀን" -msgstr "Downfall of King Haile Selassie Day" +#. Ethiopian New Year. +msgid "እንቁጣጣሽ" +msgstr "Ethiopian New Year" + +#. Finding of True Cross. +msgid "መስቀል" +msgstr "Finding of True Cross" + +#. Revolution Day. +msgid "የአብዮት ቀን" +msgstr "Revolution Day" + +#. October Revolution Day. +msgid "የጥቅምት አብዮት ቀን" +msgstr "October Revolution Day" #. Eid al-Fitr. msgid "ኢድ አልፈጥር" @@ -71,8 +80,3 @@ msgstr "Eid al-Adha" #. Prophet's Birthday. msgid "መውሊድ" msgstr "Prophet's Birthday" - -#. %s (estimated). -#, c-format -msgid "%s (ግምት)" -msgstr "%s (estimated)" diff --git a/snapshots/countries/ET_COMMON.json b/snapshots/countries/ET_COMMON.json index 43126e28d..299b553e0 100644 --- a/snapshots/countries/ET_COMMON.json +++ b/snapshots/countries/ET_COMMON.json @@ -1,1484 +1,1296 @@ { "1950-01-01": "Prophet's Birthday (estimated)", - "1950-01-02": "Prophet's Birthday (estimated)", - "1950-01-07": "Orthodox Christmas Day", - "1950-01-19": "Orthodox Epiphany Day", + "1950-01-07": "Christmas Day", + "1950-01-19": "Epiphany Day", "1950-03-02": "Adwa Victory Day", - "1950-04-07": "Orthodox Good Friday", - "1950-04-09": "Orthodox Easter Sunday", - "1950-05-01": "Labor Day", - "1950-05-05": "Patriots Day", + "1950-04-07": "Good Friday", + "1950-04-09": "Easter Sunday", + "1950-05-01": "Workers' Day", + "1950-05-05": "Patriots' Day", "1950-07-16": "Eid al-Fitr (estimated)", - "1950-09-11": "Ethiopian New Year's Day", + "1950-09-11": "Ethiopian New Year", "1950-09-23": "Eid al-Adha (estimated)", - "1950-09-24": "Eid al-Adha (estimated)", "1950-09-27": "Finding of True Cross", "1950-12-22": "Prophet's Birthday (estimated)", - "1950-12-23": "Prophet's Birthday (estimated)", - "1951-01-07": "Orthodox Christmas Day", - "1951-01-19": "Orthodox Epiphany Day", + "1951-01-07": "Christmas Day", + "1951-01-19": "Epiphany Day", "1951-03-02": "Adwa Victory Day", - "1951-04-27": "Orthodox Good Friday", - "1951-04-29": "Orthodox Easter Sunday", - "1951-05-01": "Labor Day", - "1951-05-05": "Patriots Day", + "1951-04-27": "Good Friday", + "1951-04-29": "Easter Sunday", + "1951-05-01": "Workers' Day", + "1951-05-05": "Patriots' Day", "1951-07-06": "Eid al-Fitr (estimated)", - "1951-09-12": "Eid al-Adha (estimated); Ethiopian New Year's Day", - "1951-09-13": "Eid al-Adha (estimated)", + "1951-09-12": "Eid al-Adha (estimated); Ethiopian New Year", "1951-09-28": "Finding of True Cross", "1951-12-11": "Prophet's Birthday (estimated)", - "1951-12-12": "Prophet's Birthday (estimated)", - "1952-01-07": "Orthodox Christmas Day", - "1952-01-19": "Orthodox Epiphany Day", + "1952-01-07": "Christmas Day", + "1952-01-20": "Epiphany Day", "1952-03-02": "Adwa Victory Day", - "1952-04-18": "Orthodox Good Friday", - "1952-04-20": "Orthodox Easter Sunday", - "1952-05-01": "Labor Day", - "1952-05-05": "Patriots Day", + "1952-04-18": "Good Friday", + "1952-04-20": "Easter Sunday", + "1952-05-01": "Workers' Day", + "1952-05-05": "Patriots' Day", "1952-06-23": "Eid al-Fitr (estimated)", "1952-08-31": "Eid al-Adha (estimated)", - "1952-09-01": "Eid al-Adha (estimated)", - "1952-09-11": "Ethiopian New Year's Day", + "1952-09-11": "Ethiopian New Year", "1952-09-27": "Finding of True Cross", "1952-11-30": "Prophet's Birthday (estimated)", - "1952-12-01": "Prophet's Birthday (estimated)", - "1953-01-07": "Orthodox Christmas Day", - "1953-01-19": "Orthodox Epiphany Day", + "1953-01-07": "Christmas Day", + "1953-01-19": "Epiphany Day", "1953-03-02": "Adwa Victory Day", - "1953-04-03": "Orthodox Good Friday", - "1953-04-05": "Orthodox Easter Sunday", - "1953-05-01": "Labor Day", - "1953-05-05": "Patriots Day", + "1953-04-03": "Good Friday", + "1953-04-05": "Easter Sunday", + "1953-05-01": "Workers' Day", + "1953-05-05": "Patriots' Day", "1953-06-13": "Eid al-Fitr (estimated)", "1953-08-20": "Eid al-Adha (estimated)", - "1953-08-21": "Eid al-Adha (estimated)", - "1953-09-11": "Ethiopian New Year's Day", + "1953-09-11": "Ethiopian New Year", "1953-09-27": "Finding of True Cross", "1953-11-19": "Prophet's Birthday (estimated)", - "1953-11-20": "Prophet's Birthday (estimated)", - "1954-01-07": "Orthodox Christmas Day", - "1954-01-19": "Orthodox Epiphany Day", + "1954-01-07": "Christmas Day", + "1954-01-19": "Epiphany Day", "1954-03-02": "Adwa Victory Day", - "1954-04-23": "Orthodox Good Friday", - "1954-04-25": "Orthodox Easter Sunday", - "1954-05-01": "Labor Day", - "1954-05-05": "Patriots Day", + "1954-04-23": "Good Friday", + "1954-04-25": "Easter Sunday", + "1954-05-01": "Workers' Day", + "1954-05-05": "Patriots' Day", "1954-06-02": "Eid al-Fitr (estimated)", "1954-08-09": "Eid al-Adha (estimated)", - "1954-08-10": "Eid al-Adha (estimated)", - "1954-09-11": "Ethiopian New Year's Day", + "1954-09-11": "Ethiopian New Year", "1954-09-27": "Finding of True Cross", "1954-11-08": "Prophet's Birthday (estimated)", - "1954-11-09": "Prophet's Birthday (estimated)", - "1955-01-07": "Orthodox Christmas Day", - "1955-01-19": "Orthodox Epiphany Day", + "1955-01-07": "Christmas Day", + "1955-01-19": "Epiphany Day", "1955-03-02": "Adwa Victory Day", - "1955-04-15": "Orthodox Good Friday", - "1955-04-17": "Orthodox Easter Sunday", - "1955-05-01": "Labor Day", - "1955-05-05": "Patriots Day", + "1955-04-15": "Good Friday", + "1955-04-17": "Easter Sunday", + "1955-05-01": "Workers' Day", + "1955-05-05": "Patriots' Day", "1955-05-23": "Eid al-Fitr (estimated)", "1955-07-30": "Eid al-Adha (estimated)", - "1955-07-31": "Eid al-Adha (estimated)", - "1955-09-12": "Ethiopian New Year's Day", + "1955-09-12": "Ethiopian New Year", "1955-09-28": "Finding of True Cross", "1955-10-29": "Prophet's Birthday (estimated)", - "1955-10-30": "Prophet's Birthday (estimated)", - "1956-01-07": "Orthodox Christmas Day", - "1956-01-19": "Orthodox Epiphany Day", + "1956-01-07": "Christmas Day", + "1956-01-20": "Epiphany Day", "1956-03-02": "Adwa Victory Day", - "1956-05-01": "Labor Day", - "1956-05-04": "Orthodox Good Friday", - "1956-05-05": "Patriots Day", - "1956-05-06": "Orthodox Easter Sunday", + "1956-05-01": "Workers' Day", + "1956-05-04": "Good Friday", + "1956-05-05": "Patriots' Day", + "1956-05-06": "Easter Sunday", "1956-05-11": "Eid al-Fitr (estimated)", "1956-07-19": "Eid al-Adha (estimated)", - "1956-07-20": "Eid al-Adha (estimated)", - "1956-09-11": "Ethiopian New Year's Day", + "1956-09-11": "Ethiopian New Year", "1956-09-27": "Finding of True Cross", "1956-10-17": "Prophet's Birthday (estimated)", - "1956-10-18": "Prophet's Birthday (estimated)", - "1957-01-07": "Orthodox Christmas Day", - "1957-01-19": "Orthodox Epiphany Day", + "1957-01-07": "Christmas Day", + "1957-01-19": "Epiphany Day", "1957-03-02": "Adwa Victory Day", - "1957-04-19": "Orthodox Good Friday", - "1957-04-21": "Orthodox Easter Sunday", - "1957-05-01": "Eid al-Fitr (estimated); Labor Day", - "1957-05-05": "Patriots Day", + "1957-04-19": "Good Friday", + "1957-04-21": "Easter Sunday", + "1957-05-01": "Eid al-Fitr (estimated); Workers' Day", + "1957-05-05": "Patriots' Day", "1957-07-08": "Eid al-Adha (estimated)", - "1957-07-09": "Eid al-Adha (estimated)", - "1957-09-11": "Ethiopian New Year's Day", + "1957-09-11": "Ethiopian New Year", "1957-09-27": "Finding of True Cross", "1957-10-06": "Prophet's Birthday (estimated)", - "1957-10-07": "Prophet's Birthday (estimated)", - "1958-01-07": "Orthodox Christmas Day", - "1958-01-19": "Orthodox Epiphany Day", + "1958-01-07": "Christmas Day", + "1958-01-19": "Epiphany Day", "1958-03-02": "Adwa Victory Day", - "1958-04-11": "Orthodox Good Friday", - "1958-04-13": "Orthodox Easter Sunday", + "1958-04-11": "Good Friday", + "1958-04-13": "Easter Sunday", "1958-04-20": "Eid al-Fitr (estimated)", - "1958-05-01": "Labor Day", - "1958-05-05": "Patriots Day", + "1958-05-01": "Workers' Day", + "1958-05-05": "Patriots' Day", "1958-06-27": "Eid al-Adha (estimated)", - "1958-06-28": "Eid al-Adha (estimated)", - "1958-09-11": "Ethiopian New Year's Day", + "1958-09-11": "Ethiopian New Year", "1958-09-26": "Prophet's Birthday (estimated)", - "1958-09-27": "Finding of True Cross; Prophet's Birthday (estimated)", - "1959-01-07": "Orthodox Christmas Day", - "1959-01-19": "Orthodox Epiphany Day", + "1958-09-27": "Finding of True Cross", + "1959-01-07": "Christmas Day", + "1959-01-19": "Epiphany Day", "1959-03-02": "Adwa Victory Day", "1959-04-10": "Eid al-Fitr (estimated)", - "1959-05-01": "Labor Day; Orthodox Good Friday", - "1959-05-03": "Orthodox Easter Sunday", - "1959-05-05": "Patriots Day", + "1959-05-01": "Good Friday; Workers' Day", + "1959-05-03": "Easter Sunday", + "1959-05-05": "Patriots' Day", "1959-06-17": "Eid al-Adha (estimated)", - "1959-06-18": "Eid al-Adha (estimated)", - "1959-09-12": "Ethiopian New Year's Day", + "1959-09-12": "Ethiopian New Year", "1959-09-15": "Prophet's Birthday (estimated)", - "1959-09-16": "Prophet's Birthday (estimated)", "1959-09-28": "Finding of True Cross", - "1960-01-07": "Orthodox Christmas Day", - "1960-01-19": "Orthodox Epiphany Day", + "1960-01-07": "Christmas Day", + "1960-01-20": "Epiphany Day", "1960-03-02": "Adwa Victory Day", "1960-03-28": "Eid al-Fitr (estimated)", - "1960-04-15": "Orthodox Good Friday", - "1960-04-17": "Orthodox Easter Sunday", - "1960-05-01": "Labor Day", - "1960-05-05": "Patriots Day", + "1960-04-15": "Good Friday", + "1960-04-17": "Easter Sunday", + "1960-05-01": "Workers' Day", + "1960-05-05": "Patriots' Day", "1960-06-04": "Eid al-Adha (estimated)", - "1960-06-05": "Eid al-Adha (estimated)", "1960-09-03": "Prophet's Birthday (estimated)", - "1960-09-04": "Prophet's Birthday (estimated)", - "1960-09-11": "Ethiopian New Year's Day", + "1960-09-11": "Ethiopian New Year", "1960-09-27": "Finding of True Cross", - "1961-01-07": "Orthodox Christmas Day", - "1961-01-19": "Orthodox Epiphany Day", + "1961-01-07": "Christmas Day", + "1961-01-19": "Epiphany Day", "1961-03-02": "Adwa Victory Day", "1961-03-18": "Eid al-Fitr (estimated)", - "1961-04-07": "Orthodox Good Friday", - "1961-04-09": "Orthodox Easter Sunday", - "1961-05-01": "Labor Day", - "1961-05-05": "Patriots Day", + "1961-04-07": "Good Friday", + "1961-04-09": "Easter Sunday", + "1961-05-01": "Workers' Day", + "1961-05-05": "Patriots' Day", "1961-05-25": "Eid al-Adha (estimated)", - "1961-05-26": "Eid al-Adha (estimated)", "1961-08-23": "Prophet's Birthday (estimated)", - "1961-08-24": "Prophet's Birthday (estimated)", - "1961-09-11": "Ethiopian New Year's Day", + "1961-09-11": "Ethiopian New Year", "1961-09-27": "Finding of True Cross", - "1962-01-07": "Orthodox Christmas Day", - "1962-01-19": "Orthodox Epiphany Day", + "1962-01-07": "Christmas Day", + "1962-01-19": "Epiphany Day", "1962-03-02": "Adwa Victory Day", "1962-03-07": "Eid al-Fitr (estimated)", - "1962-04-27": "Orthodox Good Friday", - "1962-04-29": "Orthodox Easter Sunday", - "1962-05-01": "Labor Day", - "1962-05-05": "Patriots Day", + "1962-04-27": "Good Friday", + "1962-04-29": "Easter Sunday", + "1962-05-01": "Workers' Day", + "1962-05-05": "Patriots' Day", "1962-05-14": "Eid al-Adha (estimated)", - "1962-05-15": "Eid al-Adha (estimated)", "1962-08-12": "Prophet's Birthday (estimated)", - "1962-08-13": "Prophet's Birthday (estimated)", - "1962-09-11": "Ethiopian New Year's Day", + "1962-09-11": "Ethiopian New Year", "1962-09-27": "Finding of True Cross", - "1963-01-07": "Orthodox Christmas Day", - "1963-01-19": "Orthodox Epiphany Day", + "1963-01-07": "Christmas Day", + "1963-01-19": "Epiphany Day", "1963-02-24": "Eid al-Fitr (estimated)", "1963-03-02": "Adwa Victory Day", - "1963-04-12": "Orthodox Good Friday", - "1963-04-14": "Orthodox Easter Sunday", - "1963-05-01": "Labor Day", + "1963-04-12": "Good Friday", + "1963-04-14": "Easter Sunday", + "1963-05-01": "Workers' Day", "1963-05-03": "Eid al-Adha (estimated)", - "1963-05-04": "Eid al-Adha (estimated)", - "1963-05-05": "Patriots Day", + "1963-05-05": "Patriots' Day", "1963-08-02": "Prophet's Birthday (estimated)", - "1963-08-03": "Prophet's Birthday (estimated)", - "1963-09-12": "Ethiopian New Year's Day", + "1963-09-12": "Ethiopian New Year", "1963-09-28": "Finding of True Cross", - "1964-01-07": "Orthodox Christmas Day", - "1964-01-19": "Orthodox Epiphany Day", + "1964-01-07": "Christmas Day", + "1964-01-20": "Epiphany Day", "1964-02-14": "Eid al-Fitr (estimated)", "1964-03-02": "Adwa Victory Day", "1964-04-22": "Eid al-Adha (estimated)", - "1964-04-23": "Eid al-Adha (estimated)", - "1964-05-01": "Labor Day; Orthodox Good Friday", - "1964-05-03": "Orthodox Easter Sunday", - "1964-05-05": "Patriots Day", + "1964-05-01": "Good Friday; Workers' Day", + "1964-05-03": "Easter Sunday", + "1964-05-05": "Patriots' Day", "1964-07-21": "Prophet's Birthday (estimated)", - "1964-07-22": "Prophet's Birthday (estimated)", - "1964-09-11": "Ethiopian New Year's Day", + "1964-09-11": "Ethiopian New Year", "1964-09-27": "Finding of True Cross", - "1965-01-07": "Orthodox Christmas Day", - "1965-01-19": "Orthodox Epiphany Day", + "1965-01-07": "Christmas Day", + "1965-01-19": "Epiphany Day", "1965-02-02": "Eid al-Fitr (estimated)", "1965-03-02": "Adwa Victory Day", "1965-04-11": "Eid al-Adha (estimated)", - "1965-04-12": "Eid al-Adha (estimated)", - "1965-04-23": "Orthodox Good Friday", - "1965-04-25": "Orthodox Easter Sunday", - "1965-05-01": "Labor Day", - "1965-05-05": "Patriots Day", + "1965-04-23": "Good Friday", + "1965-04-25": "Easter Sunday", + "1965-05-01": "Workers' Day", + "1965-05-05": "Patriots' Day", "1965-07-10": "Prophet's Birthday (estimated)", - "1965-07-11": "Prophet's Birthday (estimated)", - "1965-09-11": "Ethiopian New Year's Day", + "1965-09-11": "Ethiopian New Year", "1965-09-27": "Finding of True Cross", - "1966-01-07": "Orthodox Christmas Day", - "1966-01-19": "Orthodox Epiphany Day", + "1966-01-07": "Christmas Day", + "1966-01-19": "Epiphany Day", "1966-01-22": "Eid al-Fitr (estimated)", "1966-03-02": "Adwa Victory Day", "1966-04-01": "Eid al-Adha (estimated)", - "1966-04-02": "Eid al-Adha (estimated)", - "1966-04-08": "Orthodox Good Friday", - "1966-04-10": "Orthodox Easter Sunday", - "1966-05-01": "Labor Day", - "1966-05-05": "Patriots Day", + "1966-04-08": "Good Friday", + "1966-04-10": "Easter Sunday", + "1966-05-01": "Workers' Day", + "1966-05-05": "Patriots' Day", "1966-07-01": "Prophet's Birthday (estimated)", - "1966-07-02": "Prophet's Birthday (estimated)", - "1966-09-11": "Ethiopian New Year's Day", + "1966-09-11": "Ethiopian New Year", "1966-09-27": "Finding of True Cross", - "1967-01-07": "Orthodox Christmas Day", + "1967-01-07": "Christmas Day", "1967-01-12": "Eid al-Fitr (estimated)", - "1967-01-19": "Orthodox Epiphany Day", + "1967-01-19": "Epiphany Day", "1967-03-02": "Adwa Victory Day", "1967-03-21": "Eid al-Adha (estimated)", - "1967-03-22": "Eid al-Adha (estimated)", - "1967-04-28": "Orthodox Good Friday", - "1967-04-30": "Orthodox Easter Sunday", - "1967-05-01": "Labor Day", - "1967-05-05": "Patriots Day", + "1967-04-28": "Good Friday", + "1967-04-30": "Easter Sunday", + "1967-05-01": "Workers' Day", + "1967-05-05": "Patriots' Day", "1967-06-19": "Prophet's Birthday (estimated)", - "1967-06-20": "Prophet's Birthday (estimated)", - "1967-09-12": "Ethiopian New Year's Day", + "1967-09-12": "Ethiopian New Year", "1967-09-28": "Finding of True Cross", "1968-01-01": "Eid al-Fitr (estimated)", - "1968-01-07": "Orthodox Christmas Day", - "1968-01-19": "Orthodox Epiphany Day", + "1968-01-07": "Christmas Day", + "1968-01-20": "Epiphany Day", "1968-03-02": "Adwa Victory Day", "1968-03-09": "Eid al-Adha (estimated)", - "1968-03-10": "Eid al-Adha (estimated)", - "1968-04-19": "Orthodox Good Friday", - "1968-04-21": "Orthodox Easter Sunday", - "1968-05-01": "Labor Day", - "1968-05-05": "Patriots Day", + "1968-04-19": "Good Friday", + "1968-04-21": "Easter Sunday", + "1968-05-01": "Workers' Day", + "1968-05-05": "Patriots' Day", "1968-06-08": "Prophet's Birthday (estimated)", - "1968-06-09": "Prophet's Birthday (estimated)", - "1968-09-11": "Ethiopian New Year's Day", + "1968-09-11": "Ethiopian New Year", "1968-09-27": "Finding of True Cross", "1968-12-21": "Eid al-Fitr (estimated)", - "1969-01-07": "Orthodox Christmas Day", - "1969-01-19": "Orthodox Epiphany Day", + "1969-01-07": "Christmas Day", + "1969-01-19": "Epiphany Day", "1969-02-27": "Eid al-Adha (estimated)", - "1969-02-28": "Eid al-Adha (estimated)", "1969-03-02": "Adwa Victory Day", - "1969-04-11": "Orthodox Good Friday", - "1969-04-13": "Orthodox Easter Sunday", - "1969-05-01": "Labor Day", - "1969-05-05": "Patriots Day", + "1969-04-11": "Good Friday", + "1969-04-13": "Easter Sunday", + "1969-05-01": "Workers' Day", + "1969-05-05": "Patriots' Day", "1969-05-28": "Prophet's Birthday (estimated)", - "1969-05-29": "Prophet's Birthday (estimated)", - "1969-09-11": "Ethiopian New Year's Day", + "1969-09-11": "Ethiopian New Year", "1969-09-27": "Finding of True Cross", "1969-12-10": "Eid al-Fitr (estimated)", - "1970-01-07": "Orthodox Christmas Day", - "1970-01-19": "Orthodox Epiphany Day", + "1970-01-07": "Christmas Day", + "1970-01-19": "Epiphany Day", "1970-02-16": "Eid al-Adha (estimated)", - "1970-02-17": "Eid al-Adha (estimated)", "1970-03-02": "Adwa Victory Day", - "1970-04-24": "Orthodox Good Friday", - "1970-04-26": "Orthodox Easter Sunday", - "1970-05-01": "Labor Day", - "1970-05-05": "Patriots Day", + "1970-04-24": "Good Friday", + "1970-04-26": "Easter Sunday", + "1970-05-01": "Workers' Day", + "1970-05-05": "Patriots' Day", "1970-05-18": "Prophet's Birthday (estimated)", - "1970-05-19": "Prophet's Birthday (estimated)", - "1970-09-11": "Ethiopian New Year's Day", + "1970-09-11": "Ethiopian New Year", "1970-09-27": "Finding of True Cross", "1970-11-30": "Eid al-Fitr (estimated)", - "1971-01-07": "Orthodox Christmas Day", - "1971-01-19": "Orthodox Epiphany Day", + "1971-01-07": "Christmas Day", + "1971-01-19": "Epiphany Day", "1971-02-06": "Eid al-Adha (estimated)", - "1971-02-07": "Eid al-Adha (estimated)", "1971-03-02": "Adwa Victory Day", - "1971-04-16": "Orthodox Good Friday", - "1971-04-18": "Orthodox Easter Sunday", - "1971-05-01": "Labor Day", - "1971-05-05": "Patriots Day", + "1971-04-16": "Good Friday", + "1971-04-18": "Easter Sunday", + "1971-05-01": "Workers' Day", + "1971-05-05": "Patriots' Day", "1971-05-07": "Prophet's Birthday (estimated)", - "1971-05-08": "Prophet's Birthday (estimated)", - "1971-09-12": "Ethiopian New Year's Day", + "1971-09-12": "Ethiopian New Year", "1971-09-28": "Finding of True Cross", "1971-11-19": "Eid al-Fitr (estimated)", - "1972-01-07": "Orthodox Christmas Day", - "1972-01-19": "Orthodox Epiphany Day", + "1972-01-07": "Christmas Day", + "1972-01-20": "Epiphany Day", "1972-01-26": "Eid al-Adha (estimated)", - "1972-01-27": "Eid al-Adha (estimated)", "1972-03-02": "Adwa Victory Day", - "1972-04-07": "Orthodox Good Friday", - "1972-04-09": "Orthodox Easter Sunday", + "1972-04-07": "Good Friday", + "1972-04-09": "Easter Sunday", "1972-04-25": "Prophet's Birthday (estimated)", - "1972-04-26": "Prophet's Birthday (estimated)", - "1972-05-01": "Labor Day", - "1972-05-05": "Patriots Day", - "1972-09-11": "Ethiopian New Year's Day", + "1972-05-01": "Workers' Day", + "1972-05-05": "Patriots' Day", + "1972-09-11": "Ethiopian New Year", "1972-09-27": "Finding of True Cross", "1972-11-07": "Eid al-Fitr (estimated)", - "1973-01-07": "Orthodox Christmas Day", + "1973-01-07": "Christmas Day", "1973-01-14": "Eid al-Adha (estimated)", - "1973-01-15": "Eid al-Adha (estimated)", - "1973-01-19": "Orthodox Epiphany Day", + "1973-01-19": "Epiphany Day", "1973-03-02": "Adwa Victory Day", "1973-04-15": "Prophet's Birthday (estimated)", - "1973-04-16": "Prophet's Birthday (estimated)", - "1973-04-27": "Orthodox Good Friday", - "1973-04-29": "Orthodox Easter Sunday", - "1973-05-01": "Labor Day", - "1973-05-05": "Patriots Day", - "1973-09-11": "Ethiopian New Year's Day", + "1973-04-27": "Good Friday", + "1973-04-29": "Easter Sunday", + "1973-05-01": "Workers' Day", + "1973-05-05": "Patriots' Day", + "1973-09-11": "Ethiopian New Year", "1973-09-27": "Finding of True Cross", "1973-10-27": "Eid al-Fitr (estimated)", "1974-01-03": "Eid al-Adha (estimated)", - "1974-01-04": "Eid al-Adha (estimated)", - "1974-01-07": "Orthodox Christmas Day", - "1974-01-19": "Orthodox Epiphany Day", + "1974-01-07": "Christmas Day", + "1974-01-19": "Epiphany Day", "1974-03-02": "Adwa Victory Day", "1974-04-04": "Prophet's Birthday (estimated)", - "1974-04-05": "Prophet's Birthday (estimated)", - "1974-04-12": "Orthodox Good Friday", - "1974-04-14": "Orthodox Easter Sunday", - "1974-05-01": "Labor Day", - "1974-05-05": "Patriots Day", - "1974-09-11": "Ethiopian New Year's Day", + "1974-04-12": "Good Friday", + "1974-04-14": "Easter Sunday", + "1974-05-01": "Workers' Day", + "1974-05-05": "Patriots' Day", + "1974-09-11": "Ethiopian New Year", "1974-09-27": "Finding of True Cross", "1974-10-16": "Eid al-Fitr (estimated)", "1974-12-24": "Eid al-Adha (estimated)", - "1974-12-25": "Eid al-Adha (estimated)", - "1975-01-07": "Orthodox Christmas Day", - "1975-01-19": "Orthodox Epiphany Day", + "1975-01-07": "Christmas Day", + "1975-01-19": "Epiphany Day", "1975-03-02": "Adwa Victory Day", "1975-03-24": "Prophet's Birthday (estimated)", - "1975-03-25": "Prophet's Birthday (estimated)", - "1975-05-01": "Labor Day", - "1975-05-02": "Orthodox Good Friday", - "1975-05-04": "Orthodox Easter Sunday", - "1975-05-05": "Patriots Day", - "1975-09-12": "Ethiopian New Year's Day", - "1975-09-13": "Downfall of King Haile Selassie Day", + "1975-05-01": "Workers' Day", + "1975-05-02": "Good Friday", + "1975-05-04": "Easter Sunday", + "1975-05-05": "Patriots' Day", + "1975-09-12": "Ethiopian New Year", + "1975-09-13": "Revolution Day", "1975-09-28": "Finding of True Cross", "1975-10-06": "Eid al-Fitr (estimated)", + "1975-11-07": "October Revolution Day", "1975-12-13": "Eid al-Adha (estimated)", - "1975-12-14": "Eid al-Adha (estimated)", - "1976-01-07": "Orthodox Christmas Day", - "1976-01-19": "Orthodox Epiphany Day", + "1976-01-07": "Christmas Day", + "1976-01-20": "Epiphany Day", "1976-03-02": "Adwa Victory Day", "1976-03-12": "Prophet's Birthday (estimated)", - "1976-03-13": "Prophet's Birthday (estimated)", - "1976-04-23": "Orthodox Good Friday", - "1976-04-25": "Orthodox Easter Sunday", - "1976-05-01": "Labor Day", - "1976-05-05": "Patriots Day", - "1976-09-11": "Ethiopian New Year's Day", - "1976-09-12": "Downfall of King Haile Selassie Day", + "1976-04-23": "Good Friday", + "1976-04-25": "Easter Sunday", + "1976-05-01": "Workers' Day", + "1976-05-05": "Patriots' Day", + "1976-09-11": "Ethiopian New Year", + "1976-09-12": "Revolution Day", "1976-09-24": "Eid al-Fitr (estimated)", "1976-09-27": "Finding of True Cross", + "1976-11-07": "October Revolution Day", "1976-12-01": "Eid al-Adha (estimated)", - "1976-12-02": "Eid al-Adha (estimated)", - "1977-01-07": "Orthodox Christmas Day", - "1977-01-19": "Orthodox Epiphany Day", + "1977-01-07": "Christmas Day", + "1977-01-19": "Epiphany Day", "1977-03-02": "Adwa Victory Day; Prophet's Birthday (estimated)", - "1977-03-03": "Prophet's Birthday (estimated)", - "1977-04-08": "Orthodox Good Friday", - "1977-04-10": "Orthodox Easter Sunday", - "1977-05-01": "Labor Day", - "1977-05-05": "Patriots Day", - "1977-09-11": "Ethiopian New Year's Day", - "1977-09-12": "Downfall of King Haile Selassie Day", + "1977-04-08": "Good Friday", + "1977-04-10": "Easter Sunday", + "1977-05-01": "Workers' Day", + "1977-05-05": "Patriots' Day", + "1977-09-11": "Ethiopian New Year", + "1977-09-12": "Revolution Day", "1977-09-14": "Eid al-Fitr (estimated)", "1977-09-27": "Finding of True Cross", + "1977-11-07": "October Revolution Day", "1977-11-21": "Eid al-Adha (estimated)", - "1977-11-22": "Eid al-Adha (estimated)", - "1978-01-07": "Orthodox Christmas Day", - "1978-01-19": "Orthodox Epiphany Day", + "1978-01-07": "Christmas Day", + "1978-01-19": "Epiphany Day", "1978-02-19": "Prophet's Birthday (estimated)", - "1978-02-20": "Prophet's Birthday (estimated)", "1978-03-02": "Adwa Victory Day", - "1978-04-28": "Orthodox Good Friday", - "1978-04-30": "Orthodox Easter Sunday", - "1978-05-01": "Labor Day", - "1978-05-05": "Patriots Day", + "1978-04-28": "Good Friday", + "1978-04-30": "Easter Sunday", + "1978-05-01": "Workers' Day", + "1978-05-05": "Patriots' Day", "1978-09-03": "Eid al-Fitr (estimated)", - "1978-09-11": "Ethiopian New Year's Day", - "1978-09-12": "Downfall of King Haile Selassie Day", + "1978-09-11": "Ethiopian New Year", + "1978-09-12": "Revolution Day", "1978-09-27": "Finding of True Cross", + "1978-11-07": "October Revolution Day", "1978-11-10": "Eid al-Adha (estimated)", - "1978-11-11": "Eid al-Adha (estimated)", - "1979-01-07": "Orthodox Christmas Day", - "1979-01-19": "Orthodox Epiphany Day", + "1979-01-07": "Christmas Day", + "1979-01-19": "Epiphany Day", "1979-02-09": "Prophet's Birthday (estimated)", - "1979-02-10": "Prophet's Birthday (estimated)", "1979-03-02": "Adwa Victory Day", - "1979-04-20": "Orthodox Good Friday", - "1979-04-22": "Orthodox Easter Sunday", - "1979-05-01": "Labor Day", - "1979-05-05": "Patriots Day", + "1979-04-20": "Good Friday", + "1979-04-22": "Easter Sunday", + "1979-05-01": "Workers' Day", + "1979-05-05": "Patriots' Day", "1979-08-23": "Eid al-Fitr (estimated)", - "1979-09-12": "Ethiopian New Year's Day", - "1979-09-13": "Downfall of King Haile Selassie Day", + "1979-09-12": "Ethiopian New Year", + "1979-09-13": "Revolution Day", "1979-09-28": "Finding of True Cross", "1979-10-31": "Eid al-Adha (estimated)", - "1979-11-01": "Eid al-Adha (estimated)", - "1980-01-07": "Orthodox Christmas Day", - "1980-01-19": "Orthodox Epiphany Day", + "1979-11-07": "October Revolution Day", + "1980-01-07": "Christmas Day", + "1980-01-20": "Epiphany Day", "1980-01-30": "Prophet's Birthday (estimated)", - "1980-01-31": "Prophet's Birthday (estimated)", "1980-03-02": "Adwa Victory Day", - "1980-04-04": "Orthodox Good Friday", - "1980-04-06": "Orthodox Easter Sunday", - "1980-05-01": "Labor Day", - "1980-05-05": "Patriots Day", + "1980-04-04": "Good Friday", + "1980-04-06": "Easter Sunday", + "1980-05-01": "Workers' Day", + "1980-05-05": "Patriots' Day", "1980-08-12": "Eid al-Fitr (estimated)", - "1980-09-11": "Ethiopian New Year's Day", - "1980-09-12": "Downfall of King Haile Selassie Day", + "1980-09-11": "Ethiopian New Year", + "1980-09-12": "Revolution Day", "1980-09-27": "Finding of True Cross", "1980-10-19": "Eid al-Adha (estimated)", - "1980-10-20": "Eid al-Adha (estimated)", - "1981-01-07": "Orthodox Christmas Day", + "1980-11-07": "October Revolution Day", + "1981-01-07": "Christmas Day", "1981-01-18": "Prophet's Birthday (estimated)", - "1981-01-19": "Orthodox Epiphany Day; Prophet's Birthday (estimated)", + "1981-01-19": "Epiphany Day", "1981-03-02": "Adwa Victory Day", - "1981-04-24": "Orthodox Good Friday", - "1981-04-26": "Orthodox Easter Sunday", - "1981-05-01": "Labor Day", - "1981-05-05": "Patriots Day", + "1981-04-24": "Good Friday", + "1981-04-26": "Easter Sunday", + "1981-05-01": "Workers' Day", + "1981-05-05": "Patriots' Day", "1981-08-01": "Eid al-Fitr (estimated)", - "1981-09-11": "Ethiopian New Year's Day", - "1981-09-12": "Downfall of King Haile Selassie Day", + "1981-09-11": "Ethiopian New Year", + "1981-09-12": "Revolution Day", "1981-09-27": "Finding of True Cross", "1981-10-08": "Eid al-Adha (estimated)", - "1981-10-09": "Eid al-Adha (estimated)", - "1982-01-07": "Orthodox Christmas Day; Prophet's Birthday (estimated)", - "1982-01-08": "Prophet's Birthday (estimated)", - "1982-01-19": "Orthodox Epiphany Day", + "1981-11-07": "October Revolution Day", + "1982-01-07": "Christmas Day; Prophet's Birthday (estimated)", + "1982-01-19": "Epiphany Day", "1982-03-02": "Adwa Victory Day", - "1982-04-16": "Orthodox Good Friday", - "1982-04-18": "Orthodox Easter Sunday", - "1982-05-01": "Labor Day", - "1982-05-05": "Patriots Day", + "1982-04-16": "Good Friday", + "1982-04-18": "Easter Sunday", + "1982-05-01": "Workers' Day", + "1982-05-05": "Patriots' Day", "1982-07-21": "Eid al-Fitr (estimated)", - "1982-09-11": "Ethiopian New Year's Day", - "1982-09-12": "Downfall of King Haile Selassie Day", + "1982-09-11": "Ethiopian New Year", + "1982-09-12": "Revolution Day", "1982-09-27": "Eid al-Adha (estimated); Finding of True Cross", - "1982-09-28": "Eid al-Adha (estimated)", + "1982-11-07": "October Revolution Day", "1982-12-27": "Prophet's Birthday (estimated)", - "1982-12-28": "Prophet's Birthday (estimated)", - "1983-01-07": "Orthodox Christmas Day", - "1983-01-19": "Orthodox Epiphany Day", + "1983-01-07": "Christmas Day", + "1983-01-19": "Epiphany Day", "1983-03-02": "Adwa Victory Day", - "1983-05-01": "Labor Day", - "1983-05-05": "Patriots Day", - "1983-05-06": "Orthodox Good Friday", - "1983-05-08": "Orthodox Easter Sunday", + "1983-05-01": "Workers' Day", + "1983-05-05": "Patriots' Day", + "1983-05-06": "Good Friday", + "1983-05-08": "Easter Sunday", "1983-07-11": "Eid al-Fitr (estimated)", - "1983-09-12": "Ethiopian New Year's Day", - "1983-09-13": "Downfall of King Haile Selassie Day", + "1983-09-12": "Ethiopian New Year", + "1983-09-13": "Revolution Day", "1983-09-17": "Eid al-Adha (estimated)", - "1983-09-18": "Eid al-Adha (estimated)", "1983-09-28": "Finding of True Cross", + "1983-11-07": "October Revolution Day", "1983-12-16": "Prophet's Birthday (estimated)", - "1983-12-17": "Prophet's Birthday (estimated)", - "1984-01-07": "Orthodox Christmas Day", - "1984-01-19": "Orthodox Epiphany Day", + "1984-01-07": "Christmas Day", + "1984-01-20": "Epiphany Day", "1984-03-02": "Adwa Victory Day", - "1984-04-20": "Orthodox Good Friday", - "1984-04-22": "Orthodox Easter Sunday", - "1984-05-01": "Labor Day", - "1984-05-05": "Patriots Day", + "1984-04-20": "Good Friday", + "1984-04-22": "Easter Sunday", + "1984-05-01": "Workers' Day", + "1984-05-05": "Patriots' Day", "1984-06-30": "Eid al-Fitr (estimated)", "1984-09-05": "Eid al-Adha (estimated)", - "1984-09-06": "Eid al-Adha (estimated)", - "1984-09-11": "Ethiopian New Year's Day", - "1984-09-12": "Downfall of King Haile Selassie Day", + "1984-09-11": "Ethiopian New Year", + "1984-09-12": "Revolution Day", "1984-09-27": "Finding of True Cross", + "1984-11-07": "October Revolution Day", "1984-12-04": "Prophet's Birthday (estimated)", - "1984-12-05": "Prophet's Birthday (estimated)", - "1985-01-07": "Orthodox Christmas Day", - "1985-01-19": "Orthodox Epiphany Day", + "1985-01-07": "Christmas Day", + "1985-01-19": "Epiphany Day", "1985-03-02": "Adwa Victory Day", - "1985-04-12": "Orthodox Good Friday", - "1985-04-14": "Orthodox Easter Sunday", - "1985-05-01": "Labor Day", - "1985-05-05": "Patriots Day", + "1985-04-12": "Good Friday", + "1985-04-14": "Easter Sunday", + "1985-05-01": "Workers' Day", + "1985-05-05": "Patriots' Day", "1985-06-19": "Eid al-Fitr (estimated)", "1985-08-26": "Eid al-Adha (estimated)", - "1985-08-27": "Eid al-Adha (estimated)", - "1985-09-11": "Ethiopian New Year's Day", - "1985-09-12": "Downfall of King Haile Selassie Day", + "1985-09-11": "Ethiopian New Year", + "1985-09-12": "Revolution Day", "1985-09-27": "Finding of True Cross", + "1985-11-07": "October Revolution Day", "1985-11-24": "Prophet's Birthday (estimated)", - "1985-11-25": "Prophet's Birthday (estimated)", - "1986-01-07": "Orthodox Christmas Day", - "1986-01-19": "Orthodox Epiphany Day", + "1986-01-07": "Christmas Day", + "1986-01-19": "Epiphany Day", "1986-03-02": "Adwa Victory Day", - "1986-05-01": "Labor Day", - "1986-05-02": "Orthodox Good Friday", - "1986-05-04": "Orthodox Easter Sunday", - "1986-05-05": "Patriots Day", + "1986-05-01": "Workers' Day", + "1986-05-02": "Good Friday", + "1986-05-04": "Easter Sunday", + "1986-05-05": "Patriots' Day", "1986-06-08": "Eid al-Fitr (estimated)", "1986-08-15": "Eid al-Adha (estimated)", - "1986-08-16": "Eid al-Adha (estimated)", - "1986-09-11": "Ethiopian New Year's Day", - "1986-09-12": "Downfall of King Haile Selassie Day", + "1986-09-11": "Ethiopian New Year", + "1986-09-12": "Revolution Day", "1986-09-27": "Finding of True Cross", + "1986-11-07": "October Revolution Day", "1986-11-14": "Prophet's Birthday (estimated)", - "1986-11-15": "Prophet's Birthday (estimated)", - "1987-01-07": "Orthodox Christmas Day", - "1987-01-19": "Orthodox Epiphany Day", + "1987-01-07": "Christmas Day", + "1987-01-19": "Epiphany Day", "1987-03-02": "Adwa Victory Day", - "1987-04-17": "Orthodox Good Friday", - "1987-04-19": "Orthodox Easter Sunday", - "1987-05-01": "Labor Day", - "1987-05-05": "Patriots Day", + "1987-04-17": "Good Friday", + "1987-04-19": "Easter Sunday", + "1987-05-01": "Workers' Day", + "1987-05-05": "Patriots' Day", "1987-05-28": "Eid al-Fitr (estimated)", "1987-08-04": "Eid al-Adha (estimated)", - "1987-08-05": "Eid al-Adha (estimated)", - "1987-09-12": "Ethiopian New Year's Day", - "1987-09-13": "Downfall of King Haile Selassie Day", + "1987-09-12": "Ethiopian New Year", + "1987-09-13": "Revolution Day", "1987-09-28": "Finding of True Cross", "1987-11-03": "Prophet's Birthday (estimated)", - "1987-11-04": "Prophet's Birthday (estimated)", - "1988-01-07": "Orthodox Christmas Day", - "1988-01-19": "Orthodox Epiphany Day", + "1987-11-07": "October Revolution Day", + "1988-01-07": "Christmas Day", + "1988-01-20": "Epiphany Day", "1988-03-02": "Adwa Victory Day", - "1988-04-08": "Orthodox Good Friday", - "1988-04-10": "Orthodox Easter Sunday", - "1988-05-01": "Labor Day", - "1988-05-05": "Patriots Day", + "1988-04-08": "Good Friday", + "1988-04-10": "Easter Sunday", + "1988-05-01": "Workers' Day", + "1988-05-05": "Patriots' Day", "1988-05-16": "Eid al-Fitr (estimated)", "1988-07-23": "Eid al-Adha (estimated)", - "1988-07-24": "Eid al-Adha (estimated)", - "1988-09-11": "Ethiopian New Year's Day", - "1988-09-12": "Downfall of King Haile Selassie Day", + "1988-09-11": "Ethiopian New Year", + "1988-09-12": "Revolution Day", "1988-09-27": "Finding of True Cross", "1988-10-22": "Prophet's Birthday (estimated)", - "1988-10-23": "Prophet's Birthday (estimated)", - "1989-01-07": "Orthodox Christmas Day", - "1989-01-19": "Orthodox Epiphany Day", + "1988-11-07": "October Revolution Day", + "1989-01-07": "Christmas Day", + "1989-01-19": "Epiphany Day", "1989-03-02": "Adwa Victory Day", - "1989-04-28": "Orthodox Good Friday", - "1989-04-30": "Orthodox Easter Sunday", - "1989-05-01": "Labor Day", - "1989-05-05": "Patriots Day", + "1989-04-28": "Good Friday", + "1989-04-30": "Easter Sunday", + "1989-05-01": "Workers' Day", + "1989-05-05": "Patriots' Day", "1989-05-06": "Eid al-Fitr (estimated)", "1989-07-13": "Eid al-Adha (estimated)", - "1989-07-14": "Eid al-Adha (estimated)", - "1989-09-11": "Ethiopian New Year's Day", - "1989-09-12": "Downfall of King Haile Selassie Day", + "1989-09-11": "Ethiopian New Year", + "1989-09-12": "Revolution Day", "1989-09-27": "Finding of True Cross", "1989-10-11": "Prophet's Birthday (estimated)", - "1989-10-12": "Prophet's Birthday (estimated)", - "1990-01-07": "Orthodox Christmas Day", - "1990-01-19": "Orthodox Epiphany Day", + "1989-11-07": "October Revolution Day", + "1990-01-07": "Christmas Day", + "1990-01-19": "Epiphany Day", "1990-03-02": "Adwa Victory Day", - "1990-04-13": "Orthodox Good Friday", - "1990-04-15": "Orthodox Easter Sunday", + "1990-04-13": "Good Friday", + "1990-04-15": "Easter Sunday", "1990-04-26": "Eid al-Fitr (estimated)", - "1990-05-01": "Labor Day", - "1990-05-05": "Patriots Day", + "1990-05-01": "Workers' Day", + "1990-05-05": "Patriots' Day", "1990-07-02": "Eid al-Adha (estimated)", - "1990-07-03": "Eid al-Adha (estimated)", - "1990-09-11": "Ethiopian New Year's Day", - "1990-09-12": "Downfall of King Haile Selassie Day", + "1990-09-11": "Ethiopian New Year", + "1990-09-12": "Revolution Day", "1990-09-27": "Finding of True Cross", "1990-10-01": "Prophet's Birthday (estimated)", - "1990-10-02": "Prophet's Birthday (estimated)", - "1991-01-07": "Orthodox Christmas Day", - "1991-01-19": "Orthodox Epiphany Day", + "1990-11-07": "October Revolution Day", + "1991-01-07": "Christmas Day", + "1991-01-19": "Epiphany Day", "1991-03-02": "Adwa Victory Day", - "1991-04-05": "Orthodox Good Friday", - "1991-04-07": "Orthodox Easter Sunday", + "1991-04-05": "Good Friday", + "1991-04-07": "Easter Sunday", "1991-04-15": "Eid al-Fitr (estimated)", - "1991-05-01": "Labor Day", - "1991-05-05": "Patriots Day", + "1991-05-01": "Workers' Day", + "1991-05-05": "Patriots' Day", "1991-06-22": "Eid al-Adha (estimated)", - "1991-06-23": "Eid al-Adha (estimated)", - "1991-09-12": "Ethiopian New Year's Day", + "1991-09-12": "Ethiopian New Year", "1991-09-20": "Prophet's Birthday (estimated)", - "1991-09-21": "Prophet's Birthday (estimated)", "1991-09-28": "Finding of True Cross", - "1992-01-07": "Orthodox Christmas Day", - "1992-01-19": "Orthodox Epiphany Day", + "1992-01-07": "Christmas Day", + "1992-01-20": "Epiphany Day", "1992-03-02": "Adwa Victory Day", "1992-04-04": "Eid al-Fitr (estimated)", - "1992-04-24": "Orthodox Good Friday", - "1992-04-26": "Orthodox Easter Sunday", - "1992-05-01": "Labor Day", - "1992-05-05": "Patriots Day", + "1992-04-24": "Good Friday", + "1992-04-26": "Easter Sunday", + "1992-05-01": "Workers' Day", + "1992-05-05": "Patriots' Day", "1992-05-28": "Downfall of Dergue Regime Day", "1992-06-11": "Eid al-Adha (estimated)", - "1992-06-12": "Eid al-Adha (estimated)", "1992-09-09": "Prophet's Birthday (estimated)", - "1992-09-10": "Prophet's Birthday (estimated)", - "1992-09-11": "Ethiopian New Year's Day", + "1992-09-11": "Ethiopian New Year", "1992-09-27": "Finding of True Cross", - "1993-01-07": "Orthodox Christmas Day", - "1993-01-19": "Orthodox Epiphany Day", + "1993-01-07": "Christmas Day", + "1993-01-19": "Epiphany Day", "1993-03-02": "Adwa Victory Day", "1993-03-24": "Eid al-Fitr (estimated)", - "1993-04-16": "Orthodox Good Friday", - "1993-04-18": "Orthodox Easter Sunday", - "1993-05-01": "Labor Day", - "1993-05-05": "Patriots Day", + "1993-04-16": "Good Friday", + "1993-04-18": "Easter Sunday", + "1993-05-01": "Workers' Day", + "1993-05-05": "Patriots' Day", "1993-05-28": "Downfall of Dergue Regime Day", "1993-05-31": "Eid al-Adha (estimated)", - "1993-06-01": "Eid al-Adha (estimated)", "1993-08-29": "Prophet's Birthday (estimated)", - "1993-08-30": "Prophet's Birthday (estimated)", - "1993-09-11": "Ethiopian New Year's Day", + "1993-09-11": "Ethiopian New Year", "1993-09-27": "Finding of True Cross", - "1994-01-07": "Orthodox Christmas Day", - "1994-01-19": "Orthodox Epiphany Day", + "1994-01-07": "Christmas Day", + "1994-01-19": "Epiphany Day", "1994-03-02": "Adwa Victory Day", "1994-03-13": "Eid al-Fitr (estimated)", - "1994-04-29": "Orthodox Good Friday", - "1994-05-01": "Labor Day; Orthodox Easter Sunday", - "1994-05-05": "Patriots Day", + "1994-04-29": "Good Friday", + "1994-05-01": "Easter Sunday; Workers' Day", + "1994-05-05": "Patriots' Day", "1994-05-20": "Eid al-Adha (estimated)", - "1994-05-21": "Eid al-Adha (estimated)", "1994-05-28": "Downfall of Dergue Regime Day", "1994-08-19": "Prophet's Birthday (estimated)", - "1994-08-20": "Prophet's Birthday (estimated)", - "1994-09-11": "Ethiopian New Year's Day", + "1994-09-11": "Ethiopian New Year", "1994-09-27": "Finding of True Cross", - "1995-01-07": "Orthodox Christmas Day", - "1995-01-19": "Orthodox Epiphany Day", + "1995-01-07": "Christmas Day", + "1995-01-19": "Epiphany Day", "1995-03-02": "Adwa Victory Day; Eid al-Fitr (estimated)", - "1995-04-21": "Orthodox Good Friday", - "1995-04-23": "Orthodox Easter Sunday", - "1995-05-01": "Labor Day", - "1995-05-05": "Patriots Day", + "1995-04-21": "Good Friday", + "1995-04-23": "Easter Sunday", + "1995-05-01": "Workers' Day", + "1995-05-05": "Patriots' Day", "1995-05-09": "Eid al-Adha (estimated)", - "1995-05-10": "Eid al-Adha (estimated)", "1995-05-28": "Downfall of Dergue Regime Day", "1995-08-08": "Prophet's Birthday (estimated)", - "1995-08-09": "Prophet's Birthday (estimated)", - "1995-09-12": "Ethiopian New Year's Day", + "1995-09-12": "Ethiopian New Year", "1995-09-28": "Finding of True Cross", - "1996-01-07": "Orthodox Christmas Day", - "1996-01-19": "Orthodox Epiphany Day", + "1996-01-07": "Christmas Day", + "1996-01-20": "Epiphany Day", "1996-02-19": "Eid al-Fitr (estimated)", "1996-03-02": "Adwa Victory Day", - "1996-04-12": "Orthodox Good Friday", - "1996-04-14": "Orthodox Easter Sunday", + "1996-04-12": "Good Friday", + "1996-04-14": "Easter Sunday", "1996-04-27": "Eid al-Adha (estimated)", - "1996-04-28": "Eid al-Adha (estimated)", - "1996-05-01": "Labor Day", - "1996-05-05": "Patriots Day", + "1996-05-01": "Workers' Day", + "1996-05-05": "Patriots' Day", "1996-05-28": "Downfall of Dergue Regime Day", "1996-07-27": "Prophet's Birthday (estimated)", - "1996-07-28": "Prophet's Birthday (estimated)", - "1996-09-11": "Ethiopian New Year's Day", + "1996-09-11": "Ethiopian New Year", "1996-09-27": "Finding of True Cross", - "1997-01-07": "Orthodox Christmas Day", - "1997-01-19": "Orthodox Epiphany Day", + "1997-01-07": "Christmas Day", + "1997-01-19": "Epiphany Day", "1997-02-08": "Eid al-Fitr (estimated)", "1997-03-02": "Adwa Victory Day", "1997-04-17": "Eid al-Adha (estimated)", - "1997-04-18": "Eid al-Adha (estimated)", - "1997-04-25": "Orthodox Good Friday", - "1997-04-27": "Orthodox Easter Sunday", - "1997-05-01": "Labor Day", - "1997-05-05": "Patriots Day", + "1997-04-25": "Good Friday", + "1997-04-27": "Easter Sunday", + "1997-05-01": "Workers' Day", + "1997-05-05": "Patriots' Day", "1997-05-28": "Downfall of Dergue Regime Day", "1997-07-16": "Prophet's Birthday (estimated)", - "1997-07-17": "Prophet's Birthday (estimated)", - "1997-09-11": "Ethiopian New Year's Day", + "1997-09-11": "Ethiopian New Year", "1997-09-27": "Finding of True Cross", - "1998-01-07": "Orthodox Christmas Day", - "1998-01-19": "Orthodox Epiphany Day", + "1998-01-07": "Christmas Day", + "1998-01-19": "Epiphany Day", "1998-01-29": "Eid al-Fitr (estimated)", "1998-03-02": "Adwa Victory Day", "1998-04-07": "Eid al-Adha (estimated)", - "1998-04-08": "Eid al-Adha (estimated)", - "1998-04-17": "Orthodox Good Friday", - "1998-04-19": "Orthodox Easter Sunday", - "1998-05-01": "Labor Day", - "1998-05-05": "Patriots Day", + "1998-04-17": "Good Friday", + "1998-04-19": "Easter Sunday", + "1998-05-01": "Workers' Day", + "1998-05-05": "Patriots' Day", "1998-05-28": "Downfall of Dergue Regime Day", "1998-07-06": "Prophet's Birthday (estimated)", - "1998-07-07": "Prophet's Birthday (estimated)", - "1998-09-11": "Ethiopian New Year's Day", + "1998-09-11": "Ethiopian New Year", "1998-09-27": "Finding of True Cross", - "1999-01-07": "Orthodox Christmas Day", + "1999-01-07": "Christmas Day", "1999-01-18": "Eid al-Fitr (estimated)", - "1999-01-19": "Orthodox Epiphany Day", + "1999-01-19": "Epiphany Day", "1999-03-02": "Adwa Victory Day", "1999-03-27": "Eid al-Adha (estimated)", - "1999-03-28": "Eid al-Adha (estimated)", - "1999-04-09": "Orthodox Good Friday", - "1999-04-11": "Orthodox Easter Sunday", - "1999-05-01": "Labor Day", - "1999-05-05": "Patriots Day", + "1999-04-09": "Good Friday", + "1999-04-11": "Easter Sunday", + "1999-05-01": "Workers' Day", + "1999-05-05": "Patriots' Day", "1999-05-28": "Downfall of Dergue Regime Day", "1999-06-26": "Prophet's Birthday (estimated)", - "1999-06-27": "Prophet's Birthday (estimated)", - "1999-09-12": "Ethiopian New Year's Day", + "1999-09-12": "Ethiopian New Year", "1999-09-28": "Finding of True Cross", - "2000-01-07": "Orthodox Christmas Day", + "2000-01-07": "Christmas Day", "2000-01-08": "Eid al-Fitr (estimated)", - "2000-01-19": "Orthodox Epiphany Day", + "2000-01-20": "Epiphany Day", "2000-03-02": "Adwa Victory Day", "2000-03-16": "Eid al-Adha (estimated)", - "2000-03-17": "Eid al-Adha (estimated)", - "2000-04-28": "Orthodox Good Friday", - "2000-04-30": "Orthodox Easter Sunday", - "2000-05-01": "Labor Day", - "2000-05-05": "Patriots Day", + "2000-04-28": "Good Friday", + "2000-04-30": "Easter Sunday", + "2000-05-01": "Workers' Day", + "2000-05-05": "Patriots' Day", "2000-05-28": "Downfall of Dergue Regime Day", "2000-06-14": "Prophet's Birthday (estimated)", - "2000-06-15": "Prophet's Birthday (estimated)", - "2000-09-11": "Ethiopian New Year's Day", + "2000-09-11": "Ethiopian New Year", "2000-09-27": "Finding of True Cross", "2000-12-27": "Eid al-Fitr (estimated)", - "2001-01-07": "Orthodox Christmas Day", - "2001-01-19": "Orthodox Epiphany Day", + "2001-01-07": "Christmas Day", + "2001-01-19": "Epiphany Day", "2001-03-02": "Adwa Victory Day", "2001-03-05": "Eid al-Adha (estimated)", - "2001-03-06": "Eid al-Adha (estimated)", - "2001-04-13": "Orthodox Good Friday", - "2001-04-15": "Orthodox Easter Sunday", - "2001-05-01": "Labor Day", - "2001-05-05": "Patriots Day", + "2001-04-13": "Good Friday", + "2001-04-15": "Easter Sunday", + "2001-05-01": "Workers' Day", + "2001-05-05": "Patriots' Day", "2001-05-28": "Downfall of Dergue Regime Day", "2001-06-04": "Prophet's Birthday (estimated)", - "2001-06-05": "Prophet's Birthday (estimated)", - "2001-09-11": "Ethiopian New Year's Day", + "2001-09-11": "Ethiopian New Year", "2001-09-27": "Finding of True Cross", "2001-12-16": "Eid al-Fitr (estimated)", - "2002-01-07": "Orthodox Christmas Day", - "2002-01-19": "Orthodox Epiphany Day", + "2002-01-07": "Christmas Day", + "2002-01-19": "Epiphany Day", "2002-02-22": "Eid al-Adha (estimated)", - "2002-02-23": "Eid al-Adha (estimated)", "2002-03-02": "Adwa Victory Day", - "2002-05-01": "Labor Day", - "2002-05-03": "Orthodox Good Friday", - "2002-05-05": "Orthodox Easter Sunday; Patriots Day", + "2002-05-01": "Workers' Day", + "2002-05-03": "Good Friday", + "2002-05-05": "Easter Sunday; Patriots' Day", "2002-05-24": "Prophet's Birthday (estimated)", - "2002-05-25": "Prophet's Birthday (estimated)", "2002-05-28": "Downfall of Dergue Regime Day", - "2002-09-11": "Ethiopian New Year's Day", + "2002-09-11": "Ethiopian New Year", "2002-09-27": "Finding of True Cross", "2002-12-05": "Eid al-Fitr (estimated)", - "2003-01-07": "Orthodox Christmas Day", - "2003-01-19": "Orthodox Epiphany Day", + "2003-01-07": "Christmas Day", + "2003-01-19": "Epiphany Day", "2003-02-11": "Eid al-Adha (estimated)", - "2003-02-12": "Eid al-Adha (estimated)", "2003-03-02": "Adwa Victory Day", - "2003-04-25": "Orthodox Good Friday", - "2003-04-27": "Orthodox Easter Sunday", - "2003-05-01": "Labor Day", - "2003-05-05": "Patriots Day", + "2003-04-25": "Good Friday", + "2003-04-27": "Easter Sunday", + "2003-05-01": "Workers' Day", + "2003-05-05": "Patriots' Day", "2003-05-13": "Prophet's Birthday (estimated)", - "2003-05-14": "Prophet's Birthday (estimated)", "2003-05-28": "Downfall of Dergue Regime Day", - "2003-09-12": "Ethiopian New Year's Day", + "2003-09-12": "Ethiopian New Year", "2003-09-28": "Finding of True Cross", "2003-11-25": "Eid al-Fitr (estimated)", - "2004-01-07": "Orthodox Christmas Day", - "2004-01-19": "Orthodox Epiphany Day", + "2004-01-07": "Christmas Day", + "2004-01-20": "Epiphany Day", "2004-02-01": "Eid al-Adha (estimated)", - "2004-02-02": "Eid al-Adha (estimated)", "2004-03-02": "Adwa Victory Day", - "2004-04-09": "Orthodox Good Friday", - "2004-04-11": "Orthodox Easter Sunday", - "2004-05-01": "Labor Day; Prophet's Birthday (estimated)", - "2004-05-02": "Prophet's Birthday (estimated)", - "2004-05-05": "Patriots Day", + "2004-04-09": "Good Friday", + "2004-04-11": "Easter Sunday", + "2004-05-01": "Prophet's Birthday (estimated); Workers' Day", + "2004-05-05": "Patriots' Day", "2004-05-28": "Downfall of Dergue Regime Day", - "2004-09-11": "Ethiopian New Year's Day", + "2004-09-11": "Ethiopian New Year", "2004-09-27": "Finding of True Cross", "2004-11-14": "Eid al-Fitr (estimated)", - "2005-01-07": "Orthodox Christmas Day", - "2005-01-19": "Orthodox Epiphany Day", + "2005-01-07": "Christmas Day", + "2005-01-19": "Epiphany Day", "2005-01-21": "Eid al-Adha (estimated)", - "2005-01-22": "Eid al-Adha (estimated)", "2005-03-02": "Adwa Victory Day", "2005-04-21": "Prophet's Birthday (estimated)", - "2005-04-22": "Prophet's Birthday (estimated)", - "2005-04-29": "Orthodox Good Friday", - "2005-05-01": "Labor Day; Orthodox Easter Sunday", - "2005-05-05": "Patriots Day", + "2005-04-29": "Good Friday", + "2005-05-01": "Easter Sunday; Workers' Day", + "2005-05-05": "Patriots' Day", "2005-05-28": "Downfall of Dergue Regime Day", - "2005-09-11": "Ethiopian New Year's Day", + "2005-09-11": "Ethiopian New Year", "2005-09-27": "Finding of True Cross", "2005-11-03": "Eid al-Fitr (estimated)", - "2006-01-07": "Orthodox Christmas Day", + "2006-01-07": "Christmas Day", "2006-01-10": "Eid al-Adha (estimated)", - "2006-01-11": "Eid al-Adha (estimated)", - "2006-01-19": "Orthodox Epiphany Day", + "2006-01-19": "Epiphany Day", "2006-03-02": "Adwa Victory Day", "2006-04-10": "Prophet's Birthday (estimated)", - "2006-04-11": "Prophet's Birthday (estimated)", - "2006-04-21": "Orthodox Good Friday", - "2006-04-23": "Orthodox Easter Sunday", - "2006-05-01": "Labor Day", - "2006-05-05": "Patriots Day", + "2006-04-21": "Good Friday", + "2006-04-23": "Easter Sunday", + "2006-05-01": "Workers' Day", + "2006-05-05": "Patriots' Day", "2006-05-28": "Downfall of Dergue Regime Day", - "2006-09-11": "Ethiopian New Year's Day", + "2006-09-11": "Ethiopian New Year", "2006-09-27": "Finding of True Cross", "2006-10-23": "Eid al-Fitr (estimated)", "2006-12-31": "Eid al-Adha (estimated)", - "2007-01-01": "Eid al-Adha (estimated)", - "2007-01-07": "Orthodox Christmas Day", - "2007-01-19": "Orthodox Epiphany Day", + "2007-01-07": "Christmas Day", + "2007-01-19": "Epiphany Day", "2007-03-02": "Adwa Victory Day", "2007-03-31": "Prophet's Birthday (estimated)", - "2007-04-01": "Prophet's Birthday (estimated)", - "2007-04-06": "Orthodox Good Friday", - "2007-04-08": "Orthodox Easter Sunday", - "2007-05-01": "Labor Day", - "2007-05-05": "Patriots Day", + "2007-04-06": "Good Friday", + "2007-04-08": "Easter Sunday", + "2007-05-01": "Workers' Day", + "2007-05-05": "Patriots' Day", "2007-05-28": "Downfall of Dergue Regime Day", - "2007-09-12": "Ethiopian New Year's Day", + "2007-09-12": "Ethiopian New Year", "2007-09-28": "Finding of True Cross", "2007-10-13": "Eid al-Fitr (estimated)", "2007-12-20": "Eid al-Adha (estimated)", - "2007-12-21": "Eid al-Adha (estimated)", - "2008-01-07": "Orthodox Christmas Day", - "2008-01-19": "Orthodox Epiphany Day", + "2008-01-07": "Christmas Day", + "2008-01-20": "Epiphany Day", "2008-03-02": "Adwa Victory Day", "2008-03-20": "Prophet's Birthday (estimated)", - "2008-03-21": "Prophet's Birthday (estimated)", - "2008-04-25": "Orthodox Good Friday", - "2008-04-27": "Orthodox Easter Sunday", - "2008-05-01": "Labor Day", - "2008-05-05": "Patriots Day", + "2008-04-25": "Good Friday", + "2008-04-27": "Easter Sunday", + "2008-05-01": "Workers' Day", + "2008-05-05": "Patriots' Day", "2008-05-28": "Downfall of Dergue Regime Day", - "2008-09-11": "Ethiopian New Year's Day", + "2008-09-11": "Ethiopian New Year", "2008-09-27": "Finding of True Cross", "2008-10-01": "Eid al-Fitr (estimated)", "2008-12-08": "Eid al-Adha (estimated)", - "2008-12-09": "Eid al-Adha (estimated)", - "2009-01-07": "Orthodox Christmas Day", - "2009-01-19": "Orthodox Epiphany Day", + "2009-01-07": "Christmas Day", + "2009-01-19": "Epiphany Day", "2009-03-02": "Adwa Victory Day", "2009-03-09": "Prophet's Birthday (estimated)", - "2009-03-10": "Prophet's Birthday (estimated)", - "2009-04-17": "Orthodox Good Friday", - "2009-04-19": "Orthodox Easter Sunday", - "2009-05-01": "Labor Day", - "2009-05-05": "Patriots Day", + "2009-04-17": "Good Friday", + "2009-04-19": "Easter Sunday", + "2009-05-01": "Workers' Day", + "2009-05-05": "Patriots' Day", "2009-05-28": "Downfall of Dergue Regime Day", - "2009-09-11": "Ethiopian New Year's Day", + "2009-09-11": "Ethiopian New Year", "2009-09-20": "Eid al-Fitr (estimated)", "2009-09-27": "Finding of True Cross", "2009-11-27": "Eid al-Adha (estimated)", - "2009-11-28": "Eid al-Adha (estimated)", - "2010-01-07": "Orthodox Christmas Day", - "2010-01-19": "Orthodox Epiphany Day", + "2010-01-07": "Christmas Day", + "2010-01-19": "Epiphany Day", "2010-02-26": "Prophet's Birthday (estimated)", - "2010-02-27": "Prophet's Birthday (estimated)", "2010-03-02": "Adwa Victory Day", - "2010-04-02": "Orthodox Good Friday", - "2010-04-04": "Orthodox Easter Sunday", - "2010-05-01": "Labor Day", - "2010-05-05": "Patriots Day", + "2010-04-02": "Good Friday", + "2010-04-04": "Easter Sunday", + "2010-05-01": "Workers' Day", + "2010-05-05": "Patriots' Day", "2010-05-28": "Downfall of Dergue Regime Day", "2010-09-10": "Eid al-Fitr (estimated)", - "2010-09-11": "Ethiopian New Year's Day", + "2010-09-11": "Ethiopian New Year", "2010-09-27": "Finding of True Cross", "2010-11-16": "Eid al-Adha (estimated)", - "2010-11-17": "Eid al-Adha (estimated)", - "2011-01-07": "Orthodox Christmas Day", - "2011-01-19": "Orthodox Epiphany Day", + "2011-01-07": "Christmas Day", + "2011-01-19": "Epiphany Day", "2011-02-15": "Prophet's Birthday (estimated)", - "2011-02-16": "Prophet's Birthday (estimated)", "2011-03-02": "Adwa Victory Day", - "2011-04-22": "Orthodox Good Friday", - "2011-04-24": "Orthodox Easter Sunday", - "2011-05-01": "Labor Day", - "2011-05-05": "Patriots Day", + "2011-04-22": "Good Friday", + "2011-04-24": "Easter Sunday", + "2011-05-01": "Workers' Day", + "2011-05-05": "Patriots' Day", "2011-05-28": "Downfall of Dergue Regime Day", "2011-08-30": "Eid al-Fitr (estimated)", - "2011-09-12": "Ethiopian New Year's Day", + "2011-09-12": "Ethiopian New Year", "2011-09-28": "Finding of True Cross", "2011-11-06": "Eid al-Adha (estimated)", - "2011-11-07": "Eid al-Adha (estimated)", - "2012-01-07": "Orthodox Christmas Day", - "2012-01-19": "Orthodox Epiphany Day", + "2012-01-07": "Christmas Day", + "2012-01-20": "Epiphany Day", "2012-02-04": "Prophet's Birthday (estimated)", - "2012-02-05": "Prophet's Birthday (estimated)", "2012-03-02": "Adwa Victory Day", - "2012-04-13": "Orthodox Good Friday", - "2012-04-15": "Orthodox Easter Sunday", - "2012-05-01": "Labor Day", - "2012-05-05": "Patriots Day", + "2012-04-13": "Good Friday", + "2012-04-15": "Easter Sunday", + "2012-05-01": "Workers' Day", + "2012-05-05": "Patriots' Day", "2012-05-28": "Downfall of Dergue Regime Day", "2012-08-19": "Eid al-Fitr (estimated)", - "2012-09-11": "Ethiopian New Year's Day", + "2012-09-11": "Ethiopian New Year", "2012-09-27": "Finding of True Cross", "2012-10-26": "Eid al-Adha (estimated)", - "2012-10-27": "Eid al-Adha (estimated)", - "2013-01-07": "Orthodox Christmas Day", - "2013-01-19": "Orthodox Epiphany Day", + "2013-01-07": "Christmas Day", + "2013-01-19": "Epiphany Day", "2013-01-24": "Prophet's Birthday (estimated)", - "2013-01-25": "Prophet's Birthday (estimated)", "2013-03-02": "Adwa Victory Day", - "2013-05-01": "Labor Day", - "2013-05-03": "Orthodox Good Friday", - "2013-05-05": "Orthodox Easter Sunday; Patriots Day", + "2013-05-01": "Workers' Day", + "2013-05-03": "Good Friday", + "2013-05-05": "Easter Sunday; Patriots' Day", "2013-05-28": "Downfall of Dergue Regime Day", "2013-08-08": "Eid al-Fitr (estimated)", - "2013-09-11": "Ethiopian New Year's Day", + "2013-09-11": "Ethiopian New Year", "2013-09-27": "Finding of True Cross", "2013-10-15": "Eid al-Adha (estimated)", - "2013-10-16": "Eid al-Adha (estimated)", - "2014-01-07": "Orthodox Christmas Day", + "2014-01-07": "Christmas Day", "2014-01-13": "Prophet's Birthday (estimated)", - "2014-01-14": "Prophet's Birthday (estimated)", - "2014-01-19": "Orthodox Epiphany Day", + "2014-01-19": "Epiphany Day", "2014-03-02": "Adwa Victory Day", - "2014-04-18": "Orthodox Good Friday", - "2014-04-20": "Orthodox Easter Sunday", - "2014-05-01": "Labor Day", - "2014-05-05": "Patriots Day", + "2014-04-18": "Good Friday", + "2014-04-20": "Easter Sunday", + "2014-05-01": "Workers' Day", + "2014-05-05": "Patriots' Day", "2014-05-28": "Downfall of Dergue Regime Day", "2014-07-28": "Eid al-Fitr (estimated)", - "2014-09-11": "Ethiopian New Year's Day", + "2014-09-11": "Ethiopian New Year", "2014-09-27": "Finding of True Cross", "2014-10-04": "Eid al-Adha (estimated)", - "2014-10-05": "Eid al-Adha (estimated)", "2015-01-03": "Prophet's Birthday (estimated)", - "2015-01-04": "Prophet's Birthday (estimated)", - "2015-01-07": "Orthodox Christmas Day", - "2015-01-19": "Orthodox Epiphany Day", + "2015-01-07": "Christmas Day", + "2015-01-19": "Epiphany Day", "2015-03-02": "Adwa Victory Day", - "2015-04-10": "Orthodox Good Friday", - "2015-04-12": "Orthodox Easter Sunday", - "2015-05-01": "Labor Day", - "2015-05-05": "Patriots Day", + "2015-04-10": "Good Friday", + "2015-04-12": "Easter Sunday", + "2015-05-01": "Workers' Day", + "2015-05-05": "Patriots' Day", "2015-05-28": "Downfall of Dergue Regime Day", "2015-07-17": "Eid al-Fitr (estimated)", - "2015-09-12": "Ethiopian New Year's Day", + "2015-09-12": "Ethiopian New Year", "2015-09-23": "Eid al-Adha (estimated)", - "2015-09-24": "Eid al-Adha (estimated)", "2015-09-28": "Finding of True Cross", "2015-12-23": "Prophet's Birthday (estimated)", - "2015-12-24": "Prophet's Birthday (estimated)", - "2016-01-07": "Orthodox Christmas Day", - "2016-01-19": "Orthodox Epiphany Day", + "2016-01-07": "Christmas Day", + "2016-01-20": "Epiphany Day", "2016-03-02": "Adwa Victory Day", - "2016-04-29": "Orthodox Good Friday", - "2016-05-01": "Labor Day; Orthodox Easter Sunday", - "2016-05-05": "Patriots Day", + "2016-04-29": "Good Friday", + "2016-05-01": "Easter Sunday; Workers' Day", + "2016-05-05": "Patriots' Day", "2016-05-28": "Downfall of Dergue Regime Day", "2016-07-06": "Eid al-Fitr (estimated)", - "2016-09-11": "Eid al-Adha (estimated); Ethiopian New Year's Day", - "2016-09-12": "Eid al-Adha (estimated)", + "2016-09-11": "Eid al-Adha (estimated); Ethiopian New Year", "2016-09-27": "Finding of True Cross", "2016-12-11": "Prophet's Birthday (estimated)", - "2016-12-12": "Prophet's Birthday (estimated)", - "2017-01-07": "Orthodox Christmas Day", - "2017-01-19": "Orthodox Epiphany Day", + "2017-01-07": "Christmas Day", + "2017-01-19": "Epiphany Day", "2017-03-02": "Adwa Victory Day", - "2017-04-14": "Orthodox Good Friday", - "2017-04-16": "Orthodox Easter Sunday", - "2017-05-01": "Labor Day", - "2017-05-05": "Patriots Day", + "2017-04-14": "Good Friday", + "2017-04-16": "Easter Sunday", + "2017-05-01": "Workers' Day", + "2017-05-05": "Patriots' Day", "2017-05-28": "Downfall of Dergue Regime Day", "2017-06-25": "Eid al-Fitr (estimated)", "2017-09-01": "Eid al-Adha (estimated)", - "2017-09-02": "Eid al-Adha (estimated)", - "2017-09-11": "Ethiopian New Year's Day", + "2017-09-11": "Ethiopian New Year", "2017-09-27": "Finding of True Cross", "2017-11-30": "Prophet's Birthday (estimated)", - "2017-12-01": "Prophet's Birthday (estimated)", - "2018-01-07": "Orthodox Christmas Day", - "2018-01-19": "Orthodox Epiphany Day", + "2018-01-07": "Christmas Day", + "2018-01-19": "Epiphany Day", "2018-03-02": "Adwa Victory Day", - "2018-04-06": "Orthodox Good Friday", - "2018-04-08": "Orthodox Easter Sunday", - "2018-05-01": "Labor Day", - "2018-05-05": "Patriots Day", + "2018-04-06": "Good Friday", + "2018-04-08": "Easter Sunday", + "2018-05-01": "Workers' Day", + "2018-05-05": "Patriots' Day", "2018-05-28": "Downfall of Dergue Regime Day", - "2018-06-15": "Eid al-Fitr (estimated)", - "2018-08-21": "Eid al-Adha (estimated)", - "2018-08-22": "Eid al-Adha (estimated)", - "2018-09-11": "Ethiopian New Year's Day", + "2018-06-15": "Eid al-Fitr", + "2018-08-22": "Eid al-Adha", + "2018-09-11": "Ethiopian New Year", "2018-09-27": "Finding of True Cross", - "2018-11-20": "Prophet's Birthday (estimated)", - "2018-11-21": "Prophet's Birthday (estimated)", - "2019-01-07": "Orthodox Christmas Day", - "2019-01-19": "Orthodox Epiphany Day", + "2018-11-21": "Prophet's Birthday", + "2019-01-07": "Christmas Day", + "2019-01-19": "Epiphany Day", "2019-03-02": "Adwa Victory Day", - "2019-04-26": "Orthodox Good Friday", - "2019-04-28": "Orthodox Easter Sunday", - "2019-05-01": "Labor Day", - "2019-05-05": "Patriots Day", + "2019-04-26": "Good Friday", + "2019-04-28": "Easter Sunday", + "2019-05-01": "Workers' Day", + "2019-05-05": "Patriots' Day", "2019-05-28": "Downfall of Dergue Regime Day", - "2019-06-04": "Eid al-Fitr (estimated)", - "2019-08-11": "Eid al-Adha (estimated)", - "2019-08-12": "Eid al-Adha (estimated)", - "2019-09-12": "Ethiopian New Year's Day", + "2019-06-04": "Eid al-Fitr", + "2019-08-11": "Eid al-Adha", + "2019-09-12": "Ethiopian New Year", "2019-09-28": "Finding of True Cross", - "2019-11-09": "Prophet's Birthday (estimated)", - "2019-11-10": "Prophet's Birthday (estimated)", - "2020-01-07": "Orthodox Christmas Day", - "2020-01-19": "Orthodox Epiphany Day", + "2019-11-10": "Prophet's Birthday", + "2020-01-07": "Christmas Day", + "2020-01-20": "Epiphany Day", "2020-03-02": "Adwa Victory Day", - "2020-04-17": "Orthodox Good Friday", - "2020-04-19": "Orthodox Easter Sunday", - "2020-05-01": "Labor Day", - "2020-05-05": "Patriots Day", - "2020-05-24": "Eid al-Fitr (estimated)", + "2020-04-17": "Good Friday", + "2020-04-19": "Easter Sunday", + "2020-05-01": "Workers' Day", + "2020-05-05": "Patriots' Day", + "2020-05-24": "Eid al-Fitr", "2020-05-28": "Downfall of Dergue Regime Day", - "2020-07-31": "Eid al-Adha (estimated)", - "2020-08-01": "Eid al-Adha (estimated)", - "2020-09-11": "Ethiopian New Year's Day", + "2020-07-31": "Eid al-Adha", + "2020-09-11": "Ethiopian New Year", "2020-09-27": "Finding of True Cross", - "2020-10-29": "Prophet's Birthday (estimated)", - "2020-10-30": "Prophet's Birthday (estimated)", - "2021-01-07": "Orthodox Christmas Day", - "2021-01-19": "Orthodox Epiphany Day", + "2020-10-29": "Prophet's Birthday", + "2021-01-07": "Christmas Day", + "2021-01-19": "Epiphany Day", "2021-03-02": "Adwa Victory Day", - "2021-04-30": "Orthodox Good Friday", - "2021-05-01": "Labor Day", - "2021-05-02": "Orthodox Easter Sunday", - "2021-05-05": "Patriots Day", - "2021-05-13": "Eid al-Fitr (estimated)", + "2021-04-30": "Good Friday", + "2021-05-01": "Workers' Day", + "2021-05-02": "Easter Sunday", + "2021-05-05": "Patriots' Day", + "2021-05-13": "Eid al-Fitr", "2021-05-28": "Downfall of Dergue Regime Day", - "2021-07-20": "Eid al-Adha (estimated)", - "2021-07-21": "Eid al-Adha (estimated)", - "2021-09-11": "Ethiopian New Year's Day", + "2021-07-20": "Eid al-Adha", + "2021-09-11": "Ethiopian New Year", "2021-09-27": "Finding of True Cross", - "2021-10-18": "Prophet's Birthday (estimated)", - "2021-10-19": "Prophet's Birthday (estimated)", - "2022-01-07": "Orthodox Christmas Day", - "2022-01-19": "Orthodox Epiphany Day", + "2021-10-18": "Prophet's Birthday", + "2022-01-07": "Christmas Day", + "2022-01-19": "Epiphany Day", "2022-03-02": "Adwa Victory Day", - "2022-04-22": "Orthodox Good Friday", - "2022-04-24": "Orthodox Easter Sunday", - "2022-05-01": "Labor Day", - "2022-05-02": "Eid al-Fitr (estimated)", - "2022-05-05": "Patriots Day", + "2022-04-22": "Good Friday", + "2022-04-24": "Easter Sunday", + "2022-05-01": "Workers' Day", + "2022-05-02": "Eid al-Fitr", + "2022-05-05": "Patriots' Day", "2022-05-28": "Downfall of Dergue Regime Day", - "2022-07-09": "Eid al-Adha (estimated)", - "2022-07-10": "Eid al-Adha (estimated)", - "2022-09-11": "Ethiopian New Year's Day", + "2022-07-09": "Eid al-Adha", + "2022-09-11": "Ethiopian New Year", "2022-09-27": "Finding of True Cross", - "2022-10-08": "Prophet's Birthday (estimated)", - "2022-10-09": "Prophet's Birthday (estimated)", - "2023-01-07": "Orthodox Christmas Day", - "2023-01-19": "Orthodox Epiphany Day", + "2022-10-08": "Prophet's Birthday", + "2023-01-07": "Christmas Day", + "2023-01-19": "Epiphany Day", "2023-03-02": "Adwa Victory Day", - "2023-04-14": "Orthodox Good Friday", - "2023-04-16": "Orthodox Easter Sunday", - "2023-04-21": "Eid al-Fitr (estimated)", - "2023-05-01": "Labor Day", - "2023-05-05": "Patriots Day", + "2023-04-14": "Good Friday", + "2023-04-16": "Easter Sunday", + "2023-04-21": "Eid al-Fitr", + "2023-05-01": "Workers' Day", + "2023-05-05": "Patriots' Day", "2023-05-28": "Downfall of Dergue Regime Day", - "2023-06-28": "Eid al-Adha (estimated)", - "2023-06-29": "Eid al-Adha (estimated)", - "2023-09-12": "Ethiopian New Year's Day", - "2023-09-27": "Prophet's Birthday (estimated)", - "2023-09-28": "Finding of True Cross; Prophet's Birthday (estimated)", - "2024-01-07": "Orthodox Christmas Day", - "2024-01-19": "Orthodox Epiphany Day", + "2023-06-28": "Eid al-Adha", + "2023-09-12": "Ethiopian New Year", + "2023-09-27": "Prophet's Birthday", + "2023-09-28": "Finding of True Cross", + "2024-01-07": "Christmas Day", + "2024-01-20": "Epiphany Day", "2024-03-02": "Adwa Victory Day", "2024-04-10": "Eid al-Fitr (estimated)", - "2024-05-01": "Labor Day", - "2024-05-03": "Orthodox Good Friday", - "2024-05-05": "Orthodox Easter Sunday; Patriots Day", + "2024-05-01": "Workers' Day", + "2024-05-03": "Good Friday", + "2024-05-05": "Easter Sunday; Patriots' Day", "2024-05-28": "Downfall of Dergue Regime Day", "2024-06-16": "Eid al-Adha (estimated)", - "2024-06-17": "Eid al-Adha (estimated)", - "2024-09-11": "Ethiopian New Year's Day", + "2024-09-11": "Ethiopian New Year", "2024-09-15": "Prophet's Birthday (estimated)", - "2024-09-16": "Prophet's Birthday (estimated)", "2024-09-27": "Finding of True Cross", - "2025-01-07": "Orthodox Christmas Day", - "2025-01-19": "Orthodox Epiphany Day", + "2025-01-07": "Christmas Day", + "2025-01-19": "Epiphany Day", "2025-03-02": "Adwa Victory Day", "2025-03-30": "Eid al-Fitr (estimated)", - "2025-04-18": "Orthodox Good Friday", - "2025-04-20": "Orthodox Easter Sunday", - "2025-05-01": "Labor Day", - "2025-05-05": "Patriots Day", + "2025-04-18": "Good Friday", + "2025-04-20": "Easter Sunday", + "2025-05-01": "Workers' Day", + "2025-05-05": "Patriots' Day", "2025-05-28": "Downfall of Dergue Regime Day", "2025-06-06": "Eid al-Adha (estimated)", - "2025-06-07": "Eid al-Adha (estimated)", "2025-09-04": "Prophet's Birthday (estimated)", - "2025-09-05": "Prophet's Birthday (estimated)", - "2025-09-11": "Ethiopian New Year's Day", + "2025-09-11": "Ethiopian New Year", "2025-09-27": "Finding of True Cross", - "2026-01-07": "Orthodox Christmas Day", - "2026-01-19": "Orthodox Epiphany Day", + "2026-01-07": "Christmas Day", + "2026-01-19": "Epiphany Day", "2026-03-02": "Adwa Victory Day", "2026-03-20": "Eid al-Fitr (estimated)", - "2026-04-10": "Orthodox Good Friday", - "2026-04-12": "Orthodox Easter Sunday", - "2026-05-01": "Labor Day", - "2026-05-05": "Patriots Day", + "2026-04-10": "Good Friday", + "2026-04-12": "Easter Sunday", + "2026-05-01": "Workers' Day", + "2026-05-05": "Patriots' Day", "2026-05-27": "Eid al-Adha (estimated)", - "2026-05-28": "Downfall of Dergue Regime Day; Eid al-Adha (estimated)", + "2026-05-28": "Downfall of Dergue Regime Day", "2026-08-25": "Prophet's Birthday (estimated)", - "2026-08-26": "Prophet's Birthday (estimated)", - "2026-09-11": "Ethiopian New Year's Day", + "2026-09-11": "Ethiopian New Year", "2026-09-27": "Finding of True Cross", - "2027-01-07": "Orthodox Christmas Day", - "2027-01-19": "Orthodox Epiphany Day", + "2027-01-07": "Christmas Day", + "2027-01-19": "Epiphany Day", "2027-03-02": "Adwa Victory Day", "2027-03-09": "Eid al-Fitr (estimated)", - "2027-04-30": "Orthodox Good Friday", - "2027-05-01": "Labor Day", - "2027-05-02": "Orthodox Easter Sunday", - "2027-05-05": "Patriots Day", + "2027-04-30": "Good Friday", + "2027-05-01": "Workers' Day", + "2027-05-02": "Easter Sunday", + "2027-05-05": "Patriots' Day", "2027-05-16": "Eid al-Adha (estimated)", - "2027-05-17": "Eid al-Adha (estimated)", "2027-05-28": "Downfall of Dergue Regime Day", "2027-08-14": "Prophet's Birthday (estimated)", - "2027-08-15": "Prophet's Birthday (estimated)", - "2027-09-12": "Ethiopian New Year's Day", + "2027-09-12": "Ethiopian New Year", "2027-09-28": "Finding of True Cross", - "2028-01-07": "Orthodox Christmas Day", - "2028-01-19": "Orthodox Epiphany Day", + "2028-01-07": "Christmas Day", + "2028-01-20": "Epiphany Day", "2028-02-26": "Eid al-Fitr (estimated)", "2028-03-02": "Adwa Victory Day", - "2028-04-14": "Orthodox Good Friday", - "2028-04-16": "Orthodox Easter Sunday", - "2028-05-01": "Labor Day", - "2028-05-05": "Eid al-Adha (estimated); Patriots Day", - "2028-05-06": "Eid al-Adha (estimated)", + "2028-04-14": "Good Friday", + "2028-04-16": "Easter Sunday", + "2028-05-01": "Workers' Day", + "2028-05-05": "Eid al-Adha (estimated); Patriots' Day", "2028-05-28": "Downfall of Dergue Regime Day", "2028-08-03": "Prophet's Birthday (estimated)", - "2028-08-04": "Prophet's Birthday (estimated)", - "2028-09-11": "Ethiopian New Year's Day", + "2028-09-11": "Ethiopian New Year", "2028-09-27": "Finding of True Cross", - "2029-01-07": "Orthodox Christmas Day", - "2029-01-19": "Orthodox Epiphany Day", + "2029-01-07": "Christmas Day", + "2029-01-19": "Epiphany Day", "2029-02-14": "Eid al-Fitr (estimated)", "2029-03-02": "Adwa Victory Day", - "2029-04-06": "Orthodox Good Friday", - "2029-04-08": "Orthodox Easter Sunday", + "2029-04-06": "Good Friday", + "2029-04-08": "Easter Sunday", "2029-04-24": "Eid al-Adha (estimated)", - "2029-04-25": "Eid al-Adha (estimated)", - "2029-05-01": "Labor Day", - "2029-05-05": "Patriots Day", + "2029-05-01": "Workers' Day", + "2029-05-05": "Patriots' Day", "2029-05-28": "Downfall of Dergue Regime Day", "2029-07-24": "Prophet's Birthday (estimated)", - "2029-07-25": "Prophet's Birthday (estimated)", - "2029-09-11": "Ethiopian New Year's Day", + "2029-09-11": "Ethiopian New Year", "2029-09-27": "Finding of True Cross", - "2030-01-07": "Orthodox Christmas Day", - "2030-01-19": "Orthodox Epiphany Day", + "2030-01-07": "Christmas Day", + "2030-01-19": "Epiphany Day", "2030-02-04": "Eid al-Fitr (estimated)", "2030-03-02": "Adwa Victory Day", "2030-04-13": "Eid al-Adha (estimated)", - "2030-04-14": "Eid al-Adha (estimated)", - "2030-04-26": "Orthodox Good Friday", - "2030-04-28": "Orthodox Easter Sunday", - "2030-05-01": "Labor Day", - "2030-05-05": "Patriots Day", + "2030-04-26": "Good Friday", + "2030-04-28": "Easter Sunday", + "2030-05-01": "Workers' Day", + "2030-05-05": "Patriots' Day", "2030-05-28": "Downfall of Dergue Regime Day", "2030-07-13": "Prophet's Birthday (estimated)", - "2030-07-14": "Prophet's Birthday (estimated)", - "2030-09-11": "Ethiopian New Year's Day", + "2030-09-11": "Ethiopian New Year", "2030-09-27": "Finding of True Cross", - "2031-01-07": "Orthodox Christmas Day", - "2031-01-19": "Orthodox Epiphany Day", + "2031-01-07": "Christmas Day", + "2031-01-19": "Epiphany Day", "2031-01-24": "Eid al-Fitr (estimated)", "2031-03-02": "Adwa Victory Day", "2031-04-02": "Eid al-Adha (estimated)", - "2031-04-03": "Eid al-Adha (estimated)", - "2031-04-11": "Orthodox Good Friday", - "2031-04-13": "Orthodox Easter Sunday", - "2031-05-01": "Labor Day", - "2031-05-05": "Patriots Day", + "2031-04-11": "Good Friday", + "2031-04-13": "Easter Sunday", + "2031-05-01": "Workers' Day", + "2031-05-05": "Patriots' Day", "2031-05-28": "Downfall of Dergue Regime Day", "2031-07-02": "Prophet's Birthday (estimated)", - "2031-07-03": "Prophet's Birthday (estimated)", - "2031-09-12": "Ethiopian New Year's Day", + "2031-09-12": "Ethiopian New Year", "2031-09-28": "Finding of True Cross", - "2032-01-07": "Orthodox Christmas Day", + "2032-01-07": "Christmas Day", "2032-01-14": "Eid al-Fitr (estimated)", - "2032-01-19": "Orthodox Epiphany Day", + "2032-01-20": "Epiphany Day", "2032-03-02": "Adwa Victory Day", "2032-03-22": "Eid al-Adha (estimated)", - "2032-03-23": "Eid al-Adha (estimated)", - "2032-04-30": "Orthodox Good Friday", - "2032-05-01": "Labor Day", - "2032-05-02": "Orthodox Easter Sunday", - "2032-05-05": "Patriots Day", + "2032-04-30": "Good Friday", + "2032-05-01": "Workers' Day", + "2032-05-02": "Easter Sunday", + "2032-05-05": "Patriots' Day", "2032-05-28": "Downfall of Dergue Regime Day", "2032-06-20": "Prophet's Birthday (estimated)", - "2032-06-21": "Prophet's Birthday (estimated)", - "2032-09-11": "Ethiopian New Year's Day", + "2032-09-11": "Ethiopian New Year", "2032-09-27": "Finding of True Cross", "2033-01-02": "Eid al-Fitr (estimated)", - "2033-01-07": "Orthodox Christmas Day", - "2033-01-19": "Orthodox Epiphany Day", + "2033-01-07": "Christmas Day", + "2033-01-19": "Epiphany Day", "2033-03-02": "Adwa Victory Day", "2033-03-11": "Eid al-Adha (estimated)", - "2033-03-12": "Eid al-Adha (estimated)", - "2033-04-22": "Orthodox Good Friday", - "2033-04-24": "Orthodox Easter Sunday", - "2033-05-01": "Labor Day", - "2033-05-05": "Patriots Day", + "2033-04-22": "Good Friday", + "2033-04-24": "Easter Sunday", + "2033-05-01": "Workers' Day", + "2033-05-05": "Patriots' Day", "2033-05-28": "Downfall of Dergue Regime Day", "2033-06-09": "Prophet's Birthday (estimated)", - "2033-06-10": "Prophet's Birthday (estimated)", - "2033-09-11": "Ethiopian New Year's Day", + "2033-09-11": "Ethiopian New Year", "2033-09-27": "Finding of True Cross", "2033-12-23": "Eid al-Fitr (estimated)", - "2034-01-07": "Orthodox Christmas Day", - "2034-01-19": "Orthodox Epiphany Day", + "2034-01-07": "Christmas Day", + "2034-01-19": "Epiphany Day", "2034-03-01": "Eid al-Adha (estimated)", - "2034-03-02": "Adwa Victory Day; Eid al-Adha (estimated)", - "2034-04-07": "Orthodox Good Friday", - "2034-04-09": "Orthodox Easter Sunday", - "2034-05-01": "Labor Day", - "2034-05-05": "Patriots Day", + "2034-03-02": "Adwa Victory Day", + "2034-04-07": "Good Friday", + "2034-04-09": "Easter Sunday", + "2034-05-01": "Workers' Day", + "2034-05-05": "Patriots' Day", "2034-05-28": "Downfall of Dergue Regime Day", "2034-05-30": "Prophet's Birthday (estimated)", - "2034-05-31": "Prophet's Birthday (estimated)", - "2034-09-11": "Ethiopian New Year's Day", + "2034-09-11": "Ethiopian New Year", "2034-09-27": "Finding of True Cross", "2034-12-12": "Eid al-Fitr (estimated)", - "2035-01-07": "Orthodox Christmas Day", - "2035-01-19": "Orthodox Epiphany Day", + "2035-01-07": "Christmas Day", + "2035-01-19": "Epiphany Day", "2035-02-18": "Eid al-Adha (estimated)", - "2035-02-19": "Eid al-Adha (estimated)", "2035-03-02": "Adwa Victory Day", - "2035-04-27": "Orthodox Good Friday", - "2035-04-29": "Orthodox Easter Sunday", - "2035-05-01": "Labor Day", - "2035-05-05": "Patriots Day", + "2035-04-27": "Good Friday", + "2035-04-29": "Easter Sunday", + "2035-05-01": "Workers' Day", + "2035-05-05": "Patriots' Day", "2035-05-20": "Prophet's Birthday (estimated)", - "2035-05-21": "Prophet's Birthday (estimated)", "2035-05-28": "Downfall of Dergue Regime Day", - "2035-09-12": "Ethiopian New Year's Day", + "2035-09-12": "Ethiopian New Year", "2035-09-28": "Finding of True Cross", "2035-12-01": "Eid al-Fitr (estimated)", - "2036-01-07": "Orthodox Christmas Day", - "2036-01-19": "Orthodox Epiphany Day", + "2036-01-07": "Christmas Day", + "2036-01-20": "Epiphany Day", "2036-02-07": "Eid al-Adha (estimated)", - "2036-02-08": "Eid al-Adha (estimated)", "2036-03-02": "Adwa Victory Day", - "2036-04-18": "Orthodox Good Friday", - "2036-04-20": "Orthodox Easter Sunday", - "2036-05-01": "Labor Day", - "2036-05-05": "Patriots Day", + "2036-04-18": "Good Friday", + "2036-04-20": "Easter Sunday", + "2036-05-01": "Workers' Day", + "2036-05-05": "Patriots' Day", "2036-05-08": "Prophet's Birthday (estimated)", - "2036-05-09": "Prophet's Birthday (estimated)", "2036-05-28": "Downfall of Dergue Regime Day", - "2036-09-11": "Ethiopian New Year's Day", + "2036-09-11": "Ethiopian New Year", "2036-09-27": "Finding of True Cross", "2036-11-19": "Eid al-Fitr (estimated)", - "2037-01-07": "Orthodox Christmas Day", - "2037-01-19": "Orthodox Epiphany Day", + "2037-01-07": "Christmas Day", + "2037-01-19": "Epiphany Day", "2037-01-26": "Eid al-Adha (estimated)", - "2037-01-27": "Eid al-Adha (estimated)", "2037-03-02": "Adwa Victory Day", - "2037-04-03": "Orthodox Good Friday", - "2037-04-05": "Orthodox Easter Sunday", + "2037-04-03": "Good Friday", + "2037-04-05": "Easter Sunday", "2037-04-28": "Prophet's Birthday (estimated)", - "2037-04-29": "Prophet's Birthday (estimated)", - "2037-05-01": "Labor Day", - "2037-05-05": "Patriots Day", + "2037-05-01": "Workers' Day", + "2037-05-05": "Patriots' Day", "2037-05-28": "Downfall of Dergue Regime Day", - "2037-09-11": "Ethiopian New Year's Day", + "2037-09-11": "Ethiopian New Year", "2037-09-27": "Finding of True Cross", "2037-11-08": "Eid al-Fitr (estimated)", - "2038-01-07": "Orthodox Christmas Day", + "2038-01-07": "Christmas Day", "2038-01-16": "Eid al-Adha (estimated)", - "2038-01-17": "Eid al-Adha (estimated)", - "2038-01-19": "Orthodox Epiphany Day", + "2038-01-19": "Epiphany Day", "2038-03-02": "Adwa Victory Day", "2038-04-17": "Prophet's Birthday (estimated)", - "2038-04-18": "Prophet's Birthday (estimated)", - "2038-04-23": "Orthodox Good Friday", - "2038-04-25": "Orthodox Easter Sunday", - "2038-05-01": "Labor Day", - "2038-05-05": "Patriots Day", + "2038-04-23": "Good Friday", + "2038-04-25": "Easter Sunday", + "2038-05-01": "Workers' Day", + "2038-05-05": "Patriots' Day", "2038-05-28": "Downfall of Dergue Regime Day", - "2038-09-11": "Ethiopian New Year's Day", + "2038-09-11": "Ethiopian New Year", "2038-09-27": "Finding of True Cross", "2038-10-29": "Eid al-Fitr (estimated)", "2039-01-05": "Eid al-Adha (estimated)", - "2039-01-06": "Eid al-Adha (estimated)", - "2039-01-07": "Orthodox Christmas Day", - "2039-01-19": "Orthodox Epiphany Day", + "2039-01-07": "Christmas Day", + "2039-01-19": "Epiphany Day", "2039-03-02": "Adwa Victory Day", "2039-04-06": "Prophet's Birthday (estimated)", - "2039-04-07": "Prophet's Birthday (estimated)", - "2039-04-15": "Orthodox Good Friday", - "2039-04-17": "Orthodox Easter Sunday", - "2039-05-01": "Labor Day", - "2039-05-05": "Patriots Day", + "2039-04-15": "Good Friday", + "2039-04-17": "Easter Sunday", + "2039-05-01": "Workers' Day", + "2039-05-05": "Patriots' Day", "2039-05-28": "Downfall of Dergue Regime Day", - "2039-09-12": "Ethiopian New Year's Day", + "2039-09-12": "Ethiopian New Year", "2039-09-28": "Finding of True Cross", "2039-10-19": "Eid al-Fitr (estimated)", "2039-12-26": "Eid al-Adha (estimated)", - "2039-12-27": "Eid al-Adha (estimated)", - "2040-01-07": "Orthodox Christmas Day", - "2040-01-19": "Orthodox Epiphany Day", + "2040-01-07": "Christmas Day", + "2040-01-20": "Epiphany Day", "2040-03-02": "Adwa Victory Day", "2040-03-25": "Prophet's Birthday (estimated)", - "2040-03-26": "Prophet's Birthday (estimated)", - "2040-05-01": "Labor Day", - "2040-05-04": "Orthodox Good Friday", - "2040-05-05": "Patriots Day", - "2040-05-06": "Orthodox Easter Sunday", + "2040-05-01": "Workers' Day", + "2040-05-04": "Good Friday", + "2040-05-05": "Patriots' Day", + "2040-05-06": "Easter Sunday", "2040-05-28": "Downfall of Dergue Regime Day", - "2040-09-11": "Ethiopian New Year's Day", + "2040-09-11": "Ethiopian New Year", "2040-09-27": "Finding of True Cross", "2040-10-07": "Eid al-Fitr (estimated)", "2040-12-14": "Eid al-Adha (estimated)", - "2040-12-15": "Eid al-Adha (estimated)", - "2041-01-07": "Orthodox Christmas Day", - "2041-01-19": "Orthodox Epiphany Day", + "2041-01-07": "Christmas Day", + "2041-01-19": "Epiphany Day", "2041-03-02": "Adwa Victory Day", "2041-03-15": "Prophet's Birthday (estimated)", - "2041-03-16": "Prophet's Birthday (estimated)", - "2041-04-19": "Orthodox Good Friday", - "2041-04-21": "Orthodox Easter Sunday", - "2041-05-01": "Labor Day", - "2041-05-05": "Patriots Day", + "2041-04-19": "Good Friday", + "2041-04-21": "Easter Sunday", + "2041-05-01": "Workers' Day", + "2041-05-05": "Patriots' Day", "2041-05-28": "Downfall of Dergue Regime Day", - "2041-09-11": "Ethiopian New Year's Day", + "2041-09-11": "Ethiopian New Year", "2041-09-26": "Eid al-Fitr (estimated)", "2041-09-27": "Finding of True Cross", "2041-12-04": "Eid al-Adha (estimated)", - "2041-12-05": "Eid al-Adha (estimated)", - "2042-01-07": "Orthodox Christmas Day", - "2042-01-19": "Orthodox Epiphany Day", + "2042-01-07": "Christmas Day", + "2042-01-19": "Epiphany Day", "2042-03-02": "Adwa Victory Day", "2042-03-04": "Prophet's Birthday (estimated)", - "2042-03-05": "Prophet's Birthday (estimated)", - "2042-04-11": "Orthodox Good Friday", - "2042-04-13": "Orthodox Easter Sunday", - "2042-05-01": "Labor Day", - "2042-05-05": "Patriots Day", + "2042-04-11": "Good Friday", + "2042-04-13": "Easter Sunday", + "2042-05-01": "Workers' Day", + "2042-05-05": "Patriots' Day", "2042-05-28": "Downfall of Dergue Regime Day", - "2042-09-11": "Ethiopian New Year's Day", + "2042-09-11": "Ethiopian New Year", "2042-09-15": "Eid al-Fitr (estimated)", "2042-09-27": "Finding of True Cross", "2042-11-23": "Eid al-Adha (estimated)", - "2042-11-24": "Eid al-Adha (estimated)", - "2043-01-07": "Orthodox Christmas Day", - "2043-01-19": "Orthodox Epiphany Day", + "2043-01-07": "Christmas Day", + "2043-01-19": "Epiphany Day", "2043-02-22": "Prophet's Birthday (estimated)", - "2043-02-23": "Prophet's Birthday (estimated)", "2043-03-02": "Adwa Victory Day", - "2043-05-01": "Labor Day; Orthodox Good Friday", - "2043-05-03": "Orthodox Easter Sunday", - "2043-05-05": "Patriots Day", + "2043-05-01": "Good Friday; Workers' Day", + "2043-05-03": "Easter Sunday", + "2043-05-05": "Patriots' Day", "2043-05-28": "Downfall of Dergue Regime Day", "2043-09-04": "Eid al-Fitr (estimated)", - "2043-09-12": "Ethiopian New Year's Day", + "2043-09-12": "Ethiopian New Year", "2043-09-28": "Finding of True Cross", "2043-11-12": "Eid al-Adha (estimated)", - "2043-11-13": "Eid al-Adha (estimated)", - "2044-01-07": "Orthodox Christmas Day", - "2044-01-19": "Orthodox Epiphany Day", + "2044-01-07": "Christmas Day", + "2044-01-20": "Epiphany Day", "2044-02-11": "Prophet's Birthday (estimated)", - "2044-02-12": "Prophet's Birthday (estimated)", "2044-03-02": "Adwa Victory Day", - "2044-04-22": "Orthodox Good Friday", - "2044-04-24": "Orthodox Easter Sunday", - "2044-05-01": "Labor Day", - "2044-05-05": "Patriots Day", + "2044-04-22": "Good Friday", + "2044-04-24": "Easter Sunday", + "2044-05-01": "Workers' Day", + "2044-05-05": "Patriots' Day", "2044-05-28": "Downfall of Dergue Regime Day", "2044-08-24": "Eid al-Fitr (estimated)", - "2044-09-11": "Ethiopian New Year's Day", + "2044-09-11": "Ethiopian New Year", "2044-09-27": "Finding of True Cross", "2044-10-31": "Eid al-Adha (estimated)", - "2044-11-01": "Eid al-Adha (estimated)", - "2045-01-07": "Orthodox Christmas Day", - "2045-01-19": "Orthodox Epiphany Day", + "2045-01-07": "Christmas Day", + "2045-01-19": "Epiphany Day", "2045-01-30": "Prophet's Birthday (estimated)", - "2045-01-31": "Prophet's Birthday (estimated)", "2045-03-02": "Adwa Victory Day", - "2045-04-07": "Orthodox Good Friday", - "2045-04-09": "Orthodox Easter Sunday", - "2045-05-01": "Labor Day", - "2045-05-05": "Patriots Day", + "2045-04-07": "Good Friday", + "2045-04-09": "Easter Sunday", + "2045-05-01": "Workers' Day", + "2045-05-05": "Patriots' Day", "2045-05-28": "Downfall of Dergue Regime Day", "2045-08-14": "Eid al-Fitr (estimated)", - "2045-09-11": "Ethiopian New Year's Day", + "2045-09-11": "Ethiopian New Year", "2045-09-27": "Finding of True Cross", "2045-10-21": "Eid al-Adha (estimated)", - "2045-10-22": "Eid al-Adha (estimated)", - "2046-01-07": "Orthodox Christmas Day", - "2046-01-19": "Orthodox Epiphany Day; Prophet's Birthday (estimated)", - "2046-01-20": "Prophet's Birthday (estimated)", + "2046-01-07": "Christmas Day", + "2046-01-19": "Epiphany Day; Prophet's Birthday (estimated)", "2046-03-02": "Adwa Victory Day", - "2046-04-27": "Orthodox Good Friday", - "2046-04-29": "Orthodox Easter Sunday", - "2046-05-01": "Labor Day", - "2046-05-05": "Patriots Day", + "2046-04-27": "Good Friday", + "2046-04-29": "Easter Sunday", + "2046-05-01": "Workers' Day", + "2046-05-05": "Patriots' Day", "2046-05-28": "Downfall of Dergue Regime Day", "2046-08-03": "Eid al-Fitr (estimated)", - "2046-09-11": "Ethiopian New Year's Day", + "2046-09-11": "Ethiopian New Year", "2046-09-27": "Finding of True Cross", "2046-10-10": "Eid al-Adha (estimated)", - "2046-10-11": "Eid al-Adha (estimated)", - "2047-01-07": "Orthodox Christmas Day", + "2047-01-07": "Christmas Day", "2047-01-08": "Prophet's Birthday (estimated)", - "2047-01-09": "Prophet's Birthday (estimated)", - "2047-01-19": "Orthodox Epiphany Day", + "2047-01-19": "Epiphany Day", "2047-03-02": "Adwa Victory Day", - "2047-04-19": "Orthodox Good Friday", - "2047-04-21": "Orthodox Easter Sunday", - "2047-05-01": "Labor Day", - "2047-05-05": "Patriots Day", + "2047-04-19": "Good Friday", + "2047-04-21": "Easter Sunday", + "2047-05-01": "Workers' Day", + "2047-05-05": "Patriots' Day", "2047-05-28": "Downfall of Dergue Regime Day", "2047-07-24": "Eid al-Fitr (estimated)", - "2047-09-12": "Ethiopian New Year's Day", + "2047-09-12": "Ethiopian New Year", "2047-09-28": "Finding of True Cross", "2047-09-30": "Eid al-Adha (estimated)", - "2047-10-01": "Eid al-Adha (estimated)", "2047-12-29": "Prophet's Birthday (estimated)", - "2047-12-30": "Prophet's Birthday (estimated)", - "2048-01-07": "Orthodox Christmas Day", - "2048-01-19": "Orthodox Epiphany Day", + "2048-01-07": "Christmas Day", + "2048-01-20": "Epiphany Day", "2048-03-02": "Adwa Victory Day", - "2048-04-03": "Orthodox Good Friday", - "2048-04-05": "Orthodox Easter Sunday", - "2048-05-01": "Labor Day", - "2048-05-05": "Patriots Day", + "2048-04-03": "Good Friday", + "2048-04-05": "Easter Sunday", + "2048-05-01": "Workers' Day", + "2048-05-05": "Patriots' Day", "2048-05-28": "Downfall of Dergue Regime Day", "2048-07-12": "Eid al-Fitr (estimated)", - "2048-09-11": "Ethiopian New Year's Day", + "2048-09-11": "Ethiopian New Year", "2048-09-19": "Eid al-Adha (estimated)", - "2048-09-20": "Eid al-Adha (estimated)", "2048-09-27": "Finding of True Cross", "2048-12-18": "Prophet's Birthday (estimated)", - "2048-12-19": "Prophet's Birthday (estimated)", - "2049-01-07": "Orthodox Christmas Day", - "2049-01-19": "Orthodox Epiphany Day", + "2049-01-07": "Christmas Day", + "2049-01-19": "Epiphany Day", "2049-03-02": "Adwa Victory Day", - "2049-04-23": "Orthodox Good Friday", - "2049-04-25": "Orthodox Easter Sunday", - "2049-05-01": "Labor Day", - "2049-05-05": "Patriots Day", + "2049-04-23": "Good Friday", + "2049-04-25": "Easter Sunday", + "2049-05-01": "Workers' Day", + "2049-05-05": "Patriots' Day", "2049-05-28": "Downfall of Dergue Regime Day", "2049-07-01": "Eid al-Fitr (estimated)", "2049-09-08": "Eid al-Adha (estimated)", - "2049-09-09": "Eid al-Adha (estimated)", - "2049-09-11": "Ethiopian New Year's Day", + "2049-09-11": "Ethiopian New Year", "2049-09-27": "Finding of True Cross", "2049-12-07": "Prophet's Birthday (estimated)", - "2049-12-08": "Prophet's Birthday (estimated)", - "2050-01-07": "Orthodox Christmas Day", - "2050-01-19": "Orthodox Epiphany Day", + "2050-01-07": "Christmas Day", + "2050-01-19": "Epiphany Day", "2050-03-02": "Adwa Victory Day", - "2050-04-15": "Orthodox Good Friday", - "2050-04-17": "Orthodox Easter Sunday", - "2050-05-01": "Labor Day", - "2050-05-05": "Patriots Day", + "2050-04-15": "Good Friday", + "2050-04-17": "Easter Sunday", + "2050-05-01": "Workers' Day", + "2050-05-05": "Patriots' Day", "2050-05-28": "Downfall of Dergue Regime Day", "2050-06-20": "Eid al-Fitr (estimated)", "2050-08-28": "Eid al-Adha (estimated)", - "2050-08-29": "Eid al-Adha (estimated)", - "2050-09-11": "Ethiopian New Year's Day", + "2050-09-11": "Ethiopian New Year", "2050-09-27": "Finding of True Cross", - "2050-11-26": "Prophet's Birthday (estimated)", - "2050-11-27": "Prophet's Birthday (estimated)" + "2050-11-26": "Prophet's Birthday (estimated)" } diff --git a/tests/countries/test_ethiopia.py b/tests/countries/test_ethiopia.py index c61bd6a8a..10d11f2cb 100644 --- a/tests/countries/test_ethiopia.py +++ b/tests/countries/test_ethiopia.py @@ -9,7 +9,6 @@ # Website: https://github.com/dr-prodigy/python-holidays # License: MIT (see LICENSE file) -from datetime import date from unittest import TestCase from holidays.countries.ethiopia import Ethiopia, ET, ETH @@ -19,82 +18,135 @@ class TestEthiopia(CommonCountryTests, TestCase): @classmethod def setUpClass(cls): - super().setUpClass(Ethiopia) + super().setUpClass(Ethiopia, years=range(1940, 2050)) def test_country_aliases(self): self.assertAliases(Ethiopia, ET, ETH) - # Check isleap loops - def test_not_holiday(self): - self.assertNotIn(date(2019, 9, 11), self.holidays) - self.assertNotIn(date(2019, 9, 27), self.holidays) - self.assertNotIn(date(2019, 9, 13), self.holidays) - self.assertNotIn(date(1940, 5, 5), self.holidays) - self.assertNotIn(date(1990, 5, 28), self.holidays) - self.assertNotIn(date(1971, 9, 13), self.holidays) - self.assertNotIn(date(1970, 9, 12), self.holidays) - self.assertNotIn(date(1993, 9, 13), self.holidays) - self.assertNotIn(date(1994, 9, 12), self.holidays) - - def test_2019(self): - self.assertIn(date(2019, 1, 7), self.holidays) - self.assertIn(date(2019, 1, 19), self.holidays) - self.assertIn(date(2019, 3, 2), self.holidays) - self.assertIn(date(2019, 4, 28), self.holidays) - self.assertIn(date(2019, 4, 26), self.holidays) - self.assertIn(date(2019, 5, 1), self.holidays) - self.assertIn(date(2019, 5, 5), self.holidays) - self.assertIn(date(2019, 5, 28), self.holidays) - self.assertIn(date(2019, 9, 12), self.holidays) - self.assertIn(date(2019, 9, 28), self.holidays) - self.assertIn(date(2019, 11, 10), self.holidays) - self.assertIn(date(1975, 9, 13), self.holidays) - self.assertIn(date(1976, 9, 12), self.holidays) - - def test_2020(self): - self.assertIn(date(2020, 9, 11), self.holidays) - self.assertIn(date(2020, 9, 27), self.holidays) - - def test_ethiopian_christmas(self): - self.assertIn(date(2019, 1, 7), self.holidays) - - def test_ethiopian_ephiphany(self): - self.assertIn(date(2019, 1, 19), self.holidays) + def test_no_holidays(self): + self.assertNoHolidays(Ethiopia(years=1896)) - def test_adwa_victory(self): - self.assertIn(date(2019, 3, 2), self.holidays) + def test_christmas(self): + self.assertHolidayName("ገና", (f"{year}-01-07" for year in range(1940, 2050))) - def test_easter_good_friday(self): - self.assertIn(date(2019, 4, 26), self.holidays) + def test_ephiphany(self): + name = "ጥምቀት" + self.assertHolidayName( + name, (f"{year}-01-19" for year in range(1940, 2050) if year % 4 != 0) + ) + self.assertHolidayName( + name, (f"{year}-01-20" for year in range(1940, 2050) if year % 4 == 0) + ) + + def test_adwa_victory(self): + self.assertHolidayName("አድዋ", (f"{year}-03-02" for year in range(1940, 2050))) + + def test_good_friday(self): + name = "ስቅለት" + self.assertHolidayName( + name, + "2018-04-06", + "2019-04-26", + "2020-04-17", + "2021-04-30", + "2022-04-22", + "2023-04-14", + "2024-05-03", + ) + self.assertHolidayName(name, range(1940, 2050)) def test_easter(self): - self.assertIn(date(2019, 4, 28), self.holidays) + name = "ፋሲካ" + self.assertHolidayName( + name, + "2018-04-08", + "2019-04-28", + "2020-04-19", + "2021-05-02", + "2022-04-24", + "2023-04-16", + "2024-05-05", + ) + self.assertHolidayName(name, range(1940, 2050)) - def test_labour_day(self): - self.assertIn(date(2019, 5, 1), self.holidays) + def test_workers_day(self): + self.assertHolidayName("የሰራተኞች ቀን", (f"{year}-05-01" for year in range(1940, 2050))) def test_patriots_day(self): - self.assertNotIn(date(1940, 5, 5), self.holidays) - self.assertIn(date(2019, 5, 5), self.holidays) + name = "የአርበኞች ቀን" + self.assertHolidayName(name, (f"{year}-05-05" for year in range(1942, 2050))) + self.assertNoHolidayName(name, range(1940, 1942)) def test_downfall_of_dergue(self): - self.assertIn(date(2019, 5, 28), self.holidays) + name = "ደርግ የወደቀበት ቀን" + self.assertHolidayName(name, (f"{year}-05-28" for year in range(1992, 2050))) + self.assertNoHolidayName(name, range(1940, 1992)) + + def test_new_year(self): + name = "እንቁጣጣሽ" + self.assertHolidayName( + name, (f"{year}-09-11" for year in range(1940, 2050) if year % 4 != 3) + ) + self.assertHolidayName( + name, (f"{year}-09-12" for year in range(1940, 2050) if year % 4 == 3) + ) - def test_formation_of_dergue(self): - self.assertIn(date(1982, 9, 12), self.holidays) - self.assertIn(date(1983, 9, 13), self.holidays) + def test_finding_of_true_cross(self): + name = "መስቀል" + self.assertHolidayName( + name, (f"{year}-09-27" for year in range(1940, 2050) if year % 4 != 3) + ) + self.assertHolidayName( + name, (f"{year}-09-28" for year in range(1940, 2050) if year % 4 == 3) + ) + + def test_revolution_day(self): + name = "የአብዮት ቀን" + self.assertHolidayName( + name, (f"{year}-09-12" for year in range(1975, 1991) if year % 4 != 3) + ) + self.assertHolidayName( + name, (f"{year}-09-13" for year in range(1975, 1991) if year % 4 == 3) + ) + self.assertNoHolidayName(name, range(1940, 1975), range(1991, 2050)) + + def test_october_revolution_day(self): + name = "የጥቅምት አብዮት ቀን" + self.assertHolidayName(name, (f"{year}-11-07" for year in range(1975, 1991))) + self.assertNoHolidayName(name, range(1940, 1975), range(1991, 2050)) + + def test_eid_al_fitr(self): + self.assertHolidayName( + "ኢድ አልፈጥር", + "2018-06-15", + "2019-06-04", + "2020-05-24", + "2021-05-13", + "2022-05-02", + "2023-04-21", + ) - def test_hijri_based(self): - self.holidays = Ethiopia(years=[2019]) - # eid_alfitr - self.assertIn(date(2019, 6, 4), self.holidays) - # eid_aladha - self.assertIn(date(2019, 8, 11), self.holidays) - # muhammad's birthday - self.assertIn(date(2019, 11, 10), self.holidays) + def test_eid_al_adha(self): + self.assertHolidayName( + "አረፋ", + "2018-08-22", + "2019-08-11", + "2020-07-31", + "2021-07-20", + "2022-07-09", + "2023-06-28", + ) - def test_pre_1897(self): - self.assertNotIn(date(1896, 3, 2), self.holidays) + def test_prophets_birthday(self): + self.assertHolidayName( + "መውሊድ", + "2018-11-21", + "2019-11-10", + "2020-10-29", + "2021-10-18", + "2022-10-08", + "2023-09-27", + ) def test_l10n_default(self): self.assertLocalizedHolidays( @@ -104,15 +156,13 @@ def test_l10n_default(self): ("2022-04-22", "ስቅለት"), ("2022-04-24", "ፋሲካ"), ("2022-05-01", "የሰራተኞች ቀን"), - ("2022-05-02", "ኢድ አልፈጥር (ግምት)"), + ("2022-05-02", "ኢድ አልፈጥር"), ("2022-05-05", "የአርበኞች ቀን"), ("2022-05-28", "ደርግ የወደቀበት ቀን"), - ("2022-07-09", "አረፋ (ግምት)"), - ("2022-07-10", "አረፋ (ግምት)"), - ("2022-09-11", "አዲስ ዓመት እንቁጣጣሽ"), + ("2022-07-09", "አረፋ"), + ("2022-09-11", "እንቁጣጣሽ"), ("2022-09-27", "መስቀል"), - ("2022-10-08", "መውሊድ (ግምት)"), - ("2022-10-09", "መውሊድ (ግምት)"), + ("2022-10-08", "መውሊድ"), ) def test_l10n_en_ar(self): @@ -124,33 +174,29 @@ def test_l10n_en_ar(self): ("2022-04-22", "جمعة جيدة"), ("2022-04-24", "عيد الفصح"), ("2022-05-01", "يوم العمال"), - ("2022-05-02", "(تقدير) عيد الفطر"), + ("2022-05-02", "عيد الفطر"), ("2022-05-05", "يوم الوطنيين"), ("2022-05-28", "يوم سقوط ديرج"), - ("2022-07-09", "(تقدير) عيد الأضحى"), - ("2022-07-10", "(تقدير) عيد الأضحى"), + ("2022-07-09", "عيد الأضحى"), ("2022-09-11", "السنة الإثيوبية الجديدة"), - ("2022-09-27", "العثور على الصليب الحقيقي"), - ("2022-10-08", "(تقدير) عيد المولد النبوي"), - ("2022-10-09", "(تقدير) عيد المولد النبوي"), + ("2022-09-27", "مسكل"), + ("2022-10-08", "عيد المولد النبوي"), ) def test_l10n_en_us(self): self.assertLocalizedHolidays( "en_US", - ("2022-01-07", "Orthodox Christmas Day"), - ("2022-01-19", "Orthodox Epiphany Day"), + ("2022-01-07", "Christmas Day"), + ("2022-01-19", "Epiphany Day"), ("2022-03-02", "Adwa Victory Day"), - ("2022-04-22", "Orthodox Good Friday"), - ("2022-04-24", "Orthodox Easter Sunday"), - ("2022-05-01", "Labor Day"), - ("2022-05-02", "Eid al-Fitr (estimated)"), - ("2022-05-05", "Patriots Day"), + ("2022-04-22", "Good Friday"), + ("2022-04-24", "Easter Sunday"), + ("2022-05-01", "Workers' Day"), + ("2022-05-02", "Eid al-Fitr"), + ("2022-05-05", "Patriots' Day"), ("2022-05-28", "Downfall of Dergue Regime Day"), - ("2022-07-09", "Eid al-Adha (estimated)"), - ("2022-07-10", "Eid al-Adha (estimated)"), - ("2022-09-11", "Ethiopian New Year's Day"), + ("2022-07-09", "Eid al-Adha"), + ("2022-09-11", "Ethiopian New Year"), ("2022-09-27", "Finding of True Cross"), - ("2022-10-08", "Prophet's Birthday (estimated)"), - ("2022-10-09", "Prophet's Birthday (estimated)"), + ("2022-10-08", "Prophet's Birthday"), )