Sha256: 53125dec6ade5ff401787ab1b04f0a72f4815fb04531b86aad24d97d2c522f25

Contents?: true

Size: 624 Bytes

Versions: 1

Compression:

Stored size: 624 Bytes

Contents

/* French locals for 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 = (nth) => {
	if (nth > 1) {
		return "ème";
	}

	return "er";
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flatpickr_rails-0.0.1 vendor/assets/javascripts/flatpickr/locales/flatpickr.l10n.fr.js