ext-locale-cs.js 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /**
  2. * Czech Translations
  3. * Translated by Tomáš Korčák (72)
  4. * 2008/02/08 18:02, Ext-2.0.1
  5. */
  6. Ext.onReady(function() {
  7. if (Ext.Date) {
  8. Ext.Date.monthNames = ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"];
  9. Ext.Date.shortMonthNames = {
  10. "Leden": "Led",
  11. "Únor": "Úno",
  12. "Březen": "Bře",
  13. "Duben": "Dub",
  14. "Květen": "Kvě",
  15. "Červen": "Čer",
  16. "Červenec": "Čvc",
  17. "Srpen": "Srp",
  18. "Září": "Zář",
  19. "Říjen": "Říj",
  20. "Listopad": "Lis",
  21. "Prosinec": "Pro"
  22. };
  23. Ext.Date.getShortMonthName = function(month) {
  24. return Ext.Date.shortMonthNames[Ext.Date.monthNames[month]];
  25. };
  26. Ext.Date.monthNumbers = {
  27. "Leden": 0,
  28. "Únor": 1,
  29. "Březen": 2,
  30. "Duben": 3,
  31. "Květen": 4,
  32. "Červen": 5,
  33. "Červenec": 6,
  34. "Srpen": 7,
  35. "Září": 8,
  36. "Říjen": 9,
  37. "Listopad": 10,
  38. "Prosinec": 11
  39. };
  40. Ext.Date.getMonthNumber = function(name) {
  41. return Ext.Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1).toLowerCase()];
  42. };
  43. Ext.Date.dayNames = ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"];
  44. Ext.Date.getShortDayName = function(day) {
  45. return Ext.Date.dayNames[day].substring(0, 3);
  46. };
  47. }
  48. if (Ext.util && Ext.util.Format) {
  49. Ext.apply(Ext.util.Format, {
  50. thousandSeparator: '.',
  51. decimalSeparator: ',',
  52. currencySign: '\u004b\u010d',
  53. // Czech Koruny
  54. dateFormat: 'd.m.Y'
  55. });
  56. }
  57. });
  58. Ext.define("Ext.locale.cs.view.View", {
  59. override: "Ext.view.View",
  60. emptyText: ""
  61. });
  62. Ext.define("Ext.locale.cs.grid.plugin.DragDrop", {
  63. override: "Ext.grid.plugin.DragDrop",
  64. dragText: "{0} vybraných řádků"
  65. });
  66. Ext.define("Ext.locale.cs.tab.Tab", {
  67. override: "Ext.tab.Tab",
  68. closeText: "Zavřít záložku"
  69. });
  70. Ext.define("Ext.locale.cs.form.field.Base", {
  71. override: "Ext.form.field.Base",
  72. invalidText: "Hodnota v tomto poli je neplatná"
  73. });
  74. // changing the msg text below will affect the LoadMask
  75. Ext.define("Ext.locale.cs.view.AbstractView", {
  76. override: "Ext.view.AbstractView",
  77. loadingText: "Prosím čekejte..."
  78. });
  79. Ext.define("Ext.locale.cs.picker.Date", {
  80. override: "Ext.picker.Date",
  81. todayText: "Dnes",
  82. minText: "Datum nesmí být starší než je minimální",
  83. maxText: "Datum nesmí být dřívější než je maximální",
  84. disabledDaysText: "",
  85. disabledDatesText: "",
  86. nextText: 'Následující měsíc (Control+Right)',
  87. prevText: 'Předcházející měsíc (Control+Left)',
  88. monthYearText: 'Zvolte měsíc (ke změně let použijte Control+Up/Down)',
  89. todayTip: "{0} (Spacebar)",
  90. format: "d.m.Y",
  91. startDay: 1
  92. });
  93. Ext.define("Ext.locale.cs.picker.Month", {
  94. override: "Ext.picker.Month",
  95. okText: " OK ",
  96. cancelText: "Storno"
  97. });
  98. Ext.define("Ext.locale.cs.toolbar.Paging", {
  99. override: "Ext.PagingToolbar",
  100. beforePageText: "Strana",
  101. afterPageText: "z {0}",
  102. firstText: "První strana",
  103. prevText: "Přecházející strana",
  104. nextText: "Následující strana",
  105. lastText: "Poslední strana",
  106. refreshText: "Aktualizovat",
  107. displayMsg: "Zobrazeno {0} - {1} z celkových {2}",
  108. emptyMsg: 'Žádné záznamy nebyly nalezeny'
  109. });
  110. Ext.define("Ext.locale.cs.form.field.Text", {
  111. override: "Ext.form.field.Text",
  112. minLengthText: "Pole nesmí mít méně {0} znaků",
  113. maxLengthText: "Pole nesmí být delší než {0} znaků",
  114. blankText: "Povinné pole",
  115. regexText: "",
  116. emptyText: null
  117. });
  118. Ext.define("Ext.locale.cs.form.field.Number", {
  119. override: "Ext.form.field.Number",
  120. minText: "Hodnota v tomto poli nesmí být menší než {0}",
  121. maxText: "Hodnota v tomto poli nesmí být větší než {0}",
  122. nanText: "{0} není platné číslo"
  123. });
  124. Ext.define("Ext.locale.cs.form.field.Date", {
  125. override: "Ext.form.field.Date",
  126. disabledDaysText: "Neaktivní",
  127. disabledDatesText: "Neaktivní",
  128. minText: "Datum v tomto poli nesmí být starší než {0}",
  129. maxText: "Datum v tomto poli nesmí být novější než {0}",
  130. invalidText: "{0} není platným datem - zkontrolujte zda-li je ve formátu {1}",
  131. format: "d.m.Y",
  132. altFormats: "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d"
  133. });
  134. Ext.define("Ext.locale.cs.form.field.ComboBox", {
  135. override: "Ext.form.field.ComboBox",
  136. valueNotFoundText: undefined
  137. }, function() {
  138. Ext.apply(Ext.form.field.ComboBox.prototype.defaultListConfig, {
  139. loadingText: "Prosím čekejte..."
  140. });
  141. });
  142. Ext.define("Ext.locale.cs.form.field.VTypes", {
  143. override: "Ext.form.field.VTypes",
  144. emailText: 'V tomto poli může být vyplněna pouze emailová adresa ve formátu "uživatel@doména.cz"',
  145. urlText: 'V tomto poli může být vyplněna pouze URL (adresa internetové stránky) ve formátu "http:/' + '/www.doména.cz"',
  146. alphaText: 'Toto pole může obsahovat pouze písmena abecedy a znak _',
  147. alphanumText: 'Toto pole může obsahovat pouze písmena abecedy, čísla a znak _'
  148. });
  149. Ext.define("Ext.locale.cs.form.field.HtmlEditor", {
  150. override: "Ext.form.field.HtmlEditor",
  151. createLinkText: 'Zadejte URL adresu odkazu:'
  152. }, function() {
  153. Ext.apply(Ext.form.field.HtmlEditor.prototype, {
  154. buttonTips: {
  155. bold: {
  156. title: 'Tučné (Ctrl+B)',
  157. text: 'Označí vybraný text tučně.',
  158. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  159. },
  160. italic: {
  161. title: 'Kurzíva (Ctrl+I)',
  162. text: 'Označí vybraný text kurzívou.',
  163. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  164. },
  165. underline: {
  166. title: 'Podtržení (Ctrl+U)',
  167. text: 'Podtrhne vybraný text.',
  168. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  169. },
  170. increasefontsize: {
  171. title: 'Zvětšit písmo',
  172. text: 'Zvětší velikost písma.',
  173. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  174. },
  175. decreasefontsize: {
  176. title: 'Zúžit písmo',
  177. text: 'Zmenší velikost písma.',
  178. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  179. },
  180. backcolor: {
  181. title: 'Barva zvýraznění textu',
  182. text: 'Označí vybraný text tak, aby vypadal jako označený zvýrazňovačem.',
  183. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  184. },
  185. forecolor: {
  186. title: 'Barva písma',
  187. text: 'Změní barvu textu.',
  188. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  189. },
  190. justifyleft: {
  191. title: 'Zarovnat text vlevo',
  192. text: 'Zarovná text doleva.',
  193. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  194. },
  195. justifycenter: {
  196. title: 'Zarovnat na střed',
  197. text: 'Zarovná text na střed.',
  198. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  199. },
  200. justifyright: {
  201. title: 'Zarovnat text vpravo',
  202. text: 'Zarovná text doprava.',
  203. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  204. },
  205. insertunorderedlist: {
  206. title: 'Odrážky',
  207. text: 'Začne seznam s odrážkami.',
  208. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  209. },
  210. insertorderedlist: {
  211. title: 'Číslování',
  212. text: 'Začne číslovaný seznam.',
  213. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  214. },
  215. createlink: {
  216. title: 'Internetový odkaz',
  217. text: 'Z vybraného textu vytvoří internetový odkaz.',
  218. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  219. },
  220. sourceedit: {
  221. title: 'Zdrojový kód',
  222. text: 'Přepne do módu úpravy zdrojového kódu.',
  223. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  224. }
  225. }
  226. });
  227. });
  228. Ext.define("Ext.locale.cs.grid.header.Container", {
  229. override: "Ext.grid.header.Container",
  230. sortAscText: "Řadit vzestupně",
  231. sortDescText: "Řadit sestupně",
  232. lockText: "Ukotvit sloupec",
  233. unlockText: "Uvolnit sloupec",
  234. columnsText: "Sloupce"
  235. });
  236. Ext.define("Ext.locale.cs.grid.GroupingFeature", {
  237. override: "Ext.grid.feature.Grouping",
  238. emptyGroupText: '(Žádná data)',
  239. groupByText: 'Seskupit dle tohoto pole',
  240. showGroupsText: 'Zobrazit ve skupině'
  241. });
  242. Ext.define("Ext.locale.cs.grid.PropertyColumnModel", {
  243. override: "Ext.grid.PropertyColumnModel",
  244. nameText: "Název",
  245. valueText: "Hodnota",
  246. dateFormat: "j.m.Y"
  247. });
  248. Ext.define("Ext.locale.cs.form.field.File", {
  249. override: "Ext.form.field.File",
  250. buttonText: "Procházet..."
  251. });
  252. Ext.define("Ext.locale.cs.window.MessageBox", {
  253. override: "Ext.window.MessageBox",
  254. buttonText: {
  255. ok: "OK",
  256. cancel: "Storno",
  257. yes: "Ano",
  258. no: "Ne"
  259. }
  260. });
  261. // This is needed until we can refactor all of the locales into individual files
  262. Ext.define("Ext.locale.cs.Component", {
  263. override: "Ext.Component"
  264. });