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