รวม code แก้ไข OP 3138, 3141, 2736, 2654

This commit is contained in:
Nakorn Rientrakrunchai
2020-08-11 16:13:02 +07:00
parent ecf60f7b5b
commit c980d4cc38
282 changed files with 21778 additions and 190 deletions

View File

@@ -0,0 +1,33 @@
/* http://keith-wood.name/calendars.html
Dutch/Belgian localisation for calendars datepicker for jQuery.
Written by Mathias Bynens <http://mathiasbynens.be/>. */
(function($) {
'use strict';
$.calendarsPicker.regionalOptions['nl-BE'] = {
renderer: $.calendarsPicker.defaultRenderer,
prevText: '←',
prevStatus: 'Bekijk de vorige maand',
prevJumpText: '«',
prevJumpStatus: 'Bekijk het vorige jaar',
nextText: '→',
nextStatus: 'Bekijk de volgende maand',
nextJumpText: '»',
nextJumpStatus: 'Bekijk het volgende jaar',
currentText: 'Vandaag',
currentStatus: 'Bekijk de huidige maand',
todayText: 'Vandaag',
todayStatus: 'Bekijk de huidige maand',
clearText: 'Wissen',
clearStatus: 'Wis de huidige datum',
closeText: 'Sluiten',
closeStatus: 'Sluit zonder verandering',
yearStatus: 'Bekijk een ander jaar',
monthStatus: 'Bekijk een andere maand',
weekText: 'Wk',
weekStatus: 'Week van het jaar',
dayStatus: 'dd/mm/yyyy',
defaultStatus: 'Kies een datum',
isRTL: false
};
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['nl-BE']);
})(jQuery);