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
65
66
67
68
69
70
71
72
73
|
/*
@license
dhtmlxScheduler v.4.4.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: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"],
month_short: ["Sty", "Lut", "Mar", "Kwi", "Maj", "Cze", "Lip", "Sie", "Wrz", "Paź", "Lis", "Gru"],
day_full: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota"],
day_short: ["Nie", "Pon", "Wto", "Śro", "Czw", "Pią", "Sob"]
},
labels: {
dhx_cal_today_button: "Dziś",
day_tab: "Dzień",
week_tab: "Tydzień",
month_tab: "Miesiąc",
new_event: "Nowe zdarzenie",
icon_save: "Zapisz",
icon_cancel: "Anuluj",
icon_details: "Szczegóły",
icon_edit: "Edytuj",
icon_delete: "Usuń",
confirm_closing: "", //Zmiany zostaną usunięte, jesteś pewien?
confirm_deleting: "Zdarzenie zostanie usunięte na zawsze, kontynuować?",
section_description: "Opis",
section_time: "Okres czasu",
full_day: "Cały dzień",
/*recurring events*/
confirm_recurring: "Czy chcesz edytować cały zbiór powtarzających się zdarzeń?",
section_recurring: "Powtórz zdarzenie",
button_recurring: "Nieaktywne",
button_recurring_open: "Aktywne",
button_edit_series: "Edytuj serię",
button_edit_occurrence: "Edytuj kopię",
/*agenda view extension*/
agenda_tab: "Agenda",
date: "Data",
description: "Opis",
/*year view extension*/
year_tab: "Rok",
/*week agenda view extension*/
week_agenda_tab: "Agenda",
/*grid view extension*/
grid_tab: "Tabela",
/* touch tooltip*/
drag_to_create:"Drag to create",
drag_to_move:"Drag to move",
/* dhtmlx message default buttons */
message_ok:"OK",
message_cancel:"Cancel",
/* wai aria labels for non-text controls */
next: "Next",
prev: "Previous",
year: "Year",
month: "Month",
day: "Day",
hour:"Hour",
minute: "Minute"
}
};
|