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.
48 lines
1.1 KiB
48 lines
1.1 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/sl_SI';
|
||
|
import Calendar from '../calendar/locale/sl_SI';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/sl_SI';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/sl_SI';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'sl',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
Table: {
|
||
|
filterTitle: 'Filter',
|
||
|
filterConfirm: 'Filtriraj',
|
||
|
filterReset: 'Pobriši filter',
|
||
|
selectAll: 'Izberi vse na trenutni strani',
|
||
|
selectInvert: 'Obrni izbor na trenutni strani',
|
||
|
},
|
||
|
Modal: {
|
||
|
okText: 'V redu',
|
||
|
cancelText: 'Prekliči',
|
||
|
justOkText: 'V redu',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'v redu',
|
||
|
cancelText: 'Prekliči',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'Išči tukaj',
|
||
|
itemUnit: 'Objekt',
|
||
|
itemsUnit: 'Objektov',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Nalaganje...',
|
||
|
removeFile: 'Odstrani datoteko',
|
||
|
uploadError: 'Napaka pri nalaganju',
|
||
|
previewFile: 'Predogled datoteke',
|
||
5 years ago
|
downloadFile: 'Prenos datoteke',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'Ni podatkov',
|
||
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|