diff options
Diffstat (limited to 'apps/files_external/3rdparty/select2/select2_locale_ro.js')
-rw-r--r-- | apps/files_external/3rdparty/select2/select2_locale_ro.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/files_external/3rdparty/select2/select2_locale_ro.js b/apps/files_external/3rdparty/select2/select2_locale_ro.js new file mode 100644 index 00000000000..87eca4cf740 --- /dev/null +++ b/apps/files_external/3rdparty/select2/select2_locale_ro.js @@ -0,0 +1,15 @@ +/** + * Select2 Romanian translation. + */ +(function ($) { + "use strict"; + + $.extend($.fn.select2.defaults, { + formatNoMatches: function () { return "Nu a fost găsit nimic"; }, + formatInputTooShort: function (input, min) { var n = min - input.length; return "Vă rugăm să introduceți incă " + n + " caracter" + (n == 1 ? "" : "e"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Vă rugăm să introduceți mai puțin de " + n + " caracter" + (n == 1? "" : "e"); }, + formatSelectionTooBig: function (limit) { return "Aveți voie să selectați cel mult " + limit + " element" + (limit == 1 ? "" : "e"); }, + formatLoadMore: function (pageNumber) { return "Se încarcă…"; }, + formatSearching: function () { return "Căutare…"; } + }); +})(jQuery); |