Commit 0db5871774f38a29e8a3dd2d4f32698dd0454465

Authored by Aresn
Committed by GitHub
2 parents 0d7d8b73 77237b50

Merge pull request #3553 from ajkl2533/locale/cs-CZ

Add support for Czech
Showing 1 changed file with 111 additions and 0 deletions   Show diff stats
src/locale/lang/cs-CZ.js 0 → 100644
  1 +import setLang from '../lang';
  2 +
  3 +const lang = {
  4 + i: {
  5 + locale: 'cs-CZ',
  6 + select: {
  7 + placeholder: 'Vybrat',
  8 + noMatch: 'Nenalezeny žádné položky',
  9 + loading: 'Nahrávám'
  10 + },
  11 + table: {
  12 + noDataText: 'Žádná data',
  13 + noFilteredDataText: 'Nenalezeny žádné položky',
  14 + confirmFilter: 'Potvrdit',
  15 + resetFilter: 'Reset',
  16 + clearFilter: 'Vše'
  17 + },
  18 + datepicker: {
  19 + selectDate: 'Vybrat datum',
  20 + selectTime: 'Vybrat čas',
  21 + startTime: 'Začátek',
  22 + endTime: 'Konec',
  23 + clear: 'Vymazat',
  24 + ok: 'OK',
  25 + datePanelLabel: '[mmmm] [yyyy]',
  26 + month: 'Měsíc',
  27 + month1: 'Leden',
  28 + month2: 'Únor',
  29 + month3: 'Březen',
  30 + month4: 'Duben',
  31 + month5: 'Květen',
  32 + month6: 'Červen',
  33 + month7: 'Červenec',
  34 + month8: 'Srpen',
  35 + month9: 'Září',
  36 + month10: 'Říjen',
  37 + month11: 'Listopad',
  38 + month12: 'Prosinec',
  39 + year: 'Rok',
  40 + weekStartDay: '1',
  41 + weeks: {
  42 + sun: 'Ne',
  43 + mon: 'Po',
  44 + tue: 'Út',
  45 + wed: 'St',
  46 + thu: 'Čt',
  47 + fri: 'Pá',
  48 + sat: 'So'
  49 + },
  50 + months: {
  51 + m1: 'Led',
  52 + m2: 'Úno',
  53 + m3: 'Bře',
  54 + m4: 'Dub',
  55 + m5: 'Kvě',
  56 + m6: 'Čer',
  57 + m7: 'Čnc',
  58 + m8: 'Srp',
  59 + m9: 'Zář',
  60 + m10: 'Říj',
  61 + m11: 'Lis',
  62 + m12: 'Pro'
  63 + }
  64 + },
  65 + transfer: {
  66 + titles: {
  67 + source: 'Zdroj',
  68 + target: 'Cíl'
  69 + },
  70 + filterPlaceholder: 'Hledat',
  71 + notFoundText: 'Nenalezeno'
  72 + },
  73 + modal: {
  74 + okText: 'OK',
  75 + cancelText: 'Zrušit'
  76 + },
  77 + poptip: {
  78 + okText: 'OK',
  79 + cancelText: 'Zrušit'
  80 + },
  81 + page: {
  82 + prev: 'Následující',
  83 + next: 'Předchozí',
  84 + total: 'Celkem',
  85 + item: 'položka',
  86 + /* TODO: add third plural form for Czech,
  87 + * If there is 2-4 items the translation should be "položky"
  88 + */
  89 + items: 'položek', // Plural form for 5 or more items
  90 + prev5: 'Předchozích 5 stránek',
  91 + next5: 'Následujících 5 stránek',
  92 + page: 'na stránku',
  93 + goto: 'Jít na',
  94 + p: ''
  95 + },
  96 + rate: {
  97 + star: 'hvězda',
  98 + stars: 'hvězdy' // Plural form for 2-4 items
  99 + /* TODO: add third plural form for Czech,
  100 + * If there is 5 or more items the translation should be "hvězd"
  101 + */
  102 + },
  103 + tree: {
  104 + emptyText: 'Žádná data'
  105 + }
  106 + }
  107 +};
  108 +
  109 +setLang(lang);
  110 +
  111 +export default lang;
0 112 \ No newline at end of file
... ...