[76] | 1 | /*! |
---|
| 2 | * Ext JS Library 3.4.0 |
---|
| 3 | * Copyright(c) 2006-2011 Sencha Inc. |
---|
| 4 | * licensing@sencha.com |
---|
| 5 | * http://www.sencha.com/license |
---|
| 6 | */ |
---|
| 7 | /** |
---|
| 8 | * Czech Translations |
---|
| 9 | * Translated by Tomáš KorÄák (72) |
---|
| 10 | * 2008/02/08 18:02, Ext-2.0.1 |
---|
| 11 | */ |
---|
| 12 | |
---|
| 13 | Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">ProsÃm Äekejte...</div>'; |
---|
| 14 | |
---|
| 15 | if(Ext.View){ |
---|
| 16 | Ext.View.prototype.emptyText = ""; |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | if(Ext.grid.GridPanel){ |
---|
| 20 | Ext.grid.GridPanel.prototype.ddText = "{0} vybranÃœch Åádků"; |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | if(Ext.TabPanelItem){ |
---|
| 24 | Ext.TabPanelItem.prototype.closeText = "ZavÅÃt záloÅŸku"; |
---|
| 25 | } |
---|
| 26 | |
---|
| 27 | if(Ext.form.Field){ |
---|
| 28 | Ext.form.Field.prototype.invalidText = "Hodnota v tomto poli je neplatná"; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | if(Ext.LoadMask){ |
---|
| 32 | Ext.LoadMask.prototype.msg = "ProsÃm Äekejte..."; |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | Date.monthNames = [ |
---|
| 36 | "Leden", |
---|
| 37 | "Ãnor", |
---|
| 38 | "BÅezen", |
---|
| 39 | "Duben", |
---|
| 40 | "KvÄten", |
---|
| 41 | "Äerven", |
---|
| 42 | "Äervenec", |
---|
| 43 | "Srpen", |
---|
| 44 | "ZáÅÃ", |
---|
| 45 | "ÅÃjen", |
---|
| 46 | "Listopad", |
---|
| 47 | "Prosinec" |
---|
| 48 | ]; |
---|
| 49 | |
---|
| 50 | Date.shortMonthNames = { |
---|
| 51 | "Leden" : "Led", |
---|
| 52 | "Ãnor" : "Ãno", |
---|
| 53 | "BÅezen" : "BÅe", |
---|
| 54 | "Duben" : "Dub", |
---|
| 55 | "KvÄten" : "KvÄ", |
---|
| 56 | "Äerven" : "Äer", |
---|
| 57 | "Äervenec" : "Ävc", |
---|
| 58 | "Srpen" : "Srp", |
---|
| 59 | "ZáÅÃ" : "ZáÅ", |
---|
| 60 | "ÅÃjen" : "ÅÃj", |
---|
| 61 | "Listopad" : "Lis", |
---|
| 62 | "Prosinec" : "Pro" |
---|
| 63 | }; |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | Date.getShortMonthName = function(month) { |
---|
| 67 | return Date.shortMonthNames[Date.monthNames[month]]; |
---|
| 68 | }; |
---|
| 69 | |
---|
| 70 | Date.monthNumbers = { |
---|
| 71 | "Leden" : 0, |
---|
| 72 | "Ãnor" : 1, |
---|
| 73 | "BÅezen" : 2, |
---|
| 74 | "Duben" : 3, |
---|
| 75 | "KvÄten" : 4, |
---|
| 76 | "Äerven" : 5, |
---|
| 77 | "Äervenec" : 6, |
---|
| 78 | "Srpen" : 7, |
---|
| 79 | "ZáÅÃ" : 8, |
---|
| 80 | "ÅÃjen" : 9, |
---|
| 81 | "Listopad" : 10, |
---|
| 82 | "Prosinec" : 11 |
---|
| 83 | }; |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | Date.getMonthNumber = function(name) { |
---|
| 87 | return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase()]; |
---|
| 88 | }; |
---|
| 89 | |
---|
| 90 | Date.dayNames = [ |
---|
| 91 | "NedÄle", |
---|
| 92 | "PondÄlÃ", |
---|
| 93 | "ÃterÃœ", |
---|
| 94 | "StÅeda", |
---|
| 95 | "Ätvrtek", |
---|
| 96 | "Pátek", |
---|
| 97 | "Sobota" |
---|
| 98 | ]; |
---|
| 99 | |
---|
| 100 | Date.getShortDayName = function(day) { |
---|
| 101 | return Date.dayNames[day].substring(0, 3); |
---|
| 102 | }; |
---|
| 103 | |
---|
| 104 | if(Ext.MessageBox){ |
---|
| 105 | Ext.MessageBox.buttonText = { |
---|
| 106 | ok : "OK", |
---|
| 107 | cancel : "Storno", |
---|
| 108 | yes : "Ano", |
---|
| 109 | no : "Ne" |
---|
| 110 | }; |
---|
| 111 | } |
---|
| 112 | |
---|
| 113 | if(Ext.util.Format){ |
---|
| 114 | Ext.util.Format.date = function(v, format){ |
---|
| 115 | if(!v) return ""; |
---|
| 116 | if(!(v instanceof Date)) v = new Date(Date.parse(v)); |
---|
| 117 | return v.dateFormat(format || "d.m.Y"); |
---|
| 118 | }; |
---|
| 119 | } |
---|
| 120 | |
---|
| 121 | if(Ext.DatePicker){ |
---|
| 122 | Ext.apply(Ext.DatePicker.prototype, { |
---|
| 123 | todayText : "Dnes", |
---|
| 124 | minText : "Datum nesmà bÃœt starÅ¡Ã neÅŸ je minimálnÃ", |
---|
| 125 | maxText : "Datum nesmà bÃœt dÅÃvÄjÅ¡Ã neÅŸ je maximálnÃ", |
---|
| 126 | disabledDaysText : "", |
---|
| 127 | disabledDatesText : "", |
---|
| 128 | monthNames : Date.monthNames, |
---|
| 129 | dayNames : Date.dayNames, |
---|
| 130 | nextText : 'NásledujÃcà mÄsÃc (Control+Right)', |
---|
| 131 | prevText : 'PÅedcházejÃcà mÄsÃc (Control+Left)', |
---|
| 132 | monthYearText : 'Zvolte mÄsÃc (ke zmÄnÄ let pouÅŸijte Control+Up/Down)', |
---|
| 133 | todayTip : "{0} (Spacebar)", |
---|
| 134 | format : "d.m.Y", |
---|
| 135 | okText : " OK ", |
---|
| 136 | cancelText : "Storno", |
---|
| 137 | startDay : 1 |
---|
| 138 | }); |
---|
| 139 | } |
---|
| 140 | |
---|
| 141 | if(Ext.PagingToolbar){ |
---|
| 142 | Ext.apply(Ext.PagingToolbar.prototype, { |
---|
| 143 | beforePageText : "Strana", |
---|
| 144 | afterPageText : "z {0}", |
---|
| 145 | firstText : "Prvnà strana", |
---|
| 146 | prevText : "PÅecházejÃcà strana", |
---|
| 147 | nextText : "NásledujÃcà strana", |
---|
| 148 | lastText : "Poslednà strana", |
---|
| 149 | refreshText : "Aktualizovat", |
---|
| 150 | displayMsg : "Zobrazeno {0} - {1} z celkovÃœch {2}", |
---|
| 151 | emptyMsg : 'Ŝádné záznamy nebyly nalezeny' |
---|
| 152 | }); |
---|
| 153 | } |
---|
| 154 | |
---|
| 155 | if(Ext.form.TextField){ |
---|
| 156 | Ext.apply(Ext.form.TextField.prototype, { |
---|
| 157 | minLengthText : "Pole nesmà mÃt ménÄ {0} znaků", |
---|
| 158 | maxLengthText : "Pole nesmà bÜt delšà neş {0} znaků", |
---|
| 159 | blankText : "This field is required", |
---|
| 160 | regexText : "", |
---|
| 161 | emptyText : null |
---|
| 162 | }); |
---|
| 163 | } |
---|
| 164 | |
---|
| 165 | if(Ext.form.NumberField){ |
---|
| 166 | Ext.apply(Ext.form.NumberField.prototype, { |
---|
| 167 | minText : "Hodnota v tomto poli nesmà bÜt menšà neş {0}", |
---|
| 168 | maxText : "Hodnota v tomto poli nesmà bÃœt vÄtÅ¡Ã neÅŸ {0}", |
---|
| 169 | nanText : "{0} nenà platné ÄÃslo" |
---|
| 170 | }); |
---|
| 171 | } |
---|
| 172 | |
---|
| 173 | if(Ext.form.DateField){ |
---|
| 174 | Ext.apply(Ext.form.DateField.prototype, { |
---|
| 175 | disabledDaysText : "NeaktivnÃ", |
---|
| 176 | disabledDatesText : "NeaktivnÃ", |
---|
| 177 | minText : "Datum v tomto poli nesmà bÜt staršà neş {0}", |
---|
| 178 | maxText : "Datum v tomto poli nesmà bÃœt novÄjÅ¡Ã neÅŸ {0}", |
---|
| 179 | invalidText : "{0} nenà platnÜm datem - zkontrolujte zda-li je ve formátu {1}", |
---|
| 180 | format : "d.m.Y", |
---|
| 181 | altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d", |
---|
| 182 | startDay : 1 |
---|
| 183 | }); |
---|
| 184 | } |
---|
| 185 | |
---|
| 186 | if(Ext.form.ComboBox){ |
---|
| 187 | Ext.apply(Ext.form.ComboBox.prototype, { |
---|
| 188 | loadingText : "ProsÃm Äekejte...", |
---|
| 189 | valueNotFoundText : undefined |
---|
| 190 | }); |
---|
| 191 | } |
---|
| 192 | |
---|
| 193 | if(Ext.form.VTypes){ |
---|
| 194 | Ext.apply(Ext.form.VTypes, { |
---|
| 195 | emailText : 'V tomto poli můşe bÃœt vyplnÄna pouze emailová adresa ve formátu "uÅŸivatel@doména.cz"', |
---|
| 196 | urlText : 'V tomto poli můşe bÃœt vyplnÄna pouze URL (adresa internetové stránky) ve formátu "http:/'+'/www.doména.cz"', |
---|
| 197 | alphaText : 'Toto pole můşe obsahovat pouze pÃsmena abecedy a znak _', |
---|
| 198 | alphanumText : 'Toto pole můşe obsahovat pouze pÃsmena abecedy, ÄÃsla a znak _' |
---|
| 199 | }); |
---|
| 200 | } |
---|
| 201 | |
---|
| 202 | if(Ext.form.HtmlEditor){ |
---|
| 203 | Ext.apply(Ext.form.HtmlEditor.prototype, { |
---|
| 204 | createLinkText : 'Zadejte URL adresu odkazu:', |
---|
| 205 | buttonTips : { |
---|
| 206 | bold : { |
---|
| 207 | title: 'TuÄné (Ctrl+B)', |
---|
| 208 | text: 'OznaÄà vybranÃœ text tuÄnÄ.', |
---|
| 209 | cls: 'x-html-editor-tip' |
---|
| 210 | }, |
---|
| 211 | italic : { |
---|
| 212 | title: 'KurzÃva (Ctrl+I)', |
---|
| 213 | text: 'OznaÄà vybranÃœ text kurzÃvou.', |
---|
| 214 | cls: 'x-html-editor-tip' |
---|
| 215 | }, |
---|
| 216 | underline : { |
---|
| 217 | title: 'Podtrşenà (Ctrl+U)', |
---|
| 218 | text: 'Podtrhne vybranÜ text.', |
---|
| 219 | cls: 'x-html-editor-tip' |
---|
| 220 | }, |
---|
| 221 | increasefontsize : { |
---|
| 222 | title: 'ZvÄtÅ¡it pÃsmo', |
---|
| 223 | text: 'ZvÄtÅ¡Ã velikost pÃsma.', |
---|
| 224 | cls: 'x-html-editor-tip' |
---|
| 225 | }, |
---|
| 226 | decreasefontsize : { |
---|
| 227 | title: 'Zúşit pÃsmo', |
---|
| 228 | text: 'ZmenÅ¡Ã velikost pÃsma.', |
---|
| 229 | cls: 'x-html-editor-tip' |
---|
| 230 | }, |
---|
| 231 | backcolor : { |
---|
| 232 | title: 'Barva zvÃœraznÄnà textu', |
---|
| 233 | text: 'OznaÄà vybranÃœ text tak, aby vypadal jako oznaÄenÃœ zvÃœrazÅovaÄem.', |
---|
| 234 | cls: 'x-html-editor-tip' |
---|
| 235 | }, |
---|
| 236 | forecolor : { |
---|
| 237 | title: 'Barva pÃsma', |
---|
| 238 | text: 'ZmÄnà barvu textu.', |
---|
| 239 | cls: 'x-html-editor-tip' |
---|
| 240 | }, |
---|
| 241 | justifyleft : { |
---|
| 242 | title: 'Zarovnat text vlevo', |
---|
| 243 | text: 'Zarovná text doleva.', |
---|
| 244 | cls: 'x-html-editor-tip' |
---|
| 245 | }, |
---|
| 246 | justifycenter : { |
---|
| 247 | title: 'Zarovnat na stÅed', |
---|
| 248 | text: 'Zarovná text na stÅed.', |
---|
| 249 | cls: 'x-html-editor-tip' |
---|
| 250 | }, |
---|
| 251 | justifyright : { |
---|
| 252 | title: 'Zarovnat text vpravo', |
---|
| 253 | text: 'Zarovná text doprava.', |
---|
| 254 | cls: 'x-html-editor-tip' |
---|
| 255 | }, |
---|
| 256 | insertunorderedlist : { |
---|
| 257 | title: 'Odráşky', |
---|
| 258 | text: 'ZaÄne seznam s odráşkami.', |
---|
| 259 | cls: 'x-html-editor-tip' |
---|
| 260 | }, |
---|
| 261 | insertorderedlist : { |
---|
| 262 | title: 'ÄÃslovánÃ', |
---|
| 263 | text: 'ZaÄne ÄÃslovanÃœ seznam.', |
---|
| 264 | cls: 'x-html-editor-tip' |
---|
| 265 | }, |
---|
| 266 | createlink : { |
---|
| 267 | title: 'InternetovÜ odkaz', |
---|
| 268 | text: 'Z vybraného textu vytvoÅà internetovÃœ odkaz.', |
---|
| 269 | cls: 'x-html-editor-tip' |
---|
| 270 | }, |
---|
| 271 | sourceedit : { |
---|
| 272 | title: 'ZdrojovÜ kód', |
---|
| 273 | text: 'PÅepne do módu úpravy zdrojového kódu.', |
---|
| 274 | cls: 'x-html-editor-tip' |
---|
| 275 | } |
---|
| 276 | } |
---|
| 277 | }); |
---|
| 278 | } |
---|
| 279 | |
---|
| 280 | if(Ext.grid.GridView){ |
---|
| 281 | Ext.apply(Ext.grid.GridView.prototype, { |
---|
| 282 | sortAscText : "Åadit vzestupnÄ", |
---|
| 283 | sortDescText : "Åadit sestupnÄ", |
---|
| 284 | lockText : "Ukotvit sloupec", |
---|
| 285 | unlockText : "Uvolnit sloupec", |
---|
| 286 | columnsText : "Sloupce" |
---|
| 287 | }); |
---|
| 288 | } |
---|
| 289 | |
---|
| 290 | if(Ext.grid.GroupingView){ |
---|
| 291 | Ext.apply(Ext.grid.GroupingView.prototype, { |
---|
| 292 | emptyGroupText : '(Ŝádná data)', |
---|
| 293 | groupByText : 'Seskupit dle tohoto pole', |
---|
| 294 | showGroupsText : 'Zobrazit ve skupinÄ' |
---|
| 295 | }); |
---|
| 296 | } |
---|
| 297 | |
---|
| 298 | if(Ext.grid.PropertyColumnModel){ |
---|
| 299 | Ext.apply(Ext.grid.PropertyColumnModel.prototype, { |
---|
| 300 | nameText : "Název", |
---|
| 301 | valueText : "Hodnota", |
---|
| 302 | dateFormat : "j.m.Y" |
---|
| 303 | }); |
---|
| 304 | } |
---|
| 305 | |
---|
| 306 | if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){ |
---|
| 307 | Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, { |
---|
| 308 | splitTip : "Tahem zmÄnit velikost.", |
---|
| 309 | collapsibleSplitTip : "Tahem zmÄnit velikost. Dvojklikem skrÃœt." |
---|
| 310 | }); |
---|
| 311 | } |
---|