grid.locale-cs.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /**
  2. * jqGrid Czech Translation
  3. * Pavel Jirak pavel.jirak@jipas.cz
  4. * doplnil Thomas Wagner xwagne01@stud.fit.vutbr.cz
  5. * http://trirand.com/blog/
  6. * Dual licensed under the MIT and GPL licenses:
  7. * http://www.opensource.org/licenses/mit-license.php
  8. * http://www.gnu.org/licenses/gpl.html
  9. **/
  10. /*global jQuery, define */
  11. (function( factory ) {
  12. "use strict";
  13. if ( typeof define === "function" && define.amd ) {
  14. // AMD. Register as an anonymous module.
  15. define([
  16. "jquery",
  17. "../grid.base"
  18. ], factory );
  19. } else {
  20. // Browser globals
  21. factory( jQuery );
  22. }
  23. }(function( $ ) {
  24. $.jgrid = $.jgrid || {};
  25. if(!$.jgrid.hasOwnProperty("regional")) {
  26. $.jgrid.regional = [];
  27. }
  28. $.jgrid.regional["cs"] = {
  29. defaults : {
  30. recordtext: "Zobrazeno {0} - {1} z {2} záznamů",
  31. emptyrecords: "Nenalezeny žádné záznamy",
  32. loadtext: "Načítám...",
  33. savetext: "Saving...",
  34. pgtext : "Strana {0} z {1}",
  35. pgfirst : "First Page",
  36. pglast : "Last Page",
  37. pgnext : "Next Page",
  38. pgprev : "Previous Page",
  39. pgrecs : "Records per Page",
  40. showhide: "Toggle Expand Collapse Grid",
  41. // mobile
  42. pagerCaption : "Grid::Page Settings",
  43. pageText : "Page:",
  44. recordPage : "Records per Page",
  45. nomorerecs : "No more records...",
  46. scrollPullup: "Pull up to load more...",
  47. scrollPulldown : "Pull down to refresh...",
  48. scrollRefresh : "Release to refresh..."
  49. },
  50. search : {
  51. caption: "Vyhledávám...",
  52. Find: "Hledat",
  53. Reset: "Reset",
  54. odata: [{ oper:'eq', text:"rovno"},{ oper:'ne', text:"nerovno"},{ oper:'lt', text:"menší"},{ oper:'le', text:"menší nebo rovno"},{ oper:'gt', text:"větší"},{ oper:'ge', text:"větší nebo rovno"},{ oper:'bw', text:"začíná s"},{ oper:'bn', text:"nezačíná s"},{ oper:'in', text:"je v"},{ oper:'ni', text:"není v"},{ oper:'ew', text:"končí s"},{ oper:'en', text:"nekončí s"},{ oper:'cn', text:"obsahuje"},{ oper:'nc', text:"neobsahuje"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}, {oper:'bt', text:'between'}],
  55. groupOps: [ { op: "AND", text: "všech" }, { op: "OR", text: "některého z" } ],
  56. operandTitle : "Click to select search operation.",
  57. resetTitle : "Reset Search Value"
  58. },
  59. edit : {
  60. addCaption: "Přidat záznam",
  61. editCaption: "Editace záznamu",
  62. bSubmit: "Uložit",
  63. bCancel: "Storno",
  64. bClose: "Zavřít",
  65. saveData: "Data byla změněna! Uložit změny?",
  66. bYes : "Ano",
  67. bNo : "Ne",
  68. bExit : "Zrušit",
  69. msg: {
  70. required:"Pole je vyžadováno",
  71. number:"Prosím, vložte validní číslo",
  72. minValue:"hodnota musí být větší než nebo rovná ",
  73. maxValue:"hodnota musí být menší než nebo rovná ",
  74. email: "není validní e-mail",
  75. integer: "Prosím, vložte celé číslo",
  76. date: "Prosím, vložte validní datum",
  77. url: "není platnou URL. Vyžadován prefix ('http://' or 'https://')",
  78. nodefined : " není definován!",
  79. novalue : " je vyžadována návratová hodnota!",
  80. customarray : "Custom function mělá vrátit pole!",
  81. customfcheck : "Custom function by měla být přítomna v případě custom checking!"
  82. }
  83. },
  84. view : {
  85. caption: "Zobrazit záznam",
  86. bClose: "Zavřít"
  87. },
  88. del : {
  89. caption: "Smazat",
  90. msg: "Smazat vybraný(é) záznam(y)?",
  91. bSubmit: "Smazat",
  92. bCancel: "Storno"
  93. },
  94. nav : {
  95. edittext: " ",
  96. edittitle: "Editovat vybraný řádek",
  97. addtext:" ",
  98. addtitle: "Přidat nový řádek",
  99. deltext: " ",
  100. deltitle: "Smazat vybraný záznam ",
  101. searchtext: " ",
  102. searchtitle: "Najít záznamy",
  103. refreshtext: "",
  104. refreshtitle: "Obnovit tabulku",
  105. alertcap: "Varování",
  106. alerttext: "Prosím, vyberte řádek",
  107. viewtext: "",
  108. viewtitle: "Zobrazit vybraný řádek",
  109. savetext: "",
  110. savetitle: "Save row",
  111. canceltext: "",
  112. canceltitle : "Cancel row editing",
  113. selectcaption : "Actions..."
  114. },
  115. col : {
  116. caption: "Zobrazit/Skrýt sloupce",
  117. bSubmit: "Uložit",
  118. bCancel: "Storno"
  119. },
  120. errors : {
  121. errcap : "Chyba",
  122. nourl : "Není nastavena url",
  123. norecords: "Žádné záznamy ke zpracování",
  124. model : "Délka colNames <> colModel!"
  125. },
  126. formatter : {
  127. integer : {thousandsSeparator: " ", defaultValue: '0'},
  128. number : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, defaultValue: '0.00'},
  129. currency : {decimalSeparator:".", thousandsSeparator: " ", decimalPlaces: 2, prefix: "", suffix:"", defaultValue: '0.00'},
  130. date : {
  131. dayNames: [
  132. "Ne", "Po", "Út", "St", "Čt", "Pá", "So",
  133. "Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"
  134. ],
  135. monthNames: [
  136. "Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čvc", "Srp", "Zář", "Říj", "Lis", "Pro",
  137. "Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"
  138. ],
  139. AmPm : ["do","od","DO","OD"],
  140. S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},
  141. srcformat: 'Y-m-d',
  142. newformat: 'd/m/Y',
  143. parseRe : /[#%\\\/:_;.,\t\s-]/,
  144. masks : {
  145. ISO8601Long:"Y-m-d H:i:s",
  146. ISO8601Short:"Y-m-d",
  147. ShortDate: "n/j/Y",
  148. LongDate: "l, F d, Y",
  149. FullDateTime: "l, F d, Y g:i:s A",
  150. MonthDay: "F d",
  151. ShortTime: "g:i A",
  152. LongTime: "g:i:s A",
  153. SortableDateTime: "Y-m-d\\TH:i:s",
  154. UniversalSortableDateTime: "Y-m-d H:i:sO",
  155. YearMonth: "F, Y"
  156. },
  157. reformatAfterEdit : false,
  158. userLocalTime : false
  159. },
  160. baseLinkUrl: '',
  161. showAction: '',
  162. target: '',
  163. checkbox : {disabled:true},
  164. idName : 'id'
  165. },
  166. colmenu : {
  167. sortasc : "Sort Ascending",
  168. sortdesc : "Sort Descending",
  169. columns : "Columns",
  170. filter : "Filter",
  171. grouping : "Group By",
  172. ungrouping : "Ungroup",
  173. searchTitle : "Get items with value that:",
  174. freeze : "Freeze",
  175. unfreeze : "Unfreeze",
  176. reorder : "Move to reorder"
  177. }
  178. };
  179. }));