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
|
/* Dutch translation for Intimidatetime */
(function($) {
$.intimidatetime.i18n['nl'] = {
format: 'dd-MM-yyyy HH:mm',
units: {
year: {
format: 'yyyy',
label: 'Jaar'
},
month: {
format: 'MMM',
label: 'Maand',
names: ['januari','februari','maart','april','mei','juni','juli','augustus','september','oktober','november','december'],
namesAbbr: ['jan','feb','mrt','apr','mei','jun','jul','aug','sep','okt','nov','dec']
},
day: {
format: 'd',
label: 'Dag',
names: ['zondag','maandag','dinsdag','woensdag','donderdag','vrijdag','zaterdag'],
namesAbbr: ['zon','maa','din','woe','don','vri','zat'],
namesHead: ['zo','ma','di','wo','do','vr','za']
},
hour: {
format: 'HH',
label: 'Uur',
am: ['AM','A'],
pm: ['PM','P']
},
minute: {
format: 'mm',
label: 'Minuut'
},
second: {
format: 'ss',
label: 'Seconde'
},
millisecond: {
format: 'l',
label: 'Milliseconde'
},
microsecond: {
format: 'c',
label: 'Microseconde'
},
timezone: {
format: 'z',
label: 'Tijdzone'
}
},
rtl: false
};
$.intimidatetime.setDefaults($.intimidatetime.i18n['nl']);
})(window.jQuery || window.Zepto || window.$);
|