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
933 B
33 lines
933 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'fr_BE',
|
|
today: "Aujourd'hui",
|
|
now: 'Maintenant',
|
|
backToToday: "Aujourd'hui",
|
|
ok: 'Ok',
|
|
clear: 'Rétablir',
|
|
month: 'Mois',
|
|
year: 'Année',
|
|
timeSelect: "Sélectionner l'heure",
|
|
dateSelect: "Sélectionner l'heure",
|
|
monthSelect: 'Choisissez un mois',
|
|
yearSelect: 'Choisissez une année',
|
|
decadeSelect: 'Choisissez une décennie',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/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',
|
|
};
|
|
|
|
export default locale;
|