Merge pull request #3553 from ajkl2533/locale/cs-CZ
Add support for Czech
This commit is contained in:
commit
0db5871774
1 changed files with 111 additions and 0 deletions
111
src/locale/lang/cs-CZ.js
Normal file
111
src/locale/lang/cs-CZ.js
Normal file
|
@ -0,0 +1,111 @@
|
||||||
|
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'
|
||||||
|
},
|
||||||
|
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;
|
Loading…
Add table
Reference in a new issue