/* -----------------------------------------------------------------------------
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
Version 0.1.39
Copyright (c)2014-2019 Lajpat Shah
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
Repository : https://github.com/nehakadam/DateTimePicker
Documentation : https://nehakadam.github.io/DateTimePicker
----------------------------------------------------------------------------- */
/*
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;
}
});
})(jQuery);