mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
680 B
18 lines
680 B
9 years ago
|
/**
|
||
|
* Dutch translation for bootstrap-datepicker
|
||
|
* Reinier Goltstein <mrgoltstein@gmail.com>
|
||
|
*/
|
||
|
;(function($){
|
||
|
$.fn.datepicker.dates['nl'] = {
|
||
|
days: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"],
|
||
|
daysShort: ["zo", "ma", "di", "wo", "do", "vr", "za"],
|
||
|
daysMin: ["zo", "ma", "di", "wo", "do", "vr", "za"],
|
||
|
months: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"],
|
||
|
monthsShort: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec"],
|
||
|
today: "Vandaag",
|
||
|
clear: "Wissen",
|
||
|
weekStart: 1,
|
||
|
format: "dd-mm-yyyy"
|
||
|
};
|
||
|
}(jQuery));
|