34 lines
931 B
JavaScript
34 lines
931 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Spanish/Argentina localisation for calendars datepicker for jQuery.
|
|
Written by Esteban Acosta Villafane (esteban.acosta@globant.com) of Globant (http://www.globant.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions['es-AR'] = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<Ant',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Sig>',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Hoy',
|
|
currentStatus: '',
|
|
todayText: 'Hoy',
|
|
todayStatus: '',
|
|
clearText: 'Limpiar',
|
|
clearStatus: '',
|
|
closeText: 'Cerrar',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Sm',
|
|
weekStatus: '',
|
|
dayStatus: 'DD, M d',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions['es-AR']);
|
|
})(jQuery);
|