holidays 0.63__py3-none-any.whl → 0.64__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 (66) hide show
  1. holidays/calendars/hebrew.py +32 -3
  2. holidays/constants.py +1 -0
  3. holidays/countries/__init__.py +1 -0
  4. holidays/countries/afghanistan.py +104 -0
  5. holidays/countries/azerbaijan.py +2 -2
  6. holidays/countries/belarus.py +93 -14
  7. holidays/countries/el_salvador.py +45 -24
  8. holidays/countries/israel.py +55 -80
  9. holidays/countries/kazakhstan.py +2 -2
  10. holidays/countries/montenegro.py +143 -27
  11. holidays/countries/norway.py +1 -1
  12. holidays/countries/poland.py +9 -1
  13. holidays/countries/russia.py +1 -1
  14. holidays/countries/ukraine.py +19 -10
  15. holidays/financial/ny_stock_exchange.py +81 -44
  16. holidays/groups/__init__.py +1 -0
  17. holidays/groups/christian.py +2 -0
  18. holidays/groups/custom.py +12 -0
  19. holidays/groups/hebrew.py +151 -0
  20. holidays/holiday_base.py +2 -2
  21. holidays/locale/be/LC_MESSAGES/BY.mo +0 -0
  22. holidays/locale/be/LC_MESSAGES/BY.po +53 -17
  23. holidays/locale/cnr/LC_MESSAGES/ME.mo +0 -0
  24. holidays/locale/cnr/LC_MESSAGES/ME.po +102 -0
  25. holidays/locale/en_US/LC_MESSAGES/AF.mo +0 -0
  26. holidays/locale/en_US/LC_MESSAGES/AF.po +98 -0
  27. holidays/locale/en_US/LC_MESSAGES/BY.mo +0 -0
  28. holidays/locale/en_US/LC_MESSAGES/BY.po +61 -20
  29. holidays/locale/en_US/LC_MESSAGES/ME.mo +0 -0
  30. holidays/locale/en_US/LC_MESSAGES/ME.po +102 -0
  31. holidays/locale/en_US/LC_MESSAGES/PL.mo +0 -0
  32. holidays/locale/en_US/LC_MESSAGES/PL.po +7 -5
  33. holidays/locale/en_US/LC_MESSAGES/SV.mo +0 -0
  34. holidays/locale/en_US/LC_MESSAGES/SV.po +75 -0
  35. holidays/locale/es/LC_MESSAGES/SV.mo +0 -0
  36. holidays/locale/es/LC_MESSAGES/SV.po +75 -0
  37. holidays/locale/fa_AF/LC_MESSAGES/AF.mo +0 -0
  38. holidays/locale/fa_AF/LC_MESSAGES/AF.po +98 -0
  39. holidays/locale/pl/LC_MESSAGES/PL.mo +0 -0
  40. holidays/locale/pl/LC_MESSAGES/PL.po +8 -4
  41. holidays/locale/ps_AF/LC_MESSAGES/AF.mo +0 -0
  42. holidays/locale/ps_AF/LC_MESSAGES/AF.po +98 -0
  43. holidays/locale/ru/LC_MESSAGES/BY.mo +0 -0
  44. holidays/locale/ru/LC_MESSAGES/BY.po +111 -0
  45. holidays/locale/th/LC_MESSAGES/BY.mo +0 -0
  46. holidays/locale/th/LC_MESSAGES/BY.po +109 -0
  47. holidays/locale/th/LC_MESSAGES/NO.mo +0 -0
  48. holidays/locale/th/LC_MESSAGES/NO.po +80 -0
  49. holidays/locale/th/LC_MESSAGES/RU.mo +0 -0
  50. holidays/locale/th/LC_MESSAGES/RU.po +90 -0
  51. holidays/locale/th/LC_MESSAGES/UA.mo +0 -0
  52. holidays/locale/th/LC_MESSAGES/UA.po +114 -0
  53. holidays/locale/uk/LC_MESSAGES/ME.mo +0 -0
  54. holidays/locale/uk/LC_MESSAGES/ME.po +102 -0
  55. holidays/locale/uk/LC_MESSAGES/PL.mo +0 -0
  56. holidays/locale/uk/LC_MESSAGES/PL.po +7 -5
  57. holidays/locale/uk/LC_MESSAGES/SV.mo +0 -0
  58. holidays/locale/uk/LC_MESSAGES/SV.po +75 -0
  59. holidays/registry.py +1 -0
  60. holidays/version.py +1 -1
  61. {holidays-0.63.dist-info → holidays-0.64.dist-info}/AUTHORS +1 -0
  62. {holidays-0.63.dist-info → holidays-0.64.dist-info}/METADATA +16 -11
  63. {holidays-0.63.dist-info → holidays-0.64.dist-info}/RECORD +66 -36
  64. {holidays-0.63.dist-info → holidays-0.64.dist-info}/WHEEL +1 -1
  65. {holidays-0.63.dist-info → holidays-0.64.dist-info}/LICENSE +0 -0
  66. {holidays-0.63.dist-info → holidays-0.64.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,151 @@
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/holidays
11
+ # License: MIT (see LICENSE file)
12
+
13
+ from collections.abc import Iterable
14
+ from datetime import date
15
+ from typing import Optional, Union
16
+
17
+ from holidays.calendars import _HebrewLunisolar
18
+ from holidays.calendars.gregorian import _timedelta
19
+
20
+
21
+ class HebrewCalendarHolidays:
22
+ """
23
+ Hebrew lunisolar calendar holidays.
24
+ """
25
+
26
+ def __init__(self) -> None:
27
+ self._hebrew_calendar = _HebrewLunisolar()
28
+
29
+ def _add_hebrew_calendar_holiday(
30
+ self, name: str, hol_date: date, days_delta: Union[int, Iterable[int]] = 0
31
+ ) -> set[date]:
32
+ added_dates = set()
33
+ for delta in (days_delta,) if isinstance(days_delta, int) else days_delta:
34
+ if dt := self._add_holiday(name, _timedelta(hol_date, delta)):
35
+ added_dates.add(dt)
36
+ return added_dates
37
+
38
+ def _add_hanukkah(
39
+ self, name: str, days_delta: Union[int, Iterable[int]] = 0
40
+ ) -> set[Optional[date]]:
41
+ """
42
+ Add Hanukkah.
43
+ In some Gregorian years, there may be two Hanukkah dates.
44
+
45
+ Hanukkah is a Jewish festival commemorating the recovery of Jerusalem
46
+ and subsequent rededication of the Second Temple.
47
+ https://en.wikipedia.org/wiki/Hanukkah
48
+ """
49
+ dts = self._hebrew_calendar.hanukkah_date(self._year)
50
+ for dt in dts:
51
+ self._add_hebrew_calendar_holiday(name, dt, days_delta) # type: ignore[arg-type]
52
+ return dts
53
+
54
+ def _add_lag_baomer(self, name: str, days_delta: Union[int, Iterable[int]] = 0) -> set[date]:
55
+ """
56
+ Add Lag BaOmer.
57
+
58
+ Lag BaOmer, also Lag B'Omer or Lag LaOmer, is a Jewish religious holiday celebrated
59
+ on the 33rd day of the Counting of the Omer, which occurs on the 18th day of
60
+ the Hebrew month of Iyar.
61
+ https://en.wikipedia.org/wiki/Lag_BaOmer
62
+ """
63
+ return self._add_hebrew_calendar_holiday(
64
+ name,
65
+ self._hebrew_calendar.lag_baomer_date(self._year), # type: ignore[arg-type]
66
+ days_delta,
67
+ )
68
+
69
+ def _add_passover(self, name: str, days_delta: Union[int, Iterable[int]] = 0) -> set[date]:
70
+ """
71
+ Add Passover.
72
+
73
+ Passover, also called Pesach, is a major Jewish holiday and one of the Three Pilgrimage
74
+ Festivals. It celebrates the Exodus of the Israelites from slavery in Egypt.
75
+ https://en.wikipedia.org/wiki/Passover
76
+ """
77
+ return self._add_hebrew_calendar_holiday(
78
+ name,
79
+ self._hebrew_calendar.passover_date(self._year), # type: ignore[arg-type]
80
+ days_delta,
81
+ )
82
+
83
+ def _add_purim(self, name: str) -> set[date]:
84
+ """
85
+ Add Purim.
86
+
87
+ Purim is a Jewish holiday that commemorates the saving of the Jewish people
88
+ from annihilation at the hands of an official of the Achaemenid Empire named Haman,
89
+ as it is recounted in the Book of Esther.
90
+ https://en.wikipedia.org/wiki/Purim
91
+ """
92
+ return self._add_hebrew_calendar_holiday(
93
+ name,
94
+ self._hebrew_calendar.purim_date(self._year), # type: ignore[arg-type]
95
+ )
96
+
97
+ def _add_rosh_hashanah(
98
+ self, name: str, days_delta: Union[int, Iterable[int]] = 0
99
+ ) -> set[date]:
100
+ """
101
+ Add Rosh Hashanah.
102
+
103
+ Rosh Hashanah is the New Year in Judaism.
104
+ https://en.wikipedia.org/wiki/Rosh_Hashanah
105
+ """
106
+ return self._add_hebrew_calendar_holiday(
107
+ name,
108
+ self._hebrew_calendar.rosh_hashanah_date(self._year), # type: ignore[arg-type]
109
+ days_delta,
110
+ )
111
+
112
+ def _add_shavuot(self, name: str) -> set[date]:
113
+ """
114
+ Add Shavuot.
115
+
116
+ Shavuot, or Shvues, is a Jewish holiday, one of the biblically ordained
117
+ Three Pilgrimage Festivals. It occurs on the sixth day of the Hebrew month of Sivan.
118
+ https://en.wikipedia.org/wiki/Shavuot
119
+ """
120
+ return self._add_hebrew_calendar_holiday(
121
+ name,
122
+ self._hebrew_calendar.shavuot_date(self._year), # type: ignore[arg-type]
123
+ )
124
+
125
+ def _add_sukkot(self, name: str, days_delta: Union[int, Iterable[int]] = 0) -> set[date]:
126
+ """
127
+ Add Sukkot.
128
+
129
+ Sukkot, also known as the Feast of Tabernacles or Feast of Booths, is a Torah-commanded
130
+ holiday celebrated for seven days, beginning on the 15th day of the month of Tishrei.
131
+ https://en.wikipedia.org/wiki/Sukkot
132
+ """
133
+ return self._add_hebrew_calendar_holiday(
134
+ name,
135
+ self._hebrew_calendar.sukkot_date(self._year), # type: ignore[arg-type]
136
+ days_delta,
137
+ )
138
+
139
+ def _add_yom_kippur(self, name: str, days_delta: Union[int, Iterable[int]] = 0) -> set[date]:
140
+ """
141
+ Add Yom Kippur.
142
+
143
+ Yom Kippur (Day of Atonement) is the holiest day of the year in Judaism.
144
+ It occurs annually on the 10th of Tishrei.
145
+ https://en.wikipedia.org/wiki/Yom_Kippur
146
+ """
147
+ return self._add_hebrew_calendar_holiday(
148
+ name,
149
+ self._hebrew_calendar.yom_kippur_date(self._year), # type: ignore[arg-type]
150
+ days_delta,
151
+ )
holidays/holiday_base.py CHANGED
@@ -233,7 +233,7 @@ class HolidayBase(dict[date, str]):
233
233
  ones."""
234
234
  weekend: set[int] = {SAT, SUN}
235
235
  """Country weekend days."""
236
- weekend_workdays: set[date] = set()
236
+ weekend_workdays: set[date]
237
237
  """Working days moved to weekends."""
238
238
  default_category: str = PUBLIC
239
239
  """The entity category used by default."""
@@ -362,7 +362,7 @@ class HolidayBase(dict[date, str]):
362
362
  self.language = language.lower() if language else None
363
363
  self.observed = observed
364
364
  self.subdiv = subdiv
365
- self.weekend_workdays = set()
365
+ self.weekend_workdays = getattr(self, "weekend_workdays", set())
366
366
 
367
367
  supported_languages = set(self.supported_languages)
368
368
  self.tr = (
Binary file
@@ -14,18 +14,17 @@
14
14
  #
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: Holidays 0.34\n"
17
+ "Project-Id-Version: Holidays 0.64\n"
18
18
  "POT-Creation-Date: 2023-02-15 20:06-0800\n"
19
- "PO-Revision-Date: 2023-09-27 18:49+0300\n"
20
- "Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
19
+ "PO-Revision-Date: 2024-12-26 19:18+0700\n"
20
+ "Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
21
21
  "Language-Team: Holidays Localization Team\n"
22
22
  "Language: be\n"
23
23
  "MIME-Version: 1.0\n"
24
24
  "Content-Type: text/plain; charset=UTF-8\n"
25
25
  "Content-Transfer-Encoding: 8bit\n"
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
26
  "Generated-By: Lingua 4.15.0\n"
28
- "X-Generator: Poedit 3.2.2\n"
27
+ "X-Generator: Poedit 3.5\n"
29
28
 
30
29
  #. Date format (see strftime() Format Codes)
31
30
  msgid "%d.%m.%Y"
@@ -36,36 +35,73 @@ msgstr ""
36
35
  msgid "Выходны (перанесены з %s)"
37
36
  msgstr ""
38
37
 
38
+ #. Constitution Day.
39
+ msgid "Дзень Канстытуцыі"
40
+ msgstr ""
41
+
42
+ #. Day of Unity of the Peoples of Belarus and Russia.
43
+ msgid "Дзень яднання народаў Беларусі і Расіі"
44
+ msgstr ""
45
+
46
+ #. Victory Day.
47
+ msgid "Дзень Перамогі"
48
+ msgstr ""
49
+
50
+ #. Day of the National Coat of Arms of the Republic of Belarus, the National
51
+ #. Flag of the Republic of
52
+ #. Belarus and the National Anthem of the Republic of Belarus.
53
+ msgid ""
54
+ "Дзень Дзяржаўнага сцяга, Дзяржаўнага герба і Дзяржаўнага гімна Рэспублікі "
55
+ "Беларусь"
56
+ msgstr ""
57
+
58
+ #. Independence Day of the Republic of Belarus (Day of the Republic).
59
+ msgid "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)"
60
+ msgstr ""
61
+
62
+ #. Day of People's Unity.
63
+ msgid "Дзень народнага адзінства"
64
+ msgstr ""
65
+
39
66
  #. New Year's Day.
40
67
  msgid "Новы год"
41
68
  msgstr ""
42
69
 
43
- #. Orthodox Christmas Day.
44
- msgid "Нараджэнне Хрыстова (праваслаўнае Раство)"
70
+ #. Day of the Fatherland's Defenders and the Armed Forces of the Republic of
71
+ #. Belarus.
72
+ msgid "Дзень абаронцаў Айчыны і Узброеных Сіл Рэспублікі Беларусь"
45
73
  msgstr ""
46
74
 
47
75
  #. Women's Day.
48
76
  msgid "Дзень жанчын"
49
77
  msgstr ""
50
78
 
51
- #. Radunitsa (Day of Rejoicing).
52
- msgid "Радаўніца"
53
- msgstr ""
54
-
55
79
  #. Labor Day.
56
80
  msgid "Свята працы"
57
81
  msgstr ""
58
82
 
59
- #. Victory Day.
60
- msgid "Дзень Перамогі"
83
+ #. October Revolution Day.
84
+ msgid "Дзень Кастрычніцкай рэвалюцыі"
61
85
  msgstr ""
62
86
 
63
- #. Independence Day.
64
- msgid "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)"
87
+ #. Orthodox Christmas Day.
88
+ msgid "Нараджэнне Хрыстова (праваслаўнае Раство)"
65
89
  msgstr ""
66
90
 
67
- #. October Revolution Day.
68
- msgid "Дзень Кастрычніцкай рэвалюцыі"
91
+ #. Catholic Easter.
92
+ msgid "Каталiцкi Вялiкдзень"
93
+ msgstr ""
94
+
95
+ #. Orthodox Easter.
96
+ msgid "Праваслаўны Вялiкдзень"
97
+ msgstr ""
98
+
99
+ #. Radunitsa (Day of Rejoicing).
100
+ msgid "Радаўніца"
101
+ msgstr ""
102
+
103
+ #. Dzyady (All Souls' Day).
104
+ msgid "Дзень памяці"
69
105
  msgstr ""
70
106
 
71
107
  #. Catholic Christmas Day.
Binary file
@@ -0,0 +1,102 @@
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/holidays
11
+ # License: MIT (see LICENSE file)
12
+ #
13
+ # Montenegro holidays.
14
+ #
15
+ msgid ""
16
+ msgstr ""
17
+ "Project-Id-Version: Holidays 0.64\n"
18
+ "POT-Creation-Date: 2024-11-09 15:23+0200\n"
19
+ "PO-Revision-Date: 2024-12-24 15:25+0200\n"
20
+ "Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
21
+ "Language-Team: Holidays Localization Team\n"
22
+ "Language: cnr\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: Lingva 5.0.4\n"
27
+ "X-Generator: Poedit 3.5\n"
28
+
29
+ #. %s (estimated).
30
+ #, c-format
31
+ msgid "%s (procijenjeno)"
32
+ msgstr ""
33
+
34
+ #. %s (observed).
35
+ #, c-format
36
+ msgid "%s (neradni dan)"
37
+ msgstr ""
38
+
39
+ #. %s (observed, estimated).
40
+ #, c-format
41
+ msgid "%s (neradni dan, procijenjeno)"
42
+ msgstr ""
43
+
44
+ #. New Year's Day.
45
+ msgid "Nova godina"
46
+ msgstr ""
47
+
48
+ #. Labor Day.
49
+ msgid "Praznik rada"
50
+ msgstr ""
51
+
52
+ #. Independence Day.
53
+ msgid "Dan nezavisnosti"
54
+ msgstr ""
55
+
56
+ #. Statehood Day.
57
+ msgid "Dan državnosti"
58
+ msgstr ""
59
+
60
+ #. Njegos Day.
61
+ msgid "Njegošev dan"
62
+ msgstr ""
63
+
64
+ #. Good Friday.
65
+ msgid "Veliki petak"
66
+ msgstr ""
67
+
68
+ #. Easter.
69
+ msgid "Uskrs"
70
+ msgstr ""
71
+
72
+ #. All Saints' Day.
73
+ msgid "Svi Sveti"
74
+ msgstr ""
75
+
76
+ #. Christmas Eve.
77
+ msgid "Badnji dan"
78
+ msgstr ""
79
+
80
+ #. Christmas.
81
+ msgid "Božić"
82
+ msgstr ""
83
+
84
+ #. Pesach.
85
+ msgid "Pasha"
86
+ msgstr ""
87
+
88
+ #. Yom Kippur.
89
+ msgid "Jom Kipur"
90
+ msgstr ""
91
+
92
+ #. Eid al-Fitr.
93
+ msgid "Ramazanski bajram"
94
+ msgstr ""
95
+
96
+ #. Eid al-Adha.
97
+ msgid "Kurbanski bajram"
98
+ msgstr ""
99
+
100
+ #. Ecological State Day.
101
+ msgid "Dan Ekološke države"
102
+ msgstr ""
Binary file
@@ -0,0 +1,98 @@
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/holidays
11
+ # License: MIT (see LICENSE file)
12
+ #
13
+ # Afghanistan holidays en_US localization.
14
+ #
15
+ msgid ""
16
+ msgstr ""
17
+ "Project-Id-Version: Holidays 0.64\n"
18
+ "POT-Creation-Date: 2024-12-24 13:40+0530\n"
19
+ "PO-Revision-Date: 2024-12-31 15:52+0700\n"
20
+ "Last-Translator: Prateekshit Jaiswal <prateekshitjaiswal73@gmail.com>\n"
21
+ "Language-Team: 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
+ "Generated-By: Lingva 5.0.4\n"
27
+ "X-Generator: Poedit 3.5\n"
28
+
29
+ #. Liberation Day.
30
+ msgid "روز آزادی"
31
+ msgstr "Liberation Day"
32
+
33
+ #. Nowruz.
34
+ msgid "نوروز"
35
+ msgstr "Nowruz"
36
+
37
+ #. International Workers' Day.
38
+ msgid "روز جهانی کارگر"
39
+ msgstr "International Workers' Day"
40
+
41
+ #. Martyrs' Day.
42
+ msgid "روز شهیدان"
43
+ msgstr "Martyrs' Day"
44
+
45
+ #. Day of Arafah.
46
+ msgid "روز عرفه"
47
+ msgstr "Day of Arafah"
48
+
49
+ #. Ashura.
50
+ msgid "عاشورا"
51
+ msgstr "Ashura"
52
+
53
+ #. Prophet's Birthday.
54
+ msgid "میلاد پیامبر"
55
+ msgstr "Prophet's Birthday"
56
+
57
+ #. First Day of Ramadan.
58
+ msgid "اول رمضان"
59
+ msgstr "First Day of Ramadan"
60
+
61
+ #. %s (estimated).
62
+ #, c-format
63
+ msgid "%s (برآورد شده)"
64
+ msgstr "%s (estimated)"
65
+
66
+ #. %s (observed).
67
+ #, c-format
68
+ msgid "%s (مشاهده شده)"
69
+ msgstr "%s (observed)"
70
+
71
+ #. %s (observed, estimated).
72
+ #, c-format
73
+ msgid "%s (مشاهده شده، برآورد شده)"
74
+ msgstr "%s (observed, estimated)"
75
+
76
+ #. Soviet Victory Day.
77
+ msgid "روز پیروزی شوروی"
78
+ msgstr "Soviet Victory Day"
79
+
80
+ #. Mojahedin's Victory Day.
81
+ msgid "روز پیروزی مجاهدین"
82
+ msgstr "Mojahedin's Victory Day"
83
+
84
+ #. Afghanistan Independence Day.
85
+ msgid "روز استقلال افغانستان"
86
+ msgstr "Afghanistan Independence Day"
87
+
88
+ #. Eid al-Fitr.
89
+ msgid "عید فطر"
90
+ msgstr "Eid al-Fitr"
91
+
92
+ #. Eid al-Adha.
93
+ msgid "عید قربانی"
94
+ msgstr "Eid al-Adha"
95
+
96
+ #. American Withdrawal Day.
97
+ msgid "روز خروج آمریکایی ها"
98
+ msgstr "American Withdrawal Day"
Binary file
@@ -14,18 +14,17 @@
14
14
  #
15
15
  msgid ""
16
16
  msgstr ""
17
- "Project-Id-Version: Holidays 0.34\n"
17
+ "Project-Id-Version: Holidays 0.64\n"
18
18
  "POT-Creation-Date: 2023-02-15 20:06-0800\n"
19
- "PO-Revision-Date: 2023-09-27 18:50+0300\n"
20
- "Last-Translator: ~Jhellico <jhellico@gmail.com>\n"
19
+ "PO-Revision-Date: 2024-12-26 19:18+0700\n"
20
+ "Last-Translator: PPsyrius <ppsyrius@ppsyrius.dev>\n"
21
21
  "Language-Team: Holidays Localization Team\n"
22
22
  "Language: en_US\n"
23
23
  "MIME-Version: 1.0\n"
24
24
  "Content-Type: text/plain; charset=UTF-8\n"
25
25
  "Content-Transfer-Encoding: 8bit\n"
26
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
27
26
  "Generated-By: Lingua 4.15.0\n"
28
- "X-Generator: Poedit 3.2.2\n"
27
+ "X-Generator: Poedit 3.5\n"
29
28
 
30
29
  #. Date format (see strftime() Format Codes)
31
30
  msgid "%d.%m.%Y"
@@ -36,38 +35,80 @@ msgstr "%m/%d/%Y"
36
35
  msgid "Выходны (перанесены з %s)"
37
36
  msgstr "Day off (substituted from %s)"
38
37
 
38
+ #. Constitution Day.
39
+ msgid "Дзень Канстытуцыі"
40
+ msgstr "Constitution Day"
41
+
42
+ #. Day of Unity of the Peoples of Belarus and Russia.
43
+ msgid "Дзень яднання народаў Беларусі і Расіі"
44
+ msgstr "Day of Unity of the Peoples of Belarus and Russia"
45
+
46
+ #. Victory Day.
47
+ msgid "Дзень Перамогі"
48
+ msgstr "Victory Day"
49
+
50
+ #. Day of the National Coat of Arms of the Republic of Belarus, the National
51
+ #. Flag of the Republic of
52
+ #. Belarus and the National Anthem of the Republic of Belarus.
53
+ msgid ""
54
+ "Дзень Дзяржаўнага сцяга, Дзяржаўнага герба і Дзяржаўнага гімна Рэспублікі "
55
+ "Беларусь"
56
+ msgstr ""
57
+ "Day of the National Coat of Arms of the Republic of Belarus, the National "
58
+ "Flag of the Republic of Belarus and the National Anthem of the Republic of "
59
+ "Belarus"
60
+
61
+ #. Independence Day of the Republic of Belarus (Day of the Republic).
62
+ msgid "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)"
63
+ msgstr "Independence Day of the Republic of Belarus (Day of the Republic)"
64
+
65
+ #. Day of People's Unity.
66
+ msgid "Дзень народнага адзінства"
67
+ msgstr "Day of People's Unity"
68
+
39
69
  #. New Year's Day.
40
70
  msgid "Новы год"
41
71
  msgstr "New Year's Day"
42
72
 
43
- #. Orthodox Christmas Day.
44
- msgid "Нараджэнне Хрыстова (праваслаўнае Раство)"
45
- msgstr "Orthodox Christmas Day"
73
+ #. Day of the Fatherland's Defenders and the Armed Forces of the Republic of
74
+ #. Belarus.
75
+ msgid "Дзень абаронцаў Айчыны і Узброеных Сіл Рэспублікі Беларусь"
76
+ msgstr ""
77
+ "Day of the Fatherland's Defenders and the Armed Forces of the Republic of "
78
+ "Belarus"
46
79
 
47
80
  #. Women's Day.
48
81
  msgid "Дзень жанчын"
49
82
  msgstr "Women's Day"
50
83
 
51
- #. Radunitsa (Day of Rejoicing).
52
- msgid "Радаўніца"
53
- msgstr "Radunitsa"
54
-
55
84
  #. Labor Day.
56
85
  msgid "Свята працы"
57
86
  msgstr "Labor Day"
58
87
 
59
- #. Victory Day.
60
- msgid "Дзень Перамогі"
61
- msgstr "Victory Day"
62
-
63
- #. Independence Day.
64
- msgid "Дзень Незалежнасці Рэспублікі Беларусь (Дзень Рэспублікі)"
65
- msgstr "Independence Day (Republic Day)"
66
-
67
88
  #. October Revolution Day.
68
89
  msgid "Дзень Кастрычніцкай рэвалюцыі"
69
90
  msgstr "October Revolution Day"
70
91
 
92
+ #. Orthodox Christmas Day.
93
+ msgid "Нараджэнне Хрыстова (праваслаўнае Раство)"
94
+ msgstr "Orthodox Christmas Day"
95
+
96
+ #. Catholic Easter.
97
+ msgid "Каталiцкi Вялiкдзень"
98
+ msgstr "Catholic Easter"
99
+
100
+ #. Orthodox Easter.
101
+ msgid "Праваслаўны Вялiкдзень"
102
+ msgstr "Orthodox Easter"
103
+
104
+ #. Radunitsa (Day of Rejoicing).
105
+ msgid "Радаўніца"
106
+ msgstr "Radunitsa (Day of Rejoicing)"
107
+
108
+ #. Dzyady (All Souls' Day).
109
+ msgid "Дзень памяці"
110
+ msgstr "Dzyady (All Souls' Day)"
111
+
71
112
  #. Catholic Christmas Day.
72
113
  msgid "Нараджэнне Хрыстова (каталіцкае Раство)"
73
114
  msgstr "Catholic Christmas Day"
Binary file