mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Updated Dutch localisation
This commit is contained in:
parent
95c6c6dd62
commit
152531d370
@ -370,7 +370,7 @@ function customRange(input) {
|
||||
{ desc: 'Latviešu Valoda (Latvian)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["lv"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("Arturas Paleicikas");' },
|
||||
{ desc: 'lietuvių kalba (Lithuanian)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["lt"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("Arturas Paleicikas");' },
|
||||
{ desc: 'Magyar (Hungarian)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["hu"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("Istvan Karaszi");' },
|
||||
{ desc: 'Nederlands (Dutch)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["nl"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("???");' },
|
||||
{ desc: 'Nederlands (Dutch)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["nl"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("Mathias Bynens");' },
|
||||
{ desc: '日本語 (Japanese)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["ja"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("Milly");' },
|
||||
{ desc: 'Norsk (Norwegian)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["no"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("Naimdjon Takhirov");' },
|
||||
{ desc: 'ภาษาไทย (Thai)', source: '$("#i18n").datepicker($.extend({}, $.datepicker.regional["th"], {showStatus: true, showOn: "both", buttonImage: "templates/images/calendar.gif", buttonImageOnly: true}));$("#contrib").html("pipo");' },
|
||||
|
@ -1,25 +1,25 @@
|
||||
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by ??? */
|
||||
/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||||
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
||||
jQuery(function($){
|
||||
$.datepicker.regional['nl'] = {
|
||||
$.datepicker.regional.nl = {
|
||||
clearText: 'Wissen', clearStatus: 'Wis de huidige datum',
|
||||
closeText: 'Sluiten', closeStatus: 'Sluit zonder verandering',
|
||||
prevText: '<Terug', prevStatus: 'Laat de voorgaande maand zien',
|
||||
prevBigText: '<<', prevBigStatus: '',
|
||||
nextText: 'Volgende>', nextStatus: 'Laat de volgende maand zien',
|
||||
nextBigText: '>>', nextBigStatus: '',
|
||||
currentText: 'Vandaag', currentStatus: 'Laat de huidige maand zien',
|
||||
monthNames: ['Januari','Februari','Maart','April','Mei','Juni',
|
||||
'Juli','Augustus','September','Oktober','November','December'],
|
||||
monthNamesShort: ['Jan','Feb','Mrt','Apr','Mei','Jun',
|
||||
'Jul','Aug','Sep','Okt','Nov','Dec'],
|
||||
monthStatus: 'Laat een andere maand zien', yearStatus: 'Laat een ander jaar zien',
|
||||
prevText: '←', prevStatus: 'Bekijk de vorige maand',
|
||||
prevBigText: '«', nextBigStatus: 'Bekijk het vorige jaar',
|
||||
nextText: '→', nextStatus: 'Bekijk de volgende maand',
|
||||
nextBigText: '»', nextBigStatus: 'Bekijk het volgende jaar',
|
||||
currentText: 'Vandaag', currentStatus: 'Bekijk de huidige maand',
|
||||
monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
|
||||
'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
|
||||
monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun',
|
||||
'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
|
||||
monthStatus: 'Bekijk een andere maand', yearStatus: 'Bekijk een ander jaar',
|
||||
weekHeader: 'Wk', weekStatus: 'Week van het jaar',
|
||||
dayNames: ['Zondag','Maandag','Dinsdag','Woensdag','Donderdag','Vrijdag','Zaterdag'],
|
||||
dayNamesShort: ['Zon','Maa','Din','Woe','Don','Vri','Zat'],
|
||||
dayNamesMin: ['Zo','Ma','Di','Wo','Do','Vr','Za'],
|
||||
dayStatus: 'DD', dateStatus: 'D, M d',
|
||||
dateFormat: 'dd.mm.yy', firstDay: 1,
|
||||
dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
|
||||
dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
|
||||
dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
|
||||
dayStatus: 'Stel DD in als eerste dag van de week', dateStatus: 'dd/mm/yy',
|
||||
dateFormat: 'dd/mm/yy', firstDay: 1,
|
||||
initStatus: 'Kies een datum', isRTL: false};
|
||||
$.datepicker.setDefaults($.datepicker.regional['nl']);
|
||||
$.datepicker.setDefaults($.datepicker.regional.nl);
|
||||
});
|
Loading…
Reference in New Issue
Block a user