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: Spanish
|
|
|
|
|
file: DateTimePicker-i18n-es
|
|
|
|
|
author: kristophone(https://github.com/kristophone)
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(function ($) {
|
|
|
|
|
$.DateTimePicker.i18n["es"] = $.extend($.DateTimePicker.i18n["es"], {
|
|
|
|
|
|
|
|
|
|
language: "es",
|
|
|
|
|
|
|
|
|
|
dateTimeFormat: "dd-MMM-yyyy HH:mm:ss",
|
|
|
|
|
dateFormat: "dd-MMM-yyyy",
|
|
|
|
|
timeFormat: "HH:mm:ss",
|
|
|
|
|
|
|
|
|
|
shortDayNames: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"],
|
|
|
|
|
fullDayNames: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"],
|
|
|
|
|
shortMonthNames: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
|
|
|
|
|
fullMonthNames: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"],
|
|
|
|
|
|
|
|
|
|
titleContentDate: "Ingresar fecha",
|
|
|
|
|
titleContentTime: "Ingresar hora",
|
|
|
|
|
titleContentDateTime: "Ingresar fecha y hora",
|
|
|
|
|
|
|
|
|
|
setButtonContent: "Guardar",
|
|
|
|
|
clearButtonContent: "Cancelar",
|
|
|
|
|
|
|
|
|
|
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);
|