Skip to content

Commit

Permalink
Revert "Fix pluralization (select2#5307)" (select2#5354)
Browse files Browse the repository at this point in the history
This reverts commit 5968dcc.
  • Loading branch information
pedrofurtado committed Sep 5, 2018
1 parent 5968dcc commit 60ee4a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/select2/i18n/fr.js
Expand Up @@ -8,20 +8,20 @@ define(function () {
var overChars = args.input.length - args.maximum;

return 'Supprimez ' + overChars + ' caractère' +
((overChars > 1) ? 's' : '');
(overChars > 1) ? 's' : '';
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;

return 'Saisissez au moins ' + remainingChars + ' caractère' +
((remainingChars > 1) ? 's' : '');
(remainingChars > 1) ? 's' : '';
},
loadingMore: function () {
return 'Chargement de résultats supplémentaires…';
},
maximumSelected: function (args) {
return 'Vous pouvez seulement sélectionner ' + args.maximum +
' élément' + ((args.maximum > 1) ? 's' : '');
' élément' + (args.maximum > 1) ? 's' : '';
},
noResults: function () {
return 'Aucun résultat trouvé';
Expand Down

0 comments on commit 60ee4a1

Please sign in to comment.