mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
17 lines
670 B
JavaScript
17 lines
670 B
JavaScript
export const formats = {
|
|
decimal: ',',
|
|
thousands: '.',
|
|
grouping: [3],
|
|
currency: ['', ' €'],
|
|
dateTime: '%A, le %e %B %Y, %X',
|
|
date: '%d/%m/%Y',
|
|
time: '%H:%M:%S',
|
|
periods: ['AM', 'PM'], // unused
|
|
days: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
|
|
shortDays: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
|
|
months: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
|
|
shortMonths: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.']
|
|
};
|
|
|
|
export { default as terms } from './fr.json';
|