Skip to content

Commit a867257

Browse files
committed
fix typos in the French translation
1 parent 83d77cf commit a867257

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

select2_locale_fr.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66

77
$.extend($.fn.select2.defaults, {
88
formatNoMatches: function () { return "Aucun résultat trouvé"; },
9-
formatInputTooShort: function (input, min) { var n = min - input.length; return "Merci de saisir " + n + " caratère" + (n == 1? "" : "s") + " de plus"; },
10-
formatInputTooLong: function (input, max) { var n = input.length - max; return "Merci de saisir " + n + " caratère" + (n == 1? "" : "s") + " de moins"; },
9+
formatInputTooShort: function (input, min) { var n = min - input.length; return "Merci de saisir " + n + " caractère" + (n == 1? "" : "s") + " de plus"; },
10+
formatInputTooLong: function (input, max) { var n = input.length - max; return "Merci de saisir " + n + " caractère" + (n == 1? "" : "s") + " de moins"; },
1111
formatSelectionTooBig: function (limit) { return "Vous pouvez seulement sélectionner " + limit + " élément" + (limit == 1 ? "" : "s"); },
1212
formatLoadMore: function (pageNumber) { return "Chargement de résultats supplémentaires..."; },
1313
formatSearching: function () { return "Recherche en cours..."; }
1414
});
15-
})(jQuery);
15+
})(jQuery);

0 commit comments

Comments
 (0)