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.
Files changed (38) hide show
  1. holidays/__init__.py +12 -1
  2. holidays/countries/__init__.py +1 -0
  3. holidays/countries/botswana.py +19 -9
  4. holidays/countries/chile.py +14 -11
  5. holidays/countries/georgia.py +17 -1
  6. holidays/countries/greenland.py +96 -0
  7. holidays/countries/isle_of_man.py +3 -8
  8. holidays/countries/italy.py +161 -129
  9. holidays/countries/japan.py +38 -30
  10. holidays/countries/jersey.py +9 -7
  11. holidays/countries/monaco.py +4 -6
  12. holidays/countries/russia.py +18 -4
  13. holidays/countries/switzerland.py +16 -14
  14. holidays/deprecation.py +33 -0
  15. holidays/locale/da/LC_MESSAGES/GL.mo +0 -0
  16. holidays/locale/da/LC_MESSAGES/GL.po +91 -0
  17. holidays/locale/en_US/LC_MESSAGES/GE.mo +0 -0
  18. holidays/locale/en_US/LC_MESSAGES/GE.po +8 -4
  19. holidays/locale/en_US/LC_MESSAGES/GL.mo +0 -0
  20. holidays/locale/en_US/LC_MESSAGES/GL.po +92 -0
  21. holidays/locale/en_US/LC_MESSAGES/RU.mo +0 -0
  22. holidays/locale/en_US/LC_MESSAGES/RU.po +11 -2
  23. holidays/locale/ka/LC_MESSAGES/GE.mo +0 -0
  24. holidays/locale/ka/LC_MESSAGES/GE.po +8 -4
  25. holidays/locale/kl/LC_MESSAGES/GL.mo +0 -0
  26. holidays/locale/kl/LC_MESSAGES/GL.po +91 -0
  27. holidays/locale/ru/LC_MESSAGES/RU.mo +0 -0
  28. holidays/locale/ru/LC_MESSAGES/RU.po +11 -2
  29. holidays/locale/uk/LC_MESSAGES/GE.mo +0 -0
  30. holidays/locale/uk/LC_MESSAGES/GE.po +8 -4
  31. holidays/observed_holiday_base.py +42 -25
  32. holidays/registry.py +11 -1
  33. {holidays-0.49.dist-info → holidays-0.50.dist-info}/AUTHORS +3 -0
  34. {holidays-0.49.dist-info → holidays-0.50.dist-info}/METADATA +8 -3
  35. {holidays-0.49.dist-info → holidays-0.50.dist-info}/RECORD +38 -30
  36. {holidays-0.49.dist-info → holidays-0.50.dist-info}/LICENSE +0 -0
  37. {holidays-0.49.dist-info → holidays-0.50.dist-info}/WHEEL +0 -0
  38. {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.holiday_base import HolidayBase
18
+ from holidays.observed_holiday_base import ObservedHolidayBase, MON_ONLY, TUE_TO_NONE, SAT_TO_NONE
19
19
 
20
20
 
21
- class Switzerland(HolidayBase, ChristianHolidays, InternationalHolidays):
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
- if not self._is_monday(self._christmas_day) and not self._is_friday(self._christmas_day):
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
- if not self._is_monday(self._christmas_day) and not self._is_friday(self._christmas_day):
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
- dt = self._add_new_years_day_two(tr("Berchtoldstag"))
271
- # Jan 2 is public holiday only when it falls on Monday (Jan 1 falls on Sunday).
272
- if not self._is_monday(dt):
273
- self.pop(dt)
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
- if self._is_sunday(self._christmas_day):
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
- if not self._is_monday(self._christmas_day) and not self._is_friday(self._christmas_day):
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"))
@@ -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.41\n"
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-01-03 19:00+0200\n"
20
- "Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
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: 2023-07-13 15:58+0300\n"
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.2.2\n"
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.30\n"
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: 2023-07-18 17:57+0300\n"
20
- "Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
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.2.2\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 ""
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: 2023-07-13 15:57+0300\n"
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.2.2\n"
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.30\n"
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: 2023-07-18 18:06+0300\n"
20
- "Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
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.2.2\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 "Свято Светіцховлоба, Ризи Господньої"
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 "День святості родини та поваги до батьків"