holidays 0.49__py3-none-any.whl → 0.50__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- holidays/__init__.py +12 -1
- holidays/countries/__init__.py +1 -0
- holidays/countries/botswana.py +19 -9
- holidays/countries/chile.py +14 -11
- holidays/countries/georgia.py +17 -1
- holidays/countries/greenland.py +96 -0
- holidays/countries/isle_of_man.py +3 -8
- holidays/countries/italy.py +161 -129
- holidays/countries/japan.py +38 -30
- holidays/countries/jersey.py +9 -7
- holidays/countries/monaco.py +4 -6
- holidays/countries/russia.py +18 -4
- holidays/countries/switzerland.py +16 -14
- holidays/deprecation.py +33 -0
- holidays/locale/da/LC_MESSAGES/GL.mo +0 -0
- holidays/locale/da/LC_MESSAGES/GL.po +91 -0
- holidays/locale/en_US/LC_MESSAGES/GE.mo +0 -0
- holidays/locale/en_US/LC_MESSAGES/GE.po +8 -4
- holidays/locale/en_US/LC_MESSAGES/GL.mo +0 -0
- holidays/locale/en_US/LC_MESSAGES/GL.po +92 -0
- holidays/locale/en_US/LC_MESSAGES/RU.mo +0 -0
- holidays/locale/en_US/LC_MESSAGES/RU.po +11 -2
- holidays/locale/ka/LC_MESSAGES/GE.mo +0 -0
- holidays/locale/ka/LC_MESSAGES/GE.po +8 -4
- holidays/locale/kl/LC_MESSAGES/GL.mo +0 -0
- holidays/locale/kl/LC_MESSAGES/GL.po +91 -0
- holidays/locale/ru/LC_MESSAGES/RU.mo +0 -0
- holidays/locale/ru/LC_MESSAGES/RU.po +11 -2
- holidays/locale/uk/LC_MESSAGES/GE.mo +0 -0
- holidays/locale/uk/LC_MESSAGES/GE.po +8 -4
- holidays/observed_holiday_base.py +42 -25
- holidays/registry.py +11 -1
- {holidays-0.49.dist-info → holidays-0.50.dist-info}/AUTHORS +3 -0
- {holidays-0.49.dist-info → holidays-0.50.dist-info}/METADATA +8 -3
- {holidays-0.49.dist-info → holidays-0.50.dist-info}/RECORD +38 -30
- {holidays-0.49.dist-info → holidays-0.50.dist-info}/LICENSE +0 -0
- {holidays-0.49.dist-info → holidays-0.50.dist-info}/WHEEL +0 -0
- {holidays-0.49.dist-info → holidays-0.50.dist-info}/top_level.txt +0 -0
|
@@ -15,10 +15,10 @@ from gettext import gettext as tr
|
|
|
15
15
|
from holidays.calendars.gregorian import APR, THU, _timedelta, _get_nth_weekday_of_month
|
|
16
16
|
from holidays.constants import HALF_DAY, OPTIONAL, PUBLIC
|
|
17
17
|
from holidays.groups import ChristianHolidays, InternationalHolidays
|
|
18
|
-
from holidays.
|
|
18
|
+
from holidays.observed_holiday_base import ObservedHolidayBase, MON_ONLY, TUE_TO_NONE, SAT_TO_NONE
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
class Switzerland(
|
|
21
|
+
class Switzerland(ObservedHolidayBase, ChristianHolidays, InternationalHolidays):
|
|
22
22
|
"""
|
|
23
23
|
References:
|
|
24
24
|
- https://www.bj.admin.ch/dam/bj/de/data/publiservice/service/zivilprozessrecht/kant-feiertage.pdf # noqa: E501
|
|
@@ -115,8 +115,9 @@ class Switzerland(HolidayBase, ChristianHolidays, InternationalHolidays):
|
|
|
115
115
|
|
|
116
116
|
self._add_whit_monday(tr("Pfingstmontag"))
|
|
117
117
|
|
|
118
|
-
|
|
119
|
-
self._add_christmas_day_two(tr("Stephanstag"))
|
|
118
|
+
self._add_observed(
|
|
119
|
+
self._add_christmas_day_two(tr("Stephanstag")), rule=TUE_TO_NONE + SAT_TO_NONE
|
|
120
|
+
)
|
|
120
121
|
|
|
121
122
|
def _populate_subdiv_ai_public_holidays(self):
|
|
122
123
|
self._add_good_friday(tr("Karfreitag"))
|
|
@@ -133,8 +134,9 @@ class Switzerland(HolidayBase, ChristianHolidays, InternationalHolidays):
|
|
|
133
134
|
|
|
134
135
|
self._add_immaculate_conception_day(tr("Mariä Empfängnis"))
|
|
135
136
|
|
|
136
|
-
|
|
137
|
-
self._add_christmas_day_two(tr("Stephanstag"))
|
|
137
|
+
self._add_observed(
|
|
138
|
+
self._add_christmas_day_two(tr("Stephanstag")), rule=TUE_TO_NONE + SAT_TO_NONE
|
|
139
|
+
)
|
|
138
140
|
|
|
139
141
|
def _populate_subdiv_bl_public_holidays(self):
|
|
140
142
|
self._add_good_friday(tr("Karfreitag"))
|
|
@@ -267,10 +269,10 @@ class Switzerland(HolidayBase, ChristianHolidays, InternationalHolidays):
|
|
|
267
269
|
self._add_christmas_day_two(tr("Stephanstag"))
|
|
268
270
|
|
|
269
271
|
def _populate_subdiv_ne_public_holidays(self):
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
272
|
+
self._add_observed(
|
|
273
|
+
self._add_new_years_day_two(tr("Berchtoldstag")),
|
|
274
|
+
rule=MON_ONLY, # Jan 2 is public holiday only when it falls on Monday.
|
|
275
|
+
)
|
|
274
276
|
|
|
275
277
|
# Republic Day.
|
|
276
278
|
self._add_holiday_mar_1(tr("Jahrestag der Ausrufung der Republik"))
|
|
@@ -281,8 +283,7 @@ class Switzerland(HolidayBase, ChristianHolidays, InternationalHolidays):
|
|
|
281
283
|
|
|
282
284
|
self._add_corpus_christi_day(tr("Fronleichnam"))
|
|
283
285
|
|
|
284
|
-
|
|
285
|
-
self._add_christmas_day_two(tr("Stephanstag"))
|
|
286
|
+
self._add_observed(self._add_christmas_day_two(tr("Stephanstag")), rule=MON_ONLY)
|
|
286
287
|
|
|
287
288
|
def _populate_subdiv_nw_public_holidays(self):
|
|
288
289
|
# St. Joseph's Day.
|
|
@@ -445,8 +446,9 @@ class Switzerland(HolidayBase, ChristianHolidays, InternationalHolidays):
|
|
|
445
446
|
|
|
446
447
|
self._add_immaculate_conception_day(tr("Mariä Empfängnis"))
|
|
447
448
|
|
|
448
|
-
|
|
449
|
-
self._add_christmas_day_two(tr("Stephanstag"))
|
|
449
|
+
self._add_observed(
|
|
450
|
+
self._add_christmas_day_two(tr("Stephanstag")), rule=TUE_TO_NONE + SAT_TO_NONE
|
|
451
|
+
)
|
|
450
452
|
|
|
451
453
|
def _populate_subdiv_vd_public_holidays(self):
|
|
452
454
|
self._add_new_years_day_two(tr("Berchtoldstag"))
|
holidays/deprecation.py
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# holidays
|
|
2
|
+
# --------
|
|
3
|
+
# A fast, efficient Python library for generating country, province and state
|
|
4
|
+
# specific sets of holidays on the fly. It aims to make determining whether a
|
|
5
|
+
# specific date is a holiday as fast and flexible as possible.
|
|
6
|
+
#
|
|
7
|
+
# Authors: Vacanza Team and individual contributors (see AUTHORS file)
|
|
8
|
+
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
|
|
9
|
+
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
|
10
|
+
# Website: https://github.com/vacanza/python-holidays
|
|
11
|
+
# License: MIT (see LICENSE file)
|
|
12
|
+
|
|
13
|
+
FUTURE_INCOMPATIBILITY_WARNING_TEMPLATE = """
|
|
14
|
+
|
|
15
|
+
This is a future version incompatibility warning from Python Holidays library v{version}
|
|
16
|
+
to inform you about an upcoming change in our API versioning strategy that may affect your
|
|
17
|
+
project's dependencies. Starting from version 1.0 onwards, we will be following a loose form of
|
|
18
|
+
Semantic Versioning (SemVer) to provide clearer communication regarding any potential breaking
|
|
19
|
+
changes.
|
|
20
|
+
|
|
21
|
+
This means that while we strive to maintain backward compatibility, there might be occasional
|
|
22
|
+
updates that introduce breaking changes to our API. To ensure the stability of your projects,
|
|
23
|
+
we highly recommend pinning the version of our API that you rely on. You can pin your current
|
|
24
|
+
holidays v0.x dependency (e.g., holidays=={version}) or limit it (e.g., holidays<1.0) in order to
|
|
25
|
+
avoid potentially unwanted upgrade to the version 1.0 when it's released (ETA 2024Q4 - 2025Q1).
|
|
26
|
+
|
|
27
|
+
If you have any questions or concerns regarding this change, please don't hesitate to reach out
|
|
28
|
+
to us via https://github.com/vacanza/python-holidays/discussions/1800.
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class FutureIncompatibilityWarning(DeprecationWarning):
|
|
33
|
+
pass
|
|
Binary file
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# holidays
|
|
2
|
+
# --------
|
|
3
|
+
# A fast, efficient Python library for generating country, province and state
|
|
4
|
+
# specific sets of holidays on the fly. It aims to make determining whether a
|
|
5
|
+
# specific date is a holiday as fast and flexible as possible.
|
|
6
|
+
#
|
|
7
|
+
# Authors: Vacanza Team and individual contributors (see AUTHORS file)
|
|
8
|
+
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
|
|
9
|
+
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
|
10
|
+
# Website: https://github.com/vacanza/python-holidays
|
|
11
|
+
# License: MIT (see LICENSE file)
|
|
12
|
+
#
|
|
13
|
+
# Greenland holidays.
|
|
14
|
+
#
|
|
15
|
+
msgid ""
|
|
16
|
+
msgstr ""
|
|
17
|
+
"Project-Id-Version: Python Holidays 0.50\n"
|
|
18
|
+
"POT-Creation-Date: 2023-02-15 08:13-0800\n"
|
|
19
|
+
"PO-Revision-Date: 2024-05-30 16:36+0200\n"
|
|
20
|
+
"Last-Translator: ~Klintrup <github@klintrup.dk>\n"
|
|
21
|
+
"Language-Team: Python Holidays localization team\n"
|
|
22
|
+
"Language: da\n"
|
|
23
|
+
"MIME-Version: 1.0\n"
|
|
24
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
25
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
26
|
+
"Generated-By: Lingua 4.15.0\n"
|
|
27
|
+
"X-Generator: Poedit 3.2.2\n"
|
|
28
|
+
|
|
29
|
+
#. New Year's Day.
|
|
30
|
+
msgid "Ukioq nutaaq"
|
|
31
|
+
msgstr "Nytårsdag"
|
|
32
|
+
|
|
33
|
+
#. Maundy Thursday.
|
|
34
|
+
msgid "Sisamanngornermi illernartumi"
|
|
35
|
+
msgstr "Skærtorsdag"
|
|
36
|
+
|
|
37
|
+
#. Easter Sunday.
|
|
38
|
+
msgid "Poorskimi"
|
|
39
|
+
msgstr "Påskedag"
|
|
40
|
+
|
|
41
|
+
#. Easter Monday.
|
|
42
|
+
msgid "Poorskimi ullut aappaat"
|
|
43
|
+
msgstr "Anden påskedag"
|
|
44
|
+
|
|
45
|
+
#. Great Day of Prayers.
|
|
46
|
+
msgid "Ulloq qinuffiusoq"
|
|
47
|
+
msgstr "Store bededag"
|
|
48
|
+
|
|
49
|
+
#. Ascension Day.
|
|
50
|
+
msgid "Ulloq Kristusip qilaliarnera"
|
|
51
|
+
msgstr "Kristi himmelfartsdag"
|
|
52
|
+
|
|
53
|
+
#. Whit Sunday.
|
|
54
|
+
msgid "Piinsip ullua"
|
|
55
|
+
msgstr "Pinsedag"
|
|
56
|
+
|
|
57
|
+
#. Whit Monday.
|
|
58
|
+
msgid "Piinsip ulluisa aappaanni"
|
|
59
|
+
msgstr "Anden pinsedag"
|
|
60
|
+
|
|
61
|
+
#. Christmas Day.
|
|
62
|
+
msgid "Juulli"
|
|
63
|
+
msgstr "Juledag"
|
|
64
|
+
|
|
65
|
+
#. Second Day of Christmas.
|
|
66
|
+
msgid "Juullip aappaa"
|
|
67
|
+
msgstr "Anden juledag"
|
|
68
|
+
|
|
69
|
+
#. International Workers' Day.
|
|
70
|
+
msgid "Sulisartut ulluat"
|
|
71
|
+
msgstr "Arbejdernes kampdag"
|
|
72
|
+
|
|
73
|
+
#. Christmas Eve.
|
|
74
|
+
msgid "Juulliaqqami"
|
|
75
|
+
msgstr "Juleaftensdag"
|
|
76
|
+
|
|
77
|
+
#. New Year's Eve.
|
|
78
|
+
msgid "Ukiortaami"
|
|
79
|
+
msgstr "Nytårsaften"
|
|
80
|
+
|
|
81
|
+
#. National Day.
|
|
82
|
+
msgid "Ullortuneq"
|
|
83
|
+
msgstr "Nationaldag"
|
|
84
|
+
|
|
85
|
+
#. Good Friday.
|
|
86
|
+
msgid "Tallimanngorneq ajortorsiorneq"
|
|
87
|
+
msgstr "Langfredag"
|
|
88
|
+
|
|
89
|
+
#. Epiphany.
|
|
90
|
+
msgid "Mitaarneq"
|
|
91
|
+
msgstr "Helligtrekongersdag"
|
|
Binary file
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
#
|
|
15
15
|
msgid ""
|
|
16
16
|
msgstr ""
|
|
17
|
-
"Project-Id-Version: Python Holidays 0.
|
|
17
|
+
"Project-Id-Version: Python Holidays 0.50\n"
|
|
18
18
|
"POT-Creation-Date: 2023-07-18 17:31+0300\n"
|
|
19
|
-
"PO-Revision-Date: 2024-
|
|
20
|
-
"Last-Translator:
|
|
19
|
+
"PO-Revision-Date: 2024-05-23 11:01+0700\n"
|
|
20
|
+
"Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
|
|
21
21
|
"Language-Team: Python Holidays localization team\n"
|
|
22
22
|
"Language: en_US\n"
|
|
23
23
|
"MIME-Version: 1.0\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
26
26
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
27
27
|
"Generated-By: Lingua 4.15.0\n"
|
|
28
|
-
"X-Generator: Poedit 3.4\n"
|
|
28
|
+
"X-Generator: Poedit 3.4.4\n"
|
|
29
29
|
|
|
30
30
|
#. New Year's Day.
|
|
31
31
|
msgid "ახალი წელი"
|
|
@@ -90,3 +90,7 @@ msgstr "Holiday of Svetitskhovloba, Robe of Jesus"
|
|
|
90
90
|
#. Saint George's Day.
|
|
91
91
|
msgid "გიორგობა"
|
|
92
92
|
msgstr "Saint George's Day"
|
|
93
|
+
|
|
94
|
+
#. Day of Family Sanctity and Respect for Parents.
|
|
95
|
+
msgid "ოჯახის სიწმინდისა და მშობლების პატივისცემის დღე"
|
|
96
|
+
msgstr "Day of Family Sanctity and Respect for Parents"
|
|
Binary file
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# holidays
|
|
2
|
+
# --------
|
|
3
|
+
# A fast, efficient Python library for generating country, province and state
|
|
4
|
+
# specific sets of holidays on the fly. It aims to make determining whether a
|
|
5
|
+
# specific date is a holiday as fast and flexible as possible.
|
|
6
|
+
#
|
|
7
|
+
# Authors: Vacanza Team and individual contributors (see AUTHORS file)
|
|
8
|
+
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
|
|
9
|
+
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
|
10
|
+
# Website: https://github.com/vacanza/python-holidays
|
|
11
|
+
# License: MIT (see LICENSE file)
|
|
12
|
+
#
|
|
13
|
+
# Greenland holidays en_US localization.
|
|
14
|
+
#
|
|
15
|
+
msgid ""
|
|
16
|
+
msgstr ""
|
|
17
|
+
"Project-Id-Version: Python Holidays 0.50\n"
|
|
18
|
+
"POT-Creation-Date: 2023-02-15 08:13-0800\n"
|
|
19
|
+
"PO-Revision-Date: 2023-11-12 16:36+0200\n"
|
|
20
|
+
"Last-Translator: ~Klintrup <github@klintrup.dk>\n"
|
|
21
|
+
"Language-Team: Python Holidays localization team\n"
|
|
22
|
+
"Language: en_US\n"
|
|
23
|
+
"MIME-Version: 1.0\n"
|
|
24
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
25
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
26
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
27
|
+
"Generated-By: pygettext.py 1.5\n"
|
|
28
|
+
"X-Generator: Poedit 3.2.2\n"
|
|
29
|
+
|
|
30
|
+
#. New Year's Day.
|
|
31
|
+
msgid "Ukioq nutaaq"
|
|
32
|
+
msgstr "New Year's Day"
|
|
33
|
+
|
|
34
|
+
#. Maundy Thursday.
|
|
35
|
+
msgid "Sisamanngornermi illernartumi"
|
|
36
|
+
msgstr "Maundy Thursday"
|
|
37
|
+
|
|
38
|
+
#. Easter Sunday.
|
|
39
|
+
msgid "Poorskimi"
|
|
40
|
+
msgstr "Easter Sunday"
|
|
41
|
+
|
|
42
|
+
#. Easter Monday.
|
|
43
|
+
msgid "Poorskimi ullut aappaat"
|
|
44
|
+
msgstr "Easter Monday"
|
|
45
|
+
|
|
46
|
+
#. Great Day of Prayers.
|
|
47
|
+
msgid "Ulloq qinuffiusoq"
|
|
48
|
+
msgstr "Great Prayer Day"
|
|
49
|
+
|
|
50
|
+
#. Ascension Day.
|
|
51
|
+
msgid "Ulloq Kristusip qilaliarnera"
|
|
52
|
+
msgstr "Ascension Day"
|
|
53
|
+
|
|
54
|
+
#. Whit Sunday.
|
|
55
|
+
msgid "Piinsip ullua"
|
|
56
|
+
msgstr "Whit Sunday"
|
|
57
|
+
|
|
58
|
+
#. Whit Monday.
|
|
59
|
+
msgid "Piinsip ulluisa aappaanni"
|
|
60
|
+
msgstr "Whit Monday"
|
|
61
|
+
|
|
62
|
+
#. Christmas Day.
|
|
63
|
+
msgid "Juulli"
|
|
64
|
+
msgstr "Christmas Day"
|
|
65
|
+
|
|
66
|
+
#. Second Day of Christmas.
|
|
67
|
+
msgid "Juullip aappaa"
|
|
68
|
+
msgstr "Second Day of Christmas"
|
|
69
|
+
|
|
70
|
+
#. International Workers' Day.
|
|
71
|
+
msgid "Sulisartut ulluat"
|
|
72
|
+
msgstr "International Workers' Day"
|
|
73
|
+
|
|
74
|
+
#. Christmas Eve.
|
|
75
|
+
msgid "Juulliaqqami"
|
|
76
|
+
msgstr "Christmas Eve"
|
|
77
|
+
|
|
78
|
+
#. New Year's Eve.
|
|
79
|
+
msgid "Ukiortaami"
|
|
80
|
+
msgstr "New Year's Eve"
|
|
81
|
+
|
|
82
|
+
#. National Day.
|
|
83
|
+
msgid "Ullortuneq"
|
|
84
|
+
msgstr "National Day"
|
|
85
|
+
|
|
86
|
+
#. Good Friday.
|
|
87
|
+
msgid "Tallimanngorneq ajortorsiorneq"
|
|
88
|
+
msgstr "Good Friday"
|
|
89
|
+
|
|
90
|
+
#. Epiphany.
|
|
91
|
+
msgid "Mitaarneq"
|
|
92
|
+
msgstr "Epiphany"
|
|
Binary file
|
|
@@ -16,7 +16,7 @@ msgid ""
|
|
|
16
16
|
msgstr ""
|
|
17
17
|
"Project-Id-Version: Python Holidays 0.29\n"
|
|
18
18
|
"POT-Creation-Date: 2023-02-15 08:13-0800\n"
|
|
19
|
-
"PO-Revision-Date:
|
|
19
|
+
"PO-Revision-Date: 2024-05-21 13:26+0700\n"
|
|
20
20
|
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
|
|
21
21
|
"Language-Team: Python Holidays localization team\n"
|
|
22
22
|
"Language: en_US\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
26
26
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
27
27
|
"Generated-By: Lingua 4.15.0\n"
|
|
28
|
-
"X-Generator: Poedit 3.
|
|
28
|
+
"X-Generator: Poedit 3.4.4\n"
|
|
29
29
|
|
|
30
30
|
#. New Year's Day.
|
|
31
31
|
msgid "Новый год"
|
|
@@ -82,3 +82,12 @@ msgstr "Day of consent and reconciliation"
|
|
|
82
82
|
#. Anniversary of the Great October Socialist Revolution.
|
|
83
83
|
msgid "Годовщина Великой Октябрьской социалистической революции"
|
|
84
84
|
msgstr "Anniversary of the Great October Socialist Revolution"
|
|
85
|
+
|
|
86
|
+
#. Date format (see strftime() Format Codes).
|
|
87
|
+
msgid "%d.%m.%Y"
|
|
88
|
+
msgstr "%m/%d/%Y"
|
|
89
|
+
|
|
90
|
+
#. Day off (substituted from %s).
|
|
91
|
+
#, c-format
|
|
92
|
+
msgid "Выходной (перенесено с %s)"
|
|
93
|
+
msgstr "Day off (substituted from %s)"
|
|
Binary file
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
#
|
|
15
15
|
msgid ""
|
|
16
16
|
msgstr ""
|
|
17
|
-
"Project-Id-Version: Python Holidays 0.
|
|
17
|
+
"Project-Id-Version: Python Holidays 0.50\n"
|
|
18
18
|
"POT-Creation-Date: 2023-07-18 17:31+0300\n"
|
|
19
|
-
"PO-Revision-Date:
|
|
20
|
-
"Last-Translator:
|
|
19
|
+
"PO-Revision-Date: 2024-05-23 11:01+0700\n"
|
|
20
|
+
"Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
|
|
21
21
|
"Language-Team: Python Holidays localization team\n"
|
|
22
22
|
"Language: ka\n"
|
|
23
23
|
"MIME-Version: 1.0\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
26
26
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
27
27
|
"Generated-By: Lingua 4.15.0\n"
|
|
28
|
-
"X-Generator: Poedit 3.
|
|
28
|
+
"X-Generator: Poedit 3.4.4\n"
|
|
29
29
|
|
|
30
30
|
#. New Year's Day.
|
|
31
31
|
msgid "ახალი წელი"
|
|
@@ -90,3 +90,7 @@ msgstr ""
|
|
|
90
90
|
#. Saint George's Day.
|
|
91
91
|
msgid "გიორგობა"
|
|
92
92
|
msgstr ""
|
|
93
|
+
|
|
94
|
+
#. Day of Family Sanctity and Respect for Parents.
|
|
95
|
+
msgid "ოჯახის სიწმინდისა და მშობლების პატივისცემის დღე"
|
|
96
|
+
msgstr ""
|
|
Binary file
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# holidays
|
|
2
|
+
# --------
|
|
3
|
+
# A fast, efficient Python library for generating country, province and state
|
|
4
|
+
# specific sets of holidays on the fly. It aims to make determining whether a
|
|
5
|
+
# specific date is a holiday as fast and flexible as possible.
|
|
6
|
+
#
|
|
7
|
+
# Authors: Vacanza Team and individual contributors (see AUTHORS file)
|
|
8
|
+
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
|
|
9
|
+
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
|
|
10
|
+
# Website: https://github.com/vacanza/python-holidays
|
|
11
|
+
# License: MIT (see LICENSE file)
|
|
12
|
+
#
|
|
13
|
+
# Greenland holidays.
|
|
14
|
+
#
|
|
15
|
+
msgid ""
|
|
16
|
+
msgstr ""
|
|
17
|
+
"Project-Id-Version: Python Holidays 0.50\n"
|
|
18
|
+
"POT-Creation-Date: 2023-02-15 08:13-0800\n"
|
|
19
|
+
"PO-Revision-Date: 2024-05-30 16:36+0200\n"
|
|
20
|
+
"Last-Translator: ~Klintrup <github@klintrup.dk>\n"
|
|
21
|
+
"Language-Team: Python Holidays localization team\n"
|
|
22
|
+
"Language: kl\n"
|
|
23
|
+
"MIME-Version: 1.0\n"
|
|
24
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
25
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
26
|
+
"Generated-By: Lingua 4.15.0\n"
|
|
27
|
+
"X-Generator: Poedit 3.2.2\n"
|
|
28
|
+
|
|
29
|
+
#. New Year's Day.
|
|
30
|
+
msgid "Ukioq nutaaq"
|
|
31
|
+
msgstr ""
|
|
32
|
+
|
|
33
|
+
#. Maundy Thursday.
|
|
34
|
+
msgid "Sisamanngornermi illernartumi"
|
|
35
|
+
msgstr ""
|
|
36
|
+
|
|
37
|
+
#. Easter Sunday.
|
|
38
|
+
msgid "Poorskimi"
|
|
39
|
+
msgstr ""
|
|
40
|
+
|
|
41
|
+
#. Easter Monday.
|
|
42
|
+
msgid "Poorskimi ullut aappaat"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
#. Great Day of Prayers.
|
|
46
|
+
msgid "Ulloq qinuffiusoq"
|
|
47
|
+
msgstr ""
|
|
48
|
+
|
|
49
|
+
#. Ascension Day.
|
|
50
|
+
msgid "Ulloq Kristusip qilaliarnera"
|
|
51
|
+
msgstr ""
|
|
52
|
+
|
|
53
|
+
#. Whit Sunday.
|
|
54
|
+
msgid "Piinsip ullua"
|
|
55
|
+
msgstr ""
|
|
56
|
+
|
|
57
|
+
#. Whit Monday.
|
|
58
|
+
msgid "Piinsip ulluisa aappaanni"
|
|
59
|
+
msgstr ""
|
|
60
|
+
|
|
61
|
+
#. Christmas Day.
|
|
62
|
+
msgid "Juulli"
|
|
63
|
+
msgstr ""
|
|
64
|
+
|
|
65
|
+
#. Second Day of Christmas.
|
|
66
|
+
msgid "Juullip aappaa"
|
|
67
|
+
msgstr ""
|
|
68
|
+
|
|
69
|
+
#. International Workers' Day.
|
|
70
|
+
msgid "Sulisartut ulluat"
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
73
|
+
#. Christmas Eve.
|
|
74
|
+
msgid "Juulliaqqami"
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
77
|
+
#. New Year's Eve.
|
|
78
|
+
msgid "Ukiortaami"
|
|
79
|
+
msgstr ""
|
|
80
|
+
|
|
81
|
+
#. National Day.
|
|
82
|
+
msgid "Ullortuneq"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
#. Good Friday.
|
|
86
|
+
msgid "Tallimanngorneq ajortorsiorneq"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
#. Epiphany.
|
|
90
|
+
msgid "Mitaarneq"
|
|
91
|
+
msgstr ""
|
|
Binary file
|
|
@@ -16,7 +16,7 @@ msgid ""
|
|
|
16
16
|
msgstr ""
|
|
17
17
|
"Project-Id-Version: Python Holidays 0.29\n"
|
|
18
18
|
"POT-Creation-Date: 2023-02-15 08:13-0800\n"
|
|
19
|
-
"PO-Revision-Date:
|
|
19
|
+
"PO-Revision-Date: 2024-05-21 13:26+0700\n"
|
|
20
20
|
"Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
|
|
21
21
|
"Language-Team: Python Holidays localization team\n"
|
|
22
22
|
"Language: ru\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
26
26
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
|
27
27
|
"Generated-By: Lingua 4.15.0\n"
|
|
28
|
-
"X-Generator: Poedit 3.
|
|
28
|
+
"X-Generator: Poedit 3.4.4\n"
|
|
29
29
|
|
|
30
30
|
#. New Year's Day.
|
|
31
31
|
msgid "Новый год"
|
|
@@ -80,3 +80,12 @@ msgstr ""
|
|
|
80
80
|
#. Anniversary of the Great October Socialist Revolution.
|
|
81
81
|
msgid "Годовщина Великой Октябрьской социалистической революции"
|
|
82
82
|
msgstr ""
|
|
83
|
+
|
|
84
|
+
#. Date format (see strftime() Format Codes).
|
|
85
|
+
msgid "%d.%m.%Y"
|
|
86
|
+
msgstr ""
|
|
87
|
+
|
|
88
|
+
#. Day off (substituted from %s).
|
|
89
|
+
#, c-format
|
|
90
|
+
msgid "Выходной (перенесено с %s)"
|
|
91
|
+
msgstr ""
|
|
Binary file
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
#
|
|
15
15
|
msgid ""
|
|
16
16
|
msgstr ""
|
|
17
|
-
"Project-Id-Version: Python Holidays 0.
|
|
17
|
+
"Project-Id-Version: Python Holidays 0.50\n"
|
|
18
18
|
"POT-Creation-Date: 2023-07-18 17:31+0300\n"
|
|
19
|
-
"PO-Revision-Date:
|
|
20
|
-
"Last-Translator:
|
|
19
|
+
"PO-Revision-Date: 2024-05-23 11:01+0700\n"
|
|
20
|
+
"Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
|
|
21
21
|
"Language-Team: Python Holidays localization team\n"
|
|
22
22
|
"Language: uk\n"
|
|
23
23
|
"MIME-Version: 1.0\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
"Content-Transfer-Encoding: 8bit\n"
|
|
26
26
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
|
27
27
|
"Generated-By: Lingua 4.15.0\n"
|
|
28
|
-
"X-Generator: Poedit 3.
|
|
28
|
+
"X-Generator: Poedit 3.4.4\n"
|
|
29
29
|
|
|
30
30
|
#. New Year's Day.
|
|
31
31
|
msgid "ახალი წელი"
|
|
@@ -90,3 +90,7 @@ msgstr "Свято Светіцховлоба, Ризи Господньої"
|
|
|
90
90
|
#. Saint George's Day.
|
|
91
91
|
msgid "გიორგობა"
|
|
92
92
|
msgstr "День святого Георгія"
|
|
93
|
+
|
|
94
|
+
#. Day of Family Sanctity and Respect for Parents.
|
|
95
|
+
msgid "ოჯახის სიწმინდისა და მშობლების პატივისცემის დღე"
|
|
96
|
+
msgstr "День святості родини та поваги до батьків"
|