flatpickr.l10n.nl.js 742 B

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