hr.mjs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. var hr = {
  2. name: "hr",
  3. el: {
  4. breadcrumb: {
  5. label: "Breadcrumb"
  6. },
  7. colorpicker: {
  8. confirm: "OK",
  9. clear: "O\u010Disti",
  10. defaultLabel: "color picker",
  11. description: "current color is {color}. press enter to select a new color.",
  12. alphaLabel: "pick alpha value",
  13. alphaDescription: "alpha {alpha}, current color is {color}",
  14. hueLabel: "pick hue value",
  15. hueDescription: "hue {hue}, current color is {color}",
  16. svLabel: "pick saturation and brightness value",
  17. svDescription: "saturation {saturation}, brightness {brightness}, current color is {color}",
  18. predefineDescription: "select {value} as the color"
  19. },
  20. datepicker: {
  21. now: "Sada",
  22. today: "Danas",
  23. cancel: "Otka\u017Ei",
  24. clear: "O\u010Disti",
  25. confirm: "OK",
  26. dateTablePrompt: "Use the arrow keys and enter to select the day of the month",
  27. monthTablePrompt: "Use the arrow keys and enter to select the month",
  28. yearTablePrompt: "Use the arrow keys and enter to select the year",
  29. selectedDate: "Selected date",
  30. selectDate: "Odaberi datum",
  31. selectTime: "Odaberi vrijeme",
  32. startDate: "Datum po\u010Detka",
  33. startTime: "Vrijeme po\u010Detka",
  34. endDate: "Datum zavr\u0161etka",
  35. endTime: "Vrijeme zavr\u0161etka",
  36. prevYear: "Prethodna godina",
  37. nextYear: "Sljede\u0107a godina",
  38. prevMonth: "Prethodni mjesec",
  39. nextMonth: "Sljede\u0107i mjesec",
  40. year: "",
  41. month1: "Sije\u010Danj",
  42. month2: "Velja\u010Da",
  43. month3: "O\u017Eujak",
  44. month4: "Travanj",
  45. month5: "Svibanj",
  46. month6: "Lipanj",
  47. month7: "Srpanj",
  48. month8: "Kolovoz",
  49. month9: "Rujan",
  50. month10: "Listopad",
  51. month11: "Studeni",
  52. month12: "Prosinac",
  53. weeks: {
  54. sun: "Ned",
  55. mon: "Pon",
  56. tue: "Uto",
  57. wed: "Sri",
  58. thu: "\u010Cet",
  59. fri: "Pet",
  60. sat: "Sub"
  61. },
  62. weeksFull: {
  63. sun: "Sunday",
  64. mon: "Monday",
  65. tue: "Tuesday",
  66. wed: "Wednesday",
  67. thu: "Thursday",
  68. fri: "Friday",
  69. sat: "Saturday"
  70. },
  71. months: {
  72. jan: "Jan",
  73. feb: "Feb",
  74. mar: "Mar",
  75. apr: "Apr",
  76. may: "May",
  77. jun: "Jun",
  78. jul: "Jul",
  79. aug: "Aug",
  80. sep: "Sep",
  81. oct: "Oct",
  82. nov: "Nov",
  83. dec: "Dec"
  84. }
  85. },
  86. inputNumber: {
  87. decrease: "decrease number",
  88. increase: "increase number"
  89. },
  90. select: {
  91. loading: "U\u010Ditavanje",
  92. noMatch: "Nema prona\u0111enih podataka",
  93. noData: "Nema podataka",
  94. placeholder: "Izaberi"
  95. },
  96. mention: {
  97. loading: "U\u010Ditavanje"
  98. },
  99. dropdown: {
  100. toggleDropdown: "Toggle Dropdown"
  101. },
  102. cascader: {
  103. noMatch: "Nema prona\u0111enih podataka",
  104. loading: "U\u010Ditavanje",
  105. placeholder: "Izaberi",
  106. noData: "Nema podataka"
  107. },
  108. pagination: {
  109. goto: "Idi na",
  110. pagesize: "/stranica",
  111. total: "Ukupno {total}",
  112. pageClassifier: "",
  113. page: "Page",
  114. prev: "Go to previous page",
  115. next: "Go to next page",
  116. currentPage: "page {pager}",
  117. prevPages: "Previous {pager} pages",
  118. nextPages: "Next {pager} pages",
  119. deprecationWarning: "Deprecated usages detected, please refer to the el-pagination documentation for more details"
  120. },
  121. dialog: {
  122. close: "Close this dialog"
  123. },
  124. drawer: {
  125. close: "Close this dialog"
  126. },
  127. messagebox: {
  128. title: "Poruka",
  129. confirm: "OK",
  130. cancel: "Otka\u017Ei",
  131. error: "Pogre\u0161an unos",
  132. close: "Close this dialog"
  133. },
  134. upload: {
  135. deleteTip: "pritisnite izbri\u0161i za brisanje",
  136. delete: "Izbri\u0161i",
  137. preview: "Pregled",
  138. continue: "Nastavak"
  139. },
  140. slider: {
  141. defaultLabel: "slider between {min} and {max}",
  142. defaultRangeStartLabel: "pick start value",
  143. defaultRangeEndLabel: "pick end value"
  144. },
  145. table: {
  146. emptyText: "Nema podataka",
  147. confirmFilter: "Potvrdi",
  148. resetFilter: "Resetiraj",
  149. clearFilter: "Sve",
  150. sumText: "Suma",
  151. selectAllLabel: "Select all rows",
  152. selectRowLabel: "Select this row",
  153. expandRowLabel: "Expand this row",
  154. collapseRowLabel: "Collapse this row",
  155. sortLabel: "Sort by {column}",
  156. filterLabel: "Filter by {column}"
  157. },
  158. tag: {
  159. close: "Close this tag"
  160. },
  161. tour: {
  162. next: "Next",
  163. previous: "Previous",
  164. finish: "Finish",
  165. close: "Close this dialog"
  166. },
  167. tree: {
  168. emptyText: "Nema podataka"
  169. },
  170. transfer: {
  171. noMatch: "Nema prona\u0111enih podataka",
  172. noData: "Nema podataka",
  173. titles: ["Lista 1", "Lista 2"],
  174. filterPlaceholder: "Unesite klju\u010Dnu rije\u010D",
  175. noCheckedFormat: "{total} stavki",
  176. hasCheckedFormat: "{checked}/{total} checked"
  177. },
  178. image: {
  179. error: "FAILED"
  180. },
  181. pageHeader: {
  182. title: "Back"
  183. },
  184. popconfirm: {
  185. confirmButtonText: "Yes",
  186. cancelButtonText: "No"
  187. },
  188. carousel: {
  189. leftArrow: "Carousel arrow left",
  190. rightArrow: "Carousel arrow right",
  191. indicator: "Carousel switch to index {index}"
  192. }
  193. }
  194. };
  195. export { hr as default };
  196. //# sourceMappingURL=hr.mjs.map