Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Datepicker: added i18n for nl-BE. Fixes #7895 Datepicker: Add Dutch (…
…Belgium) Localization (cherry picked from commit dfbd9be)
- Loading branch information
1 parent
ebff2f9
commit 126aafc
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* Dutch (Belgium) initialisation for the jQuery UI date picker plugin. */ | ||
/* David De Sloovere @DavidDeSloovere */ | ||
jQuery(function($){ | ||
$.datepicker.regional['nl-BE'] = { | ||
closeText: 'Sluiten', | ||
prevText: '←', | ||
nextText: '→', | ||
currentText: 'Vandaag', | ||
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'], | ||
dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], | ||
dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], | ||
dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], | ||
weekHeader: 'Wk', | ||
dateFormat: 'dd/mm/yy', | ||
firstDay: 1, | ||
isRTL: false, | ||
showMonthAfterYear: false, | ||
yearSuffix: ''}; | ||
$.datepicker.setDefaults($.datepicker.regional['nl-BE']); | ||
}); |