| 12345678910111213141516171819202122232425 |
- /* Dutch locals for flatpickr */
- var Flatpickr = Flatpickr||{l10n: {}};
- Flatpickr.l10n.weekdays = {
- shorthand: ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'],
- longhand: ['Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag']
- };
- Flatpickr.l10n.months = {
- shorthand: ['Jan', 'Feb', 'Maa', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sept', 'Okt', 'Nov', 'Dec'],
- longhand: ['Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December']
- };
- Flatpickr.l10n.firstDayOfWeek = 1;
- Flatpickr.l10n.ordinal = nth => {
- if (nth === 1 || nth === 8 || nth >= 20) {
- return "ste";
- }
- return "de";
- };
- if (typeof module !== "undefined") {
- module.exports = Flatpickr.l10n;
- }
|