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.
17 lines
726 B
17 lines
726 B
/**
|
|
* French translation for bootstrap-datepicker
|
|
* Nico Mollet <nico.mollet@gmail.com>
|
|
*/
|
|
;(function($){
|
|
$.fn.datepicker.dates['fr'] = {
|
|
days: ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi", "dimanche"],
|
|
daysShort: ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam.", "dim."],
|
|
daysMin: ["d", "l", "ma", "me", "j", "v", "s", "d"],
|
|
months: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"],
|
|
monthsShort: ["janv.", "févr.", "mars", "avril", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "déc."],
|
|
today: "Aujourd'hui",
|
|
clear: "Effacer",
|
|
weekStart: 1,
|
|
format: "dd/mm/yyyy"
|
|
};
|
|
}(jQuery));
|
|
|