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
|
/*
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.
*/
scheduler.locale = {
date: {
month_full: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"],
month_short: ["Led", "Ún", "Bře", "Dub", "Kvě", "Čer", "Čec", "Srp", "Září", "Říj", "List", "Pro"],
day_full: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"],
day_short: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"]
},
labels: {
dhx_cal_today_button: "Dnes",
day_tab: "Den",
week_tab: "Týden",
month_tab: "Měsíc",
new_event: "Nová událost",
icon_save: "Uložit",
icon_cancel: "Zpět",
icon_details: "Detail",
icon_edit: "Edituj",
icon_delete: "Smazat",
confirm_closing: "", //Vaše změny budou ztraceny, opravdu ?
confirm_deleting: "Událost bude trvale smazána, opravdu?",
section_description: "Poznámky",
section_time: "Doba platnosti",
/*recurring events*/
confirm_recurring: "Přejete si upravit celou řadu opakovaných událostí?",
section_recurring: "Opakování události",
button_recurring: "Vypnuto",
button_recurring_open: "Zapnuto",
button_edit_series: "Edit series",
button_edit_occurrence: "Upravit instance",
/*agenda view extension*/
agenda_tab: "Program",
date: "Datum",
description: "Poznámka",
/*year view extension*/
year_tab: "Rok",
full_day: "Full day",
/*week agenda view extension*/
week_agenda_tab: "Program",
/*grid view extension*/
grid_tab: "Mřížka",
/* touch tooltip*/
drag_to_create:"Drag to create",
drag_to_move:"Drag to move",
/* dhtmlx message default buttons */
message_ok:"OK",
message_cancel:"Cancel"
}
};
|