@variantjs/core
Version:
VariantJS common functions and utilities
59 lines (52 loc) • 939 B
text/typescript
/* Esperanto locals for vue-tailwind */
import { CustomDateLocale } from '../../types/Dates';
export const Esperanto: CustomDateLocale = {
firstDayOfWeek: 1,
rangeSeparator: ' ĝis ',
weekAbbreviation: 'Sem',
weekdays: {
shorthand: ['Dim', 'Lun', 'Mar', 'Mer', 'Ĵaŭ', 'Ven', 'Sab'],
longhand: [
'dimanĉo',
'lundo',
'mardo',
'merkredo',
'ĵaŭdo',
'vendredo',
'sabato',
],
},
months: {
shorthand: [
'Jan',
'Feb',
'Mar',
'Apr',
'Maj',
'Jun',
'Jul',
'Aŭg',
'Sep',
'Okt',
'Nov',
'Dec',
],
longhand: [
'januaro',
'februaro',
'marto',
'aprilo',
'majo',
'junio',
'julio',
'aŭgusto',
'septembro',
'oktobro',
'novembro',
'decembro',
],
},
ordinal: () => '-a',
time24hr: true,
};
export default Esperanto;