commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / bower_components / select2 / select2_locale_nl.js
1 /**
2 * Select2 Dutch translation
3 */
4 (function ($) {
5 "use strict";
6
7 $.fn.select2.locales['nl'] = {
8 formatNoMatches: function () { return "Geen resultaten gevonden"; },
9 formatInputTooShort: function (input, min) { var n = min - input.length; return "Vul nog " + n + " karakter" + (n == 1? "" : "s") + " in"; },
10 formatInputTooLong: function (input, max) { var n = input.length - max; return "Haal " + n + " karakter" + (n == 1? "" : "s") + " weg"; },
11 formatSelectionTooBig: function (limit) { return "Maximaal " + limit + " item" + (limit == 1 ? "" : "s") + " toegestaan"; },
12 formatLoadMore: function (pageNumber) { return "Meer resultaten laden…"; },
13 formatSearching: function () { return "Zoeken…"; }
14 };
15
16 $.extend($.fn.select2.defaults, $.fn.select2.locales['nl']);
17 })(jQuery);