From 2edbaec78a11ca92c94b30b4277850fcb2921dd1 Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Sat, 14 Oct 2023 09:13:13 +0700 Subject: [PATCH 1/5] [TL] Initial Timor-Leste Holidays Implementation --- README.rst | 7 +- holidays/countries/__init__.py | 1 + holidays/countries/timor_leste.py | 424 +++++++++++++++++++ holidays/locale/en_US/LC_MESSAGES/TL.po | 145 +++++++ holidays/locale/pt_TL/LC_MESSAGES/TL.po | 143 +++++++ holidays/locale/tet/LC_MESSAGES/TL.po | 143 +++++++ holidays/registry.py | 1 + tests/countries/test_timor_leste.py | 517 ++++++++++++++++++++++++ 8 files changed, 1380 insertions(+), 1 deletion(-) create mode 100644 holidays/countries/timor_leste.py create mode 100644 holidays/locale/en_US/LC_MESSAGES/TL.po create mode 100644 holidays/locale/pt_TL/LC_MESSAGES/TL.po create mode 100644 holidays/locale/tet/LC_MESSAGES/TL.po create mode 100644 tests/countries/test_timor_leste.py diff --git a/README.rst b/README.rst index 8639e84a7..09e3e65d1 100644 --- a/README.rst +++ b/README.rst @@ -117,7 +117,7 @@ Available Countries .. _ISO 639-1 code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes .. _ISO 639-2 code: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes -We currently support 137 country codes. The standard way to refer to a country +We currently support 138 country codes. The standard way to refer to a country is by using its `ISO 3166-1 alpha-2 code`_, the same used for domain names, and for a subdivision its `ISO 3166-2 code`_. Some of the countries support more than one language for holiday names output. @@ -752,6 +752,11 @@ The list of supported countries, their subdivisions, supported languages and cat - - en_US, **th** - ARMED_FORCES, BANK, GOVERNMENT, **PUBLIC**, SCHOOL, WORKDAY + * - Timor Leste + - TL + - + - en_US, **pt_TL**, tet + - GOVERNMENT, **PUBLIC**, WORKDAY * - Tunisia - TN - diff --git a/holidays/countries/__init__.py b/holidays/countries/__init__.py index c8333eab5..95eae1c92 100644 --- a/holidays/countries/__init__.py +++ b/holidays/countries/__init__.py @@ -132,6 +132,7 @@ from .taiwan import Taiwan, TW, TWN from .tanzania import Tanzania, TZ, TZA from .thailand import Thailand, TH, THA +from .timor_leste import TimorLeste, TL, TLS from .tunisia import Tunisia, TN, TUN from .turkey import Turkey, TR, TUR from .ukraine import Ukraine, UA, UKR diff --git a/holidays/countries/timor_leste.py b/holidays/countries/timor_leste.py new file mode 100644 index 000000000..a0ce1fd6e --- /dev/null +++ b/holidays/countries/timor_leste.py @@ -0,0 +1,424 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from gettext import gettext as tr + +from holidays.calendars import _CustomIslamicHolidays +from holidays.calendars.gregorian import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC +from holidays.constants import GOVERNMENT, PUBLIC, WORKDAY +from holidays.groups import ( + ChristianHolidays, + InternationalHolidays, + IslamicHolidays, + StaticHolidays, +) +from holidays.holiday_base import HolidayBase + + +class TimorLeste( + HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolidays, StaticHolidays +): + """ + References: + - https://mj.gov.tl/jornal/lawsTL/RDTL-Law/RDTL-Laws/Law-2005-10.pdf # 2005 Law + - http://timor-leste.gov.tl/?p=14494&lang=en # 2016 Amendment + - http://timor-leste.gov.tl/?p=31750&lang=en # 2023 (en_US) + - http://timor-leste.gov.tl/?p=31750&lang=pt # 2023 (pt_PT) + - http://timor-leste.gov.tl/?p=31750&lang=tp # 2023 (tet) + - http://timor-leste.gov.tl/?p=30266&lang=en # 2022 + + Limitations: + + - Exact Islamic holidays dates are only available for 2011-2023; the rest are estimates. + """ + + country = "TL" + supported_categories = {GOVERNMENT, PUBLIC, WORKDAY} + default_language = "pt_TL" + estimated_label = tr("%s* (*aproximada)") + supported_languages = ("en_US", "pt_TL", "tet") + + def __init__(self, *args, **kwargs): + ChristianHolidays.__init__(self) + InternationalHolidays.__init__(self) + IslamicHolidays.__init__(self, cls=TimorLesteIslamicHolidays) + StaticHolidays.__init__(self, TimorLesteStaticHolidays) + super().__init__(*args, **kwargs) + + def _populate_public_holidays(self): + # Law No. 10/2005 Of 10 August, Public Holidays and Official Commemorative Dates. + if self._year <= 2005: + return None + + # Fixed Date Public Holidays. + + # New Year's Day. + self._add_new_years_day(tr("Dia de Ano Novo")) + + # Dia dos Veteranos. + # First appeared in 2017. + + if self._year >= 2017: + # Veteran's Day. + self._add_holiday_mar_3(tr("Dia dos Veteranos")) + + # World Labor Day. + self._add_labor_day(tr("Dia Mundial do Trabalhador")) + + # Restoration of Independence Day. + self._add_holiday_may_20(tr("Dia da Restauração da Independência")) + + # Popular Consultation Day. + self._add_holiday_aug_30(tr("Dia da Consulta Popular")) + + # All Saints Day. + self._add_all_saints_day(tr("Dia de Todos os Santos")) + + # All Souls Day. + self._add_all_souls_day(tr("Dia de Todos os Fiéis Defuntos")) + + # Dia Nacional da Mulher. + # Originally classed as "Commemorative Date" only, reclassified in 2023. + + if self._year >= 2023: + # National Women's Day. + self._add_holiday_nov_3(tr("Dia Nacional da Mulher")) + + # National Youth Day. + self._add_holiday_nov_12(tr("Dia Nacional da Juventude")) + + # Proclamation of Independence Day. + self._add_holiday_nov_28(tr("Dia da Proclamação da Independência")) + + # Dia da Memória + # Created to replaced the original National Heroes Day in 2017. + + if self._year >= 2017: + # Memorial Day. + self._add_holiday_dec_7(tr("Dia da Memória")) + + self._add_immaculate_conception_day( + # Day of Our Lady of Immaculate Conception and Timor-Leste Patroness. + tr("Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste") + ) + + # Christmas Day. + self._add_christmas_day(tr("Dia de Natal")) + + # Dia dos Heróis Nacionais. + # Moved to Dec 31 in 2017. + + # National Heroes Day. + name = tr("Dia dos Heróis Nacionais") + if self._year >= 2017: + self._add_holiday_dec_31(name) + else: + self._add_holiday_dec_7(name) + + # Variable Date Public Holidays. + + # Holy Friday. + self._add_good_friday(tr("Sexta-Feira Santa")) + + # Idul Fitri. + self._add_eid_al_fitr_day(tr("Idul Fitri")) + + # Corpus Christi. + self._add_corpus_christi_day(tr("Festa do Corpo de Deus")) + + # Idul Adha. + self._add_eid_al_adha_day(tr("Idul Adha")) + + def _populate_workday_holidays(self): + # Law No. 10/2005 Of 10 August, Public Holidays and Official Commemorative Dates. + if self._year <= 2005: + return None + + # Fixed Date Government Holidays. + + # World Children's Day. + self._add_childrens_day(tr("Dia Mundial da Criança")) + + self._add_holiday_aug_20( + # Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL). + tr("Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)") + ) + + # Dia Nacional da Mulher. + # Originally classed as "Commemorative Date" only, reclassified in 2023. + # Prior to reclassification, this is usually only observed as half-day holiday. + # i.e. http://timor-leste.gov.tl/?p=4183&lang=en (2010) + # http://timor-leste.gov.tl/?p=5979&lang=en (2011) + if self._year <= 2022: + # National Women's Day. + self._add_holiday_nov_3(tr("Dia Nacional da Mulher")) + + # World Human Rights Day. + self._add_holiday_dec_10(tr("Dia Mundial dos Direitos Humanos")) + + # Variable Date Government Holidays. + + # Ash Wednesday. + self._add_ash_wednesday(tr("Quarta-Feira de Cinzas")) + + # Holy Thusday. + self._add_holy_thursday(tr("Quinta-Feira Santa")) + + # The Day of Ascension of Jesus Christ into Heaven. + self._add_ascension_thursday(tr("Dia da Ascensão de Jesus Cristo ao Céu")) + + +class TL(TimorLeste): + pass + + +class TLS(TimorLeste): + pass + + +class TimorLesteIslamicHolidays(_CustomIslamicHolidays): + EID_AL_ADHA_DATES = { + 2011: (NOV, 7), + 2012: (OCT, 26), + 2013: (OCT, 15), + 2014: (OCT, 4), + 2015: (SEP, 24), + 2016: (SEP, 18), + 2017: (SEP, 1), + 2018: (AUG, 21), + 2019: (AUG, 11), + 2020: (JUL, 31), + 2021: (JUL, 19), + 2022: (JUL, 9), + 2023: (JUN, 29), + } + + EID_AL_FITR_DATES = { + 2011: (AUG, 31), + 2012: (AUG, 20), + 2013: (AUG, 8), + 2014: (JUL, 28), + 2015: (JUL, 17), + 2016: (JUL, 7), + 2017: (JUN, 26), + 2018: (JUN, 15), + 2019: (JUN, 6), + 2020: (MAY, 24), + 2021: (MAY, 13), + 2022: (MAY, 2), + 2023: (APR, 22), + } + + +class TimorLesteStaticHolidays: + # Special Holidays. + + # National Holidays (Special). + special_national_holidays = tr("Feriados Nacionais (Especiais)") + + # Presidential Election Day. + presidential_election = tr("Dia da Eleição Presidencial") + + # Parliamentary Election Day. + parliamentary_election = tr("Dia de Eleições Parlamentares") + + # Centenary of the Revolt of Dom Boaventura. + dom_boaventura_centenary = tr("Centenário da Revolta de Dom Boaventura") + + # Funeral Ceremonies of Fernando 'La Sama' de Araújo. + la_sama_funeral = tr("Cerimónias Fúnebres de Fernando 'La Sama' de Araújo") + + # 20th Anniversary Celebrations of the Popular Consultation. + popular_consultation_20th = tr("Celebrações do 20.º Aniversário da Consulta Popular") + + special_government_holidays = { + 2010: ( + # http://timor-leste.gov.tl/?p=4183&lang=en + (NOV, 3, special_national_holidays), + # http://timor-leste.gov.tl/?p=4437&lang=en + (DEC, 24, special_national_holidays), + (DEC, 31, special_national_holidays), + ), + 2011: ( + # http://timor-leste.gov.tl/?p=5496&lang=en + (AUG, 15, special_national_holidays), + # http://timor-leste.gov.tl/?p=5979&lang=en + (NOV, 3, special_national_holidays), + # http://timor-leste.gov.tl/?p=6264&lang=en + (DEC, 26, special_national_holidays), + ), + 2012: ( + # http://timor-leste.gov.tl/?p=6264&lang=en + (JAN, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=6347&lang=en + (JAN, 23, special_national_holidays), + # http://timor-leste.gov.tl/?p=6471&lang=en + (FEB, 22, special_national_holidays), + # http://timor-leste.gov.tl/?p=6621&lang=en + (MAR, 16, presidential_election), + # http://timor-leste.gov.tl/?p=6760&lang=en + (APR, 16, presidential_election), + (APR, 17, presidential_election), + # http://timor-leste.gov.tl/?p=7035&lang=en + (JUL, 6, parliamentary_election), + # http://timor-leste.gov.tl/?p=7046&lang=en + (JUL, 9, parliamentary_election), + # http://timor-leste.gov.tl/?p=7474&lang=en + (NOV, 27, dom_boaventura_centenary), + (NOV, 29, dom_boaventura_centenary), + # http://timor-leste.gov.tl/?p=7550&lang=en + (DEC, 24, special_national_holidays), + (DEC, 26, special_national_holidays), + (DEC, 31, special_national_holidays), + ), + 2013: ( + # http://timor-leste.gov.tl/?p=7715&lang=en + (FEB, 13, special_national_holidays), + # http://timor-leste.gov.tl/?p=7918&lang=en + (MAR, 28, special_national_holidays), + (APR, 1, special_national_holidays), + # http://timor-leste.gov.tl/?p=8664&lang=en + (AUG, 20, special_national_holidays), + # http://timor-leste.gov.tl/?p=9392&lang=en + (NOV, 29, special_national_holidays), + # http://timor-leste.gov.tl/?p=9475&lang=en + (DEC, 24, special_national_holidays), + (DEC, 26, special_national_holidays), + (DEC, 31, special_national_holidays), + ), + 2014: ( + # http://timor-leste.gov.tl/?p=9759&lang=en + (MAR, 5, special_national_holidays), + # http://timor-leste.gov.tl/?p=9964&lang=en + (APR, 17, special_national_holidays), + (APR, 21, special_national_holidays), + # http://timor-leste.gov.tl/?p=10294&lang=en + (JUL, 22, special_national_holidays), + (JUL, 23, special_national_holidays), + # http://timor-leste.gov.tl/?p=10524&lang=en + (AUG, 15, special_national_holidays), + (AUG, 20, special_national_holidays), + # http://timor-leste.gov.tl/?p=11036&lang=en + (DEC, 24, special_national_holidays), + (DEC, 26, special_national_holidays), + (DEC, 31, special_national_holidays), + ), + 2015: ( + # http://timor-leste.gov.tl/?p=11036&lang=en + (JAN, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=11247&lang=en + (FEB, 18, special_national_holidays), + # http://timor-leste.gov.tl/?p=11544&lang=en + (APR, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=11966&lang=en + (MAY, 13, special_national_holidays), + # http://timor-leste.gov.tl/?p=12246&lang=en + (JUN, 5, la_sama_funeral), + # http://timor-leste.gov.tl/?p=13105&lang=en + (AUG, 20, special_national_holidays), + # http://timor-leste.gov.tl/?p=14271&lang=en + (DEC, 24, special_national_holidays), + (DEC, 31, special_national_holidays), + ), + 2016: ( + # http://timor-leste.gov.tl/?p=14482&lang=en + (FEB, 10, special_national_holidays), + # http://timor-leste.gov.tl/?p=14827&lang=en + (MAR, 24, special_national_holidays), + # http://timor-leste.gov.tl/?p=15740&lang=en + (JUL, 6, special_national_holidays), + # http://timor-leste.gov.tl/?p=16626&lang=en + (NOV, 3, special_national_holidays), + # http://timor-leste.gov.tl/?p=16998&lang=en + (DEC, 26, special_national_holidays), + ), + 2017: ( + # http://timor-leste.gov.tl/?p=16998&lang=en + (JAN, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=17428&lang=en + (MAR, 1, special_national_holidays), + # http://timor-leste.gov.tl/?p=17548&lang=en + (MAR, 20, presidential_election), + (MAR, 21, presidential_election), + # http://timor-leste.gov.tl/?p=17698&lang=en + (APR, 13, special_national_holidays), + # http://timor-leste.gov.tl/?p=19189&lang=en + (DEC, 26, special_national_holidays), + ), + 2018: ( + # http://timor-leste.gov.tl/?p=19189&lang=en + (JAN, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=19411&lang=en + (FEB, 14, special_national_holidays), + # http://timor-leste.gov.tl/?p=19452&lang=en + (FEB, 16, special_national_holidays), + # http://timor-leste.gov.tl/?p=19693&lang=en + (MAR, 29, special_national_holidays), + # http://timor-leste.gov.tl/?p=20199&lang=en + (AUG, 22, special_national_holidays), + ), + 2019: ( + # http://timor-leste.gov.tl/?p=21116&lang=en + (FEB, 5, special_national_holidays), + # http://timor-leste.gov.tl/?p=21207&lang=en + (MAR, 6, special_national_holidays), + # http://timor-leste.gov.tl/?p=21607&lang=en + (APR, 18, special_national_holidays), + # http://timor-leste.gov.tl/?p=22642&lang=en + (AUG, 12, special_national_holidays), + # http://timor-leste.gov.tl/?p=22681&lang=en + (AUG, 20, special_national_holidays), + # http://timor-leste.gov.tl/?p=22701&lang=en + (AUG, 26, popular_consultation_20th), + (AUG, 27, popular_consultation_20th), + (AUG, 28, popular_consultation_20th), + (AUG, 29, popular_consultation_20th), + # http://timor-leste.gov.tl/?p=23277&lang=en + (OCT, 31, special_national_holidays), + # http://timor-leste.gov.tl/?p=23417&lang=en + (DEC, 24, special_national_holidays), + (DEC, 26, special_national_holidays), + (DEC, 30, special_national_holidays), + ), + 2020: ( + # http://timor-leste.gov.tl/?p=23417&lang=en + (JAN, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=23607&lang=en + (FEB, 26, special_national_holidays), + # http://timor-leste.gov.tl/?p=25502&lang=en + (AUG, 31, special_national_holidays), + # http://timor-leste.gov.tl/?p=26030&lang=en + (NOV, 3, special_national_holidays), + ), + 2021: ( + # http://timor-leste.gov.tl/?p=26865&lang=en + (FEB, 12, special_national_holidays), + # http://timor-leste.gov.tl/?p=29682&lang=en + (NOV, 3, special_national_holidays), + ), + 2022: ( + # http://timor-leste.gov.tl/?p=30029&lang=en + (FEB, 1, special_national_holidays), + # http://timor-leste.gov.tl/?p=30254&lang=en + (MAR, 18, presidential_election), + # http://timor-leste.gov.tl/?p=30429&lang=en + (APR, 14, special_national_holidays), + (APR, 18, presidential_election), + (APR, 19, presidential_election), + (APR, 20, presidential_election), + ), + 2023: ( + # http://timor-leste.gov.tl/?p=31641&lang=en + (JAN, 2, special_national_holidays), + # http://timor-leste.gov.tl/?p=31798&lang=en + (JAN, 23, special_national_holidays), + ), + } diff --git a/holidays/locale/en_US/LC_MESSAGES/TL.po b/holidays/locale/en_US/LC_MESSAGES/TL.po new file mode 100644 index 000000000..d0248619b --- /dev/null +++ b/holidays/locale/en_US/LC_MESSAGES/TL.po @@ -0,0 +1,145 @@ +# Timor-Leste holidays en_US localization. +# Authors: PPsyrius , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.35\n" +"POT-Creation-Date: 2023-10-14 08:23+0700\n" +"PO-Revision-Date: 2023-10-14 08:26+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Python Holidays localization team\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#, c-format +msgid "%s* (*aproximada)" +msgstr "%s* (*estimated)" + +#. New Year's Day. +msgid "Dia de Ano Novo" +msgstr "New Year's Day" + +#. Veteran's Day. +msgid "Dia dos Veteranos" +msgstr "Veteran's Day" + +#. World Labor Day. +msgid "Dia Mundial do Trabalhador" +msgstr "World Labor Day" + +#. Restoration of Independence Day. +msgid "Dia da Restauração da Independência" +msgstr "Restoration of Independence Day" + +#. Popular Consultation Day. +msgid "Dia da Consulta Popular" +msgstr "Popular Consultation Day" + +#. All Saints Day. +msgid "Dia de Todos os Santos" +msgstr "All Saints Day" + +#. All Souls Day. +msgid "Dia de Todos os Fiéis Defuntos" +msgstr "All Souls Day" + +#. National Women's Day. +msgid "Dia Nacional da Mulher" +msgstr "National Women's Day" + +#. National Youth Day. +msgid "Dia Nacional da Juventude" +msgstr "National Youth Day" + +#. Proclamation of Independence Day. +msgid "Dia da Proclamação da Independência" +msgstr "Proclamation of Independence Day" + +#. Memorial Day. +msgid "Dia da Memória" +msgstr "Memorial Day" + +#. Day of Our Lady of Immaculate Conception and Timor-Leste Patroness. +msgid "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste" +msgstr "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness" + +#. Christmas Day. +msgid "Dia de Natal" +msgstr "Christmas Day" + +#. National Heroes Day. +msgid "Dia dos Heróis Nacionais" +msgstr "National Heroes Day" + +#. Holy Friday. +msgid "Sexta-Feira Santa" +msgstr "Holy Friday" + +#. Idul Fitri. +msgid "Idul Fitri" +msgstr "Idul Fitri" + +#. Corpus Christi. +msgid "Festa do Corpo de Deus" +msgstr "Corpus Christi" + +#. Idul Adha. +msgid "Idul Adha" +msgstr "Idul Adha" + +#. National Holidays (Special). +msgid "Feriados Nacionais (Especiais)" +msgstr "National Holidays (Special)" + +#. World Children's Day. +msgid "Dia Mundial da Criança" +msgstr "World Children's Day" + +#. Day of the Armed Forces for the National Liberation of Timor-Leste +#. (FALINTIL). +msgid "" +"Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)" +msgstr "" +"Day of the Armed Forces for the National Liberation of Timor-Leste " +"(FALINTIL)" + +#. World Human Rights Day. +msgid "Dia Mundial dos Direitos Humanos" +msgstr "World Human Rights Day" + +#. Ash Wednesday. +msgid "Quarta-Feira de Cinzas" +msgstr "Ash Wednesday" + +#. Holy Thusday. +msgid "Quinta-Feira Santa" +msgstr "Holy Thusday" + +#. The Day of Ascension of Jesus Christ into Heaven. +msgid "Dia da Ascensão de Jesus Cristo ao Céu" +msgstr "The Day of Ascension of Jesus Christ into Heaven" + +#. Presidential Election Day. +msgid "Dia da Eleição Presidencial" +msgstr "Presidential Election Day" + +#. Parliamentary Election Day. +msgid "Dia de Eleições Parlamentares" +msgstr "Parliamentary Election Day" + +#. Centenary of the Revolt of Dom Boaventura. +msgid "Centenário da Revolta de Dom Boaventura" +msgstr "Centenary of the Revolt of Dom Boaventura" + +#. Funeral Ceremonies of Fernando 'La Sama' de Araújo. +msgid "Cerimónias Fúnebres de Fernando 'La Sama' de Araújo" +msgstr "Funeral Ceremonies of Fernando 'La Sama' de Araújo" + +#. 20th Anniversary Celebrations of the Popular Consultation. +msgid "Celebrações do 20.º Aniversário da Consulta Popular" +msgstr "20th Anniversary Celebrations of the Popular Consultation" diff --git a/holidays/locale/pt_TL/LC_MESSAGES/TL.po b/holidays/locale/pt_TL/LC_MESSAGES/TL.po new file mode 100644 index 000000000..11632f7f9 --- /dev/null +++ b/holidays/locale/pt_TL/LC_MESSAGES/TL.po @@ -0,0 +1,143 @@ +# Timor-Leste holidays. +# Authors: PPsyrius , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.35\n" +"POT-Creation-Date: 2023-10-14 08:23+0700\n" +"PO-Revision-Date: 2023-10-14 08:26+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Python Holidays localization team\n" +"Language: pt_TL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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" + +#, c-format +msgid "%s* (*aproximada)" +msgstr "" + +#. New Year's Day. +msgid "Dia de Ano Novo" +msgstr "" + +#. Veteran's Day. +msgid "Dia dos Veteranos" +msgstr "" + +#. World Labor Day. +msgid "Dia Mundial do Trabalhador" +msgstr "" + +#. Restoration of Independence Day. +msgid "Dia da Restauração da Independência" +msgstr "" + +#. Popular Consultation Day. +msgid "Dia da Consulta Popular" +msgstr "" + +#. All Saints Day. +msgid "Dia de Todos os Santos" +msgstr "" + +#. All Souls Day. +msgid "Dia de Todos os Fiéis Defuntos" +msgstr "" + +#. National Women's Day. +msgid "Dia Nacional da Mulher" +msgstr "" + +#. National Youth Day. +msgid "Dia Nacional da Juventude" +msgstr "" + +#. Proclamation of Independence Day. +msgid "Dia da Proclamação da Independência" +msgstr "" + +#. Memorial Day. +msgid "Dia da Memória" +msgstr "" + +#. Day of Our Lady of Immaculate Conception and Timor-Leste Patroness. +msgid "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste" +msgstr "" + +#. Christmas Day. +msgid "Dia de Natal" +msgstr "" + +#. National Heroes Day. +msgid "Dia dos Heróis Nacionais" +msgstr "" + +#. Holy Friday. +msgid "Sexta-Feira Santa" +msgstr "" + +#. Idul Fitri. +msgid "Idul Fitri" +msgstr "" + +#. Corpus Christi. +msgid "Festa do Corpo de Deus" +msgstr "" + +#. Idul Adha. +msgid "Idul Adha" +msgstr "" + +#. National Holidays (Special). +msgid "Feriados Nacionais (Especiais)" +msgstr "" + +#. World Children's Day. +msgid "Dia Mundial da Criança" +msgstr "" + +#. Day of the Armed Forces for the National Liberation of Timor-Leste +#. (FALINTIL). +msgid "" +"Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)" +msgstr "" + +#. World Human Rights Day. +msgid "Dia Mundial dos Direitos Humanos" +msgstr "" + +#. Ash Wednesday. +msgid "Quarta-Feira de Cinzas" +msgstr "" + +#. Holy Thusday. +msgid "Quinta-Feira Santa" +msgstr "" + +#. The Day of Ascension of Jesus Christ into Heaven. +msgid "Dia da Ascensão de Jesus Cristo ao Céu" +msgstr "" + +#. Presidential Election Day. +msgid "Dia da Eleição Presidencial" +msgstr "" + +#. Parliamentary Election Day. +msgid "Dia de Eleições Parlamentares" +msgstr "" + +#. Centenary of the Revolt of Dom Boaventura. +msgid "Centenário da Revolta de Dom Boaventura" +msgstr "" + +#. Funeral Ceremonies of Fernando 'La Sama' de Araújo. +msgid "Cerimónias Fúnebres de Fernando 'La Sama' de Araújo" +msgstr "" + +#. 20th Anniversary Celebrations of the Popular Consultation. +msgid "Celebrações do 20.º Aniversário da Consulta Popular" +msgstr "" diff --git a/holidays/locale/tet/LC_MESSAGES/TL.po b/holidays/locale/tet/LC_MESSAGES/TL.po new file mode 100644 index 000000000..e70567da0 --- /dev/null +++ b/holidays/locale/tet/LC_MESSAGES/TL.po @@ -0,0 +1,143 @@ +# Timor-Leste holidays tet localization. +# Authors: PPsyrius , (c) 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: Python Holidays 0.35\n" +"POT-Creation-Date: 2023-10-14 08:23+0700\n" +"PO-Revision-Date: 2023-10-14 08:29+0700\n" +"Last-Translator: PPsyrius \n" +"Language-Team: Python Holidays localization team\n" +"Language: tet\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Lingua 4.15.0\n" +"X-Generator: Poedit 3.4\n" + +#, c-format +msgid "%s* (*aproximada)" +msgstr "%s* (*kalkula)" + +#. New Year's Day. +msgid "Dia de Ano Novo" +msgstr "Loron Tinan-Foun nian" + +#. Veteran's Day. +msgid "Dia dos Veteranos" +msgstr "Loron Veteranu sira nian" + +#. World Labor Day. +msgid "Dia Mundial do Trabalhador" +msgstr "Loron Mundiál Serbisu-na'in sira nian" + +#. Restoration of Independence Day. +msgid "Dia da Restauração da Independência" +msgstr "Loron Restaurasaun Independénsia nian" + +#. Popular Consultation Day. +msgid "Dia da Consulta Popular" +msgstr "Loron Konsulta Populár nian" + +#. All Saints Day. +msgid "Dia de Todos os Santos" +msgstr "Loron Santu sira Hotu nian" + +#. All Souls Day. +msgid "Dia de Todos os Fiéis Defuntos" +msgstr "Loron Matebian sira nian" + +#. National Women's Day. +msgid "Dia Nacional da Mulher" +msgstr "Loron Nasionál Feto" + +#. National Youth Day. +msgid "Dia Nacional da Juventude" +msgstr "Loron Nasionál Foin-Sa'e sira nian" + +#. Proclamation of Independence Day. +msgid "Dia da Proclamação da Independência" +msgstr "Loron Proklamasaun Independénsia nian" + +#. Memorial Day. +msgid "Dia da Memória" +msgstr "Loron Memória nian" + +#. Day of Our Lady of Immaculate Conception and Timor-Leste Patroness. +msgid "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste" +msgstr "Loron Nossa Senhora da Imaculada Conceição, mahein Timor-Leste nian" + +#. Christmas Day. +msgid "Dia de Natal" +msgstr "Loron Natál" + +#. National Heroes Day. +msgid "Dia dos Heróis Nacionais" +msgstr "Loron Eroi Nasionál sira nian" + +#. Holy Friday. +msgid "Sexta-Feira Santa" +msgstr "Sesta-Feira Santa" + +#. Idul Fitri. +msgid "Idul Fitri" +msgstr "Idul-Fitri" + +#. Corpus Christi. +msgid "Festa do Corpo de Deus" +msgstr "Festa Korpu de Deus" + +#. Idul Adha. +msgid "Idul Adha" +msgstr "Idul Adha" + +#. National Holidays (Special). +msgid "Feriados Nacionais (Especiais)" +msgstr "Feriadu Nasional (Espesial)" + +#. World Children's Day. +msgid "Dia Mundial da Criança" +msgstr "Loron Mundial ba Labarik" + +#. Day of the Armed Forces for the National Liberation of Timor-Leste +#. (FALINTIL). +msgid "" +"Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)" +msgstr "Loron Forsa Armada Libertasaun Nasionál Timor-Leste (FALINTIL) nian" + +#. World Human Rights Day. +msgid "Dia Mundial dos Direitos Humanos" +msgstr "Loron Mundiál Direitu Umanu" + +#. Ash Wednesday. +msgid "Quarta-Feira de Cinzas" +msgstr "Kuarta-Feira Sinzas" + +#. Holy Thusday. +msgid "Quinta-Feira Santa" +msgstr "Quinta-Feira Santa" + +#. The Day of Ascension of Jesus Christ into Heaven. +msgid "Dia da Ascensão de Jesus Cristo ao Céu" +msgstr "Loron Ascensão do Senhor Jesus Cristo hi'it An ba Lalehan nian" + +#. Presidential Election Day. +msgid "Dia da Eleição Presidencial" +msgstr "Loron Eleisaun Prezidensiál nian" + +#. Parliamentary Election Day. +msgid "Dia de Eleições Parlamentares" +msgstr "Loron Eleisaun Parlamentár nian" + +#. Centenary of the Revolt of Dom Boaventura. +msgid "Centenário da Revolta de Dom Boaventura" +msgstr "Sentanáriu Revolta Dom Boaventura nian" + +#. Funeral Ceremonies of Fernando 'La Sama' de Araújo. +msgid "Cerimónias Fúnebres de Fernando 'La Sama' de Araújo" +msgstr "Serimónia Fúnebre Fernando 'La Sama' de Araújo nian" + +#. 20th Anniversary Celebrations of the Popular Consultation. +msgid "Celebrações do 20.º Aniversário da Consulta Popular" +msgstr "Komemorasaun Aniversáriu Konsulta Popular ba dala 20" diff --git a/holidays/registry.py b/holidays/registry.py index 4d77b02c1..4cd92acfb 100644 --- a/holidays/registry.py +++ b/holidays/registry.py @@ -138,6 +138,7 @@ "taiwan": ("Taiwan", "TW", "TWN"), "tanzania": ("Tanzania", "TZ", "TZA"), "thailand": ("Thailand", "TH", "THA"), + "timor_leste": ("TimorLeste", "TL", "TLS"), "tunisia": ("Tunisia", "TN", "TUN"), "turkey": ("Turkey", "TR", "TUR"), "ukraine": ("Ukraine", "UA", "UKR"), diff --git a/tests/countries/test_timor_leste.py b/tests/countries/test_timor_leste.py new file mode 100644 index 000000000..c52494247 --- /dev/null +++ b/tests/countries/test_timor_leste.py @@ -0,0 +1,517 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from holidays.constants import GOVERNMENT, PUBLIC, WORKDAY +from holidays.countries.timor_leste import TimorLeste, TL, TLS +from tests.common import TestCase + + +class TestTimorLeste(TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass(TimorLeste, years=range(2006, 2050)) + + def test_country_aliases(self): + self.assertCountryAliases(TimorLeste, TL, TLS) + + def test_no_holidays(self): + self.assertNoHolidays(TimorLeste(years=2005)) + self.assertNoHolidays(TimorLeste(years=2005, categories=(GOVERNMENT,))) + self.assertNoHolidays(TimorLeste(years=2005, categories=(WORKDAY,))) + + def test_special_government_holidays(self): + self.assertHoliday( + TimorLeste(categories=(GOVERNMENT,)), + "2010-11-03", + "2010-12-24", + "2010-12-31", + "2011-08-15", + "2011-11-03", + "2011-12-26", + "2012-01-02", + "2012-01-23", + "2012-02-22", + "2012-03-16", + "2012-04-16", + "2012-04-17", + "2012-11-27", + "2012-11-29", + "2012-12-24", + "2012-12-26", + "2012-12-31", + "2013-02-13", + "2013-03-28", + "2013-04-01", + "2013-08-20", + "2013-11-29", + "2013-12-24", + "2013-12-26", + "2013-12-31", + "2014-03-05", + "2014-04-17", + "2014-04-21", + "2014-07-22", + "2014-07-23", + "2014-08-15", + "2014-08-20", + "2014-12-24", + "2014-12-26", + "2014-12-31", + "2015-01-02", + "2015-02-18", + "2015-04-02", + "2015-05-13", + "2015-06-05", + "2015-08-20", + "2015-12-24", + "2015-12-31", + "2016-02-10", + "2016-03-24", + "2016-07-06", + "2016-11-03", + "2016-12-26", + "2017-01-02", + "2017-03-01", + "2017-03-20", + "2017-03-21", + "2017-04-13", + "2017-12-26", + "2018-01-02", + "2018-02-14", + "2018-02-16", + "2018-03-29", + "2018-08-22", + "2019-02-05", + "2019-03-06", + "2019-04-18", + "2019-08-12", + "2019-08-20", + "2019-08-26", + "2019-08-27", + "2019-08-28", + "2019-08-29", + "2019-10-31", + "2019-12-24", + "2019-12-26", + "2019-12-30", + "2020-01-02", + "2020-02-26", + "2020-08-31", + "2020-11-03", + "2021-02-12", + "2021-11-03", + "2022-02-01", + "2022-03-18", + "2022-04-14", + "2022-04-18", + "2022-04-19", + "2022-04-20", + "2023-01-02", + "2023-01-23", + ) + + def test_2011_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2011), + ("2011-01-01", "Dia de Ano Novo"), + ("2011-04-22", "Sexta-Feira Santa"), + ("2011-05-01", "Dia Mundial do Trabalhador"), + ("2011-05-20", "Dia da Restauração da Independência"), + ("2011-06-23", "Festa do Corpo de Deus"), + ("2011-08-30", "Dia da Consulta Popular"), + ("2011-08-31", "Idul Fitri"), + ("2011-11-01", "Dia de Todos os Santos"), + ("2011-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2011-11-07", "Idul Adha"), + ("2011-11-12", "Dia Nacional da Juventude"), + ("2011-11-28", "Dia da Proclamação da Independência"), + ("2011-12-07", "Dia dos Heróis Nacionais"), + ( + "2011-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2011-12-25", "Dia de Natal"), + ) + + def test_2012_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2012), + ("2012-01-01", "Dia de Ano Novo"), + ("2012-04-06", "Sexta-Feira Santa"), + ("2012-05-01", "Dia Mundial do Trabalhador"), + ("2012-05-20", "Dia da Restauração da Independência"), + ("2012-06-07", "Festa do Corpo de Deus"), + ("2012-08-20", "Idul Fitri"), + ("2012-08-30", "Dia da Consulta Popular"), + ("2012-10-26", "Idul Adha"), + ("2012-11-01", "Dia de Todos os Santos"), + ("2012-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2012-11-12", "Dia Nacional da Juventude"), + ("2012-11-28", "Dia da Proclamação da Independência"), + ("2012-12-07", "Dia dos Heróis Nacionais"), + ( + "2012-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2012-12-25", "Dia de Natal"), + ) + + def test_2013_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2013), + ("2013-01-01", "Dia de Ano Novo"), + ("2013-03-29", "Sexta-Feira Santa"), + ("2013-05-01", "Dia Mundial do Trabalhador"), + ("2013-05-20", "Dia da Restauração da Independência"), + ("2013-05-30", "Festa do Corpo de Deus"), + ("2013-08-08", "Idul Fitri"), + ("2013-08-30", "Dia da Consulta Popular"), + ("2013-10-15", "Idul Adha"), + ("2013-11-01", "Dia de Todos os Santos"), + ("2013-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2013-11-12", "Dia Nacional da Juventude"), + ("2013-11-28", "Dia da Proclamação da Independência"), + ("2013-12-07", "Dia dos Heróis Nacionais"), + ( + "2013-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2013-12-25", "Dia de Natal"), + ) + + def test_2014_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2014), + ("2014-01-01", "Dia de Ano Novo"), + ("2014-04-18", "Sexta-Feira Santa"), + ("2014-05-01", "Dia Mundial do Trabalhador"), + ("2014-05-20", "Dia da Restauração da Independência"), + ("2014-06-19", "Festa do Corpo de Deus"), + ("2014-07-28", "Idul Fitri"), + ("2014-08-30", "Dia da Consulta Popular"), + ("2014-10-04", "Idul Adha"), + ("2014-11-01", "Dia de Todos os Santos"), + ("2014-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2014-11-12", "Dia Nacional da Juventude"), + ("2014-11-28", "Dia da Proclamação da Independência"), + ("2014-12-07", "Dia dos Heróis Nacionais"), + ( + "2014-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2014-12-25", "Dia de Natal"), + ) + + def test_2015_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2015), + ("2015-01-01", "Dia de Ano Novo"), + ("2015-04-03", "Sexta-Feira Santa"), + ("2015-05-01", "Dia Mundial do Trabalhador"), + ("2015-05-20", "Dia da Restauração da Independência"), + ("2015-06-04", "Festa do Corpo de Deus"), + ("2015-07-17", "Idul Fitri"), + ("2015-08-30", "Dia da Consulta Popular"), + ("2015-09-24", "Idul Adha"), + ("2015-11-01", "Dia de Todos os Santos"), + ("2015-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2015-11-12", "Dia Nacional da Juventude"), + ("2015-11-28", "Dia da Proclamação da Independência"), + ("2015-12-07", "Dia dos Heróis Nacionais"), + ( + "2015-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2015-12-25", "Dia de Natal"), + ) + + def test_2016_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2016), + ("2016-01-01", "Dia de Ano Novo"), + ("2016-03-25", "Sexta-Feira Santa"), + ("2016-05-01", "Dia Mundial do Trabalhador"), + ("2016-05-20", "Dia da Restauração da Independência"), + ("2016-05-26", "Festa do Corpo de Deus"), + ("2016-07-07", "Idul Fitri"), + ("2016-08-30", "Dia da Consulta Popular"), + ("2016-09-18", "Idul Adha"), + ("2016-11-01", "Dia de Todos os Santos"), + ("2016-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2016-11-12", "Dia Nacional da Juventude"), + ("2016-11-28", "Dia da Proclamação da Independência"), + ("2016-12-07", "Dia dos Heróis Nacionais"), + ( + "2016-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2016-12-25", "Dia de Natal"), + ) + + def test_2017_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2017), + ("2017-01-01", "Dia de Ano Novo"), + ("2017-03-03", "Dia dos Veteranos"), + ("2017-04-14", "Sexta-Feira Santa"), + ("2017-05-01", "Dia Mundial do Trabalhador"), + ("2017-05-20", "Dia da Restauração da Independência"), + ("2017-06-15", "Festa do Corpo de Deus"), + ("2017-06-26", "Idul Fitri"), + ("2017-08-30", "Dia da Consulta Popular"), + ("2017-09-01", "Idul Adha"), + ("2017-11-01", "Dia de Todos os Santos"), + ("2017-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2017-11-12", "Dia Nacional da Juventude"), + ("2017-11-28", "Dia da Proclamação da Independência"), + ("2017-12-07", "Dia da Memória"), + ( + "2017-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2017-12-25", "Dia de Natal"), + ("2017-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_2018_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2018), + ("2018-01-01", "Dia de Ano Novo"), + ("2018-03-03", "Dia dos Veteranos"), + ("2018-03-30", "Sexta-Feira Santa"), + ("2018-05-01", "Dia Mundial do Trabalhador"), + ("2018-05-20", "Dia da Restauração da Independência"), + ("2018-05-31", "Festa do Corpo de Deus"), + ("2018-06-15", "Idul Fitri"), + ("2018-08-21", "Idul Adha"), + ("2018-08-30", "Dia da Consulta Popular"), + ("2018-11-01", "Dia de Todos os Santos"), + ("2018-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2018-11-12", "Dia Nacional da Juventude"), + ("2018-11-28", "Dia da Proclamação da Independência"), + ("2018-12-07", "Dia da Memória"), + ( + "2018-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2018-12-25", "Dia de Natal"), + ("2018-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_2019_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2019), + ("2019-01-01", "Dia de Ano Novo"), + ("2019-03-03", "Dia dos Veteranos"), + ("2019-04-19", "Sexta-Feira Santa"), + ("2019-05-01", "Dia Mundial do Trabalhador"), + ("2019-05-20", "Dia da Restauração da Independência"), + ("2019-06-06", "Idul Fitri"), + ("2019-06-20", "Festa do Corpo de Deus"), + ("2019-08-11", "Idul Adha"), + ("2019-08-30", "Dia da Consulta Popular"), + ("2019-11-01", "Dia de Todos os Santos"), + ("2019-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2019-11-12", "Dia Nacional da Juventude"), + ("2019-11-28", "Dia da Proclamação da Independência"), + ("2019-12-07", "Dia da Memória"), + ( + "2019-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2019-12-25", "Dia de Natal"), + ("2019-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_2020_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2020), + ("2020-01-01", "Dia de Ano Novo"), + ("2020-03-03", "Dia dos Veteranos"), + ("2020-04-10", "Sexta-Feira Santa"), + ("2020-05-01", "Dia Mundial do Trabalhador"), + ("2020-05-20", "Dia da Restauração da Independência"), + ("2020-05-24", "Idul Fitri"), + ("2020-06-11", "Festa do Corpo de Deus"), + ("2020-07-31", "Idul Adha"), + ("2020-08-30", "Dia da Consulta Popular"), + ("2020-11-01", "Dia de Todos os Santos"), + ("2020-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2020-11-12", "Dia Nacional da Juventude"), + ("2020-11-28", "Dia da Proclamação da Independência"), + ("2020-12-07", "Dia da Memória"), + ( + "2020-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2020-12-25", "Dia de Natal"), + ("2020-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_2021_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2021), + ("2021-01-01", "Dia de Ano Novo"), + ("2021-03-03", "Dia dos Veteranos"), + ("2021-04-02", "Sexta-Feira Santa"), + ("2021-05-01", "Dia Mundial do Trabalhador"), + ("2021-05-13", "Idul Fitri"), + ("2021-05-20", "Dia da Restauração da Independência"), + ("2021-06-03", "Festa do Corpo de Deus"), + ("2021-07-19", "Idul Adha"), + ("2021-08-30", "Dia da Consulta Popular"), + ("2021-11-01", "Dia de Todos os Santos"), + ("2021-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2021-11-12", "Dia Nacional da Juventude"), + ("2021-11-28", "Dia da Proclamação da Independência"), + ("2021-12-07", "Dia da Memória"), + ( + "2021-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2021-12-25", "Dia de Natal"), + ("2021-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_2022_public(self): + self.assertHolidays( + TimorLeste(categories=(PUBLIC,), years=2022), + ("2022-01-01", "Dia de Ano Novo"), + ("2022-03-03", "Dia dos Veteranos"), + ("2022-04-15", "Sexta-Feira Santa"), + ("2022-05-01", "Dia Mundial do Trabalhador"), + ("2022-05-02", "Idul Fitri"), + ("2022-05-20", "Dia da Restauração da Independência"), + ("2022-06-16", "Festa do Corpo de Deus"), + ("2022-07-09", "Idul Adha"), + ("2022-08-30", "Dia da Consulta Popular"), + ("2022-11-01", "Dia de Todos os Santos"), + ("2022-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2022-11-12", "Dia Nacional da Juventude"), + ("2022-11-28", "Dia da Proclamação da Independência"), + ("2022-12-07", "Dia da Memória"), + ( + "2022-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2022-12-25", "Dia de Natal"), + ("2022-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_l10n_default(self): + self.assertLocalizedHolidays( + ("2023-01-01", "Dia de Ano Novo"), + ("2023-01-02", "Feriados Nacionais (Especiais)"), + ("2023-01-23", "Feriados Nacionais (Especiais)"), + ("2023-02-22", "Quarta-Feira de Cinzas"), + ("2023-03-03", "Dia dos Veteranos"), + ("2023-04-06", "Quinta-Feira Santa"), + ("2023-04-07", "Sexta-Feira Santa"), + ("2023-04-22", "Idul Fitri"), + ("2023-05-01", "Dia Mundial do Trabalhador"), + ("2023-05-18", "Dia da Ascensão de Jesus Cristo ao Céu"), + ("2023-05-20", "Dia da Restauração da Independência"), + ("2023-06-01", "Dia Mundial da Criança"), + ("2023-06-08", "Festa do Corpo de Deus"), + ("2023-06-29", "Idul Adha"), + ( + "2023-08-20", + "Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)", + ), + ("2023-08-30", "Dia da Consulta Popular"), + ("2023-11-01", "Dia de Todos os Santos"), + ("2023-11-02", "Dia de Todos os Fiéis Defuntos"), + ("2023-11-03", "Dia Nacional da Mulher"), + ("2023-11-12", "Dia Nacional da Juventude"), + ("2023-11-28", "Dia da Proclamação da Independência"), + ("2023-12-07", "Dia da Memória"), + ( + "2023-12-08", + "Dia de Nossa Senhora da Imaculada Conceição, padroeira de Timor-Leste", + ), + ("2023-12-10", "Dia Mundial dos Direitos Humanos"), + ("2023-12-25", "Dia de Natal"), + ("2023-12-31", "Dia dos Heróis Nacionais"), + ) + + def test_l10n_en_us(self): + self.assertLocalizedHolidays( + "en_US", + ("2023-01-01", "New Year's Day"), + ("2023-01-02", "National Holidays (Special)"), + ("2023-01-23", "National Holidays (Special)"), + ("2023-02-22", "Ash Wednesday"), + ("2023-03-03", "Veteran's Day"), + ("2023-04-06", "Holy Thusday"), + ("2023-04-07", "Holy Friday"), + ("2023-04-22", "Idul Fitri"), + ("2023-05-01", "World Labor Day"), + ("2023-05-18", "The Day of Ascension of Jesus Christ into Heaven"), + ("2023-05-20", "Restoration of Independence Day"), + ("2023-06-01", "World Children's Day"), + ("2023-06-08", "Corpus Christi"), + ("2023-06-29", "Idul Adha"), + ( + "2023-08-20", + "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + ), + ("2023-08-30", "Popular Consultation Day"), + ("2023-11-01", "All Saints Day"), + ("2023-11-02", "All Souls Day"), + ("2023-11-03", "National Women's Day"), + ("2023-11-12", "National Youth Day"), + ("2023-11-28", "Proclamation of Independence Day"), + ("2023-12-07", "Memorial Day"), + ( + "2023-12-08", + "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + ), + ("2023-12-10", "World Human Rights Day"), + ("2023-12-25", "Christmas Day"), + ("2023-12-31", "National Heroes Day"), + ) + + def test_l10n_tet(self): + self.assertLocalizedHolidays( + "tet", + ("2023-01-01", "Loron Tinan-Foun nian"), + ("2023-01-02", "Feriadu Nasional (Espesial)"), + ("2023-01-23", "Feriadu Nasional (Espesial)"), + ("2023-02-22", "Kuarta-Feira Sinzas"), + ("2023-03-03", "Loron Veteranu sira nian"), + ("2023-04-06", "Quinta-Feira Santa"), + ("2023-04-07", "Sesta-Feira Santa"), + ("2023-04-22", "Idul-Fitri"), + ("2023-05-01", "Loron Mundiál Serbisu-na'in sira nian"), + ("2023-05-18", "Loron Ascensão do Senhor Jesus Cristo hi'it An ba Lalehan nian"), + ("2023-05-20", "Loron Restaurasaun Independénsia nian"), + ("2023-06-01", "Loron Mundial ba Labarik"), + ("2023-06-08", "Festa Korpu de Deus"), + ("2023-06-29", "Idul Adha"), + ( + "2023-08-20", + "Loron Forsa Armada Libertasaun Nasionál Timor-Leste (FALINTIL) nian", + ), + ("2023-08-30", "Loron Konsulta Populár nian"), + ("2023-11-01", "Loron Santu sira Hotu nian"), + ("2023-11-02", "Loron Matebian sira nian"), + ("2023-11-03", "Loron Nasionál Feto"), + ("2023-11-12", "Loron Nasionál Foin-Sa'e sira nian"), + ("2023-11-28", "Loron Proklamasaun Independénsia nian"), + ("2023-12-07", "Loron Memória nian"), + ( + "2023-12-08", + "Loron Nossa Senhora da Imaculada Conceição, mahein Timor-Leste nian", + ), + ("2023-12-10", "Loron Mundiál Direitu Umanu"), + ("2023-12-25", "Loron Natál"), + ("2023-12-31", "Loron Eroi Nasionál sira nian"), + ) From 9668a644b1ed2f535265c5305ba89a8071c2dbb3 Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Mon, 16 Oct 2023 22:50:04 +0700 Subject: [PATCH 2/5] [TL] Initial `make snapshot` list --- snapshots/countries/TL.json | 1118 +++++++++++++++++++++++++++++++++++ 1 file changed, 1118 insertions(+) create mode 100644 snapshots/countries/TL.json diff --git a/snapshots/countries/TL.json b/snapshots/countries/TL.json new file mode 100644 index 000000000..b0efb342e --- /dev/null +++ b/snapshots/countries/TL.json @@ -0,0 +1,1118 @@ +{ + "2006-01-01": "New Year's Day", + "2006-01-10": "Idul Adha* (*estimated)", + "2006-03-01": "Ash Wednesday", + "2006-04-13": "Holy Thusday", + "2006-04-14": "Holy Friday", + "2006-05-01": "World Labor Day", + "2006-05-20": "Restoration of Independence Day", + "2006-05-25": "The Day of Ascension of Jesus Christ into Heaven", + "2006-06-01": "World Children's Day", + "2006-06-15": "Corpus Christi", + "2006-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2006-08-30": "Popular Consultation Day", + "2006-10-23": "Idul Fitri* (*estimated)", + "2006-11-01": "All Saints Day", + "2006-11-02": "All Souls Day", + "2006-11-03": "National Women's Day", + "2006-11-12": "National Youth Day", + "2006-11-28": "Proclamation of Independence Day", + "2006-12-07": "National Heroes Day", + "2006-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2006-12-10": "World Human Rights Day", + "2006-12-25": "Christmas Day", + "2006-12-31": "Idul Adha* (*estimated)", + "2007-01-01": "New Year's Day", + "2007-02-21": "Ash Wednesday", + "2007-04-05": "Holy Thusday", + "2007-04-06": "Holy Friday", + "2007-05-01": "World Labor Day", + "2007-05-17": "The Day of Ascension of Jesus Christ into Heaven", + "2007-05-20": "Restoration of Independence Day", + "2007-06-01": "World Children's Day", + "2007-06-07": "Corpus Christi", + "2007-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2007-08-30": "Popular Consultation Day", + "2007-10-13": "Idul Fitri* (*estimated)", + "2007-11-01": "All Saints Day", + "2007-11-02": "All Souls Day", + "2007-11-03": "National Women's Day", + "2007-11-12": "National Youth Day", + "2007-11-28": "Proclamation of Independence Day", + "2007-12-07": "National Heroes Day", + "2007-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2007-12-10": "World Human Rights Day", + "2007-12-20": "Idul Adha* (*estimated)", + "2007-12-25": "Christmas Day", + "2008-01-01": "New Year's Day", + "2008-02-06": "Ash Wednesday", + "2008-03-20": "Holy Thusday", + "2008-03-21": "Holy Friday", + "2008-05-01": "The Day of Ascension of Jesus Christ into Heaven; World Labor Day", + "2008-05-20": "Restoration of Independence Day", + "2008-05-22": "Corpus Christi", + "2008-06-01": "World Children's Day", + "2008-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2008-08-30": "Popular Consultation Day", + "2008-10-01": "Idul Fitri* (*estimated)", + "2008-11-01": "All Saints Day", + "2008-11-02": "All Souls Day", + "2008-11-03": "National Women's Day", + "2008-11-12": "National Youth Day", + "2008-11-28": "Proclamation of Independence Day", + "2008-12-07": "National Heroes Day", + "2008-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness; Idul Adha* (*estimated)", + "2008-12-10": "World Human Rights Day", + "2008-12-25": "Christmas Day", + "2009-01-01": "New Year's Day", + "2009-02-25": "Ash Wednesday", + "2009-04-09": "Holy Thusday", + "2009-04-10": "Holy Friday", + "2009-05-01": "World Labor Day", + "2009-05-20": "Restoration of Independence Day", + "2009-05-21": "The Day of Ascension of Jesus Christ into Heaven", + "2009-06-01": "World Children's Day", + "2009-06-11": "Corpus Christi", + "2009-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2009-08-30": "Popular Consultation Day", + "2009-09-20": "Idul Fitri* (*estimated)", + "2009-11-01": "All Saints Day", + "2009-11-02": "All Souls Day", + "2009-11-03": "National Women's Day", + "2009-11-12": "National Youth Day", + "2009-11-27": "Idul Adha* (*estimated)", + "2009-11-28": "Proclamation of Independence Day", + "2009-12-07": "National Heroes Day", + "2009-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2009-12-10": "World Human Rights Day", + "2009-12-25": "Christmas Day", + "2010-01-01": "New Year's Day", + "2010-02-17": "Ash Wednesday", + "2010-04-01": "Holy Thusday", + "2010-04-02": "Holy Friday", + "2010-05-01": "World Labor Day", + "2010-05-13": "The Day of Ascension of Jesus Christ into Heaven", + "2010-05-20": "Restoration of Independence Day", + "2010-06-01": "World Children's Day", + "2010-06-03": "Corpus Christi", + "2010-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2010-08-30": "Popular Consultation Day", + "2010-09-10": "Idul Fitri* (*estimated)", + "2010-11-01": "All Saints Day", + "2010-11-02": "All Souls Day", + "2010-11-03": "National Holidays (Special); National Women's Day", + "2010-11-12": "National Youth Day", + "2010-11-16": "Idul Adha* (*estimated)", + "2010-11-28": "Proclamation of Independence Day", + "2010-12-07": "National Heroes Day", + "2010-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2010-12-10": "World Human Rights Day", + "2010-12-24": "National Holidays (Special)", + "2010-12-25": "Christmas Day", + "2010-12-31": "National Holidays (Special)", + "2011-01-01": "New Year's Day", + "2011-03-09": "Ash Wednesday", + "2011-04-21": "Holy Thusday", + "2011-04-22": "Holy Friday", + "2011-05-01": "World Labor Day", + "2011-05-20": "Restoration of Independence Day", + "2011-06-01": "World Children's Day", + "2011-06-02": "The Day of Ascension of Jesus Christ into Heaven", + "2011-06-23": "Corpus Christi", + "2011-08-15": "National Holidays (Special)", + "2011-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2011-08-30": "Popular Consultation Day", + "2011-08-31": "Idul Fitri", + "2011-11-01": "All Saints Day", + "2011-11-02": "All Souls Day", + "2011-11-03": "National Holidays (Special); National Women's Day", + "2011-11-07": "Idul Adha", + "2011-11-12": "National Youth Day", + "2011-11-28": "Proclamation of Independence Day", + "2011-12-07": "National Heroes Day", + "2011-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2011-12-10": "World Human Rights Day", + "2011-12-25": "Christmas Day", + "2011-12-26": "National Holidays (Special)", + "2012-01-01": "New Year's Day", + "2012-01-02": "National Holidays (Special)", + "2012-01-23": "National Holidays (Special)", + "2012-02-22": "Ash Wednesday; National Holidays (Special)", + "2012-03-16": "Presidential Election Day", + "2012-04-05": "Holy Thusday", + "2012-04-06": "Holy Friday", + "2012-04-16": "Presidential Election Day", + "2012-04-17": "Presidential Election Day", + "2012-05-01": "World Labor Day", + "2012-05-17": "The Day of Ascension of Jesus Christ into Heaven", + "2012-05-20": "Restoration of Independence Day", + "2012-06-01": "World Children's Day", + "2012-06-07": "Corpus Christi", + "2012-07-06": "Parliamentary Election Day", + "2012-07-09": "Parliamentary Election Day", + "2012-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); Idul Fitri", + "2012-08-30": "Popular Consultation Day", + "2012-10-26": "Idul Adha", + "2012-11-01": "All Saints Day", + "2012-11-02": "All Souls Day", + "2012-11-03": "National Women's Day", + "2012-11-12": "National Youth Day", + "2012-11-27": "Centenary of the Revolt of Dom Boaventura", + "2012-11-28": "Proclamation of Independence Day", + "2012-11-29": "Centenary of the Revolt of Dom Boaventura", + "2012-12-07": "National Heroes Day", + "2012-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2012-12-10": "World Human Rights Day", + "2012-12-24": "National Holidays (Special)", + "2012-12-25": "Christmas Day", + "2012-12-26": "National Holidays (Special)", + "2012-12-31": "National Holidays (Special)", + "2013-01-01": "New Year's Day", + "2013-02-13": "Ash Wednesday; National Holidays (Special)", + "2013-03-28": "Holy Thusday; National Holidays (Special)", + "2013-03-29": "Holy Friday", + "2013-04-01": "National Holidays (Special)", + "2013-05-01": "World Labor Day", + "2013-05-09": "The Day of Ascension of Jesus Christ into Heaven", + "2013-05-20": "Restoration of Independence Day", + "2013-05-30": "Corpus Christi", + "2013-06-01": "World Children's Day", + "2013-08-08": "Idul Fitri", + "2013-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", + "2013-08-30": "Popular Consultation Day", + "2013-10-15": "Idul Adha", + "2013-11-01": "All Saints Day", + "2013-11-02": "All Souls Day", + "2013-11-03": "National Women's Day", + "2013-11-12": "National Youth Day", + "2013-11-28": "Proclamation of Independence Day", + "2013-11-29": "National Holidays (Special)", + "2013-12-07": "National Heroes Day", + "2013-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2013-12-10": "World Human Rights Day", + "2013-12-24": "National Holidays (Special)", + "2013-12-25": "Christmas Day", + "2013-12-26": "National Holidays (Special)", + "2013-12-31": "National Holidays (Special)", + "2014-01-01": "New Year's Day", + "2014-03-05": "Ash Wednesday; National Holidays (Special)", + "2014-04-17": "Holy Thusday; National Holidays (Special)", + "2014-04-18": "Holy Friday", + "2014-04-21": "National Holidays (Special)", + "2014-05-01": "World Labor Day", + "2014-05-20": "Restoration of Independence Day", + "2014-05-29": "The Day of Ascension of Jesus Christ into Heaven", + "2014-06-01": "World Children's Day", + "2014-06-19": "Corpus Christi", + "2014-07-22": "National Holidays (Special)", + "2014-07-23": "National Holidays (Special)", + "2014-07-28": "Idul Fitri", + "2014-08-15": "National Holidays (Special)", + "2014-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", + "2014-08-30": "Popular Consultation Day", + "2014-10-04": "Idul Adha", + "2014-11-01": "All Saints Day", + "2014-11-02": "All Souls Day", + "2014-11-03": "National Women's Day", + "2014-11-12": "National Youth Day", + "2014-11-28": "Proclamation of Independence Day", + "2014-12-07": "National Heroes Day", + "2014-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2014-12-10": "World Human Rights Day", + "2014-12-24": "National Holidays (Special)", + "2014-12-25": "Christmas Day", + "2014-12-26": "National Holidays (Special)", + "2014-12-31": "National Holidays (Special)", + "2015-01-01": "New Year's Day", + "2015-01-02": "National Holidays (Special)", + "2015-02-18": "Ash Wednesday; National Holidays (Special)", + "2015-04-02": "Holy Thusday; National Holidays (Special)", + "2015-04-03": "Holy Friday", + "2015-05-01": "World Labor Day", + "2015-05-13": "National Holidays (Special)", + "2015-05-14": "The Day of Ascension of Jesus Christ into Heaven", + "2015-05-20": "Restoration of Independence Day", + "2015-06-01": "World Children's Day", + "2015-06-04": "Corpus Christi", + "2015-06-05": "Funeral Ceremonies of Fernando 'La Sama' de Ara\u00fajo", + "2015-07-17": "Idul Fitri", + "2015-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", + "2015-08-30": "Popular Consultation Day", + "2015-09-24": "Idul Adha", + "2015-11-01": "All Saints Day", + "2015-11-02": "All Souls Day", + "2015-11-03": "National Women's Day", + "2015-11-12": "National Youth Day", + "2015-11-28": "Proclamation of Independence Day", + "2015-12-07": "National Heroes Day", + "2015-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2015-12-10": "World Human Rights Day", + "2015-12-24": "National Holidays (Special)", + "2015-12-25": "Christmas Day", + "2015-12-31": "National Holidays (Special)", + "2016-01-01": "New Year's Day", + "2016-02-10": "Ash Wednesday; National Holidays (Special)", + "2016-03-24": "Holy Thusday; National Holidays (Special)", + "2016-03-25": "Holy Friday", + "2016-05-01": "World Labor Day", + "2016-05-05": "The Day of Ascension of Jesus Christ into Heaven", + "2016-05-20": "Restoration of Independence Day", + "2016-05-26": "Corpus Christi", + "2016-06-01": "World Children's Day", + "2016-07-06": "National Holidays (Special)", + "2016-07-07": "Idul Fitri", + "2016-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2016-08-30": "Popular Consultation Day", + "2016-09-18": "Idul Adha", + "2016-11-01": "All Saints Day", + "2016-11-02": "All Souls Day", + "2016-11-03": "National Holidays (Special); National Women's Day", + "2016-11-12": "National Youth Day", + "2016-11-28": "Proclamation of Independence Day", + "2016-12-07": "National Heroes Day", + "2016-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2016-12-10": "World Human Rights Day", + "2016-12-25": "Christmas Day", + "2016-12-26": "National Holidays (Special)", + "2017-01-01": "New Year's Day", + "2017-01-02": "National Holidays (Special)", + "2017-03-01": "Ash Wednesday; National Holidays (Special)", + "2017-03-03": "Veteran's Day", + "2017-03-20": "Presidential Election Day", + "2017-03-21": "Presidential Election Day", + "2017-04-13": "Holy Thusday; National Holidays (Special)", + "2017-04-14": "Holy Friday", + "2017-05-01": "World Labor Day", + "2017-05-20": "Restoration of Independence Day", + "2017-05-25": "The Day of Ascension of Jesus Christ into Heaven", + "2017-06-01": "World Children's Day", + "2017-06-15": "Corpus Christi", + "2017-06-26": "Idul Fitri", + "2017-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2017-08-30": "Popular Consultation Day", + "2017-09-01": "Idul Adha", + "2017-11-01": "All Saints Day", + "2017-11-02": "All Souls Day", + "2017-11-03": "National Women's Day", + "2017-11-12": "National Youth Day", + "2017-11-28": "Proclamation of Independence Day", + "2017-12-07": "Memorial Day", + "2017-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2017-12-10": "World Human Rights Day", + "2017-12-25": "Christmas Day", + "2017-12-26": "National Holidays (Special)", + "2017-12-31": "National Heroes Day", + "2018-01-01": "New Year's Day", + "2018-01-02": "National Holidays (Special)", + "2018-02-14": "Ash Wednesday; National Holidays (Special)", + "2018-02-16": "National Holidays (Special)", + "2018-03-03": "Veteran's Day", + "2018-03-29": "Holy Thusday; National Holidays (Special)", + "2018-03-30": "Holy Friday", + "2018-05-01": "World Labor Day", + "2018-05-10": "The Day of Ascension of Jesus Christ into Heaven", + "2018-05-20": "Restoration of Independence Day", + "2018-05-31": "Corpus Christi", + "2018-06-01": "World Children's Day", + "2018-06-15": "Idul Fitri", + "2018-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2018-08-21": "Idul Adha", + "2018-08-22": "National Holidays (Special)", + "2018-08-30": "Popular Consultation Day", + "2018-11-01": "All Saints Day", + "2018-11-02": "All Souls Day", + "2018-11-03": "National Women's Day", + "2018-11-12": "National Youth Day", + "2018-11-28": "Proclamation of Independence Day", + "2018-12-07": "Memorial Day", + "2018-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2018-12-10": "World Human Rights Day", + "2018-12-25": "Christmas Day", + "2018-12-31": "National Heroes Day", + "2019-01-01": "New Year's Day", + "2019-02-05": "National Holidays (Special)", + "2019-03-03": "Veteran's Day", + "2019-03-06": "Ash Wednesday; National Holidays (Special)", + "2019-04-18": "Holy Thusday; National Holidays (Special)", + "2019-04-19": "Holy Friday", + "2019-05-01": "World Labor Day", + "2019-05-20": "Restoration of Independence Day", + "2019-05-30": "The Day of Ascension of Jesus Christ into Heaven", + "2019-06-01": "World Children's Day", + "2019-06-06": "Idul Fitri", + "2019-06-20": "Corpus Christi", + "2019-08-11": "Idul Adha", + "2019-08-12": "National Holidays (Special)", + "2019-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", + "2019-08-26": "20th Anniversary Celebrations of the Popular Consultation", + "2019-08-27": "20th Anniversary Celebrations of the Popular Consultation", + "2019-08-28": "20th Anniversary Celebrations of the Popular Consultation", + "2019-08-29": "20th Anniversary Celebrations of the Popular Consultation", + "2019-08-30": "Popular Consultation Day", + "2019-10-31": "National Holidays (Special)", + "2019-11-01": "All Saints Day", + "2019-11-02": "All Souls Day", + "2019-11-03": "National Women's Day", + "2019-11-12": "National Youth Day", + "2019-11-28": "Proclamation of Independence Day", + "2019-12-07": "Memorial Day", + "2019-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2019-12-10": "World Human Rights Day", + "2019-12-24": "National Holidays (Special)", + "2019-12-25": "Christmas Day", + "2019-12-26": "National Holidays (Special)", + "2019-12-30": "National Holidays (Special)", + "2019-12-31": "National Heroes Day", + "2020-01-01": "New Year's Day", + "2020-01-02": "National Holidays (Special)", + "2020-02-26": "Ash Wednesday; National Holidays (Special)", + "2020-03-03": "Veteran's Day", + "2020-04-09": "Holy Thusday", + "2020-04-10": "Holy Friday", + "2020-05-01": "World Labor Day", + "2020-05-20": "Restoration of Independence Day", + "2020-05-21": "The Day of Ascension of Jesus Christ into Heaven", + "2020-05-24": "Idul Fitri", + "2020-06-01": "World Children's Day", + "2020-06-11": "Corpus Christi", + "2020-07-31": "Idul Adha", + "2020-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2020-08-30": "Popular Consultation Day", + "2020-08-31": "National Holidays (Special)", + "2020-11-01": "All Saints Day", + "2020-11-02": "All Souls Day", + "2020-11-03": "National Holidays (Special); National Women's Day", + "2020-11-12": "National Youth Day", + "2020-11-28": "Proclamation of Independence Day", + "2020-12-07": "Memorial Day", + "2020-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2020-12-10": "World Human Rights Day", + "2020-12-25": "Christmas Day", + "2020-12-31": "National Heroes Day", + "2021-01-01": "New Year's Day", + "2021-02-12": "National Holidays (Special)", + "2021-02-17": "Ash Wednesday", + "2021-03-03": "Veteran's Day", + "2021-04-01": "Holy Thusday", + "2021-04-02": "Holy Friday", + "2021-05-01": "World Labor Day", + "2021-05-13": "Idul Fitri; The Day of Ascension of Jesus Christ into Heaven", + "2021-05-20": "Restoration of Independence Day", + "2021-06-01": "World Children's Day", + "2021-06-03": "Corpus Christi", + "2021-07-19": "Idul Adha", + "2021-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2021-08-30": "Popular Consultation Day", + "2021-11-01": "All Saints Day", + "2021-11-02": "All Souls Day", + "2021-11-03": "National Holidays (Special); National Women's Day", + "2021-11-12": "National Youth Day", + "2021-11-28": "Proclamation of Independence Day", + "2021-12-07": "Memorial Day", + "2021-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2021-12-10": "World Human Rights Day", + "2021-12-25": "Christmas Day", + "2021-12-31": "National Heroes Day", + "2022-01-01": "New Year's Day", + "2022-02-01": "National Holidays (Special)", + "2022-03-02": "Ash Wednesday", + "2022-03-03": "Veteran's Day", + "2022-03-18": "Presidential Election Day", + "2022-04-14": "Holy Thusday; National Holidays (Special)", + "2022-04-15": "Holy Friday", + "2022-04-18": "Presidential Election Day", + "2022-04-19": "Presidential Election Day", + "2022-04-20": "Presidential Election Day", + "2022-05-01": "World Labor Day", + "2022-05-02": "Idul Fitri", + "2022-05-20": "Restoration of Independence Day", + "2022-05-26": "The Day of Ascension of Jesus Christ into Heaven", + "2022-06-01": "World Children's Day", + "2022-06-16": "Corpus Christi", + "2022-07-09": "Idul Adha", + "2022-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2022-08-30": "Popular Consultation Day", + "2022-11-01": "All Saints Day", + "2022-11-02": "All Souls Day", + "2022-11-03": "National Women's Day", + "2022-11-12": "National Youth Day", + "2022-11-28": "Proclamation of Independence Day", + "2022-12-07": "Memorial Day", + "2022-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2022-12-10": "World Human Rights Day", + "2022-12-25": "Christmas Day", + "2022-12-31": "National Heroes Day", + "2023-01-01": "New Year's Day", + "2023-01-02": "National Holidays (Special)", + "2023-01-23": "National Holidays (Special)", + "2023-02-22": "Ash Wednesday", + "2023-03-03": "Veteran's Day", + "2023-04-06": "Holy Thusday", + "2023-04-07": "Holy Friday", + "2023-04-22": "Idul Fitri", + "2023-05-01": "World Labor Day", + "2023-05-18": "The Day of Ascension of Jesus Christ into Heaven", + "2023-05-20": "Restoration of Independence Day", + "2023-06-01": "World Children's Day", + "2023-06-08": "Corpus Christi", + "2023-06-29": "Idul Adha", + "2023-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2023-08-30": "Popular Consultation Day", + "2023-11-01": "All Saints Day", + "2023-11-02": "All Souls Day", + "2023-11-03": "National Women's Day", + "2023-11-12": "National Youth Day", + "2023-11-28": "Proclamation of Independence Day", + "2023-12-07": "Memorial Day", + "2023-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2023-12-10": "World Human Rights Day", + "2023-12-25": "Christmas Day", + "2023-12-31": "National Heroes Day", + "2024-01-01": "New Year's Day", + "2024-02-14": "Ash Wednesday", + "2024-03-03": "Veteran's Day", + "2024-03-28": "Holy Thusday", + "2024-03-29": "Holy Friday", + "2024-04-10": "Idul Fitri* (*estimated)", + "2024-05-01": "World Labor Day", + "2024-05-09": "The Day of Ascension of Jesus Christ into Heaven", + "2024-05-20": "Restoration of Independence Day", + "2024-05-30": "Corpus Christi", + "2024-06-01": "World Children's Day", + "2024-06-16": "Idul Adha* (*estimated)", + "2024-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2024-08-30": "Popular Consultation Day", + "2024-11-01": "All Saints Day", + "2024-11-02": "All Souls Day", + "2024-11-03": "National Women's Day", + "2024-11-12": "National Youth Day", + "2024-11-28": "Proclamation of Independence Day", + "2024-12-07": "Memorial Day", + "2024-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2024-12-10": "World Human Rights Day", + "2024-12-25": "Christmas Day", + "2024-12-31": "National Heroes Day", + "2025-01-01": "New Year's Day", + "2025-03-03": "Veteran's Day", + "2025-03-05": "Ash Wednesday", + "2025-03-30": "Idul Fitri* (*estimated)", + "2025-04-17": "Holy Thusday", + "2025-04-18": "Holy Friday", + "2025-05-01": "World Labor Day", + "2025-05-20": "Restoration of Independence Day", + "2025-05-29": "The Day of Ascension of Jesus Christ into Heaven", + "2025-06-01": "World Children's Day", + "2025-06-06": "Idul Adha* (*estimated)", + "2025-06-19": "Corpus Christi", + "2025-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2025-08-30": "Popular Consultation Day", + "2025-11-01": "All Saints Day", + "2025-11-02": "All Souls Day", + "2025-11-03": "National Women's Day", + "2025-11-12": "National Youth Day", + "2025-11-28": "Proclamation of Independence Day", + "2025-12-07": "Memorial Day", + "2025-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2025-12-10": "World Human Rights Day", + "2025-12-25": "Christmas Day", + "2025-12-31": "National Heroes Day", + "2026-01-01": "New Year's Day", + "2026-02-18": "Ash Wednesday", + "2026-03-03": "Veteran's Day", + "2026-03-20": "Idul Fitri* (*estimated)", + "2026-04-02": "Holy Thusday", + "2026-04-03": "Holy Friday", + "2026-05-01": "World Labor Day", + "2026-05-14": "The Day of Ascension of Jesus Christ into Heaven", + "2026-05-20": "Restoration of Independence Day", + "2026-05-27": "Idul Adha* (*estimated)", + "2026-06-01": "World Children's Day", + "2026-06-04": "Corpus Christi", + "2026-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2026-08-30": "Popular Consultation Day", + "2026-11-01": "All Saints Day", + "2026-11-02": "All Souls Day", + "2026-11-03": "National Women's Day", + "2026-11-12": "National Youth Day", + "2026-11-28": "Proclamation of Independence Day", + "2026-12-07": "Memorial Day", + "2026-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2026-12-10": "World Human Rights Day", + "2026-12-25": "Christmas Day", + "2026-12-31": "National Heroes Day", + "2027-01-01": "New Year's Day", + "2027-02-10": "Ash Wednesday", + "2027-03-03": "Veteran's Day", + "2027-03-09": "Idul Fitri* (*estimated)", + "2027-03-25": "Holy Thusday", + "2027-03-26": "Holy Friday", + "2027-05-01": "World Labor Day", + "2027-05-06": "The Day of Ascension of Jesus Christ into Heaven", + "2027-05-16": "Idul Adha* (*estimated)", + "2027-05-20": "Restoration of Independence Day", + "2027-05-27": "Corpus Christi", + "2027-06-01": "World Children's Day", + "2027-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2027-08-30": "Popular Consultation Day", + "2027-11-01": "All Saints Day", + "2027-11-02": "All Souls Day", + "2027-11-03": "National Women's Day", + "2027-11-12": "National Youth Day", + "2027-11-28": "Proclamation of Independence Day", + "2027-12-07": "Memorial Day", + "2027-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2027-12-10": "World Human Rights Day", + "2027-12-25": "Christmas Day", + "2027-12-31": "National Heroes Day", + "2028-01-01": "New Year's Day", + "2028-02-26": "Idul Fitri* (*estimated)", + "2028-03-01": "Ash Wednesday", + "2028-03-03": "Veteran's Day", + "2028-04-13": "Holy Thusday", + "2028-04-14": "Holy Friday", + "2028-05-01": "World Labor Day", + "2028-05-05": "Idul Adha* (*estimated)", + "2028-05-20": "Restoration of Independence Day", + "2028-05-25": "The Day of Ascension of Jesus Christ into Heaven", + "2028-06-01": "World Children's Day", + "2028-06-15": "Corpus Christi", + "2028-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2028-08-30": "Popular Consultation Day", + "2028-11-01": "All Saints Day", + "2028-11-02": "All Souls Day", + "2028-11-03": "National Women's Day", + "2028-11-12": "National Youth Day", + "2028-11-28": "Proclamation of Independence Day", + "2028-12-07": "Memorial Day", + "2028-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2028-12-10": "World Human Rights Day", + "2028-12-25": "Christmas Day", + "2028-12-31": "National Heroes Day", + "2029-01-01": "New Year's Day", + "2029-02-14": "Ash Wednesday; Idul Fitri* (*estimated)", + "2029-03-03": "Veteran's Day", + "2029-03-29": "Holy Thusday", + "2029-03-30": "Holy Friday", + "2029-04-24": "Idul Adha* (*estimated)", + "2029-05-01": "World Labor Day", + "2029-05-10": "The Day of Ascension of Jesus Christ into Heaven", + "2029-05-20": "Restoration of Independence Day", + "2029-05-31": "Corpus Christi", + "2029-06-01": "World Children's Day", + "2029-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2029-08-30": "Popular Consultation Day", + "2029-11-01": "All Saints Day", + "2029-11-02": "All Souls Day", + "2029-11-03": "National Women's Day", + "2029-11-12": "National Youth Day", + "2029-11-28": "Proclamation of Independence Day", + "2029-12-07": "Memorial Day", + "2029-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2029-12-10": "World Human Rights Day", + "2029-12-25": "Christmas Day", + "2029-12-31": "National Heroes Day", + "2030-01-01": "New Year's Day", + "2030-02-04": "Idul Fitri* (*estimated)", + "2030-03-03": "Veteran's Day", + "2030-03-06": "Ash Wednesday", + "2030-04-13": "Idul Adha* (*estimated)", + "2030-04-18": "Holy Thusday", + "2030-04-19": "Holy Friday", + "2030-05-01": "World Labor Day", + "2030-05-20": "Restoration of Independence Day", + "2030-05-30": "The Day of Ascension of Jesus Christ into Heaven", + "2030-06-01": "World Children's Day", + "2030-06-20": "Corpus Christi", + "2030-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2030-08-30": "Popular Consultation Day", + "2030-11-01": "All Saints Day", + "2030-11-02": "All Souls Day", + "2030-11-03": "National Women's Day", + "2030-11-12": "National Youth Day", + "2030-11-28": "Proclamation of Independence Day", + "2030-12-07": "Memorial Day", + "2030-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2030-12-10": "World Human Rights Day", + "2030-12-25": "Christmas Day", + "2030-12-31": "National Heroes Day", + "2031-01-01": "New Year's Day", + "2031-01-24": "Idul Fitri* (*estimated)", + "2031-02-26": "Ash Wednesday", + "2031-03-03": "Veteran's Day", + "2031-04-02": "Idul Adha* (*estimated)", + "2031-04-10": "Holy Thusday", + "2031-04-11": "Holy Friday", + "2031-05-01": "World Labor Day", + "2031-05-20": "Restoration of Independence Day", + "2031-05-22": "The Day of Ascension of Jesus Christ into Heaven", + "2031-06-01": "World Children's Day", + "2031-06-12": "Corpus Christi", + "2031-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2031-08-30": "Popular Consultation Day", + "2031-11-01": "All Saints Day", + "2031-11-02": "All Souls Day", + "2031-11-03": "National Women's Day", + "2031-11-12": "National Youth Day", + "2031-11-28": "Proclamation of Independence Day", + "2031-12-07": "Memorial Day", + "2031-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2031-12-10": "World Human Rights Day", + "2031-12-25": "Christmas Day", + "2031-12-31": "National Heroes Day", + "2032-01-01": "New Year's Day", + "2032-01-14": "Idul Fitri* (*estimated)", + "2032-02-11": "Ash Wednesday", + "2032-03-03": "Veteran's Day", + "2032-03-22": "Idul Adha* (*estimated)", + "2032-03-25": "Holy Thusday", + "2032-03-26": "Holy Friday", + "2032-05-01": "World Labor Day", + "2032-05-06": "The Day of Ascension of Jesus Christ into Heaven", + "2032-05-20": "Restoration of Independence Day", + "2032-05-27": "Corpus Christi", + "2032-06-01": "World Children's Day", + "2032-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2032-08-30": "Popular Consultation Day", + "2032-11-01": "All Saints Day", + "2032-11-02": "All Souls Day", + "2032-11-03": "National Women's Day", + "2032-11-12": "National Youth Day", + "2032-11-28": "Proclamation of Independence Day", + "2032-12-07": "Memorial Day", + "2032-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2032-12-10": "World Human Rights Day", + "2032-12-25": "Christmas Day", + "2032-12-31": "National Heroes Day", + "2033-01-01": "New Year's Day", + "2033-01-02": "Idul Fitri* (*estimated)", + "2033-03-02": "Ash Wednesday", + "2033-03-03": "Veteran's Day", + "2033-03-11": "Idul Adha* (*estimated)", + "2033-04-14": "Holy Thusday", + "2033-04-15": "Holy Friday", + "2033-05-01": "World Labor Day", + "2033-05-20": "Restoration of Independence Day", + "2033-05-26": "The Day of Ascension of Jesus Christ into Heaven", + "2033-06-01": "World Children's Day", + "2033-06-16": "Corpus Christi", + "2033-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2033-08-30": "Popular Consultation Day", + "2033-11-01": "All Saints Day", + "2033-11-02": "All Souls Day", + "2033-11-03": "National Women's Day", + "2033-11-12": "National Youth Day", + "2033-11-28": "Proclamation of Independence Day", + "2033-12-07": "Memorial Day", + "2033-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2033-12-10": "World Human Rights Day", + "2033-12-23": "Idul Fitri* (*estimated)", + "2033-12-25": "Christmas Day", + "2033-12-31": "National Heroes Day", + "2034-01-01": "New Year's Day", + "2034-02-22": "Ash Wednesday", + "2034-03-01": "Idul Adha* (*estimated)", + "2034-03-03": "Veteran's Day", + "2034-04-06": "Holy Thusday", + "2034-04-07": "Holy Friday", + "2034-05-01": "World Labor Day", + "2034-05-18": "The Day of Ascension of Jesus Christ into Heaven", + "2034-05-20": "Restoration of Independence Day", + "2034-06-01": "World Children's Day", + "2034-06-08": "Corpus Christi", + "2034-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2034-08-30": "Popular Consultation Day", + "2034-11-01": "All Saints Day", + "2034-11-02": "All Souls Day", + "2034-11-03": "National Women's Day", + "2034-11-12": "National Youth Day", + "2034-11-28": "Proclamation of Independence Day", + "2034-12-07": "Memorial Day", + "2034-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2034-12-10": "World Human Rights Day", + "2034-12-12": "Idul Fitri* (*estimated)", + "2034-12-25": "Christmas Day", + "2034-12-31": "National Heroes Day", + "2035-01-01": "New Year's Day", + "2035-02-07": "Ash Wednesday", + "2035-02-18": "Idul Adha* (*estimated)", + "2035-03-03": "Veteran's Day", + "2035-03-22": "Holy Thusday", + "2035-03-23": "Holy Friday", + "2035-05-01": "World Labor Day", + "2035-05-03": "The Day of Ascension of Jesus Christ into Heaven", + "2035-05-20": "Restoration of Independence Day", + "2035-05-24": "Corpus Christi", + "2035-06-01": "World Children's Day", + "2035-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2035-08-30": "Popular Consultation Day", + "2035-11-01": "All Saints Day", + "2035-11-02": "All Souls Day", + "2035-11-03": "National Women's Day", + "2035-11-12": "National Youth Day", + "2035-11-28": "Proclamation of Independence Day", + "2035-12-01": "Idul Fitri* (*estimated)", + "2035-12-07": "Memorial Day", + "2035-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2035-12-10": "World Human Rights Day", + "2035-12-25": "Christmas Day", + "2035-12-31": "National Heroes Day", + "2036-01-01": "New Year's Day", + "2036-02-07": "Idul Adha* (*estimated)", + "2036-02-27": "Ash Wednesday", + "2036-03-03": "Veteran's Day", + "2036-04-10": "Holy Thusday", + "2036-04-11": "Holy Friday", + "2036-05-01": "World Labor Day", + "2036-05-20": "Restoration of Independence Day", + "2036-05-22": "The Day of Ascension of Jesus Christ into Heaven", + "2036-06-01": "World Children's Day", + "2036-06-12": "Corpus Christi", + "2036-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2036-08-30": "Popular Consultation Day", + "2036-11-01": "All Saints Day", + "2036-11-02": "All Souls Day", + "2036-11-03": "National Women's Day", + "2036-11-12": "National Youth Day", + "2036-11-19": "Idul Fitri* (*estimated)", + "2036-11-28": "Proclamation of Independence Day", + "2036-12-07": "Memorial Day", + "2036-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2036-12-10": "World Human Rights Day", + "2036-12-25": "Christmas Day", + "2036-12-31": "National Heroes Day", + "2037-01-01": "New Year's Day", + "2037-01-26": "Idul Adha* (*estimated)", + "2037-02-18": "Ash Wednesday", + "2037-03-03": "Veteran's Day", + "2037-04-02": "Holy Thusday", + "2037-04-03": "Holy Friday", + "2037-05-01": "World Labor Day", + "2037-05-14": "The Day of Ascension of Jesus Christ into Heaven", + "2037-05-20": "Restoration of Independence Day", + "2037-06-01": "World Children's Day", + "2037-06-04": "Corpus Christi", + "2037-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2037-08-30": "Popular Consultation Day", + "2037-11-01": "All Saints Day", + "2037-11-02": "All Souls Day", + "2037-11-03": "National Women's Day", + "2037-11-08": "Idul Fitri* (*estimated)", + "2037-11-12": "National Youth Day", + "2037-11-28": "Proclamation of Independence Day", + "2037-12-07": "Memorial Day", + "2037-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2037-12-10": "World Human Rights Day", + "2037-12-25": "Christmas Day", + "2037-12-31": "National Heroes Day", + "2038-01-01": "New Year's Day", + "2038-01-16": "Idul Adha* (*estimated)", + "2038-03-03": "Veteran's Day", + "2038-03-10": "Ash Wednesday", + "2038-04-22": "Holy Thusday", + "2038-04-23": "Holy Friday", + "2038-05-01": "World Labor Day", + "2038-05-20": "Restoration of Independence Day", + "2038-06-01": "World Children's Day", + "2038-06-03": "The Day of Ascension of Jesus Christ into Heaven", + "2038-06-24": "Corpus Christi", + "2038-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2038-08-30": "Popular Consultation Day", + "2038-10-29": "Idul Fitri* (*estimated)", + "2038-11-01": "All Saints Day", + "2038-11-02": "All Souls Day", + "2038-11-03": "National Women's Day", + "2038-11-12": "National Youth Day", + "2038-11-28": "Proclamation of Independence Day", + "2038-12-07": "Memorial Day", + "2038-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2038-12-10": "World Human Rights Day", + "2038-12-25": "Christmas Day", + "2038-12-31": "National Heroes Day", + "2039-01-01": "New Year's Day", + "2039-01-05": "Idul Adha* (*estimated)", + "2039-02-23": "Ash Wednesday", + "2039-03-03": "Veteran's Day", + "2039-04-07": "Holy Thusday", + "2039-04-08": "Holy Friday", + "2039-05-01": "World Labor Day", + "2039-05-19": "The Day of Ascension of Jesus Christ into Heaven", + "2039-05-20": "Restoration of Independence Day", + "2039-06-01": "World Children's Day", + "2039-06-09": "Corpus Christi", + "2039-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2039-08-30": "Popular Consultation Day", + "2039-10-19": "Idul Fitri* (*estimated)", + "2039-11-01": "All Saints Day", + "2039-11-02": "All Souls Day", + "2039-11-03": "National Women's Day", + "2039-11-12": "National Youth Day", + "2039-11-28": "Proclamation of Independence Day", + "2039-12-07": "Memorial Day", + "2039-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2039-12-10": "World Human Rights Day", + "2039-12-25": "Christmas Day", + "2039-12-26": "Idul Adha* (*estimated)", + "2039-12-31": "National Heroes Day", + "2040-01-01": "New Year's Day", + "2040-02-15": "Ash Wednesday", + "2040-03-03": "Veteran's Day", + "2040-03-29": "Holy Thusday", + "2040-03-30": "Holy Friday", + "2040-05-01": "World Labor Day", + "2040-05-10": "The Day of Ascension of Jesus Christ into Heaven", + "2040-05-20": "Restoration of Independence Day", + "2040-05-31": "Corpus Christi", + "2040-06-01": "World Children's Day", + "2040-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2040-08-30": "Popular Consultation Day", + "2040-10-07": "Idul Fitri* (*estimated)", + "2040-11-01": "All Saints Day", + "2040-11-02": "All Souls Day", + "2040-11-03": "National Women's Day", + "2040-11-12": "National Youth Day", + "2040-11-28": "Proclamation of Independence Day", + "2040-12-07": "Memorial Day", + "2040-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2040-12-10": "World Human Rights Day", + "2040-12-14": "Idul Adha* (*estimated)", + "2040-12-25": "Christmas Day", + "2040-12-31": "National Heroes Day", + "2041-01-01": "New Year's Day", + "2041-03-03": "Veteran's Day", + "2041-03-06": "Ash Wednesday", + "2041-04-18": "Holy Thusday", + "2041-04-19": "Holy Friday", + "2041-05-01": "World Labor Day", + "2041-05-20": "Restoration of Independence Day", + "2041-05-30": "The Day of Ascension of Jesus Christ into Heaven", + "2041-06-01": "World Children's Day", + "2041-06-20": "Corpus Christi", + "2041-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2041-08-30": "Popular Consultation Day", + "2041-09-26": "Idul Fitri* (*estimated)", + "2041-11-01": "All Saints Day", + "2041-11-02": "All Souls Day", + "2041-11-03": "National Women's Day", + "2041-11-12": "National Youth Day", + "2041-11-28": "Proclamation of Independence Day", + "2041-12-04": "Idul Adha* (*estimated)", + "2041-12-07": "Memorial Day", + "2041-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2041-12-10": "World Human Rights Day", + "2041-12-25": "Christmas Day", + "2041-12-31": "National Heroes Day", + "2042-01-01": "New Year's Day", + "2042-02-19": "Ash Wednesday", + "2042-03-03": "Veteran's Day", + "2042-04-03": "Holy Thusday", + "2042-04-04": "Holy Friday", + "2042-05-01": "World Labor Day", + "2042-05-15": "The Day of Ascension of Jesus Christ into Heaven", + "2042-05-20": "Restoration of Independence Day", + "2042-06-01": "World Children's Day", + "2042-06-05": "Corpus Christi", + "2042-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2042-08-30": "Popular Consultation Day", + "2042-09-15": "Idul Fitri* (*estimated)", + "2042-11-01": "All Saints Day", + "2042-11-02": "All Souls Day", + "2042-11-03": "National Women's Day", + "2042-11-12": "National Youth Day", + "2042-11-23": "Idul Adha* (*estimated)", + "2042-11-28": "Proclamation of Independence Day", + "2042-12-07": "Memorial Day", + "2042-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2042-12-10": "World Human Rights Day", + "2042-12-25": "Christmas Day", + "2042-12-31": "National Heroes Day", + "2043-01-01": "New Year's Day", + "2043-02-11": "Ash Wednesday", + "2043-03-03": "Veteran's Day", + "2043-03-26": "Holy Thusday", + "2043-03-27": "Holy Friday", + "2043-05-01": "World Labor Day", + "2043-05-07": "The Day of Ascension of Jesus Christ into Heaven", + "2043-05-20": "Restoration of Independence Day", + "2043-05-28": "Corpus Christi", + "2043-06-01": "World Children's Day", + "2043-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2043-08-30": "Popular Consultation Day", + "2043-09-04": "Idul Fitri* (*estimated)", + "2043-11-01": "All Saints Day", + "2043-11-02": "All Souls Day", + "2043-11-03": "National Women's Day", + "2043-11-12": "Idul Adha* (*estimated); National Youth Day", + "2043-11-28": "Proclamation of Independence Day", + "2043-12-07": "Memorial Day", + "2043-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2043-12-10": "World Human Rights Day", + "2043-12-25": "Christmas Day", + "2043-12-31": "National Heroes Day", + "2044-01-01": "New Year's Day", + "2044-03-02": "Ash Wednesday", + "2044-03-03": "Veteran's Day", + "2044-04-14": "Holy Thusday", + "2044-04-15": "Holy Friday", + "2044-05-01": "World Labor Day", + "2044-05-20": "Restoration of Independence Day", + "2044-05-26": "The Day of Ascension of Jesus Christ into Heaven", + "2044-06-01": "World Children's Day", + "2044-06-16": "Corpus Christi", + "2044-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2044-08-24": "Idul Fitri* (*estimated)", + "2044-08-30": "Popular Consultation Day", + "2044-10-31": "Idul Adha* (*estimated)", + "2044-11-01": "All Saints Day", + "2044-11-02": "All Souls Day", + "2044-11-03": "National Women's Day", + "2044-11-12": "National Youth Day", + "2044-11-28": "Proclamation of Independence Day", + "2044-12-07": "Memorial Day", + "2044-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2044-12-10": "World Human Rights Day", + "2044-12-25": "Christmas Day", + "2044-12-31": "National Heroes Day", + "2045-01-01": "New Year's Day", + "2045-02-22": "Ash Wednesday", + "2045-03-03": "Veteran's Day", + "2045-04-06": "Holy Thusday", + "2045-04-07": "Holy Friday", + "2045-05-01": "World Labor Day", + "2045-05-18": "The Day of Ascension of Jesus Christ into Heaven", + "2045-05-20": "Restoration of Independence Day", + "2045-06-01": "World Children's Day", + "2045-06-08": "Corpus Christi", + "2045-08-14": "Idul Fitri* (*estimated)", + "2045-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2045-08-30": "Popular Consultation Day", + "2045-10-21": "Idul Adha* (*estimated)", + "2045-11-01": "All Saints Day", + "2045-11-02": "All Souls Day", + "2045-11-03": "National Women's Day", + "2045-11-12": "National Youth Day", + "2045-11-28": "Proclamation of Independence Day", + "2045-12-07": "Memorial Day", + "2045-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2045-12-10": "World Human Rights Day", + "2045-12-25": "Christmas Day", + "2045-12-31": "National Heroes Day", + "2046-01-01": "New Year's Day", + "2046-02-07": "Ash Wednesday", + "2046-03-03": "Veteran's Day", + "2046-03-22": "Holy Thusday", + "2046-03-23": "Holy Friday", + "2046-05-01": "World Labor Day", + "2046-05-03": "The Day of Ascension of Jesus Christ into Heaven", + "2046-05-20": "Restoration of Independence Day", + "2046-05-24": "Corpus Christi", + "2046-06-01": "World Children's Day", + "2046-08-03": "Idul Fitri* (*estimated)", + "2046-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2046-08-30": "Popular Consultation Day", + "2046-10-10": "Idul Adha* (*estimated)", + "2046-11-01": "All Saints Day", + "2046-11-02": "All Souls Day", + "2046-11-03": "National Women's Day", + "2046-11-12": "National Youth Day", + "2046-11-28": "Proclamation of Independence Day", + "2046-12-07": "Memorial Day", + "2046-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2046-12-10": "World Human Rights Day", + "2046-12-25": "Christmas Day", + "2046-12-31": "National Heroes Day", + "2047-01-01": "New Year's Day", + "2047-02-27": "Ash Wednesday", + "2047-03-03": "Veteran's Day", + "2047-04-11": "Holy Thusday", + "2047-04-12": "Holy Friday", + "2047-05-01": "World Labor Day", + "2047-05-20": "Restoration of Independence Day", + "2047-05-23": "The Day of Ascension of Jesus Christ into Heaven", + "2047-06-01": "World Children's Day", + "2047-06-13": "Corpus Christi", + "2047-07-24": "Idul Fitri* (*estimated)", + "2047-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2047-08-30": "Popular Consultation Day", + "2047-09-30": "Idul Adha* (*estimated)", + "2047-11-01": "All Saints Day", + "2047-11-02": "All Souls Day", + "2047-11-03": "National Women's Day", + "2047-11-12": "National Youth Day", + "2047-11-28": "Proclamation of Independence Day", + "2047-12-07": "Memorial Day", + "2047-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2047-12-10": "World Human Rights Day", + "2047-12-25": "Christmas Day", + "2047-12-31": "National Heroes Day", + "2048-01-01": "New Year's Day", + "2048-02-19": "Ash Wednesday", + "2048-03-03": "Veteran's Day", + "2048-04-02": "Holy Thusday", + "2048-04-03": "Holy Friday", + "2048-05-01": "World Labor Day", + "2048-05-14": "The Day of Ascension of Jesus Christ into Heaven", + "2048-05-20": "Restoration of Independence Day", + "2048-06-01": "World Children's Day", + "2048-06-04": "Corpus Christi", + "2048-07-12": "Idul Fitri* (*estimated)", + "2048-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2048-08-30": "Popular Consultation Day", + "2048-09-19": "Idul Adha* (*estimated)", + "2048-11-01": "All Saints Day", + "2048-11-02": "All Souls Day", + "2048-11-03": "National Women's Day", + "2048-11-12": "National Youth Day", + "2048-11-28": "Proclamation of Independence Day", + "2048-12-07": "Memorial Day", + "2048-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2048-12-10": "World Human Rights Day", + "2048-12-25": "Christmas Day", + "2048-12-31": "National Heroes Day", + "2049-01-01": "New Year's Day", + "2049-03-03": "Ash Wednesday; Veteran's Day", + "2049-04-15": "Holy Thusday", + "2049-04-16": "Holy Friday", + "2049-05-01": "World Labor Day", + "2049-05-20": "Restoration of Independence Day", + "2049-05-27": "The Day of Ascension of Jesus Christ into Heaven", + "2049-06-01": "World Children's Day", + "2049-06-17": "Corpus Christi", + "2049-07-01": "Idul Fitri* (*estimated)", + "2049-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2049-08-30": "Popular Consultation Day", + "2049-09-08": "Idul Adha* (*estimated)", + "2049-11-01": "All Saints Day", + "2049-11-02": "All Souls Day", + "2049-11-03": "National Women's Day", + "2049-11-12": "National Youth Day", + "2049-11-28": "Proclamation of Independence Day", + "2049-12-07": "Memorial Day", + "2049-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2049-12-10": "World Human Rights Day", + "2049-12-25": "Christmas Day", + "2049-12-31": "National Heroes Day", + "2050-01-01": "New Year's Day", + "2050-02-23": "Ash Wednesday", + "2050-03-03": "Veteran's Day", + "2050-04-07": "Holy Thusday", + "2050-04-08": "Holy Friday", + "2050-05-01": "World Labor Day", + "2050-05-19": "The Day of Ascension of Jesus Christ into Heaven", + "2050-05-20": "Restoration of Independence Day", + "2050-06-01": "World Children's Day", + "2050-06-09": "Corpus Christi", + "2050-06-20": "Idul Fitri* (*estimated)", + "2050-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", + "2050-08-28": "Idul Adha* (*estimated)", + "2050-08-30": "Popular Consultation Day", + "2050-11-01": "All Saints Day", + "2050-11-02": "All Souls Day", + "2050-11-03": "National Women's Day", + "2050-11-12": "National Youth Day", + "2050-11-28": "Proclamation of Independence Day", + "2050-12-07": "Memorial Day", + "2050-12-08": "Day of Our Lady of Immaculate Conception and Timor-Leste Patroness", + "2050-12-10": "World Human Rights Day", + "2050-12-25": "Christmas Day", + "2050-12-31": "National Heroes Day" +} From d07b73a08254405310cc7c0500c6169a79d53b9f Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Mon, 16 Oct 2023 23:17:32 +0700 Subject: [PATCH 3/5] [TL] add missing testcases for `WORKDAY` --- tests/countries/test_timor_leste.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/tests/countries/test_timor_leste.py b/tests/countries/test_timor_leste.py index c52494247..7bb3ae50c 100644 --- a/tests/countries/test_timor_leste.py +++ b/tests/countries/test_timor_leste.py @@ -406,6 +406,35 @@ def test_2022_public(self): ("2022-12-31", "Dia dos Heróis Nacionais"), ) + def test_2022_workday(self): + self.assertHolidays( + TimorLeste(categories=(WORKDAY,), years=2022), + ("2022-03-02", "Quarta-Feira de Cinzas"), + ("2022-04-14", "Quinta-Feira Santa"), + ("2022-05-26", "Dia da Ascensão de Jesus Cristo ao Céu"), + ("2022-06-01", "Dia Mundial da Criança"), + ( + "2022-08-20", + "Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)", + ), + ("2022-11-03", "Dia Nacional da Mulher"), + ("2022-12-10", "Dia Mundial dos Direitos Humanos"), + ) + + def test_2023_workday(self): + self.assertHolidays( + TimorLeste(categories=(WORKDAY,), years=2023), + ("2023-02-22", "Quarta-Feira de Cinzas"), + ("2023-04-06", "Quinta-Feira Santa"), + ("2023-05-18", "Dia da Ascensão de Jesus Cristo ao Céu"), + ("2023-06-01", "Dia Mundial da Criança"), + ( + "2023-08-20", + "Dia das Forças Armadas de Libertação Nacional de Timor-Leste (FALINTIL)", + ), + ("2023-12-10", "Dia Mundial dos Direitos Humanos"), + ) + def test_l10n_default(self): self.assertLocalizedHolidays( ("2023-01-01", "Dia de Ano Novo"), From 4decc03f6d3c3e622e1c3174a2f297f58bf49081 Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Mon, 16 Oct 2023 23:46:31 +0700 Subject: [PATCH 4/5] [TL] increments l10n version number to 0.36 I swear I keep having new PRs created just when we're due for a new release lol --- holidays/locale/en_US/LC_MESSAGES/TL.po | 2 +- holidays/locale/pt_TL/LC_MESSAGES/TL.po | 2 +- holidays/locale/tet/LC_MESSAGES/TL.po | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/holidays/locale/en_US/LC_MESSAGES/TL.po b/holidays/locale/en_US/LC_MESSAGES/TL.po index d0248619b..59901ca4c 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TL.po +++ b/holidays/locale/en_US/LC_MESSAGES/TL.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.36\n" "POT-Creation-Date: 2023-10-14 08:23+0700\n" "PO-Revision-Date: 2023-10-14 08:26+0700\n" "Last-Translator: PPsyrius \n" diff --git a/holidays/locale/pt_TL/LC_MESSAGES/TL.po b/holidays/locale/pt_TL/LC_MESSAGES/TL.po index 11632f7f9..9e5443552 100644 --- a/holidays/locale/pt_TL/LC_MESSAGES/TL.po +++ b/holidays/locale/pt_TL/LC_MESSAGES/TL.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.36\n" "POT-Creation-Date: 2023-10-14 08:23+0700\n" "PO-Revision-Date: 2023-10-14 08:26+0700\n" "Last-Translator: PPsyrius \n" diff --git a/holidays/locale/tet/LC_MESSAGES/TL.po b/holidays/locale/tet/LC_MESSAGES/TL.po index e70567da0..67c390835 100644 --- a/holidays/locale/tet/LC_MESSAGES/TL.po +++ b/holidays/locale/tet/LC_MESSAGES/TL.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Python Holidays 0.35\n" +"Project-Id-Version: Python Holidays 0.36\n" "POT-Creation-Date: 2023-10-14 08:23+0700\n" "PO-Revision-Date: 2023-10-14 08:29+0700\n" "Last-Translator: PPsyrius \n" From d3f1419fca96aa70214cc26eeedbf1b2d7403f09 Mon Sep 17 00:00:00 2001 From: PPsyrius <19505219+PPsyrius@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:34:46 +0700 Subject: [PATCH 5/5] [TL] fixing `en_US` l10n typos Co-Authored-By: Arkadii Yakovets <2201626+arkid15r@users.noreply.github.com> --- holidays/countries/timor_leste.py | 6 +- holidays/locale/en_US/LC_MESSAGES/TL.po | 12 +- holidays/locale/pt_TL/LC_MESSAGES/TL.po | 6 +- holidays/locale/tet/LC_MESSAGES/TL.po | 6 +- snapshots/countries/TL.json | 270 ++++++++++++------------ tests/countries/test_timor_leste.py | 6 +- 6 files changed, 153 insertions(+), 153 deletions(-) diff --git a/holidays/countries/timor_leste.py b/holidays/countries/timor_leste.py index a0ce1fd6e..f18f5659b 100644 --- a/holidays/countries/timor_leste.py +++ b/holidays/countries/timor_leste.py @@ -79,10 +79,10 @@ def _populate_public_holidays(self): # Popular Consultation Day. self._add_holiday_aug_30(tr("Dia da Consulta Popular")) - # All Saints Day. + # All Saints' Day. self._add_all_saints_day(tr("Dia de Todos os Santos")) - # All Souls Day. + # All Souls' Day. self._add_all_souls_day(tr("Dia de Todos os Fiéis Defuntos")) # Dia Nacional da Mulher. @@ -169,7 +169,7 @@ def _populate_workday_holidays(self): # Ash Wednesday. self._add_ash_wednesday(tr("Quarta-Feira de Cinzas")) - # Holy Thusday. + # Holy Thursday. self._add_holy_thursday(tr("Quinta-Feira Santa")) # The Day of Ascension of Jesus Christ into Heaven. diff --git a/holidays/locale/en_US/LC_MESSAGES/TL.po b/holidays/locale/en_US/LC_MESSAGES/TL.po index 59901ca4c..bdaa47b64 100644 --- a/holidays/locale/en_US/LC_MESSAGES/TL.po +++ b/holidays/locale/en_US/LC_MESSAGES/TL.po @@ -40,13 +40,13 @@ msgstr "Restoration of Independence Day" msgid "Dia da Consulta Popular" msgstr "Popular Consultation Day" -#. All Saints Day. +#. All Saints' Day. msgid "Dia de Todos os Santos" -msgstr "All Saints Day" +msgstr "All Saints' Day" -#. All Souls Day. +#. All Souls' Day. msgid "Dia de Todos os Fiéis Defuntos" -msgstr "All Souls Day" +msgstr "All Souls' Day" #. National Women's Day. msgid "Dia Nacional da Mulher" @@ -116,9 +116,9 @@ msgstr "World Human Rights Day" msgid "Quarta-Feira de Cinzas" msgstr "Ash Wednesday" -#. Holy Thusday. +#. Holy Thursday. msgid "Quinta-Feira Santa" -msgstr "Holy Thusday" +msgstr "Holy Thursday" #. The Day of Ascension of Jesus Christ into Heaven. msgid "Dia da Ascensão de Jesus Cristo ao Céu" diff --git a/holidays/locale/pt_TL/LC_MESSAGES/TL.po b/holidays/locale/pt_TL/LC_MESSAGES/TL.po index 9e5443552..d0039ef88 100644 --- a/holidays/locale/pt_TL/LC_MESSAGES/TL.po +++ b/holidays/locale/pt_TL/LC_MESSAGES/TL.po @@ -40,11 +40,11 @@ msgstr "" msgid "Dia da Consulta Popular" msgstr "" -#. All Saints Day. +#. All Saints' Day. msgid "Dia de Todos os Santos" msgstr "" -#. All Souls Day. +#. All Souls' Day. msgid "Dia de Todos os Fiéis Defuntos" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Quarta-Feira de Cinzas" msgstr "" -#. Holy Thusday. +#. Holy Thursday. msgid "Quinta-Feira Santa" msgstr "" diff --git a/holidays/locale/tet/LC_MESSAGES/TL.po b/holidays/locale/tet/LC_MESSAGES/TL.po index 67c390835..8db1a1740 100644 --- a/holidays/locale/tet/LC_MESSAGES/TL.po +++ b/holidays/locale/tet/LC_MESSAGES/TL.po @@ -40,11 +40,11 @@ msgstr "Loron Restaurasaun Independénsia nian" msgid "Dia da Consulta Popular" msgstr "Loron Konsulta Populár nian" -#. All Saints Day. +#. All Saints' Day. msgid "Dia de Todos os Santos" msgstr "Loron Santu sira Hotu nian" -#. All Souls Day. +#. All Souls' Day. msgid "Dia de Todos os Fiéis Defuntos" msgstr "Loron Matebian sira nian" @@ -114,7 +114,7 @@ msgstr "Loron Mundiál Direitu Umanu" msgid "Quarta-Feira de Cinzas" msgstr "Kuarta-Feira Sinzas" -#. Holy Thusday. +#. Holy Thursday. msgid "Quinta-Feira Santa" msgstr "Quinta-Feira Santa" diff --git a/snapshots/countries/TL.json b/snapshots/countries/TL.json index b0efb342e..e63dbab1c 100644 --- a/snapshots/countries/TL.json +++ b/snapshots/countries/TL.json @@ -2,7 +2,7 @@ "2006-01-01": "New Year's Day", "2006-01-10": "Idul Adha* (*estimated)", "2006-03-01": "Ash Wednesday", - "2006-04-13": "Holy Thusday", + "2006-04-13": "Holy Thursday", "2006-04-14": "Holy Friday", "2006-05-01": "World Labor Day", "2006-05-20": "Restoration of Independence Day", @@ -12,8 +12,8 @@ "2006-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2006-08-30": "Popular Consultation Day", "2006-10-23": "Idul Fitri* (*estimated)", - "2006-11-01": "All Saints Day", - "2006-11-02": "All Souls Day", + "2006-11-01": "All Saints' Day", + "2006-11-02": "All Souls' Day", "2006-11-03": "National Women's Day", "2006-11-12": "National Youth Day", "2006-11-28": "Proclamation of Independence Day", @@ -24,7 +24,7 @@ "2006-12-31": "Idul Adha* (*estimated)", "2007-01-01": "New Year's Day", "2007-02-21": "Ash Wednesday", - "2007-04-05": "Holy Thusday", + "2007-04-05": "Holy Thursday", "2007-04-06": "Holy Friday", "2007-05-01": "World Labor Day", "2007-05-17": "The Day of Ascension of Jesus Christ into Heaven", @@ -34,8 +34,8 @@ "2007-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2007-08-30": "Popular Consultation Day", "2007-10-13": "Idul Fitri* (*estimated)", - "2007-11-01": "All Saints Day", - "2007-11-02": "All Souls Day", + "2007-11-01": "All Saints' Day", + "2007-11-02": "All Souls' Day", "2007-11-03": "National Women's Day", "2007-11-12": "National Youth Day", "2007-11-28": "Proclamation of Independence Day", @@ -46,7 +46,7 @@ "2007-12-25": "Christmas Day", "2008-01-01": "New Year's Day", "2008-02-06": "Ash Wednesday", - "2008-03-20": "Holy Thusday", + "2008-03-20": "Holy Thursday", "2008-03-21": "Holy Friday", "2008-05-01": "The Day of Ascension of Jesus Christ into Heaven; World Labor Day", "2008-05-20": "Restoration of Independence Day", @@ -55,8 +55,8 @@ "2008-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2008-08-30": "Popular Consultation Day", "2008-10-01": "Idul Fitri* (*estimated)", - "2008-11-01": "All Saints Day", - "2008-11-02": "All Souls Day", + "2008-11-01": "All Saints' Day", + "2008-11-02": "All Souls' Day", "2008-11-03": "National Women's Day", "2008-11-12": "National Youth Day", "2008-11-28": "Proclamation of Independence Day", @@ -66,7 +66,7 @@ "2008-12-25": "Christmas Day", "2009-01-01": "New Year's Day", "2009-02-25": "Ash Wednesday", - "2009-04-09": "Holy Thusday", + "2009-04-09": "Holy Thursday", "2009-04-10": "Holy Friday", "2009-05-01": "World Labor Day", "2009-05-20": "Restoration of Independence Day", @@ -76,8 +76,8 @@ "2009-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2009-08-30": "Popular Consultation Day", "2009-09-20": "Idul Fitri* (*estimated)", - "2009-11-01": "All Saints Day", - "2009-11-02": "All Souls Day", + "2009-11-01": "All Saints' Day", + "2009-11-02": "All Souls' Day", "2009-11-03": "National Women's Day", "2009-11-12": "National Youth Day", "2009-11-27": "Idul Adha* (*estimated)", @@ -88,7 +88,7 @@ "2009-12-25": "Christmas Day", "2010-01-01": "New Year's Day", "2010-02-17": "Ash Wednesday", - "2010-04-01": "Holy Thusday", + "2010-04-01": "Holy Thursday", "2010-04-02": "Holy Friday", "2010-05-01": "World Labor Day", "2010-05-13": "The Day of Ascension of Jesus Christ into Heaven", @@ -98,8 +98,8 @@ "2010-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2010-08-30": "Popular Consultation Day", "2010-09-10": "Idul Fitri* (*estimated)", - "2010-11-01": "All Saints Day", - "2010-11-02": "All Souls Day", + "2010-11-01": "All Saints' Day", + "2010-11-02": "All Souls' Day", "2010-11-03": "National Holidays (Special); National Women's Day", "2010-11-12": "National Youth Day", "2010-11-16": "Idul Adha* (*estimated)", @@ -112,7 +112,7 @@ "2010-12-31": "National Holidays (Special)", "2011-01-01": "New Year's Day", "2011-03-09": "Ash Wednesday", - "2011-04-21": "Holy Thusday", + "2011-04-21": "Holy Thursday", "2011-04-22": "Holy Friday", "2011-05-01": "World Labor Day", "2011-05-20": "Restoration of Independence Day", @@ -123,8 +123,8 @@ "2011-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2011-08-30": "Popular Consultation Day", "2011-08-31": "Idul Fitri", - "2011-11-01": "All Saints Day", - "2011-11-02": "All Souls Day", + "2011-11-01": "All Saints' Day", + "2011-11-02": "All Souls' Day", "2011-11-03": "National Holidays (Special); National Women's Day", "2011-11-07": "Idul Adha", "2011-11-12": "National Youth Day", @@ -139,7 +139,7 @@ "2012-01-23": "National Holidays (Special)", "2012-02-22": "Ash Wednesday; National Holidays (Special)", "2012-03-16": "Presidential Election Day", - "2012-04-05": "Holy Thusday", + "2012-04-05": "Holy Thursday", "2012-04-06": "Holy Friday", "2012-04-16": "Presidential Election Day", "2012-04-17": "Presidential Election Day", @@ -153,8 +153,8 @@ "2012-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); Idul Fitri", "2012-08-30": "Popular Consultation Day", "2012-10-26": "Idul Adha", - "2012-11-01": "All Saints Day", - "2012-11-02": "All Souls Day", + "2012-11-01": "All Saints' Day", + "2012-11-02": "All Souls' Day", "2012-11-03": "National Women's Day", "2012-11-12": "National Youth Day", "2012-11-27": "Centenary of the Revolt of Dom Boaventura", @@ -169,7 +169,7 @@ "2012-12-31": "National Holidays (Special)", "2013-01-01": "New Year's Day", "2013-02-13": "Ash Wednesday; National Holidays (Special)", - "2013-03-28": "Holy Thusday; National Holidays (Special)", + "2013-03-28": "Holy Thursday; National Holidays (Special)", "2013-03-29": "Holy Friday", "2013-04-01": "National Holidays (Special)", "2013-05-01": "World Labor Day", @@ -181,8 +181,8 @@ "2013-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", "2013-08-30": "Popular Consultation Day", "2013-10-15": "Idul Adha", - "2013-11-01": "All Saints Day", - "2013-11-02": "All Souls Day", + "2013-11-01": "All Saints' Day", + "2013-11-02": "All Souls' Day", "2013-11-03": "National Women's Day", "2013-11-12": "National Youth Day", "2013-11-28": "Proclamation of Independence Day", @@ -196,7 +196,7 @@ "2013-12-31": "National Holidays (Special)", "2014-01-01": "New Year's Day", "2014-03-05": "Ash Wednesday; National Holidays (Special)", - "2014-04-17": "Holy Thusday; National Holidays (Special)", + "2014-04-17": "Holy Thursday; National Holidays (Special)", "2014-04-18": "Holy Friday", "2014-04-21": "National Holidays (Special)", "2014-05-01": "World Labor Day", @@ -211,8 +211,8 @@ "2014-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", "2014-08-30": "Popular Consultation Day", "2014-10-04": "Idul Adha", - "2014-11-01": "All Saints Day", - "2014-11-02": "All Souls Day", + "2014-11-01": "All Saints' Day", + "2014-11-02": "All Souls' Day", "2014-11-03": "National Women's Day", "2014-11-12": "National Youth Day", "2014-11-28": "Proclamation of Independence Day", @@ -226,7 +226,7 @@ "2015-01-01": "New Year's Day", "2015-01-02": "National Holidays (Special)", "2015-02-18": "Ash Wednesday; National Holidays (Special)", - "2015-04-02": "Holy Thusday; National Holidays (Special)", + "2015-04-02": "Holy Thursday; National Holidays (Special)", "2015-04-03": "Holy Friday", "2015-05-01": "World Labor Day", "2015-05-13": "National Holidays (Special)", @@ -239,8 +239,8 @@ "2015-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL); National Holidays (Special)", "2015-08-30": "Popular Consultation Day", "2015-09-24": "Idul Adha", - "2015-11-01": "All Saints Day", - "2015-11-02": "All Souls Day", + "2015-11-01": "All Saints' Day", + "2015-11-02": "All Souls' Day", "2015-11-03": "National Women's Day", "2015-11-12": "National Youth Day", "2015-11-28": "Proclamation of Independence Day", @@ -252,7 +252,7 @@ "2015-12-31": "National Holidays (Special)", "2016-01-01": "New Year's Day", "2016-02-10": "Ash Wednesday; National Holidays (Special)", - "2016-03-24": "Holy Thusday; National Holidays (Special)", + "2016-03-24": "Holy Thursday; National Holidays (Special)", "2016-03-25": "Holy Friday", "2016-05-01": "World Labor Day", "2016-05-05": "The Day of Ascension of Jesus Christ into Heaven", @@ -264,8 +264,8 @@ "2016-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2016-08-30": "Popular Consultation Day", "2016-09-18": "Idul Adha", - "2016-11-01": "All Saints Day", - "2016-11-02": "All Souls Day", + "2016-11-01": "All Saints' Day", + "2016-11-02": "All Souls' Day", "2016-11-03": "National Holidays (Special); National Women's Day", "2016-11-12": "National Youth Day", "2016-11-28": "Proclamation of Independence Day", @@ -280,7 +280,7 @@ "2017-03-03": "Veteran's Day", "2017-03-20": "Presidential Election Day", "2017-03-21": "Presidential Election Day", - "2017-04-13": "Holy Thusday; National Holidays (Special)", + "2017-04-13": "Holy Thursday; National Holidays (Special)", "2017-04-14": "Holy Friday", "2017-05-01": "World Labor Day", "2017-05-20": "Restoration of Independence Day", @@ -291,8 +291,8 @@ "2017-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2017-08-30": "Popular Consultation Day", "2017-09-01": "Idul Adha", - "2017-11-01": "All Saints Day", - "2017-11-02": "All Souls Day", + "2017-11-01": "All Saints' Day", + "2017-11-02": "All Souls' Day", "2017-11-03": "National Women's Day", "2017-11-12": "National Youth Day", "2017-11-28": "Proclamation of Independence Day", @@ -307,7 +307,7 @@ "2018-02-14": "Ash Wednesday; National Holidays (Special)", "2018-02-16": "National Holidays (Special)", "2018-03-03": "Veteran's Day", - "2018-03-29": "Holy Thusday; National Holidays (Special)", + "2018-03-29": "Holy Thursday; National Holidays (Special)", "2018-03-30": "Holy Friday", "2018-05-01": "World Labor Day", "2018-05-10": "The Day of Ascension of Jesus Christ into Heaven", @@ -319,8 +319,8 @@ "2018-08-21": "Idul Adha", "2018-08-22": "National Holidays (Special)", "2018-08-30": "Popular Consultation Day", - "2018-11-01": "All Saints Day", - "2018-11-02": "All Souls Day", + "2018-11-01": "All Saints' Day", + "2018-11-02": "All Souls' Day", "2018-11-03": "National Women's Day", "2018-11-12": "National Youth Day", "2018-11-28": "Proclamation of Independence Day", @@ -333,7 +333,7 @@ "2019-02-05": "National Holidays (Special)", "2019-03-03": "Veteran's Day", "2019-03-06": "Ash Wednesday; National Holidays (Special)", - "2019-04-18": "Holy Thusday; National Holidays (Special)", + "2019-04-18": "Holy Thursday; National Holidays (Special)", "2019-04-19": "Holy Friday", "2019-05-01": "World Labor Day", "2019-05-20": "Restoration of Independence Day", @@ -350,8 +350,8 @@ "2019-08-29": "20th Anniversary Celebrations of the Popular Consultation", "2019-08-30": "Popular Consultation Day", "2019-10-31": "National Holidays (Special)", - "2019-11-01": "All Saints Day", - "2019-11-02": "All Souls Day", + "2019-11-01": "All Saints' Day", + "2019-11-02": "All Souls' Day", "2019-11-03": "National Women's Day", "2019-11-12": "National Youth Day", "2019-11-28": "Proclamation of Independence Day", @@ -367,7 +367,7 @@ "2020-01-02": "National Holidays (Special)", "2020-02-26": "Ash Wednesday; National Holidays (Special)", "2020-03-03": "Veteran's Day", - "2020-04-09": "Holy Thusday", + "2020-04-09": "Holy Thursday", "2020-04-10": "Holy Friday", "2020-05-01": "World Labor Day", "2020-05-20": "Restoration of Independence Day", @@ -379,8 +379,8 @@ "2020-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2020-08-30": "Popular Consultation Day", "2020-08-31": "National Holidays (Special)", - "2020-11-01": "All Saints Day", - "2020-11-02": "All Souls Day", + "2020-11-01": "All Saints' Day", + "2020-11-02": "All Souls' Day", "2020-11-03": "National Holidays (Special); National Women's Day", "2020-11-12": "National Youth Day", "2020-11-28": "Proclamation of Independence Day", @@ -393,7 +393,7 @@ "2021-02-12": "National Holidays (Special)", "2021-02-17": "Ash Wednesday", "2021-03-03": "Veteran's Day", - "2021-04-01": "Holy Thusday", + "2021-04-01": "Holy Thursday", "2021-04-02": "Holy Friday", "2021-05-01": "World Labor Day", "2021-05-13": "Idul Fitri; The Day of Ascension of Jesus Christ into Heaven", @@ -403,8 +403,8 @@ "2021-07-19": "Idul Adha", "2021-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2021-08-30": "Popular Consultation Day", - "2021-11-01": "All Saints Day", - "2021-11-02": "All Souls Day", + "2021-11-01": "All Saints' Day", + "2021-11-02": "All Souls' Day", "2021-11-03": "National Holidays (Special); National Women's Day", "2021-11-12": "National Youth Day", "2021-11-28": "Proclamation of Independence Day", @@ -418,7 +418,7 @@ "2022-03-02": "Ash Wednesday", "2022-03-03": "Veteran's Day", "2022-03-18": "Presidential Election Day", - "2022-04-14": "Holy Thusday; National Holidays (Special)", + "2022-04-14": "Holy Thursday; National Holidays (Special)", "2022-04-15": "Holy Friday", "2022-04-18": "Presidential Election Day", "2022-04-19": "Presidential Election Day", @@ -432,8 +432,8 @@ "2022-07-09": "Idul Adha", "2022-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2022-08-30": "Popular Consultation Day", - "2022-11-01": "All Saints Day", - "2022-11-02": "All Souls Day", + "2022-11-01": "All Saints' Day", + "2022-11-02": "All Souls' Day", "2022-11-03": "National Women's Day", "2022-11-12": "National Youth Day", "2022-11-28": "Proclamation of Independence Day", @@ -447,7 +447,7 @@ "2023-01-23": "National Holidays (Special)", "2023-02-22": "Ash Wednesday", "2023-03-03": "Veteran's Day", - "2023-04-06": "Holy Thusday", + "2023-04-06": "Holy Thursday", "2023-04-07": "Holy Friday", "2023-04-22": "Idul Fitri", "2023-05-01": "World Labor Day", @@ -458,8 +458,8 @@ "2023-06-29": "Idul Adha", "2023-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2023-08-30": "Popular Consultation Day", - "2023-11-01": "All Saints Day", - "2023-11-02": "All Souls Day", + "2023-11-01": "All Saints' Day", + "2023-11-02": "All Souls' Day", "2023-11-03": "National Women's Day", "2023-11-12": "National Youth Day", "2023-11-28": "Proclamation of Independence Day", @@ -471,7 +471,7 @@ "2024-01-01": "New Year's Day", "2024-02-14": "Ash Wednesday", "2024-03-03": "Veteran's Day", - "2024-03-28": "Holy Thusday", + "2024-03-28": "Holy Thursday", "2024-03-29": "Holy Friday", "2024-04-10": "Idul Fitri* (*estimated)", "2024-05-01": "World Labor Day", @@ -482,8 +482,8 @@ "2024-06-16": "Idul Adha* (*estimated)", "2024-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2024-08-30": "Popular Consultation Day", - "2024-11-01": "All Saints Day", - "2024-11-02": "All Souls Day", + "2024-11-01": "All Saints' Day", + "2024-11-02": "All Souls' Day", "2024-11-03": "National Women's Day", "2024-11-12": "National Youth Day", "2024-11-28": "Proclamation of Independence Day", @@ -496,7 +496,7 @@ "2025-03-03": "Veteran's Day", "2025-03-05": "Ash Wednesday", "2025-03-30": "Idul Fitri* (*estimated)", - "2025-04-17": "Holy Thusday", + "2025-04-17": "Holy Thursday", "2025-04-18": "Holy Friday", "2025-05-01": "World Labor Day", "2025-05-20": "Restoration of Independence Day", @@ -506,8 +506,8 @@ "2025-06-19": "Corpus Christi", "2025-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2025-08-30": "Popular Consultation Day", - "2025-11-01": "All Saints Day", - "2025-11-02": "All Souls Day", + "2025-11-01": "All Saints' Day", + "2025-11-02": "All Souls' Day", "2025-11-03": "National Women's Day", "2025-11-12": "National Youth Day", "2025-11-28": "Proclamation of Independence Day", @@ -520,7 +520,7 @@ "2026-02-18": "Ash Wednesday", "2026-03-03": "Veteran's Day", "2026-03-20": "Idul Fitri* (*estimated)", - "2026-04-02": "Holy Thusday", + "2026-04-02": "Holy Thursday", "2026-04-03": "Holy Friday", "2026-05-01": "World Labor Day", "2026-05-14": "The Day of Ascension of Jesus Christ into Heaven", @@ -530,8 +530,8 @@ "2026-06-04": "Corpus Christi", "2026-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2026-08-30": "Popular Consultation Day", - "2026-11-01": "All Saints Day", - "2026-11-02": "All Souls Day", + "2026-11-01": "All Saints' Day", + "2026-11-02": "All Souls' Day", "2026-11-03": "National Women's Day", "2026-11-12": "National Youth Day", "2026-11-28": "Proclamation of Independence Day", @@ -544,7 +544,7 @@ "2027-02-10": "Ash Wednesday", "2027-03-03": "Veteran's Day", "2027-03-09": "Idul Fitri* (*estimated)", - "2027-03-25": "Holy Thusday", + "2027-03-25": "Holy Thursday", "2027-03-26": "Holy Friday", "2027-05-01": "World Labor Day", "2027-05-06": "The Day of Ascension of Jesus Christ into Heaven", @@ -554,8 +554,8 @@ "2027-06-01": "World Children's Day", "2027-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2027-08-30": "Popular Consultation Day", - "2027-11-01": "All Saints Day", - "2027-11-02": "All Souls Day", + "2027-11-01": "All Saints' Day", + "2027-11-02": "All Souls' Day", "2027-11-03": "National Women's Day", "2027-11-12": "National Youth Day", "2027-11-28": "Proclamation of Independence Day", @@ -568,7 +568,7 @@ "2028-02-26": "Idul Fitri* (*estimated)", "2028-03-01": "Ash Wednesday", "2028-03-03": "Veteran's Day", - "2028-04-13": "Holy Thusday", + "2028-04-13": "Holy Thursday", "2028-04-14": "Holy Friday", "2028-05-01": "World Labor Day", "2028-05-05": "Idul Adha* (*estimated)", @@ -578,8 +578,8 @@ "2028-06-15": "Corpus Christi", "2028-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2028-08-30": "Popular Consultation Day", - "2028-11-01": "All Saints Day", - "2028-11-02": "All Souls Day", + "2028-11-01": "All Saints' Day", + "2028-11-02": "All Souls' Day", "2028-11-03": "National Women's Day", "2028-11-12": "National Youth Day", "2028-11-28": "Proclamation of Independence Day", @@ -591,7 +591,7 @@ "2029-01-01": "New Year's Day", "2029-02-14": "Ash Wednesday; Idul Fitri* (*estimated)", "2029-03-03": "Veteran's Day", - "2029-03-29": "Holy Thusday", + "2029-03-29": "Holy Thursday", "2029-03-30": "Holy Friday", "2029-04-24": "Idul Adha* (*estimated)", "2029-05-01": "World Labor Day", @@ -601,8 +601,8 @@ "2029-06-01": "World Children's Day", "2029-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2029-08-30": "Popular Consultation Day", - "2029-11-01": "All Saints Day", - "2029-11-02": "All Souls Day", + "2029-11-01": "All Saints' Day", + "2029-11-02": "All Souls' Day", "2029-11-03": "National Women's Day", "2029-11-12": "National Youth Day", "2029-11-28": "Proclamation of Independence Day", @@ -616,7 +616,7 @@ "2030-03-03": "Veteran's Day", "2030-03-06": "Ash Wednesday", "2030-04-13": "Idul Adha* (*estimated)", - "2030-04-18": "Holy Thusday", + "2030-04-18": "Holy Thursday", "2030-04-19": "Holy Friday", "2030-05-01": "World Labor Day", "2030-05-20": "Restoration of Independence Day", @@ -625,8 +625,8 @@ "2030-06-20": "Corpus Christi", "2030-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2030-08-30": "Popular Consultation Day", - "2030-11-01": "All Saints Day", - "2030-11-02": "All Souls Day", + "2030-11-01": "All Saints' Day", + "2030-11-02": "All Souls' Day", "2030-11-03": "National Women's Day", "2030-11-12": "National Youth Day", "2030-11-28": "Proclamation of Independence Day", @@ -640,7 +640,7 @@ "2031-02-26": "Ash Wednesday", "2031-03-03": "Veteran's Day", "2031-04-02": "Idul Adha* (*estimated)", - "2031-04-10": "Holy Thusday", + "2031-04-10": "Holy Thursday", "2031-04-11": "Holy Friday", "2031-05-01": "World Labor Day", "2031-05-20": "Restoration of Independence Day", @@ -649,8 +649,8 @@ "2031-06-12": "Corpus Christi", "2031-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2031-08-30": "Popular Consultation Day", - "2031-11-01": "All Saints Day", - "2031-11-02": "All Souls Day", + "2031-11-01": "All Saints' Day", + "2031-11-02": "All Souls' Day", "2031-11-03": "National Women's Day", "2031-11-12": "National Youth Day", "2031-11-28": "Proclamation of Independence Day", @@ -664,7 +664,7 @@ "2032-02-11": "Ash Wednesday", "2032-03-03": "Veteran's Day", "2032-03-22": "Idul Adha* (*estimated)", - "2032-03-25": "Holy Thusday", + "2032-03-25": "Holy Thursday", "2032-03-26": "Holy Friday", "2032-05-01": "World Labor Day", "2032-05-06": "The Day of Ascension of Jesus Christ into Heaven", @@ -673,8 +673,8 @@ "2032-06-01": "World Children's Day", "2032-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2032-08-30": "Popular Consultation Day", - "2032-11-01": "All Saints Day", - "2032-11-02": "All Souls Day", + "2032-11-01": "All Saints' Day", + "2032-11-02": "All Souls' Day", "2032-11-03": "National Women's Day", "2032-11-12": "National Youth Day", "2032-11-28": "Proclamation of Independence Day", @@ -688,7 +688,7 @@ "2033-03-02": "Ash Wednesday", "2033-03-03": "Veteran's Day", "2033-03-11": "Idul Adha* (*estimated)", - "2033-04-14": "Holy Thusday", + "2033-04-14": "Holy Thursday", "2033-04-15": "Holy Friday", "2033-05-01": "World Labor Day", "2033-05-20": "Restoration of Independence Day", @@ -697,8 +697,8 @@ "2033-06-16": "Corpus Christi", "2033-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2033-08-30": "Popular Consultation Day", - "2033-11-01": "All Saints Day", - "2033-11-02": "All Souls Day", + "2033-11-01": "All Saints' Day", + "2033-11-02": "All Souls' Day", "2033-11-03": "National Women's Day", "2033-11-12": "National Youth Day", "2033-11-28": "Proclamation of Independence Day", @@ -712,7 +712,7 @@ "2034-02-22": "Ash Wednesday", "2034-03-01": "Idul Adha* (*estimated)", "2034-03-03": "Veteran's Day", - "2034-04-06": "Holy Thusday", + "2034-04-06": "Holy Thursday", "2034-04-07": "Holy Friday", "2034-05-01": "World Labor Day", "2034-05-18": "The Day of Ascension of Jesus Christ into Heaven", @@ -721,8 +721,8 @@ "2034-06-08": "Corpus Christi", "2034-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2034-08-30": "Popular Consultation Day", - "2034-11-01": "All Saints Day", - "2034-11-02": "All Souls Day", + "2034-11-01": "All Saints' Day", + "2034-11-02": "All Souls' Day", "2034-11-03": "National Women's Day", "2034-11-12": "National Youth Day", "2034-11-28": "Proclamation of Independence Day", @@ -736,7 +736,7 @@ "2035-02-07": "Ash Wednesday", "2035-02-18": "Idul Adha* (*estimated)", "2035-03-03": "Veteran's Day", - "2035-03-22": "Holy Thusday", + "2035-03-22": "Holy Thursday", "2035-03-23": "Holy Friday", "2035-05-01": "World Labor Day", "2035-05-03": "The Day of Ascension of Jesus Christ into Heaven", @@ -745,8 +745,8 @@ "2035-06-01": "World Children's Day", "2035-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2035-08-30": "Popular Consultation Day", - "2035-11-01": "All Saints Day", - "2035-11-02": "All Souls Day", + "2035-11-01": "All Saints' Day", + "2035-11-02": "All Souls' Day", "2035-11-03": "National Women's Day", "2035-11-12": "National Youth Day", "2035-11-28": "Proclamation of Independence Day", @@ -760,7 +760,7 @@ "2036-02-07": "Idul Adha* (*estimated)", "2036-02-27": "Ash Wednesday", "2036-03-03": "Veteran's Day", - "2036-04-10": "Holy Thusday", + "2036-04-10": "Holy Thursday", "2036-04-11": "Holy Friday", "2036-05-01": "World Labor Day", "2036-05-20": "Restoration of Independence Day", @@ -769,8 +769,8 @@ "2036-06-12": "Corpus Christi", "2036-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2036-08-30": "Popular Consultation Day", - "2036-11-01": "All Saints Day", - "2036-11-02": "All Souls Day", + "2036-11-01": "All Saints' Day", + "2036-11-02": "All Souls' Day", "2036-11-03": "National Women's Day", "2036-11-12": "National Youth Day", "2036-11-19": "Idul Fitri* (*estimated)", @@ -784,7 +784,7 @@ "2037-01-26": "Idul Adha* (*estimated)", "2037-02-18": "Ash Wednesday", "2037-03-03": "Veteran's Day", - "2037-04-02": "Holy Thusday", + "2037-04-02": "Holy Thursday", "2037-04-03": "Holy Friday", "2037-05-01": "World Labor Day", "2037-05-14": "The Day of Ascension of Jesus Christ into Heaven", @@ -793,8 +793,8 @@ "2037-06-04": "Corpus Christi", "2037-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2037-08-30": "Popular Consultation Day", - "2037-11-01": "All Saints Day", - "2037-11-02": "All Souls Day", + "2037-11-01": "All Saints' Day", + "2037-11-02": "All Souls' Day", "2037-11-03": "National Women's Day", "2037-11-08": "Idul Fitri* (*estimated)", "2037-11-12": "National Youth Day", @@ -808,7 +808,7 @@ "2038-01-16": "Idul Adha* (*estimated)", "2038-03-03": "Veteran's Day", "2038-03-10": "Ash Wednesday", - "2038-04-22": "Holy Thusday", + "2038-04-22": "Holy Thursday", "2038-04-23": "Holy Friday", "2038-05-01": "World Labor Day", "2038-05-20": "Restoration of Independence Day", @@ -818,8 +818,8 @@ "2038-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2038-08-30": "Popular Consultation Day", "2038-10-29": "Idul Fitri* (*estimated)", - "2038-11-01": "All Saints Day", - "2038-11-02": "All Souls Day", + "2038-11-01": "All Saints' Day", + "2038-11-02": "All Souls' Day", "2038-11-03": "National Women's Day", "2038-11-12": "National Youth Day", "2038-11-28": "Proclamation of Independence Day", @@ -832,7 +832,7 @@ "2039-01-05": "Idul Adha* (*estimated)", "2039-02-23": "Ash Wednesday", "2039-03-03": "Veteran's Day", - "2039-04-07": "Holy Thusday", + "2039-04-07": "Holy Thursday", "2039-04-08": "Holy Friday", "2039-05-01": "World Labor Day", "2039-05-19": "The Day of Ascension of Jesus Christ into Heaven", @@ -842,8 +842,8 @@ "2039-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2039-08-30": "Popular Consultation Day", "2039-10-19": "Idul Fitri* (*estimated)", - "2039-11-01": "All Saints Day", - "2039-11-02": "All Souls Day", + "2039-11-01": "All Saints' Day", + "2039-11-02": "All Souls' Day", "2039-11-03": "National Women's Day", "2039-11-12": "National Youth Day", "2039-11-28": "Proclamation of Independence Day", @@ -856,7 +856,7 @@ "2040-01-01": "New Year's Day", "2040-02-15": "Ash Wednesday", "2040-03-03": "Veteran's Day", - "2040-03-29": "Holy Thusday", + "2040-03-29": "Holy Thursday", "2040-03-30": "Holy Friday", "2040-05-01": "World Labor Day", "2040-05-10": "The Day of Ascension of Jesus Christ into Heaven", @@ -866,8 +866,8 @@ "2040-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2040-08-30": "Popular Consultation Day", "2040-10-07": "Idul Fitri* (*estimated)", - "2040-11-01": "All Saints Day", - "2040-11-02": "All Souls Day", + "2040-11-01": "All Saints' Day", + "2040-11-02": "All Souls' Day", "2040-11-03": "National Women's Day", "2040-11-12": "National Youth Day", "2040-11-28": "Proclamation of Independence Day", @@ -880,7 +880,7 @@ "2041-01-01": "New Year's Day", "2041-03-03": "Veteran's Day", "2041-03-06": "Ash Wednesday", - "2041-04-18": "Holy Thusday", + "2041-04-18": "Holy Thursday", "2041-04-19": "Holy Friday", "2041-05-01": "World Labor Day", "2041-05-20": "Restoration of Independence Day", @@ -890,8 +890,8 @@ "2041-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2041-08-30": "Popular Consultation Day", "2041-09-26": "Idul Fitri* (*estimated)", - "2041-11-01": "All Saints Day", - "2041-11-02": "All Souls Day", + "2041-11-01": "All Saints' Day", + "2041-11-02": "All Souls' Day", "2041-11-03": "National Women's Day", "2041-11-12": "National Youth Day", "2041-11-28": "Proclamation of Independence Day", @@ -904,7 +904,7 @@ "2042-01-01": "New Year's Day", "2042-02-19": "Ash Wednesday", "2042-03-03": "Veteran's Day", - "2042-04-03": "Holy Thusday", + "2042-04-03": "Holy Thursday", "2042-04-04": "Holy Friday", "2042-05-01": "World Labor Day", "2042-05-15": "The Day of Ascension of Jesus Christ into Heaven", @@ -914,8 +914,8 @@ "2042-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2042-08-30": "Popular Consultation Day", "2042-09-15": "Idul Fitri* (*estimated)", - "2042-11-01": "All Saints Day", - "2042-11-02": "All Souls Day", + "2042-11-01": "All Saints' Day", + "2042-11-02": "All Souls' Day", "2042-11-03": "National Women's Day", "2042-11-12": "National Youth Day", "2042-11-23": "Idul Adha* (*estimated)", @@ -928,7 +928,7 @@ "2043-01-01": "New Year's Day", "2043-02-11": "Ash Wednesday", "2043-03-03": "Veteran's Day", - "2043-03-26": "Holy Thusday", + "2043-03-26": "Holy Thursday", "2043-03-27": "Holy Friday", "2043-05-01": "World Labor Day", "2043-05-07": "The Day of Ascension of Jesus Christ into Heaven", @@ -938,8 +938,8 @@ "2043-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2043-08-30": "Popular Consultation Day", "2043-09-04": "Idul Fitri* (*estimated)", - "2043-11-01": "All Saints Day", - "2043-11-02": "All Souls Day", + "2043-11-01": "All Saints' Day", + "2043-11-02": "All Souls' Day", "2043-11-03": "National Women's Day", "2043-11-12": "Idul Adha* (*estimated); National Youth Day", "2043-11-28": "Proclamation of Independence Day", @@ -951,7 +951,7 @@ "2044-01-01": "New Year's Day", "2044-03-02": "Ash Wednesday", "2044-03-03": "Veteran's Day", - "2044-04-14": "Holy Thusday", + "2044-04-14": "Holy Thursday", "2044-04-15": "Holy Friday", "2044-05-01": "World Labor Day", "2044-05-20": "Restoration of Independence Day", @@ -962,8 +962,8 @@ "2044-08-24": "Idul Fitri* (*estimated)", "2044-08-30": "Popular Consultation Day", "2044-10-31": "Idul Adha* (*estimated)", - "2044-11-01": "All Saints Day", - "2044-11-02": "All Souls Day", + "2044-11-01": "All Saints' Day", + "2044-11-02": "All Souls' Day", "2044-11-03": "National Women's Day", "2044-11-12": "National Youth Day", "2044-11-28": "Proclamation of Independence Day", @@ -975,7 +975,7 @@ "2045-01-01": "New Year's Day", "2045-02-22": "Ash Wednesday", "2045-03-03": "Veteran's Day", - "2045-04-06": "Holy Thusday", + "2045-04-06": "Holy Thursday", "2045-04-07": "Holy Friday", "2045-05-01": "World Labor Day", "2045-05-18": "The Day of Ascension of Jesus Christ into Heaven", @@ -986,8 +986,8 @@ "2045-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2045-08-30": "Popular Consultation Day", "2045-10-21": "Idul Adha* (*estimated)", - "2045-11-01": "All Saints Day", - "2045-11-02": "All Souls Day", + "2045-11-01": "All Saints' Day", + "2045-11-02": "All Souls' Day", "2045-11-03": "National Women's Day", "2045-11-12": "National Youth Day", "2045-11-28": "Proclamation of Independence Day", @@ -999,7 +999,7 @@ "2046-01-01": "New Year's Day", "2046-02-07": "Ash Wednesday", "2046-03-03": "Veteran's Day", - "2046-03-22": "Holy Thusday", + "2046-03-22": "Holy Thursday", "2046-03-23": "Holy Friday", "2046-05-01": "World Labor Day", "2046-05-03": "The Day of Ascension of Jesus Christ into Heaven", @@ -1010,8 +1010,8 @@ "2046-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2046-08-30": "Popular Consultation Day", "2046-10-10": "Idul Adha* (*estimated)", - "2046-11-01": "All Saints Day", - "2046-11-02": "All Souls Day", + "2046-11-01": "All Saints' Day", + "2046-11-02": "All Souls' Day", "2046-11-03": "National Women's Day", "2046-11-12": "National Youth Day", "2046-11-28": "Proclamation of Independence Day", @@ -1023,7 +1023,7 @@ "2047-01-01": "New Year's Day", "2047-02-27": "Ash Wednesday", "2047-03-03": "Veteran's Day", - "2047-04-11": "Holy Thusday", + "2047-04-11": "Holy Thursday", "2047-04-12": "Holy Friday", "2047-05-01": "World Labor Day", "2047-05-20": "Restoration of Independence Day", @@ -1034,8 +1034,8 @@ "2047-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2047-08-30": "Popular Consultation Day", "2047-09-30": "Idul Adha* (*estimated)", - "2047-11-01": "All Saints Day", - "2047-11-02": "All Souls Day", + "2047-11-01": "All Saints' Day", + "2047-11-02": "All Souls' Day", "2047-11-03": "National Women's Day", "2047-11-12": "National Youth Day", "2047-11-28": "Proclamation of Independence Day", @@ -1047,7 +1047,7 @@ "2048-01-01": "New Year's Day", "2048-02-19": "Ash Wednesday", "2048-03-03": "Veteran's Day", - "2048-04-02": "Holy Thusday", + "2048-04-02": "Holy Thursday", "2048-04-03": "Holy Friday", "2048-05-01": "World Labor Day", "2048-05-14": "The Day of Ascension of Jesus Christ into Heaven", @@ -1058,8 +1058,8 @@ "2048-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2048-08-30": "Popular Consultation Day", "2048-09-19": "Idul Adha* (*estimated)", - "2048-11-01": "All Saints Day", - "2048-11-02": "All Souls Day", + "2048-11-01": "All Saints' Day", + "2048-11-02": "All Souls' Day", "2048-11-03": "National Women's Day", "2048-11-12": "National Youth Day", "2048-11-28": "Proclamation of Independence Day", @@ -1070,7 +1070,7 @@ "2048-12-31": "National Heroes Day", "2049-01-01": "New Year's Day", "2049-03-03": "Ash Wednesday; Veteran's Day", - "2049-04-15": "Holy Thusday", + "2049-04-15": "Holy Thursday", "2049-04-16": "Holy Friday", "2049-05-01": "World Labor Day", "2049-05-20": "Restoration of Independence Day", @@ -1081,8 +1081,8 @@ "2049-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2049-08-30": "Popular Consultation Day", "2049-09-08": "Idul Adha* (*estimated)", - "2049-11-01": "All Saints Day", - "2049-11-02": "All Souls Day", + "2049-11-01": "All Saints' Day", + "2049-11-02": "All Souls' Day", "2049-11-03": "National Women's Day", "2049-11-12": "National Youth Day", "2049-11-28": "Proclamation of Independence Day", @@ -1094,7 +1094,7 @@ "2050-01-01": "New Year's Day", "2050-02-23": "Ash Wednesday", "2050-03-03": "Veteran's Day", - "2050-04-07": "Holy Thusday", + "2050-04-07": "Holy Thursday", "2050-04-08": "Holy Friday", "2050-05-01": "World Labor Day", "2050-05-19": "The Day of Ascension of Jesus Christ into Heaven", @@ -1105,8 +1105,8 @@ "2050-08-20": "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", "2050-08-28": "Idul Adha* (*estimated)", "2050-08-30": "Popular Consultation Day", - "2050-11-01": "All Saints Day", - "2050-11-02": "All Souls Day", + "2050-11-01": "All Saints' Day", + "2050-11-02": "All Souls' Day", "2050-11-03": "National Women's Day", "2050-11-12": "National Youth Day", "2050-11-28": "Proclamation of Independence Day", diff --git a/tests/countries/test_timor_leste.py b/tests/countries/test_timor_leste.py index 7bb3ae50c..f8016446d 100644 --- a/tests/countries/test_timor_leste.py +++ b/tests/countries/test_timor_leste.py @@ -479,7 +479,7 @@ def test_l10n_en_us(self): ("2023-01-23", "National Holidays (Special)"), ("2023-02-22", "Ash Wednesday"), ("2023-03-03", "Veteran's Day"), - ("2023-04-06", "Holy Thusday"), + ("2023-04-06", "Holy Thursday"), ("2023-04-07", "Holy Friday"), ("2023-04-22", "Idul Fitri"), ("2023-05-01", "World Labor Day"), @@ -493,8 +493,8 @@ def test_l10n_en_us(self): "Day of the Armed Forces for the National Liberation of Timor-Leste (FALINTIL)", ), ("2023-08-30", "Popular Consultation Day"), - ("2023-11-01", "All Saints Day"), - ("2023-11-02", "All Souls Day"), + ("2023-11-01", "All Saints' Day"), + ("2023-11-02", "All Souls' Day"), ("2023-11-03", "National Women's Day"), ("2023-11-12", "National Youth Day"), ("2023-11-28", "Proclamation of Independence Day"),