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/is_IS';
|
||
|
import Calendar from '../calendar/locale/is_IS';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/is_IS';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/is_IS';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'is',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
Table: {
|
||
|
filterTitle: 'Afmarkanir',
|
||
|
filterConfirm: 'Staðfesta',
|
||
|
filterReset: 'Núllstilla',
|
||
|
selectAll: 'Velja allt',
|
||
|
selectInvert: 'Viðsnúa vali',
|
||
|
},
|
||
|
Modal: {
|
||
|
okText: 'Áfram',
|
||
|
cancelText: 'Hætta við',
|
||
|
justOkText: 'Í lagi',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'Áfram',
|
||
|
cancelText: 'Hætta við',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'Leita hér',
|
||
|
itemUnit: 'færsla',
|
||
|
itemsUnit: 'færslur',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Hleð upp...',
|
||
|
removeFile: 'Fjarlægja skrá',
|
||
|
uploadError: 'Villa við að hlaða upp',
|
||
|
previewFile: 'Forskoða skrá',
|
||
5 years ago
|
downloadFile: 'Hlaða niður skrá',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'Engin gögn',
|
||
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|