date-holidays 3.28.0 → 3.30.0

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.
@@ -0,0 +1,74 @@
1
+ import { defineConfig, globalIgnores } from 'eslint/config'
2
+ import js from '@eslint/js'
3
+ import globals from 'globals'
4
+ import { flatConfigs as importX } from 'eslint-plugin-import-x'
5
+ import n from 'eslint-plugin-n'
6
+ import promise from 'eslint-plugin-promise'
7
+ import { configs as ymlConfigs } from 'eslint-plugin-yml'
8
+
9
+ export default defineConfig([
10
+ globalIgnores([
11
+ 'coverage/**',
12
+ 'dist/**',
13
+ 'lib/**',
14
+ 'src/data.js',
15
+ 'pnpm-lock.yaml'
16
+ ]),
17
+ {
18
+ files: ['**/*.js', '**/*.mjs'],
19
+ languageOptions: {
20
+ globals: {
21
+ ...globals.browser,
22
+ ...globals.node,
23
+ ...globals.mocha
24
+ },
25
+ ecmaVersion: 'latest',
26
+ sourceType: 'module'
27
+ },
28
+ extends: [
29
+ js.configs.recommended,
30
+ n.configs['flat/recommended'],
31
+ promise.configs['flat/recommended'],
32
+ importX.recommended
33
+ ]
34
+ },
35
+ {
36
+ files: ['**/*.cjs'],
37
+ languageOptions: {
38
+ globals: {
39
+ ...globals.node,
40
+ ...globals.mocha
41
+ },
42
+ ecmaVersion: 'latest',
43
+ sourceType: 'commonjs'
44
+ },
45
+ extends: [
46
+ js.configs.recommended,
47
+ n.configs['flat/recommended'],
48
+ promise.configs['flat/recommended'],
49
+ importX.recommended
50
+ ],
51
+ rules: {
52
+ 'n/no-unsupported-features/es-syntax': 'off'
53
+ }
54
+ },
55
+ {
56
+ // Tooling and example files follow different constraints than runtime code.
57
+ // Relax strict n/* checks here to avoid non-actionable lint noise.
58
+ files: ['eslint.config.mjs', 'examples/**', 'scripts/**'],
59
+ rules: {
60
+ 'n/no-unpublished-import': 'off',
61
+ 'n/no-missing-require': 'off',
62
+ 'n/no-unsupported-features/es-syntax': 'off',
63
+ 'n/no-process-exit': 'off',
64
+ 'n/hashbang': 'off'
65
+ }
66
+ },
67
+ {
68
+ files: ['**/*.yaml', '**/*.yml'],
69
+ extends: [ymlConfigs['flat/standard']],
70
+ rules: {
71
+ 'yml/plain-scalar': 'off'
72
+ }
73
+ }
74
+ ])
package/lib/data.cjs CHANGED
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const data = {
6
- "version": "2026-05-03",
6
+ "version": "2026-05-20",
7
7
  "license": "CC-BY-SA-3",
8
8
  "holidays": {
9
9
  "AD": {
@@ -750,8 +750,8 @@ const data = {
750
750
  },
751
751
  "05-25": {
752
752
  "name": {
753
- "en": "Day of the First National Government",
754
- "es": "Primer Gobierno Patrio"
753
+ "en": "Day of the May Revolution",
754
+ "es": "Día de la Revolución de Mayo"
755
755
  }
756
756
  },
757
757
  "06-10": {
@@ -778,10 +778,10 @@ const data = {
778
778
  }
779
779
  ]
780
780
  },
781
- "06-17 if tuesday,wednesday then previous monday if thursday then next monday": {
781
+ "06-17 if tuesday,wednesday then previous monday if thursday,friday then next monday": {
782
782
  "name": {
783
783
  "en": "Anniversary of the Passing to Immortality of General Martín Miguel de Güemes",
784
- "es": "Día Paso a la Inmortalidad del General Martín Miguel de Güemes"
784
+ "es": "Paso a la Inmortalidad del General Don Martín Miguel de Güemes"
785
785
  },
786
786
  "active": [
787
787
  {
@@ -789,7 +789,7 @@ const data = {
789
789
  }
790
790
  ]
791
791
  },
792
- "06-20": {
792
+ "06-20 #1": {
793
793
  "name": {
794
794
  "en": "National Flag Day",
795
795
  "es": "Día de la Bandera"
@@ -802,7 +802,15 @@ const data = {
802
802
  {
803
803
  "from": "1991-12-18",
804
804
  "to": "1995-01-10"
805
- },
805
+ }
806
+ ]
807
+ },
808
+ "06-20 #2": {
809
+ "name": {
810
+ "en": "Anniversary of the Passing to Immortality of General Manuel Belgrano",
811
+ "es": "Paso a la Inmortalidad del General D. Manuel Belgrano"
812
+ },
813
+ "active": [
806
814
  {
807
815
  "from": "2010-11-03"
808
816
  }
@@ -822,8 +830,8 @@ const data = {
822
830
  },
823
831
  "3rd monday in June": {
824
832
  "name": {
825
- "en": "National Flag Day",
826
- "es": "Día de la Bandera"
833
+ "en": "Anniversary of the Passing to Immortality of General Manuel Belgrano",
834
+ "es": "Paso a la Inmortalidad del General D. Manuel Belgrano"
827
835
  },
828
836
  "active": [
829
837
  {
@@ -984,7 +992,10 @@ const data = {
984
992
  ]
985
993
  },
986
994
  "12-08": {
987
- "_name": "12-08",
995
+ "name": {
996
+ "en": "Immaculate Conception of Mary",
997
+ "es": "Inmaculada Concepción de María"
998
+ },
988
999
  "active": [
989
1000
  {
990
1001
  "from": "1995-01-11"
@@ -1038,6 +1049,27 @@ const data = {
1038
1049
  "es": "Feriado Nacional de los Campeones Mundiales de Fútbol en la Copa Mundial de la FIFA CATAR 2022"
1039
1050
  }
1040
1051
  },
1052
+ "2026-03-23": {
1053
+ "name": {
1054
+ "en": "Tourism Purposes Non-Working Day",
1055
+ "es": "Día no laborable con fines turísticos"
1056
+ },
1057
+ "type": "optional"
1058
+ },
1059
+ "2026-07-10": {
1060
+ "name": {
1061
+ "en": "Tourism Purposes Non-Working Day",
1062
+ "es": "Día no laborable con fines turísticos"
1063
+ },
1064
+ "type": "optional"
1065
+ },
1066
+ "2026-12-07": {
1067
+ "name": {
1068
+ "en": "Tourism Purposes Non-Working Day",
1069
+ "es": "Día no laborable con fines turísticos"
1070
+ },
1071
+ "type": "optional"
1072
+ },
1041
1073
  "1980-10-22": {
1042
1074
  "name": {
1043
1075
  "en": "National Census 1980",
@@ -1373,7 +1405,9 @@ const data = {
1373
1405
  "05-04": {
1374
1406
  "name": {
1375
1407
  "de-at": "Florian"
1376
- }
1408
+ },
1409
+ "type": "observance",
1410
+ "note": "Da der St. Florian aber in Oberösterreich eine besondere Bedeutung als Patron einhält, gilt er dort als Landesfeiertag und ist offiziell schulfrei. Für Arbeitnehmer:innen gilt er jedoch als normaler Arbeitstag."
1377
1411
  }
1378
1412
  }
1379
1413
  },
@@ -5004,9 +5038,14 @@ const data = {
5004
5038
  "01-01": {
5005
5039
  "_name": "01-01"
5006
5040
  },
5041
+ "01-15 if sunday then next monday": {
5042
+ "name": {
5043
+ "en": "George Price Day"
5044
+ }
5045
+ },
5007
5046
  "03-09 if friday,saturday,sunday then next monday if tuesday,wednesday,thursday then previous monday": {
5008
5047
  "name": {
5009
- "en": "Baron Bliss Day"
5048
+ "en": "National Heroes and Benefactor Day"
5010
5049
  }
5011
5050
  },
5012
5051
  "easter -2": {
@@ -5025,14 +5064,14 @@ const data = {
5025
5064
  "05-01 if sunday then next monday": {
5026
5065
  "_name": "05-01"
5027
5066
  },
5028
- "05-24 if friday,saturday,sunday then next monday if tuesday,wednesday,thursday then previous monday": {
5067
+ "08-01 if sunday then next monday": {
5029
5068
  "name": {
5030
- "en": "Commonwealth Day, Sovereign's Day"
5069
+ "en": "Emancipation Day"
5031
5070
  }
5032
5071
  },
5033
5072
  "09-10 if sunday then next monday": {
5034
5073
  "name": {
5035
- "en": "Saint George's Caye Day, National Day"
5074
+ "en": "St. George's Caye Day"
5036
5075
  }
5037
5076
  },
5038
5077
  "09-21 if sunday then next monday": {
@@ -5040,7 +5079,7 @@ const data = {
5040
5079
  },
5041
5080
  "10-12 if friday,saturday,sunday then next monday if tuesday,wednesday,thursday then previous monday": {
5042
5081
  "name": {
5043
- "en": "Day of the Americas"
5082
+ "en": "Indigenous People’s Resistance Day"
5044
5083
  }
5045
5084
  },
5046
5085
  "11-19 if sunday then next monday": {
@@ -8385,7 +8424,8 @@ const data = {
8385
8424
  "_name": "easter 60"
8386
8425
  },
8387
8426
  "08-15": {
8388
- "_name": "08-15"
8427
+ "_name": "08-15",
8428
+ "type": "observance"
8389
8429
  },
8390
8430
  "11-01": {
8391
8431
  "_name": "11-01"
@@ -8407,6 +8447,18 @@ const data = {
8407
8447
  }
8408
8448
  }
8409
8449
  },
8450
+ "KATH": {
8451
+ "names": {
8452
+ "de": "Überwiegend katholische Gemeinden",
8453
+ "en": "Predominantly catholic communities"
8454
+ },
8455
+ "days": {
8456
+ "08-15": {
8457
+ "_name": "08-15",
8458
+ "type": "public"
8459
+ }
8460
+ }
8461
+ },
8410
8462
  "EVANG": {
8411
8463
  "names": {
8412
8464
  "de": "Überwiegend evangelische Gemeinden",
@@ -8456,7 +8508,7 @@ const data = {
8456
8508
  }
8457
8509
  },
8458
8510
  "MV": {
8459
- "name": "Mecklenburg Vorpommern",
8511
+ "name": "Mecklenburg-Vorpommern",
8460
8512
  "days": {
8461
8513
  "03-08 since 2023": {
8462
8514
  "_name": "03-08"
@@ -14894,7 +14946,7 @@ const data = {
14894
14946
  "name": "Piedmont",
14895
14947
  "regions": {
14896
14948
  "TO": {
14897
- "name": {
14949
+ "names": {
14898
14950
  "it": "Torino",
14899
14951
  "en": "Turin"
14900
14952
  },
@@ -15022,6 +15074,11 @@ const data = {
15022
15074
  "name": {
15023
15075
  "en": "Liberation Day"
15024
15076
  }
15077
+ },
15078
+ "1st monday before 09-01": {
15079
+ "name": {
15080
+ "en": "Summer Bank Holiday"
15081
+ }
15025
15082
  }
15026
15083
  }
15027
15084
  },
@@ -16044,6 +16101,167 @@ const data = {
16044
16101
  }
16045
16102
  }
16046
16103
  },
16104
+ "KZ": {
16105
+ "names": {
16106
+ "kk": "Қазақстан",
16107
+ "ru": "Казахстан",
16108
+ "en": "Kazakhstan"
16109
+ },
16110
+ "dayoff": "sunday",
16111
+ "langs": [
16112
+ "kk",
16113
+ "ru"
16114
+ ],
16115
+ "zones": [
16116
+ "Asia/Almaty",
16117
+ "Asia/Qyzylorda",
16118
+ "Asia/Aqtobe",
16119
+ "Asia/Aqtau",
16120
+ "Asia/Atyrau",
16121
+ "Asia/Oral"
16122
+ ],
16123
+ "days": {
16124
+ "01-01 and if saturday then next monday if sunday then next tuesday": {
16125
+ "substitute": true,
16126
+ "_name": "01-01"
16127
+ },
16128
+ "01-02 and if saturday then next monday if sunday then next tuesday": {
16129
+ "substitute": true,
16130
+ "_name": "01-01"
16131
+ },
16132
+ "01-07": {
16133
+ "name": {
16134
+ "kk": "Рождество Христово",
16135
+ "ru": "Рождество Христово",
16136
+ "en": "Orthodox Christmas"
16137
+ }
16138
+ },
16139
+ "03-08 and if saturday,sunday then next monday": {
16140
+ "substitute": true,
16141
+ "_name": "03-08"
16142
+ },
16143
+ "03-15 and if saturday,sunday then next monday since 2026": {
16144
+ "substitute": true,
16145
+ "name": {
16146
+ "kk": "Конституция күні",
16147
+ "ru": "День Конституции",
16148
+ "en": "Constitution Day"
16149
+ }
16150
+ },
16151
+ "03-21 and if saturday then next monday if sunday then next tuesday": {
16152
+ "substitute": true,
16153
+ "name": {
16154
+ "kk": "Наурыз мейрамы",
16155
+ "ru": "Наурыз мейрамы",
16156
+ "en": "Nauryz"
16157
+ }
16158
+ },
16159
+ "03-22 and if saturday then next monday if sunday then next tuesday": {
16160
+ "substitute": true,
16161
+ "name": {
16162
+ "kk": "Наурыз мейрамы",
16163
+ "ru": "Наурыз мейрамы",
16164
+ "en": "Nauryz"
16165
+ }
16166
+ },
16167
+ "03-23 and if saturday then next monday if sunday then next tuesday": {
16168
+ "substitute": true,
16169
+ "name": {
16170
+ "kk": "Наурыз мейрамы",
16171
+ "ru": "Наурыз мейрамы",
16172
+ "en": "Nauryz"
16173
+ }
16174
+ },
16175
+ "05-01 and if saturday,sunday then next monday": {
16176
+ "substitute": true,
16177
+ "name": {
16178
+ "kk": "Қазақстан халқының бірлігі күні",
16179
+ "ru": "День единства народа Казахстана",
16180
+ "en": "People's Unity Day"
16181
+ }
16182
+ },
16183
+ "05-07 and if saturday,sunday then next monday since 2013": {
16184
+ "substitute": true,
16185
+ "name": {
16186
+ "kk": "Отан Қорғаушы күні",
16187
+ "ru": "День Защитника Отечества",
16188
+ "en": "Defender of the Fatherland Day"
16189
+ }
16190
+ },
16191
+ "05-09 and if saturday,sunday then next monday": {
16192
+ "substitute": true,
16193
+ "name": {
16194
+ "kk": "Жеңіс күні",
16195
+ "ru": "День Победы",
16196
+ "en": "Victory Day"
16197
+ }
16198
+ },
16199
+ "07-06 and if saturday,sunday then next monday": {
16200
+ "substitute": true,
16201
+ "name": {
16202
+ "kk": "Астана күні",
16203
+ "ru": "День столицы",
16204
+ "en": "Capital City Day"
16205
+ }
16206
+ },
16207
+ "08-30 and if saturday,sunday then next monday prior to 2026": {
16208
+ "substitute": true,
16209
+ "name": {
16210
+ "kk": "Конституция күні",
16211
+ "ru": "День Конституции",
16212
+ "en": "Constitution Day"
16213
+ }
16214
+ },
16215
+ "10-25 and if saturday,sunday then next monday": {
16216
+ "substitute": true,
16217
+ "name": {
16218
+ "kk": "Республика күні",
16219
+ "ru": "День Республики",
16220
+ "en": "Republic Day"
16221
+ },
16222
+ "active": [
16223
+ {
16224
+ "from": "1995-01-01",
16225
+ "to": "2009-12-31"
16226
+ },
16227
+ {
16228
+ "from": "2022-01-01"
16229
+ }
16230
+ ]
16231
+ },
16232
+ "12-01 and if saturday,sunday then next monday since 2012 and prior to 2022": {
16233
+ "substitute": true,
16234
+ "name": {
16235
+ "kk": "Тұңғыш Президент күні",
16236
+ "ru": "День Первого Президента",
16237
+ "en": "First President's Day"
16238
+ }
16239
+ },
16240
+ "12-16 and if saturday then next monday if sunday then next tuesday": {
16241
+ "substitute": true,
16242
+ "name": {
16243
+ "kk": "Тәуелсіздік күні",
16244
+ "ru": "День независимости",
16245
+ "en": "Independence Day"
16246
+ }
16247
+ },
16248
+ "12-17 and if saturday then next monday if sunday then next tuesday prior to 2022": {
16249
+ "substitute": true,
16250
+ "name": {
16251
+ "kk": "Тәуелсіздік күні",
16252
+ "ru": "День независимости",
16253
+ "en": "Independence Day"
16254
+ }
16255
+ },
16256
+ "10 Dhu al-Hijjah": {
16257
+ "name": {
16258
+ "kk": "Құрбан айт",
16259
+ "ru": "Курбан-айт",
16260
+ "en": "Eid al-Adha"
16261
+ }
16262
+ }
16263
+ }
16264
+ },
16047
16265
  "LC": {
16048
16266
  "names": {
16049
16267
  "en": "St. Lucia"
@@ -19608,6 +19826,70 @@ const data = {
19608
19826
  }
19609
19827
  }
19610
19828
  },
19829
+ "NF": {
19830
+ "names": {
19831
+ "en": "Norfolk Island"
19832
+ },
19833
+ "dayoff": "sunday",
19834
+ "langs": [
19835
+ "en"
19836
+ ],
19837
+ "zones": [
19838
+ "Pacific/Norfolk"
19839
+ ],
19840
+ "_days": "AU",
19841
+ "days": {
19842
+ "2nd monday in March": false,
19843
+ "03-06 and if saturday,sunday then next monday": {
19844
+ "name": {
19845
+ "en": "Foundation Day"
19846
+ },
19847
+ "type": "public"
19848
+ },
19849
+ "easter": false,
19850
+ "04-25 if sunday then next monday": false,
19851
+ "2020-04-27": false,
19852
+ "04-25": {
19853
+ "name": {
19854
+ "en": "Anzac Day"
19855
+ }
19856
+ },
19857
+ "easter -1": false,
19858
+ "monday after 05-27": false,
19859
+ "06-08 if saturday,sunday then next monday": {
19860
+ "substitute": true,
19861
+ "name": {
19862
+ "en": "Anniversary (Bounty) Day"
19863
+ },
19864
+ "type": "public"
19865
+ },
19866
+ "2nd monday in June": false,
19867
+ "Monday after 2nd saturday in June prior to 2022-09-09": {
19868
+ "substitute": true,
19869
+ "name": {
19870
+ "en": "Queen's Birthday"
19871
+ }
19872
+ },
19873
+ "Monday after 2nd saturday in June since 2022-09-09 if is public holiday then next monday": {
19874
+ "name": {
19875
+ "en": "King's Birthday"
19876
+ }
19877
+ },
19878
+ "1st monday in October": false,
19879
+ "2nd monday in October": {
19880
+ "name": {
19881
+ "en": "Norfolk Island Agricultural Show"
19882
+ },
19883
+ "type": "public"
19884
+ },
19885
+ "Wednesday before 12-01": {
19886
+ "name": {
19887
+ "en": "Thanksgiving Day"
19888
+ },
19889
+ "type": "public"
19890
+ }
19891
+ }
19892
+ },
19611
19893
  "NG": {
19612
19894
  "names": {
19613
19895
  "en": "Nigeria"
@@ -21156,6 +21438,98 @@ const data = {
21156
21438
  }
21157
21439
  }
21158
21440
  },
21441
+ "PK": {
21442
+ "names": {
21443
+ "en": "Pakistan",
21444
+ "ur": "پاکستان"
21445
+ },
21446
+ "langs": [
21447
+ "ur"
21448
+ ],
21449
+ "zones": [
21450
+ "Asia/Karachi"
21451
+ ],
21452
+ "dayoff": "sunday",
21453
+ "days": {
21454
+ "02-05": {
21455
+ "name": {
21456
+ "en": "Kashmir Day",
21457
+ "ur": "یومِ یکجہتیِ کشمیر"
21458
+ }
21459
+ },
21460
+ "03-23": {
21461
+ "name": {
21462
+ "en": "Pakistan Day",
21463
+ "ur": "یومِ پاکستان"
21464
+ }
21465
+ },
21466
+ "05-01": {
21467
+ "_name": "05-01"
21468
+ },
21469
+ "05-28": {
21470
+ "name": {
21471
+ "en": "Youm-e-Takbeer",
21472
+ "ur": "یومِ تکبیر"
21473
+ }
21474
+ },
21475
+ "08-14": {
21476
+ "name": {
21477
+ "en": "Independence Day",
21478
+ "ur": "یومِ آزادی"
21479
+ }
21480
+ },
21481
+ "11-09": {
21482
+ "name": {
21483
+ "en": "Iqbal Day",
21484
+ "ur": "یومِ اقبال"
21485
+ }
21486
+ },
21487
+ "12-25": {
21488
+ "name": {
21489
+ "en": "Quaid-e-Azam Day",
21490
+ "ur": "یومِ قائدِاعظم"
21491
+ }
21492
+ },
21493
+ "9 Muharram P2D": {
21494
+ "name": {
21495
+ "en": "Ashura",
21496
+ "ur": "عاشورہ"
21497
+ }
21498
+ },
21499
+ "12 Rabi al-awwal": {
21500
+ "_name": "12 Rabi al-awwal"
21501
+ },
21502
+ "1 Shawwal P3D": {
21503
+ "_name": "1 Shawwal"
21504
+ },
21505
+ "10 Dhu al-Hijjah P3D": {
21506
+ "_name": "10 Dhu al-Hijjah"
21507
+ }
21508
+ },
21509
+ "states": {
21510
+ "BA": {
21511
+ "name": "Balochistan"
21512
+ },
21513
+ "GB": {
21514
+ "name": "Gilgit-Baltistan"
21515
+ },
21516
+ "IS": {
21517
+ "name": "Islamabad"
21518
+ },
21519
+ "JK": {
21520
+ "name": "Azad Kashmir"
21521
+ },
21522
+ "KP": {
21523
+ "name": "Khyber Pakhtunkhwa"
21524
+ },
21525
+ "PB": {
21526
+ "name": "Punjab"
21527
+ },
21528
+ "SD": {
21529
+ "name": "Sindh"
21530
+ }
21531
+ }
21532
+ },
21159
21533
  "PL": {
21160
21534
  "names": {
21161
21535
  "pl": "Polska",
@@ -25392,12 +25766,34 @@ const data = {
25392
25766
  "03-08 and if saturday, sunday then next monday": {
25393
25767
  "_name": "03-08"
25394
25768
  },
25395
- "orthodox and if sunday then next monday": {
25769
+ "orthodox and if sunday then next monday since 1995 and prior to 1998": {
25770
+ "_name": "orthodox",
25771
+ "substitute": true
25772
+ },
25773
+ "orthodox since 1991 and prior to 1995": {
25396
25774
  "_name": "orthodox"
25397
25775
  },
25398
- "orthodox 49 and if sunday then next monday": {
25776
+ "orthodox since 1998 and prior to 2000": {
25777
+ "_name": "orthodox"
25778
+ },
25779
+ "orthodox and if sunday then next monday since 2000": {
25780
+ "_name": "orthodox",
25781
+ "substitute": true
25782
+ },
25783
+ "orthodox 49 and if sunday then next monday since 1995 and prior to 1998": {
25784
+ "_name": "easter 49",
25785
+ "substitute": true
25786
+ },
25787
+ "orthodox 49 since 1991 and prior to 1995": {
25788
+ "_name": "easter 49"
25789
+ },
25790
+ "orthodox 49 since 1998 and prior to 2000": {
25399
25791
  "_name": "easter 49"
25400
25792
  },
25793
+ "orthodox 49 and if sunday then next monday since 2000": {
25794
+ "_name": "easter 49",
25795
+ "substitute": true
25796
+ },
25401
25797
  "05-01 and if saturday, sunday then next tuesday": {
25402
25798
  "_name": "05-01",
25403
25799
  "substitute": true
@@ -28466,6 +28862,7 @@ const data = {
28466
28862
  "it": "Capodanno",
28467
28863
  "is": "Nýársdagur",
28468
28864
  "jp": "元日",
28865
+ "kk": "Жаңа жыл",
28469
28866
  "kl": "ukiortaaq",
28470
28867
  "ko": "신정",
28471
28868
  "lb": "Neijoerschdag",
@@ -28557,6 +28954,7 @@ const data = {
28557
28954
  "ge": "ქალთა საერთაშორისო დღე",
28558
28955
  "hu": "Nemzetközi nőnap",
28559
28956
  "hy": "Կանանց տոն",
28957
+ "kk": "Халықаралық әйелдер күні",
28560
28958
  "lb": "Internationale Fraendag",
28561
28959
  "nl": "Internationale Vrouwendag",
28562
28960
  "no": "Kvinnedagen",