Merge branch 'patch-2' of https://github.com/ettiennelouw/select2 into hotfix
This commit is contained in:
commit
2a21adeb2e
44
src/js/select2/i18n/af.js
vendored
Normal file
44
src/js/select2/i18n/af.js
vendored
Normal 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…';
|
||||
}
|
||||
};
|
||||
});
|
Loading…
Reference in New Issue
Block a user