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
| import setLang from '../lang';
|
| const lang = {
| i: {
| locale: 'cs-CZ',
| select: {
| placeholder: 'Vybrat',
| noMatch: 'Nenalezeny žádné položky',
| loading: 'Nahrávám'
| },
| table: {
| noDataText: 'Žádná data',
| noFilteredDataText: 'Nenalezeny žádné položky',
| confirmFilter: 'Potvrdit',
| resetFilter: 'Reset',
| clearFilter: 'Vše',
| sumText: 'Sum'
| },
| datepicker: {
| selectDate: 'Vybrat datum',
| selectTime: 'Vybrat čas',
| startTime: 'Začátek',
| endTime: 'Konec',
| clear: 'Vymazat',
| ok: 'OK',
| datePanelLabel: '[mmmm] [yyyy]',
| month: 'Měsíc',
| month1: 'Leden',
| month2: 'Únor',
| month3: 'Březen',
| month4: 'Duben',
| month5: 'Květen',
| month6: 'Červen',
| month7: 'Červenec',
| month8: 'Srpen',
| month9: 'Září',
| month10: 'Říjen',
| month11: 'Listopad',
| month12: 'Prosinec',
| year: 'Rok',
| weekStartDay: '1',
| weeks: {
| sun: 'Ne',
| mon: 'Po',
| tue: 'Út',
| wed: 'St',
| thu: 'Čt',
| fri: 'Pá',
| sat: 'So'
| },
| months: {
| m1: 'Led',
| m2: 'Úno',
| m3: 'Bře',
| m4: 'Dub',
| m5: 'Kvě',
| m6: 'Čer',
| m7: 'Čnc',
| m8: 'Srp',
| m9: 'Zář',
| m10: 'Říj',
| m11: 'Lis',
| m12: 'Pro'
| }
| },
| transfer: {
| titles: {
| source: 'Zdroj',
| target: 'Cíl'
| },
| filterPlaceholder: 'Hledat',
| notFoundText: 'Nenalezeno'
| },
| modal: {
| okText: 'OK',
| cancelText: 'Zrušit'
| },
| poptip: {
| okText: 'OK',
| cancelText: 'Zrušit'
| },
| page: {
| prev: 'Následující',
| next: 'Předchozí',
| total: 'Celkem',
| item: 'položka',
| /* TODO: add third plural form for Czech,
| * If there is 2-4 items the translation should be "položky"
| */
| items: 'položek', // Plural form for 5 or more items
| prev5: 'Předchozích 5 stránek',
| next5: 'Následujících 5 stránek',
| page: 'na stránku',
| goto: 'Jít na',
| p: ''
| },
| rate: {
| star: 'hvězda',
| stars: 'hvězdy' // Plural form for 2-4 items
| /* TODO: add third plural form for Czech,
| * If there is 5 or more items the translation should be "hvězd"
| */
| },
| tree: {
| emptyText: 'Žádná data'
| }
| }
| };
|
| setLang(lang);
|
| export default lang;
|
|