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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
| 'use strict';
|
| exports.__esModule = true;
| exports.default = {
| el: {
| colorpicker: {
| confirm: 'OK',
| clear: 'Poništi'
| },
| datepicker: {
| now: 'Sad',
| today: 'Danas',
| cancel: 'Otkaži',
| clear: 'Briši',
| confirm: 'OK',
| selectDate: 'Izaberi datum',
| selectTime: 'Izaberi vreme',
| startDate: 'Datum početka',
| startTime: 'Vreme početka',
| endDate: 'Datum završetka',
| endTime: 'Vreme završetka',
| prevYear: 'Prethodna godina',
| nextYear: 'Sledeća godina',
| prevMonth: 'Prethodni mesec',
| nextMonth: 'Sledeći mesec',
| year: 'godina',
| month1: 'januar',
| month2: 'februar',
| month3: 'mart',
| month4: 'april',
| month5: 'maj',
| month6: 'jun',
| month7: 'jul',
| month8: 'avgust',
| month9: 'septembar',
| month10: 'oktobar',
| month11: 'novembar',
| month12: 'decembar',
| week: 'sedmica',
| weeks: {
| sun: 'Ned',
| mon: 'Pon',
| tue: 'Uto',
| wed: 'Sre',
| thu: 'Čet',
| fri: 'Pet',
| sat: 'Sub'
| },
| months: {
| jan: 'jan',
| feb: 'feb',
| mar: 'mar',
| apr: 'apr',
| may: 'maj',
| jun: 'jun',
| jul: 'jul',
| aug: 'avg',
| sep: 'sep',
| oct: 'okt',
| nov: 'nov',
| dec: 'dev'
| }
| },
| select: {
| loading: 'Učitavanje',
| noMatch: 'Nema rezultata',
| noData: 'Nema podataka',
| placeholder: 'Izaberi'
| },
| cascader: {
| noMatch: 'Nema rezultata',
| loading: 'Učitavanje',
| placeholder: 'Izaberi',
| noData: 'Nema podataka'
| },
| pagination: {
| goto: 'Idi na',
| pagesize: '/strani',
| total: 'Ukupno {total}',
| pageClassifier: ''
| },
| messagebox: {
| title: 'Poruka',
| confirm: 'OK',
| cancel: 'Otkaži',
| error: 'Neisravan unos'
| },
| upload: {
| deleteTip: 'pritisni BRIŠI da obrišeš',
| delete: 'Briši',
| preview: 'Vidi',
| continue: 'Nastavi'
| },
| table: {
| emptyText: 'Nema podataka',
| confirmFilter: 'Potvrdi',
| resetFilter: 'Resetuj',
| clearFilter: 'Sve',
| sumText: 'Zbir'
| },
| tree: {
| emptyText: 'Nema podataka'
| },
| transfer: {
| noMatch: 'Nema rezultata',
| noData: 'Nema podataka',
| titles: ['Lista 1', 'Lista 2'],
| filterPlaceholder: 'Unesi ključnu reč',
| noCheckedFormat: '{total} stavki',
| hasCheckedFormat: '{checked}/{total} obeleženih'
| },
| image: {
| error: 'NEUSPEŠNO'
| },
| pageHeader: {
| title: 'Nazad'
| },
| popconfirm: {
| confirmButtonText: 'Da',
| cancelButtonText: 'Ne'
| },
| empty: {
| description: 'Nema podataka'
| }
| }
| };
|
|