@variantjs/core
Version:
VariantJS common functions and utilities
58 lines (52 loc) • 918 B
text/typescript
/* Danish locals for vue-tailwind */
import { CustomDateLocale } from '../../types/Dates';
export const Danish: CustomDateLocale = {
weekdays: {
shorthand: ['søn', 'man', 'tir', 'ons', 'tors', 'fre', 'lør'],
longhand: [
'søndag',
'mandag',
'tirsdag',
'onsdag',
'torsdag',
'fredag',
'lørdag',
],
},
months: {
shorthand: [
'jan',
'feb',
'mar',
'apr',
'maj',
'jun',
'jul',
'aug',
'sep',
'okt',
'nov',
'dec',
],
longhand: [
'januar',
'februar',
'marts',
'april',
'maj',
'juni',
'juli',
'august',
'september',
'oktober',
'november',
'december',
],
},
ordinal: () => '.',
firstDayOfWeek: 1,
rangeSeparator: ' til ',
weekAbbreviation: 'uge',
time24hr: true,
};
export default Danish;