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.
63 lines
1.5 KiB
63 lines
1.5 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/mk_MK';
|
||
|
import Calendar from '../calendar/locale/mk_MK';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/mk_MK';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/mk_MK';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'mk',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
global: {
|
||
|
placeholder: 'Ве молиме означете',
|
||
|
},
|
||
|
Table: {
|
||
|
filterTitle: 'Мени за филтрирање',
|
||
|
filterConfirm: 'ОК',
|
||
|
filterReset: 'Избриши',
|
||
|
selectAll: 'Одбери страница',
|
||
|
selectInvert: 'Инвертирај страница',
|
||
|
},
|
||
|
Modal: {
|
||
|
okText: 'ОК',
|
||
|
cancelText: 'Откажи',
|
||
|
justOkText: 'ОК',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'ОК',
|
||
|
cancelText: 'Откажи',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'Пребарај тука',
|
||
|
itemUnit: 'предмет',
|
||
|
itemsUnit: 'предмети',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Се прикачува...',
|
||
|
removeFile: 'Избриши фајл',
|
||
|
uploadError: 'Грешка при прикачување',
|
||
|
previewFile: 'Прикажи фајл',
|
||
|
downloadFile: 'Преземи фајл',
|
||
|
},
|
||
|
Empty: {
|
||
|
description: 'Нема податоци',
|
||
|
},
|
||
|
Icon: {
|
||
|
icon: 'Икона',
|
||
|
},
|
||
|
Text: {
|
||
|
edit: 'Уреди',
|
||
|
copy: 'Копирај',
|
||
|
copied: 'Копирано',
|
||
|
expand: 'Зголеми',
|
||
|
},
|
||
|
PageHeader: {
|
||
|
back: 'Назад',
|
||
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|