forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendars-es-AR.js
24 lines (24 loc) · 1.04 KB
/
jquery.calendars-es-AR.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* http://keith-wood.name/calendars.html
Spanish/Argentina localisation for Gregorian/Julian calendars for jQuery.
Written by Esteban Acosta Villafane ([email protected]) of Globant (http://www.globant.com). */
(function($) {
$.calendars.calendars.gregorian.prototype.regionalOptions['es-AR'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
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é','Juv','Vie','Sáb'],
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
digits: null,
dateFormat: 'dd/mm/yyyy',
firstDay: 0,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions['es-AR'] =
$.calendars.calendars.gregorian.prototype.regionalOptions['es-AR'];
}
})(jQuery);