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.
53 lines
2.1 KiB
53 lines
2.1 KiB
5 years ago
|
if ($.fn.pagination){
|
||
|
$.fn.pagination.defaults.beforePageText = 'Página';
|
||
|
$.fn.pagination.defaults.afterPageText = 'de {pages}';
|
||
|
$.fn.pagination.defaults.displayMsg = 'Mostrando {from} a {to} de {total} elementos';
|
||
|
}
|
||
|
if ($.fn.datagrid){
|
||
|
$.fn.datagrid.defaults.loadMsg = 'Procesando, por favor espere ...';
|
||
|
}
|
||
|
if ($.fn.treegrid && $.fn.datagrid){
|
||
|
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||
|
}
|
||
|
if ($.messager){
|
||
|
$.messager.defaults.ok = 'Aceptar';
|
||
|
$.messager.defaults.cancel = 'Cancelar';
|
||
|
}
|
||
|
if ($.fn.validatebox){
|
||
|
$.fn.validatebox.defaults.missingMessage = 'Este campo es obligatorio.';
|
||
|
$.fn.validatebox.defaults.rules.email.message = 'Por favor ingrese una dirección de correo válida.';
|
||
|
$.fn.validatebox.defaults.rules.url.message = 'Por favor ingrese una URL válida.';
|
||
|
$.fn.validatebox.defaults.rules.length.message = 'Por favor ingrese un valor entre {0} y {1}.';
|
||
|
$.fn.validatebox.defaults.rules.remote.message = 'Por favor corrija este campo.';
|
||
|
}
|
||
|
if ($.fn.numberbox){
|
||
|
$.fn.numberbox.defaults.missingMessage = 'Este campo es obligatorio.';
|
||
|
}
|
||
|
if ($.fn.combobox){
|
||
|
$.fn.combobox.defaults.missingMessage = 'Este campo es obligatorio.';
|
||
|
}
|
||
|
if ($.fn.combotree){
|
||
|
$.fn.combotree.defaults.missingMessage = 'Este campo es obligatorio.';
|
||
|
}
|
||
|
if ($.fn.combogrid){
|
||
|
$.fn.combogrid.defaults.missingMessage = 'Este campo es obligatorio.';
|
||
|
}
|
||
|
if ($.fn.calendar){
|
||
|
$.fn.calendar.defaults.weeks = ['Do','Lu','Ma','Mi','Ju','Vi','Sá'];
|
||
|
$.fn.calendar.defaults.months = ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'];
|
||
|
}
|
||
|
if ($.fn.datebox){
|
||
|
$.fn.datebox.defaults.currentText = 'Hoy';
|
||
|
$.fn.datebox.defaults.closeText = 'Cerrar';
|
||
|
$.fn.datebox.defaults.okText = 'Aceptar';
|
||
|
$.fn.datebox.defaults.missingMessage = 'Este campo es obligatorio.';
|
||
|
}
|
||
|
if ($.fn.datetimebox && $.fn.datebox){
|
||
|
$.extend($.fn.datetimebox.defaults,{
|
||
|
currentText: $.fn.datebox.defaults.currentText,
|
||
|
closeText: $.fn.datebox.defaults.closeText,
|
||
|
okText: $.fn.datebox.defaults.okText,
|
||
|
missingMessage: $.fn.datebox.defaults.missingMessage
|
||
|
});
|
||
|
}
|