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.
39 lines
832 B
39 lines
832 B
import * as moment from 'moment';
|
|
moment.locale('sv');
|
|
|
|
import Pagination from 'rc-pagination/lib/locale/sv_SE';
|
|
import DatePicker from '../date-picker/locale/sv_SE';
|
|
import TimePicker from '../time-picker/locale/sv_SE';
|
|
import Calendar from '../calendar/locale/sv_SE';
|
|
|
|
export default {
|
|
locale: 'sv',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Table: {
|
|
filterTitle: 'Filtermeny',
|
|
filterConfirm: 'OK',
|
|
filterReset: 'Rensa',
|
|
emptyText: 'Ingen information',
|
|
},
|
|
Modal: {
|
|
okText: 'OK',
|
|
cancelText: 'Avbryt',
|
|
justOkText: 'OK',
|
|
},
|
|
Popconfirm: {
|
|
okText: 'OK',
|
|
cancelText: 'Avbryt',
|
|
},
|
|
Transfer: {
|
|
notFoundContent: 'Info saknas',
|
|
searchPlaceholder: 'Sök',
|
|
itemUnit: 'element',
|
|
itemsUnit: 'element',
|
|
},
|
|
Select: {
|
|
notFoundContent: 'Info saknas',
|
|
},
|
|
};
|
|
|