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.
47 lines
1.1 KiB
47 lines
1.1 KiB
import * as moment from 'moment';
|
|
moment.locale('nl');
|
|
|
|
import Pagination from 'rc-pagination/lib/locale/nl_NL';
|
|
import DatePicker from '../date-picker/locale/nl_NL';
|
|
import TimePicker from '../time-picker/locale/nl_NL';
|
|
import Calendar from '../calendar/locale/nl_NL';
|
|
|
|
export default {
|
|
locale: 'nl',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Table: {
|
|
filterTitle: 'Filteren',
|
|
filterConfirm: 'OK',
|
|
filterReset: 'Reset',
|
|
emptyText: 'Geen gegevens',
|
|
selectAll: 'Selecteer huidige pagina',
|
|
selectInvert: 'Deselecteer huidige pagina',
|
|
},
|
|
Modal: {
|
|
okText: 'OK',
|
|
cancelText: 'Annuleren',
|
|
justOkText: 'OK',
|
|
},
|
|
Popconfirm: {
|
|
okText: 'OK',
|
|
cancelText: 'Annuleren',
|
|
},
|
|
Transfer: {
|
|
notFoundContent: 'Niet gevonden',
|
|
searchPlaceholder: 'Zoeken',
|
|
itemUnit: 'item',
|
|
itemsUnit: 'items',
|
|
},
|
|
Select: {
|
|
notFoundContent: 'Niet gevonden',
|
|
},
|
|
Upload: {
|
|
uploading: 'Uploaden...',
|
|
removeFile: 'Verwijder bestand',
|
|
uploadError: 'Fout tijdens uploaden',
|
|
previewFile: 'Bekijk bestand',
|
|
},
|
|
};
|
|
|