PluginProbe
Booking Calendar / 10.11.3
Booking Calendar v10.11.3
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / js / datepick / jquery.datepick-da.js

jquery.datepick-da.js in Booking Calendar 10.11.3, at js/datepick/jquery.datepick-da.js

28 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Danish initialisation for the jQuery UI date picker plugin. */
2 /* Written by Jan Christensen ( deletestuff@gmail.com). */
3 (function($) {
4 $.datepick.regional['da'] = {
5 clearText: 'Nulstil', clearStatus: 'Nulstil den aktuelle dato',
6 closeText: 'Luk', closeStatus: 'Luk uden ændringer',
7 prevText: '<Forrige', prevStatus: 'Vis forrige måned',
8 prevBigText: '<<', prevBigStatus: '',
9 nextText: 'Næste>', nextStatus: 'Vis næste måned',
10 nextBigText: '>>', nextBigStatus: '',
11 currentText: 'Idag', currentStatus: 'Vis aktuel måned',
12 monthNames: ['Januar','Februar','Marts','April','Maj','Juni',
13 'Juli','August','September','Oktober','November','December'],
14 monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
15 'Jul','Aug','Sep','Okt','Nov','Dec'],
16 monthStatus: 'Vis en anden måned', yearStatus: 'Vis et andet år',
17 weekHeader: 'Uge', weekStatus: '�
18 rets uge',
19 dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
20 dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
21 dayNamesMin: ['','Ma','Ti','On','To','Fr',''],
22 dayStatus: 'Sæt DD som første ugedag', dateStatus: 'Vælg D, M d',
23 dateFormat: 'dd-mm-yy', firstDay: 0,
24 initStatus: 'Vælg en dato', isRTL: false,
25 showMonthAfterYear: false, yearSuffix: ''};
26 $.datepick.setDefaults($.datepick.regional['da']);
27 })(jQuery);
28