2016-03-04 12:44:26 +00:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
|
|
2020-02-12 11:00:54 +00:00
|
|
|
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & mobile
|
2018-10-04 03:19:34 +00:00
|
|
|
Version 0.1.38
|
2019-09-23 14:07:27 +00:00
|
|
|
Copyright (c)2014-2019 Lajpat Shah
|
2018-10-04 03:19:34 +00:00
|
|
|
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
|
|
|
|
Repository : https://github.com/nehakadam/DateTimePicker
|
|
|
|
|
Documentation : https://nehakadam.github.io/DateTimePicker
|
2016-03-04 12:44:26 +00:00
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
language: Dutch
|
|
|
|
|
file: DateTimePicker-i18n-nl
|
|
|
|
|
author: Bernardo(https://github.com/bhulsman)
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
(function ($) {
|
|
|
|
|
$.DateTimePicker.i18n["nl"] = $.extend($.DateTimePicker.i18n["nl"], {
|
|
|
|
|
|
|
|
|
|
language: "nl",
|
|
|
|
|
|
|
|
|
|
dateTimeFormat: "dd-MM-yyyy HH:mm",
|
|
|
|
|
dateFormat: "dd-MM-yyyy",
|
|
|
|
|
timeFormat: "HH:mm",
|
|
|
|
|
|
|
|
|
|
shortDayNames: ["zo", "ma", "di", "wo", "do", "vr", "za"],
|
|
|
|
|
fullDayNames: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"],
|
|
|
|
|
shortMonthNames: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"],
|
|
|
|
|
fullMonthNames: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"],
|
|
|
|
|
|
|
|
|
|
titleContentDate: "Kies datum",
|
|
|
|
|
titleContentTime: "Kies tijd",
|
|
|
|
|
titleContentDateTime: "Kies datum & tijd",
|
|
|
|
|
|
|
|
|
|
setButtonContent: "Kiezen",
|
|
|
|
|
clearButtonContent: "Leegmaken"
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
})(jQuery);
|