Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mnrafg/select2 into hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweissman committed Oct 25, 2017
2 parents 46ed8ae + e579207 commit 65f85c3
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/js/select2/i18n/ps.js
@@ -0,0 +1,45 @@
/* jslint maxlen: 87 */
define(function () {
// Pashto (پښتو)
return {
errorLoading: function () {
return 'پايلي نه سي ترلاسه کېدای';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;

var message = 'د مهربانۍ لمخي ' + overChars + ' توری ړنګ کړئ';

if (overChars != 1) {
message = message.replace('توری', 'توري');
}

return message;
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;

var message = 'لږ تر لږه ' + remainingChars + ' يا ډېر توري وليکئ';

return message;
},
loadingMore: function () {
return 'نوري پايلي ترلاسه کيږي...';
},
maximumSelected: function (args) {
var message = 'تاسو يوازي ' + args.maximum + ' قلم په نښه کولای سی';

if (args.maximum != 1) {
message = message.replace('قلم', 'قلمونه');
}

return message;
},
noResults: function () {
return 'پايلي و نه موندل سوې';
},
searching: function () {
return 'لټول کيږي...';
}
};
});

0 comments on commit 65f85c3

Please sign in to comment.