diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-09-09 15:45:56 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-09-09 18:03:05 +0200 |
commit | 412da87e6583375f98ef1bdd755c56caab14b8ac (patch) | |
tree | 250ea5586f41603bc9e5dbb962cbcd98c85732d3 /apps/files_external/3rdparty/select2/select2_locale_eu.js | |
parent | dc99fd768ac99c380f1110c7bd4dd84d03256cd8 (diff) | |
download | nextcloud-server-412da87e6583375f98ef1bdd755c56caab14b8ac.tar.gz nextcloud-server-412da87e6583375f98ef1bdd755c56caab14b8ac.zip |
Move select2 from files_external to core
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_eu.js')
-rw-r--r-- | apps/files_external/3rdparty/select2/select2_locale_eu.js | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_eu.js b/apps/files_external/3rdparty/select2/select2_locale_eu.js deleted file mode 100644 index 1da1a709481..00000000000 --- a/apps/files_external/3rdparty/select2/select2_locale_eu.js +++ /dev/null @@ -1,43 +0,0 @@ -/** - * Select2 Basque translation. - * - * Author: Julen Ruiz Aizpuru <julenx at gmail dot com> - */ -(function ($) { - "use strict"; - - $.extend($.fn.select2.defaults, { - formatNoMatches: function () { - return "Ez da bat datorrenik aurkitu"; - }, - formatInputTooShort: function (input, min) { - var n = min - input.length; - if (n === 1) { - return "Idatzi karaktere bat gehiago"; - } else { - return "Idatzi " + n + " karaktere gehiago"; - } - }, - formatInputTooLong: function (input, max) { - var n = input.length - max; - if (n === 1) { - return "Idatzi karaktere bat gutxiago"; - } else { - return "Idatzi " + n + " karaktere gutxiago"; - } - }, - formatSelectionTooBig: function (limit) { - if (limit === 1 ) { - return "Elementu bakarra hauta dezakezu"; - } else { - return limit + " elementu hauta ditzakezu soilik"; - } - }, - formatLoadMore: function (pageNumber) { - return "Emaitza gehiago kargatzen…"; - }, - formatSearching: function () { - return "Bilatzen…"; - } - }); -})(jQuery); |