var text = new Array();

text['today'] = 'Hoy';
text['time'] = 'Hora';

text['dayNamesShort'] = new Array(
'Dom',
'Lun',
'Mar',
'Mie',
'Jue',
'Vie',
'Sab'
);
text['dayNames'] = new Array(
'Domingo',
'Lunes',
'Martes',
'Miercoles',
'Jueves',
'Viernes',
'Sabado'
);

text['monthNamesShort'] = new Array(
'Ene',
'Feb',
'Mar',
'Abr',
'May',
'Jun',
'Jul',
'Ago',
'Sep',
'Oct',
'Nov',
'Dic'
);

text['monthNames'] = new Array(
'Enero',
'Febrero',
'Marzo',
'Abril',
'Mayo',
'Junio',
'Julio',
'Agosto',
'Septiembre',
'Octubre',
'Noviembre',
'Diciembre'
);


text['footerDateFormat'] = '%D, %F %j %Y',
text['dateFormat'] = '%n-%j-%Y',
text['footerDefaultText'] = 'Seleccionar Fecha',

text['clear'] = 'Clear Date',
text['prev_year'] = 'Previous year',
text['prev_month'] = 'Previous month',
text['next_month'] = 'Next month',
text['next_year'] = 'Next year',
text['close'] = 'Close',


// weekend days (0 - sunday, ... 6 - saturday)
text['weekend'] = "0,6";
text['make_first'] = "Start with %s";


RichCalendar.rc_lang_data['en'] = text;
