Skip to content

Commit 4109165

Browse files
author
Limon Monte
committed
Add errorLoading error message to sr, sr-Latin and hr languages.
1 parent 1c8d1f8 commit 4109165

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

src/js/select2/i18n/hr.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ define(function () {
1515
}
1616

1717
return {
18+
errorLoading: function () {
19+
return 'Preuzimanje nije uspjelo.';
20+
},
1821
inputTooLong: function (args) {
1922
var overChars = args.input.length - args.maximum;
2023

src/js/select2/i18n/sr-Cyrl.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ define(function () {
1414
}
1515

1616
return {
17+
errorLoading: function () {
18+
return 'Преузимање није успело.';
19+
},
1720
inputTooLong: function (args) {
1821
var overChars = args.input.length - args.maximum;
1922

src/js/select2/i18n/sr.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ define(function () {
1414
}
1515

1616
return {
17+
errorLoading: function () {
18+
return 'Preuzimanje nije uspelo.';
19+
},
1720
inputTooLong: function (args) {
1821
var overChars = args.input.length - args.maximum;
1922

0 commit comments

Comments
 (0)