1
0
mirror of synced 2024-11-21 20:46:07 +03:00

Merge branch 'patch-2' of https://github.com/ettiennelouw/select2 into hotfix

This commit is contained in:
alexweissman 2017-10-25 17:59:11 -04:00
commit 2a21adeb2e

44
src/js/select2/i18n/af.js vendored Normal file
View File

@ -0,0 +1,44 @@
define(function () {
// English
return {
errorLoading: function () {
return 'Die resultate kon nie gelaai word nie.';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;
var message = 'Verwyders asseblief ' + overChars + ' character';
if (overChars != 1) {
message += 's';
}
return message;
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;
var message = 'Voer asseblief ' + remainingChars + ' of meer karakters';
return message;
},
loadingMore: function () {
return 'Meer resultate word gelaai…';
},
maximumSelected: function (args) {
var message = 'Kies asseblief net ' + args.maximum + ' item';
if (args.maximum != 1) {
message += 's';
}
return message;
},
noResults: function () {
return 'Geen resultate gevind';
},
searching: function () {
return 'Besig…';
}
};
});