forked from kodie/moment-holiday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
finland.js
56 lines (53 loc) · 1.42 KB
/
finland.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//! moment-holiday.js locale configuration
//! locale : Finland
//! author : Kodie Grantham : https://github.com/kodie
(function() {
var moment = (typeof require !== 'undefined' && require !== null) && !require.amd ? require('moment') : this.moment;
moment.holidays.finland = {
"Uudenvuodenpäivä": {
date: '1/1',
keywords: ['uudenvuodenpaiva', 'new', 'year']
},
"Loppiainen": {
date: '1/6'
},
"Vappu": {
date: '5/1'
},
"Juhannuspäivä": {
date: '6/(6,[21])',
keywords: ['juhannuspaiva']
},
"Pyhäinpäivä": {
date: '11/(6,[1])',
keywords: ['pyhainpaiva']
},
"Joulupäivä": {
date: '12/25',
keywords: ['joulupaiva', 'christmas']
},
"Tapaninpäivä": {
date: '12/26',
keywords: ['tapaninpaiva']
},
"Pitkäperjantai": {
date: 'easter-2',
keywords: ['pitkaperjantai', 'good', 'friday']
},
"Pääsiäispäivä": {
date: 'easter',
keywords: ['paasiaispaiva', 'easter'],
keywords_n: ['toinen', 'monday']
},
"Toinen Pääsiäispäivä": {
date: 'easter+1',
keywords: ['paasiaispaiva', 'easter', 'monday'],
keywords_y: ['toinen']
},
"Helatorstai": {
date: 'easter+39',
keywords: ['ascension']
}
};
if ((typeof module !== 'undefined' && module !== null ? module.exports : void 0) != null) { module.exports = moment; }
}).call(this);