mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
17 lines
644 B
JavaScript
17 lines
644 B
JavaScript
export const formats = {
|
|
decimal: ',',
|
|
thousands: '.',
|
|
grouping: [3],
|
|
currency: ['', ' €'],
|
|
dateTime: '%A, %e de %B de %Y, %X',
|
|
date: '%d/%m/%Y',
|
|
time: '%H:%M:%S',
|
|
periods: ['AM', 'PM'],
|
|
days: ['domingo', 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado'],
|
|
shortDays: ['dom', 'lun', 'mar', 'mié', 'jue', 'vie', 'sáb'],
|
|
months: ['enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'],
|
|
shortMonths: ['ene', 'feb', 'mar', 'abr', 'may', 'jun', 'jul', 'ago', 'sep', 'oct', 'nov', 'dic']
|
|
};
|
|
|
|
export { default as terms } from './pt.json';
|