You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.7 KiB
134 lines
3.7 KiB
4 years ago
|
/* eslint-disable no-template-curly-in-string */
|
||
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/hr_HR';
|
||
|
import Calendar from '../calendar/locale/hr_HR';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/hr_HR';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/hr_HR';
|
||
5 years ago
|
|
||
4 years ago
|
const typeTemplate = '${label} nije valjan ${type}';
|
||
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'hr',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
global: {
|
||
|
placeholder: 'Molimo označite',
|
||
|
},
|
||
|
Table: {
|
||
|
filterTitle: 'Filter meni',
|
||
|
filterConfirm: 'OK',
|
||
|
filterReset: 'Reset',
|
||
4 years ago
|
filterEmptyText: 'Nema filtera',
|
||
|
emptyText: 'Nema podataka',
|
||
5 years ago
|
selectAll: 'Označi trenutnu stranicu',
|
||
|
selectInvert: 'Invertiraj trenutnu stranicu',
|
||
4 years ago
|
selectionAll: 'Odaberite sve podatke',
|
||
5 years ago
|
sortTitle: 'Sortiraj',
|
||
4 years ago
|
expand: 'Proširi redak',
|
||
|
collapse: 'Sažmi redak',
|
||
|
triggerDesc: 'Kliknite za sortiranje silazno',
|
||
|
triggerAsc: 'Kliknite za sortiranje uzlazno',
|
||
|
cancelSort: 'Kliknite da biste otkazali sortiranje',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Odustani',
|
||
|
justOkText: 'OK',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Odustani',
|
||
|
},
|
||
|
Transfer: {
|
||
|
titles: ['', ''],
|
||
|
searchPlaceholder: 'Pretraži ovdje',
|
||
|
itemUnit: 'stavka',
|
||
|
itemsUnit: 'stavke',
|
||
4 years ago
|
remove: 'Ukloniti',
|
||
|
selectCurrent: 'Odaberite trenutnu stranicu',
|
||
|
removeCurrent: 'Ukloni trenutnu stranicu',
|
||
|
selectAll: 'Odaberite sve podatke',
|
||
|
removeAll: 'Uklonite sve podatke',
|
||
|
selectInvert: 'Obrni trenutnu stranicu',
|
||
5 years ago
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Upload u tijeku...',
|
||
|
removeFile: 'Makni datoteku',
|
||
|
uploadError: 'Greška kod uploada',
|
||
|
previewFile: 'Pogledaj datoteku',
|
||
5 years ago
|
downloadFile: 'Preuzmi datoteku',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'Nema podataka',
|
||
|
},
|
||
|
Icon: {
|
||
|
icon: 'ikona',
|
||
|
},
|
||
|
Text: {
|
||
4 years ago
|
edit: 'Uredi',
|
||
|
copy: 'Kopiraj',
|
||
|
copied: 'Kopiranje uspješno',
|
||
|
expand: 'Proširi',
|
||
|
},
|
||
|
PageHeader: {
|
||
|
back: 'Natrag',
|
||
|
},
|
||
|
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',
|
||
5 years ago
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|