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: French
|
|
|
|
|
file: DateTimePicker-i18n-fr
|
|
|
|
|
author: LivioGama(https://github.com/LivioGama)
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
(function ($) {
|
|
|
|
|
$.DateTimePicker.i18n["fr"] = $.extend($.DateTimePicker.i18n["fr"], {
|
|
|
|
|
|
|
|
|
|
language: "fr",
|
|
|
|
|
|
|
|
|
|
dateTimeFormat: "dd-MM-yyyy HH:mm",
|
|
|
|
|
dateFormat: "dd-MM-yyyy",
|
|
|
|
|
timeFormat: "HH:mm",
|
|
|
|
|
|
|
|
|
|
shortDayNames: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam"],
|
|
|
|
|
fullDayNames: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"],
|
|
|
|
|
shortMonthNames: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jun", "Jul", "Aoû", "Sep", "Oct", "Nov", "Déc"],
|
|
|
|
|
fullMonthNames: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"],
|
|
|
|
|
|
|
|
|
|
titleContentDate: "Choisir une date",
|
|
|
|
|
titleContentTime: "Choisir un horaire",
|
|
|
|
|
titleContentDateTime: "Choisir une date et un horaire",
|
|
|
|
|
|
|
|
|
|
setButtonContent: "Choisir",
|
|
|
|
|
clearButtonContent: "Effacer",
|
|
|
|
|
formatHumanDate: function(oDate, sMode, sFormat)
|
|
|
|
|
{
|
|
|
|
|
if(sMode === "date")
|
|
|
|
|
return oDate.dayShort + " " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy;
|
|
|
|
|
else if(sMode === "time")
|
|
|
|
|
return oDate.HH + ":" + oDate.mm + ":" + oDate.ss;
|
|
|
|
|
else if(sMode === "datetime")
|
|
|
|
|
return oDate.dayShort + " " + oDate.dd + " " + oDate.month+ " " + oDate.yyyy + ", " + oDate.HH + ":" + oDate.mm + ":" + oDate.ss;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
2020-02-12 11:00:54 +00:00
|
|
|
})(jQuery);
|