var text = new Array();

text['today'] = 'Hoy';
text['time'] = 'Hora';

text['dayNamesShort'] = new Array(
'L',
'M',
'X',
'J',
'V',
'S',
'D'
);
text['dayNames'] = new Array(
'Lunes',
'Martes',
'Miercoles',
'Jueves',
'Viernes',
'Sabado',
'Domingo'
);

text['monthNamesShort'] = new Array(
'Ene',
'Feb',
'Mar',
'Abr',
'May',
'Jun',
'Jul',
'Ago',
'Sep',
'Oct',
'Nov',
'Dic'
);

text['monthNames'] = new Array(
'Eneo',
'Febrero',
'Marzo',
'Abril',
'Mayo',
'Junio',
'Julio',
'Agosto',
'Septiembre',
'Octubre',
'Noviembre',
'Diciembre'
);


text['footerDateFormat'] = '%d/%m/%Y',
text['dateFormat'] = '%d/%m/%Y',
text['footerDefaultText'] = 'Selecciona fecha',

text['clear'] = 'Limpiar fecha',
text['prev_year'] = 'Aņo anterior',
text['prev_month'] = 'Mes anterior',
text['next_month'] = 'Mes siguiente',
text['next_year'] = 'Aņo siguiente',
text['close'] = 'Cerrar',


// weekend days (0 - sunday, ... 6 - saturday)
text['weekend'] = "0,6";
text['make_first'] = "Start with %s";


RichCalendar.rc_lang_data['es'] = text;

