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_ro.js
1 /**
2 * Select2 Romanian translation.
3 */
4 (function ($) {
5 "use strict";
6
7 $.fn.select2.locales['ro'] = {
8 formatNoMatches: function () { return "Nu a fost găsit nimic"; },
9 formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); },
10 formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); },
11 formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); },
12 formatLoadMore: function (pageNumber) { return "Se încarcă…"; },
13 formatSearching: function () { return "Căutare…"; }
14 };
15
16 $.extend($.fn.select2.defaults, $.fn.select2.locales['ro']);
17 })(jQuery);