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.
33 lines
938 B
33 lines
938 B
3 years ago
|
import type { Locale } from '../interface';
|
||
|
|
||
|
const locale: Locale = {
|
||
|
locale: 'fr_FR',
|
||
6 years ago
|
today: "Aujourd'hui",
|
||
7 years ago
|
now: 'Maintenant',
|
||
6 years ago
|
backToToday: "Aujourd'hui",
|
||
7 years ago
|
ok: 'Ok',
|
||
|
clear: 'Rétablir',
|
||
|
month: 'Mois',
|
||
|
year: 'Année',
|
||
6 years ago
|
timeSelect: "Sélectionner l'heure",
|
||
6 years ago
|
dateSelect: 'Sélectionner la date',
|
||
7 years ago
|
monthSelect: 'Choisissez un mois',
|
||
|
yearSelect: 'Choisissez une année',
|
||
|
decadeSelect: 'Choisissez une décennie',
|
||
|
yearFormat: 'YYYY',
|
||
|
dateFormat: 'DD/MM/YYYY',
|
||
|
dayFormat: 'DD',
|
||
|
dateTimeFormat: 'DD/MM/YYYY HH:mm:ss',
|
||
|
monthBeforeYear: true,
|
||
|
previousMonth: 'Mois précédent (PageUp)',
|
||
|
nextMonth: 'Mois suivant (PageDown)',
|
||
|
previousYear: 'Année précédente (Ctrl + gauche)',
|
||
|
nextYear: 'Année prochaine (Ctrl + droite)',
|
||
|
previousDecade: 'Décennie précédente',
|
||
|
nextDecade: 'Décennie suivante',
|
||
|
previousCentury: 'Siècle précédent',
|
||
|
nextCentury: 'Siècle suivant',
|
||
6 years ago
|
};
|
||
3 years ago
|
|
||
|
export default locale;
|