vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
32 lines
938 B
32 lines
938 B
import type { Locale } from '../interface'; |
|
|
|
const locale: Locale = { |
|
locale: 'fr_CA', |
|
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 la date', |
|
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', |
|
}; |
|
|
|
export default locale;
|
|
|