1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
dhtmlxScheduler v.4.3.0 Stardard
This software is covered by GPL license. You also can obtain Commercial or Enterprise license to use it in non-GPL project - please contact sales@dhtmlx.com. Usage without proper license is prohibited.
(c) Dinamenta, UAB.
*/
/*
@Autor Manuel Fernandez Panzuela - www.mfernandez.es
*/
scheduler.locale = {
date: {
month_full: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"],
month_short: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"],
day_full: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado"],
day_short: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"]
},
labels: {
dhx_cal_today_button: "Hoy",
day_tab: "Día",
week_tab: "Semana",
month_tab: "Mes",
new_event: "Nuevo evento",
icon_save: "Guardar",
icon_cancel: "Cancelar",
icon_details: "Detalles",
icon_edit: "Editar",
icon_delete: "Eliminar",
confirm_closing: "", //"Sus cambios se perderán, continuar ?"
confirm_deleting: "El evento se borrará definitivamente, ¿continuar?",
section_description: "Descripción",
section_time: "Período",
full_day: "Todo el día",
confirm_recurring: "¿Desea modificar el conjunto de eventos repetidos?",
section_recurring: "Repita el evento",
button_recurring: "Impedido",
button_recurring_open: "Permitido",
button_edit_series: "Editar la serie",
button_edit_occurrence: "Editar una copia",
/*agenda view extension*/
agenda_tab: "Día",
date: "Fecha",
description: "Descripción",
/*year view extension*/
year_tab: "Año",
/*week agenda view extension*/
week_agenda_tab: "Día",
/*grid view extension*/
grid_tab: "Reja",
/* touch tooltip*/
drag_to_create:"Drag to create",
drag_to_move:"Drag to move",
/* dhtmlx message default buttons */
message_ok:"OK",
message_cancel:"Cancel"
}
};
|