From 410916510d8cceb4919b3295f9b9d962c671184e Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Fri, 20 Nov 2015 11:39:35 +0100 Subject: [PATCH] Add errorLoading error message to sr, sr-Latin and hr languages. --- src/js/select2/i18n/hr.js | 3 +++ src/js/select2/i18n/sr-Cyrl.js | 3 +++ src/js/select2/i18n/sr.js | 3 +++ 3 files changed, 9 insertions(+) diff --git a/src/js/select2/i18n/hr.js b/src/js/select2/i18n/hr.js index fb900629..81462a5c 100644 --- a/src/js/select2/i18n/hr.js +++ b/src/js/select2/i18n/hr.js @@ -15,6 +15,9 @@ define(function () { } return { + errorLoading: function () { + return 'Preuzimanje nije uspjelo.'; + }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; diff --git a/src/js/select2/i18n/sr-Cyrl.js b/src/js/select2/i18n/sr-Cyrl.js index 4e228c27..c61184e3 100644 --- a/src/js/select2/i18n/sr-Cyrl.js +++ b/src/js/select2/i18n/sr-Cyrl.js @@ -14,6 +14,9 @@ define(function () { } return { + errorLoading: function () { + return 'Преузимање није успело.'; + }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; diff --git a/src/js/select2/i18n/sr.js b/src/js/select2/i18n/sr.js index 32e27d59..7821b2b8 100644 --- a/src/js/select2/i18n/sr.js +++ b/src/js/select2/i18n/sr.js @@ -14,6 +14,9 @@ define(function () { } return { + errorLoading: function () { + return 'Preuzimanje nije uspelo.'; + }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum;