Skip to content

Commit 2a21ade

Browse files
committed
Merge branch 'patch-2' of https://github.com/ettiennelouw/select2 into hotfix
2 parents a3952c7 + 671a87c commit 2a21ade

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

src/js/select2/i18n/af.js

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
define(function () {
2+
// English
3+
return {
4+
errorLoading: function () {
5+
return 'Die resultate kon nie gelaai word nie.';
6+
},
7+
inputTooLong: function (args) {
8+
var overChars = args.input.length - args.maximum;
9+
10+
var message = 'Verwyders asseblief ' + overChars + ' character';
11+
12+
if (overChars != 1) {
13+
message += 's';
14+
}
15+
16+
return message;
17+
},
18+
inputTooShort: function (args) {
19+
var remainingChars = args.minimum - args.input.length;
20+
21+
var message = 'Voer asseblief ' + remainingChars + ' of meer karakters';
22+
23+
return message;
24+
},
25+
loadingMore: function () {
26+
return 'Meer resultate word gelaai…';
27+
},
28+
maximumSelected: function (args) {
29+
var message = 'Kies asseblief net ' + args.maximum + ' item';
30+
31+
if (args.maximum != 1) {
32+
message += 's';
33+
}
34+
35+
return message;
36+
},
37+
noResults: function () {
38+
return 'Geen resultate gevind';
39+
},
40+
searching: function () {
41+
return 'Besig…';
42+
}
43+
};
44+
});

0 commit comments

Comments
 (0)