40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
/*! Select2 4.0.6-rc.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
|
|
(function () {
|
|
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
var e = jQuery.fn.select2.amd;
|
|
return (
|
|
e.define("select2/i18n/ps", [], function () {
|
|
return {
|
|
errorLoading: function () {
|
|
return "پايلي نه سي ترلاسه کېدای";
|
|
},
|
|
inputTooLong: function (e) {
|
|
var t = e.input.length - e.maximum,
|
|
n = "د مهربانۍ لمخي " + t + " توری ړنګ کړئ";
|
|
return t != 1 && (n = n.replace("توری", "توري")), n;
|
|
},
|
|
inputTooShort: function (e) {
|
|
var t = e.minimum - e.input.length,
|
|
n = "لږ تر لږه " + t + " يا ډېر توري وليکئ";
|
|
return n;
|
|
},
|
|
loadingMore: function () {
|
|
return "نوري پايلي ترلاسه کيږي...";
|
|
},
|
|
maximumSelected: function (e) {
|
|
var t = "تاسو يوازي " + e.maximum + " قلم په نښه کولای سی";
|
|
return e.maximum != 1 && (t = t.replace("قلم", "قلمونه")), t;
|
|
},
|
|
noResults: function () {
|
|
return "پايلي و نه موندل سوې";
|
|
},
|
|
searching: function () {
|
|
return "لټول کيږي...";
|
|
},
|
|
};
|
|
}),
|
|
{ define: e.define, require: e.require }
|
|
);
|
|
})();
|