source: trunk/template-common/lib/ui/i18n/ui.datepicker-nl.js @ 4918

Last change on this file since 4918 was 4918, checked in by nikrou, 14 years ago

Feature 1442 : update jquery

  • update jquery to 1.4.1
  • update jquery ui to 1.7.2
  • Property svn:eol-style set to LF
File size: 855 bytes
Line 
1/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
2/* Written by Mathias Bynens <http://mathiasbynens.be/> */
3jQuery(function($){
4        $.datepicker.regional.nl = {
5                closeText: 'Sluiten',
6                prevText: '←',
7                nextText: '→',
8                currentText: 'Vandaag',
9                monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
10                'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
11                monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun',
12                'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
13                dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
14                dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
15                dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
16                dateFormat: 'dd/mm/yy', firstDay: 1,
17                isRTL: false};
18        $.datepicker.setDefaults($.datepicker.regional.nl);
19});
Note: See TracBrowser for help on using the repository browser.