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.
58 lines
1.4 KiB
58 lines
1.4 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/da_DK';
|
||
|
import Calendar from '../calendar/locale/da_DK';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/da_DK';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/da_DK';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'da',
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
Pagination,
|
||
|
Table: {
|
||
|
filterTitle: 'Filtermenu',
|
||
|
filterConfirm: 'OK',
|
||
|
filterReset: 'Nulstil',
|
||
3 years ago
|
filterEmptyText: 'Ingen filtre',
|
||
3 years ago
|
emptyText: 'Ingen data',
|
||
5 years ago
|
selectAll: 'Vælg alle',
|
||
3 years ago
|
selectNone: 'Ryd alt data',
|
||
|
selectInvert: 'Invertér valg',
|
||
|
selectionAll: 'Vælg alt data',
|
||
|
sortTitle: 'Sortér',
|
||
|
expand: 'Udvid række',
|
||
|
collapse: 'Flet række',
|
||
|
triggerDesc: 'Klik for at sortere faldende',
|
||
|
triggerAsc: 'Klik for at sortere stigende',
|
||
|
cancelSort: 'Klik for at annullere sortering',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Afbryd',
|
||
|
justOkText: 'OK',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Afbryd',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'Søg her',
|
||
|
itemUnit: 'element',
|
||
|
itemsUnit: 'elementer',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Uploader...',
|
||
|
removeFile: 'Fjern fil',
|
||
|
uploadError: 'Fejl ved upload',
|
||
|
previewFile: 'Forhåndsvisning',
|
||
5 years ago
|
downloadFile: 'Download fil',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'Ingen data',
|
||
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|