Skip to content

Commit cbc5106

Browse files
committed
Merge pull request select2#1043 from Smartik89/master
Romanian translation.
2 parents b826b7f + 24eaac6 commit cbc5106

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

select2_locale_ro.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* Select2 Romanian translation.
3+
*/
4+
(function ($) {
5+
"use strict";
6+
7+
$.extend($.fn.select2.defaults, {
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+
})(jQuery);

0 commit comments

Comments
 (0)