How to use the flatpickr.init function in flatpickr

To help you get started, we’ve selected a few flatpickr examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Enalean / tuleap / src / www / themes / common / tlp / src / vendor-i18n / fr_FR / flatpickr.l10n.fr.js View on Github external
/* 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";
};
github Enalean / tuleap / src / www / themes / common / tlp / src / vendor-i18n / fr_FR / flatpickr.l10n.fr.js View on Github external
/* 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;