forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendars-gl.js
24 lines (24 loc) · 982 Bytes
/
jquery.calendars-gl.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
Iniciacion en galego para a extensión 'UI date picker' para jQuery.
Traducido por Manuel (McNuel@gmx.net). */
(function($) {
$.calendars.calendars.gregorian.prototype.regionalOptions['gl'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño',
'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'],
monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ',
'Xul','Ago','Set','Out','Nov','Dec'],
dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'],
dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'],
dayNamesMin: ['Do','Lu','Ma','Me','Xo','Ve','Sá'],
digits: null,
dateFormat: 'dd/mm/yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regionalOptions['gl'] =
$.calendars.calendars.gregorian.prototype.regionalOptions['gl'];
}
})(jQuery);