+
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions holidays/countries/argentina.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ class Argentina(

country = "AR"
default_language = "es"
# %s (estimated).
estimated_label = tr("%s (estimado)")
# %s (observed, estimated).
observed_estimated_label = tr("%s (observado, estimado)")
# %s (observed).
observed_label = tr("%s (observado)")
# Decree-Law 2446.
Expand Down
4 changes: 4 additions & 0 deletions holidays/countries/bosnia_and_herzegovina.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ class BosniaAndHerzegovina(

country = "BA"
default_language = "bs"
# %s (estimated).
estimated_label = tr("%s (procijenjeno)")
# %s (observed, estimated).
observed_estimated_label = tr("%s (preneseno, procijenjeno)")
# %s (observed).
observed_label = tr("%s (preneseno)")
subdivisions = (
Expand Down
5 changes: 5 additions & 0 deletions holidays/countries/burkina_faso.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ class BurkinaFaso(ObservedHolidayBase, ChristianHolidays, InternationalHolidays,
"""

country = "BF"
# %s (estimated).
estimated_label = "%s (estimated)"
# %s (observed, estimated).
observed_estimated_label = "%s (observed, estimated)"
# %s (observed).
observed_label = "%s (observed)"
# On 5 August 1960, Burkina Faso (Republic of Upper Volta at that time)
# gained independence from France.
Expand Down
5 changes: 5 additions & 0 deletions holidays/countries/cameroon.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ class Cameroon(
"""

country = "CM"
# %s (estimated).
estimated_label = "%s (estimated)"
# %s (observed, estimated).
observed_estimated_label = "%s (observed, estimated)"
# %s (observed).
observed_label = "%s (observed)"
# On 1 January 1960, French Cameroun gained independence from France.
start_year = 1960
Expand Down
5 changes: 5 additions & 0 deletions holidays/countries/chad.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ class Chad(
"""

country = "TD"
# %s (estimated).
estimated_label = "%s (estimated)"
# %s (observed, estimated).
observed_estimated_label = "%s (observed, estimated)"
# %s (observed).
observed_label = "%s (observed)"
# On 11 August 1960, Chad gained independence from France.
start_year = 1961
Expand Down
2 changes: 2 additions & 0 deletions holidays/countries/gabon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class Gabon(HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolida
"""

country = "GA"
# %s (estimated).
estimated_label = "%s (estimated)"
# On 17 August 1960, Gabon gained independence from France.
start_year = 1961

Expand Down
2 changes: 2 additions & 0 deletions holidays/countries/kyrgyzstan.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ class Kyrgyzstan(HolidayBase, ChristianHolidays, InternationalHolidays, IslamicH
"""

country = "KG"
# %s (estimated).
estimated_label = "%s (estimated)"

def __init__(self, *args, islamic_show_estimated: bool = True, **kwargs):
"""
Expand Down
2 changes: 2 additions & 0 deletions holidays/countries/maldives.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ class Maldives(HolidayBase, InternationalHolidays, IslamicHolidays):
"""

country = "MV"
# %s (estimated).
estimated_label = "%s (estimated)"
weekend = {FRI, SAT}

def __init__(self, *args, islamic_show_estimated: bool = True, **kwargs):
Expand Down
2 changes: 2 additions & 0 deletions holidays/countries/mauritania.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class Mauritania(HolidayBase, InternationalHolidays, IslamicHolidays):
"""

country = "MR"
# %s (estimated).
estimated_label = "%s (estimated)"
weekend = {FRI, SAT}

def __init__(self, *args, islamic_show_estimated: bool = True, **kwargs):
Expand Down
5 changes: 5 additions & 0 deletions holidays/countries/nigeria.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ class Nigeria(
"""

country = "NG"
# %s (estimated).
estimated_label = "%s (estimated)"
# %s (observed, estimated).
observed_estimated_label = "%s (observed, estimated)"
# %s (observed).
observed_label = "%s (observed)"
start_year = 1979

Expand Down
2 changes: 2 additions & 0 deletions holidays/countries/somalia.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ class Somalia(HolidayBase, InternationalHolidays, IslamicHolidays):
"""

country = "SO"
# %s (estimated).
estimated_label = "%s (estimated)"
# Unification of Somaliland and Italian Somaliland into the Somali Republic on July 1st, 1960.
start_year = 1961

Expand Down
4 changes: 4 additions & 0 deletions holidays/countries/spain.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ class Spain(

country = "ES"
default_language = "es"
# %s (estimated).
estimated_label = tr("%s (estimado)")
# Monday following %s (estimated).
observed_estimated_label = tr("Lunes siguiente a %s (estimado)")
# Monday following %s.
observed_label = tr("Lunes siguiente a %s")
subdivisions = (
Expand Down
2 changes: 2 additions & 0 deletions holidays/countries/uganda.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class Uganda(HolidayBase, ChristianHolidays, InternationalHolidays, IslamicHolid
"""

country = "UG"
# %s (estimated).
estimated_label = "%s (estimated)"
# Uganda gained independence from the United Kingdom on October 9, 1962.
start_year = 1963

Expand Down
2 changes: 1 addition & 1 deletion holidays/groups/eastern.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _add_eastern_calendar_holiday(

Adds customizable estimation label to holiday name if holiday date is an estimation.
"""
estimated_label = getattr(self, "estimated_label", "%s (estimated)")
estimated_label = getattr(self, "estimated_label", "%s")
dt, is_estimated = dt_estimated

if days_delta and dt:
Expand Down
14 changes: 12 additions & 2 deletions holidays/locale/bs/LC_MESSAGES/BA.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.28\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-06-26 18:31+0300\n"
"PO-Revision-Date: 2023-06-26 18:34+0300\n"
"PO-Revision-Date: 2025-08-26 18:49+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: bs\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.2.2\n"
"X-Source-Language: bs\n"

#. %s (estimated).
#, c-format
msgid "%s (procijenjeno)"
msgstr ""

#. %s (observed, estimated).
#, c-format
msgid "%s (preneseno, procijenjeno)"
msgstr ""

#. %s (observed).
#, c-format
msgid "%s (preneseno)"
Expand Down
16 changes: 13 additions & 3 deletions holidays/locale/en_US/LC_MESSAGES/AR.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.73\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-03-02 00:39+0700\n"
"PO-Revision-Date: 2025-05-06 10:34+0700\n"
"Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
"PO-Revision-Date: 2025-08-26 18:30+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: en_US\n"
"MIME-Version: 1.0\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.6\n"
"X-Source-Language: es\n"

#. %s (estimated).
#, c-format
msgid "%s (estimado)"
msgstr "%s (estimated)"

#. %s (observed, estimated).
#, c-format
msgid "%s (observado, estimado)"
msgstr "%s (observed, estimated)"

#. %s (observed).
#, c-format
msgid "%s (observado)"
Expand Down
14 changes: 12 additions & 2 deletions holidays/locale/en_US/LC_MESSAGES/BA.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.42\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-06-26 18:31+0300\n"
"PO-Revision-Date: 2024-01-23 20:44+0200\n"
"PO-Revision-Date: 2025-08-26 18:49+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: en_US\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.4\n"
"X-Source-Language: bs\n"

#. %s (estimated).
#, c-format
msgid "%s (procijenjeno)"
msgstr "%s (estimated)"

#. %s (observed, estimated).
#, c-format
msgid "%s (preneseno, procijenjeno)"
msgstr "%s (observed, estimated)"

#. %s (observed).
#, c-format
msgid "%s (preneseno)"
Expand Down
14 changes: 12 additions & 2 deletions holidays/locale/en_US/LC_MESSAGES/ES.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.56\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-12-26 19:23+0200\n"
"PO-Revision-Date: 2024-08-31 18:20+0300\n"
"PO-Revision-Date: 2025-08-26 18:42+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: en_US\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.4\n"
"X-Source-Language: es\n"

#. %s (estimated).
#, c-format
msgid "%s (estimado)"
msgstr "%s (estimated)"

#. Monday following %s (estimated).
#, c-format
msgid "Lunes siguiente a %s (estimado)"
msgstr "Monday following %s (estimated)"

#. Monday following %s.
#, c-format
msgid "Lunes siguiente a %s"
Expand Down
16 changes: 13 additions & 3 deletions holidays/locale/es/LC_MESSAGES/AR.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.73\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-03-02 00:39+0700\n"
"PO-Revision-Date: 2025-05-06 10:34+0700\n"
"Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
"PO-Revision-Date: 2025-08-26 18:30+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: es\n"
"MIME-Version: 1.0\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.6\n"
"X-Source-Language: es\n"

#. %s (estimated).
#, c-format
msgid "%s (estimado)"
msgstr ""

#. %s (observed, estimated).
#, c-format
msgid "%s (observado, estimado)"
msgstr ""

#. %s (observed).
#, c-format
msgid "%s (observado)"
Expand Down
14 changes: 12 additions & 2 deletions holidays/locale/es/LC_MESSAGES/ES.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.40\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-12-26 19:23+0200\n"
"PO-Revision-Date: 2023-12-26 19:32+0200\n"
"PO-Revision-Date: 2025-08-26 18:42+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: es\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.4\n"
"X-Source-Language: es\n"

#. %s (estimated).
#, c-format
msgid "%s (estimado)"
msgstr ""

#. Monday following %s (estimated).
#, c-format
msgid "Lunes siguiente a %s (estimado)"
msgstr ""

#. Monday following %s.
#, c-format
msgid "Lunes siguiente a %s"
Expand Down
14 changes: 12 additions & 2 deletions holidays/locale/sr/LC_MESSAGES/BA.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.28\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-06-26 18:31+0300\n"
"PO-Revision-Date: 2023-06-26 18:46+0300\n"
"PO-Revision-Date: 2025-08-26 18:49+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: sr\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.2.2\n"
"X-Source-Language: bs\n"

#. %s (estimated).
#, c-format
msgid "%s (procijenjeno)"
msgstr "%s (процењено)"

#. %s (observed, estimated).
#, c-format
msgid "%s (preneseno, procijenjeno)"
msgstr "%s (пренешено, процењено)"

#. %s (observed).
#, c-format
msgid "%s (preneseno)"
Expand Down
16 changes: 13 additions & 3 deletions holidays/locale/uk/LC_MESSAGES/AR.po
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Holidays 0.73\n"
"Project-Id-Version: Holidays 0.80\n"
"POT-Creation-Date: 2023-03-02 00:39+0700\n"
"PO-Revision-Date: 2025-05-06 10:34+0700\n"
"Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
"PO-Revision-Date: 2025-08-26 18:30+0300\n"
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
"Language-Team: Holidays Localization Team\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
Expand All @@ -27,6 +27,16 @@ msgstr ""
"X-Generator: Poedit 3.6\n"
"X-Source-Language: es\n"

#. %s (estimated).
#, c-format
msgid "%s (estimado)"
msgstr "%s (приблизна дата)"

#. %s (observed, estimated).
#, c-format
msgid "%s (observado, estimado)"
msgstr "%s (вихідний, приблизна дата)"

#. %s (observed).
#, c-format
msgid "%s (observado)"
Expand Down
Loading
Loading
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载