mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 21:43:11 +01:00
22 lines
994 B
JavaScript
22 lines
994 B
JavaScript
|
/**
|
||
|
* ES lang variables
|
||
|
*
|
||
|
* Authors : Alvaro Velasco,
|
||
|
* Adolfo Sanz De Diego (asanzdiego) <asanzdiego@yahoo.es>,
|
||
|
* Carlos C Soto (eclipxe) <csoto@sia-solutions.com>
|
||
|
* Eneko Castresana Vara
|
||
|
* Last Updated : July 14, 2006
|
||
|
* TinyMCE Version : 2.0.6.1
|
||
|
*/
|
||
|
|
||
|
tinyMCE.addToLang('',{
|
||
|
insertdate_def_fmt : '%d-%m-%Y',
|
||
|
inserttime_def_fmt : '%H:%M:%S',
|
||
|
insertdate_desc : 'Insertar fecha',
|
||
|
inserttime_desc : 'Insertar hora',
|
||
|
inserttime_months_long : new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"),
|
||
|
inserttime_months_short : new Array("Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"),
|
||
|
inserttime_day_long : new Array("Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"),
|
||
|
inserttime_day_short : new Array("Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom")
|
||
|
});
|