diff options
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_fr.js')
-rw-r--r-- | apps/files_external/3rdparty/select2/select2_locale_fr.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_fr.js b/apps/files_external/3rdparty/select2/select2_locale_fr.js new file mode 100644 index 00000000000..9afda2abdcd --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_fr.js @@ -0,0 +1,16 @@ +/** + * Select2 French translation + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatMatches: function (matches) { return matches + " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer."; }, + formatNoMatches: function () { return "Aucun résultat trouvé"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Merci de saisir " + n + " caractère" + (n == 1 ? "" : "s") + " de plus"; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Merci de supprimer " + n + " caractère" + (n == 1 ? "" : "s"); }, + formatSelectionTooBig: function (limit) { return "Vous pouvez seulement sélectionner " + limit + " élément" + (limit == 1 ? "" : "s"); }, + formatLoadMore: function (pageNumber) { return "Chargement de résultats supplémentaires…"; }, + formatSearching: function () { return "Recherche en cours…"; } + }); +})(jQuery); |