holidays 0.9.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.
- data/LICENSE +21 -0
- data/README +76 -0
- data/REFERENCES +16 -0
- data/data/SYNTAX +111 -0
- data/data/au.yaml +106 -0
- data/data/build_defs.rb +152 -0
- data/data/ca.yaml +141 -0
- data/data/de.yaml +115 -0
- data/data/dk.yaml +117 -0
- data/data/es.yaml +161 -0
- data/data/fr.yaml +70 -0
- data/data/gb.yaml +106 -0
- data/data/ie.yaml +58 -0
- data/data/index.yaml +21 -0
- data/data/is.yaml +136 -0
- data/data/it.yaml +66 -0
- data/data/mx.yaml +106 -0
- data/data/nl.yaml +67 -0
- data/data/north_america_informal.yaml +49 -0
- data/data/pt.yaml +85 -0
- data/data/se.yaml +91 -0
- data/data/united_nations.yaml +188 -0
- data/data/us.yaml +81 -0
- data/data/za.yaml +78 -0
- data/lib/holidays.rb +404 -0
- data/lib/holidays/MANIFEST +23 -0
- data/lib/holidays/au.rb +41 -0
- data/lib/holidays/ca.rb +68 -0
- data/lib/holidays/de.rb +52 -0
- data/lib/holidays/dk.rb +47 -0
- data/lib/holidays/es.rb +52 -0
- data/lib/holidays/europe.rb +215 -0
- data/lib/holidays/fr.rb +36 -0
- data/lib/holidays/gb.rb +40 -0
- data/lib/holidays/ie.rb +32 -0
- data/lib/holidays/is.rb +61 -0
- data/lib/holidays/it.rb +35 -0
- data/lib/holidays/mx.rb +51 -0
- data/lib/holidays/nl.rb +36 -0
- data/lib/holidays/north_america.rb +107 -0
- data/lib/holidays/pt.rb +52 -0
- data/lib/holidays/scandinavia.rb +114 -0
- data/lib/holidays/se.rb +52 -0
- data/lib/holidays/united_nations.rb +24 -0
- data/lib/holidays/us.rb +48 -0
- data/lib/holidays/za.rb +35 -0
- data/test/defs/test_defs_au.rb +36 -0
- data/test/defs/test_defs_ca.rb +29 -0
- data/test/defs/test_defs_de.rb +46 -0
- data/test/defs/test_defs_dk.rb +30 -0
- data/test/defs/test_defs_es.rb +57 -0
- data/test/defs/test_defs_europe.rb +240 -0
- data/test/defs/test_defs_fr.rb +26 -0
- data/test/defs/test_defs_gb.rb +36 -0
- data/test/defs/test_defs_ie.rb +21 -0
- data/test/defs/test_defs_is.rb +33 -0
- data/test/defs/test_defs_it.rb +25 -0
- data/test/defs/test_defs_mx.rb +22 -0
- data/test/defs/test_defs_nl.rb +24 -0
- data/test/defs/test_defs_north_america.rb +54 -0
- data/test/defs/test_defs_pt.rb +32 -0
- data/test/defs/test_defs_scandinavia.rb +75 -0
- data/test/defs/test_defs_se.rb +32 -0
- data/test/defs/test_defs_us.rb +36 -0
- data/test/defs/test_defs_za.rb +25 -0
- metadata +118 -0
data/data/mx.yaml
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
# Mexican holiday definitions for the Ruby Holiday gem.
|
2
|
+
# Updated 2008-12-05.
|
3
|
+
# Sources:
|
4
|
+
# - http://www.britishembassy.gov.uk/servlet/Front?pagename=OpenMarket/Xcelerate/ShowPage&c=Page&cid=1125561634963
|
5
|
+
# - http://www.usembassy-mexico.gov/eng/holidays.html
|
6
|
+
---
|
7
|
+
months:
|
8
|
+
1:
|
9
|
+
- name: Año nuevo
|
10
|
+
regions: [mx]
|
11
|
+
mday: 1
|
12
|
+
- name: Dia de los Santos Reyes
|
13
|
+
regions: [mx]
|
14
|
+
mday: 6
|
15
|
+
2:
|
16
|
+
- name: Día de la Constitución
|
17
|
+
week: 1
|
18
|
+
regions: [mx]
|
19
|
+
wday: 1
|
20
|
+
3:
|
21
|
+
- name: Natalicio de Benito Juárez
|
22
|
+
week: 3
|
23
|
+
regions: [mx]
|
24
|
+
wday: 1
|
25
|
+
4:
|
26
|
+
- name: Día del Niño
|
27
|
+
regions: [mx]
|
28
|
+
mday: 30
|
29
|
+
type: informal
|
30
|
+
5:
|
31
|
+
- name: Día del Trabajo
|
32
|
+
regions: [mx]
|
33
|
+
mday: 1
|
34
|
+
- name: Cinco de Mayo
|
35
|
+
regions: [mx]
|
36
|
+
mday: 5
|
37
|
+
type: informal
|
38
|
+
- name: La Batalla de Puebla
|
39
|
+
regions: [mx_pue]
|
40
|
+
mday: 5
|
41
|
+
- name: Día de la Madre
|
42
|
+
regions: [mx]
|
43
|
+
mday: 10
|
44
|
+
type: informal
|
45
|
+
- name: Día del Maestro
|
46
|
+
regions: [mx]
|
47
|
+
mday: 15
|
48
|
+
type: informal
|
49
|
+
6:
|
50
|
+
- name: Día del Padre
|
51
|
+
regions: [mx]
|
52
|
+
wday: 0
|
53
|
+
week: 3
|
54
|
+
type: informal
|
55
|
+
9:
|
56
|
+
- name: Grito de Dolores
|
57
|
+
regions: [mx]
|
58
|
+
mday: 15
|
59
|
+
- name: Día de la Independencia
|
60
|
+
regions: [mx]
|
61
|
+
mday: 16
|
62
|
+
10:
|
63
|
+
- name: Día de la Raza
|
64
|
+
regions: [mx]
|
65
|
+
mday: 12
|
66
|
+
type: informal
|
67
|
+
11:
|
68
|
+
- name: Todos los Santos
|
69
|
+
regions: [mx]
|
70
|
+
mday: 1
|
71
|
+
type: informal
|
72
|
+
- name: Los Fieles Difuntos
|
73
|
+
regions: [mx]
|
74
|
+
mday: 2
|
75
|
+
type: informal
|
76
|
+
- name: Día de la Revolución
|
77
|
+
week: 3
|
78
|
+
regions: [mx]
|
79
|
+
wday: 1
|
80
|
+
12:
|
81
|
+
- name: Día de la Virgen de Guadalupe
|
82
|
+
regions: [mx]
|
83
|
+
mday: 12
|
84
|
+
type: informal
|
85
|
+
- name: Nochebuena
|
86
|
+
regions: [mx]
|
87
|
+
mday: 24
|
88
|
+
type: informal
|
89
|
+
- name: Navidad
|
90
|
+
regions: [mx]
|
91
|
+
mday: 25
|
92
|
+
- name: Los Santos Inocentes
|
93
|
+
regions: [mx]
|
94
|
+
mday: 28
|
95
|
+
tests: |
|
96
|
+
{Date.civil(2007,1,1) => 'Año nuevo',
|
97
|
+
Date.civil(2007,2,5) => 'Día de la Constitución',
|
98
|
+
Date.civil(2007,5,1) => 'Día del Trabajo',
|
99
|
+
Date.civil(2007,5,5) => 'Cinco de Mayo',
|
100
|
+
Date.civil(2007,9,16) => 'Día de la Independencia',
|
101
|
+
Date.civil(2007,11,1) => 'Todos los Santos',
|
102
|
+
Date.civil(2007,11,2) => 'Los Fieles Difuntos',
|
103
|
+
Date.civil(2007,11,19) => 'Día de la Revolución',
|
104
|
+
Date.civil(2007,12,25) => 'Navidad'}.each do |date, name|
|
105
|
+
assert_equal name, Holidays.on(date, :mx, :informal)[0][:name]
|
106
|
+
end
|
data/data/nl.yaml
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# Dutch holiday definitions for the Ruby Holiday gem.
|
2
|
+
#
|
3
|
+
# Updated: 2008-11-23.
|
4
|
+
# Sources:
|
5
|
+
# - http://en.wikipedia.org/wiki/Public_holidays_in_the_Netherlands
|
6
|
+
# - http://www.buyusa.gov/netherlands/en/dutch_holidays.html
|
7
|
+
---
|
8
|
+
months:
|
9
|
+
0:
|
10
|
+
- name: Goede Vrijdag
|
11
|
+
regions: [nl]
|
12
|
+
function: easter(year)-2
|
13
|
+
- name: Pasen
|
14
|
+
regions: [nl]
|
15
|
+
function: easter(year)
|
16
|
+
- name: Pasen
|
17
|
+
regions: [nl]
|
18
|
+
function: easter(year)+1
|
19
|
+
- name: Hemelvaartsdag
|
20
|
+
regions: [nl]
|
21
|
+
function: easter(year)+39
|
22
|
+
- name: Pinksteren
|
23
|
+
regions: [nl]
|
24
|
+
function: easter(year)+49
|
25
|
+
- name: Pinksteren
|
26
|
+
regions: [nl]
|
27
|
+
function: easter(year)+50
|
28
|
+
1:
|
29
|
+
- name: Nieuwjaar
|
30
|
+
regions: [nl]
|
31
|
+
mday: 1
|
32
|
+
4:
|
33
|
+
- name: Koninginnedag
|
34
|
+
regions: [nl]
|
35
|
+
mday: 30
|
36
|
+
5:
|
37
|
+
- name: Dodenherdenking
|
38
|
+
regions: [nl]
|
39
|
+
mday: 4
|
40
|
+
- name: Bevrijdingsdag
|
41
|
+
regions: [nl]
|
42
|
+
mday: 5
|
43
|
+
12:
|
44
|
+
- name: Sinterklaas
|
45
|
+
regions: [nl]
|
46
|
+
mday: 5
|
47
|
+
type: informal
|
48
|
+
- name: Kerstmis
|
49
|
+
regions: [nl]
|
50
|
+
mday: 25
|
51
|
+
- name: Kerstmis
|
52
|
+
regions: [nl]
|
53
|
+
mday: 26
|
54
|
+
tests: |
|
55
|
+
{Date.civil(2008,1,1) => 'Nieuwjaar',
|
56
|
+
Date.civil(2008,3,21) => 'Goede Vrijdag',
|
57
|
+
Date.civil(2008,3,23) => 'Pasen',
|
58
|
+
Date.civil(2008,3,24) => 'Pasen',
|
59
|
+
Date.civil(2008,4,30) => 'Koninginnedag',
|
60
|
+
Date.civil(2008,5,1) => 'Hemelvaartsdag', # Ascension, Easter+39
|
61
|
+
Date.civil(2008,5,5) => 'Bevrijdingsdag',
|
62
|
+
Date.civil(2008,5,11) => 'Pinksteren', # Pentecost, Easter+49
|
63
|
+
Date.civil(2008,5,12) => 'Pinksteren', # Pentecost, Easter+50
|
64
|
+
Date.civil(2008,12,25) => 'Kerstmis',
|
65
|
+
Date.civil(2008,12,26) => 'Kerstmis'}.each do |date, name|
|
66
|
+
assert_equal name, Holidays.on(date, :nl, :informal)[0][:name]
|
67
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# Informal North American holiday definitions for the Ruby Holiday gem.
|
2
|
+
# Updated 2008-11-22.
|
3
|
+
---
|
4
|
+
months:
|
5
|
+
2:
|
6
|
+
- name: Groundhog Day
|
7
|
+
regions: [us, ca]
|
8
|
+
mday: 2
|
9
|
+
type: informal
|
10
|
+
- name: Valentine's Day
|
11
|
+
regions: [us, ca]
|
12
|
+
mday: 14
|
13
|
+
type: informal
|
14
|
+
3:
|
15
|
+
- name: St. Patrick's Day
|
16
|
+
regions: [us, ca]
|
17
|
+
mday: 17
|
18
|
+
type: informal
|
19
|
+
4:
|
20
|
+
- name: April Fool's Day
|
21
|
+
regions: [us, ca]
|
22
|
+
mday: 1
|
23
|
+
type: informal
|
24
|
+
- name: Earth Day
|
25
|
+
regions: [us, ca]
|
26
|
+
mday: 22
|
27
|
+
type: informal
|
28
|
+
5:
|
29
|
+
- name: Mother's Day
|
30
|
+
week: 2
|
31
|
+
regions: [us, ca]
|
32
|
+
wday: 0
|
33
|
+
type: informal
|
34
|
+
- name: Armed Forces Day
|
35
|
+
week: 3
|
36
|
+
regions: [us]
|
37
|
+
wday: 6
|
38
|
+
type: informal
|
39
|
+
5:
|
40
|
+
- name: Father's Day
|
41
|
+
week: 3
|
42
|
+
regions: [us, ca]
|
43
|
+
wday: 0
|
44
|
+
type: informal
|
45
|
+
10:
|
46
|
+
- name: Halloween
|
47
|
+
regions: [us, ca]
|
48
|
+
mday: 31
|
49
|
+
type: informal
|
data/data/pt.yaml
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
# Portugese holiday definitions for the Ruby Holiday gem.
|
2
|
+
#
|
3
|
+
# Updated: 2008-11-28.
|
4
|
+
# Sources:
|
5
|
+
# - http://en.wikipedia.org/wiki/Holidays_in_Portugal
|
6
|
+
# - http://www.kidlink.org/KIDPROJ/MCC/mcc0006.html
|
7
|
+
# - http://www.worldtravelguide.net/country/227/public_holidays/Europe/Portugal.html
|
8
|
+
# - http://en.wikipedia.org/wiki/Portugal_Day
|
9
|
+
# - http://www.timeanddate.com/calendar/custom.html?year=2008&country=15
|
10
|
+
---
|
11
|
+
months:
|
12
|
+
0:
|
13
|
+
- name: Carnaval # same as Shrove Tuesday
|
14
|
+
regions: [pt]
|
15
|
+
function: easter(year)-47
|
16
|
+
type: informal
|
17
|
+
- name: Sexta-feira Santa
|
18
|
+
regions: [pt]
|
19
|
+
function: easter(year)-2
|
20
|
+
- name: Páscoa
|
21
|
+
regions: [pt]
|
22
|
+
function: easter(year)
|
23
|
+
- name: Corpo de Deus
|
24
|
+
regions: [pt]
|
25
|
+
function: easter(year)+60
|
26
|
+
1:
|
27
|
+
- name: Ano Novo
|
28
|
+
regions: [pt]
|
29
|
+
mday: 1
|
30
|
+
4:
|
31
|
+
- name: Dia da Liberdade
|
32
|
+
regions: [pt]
|
33
|
+
mday: 25
|
34
|
+
5:
|
35
|
+
- name: Dia do Trabalhador
|
36
|
+
regions: [pt]
|
37
|
+
mday: 1
|
38
|
+
6:
|
39
|
+
- name: Dia de Portugal
|
40
|
+
regions: [pt]
|
41
|
+
mday: 10
|
42
|
+
8:
|
43
|
+
- name: Assunção de Nossa Senhora
|
44
|
+
regions: [pt]
|
45
|
+
mday: 15
|
46
|
+
10:
|
47
|
+
- name: Implantação da República
|
48
|
+
regions: [pt]
|
49
|
+
mday: 5
|
50
|
+
11:
|
51
|
+
- name: Todos os Santos
|
52
|
+
regions: [pt]
|
53
|
+
mday: 1
|
54
|
+
12:
|
55
|
+
- name: Restauração da Independência
|
56
|
+
regions: [pt]
|
57
|
+
mday: 1
|
58
|
+
- name: Imaculada Conceição
|
59
|
+
regions: [pt]
|
60
|
+
mday: 8
|
61
|
+
- name: Natal
|
62
|
+
regions: [pt]
|
63
|
+
mday: 25
|
64
|
+
tests: |
|
65
|
+
{Date.civil(2008,1,1) => 'Ano Novo',
|
66
|
+
Date.civil(2005,2,8) => 'Carnaval',
|
67
|
+
Date.civil(2006,2,28) => 'Carnaval',
|
68
|
+
Date.civil(2007,2,20) => 'Carnaval',
|
69
|
+
Date.civil(2008,2,5) => 'Carnaval',
|
70
|
+
Date.civil(2008,3,21) => 'Sexta-feira Santa',
|
71
|
+
Date.civil(2008,3,23) => 'Páscoa',
|
72
|
+
Date.civil(2008,4,25) => 'Dia da Liberdade',
|
73
|
+
Date.civil(2008,5,1) => 'Dia do Trabalhador',
|
74
|
+
Date.civil(2005,5,26) => 'Corpo de Deus',
|
75
|
+
Date.civil(2007,6,7) => 'Corpo de Deus',
|
76
|
+
Date.civil(2008,5,22) => 'Corpo de Deus',
|
77
|
+
Date.civil(2008,6,10) => 'Dia de Portugal',
|
78
|
+
Date.civil(2008,8,15) => 'Assunção de Nossa Senhora',
|
79
|
+
Date.civil(2008,10,5) => 'Implantação da República',
|
80
|
+
Date.civil(2008,11,1) => 'Todos os Santos',
|
81
|
+
Date.civil(2008,12,1) => 'Restauração da Independência',
|
82
|
+
Date.civil(2008,12,8) => 'Imaculada Conceição',
|
83
|
+
Date.civil(2008,12,25) => 'Natal'}.each do |date, name|
|
84
|
+
assert_equal name, Holidays.on(date, :pt, :informal)[0][:name]
|
85
|
+
end
|
data/data/se.yaml
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
# Swedish holiday definitions for the Ruby Holiday gem.
|
2
|
+
#
|
3
|
+
# Updated: 2008-11-28.
|
4
|
+
# Sources:
|
5
|
+
# - http://en.wikipedia.org/wiki/Holidays_in_Sweden
|
6
|
+
# - http://www.worldtravelguide.net/country/269/public_holidays/Europe/Sweden.html
|
7
|
+
# - http://hem.passagen.se/farila/midsum.htm
|
8
|
+
# - http://www.timeanddate.com/calendar/?country=21
|
9
|
+
---
|
10
|
+
months:
|
11
|
+
0:
|
12
|
+
- name: Långfredagen
|
13
|
+
regions: [se]
|
14
|
+
function: easter(year)-2
|
15
|
+
- name: Påskdagen
|
16
|
+
regions: [se]
|
17
|
+
function: easter(year)
|
18
|
+
- name: Annandag påsk
|
19
|
+
regions: [se]
|
20
|
+
function: easter(year)+1
|
21
|
+
- name: Kristi himmelsfärdsdag # Ascension Day
|
22
|
+
regions: [se]
|
23
|
+
function: easter(year)+39
|
24
|
+
- name: Pingstdagen # Whitsunday
|
25
|
+
regions: [se]
|
26
|
+
function: easter(year)+49
|
27
|
+
- name: Alla helgons dag # All Saint's Day
|
28
|
+
regions: [se]
|
29
|
+
function: se_alla_helgons_dag(year)
|
30
|
+
1:
|
31
|
+
- name: Nyårsdagen
|
32
|
+
regions: [se]
|
33
|
+
mday: 1
|
34
|
+
- name: Trettondedag jul
|
35
|
+
regions: [se]
|
36
|
+
mday: 6
|
37
|
+
5:
|
38
|
+
- name: Första maj
|
39
|
+
regions: [se]
|
40
|
+
mday: 1
|
41
|
+
6:
|
42
|
+
- name: Nationaldagen
|
43
|
+
regions: [se]
|
44
|
+
mday: 6
|
45
|
+
- name: Midsommardagen
|
46
|
+
regions: [se]
|
47
|
+
function: se_midsommardagen(year)
|
48
|
+
12:
|
49
|
+
- name: Juldagen
|
50
|
+
regions: [se]
|
51
|
+
mday: 25
|
52
|
+
- name: Annandag jul
|
53
|
+
regions: [se]
|
54
|
+
mday: 26
|
55
|
+
methods:
|
56
|
+
se_midsommardagen: |
|
57
|
+
# Sweden: Mid-summer (Saturday between June 20–26)
|
58
|
+
def self.se_midsommardagen(year)
|
59
|
+
date = Date.civil(year,6,20)
|
60
|
+
date += (6 - date.wday)
|
61
|
+
date
|
62
|
+
end
|
63
|
+
se_alla_helgons_dag: |
|
64
|
+
# Sweden: All Saint's Day (Saturday between Oct 31 and Nov 6)
|
65
|
+
def self.se_alla_helgons_dag(year)
|
66
|
+
date = Date.civil(year,10,31)
|
67
|
+
date += (6 - date.wday)
|
68
|
+
date
|
69
|
+
end
|
70
|
+
tests: |
|
71
|
+
{Date.civil(2008,1,1) => 'Nyårsdagen',
|
72
|
+
Date.civil(2008,1,6) => 'Trettondedag jul',
|
73
|
+
Date.civil(2008,3,21) => 'Långfredagen',
|
74
|
+
Date.civil(2008,3,23) => 'Påskdagen',
|
75
|
+
Date.civil(2008,3,24) => 'Annandag påsk',
|
76
|
+
Date.civil(2008,5,1) => 'Första maj',
|
77
|
+
Date.civil(2008,5,1) => 'Kristi himmelsfärdsdag',
|
78
|
+
Date.civil(2008,5,11) => 'Pingstdagen',
|
79
|
+
Date.civil(2008,6,6) => 'Nationaldagen',
|
80
|
+
Date.civil(2005,6,25) => 'Midsommardagen',
|
81
|
+
Date.civil(2006,6,24) => 'Midsommardagen',
|
82
|
+
Date.civil(2007,6,23) => 'Midsommardagen',
|
83
|
+
Date.civil(2008,6,21) => 'Midsommardagen',
|
84
|
+
Date.civil(2005,11,5) => 'Alla helgons dag',
|
85
|
+
Date.civil(2006,11,4) => 'Alla helgons dag',
|
86
|
+
Date.civil(2007,11,3) => 'Alla helgons dag',
|
87
|
+
Date.civil(2008,11,1) => 'Alla helgons dag',
|
88
|
+
Date.civil(2008,12,25) => 'Juldagen',
|
89
|
+
Date.civil(2008,12,26) => 'Annandag jul'}.each do |date, name|
|
90
|
+
assert_equal name, Holidays.on(date, :se, :informal)[0][:name]
|
91
|
+
end
|
@@ -0,0 +1,188 @@
|
|
1
|
+
# United Nationas holiday definitions for the Ruby Holiday gem.
|
2
|
+
# Updated 2008-11-21.
|
3
|
+
---
|
4
|
+
2:
|
5
|
+
- name: International Mother Language Day
|
6
|
+
regions: [un]
|
7
|
+
mday: 2
|
8
|
+
3:
|
9
|
+
- name: United Nations Day for Women's Rights and International Peace
|
10
|
+
regions: [un]
|
11
|
+
mday: 8
|
12
|
+
- name: International Day for the Elimination of Racial Discrimination
|
13
|
+
regions: [un]
|
14
|
+
mday: 21
|
15
|
+
- name: Beginning of the Week of Solidarity with the Peoples Struggling against Racism and Racial Discrimination
|
16
|
+
regions: [un]
|
17
|
+
mday: 21
|
18
|
+
- name: World Day for Water
|
19
|
+
regions: [un]
|
20
|
+
mday: 22
|
21
|
+
- name: World Meteorological Day
|
22
|
+
regions: [un]
|
23
|
+
mday: 23
|
24
|
+
4:
|
25
|
+
- name: World Health Day
|
26
|
+
regions: [un]
|
27
|
+
mday: 7
|
28
|
+
- name: World Book and Copyright Day
|
29
|
+
regions: [un]
|
30
|
+
mday: 23
|
31
|
+
5:
|
32
|
+
- name: World Press Freedom Day
|
33
|
+
regions: [un]
|
34
|
+
mday: 3
|
35
|
+
- name: International Day of Families
|
36
|
+
regions: [un]
|
37
|
+
mday: 15
|
38
|
+
- name: World Telecommunication Day
|
39
|
+
regions: [un]
|
40
|
+
mday: 17
|
41
|
+
- name: World Day for Cultural Diversity for Dialogue and Development
|
42
|
+
regions: [un]
|
43
|
+
mday: 21
|
44
|
+
- name: International Day for Biological Diversity
|
45
|
+
regions: [un]
|
46
|
+
mday: 22
|
47
|
+
- name: Beginning of the Week of Solidarity with the Peoples of Non-Self-Governing Territories
|
48
|
+
regions: [un]
|
49
|
+
mday: 25
|
50
|
+
- name: International Day of United Nations Peacekeepers
|
51
|
+
regions: [un]
|
52
|
+
mday: 29
|
53
|
+
- name: World No-Tobacco Day
|
54
|
+
regions: [un]
|
55
|
+
mday: 31
|
56
|
+
6:
|
57
|
+
- name: International Day of Innocent Children Victims of Aggression
|
58
|
+
regions: [un]
|
59
|
+
mday: 4
|
60
|
+
- name: World Environment Day
|
61
|
+
regions: [un]
|
62
|
+
mday: 5
|
63
|
+
- name: World Day to Combat Desertification and Drought
|
64
|
+
regions: [un]
|
65
|
+
mday: 17
|
66
|
+
- name: World Refugee Day
|
67
|
+
regions: [un]
|
68
|
+
mday: 20
|
69
|
+
- name: United Nations Public Service Day
|
70
|
+
regions: [un]
|
71
|
+
mday: 23
|
72
|
+
- name: International Day against Drug Abuse and Illicit Trafficking
|
73
|
+
regions: [un]
|
74
|
+
mday: 26
|
75
|
+
- name: International Day in Support of Victims of Torture
|
76
|
+
regions: [un]
|
77
|
+
mday: 26
|
78
|
+
7:
|
79
|
+
- name: International Day of Cooperatives
|
80
|
+
week: 1
|
81
|
+
regions: [un]
|
82
|
+
wday: 6
|
83
|
+
- name: World Population Day
|
84
|
+
regions: [un]
|
85
|
+
mday: 11
|
86
|
+
8:
|
87
|
+
- name: International Day of the World's Indigenous People
|
88
|
+
regions: [un]
|
89
|
+
mday: 9
|
90
|
+
- name: International Youth Day
|
91
|
+
regions: [un]
|
92
|
+
mday: 12
|
93
|
+
- name: International Day for the Remembrance of the Slave Trade and Its Abolition
|
94
|
+
regions: [un]
|
95
|
+
mday: 23
|
96
|
+
9:
|
97
|
+
- name: International Literacy Day
|
98
|
+
regions: [un]
|
99
|
+
mday: 8
|
100
|
+
- name: International Day for the Preservation of the Ozone Layer
|
101
|
+
regions: [un]
|
102
|
+
mday: 16
|
103
|
+
- name: International Day of Peace
|
104
|
+
regions: [un]
|
105
|
+
mday: 21
|
106
|
+
- name: International Day of Older Persons
|
107
|
+
regions: [un]
|
108
|
+
mday: 1
|
109
|
+
10:
|
110
|
+
- name: World Space Week
|
111
|
+
regions: [un]
|
112
|
+
mday: 4
|
113
|
+
- name: World Teachers' Day
|
114
|
+
regions: [un]
|
115
|
+
mday: 5
|
116
|
+
- name: World Habitat Day
|
117
|
+
week: 1
|
118
|
+
regions: [un]
|
119
|
+
wday: 1
|
120
|
+
- name: International Day for Natural Disaster Reduction
|
121
|
+
week: 2
|
122
|
+
regions: [un]
|
123
|
+
wday: 3
|
124
|
+
- name: World Post Day
|
125
|
+
regions: [un]
|
126
|
+
mday: 9
|
127
|
+
- name: World Mental Health Day
|
128
|
+
regions: [un]
|
129
|
+
mday: 10
|
130
|
+
- name: World Food Day
|
131
|
+
regions: [un]
|
132
|
+
mday: 16
|
133
|
+
- name: International Day for the Eradication of Poverty
|
134
|
+
regions: [un]
|
135
|
+
mday: 17
|
136
|
+
- name: United Nations Day
|
137
|
+
regions: [un]
|
138
|
+
mday: 24
|
139
|
+
- name: World Development Information Day
|
140
|
+
regions: [un]
|
141
|
+
mday: 24
|
142
|
+
- name: Disarmament Week
|
143
|
+
regions: [un]
|
144
|
+
mday: 24
|
145
|
+
11:
|
146
|
+
- name: International Day for Preventing the Exploitation of the Environment in War and Armed Conflict
|
147
|
+
regions: [un]
|
148
|
+
mday: 6
|
149
|
+
- name: International Day for Tolerance
|
150
|
+
regions: [un]
|
151
|
+
mday: 16
|
152
|
+
- name: Africa Industrialization Day
|
153
|
+
regions: [un]
|
154
|
+
mday: 20
|
155
|
+
- name: Universal Children's Day
|
156
|
+
regions: [un]
|
157
|
+
mday: 20
|
158
|
+
- name: World Television Day
|
159
|
+
regions: [un]
|
160
|
+
mday: 21
|
161
|
+
- name: International Day for the Elimination of Violence against Women
|
162
|
+
regions: [un]
|
163
|
+
mday: 25
|
164
|
+
- name: International Day of Solidarity with the Palestinian People
|
165
|
+
regions: [un]
|
166
|
+
mday: 29
|
167
|
+
12:
|
168
|
+
- name: World AIDS Day
|
169
|
+
regions: [un]
|
170
|
+
mday: 1
|
171
|
+
- name: International Day for the Abolition of Slavery
|
172
|
+
regions: [un]
|
173
|
+
mday: 2
|
174
|
+
- name: International Day of Disabled Persons
|
175
|
+
regions: [un]
|
176
|
+
mday: 3
|
177
|
+
- name: International Volunteer Day for Economic and Social Development
|
178
|
+
regions: [un]
|
179
|
+
mday: 5
|
180
|
+
- name: International Civil Aviation Day
|
181
|
+
regions: [un]
|
182
|
+
mday: 7
|
183
|
+
- name: Human Rights Day
|
184
|
+
regions: [un]
|
185
|
+
mday: 10
|
186
|
+
- name: International Migrants Day
|
187
|
+
regions: [un]
|
188
|
+
mday: 18
|