mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00

Not an optimal solution, because it uses files from our own repository instead of the bundle, but found no other solution for now.
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/* Inicialización en español para la extensión 'UI date picker' para jQuery. */
|
|
/* Traducido por Vester (xvester@gmail.com). */
|
|
( function( factory ) {
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
// AMD. Register as an anonymous module.
|
|
define( [ "../widgets/datepicker" ], factory );
|
|
} else {
|
|
|
|
// Browser globals
|
|
factory( jQuery.datepicker );
|
|
}
|
|
}( function( datepicker ) {
|
|
|
|
datepicker.regional.es = {
|
|
closeText: "Cerrar",
|
|
prevText: "<Ant",
|
|
nextText: "Sig>",
|
|
currentText: "Hoy",
|
|
monthNames: [ "enero","febrero","marzo","abril","mayo","junio",
|
|
"julio","agosto","septiembre","octubre","noviembre","diciembre" ],
|
|
monthNamesShort: [ "ene","feb","mar","abr","may","jun",
|
|
"jul","ago","sep","oct","nov","dic" ],
|
|
dayNames: [ "domingo","lunes","martes","miércoles","jueves","viernes","sábado" ],
|
|
dayNamesShort: [ "dom","lun","mar","mié","jue","vie","sáb" ],
|
|
dayNamesMin: [ "D","L","M","X","J","V","S" ],
|
|
weekHeader: "Sm",
|
|
dateFormat: "dd/mm/yy",
|
|
firstDay: 1,
|
|
isRTL: false,
|
|
showMonthAfterYear: false,
|
|
yearSuffix: "" };
|
|
datepicker.setDefaults( datepicker.regional.es );
|
|
|
|
return datepicker.regional.es;
|
|
|
|
} ) );
|