hr_HR.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* eslint-disable no-template-curly-in-string */
  2. import Pagination from '../vc-pagination/locale/hr_HR';
  3. import DatePicker from '../date-picker/locale/hr_HR';
  4. import TimePicker from '../time-picker/locale/hr_HR';
  5. import Calendar from '../calendar/locale/hr_HR';
  6. const typeTemplate = '${label} nije valjan ${type}';
  7. const localeValues = {
  8. locale: 'hr',
  9. Pagination,
  10. DatePicker,
  11. TimePicker,
  12. Calendar,
  13. global: {
  14. placeholder: 'Molimo označite'
  15. },
  16. Table: {
  17. filterTitle: 'Filter meni',
  18. filterConfirm: 'OK',
  19. filterReset: 'Reset',
  20. filterEmptyText: 'Nema filtera',
  21. emptyText: 'Nema podataka',
  22. selectAll: 'Označi trenutnu stranicu',
  23. selectInvert: 'Invertiraj trenutnu stranicu',
  24. selectionAll: 'Odaberite sve podatke',
  25. sortTitle: 'Sortiraj',
  26. expand: 'Proširi redak',
  27. collapse: 'Sažmi redak',
  28. triggerDesc: 'Kliknite za sortiranje silazno',
  29. triggerAsc: 'Kliknite za sortiranje uzlazno',
  30. cancelSort: 'Kliknite da biste otkazali sortiranje'
  31. },
  32. Modal: {
  33. okText: 'OK',
  34. cancelText: 'Odustani',
  35. justOkText: 'OK'
  36. },
  37. Popconfirm: {
  38. okText: 'OK',
  39. cancelText: 'Odustani'
  40. },
  41. Transfer: {
  42. titles: ['', ''],
  43. searchPlaceholder: 'Pretraži ovdje',
  44. itemUnit: 'stavka',
  45. itemsUnit: 'stavke',
  46. remove: 'Ukloniti',
  47. selectCurrent: 'Odaberite trenutnu stranicu',
  48. removeCurrent: 'Ukloni trenutnu stranicu',
  49. selectAll: 'Odaberite sve podatke',
  50. removeAll: 'Uklonite sve podatke',
  51. selectInvert: 'Obrni trenutnu stranicu'
  52. },
  53. Upload: {
  54. uploading: 'Upload u tijeku...',
  55. removeFile: 'Makni datoteku',
  56. uploadError: 'Greška kod uploada',
  57. previewFile: 'Pogledaj datoteku',
  58. downloadFile: 'Preuzmi datoteku'
  59. },
  60. Empty: {
  61. description: 'Nema podataka'
  62. },
  63. Icon: {
  64. icon: 'ikona'
  65. },
  66. Text: {
  67. edit: 'Uredi',
  68. copy: 'Kopiraj',
  69. copied: 'Kopiranje uspješno',
  70. expand: 'Proširi'
  71. },
  72. PageHeader: {
  73. back: 'Natrag'
  74. },
  75. Form: {
  76. optional: '(neobavezno)',
  77. defaultValidateMessages: {
  78. default: 'Pogreška provjere valjanosti polja za ${label}',
  79. required: 'Molimo unesite ${label}',
  80. enum: '${label} mora biti jedan od [${enum}]',
  81. whitespace: '${label} ne može biti prazan znak',
  82. date: {
  83. format: '${label} format datuma je nevažeći',
  84. parse: '${label} ne može se pretvoriti u datum',
  85. invalid: '${label} je nevažeći datum'
  86. },
  87. types: {
  88. string: typeTemplate,
  89. method: typeTemplate,
  90. array: typeTemplate,
  91. object: typeTemplate,
  92. number: typeTemplate,
  93. date: typeTemplate,
  94. boolean: typeTemplate,
  95. integer: typeTemplate,
  96. float: typeTemplate,
  97. regexp: typeTemplate,
  98. email: typeTemplate,
  99. url: typeTemplate,
  100. hex: typeTemplate
  101. },
  102. string: {
  103. len: '${label} mora biti ${len} slova',
  104. min: '${label} mora biti najmanje ${min} slova',
  105. max: '${label} mora biti do ${max} slova',
  106. range: '${label} mora biti između ${min}-${max} slova'
  107. },
  108. number: {
  109. len: '${label} mora biti jednak ${len}',
  110. min: '${label} mora biti minimalano ${min}',
  111. max: '${label} mora biti maksimalano ${max}',
  112. range: '${label} mora biti između ${min}-${max}'
  113. },
  114. array: {
  115. len: 'Mora biti ${len} ${label}',
  116. min: 'Najmanje ${min} ${label}',
  117. max: 'Najviše ${max} ${label}',
  118. range: 'Količina ${label} mora biti između ${min}-${max}'
  119. },
  120. pattern: {
  121. mismatch: '${label} ne odgovara obrascu ${pattern}'
  122. }
  123. }
  124. },
  125. Image: {
  126. preview: 'Pregled'
  127. }
  128. };
  129. export default localeValues;