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.
44 lines
1010 B
44 lines
1010 B
import Pagination from 'rc-pagination/lib/locale/cs_CZ';
|
|
import DatePicker from '../date-picker/locale/cs_CZ';
|
|
import TimePicker from '../time-picker/locale/cs_CZ';
|
|
import Calendar from '../calendar/locale/cs_CZ';
|
|
import { Locale } from '../locale-provider';
|
|
|
|
const localeValues: Locale = {
|
|
locale: 'cs',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Table: {
|
|
filterTitle: 'Filtr',
|
|
filterConfirm: 'Potvrdit',
|
|
filterReset: 'Obnovit',
|
|
},
|
|
Modal: {
|
|
okText: 'Ok',
|
|
cancelText: 'Storno',
|
|
justOkText: 'Ok',
|
|
},
|
|
Popconfirm: {
|
|
okText: 'Ok',
|
|
cancelText: 'Storno',
|
|
},
|
|
Transfer: {
|
|
searchPlaceholder: 'Vyhledávání',
|
|
itemUnit: 'položka',
|
|
itemsUnit: 'položek',
|
|
},
|
|
Upload: {
|
|
uploading: 'Nahrávání...',
|
|
removeFile: 'Odstranit soubor',
|
|
uploadError: 'Chyba při nahrávání',
|
|
previewFile: 'Zobrazit soubor',
|
|
downloadFile: 'Stáhnout soubor',
|
|
},
|
|
Empty: {
|
|
description: 'Žádná data',
|
|
},
|
|
};
|
|
|
|
export default localeValues;
|
|
|