Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
/* French locals for flatpickr */
import flatpickr from 'flatpickr';
flatpickr.init.prototype.l10n.weekdays = {
shorthand: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
longhand: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']
};
flatpickr.init.prototype.l10n.months = {
shorthand: ['Janv', 'Févr', 'Mars', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sept', 'Oct', 'Nov', 'Déc'],
longhand: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre']
};
flatpickr.init.prototype.l10n.ordinal = function (nth) {
if (nth > 1) {
return "ème";
}
return "er";
};
/* French locals for flatpickr */
import flatpickr from 'flatpickr';
flatpickr.init.prototype.l10n.weekdays = {
shorthand: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
longhand: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']
};
flatpickr.init.prototype.l10n.months = {
shorthand: ['Janv', 'Févr', 'Mars', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sept', 'Oct', 'Nov', 'Déc'],
longhand: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre']
};
flatpickr.init.prototype.l10n.ordinal = function (nth) {
if (nth > 1) {
return "ème";
}
return "er";
};
export default flatpickr;