vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
32 lines
846 B
32 lines
846 B
import type { Locale } from '../interface'; |
|
|
|
const locale: Locale = { |
|
locale: 'da_DK', |
|
today: 'I dag', |
|
now: 'Nu', |
|
backToToday: 'Gå til i dag', |
|
ok: 'Ok', |
|
clear: 'Ryd', |
|
month: 'Måned', |
|
year: 'År', |
|
timeSelect: 'Vælg tidspunkt', |
|
dateSelect: 'Vælg dato', |
|
monthSelect: 'Vælg måned', |
|
yearSelect: 'Vælg år', |
|
decadeSelect: 'Vælg årti', |
|
yearFormat: 'YYYY', |
|
dateFormat: 'D/M/YYYY', |
|
dayFormat: 'D', |
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss', |
|
monthBeforeYear: true, |
|
previousMonth: 'Forrige måned (Page Up)', |
|
nextMonth: 'Næste måned (Page Down)', |
|
previousYear: 'Forrige år (Ctrl-venstre pil)', |
|
nextYear: 'Næste år (Ctrl-højre pil)', |
|
previousDecade: 'Forrige årti', |
|
nextDecade: 'Næste årti', |
|
previousCentury: 'Forrige århundrede', |
|
nextCentury: 'Næste århundrede', |
|
}; |
|
|
|
export default locale;
|
|
|