aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/select2/select2_locale_fi.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/js/select2/select2_locale_fi.js')
-rw-r--r--web/js/select2/select2_locale_fi.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/web/js/select2/select2_locale_fi.js b/web/js/select2/select2_locale_fi.js
deleted file mode 100644
index b056e88ae..000000000
--- a/web/js/select2/select2_locale_fi.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * Select2 Finnish translation
- */
-(function ($) {
- "use strict";
- $.extend($.fn.select2.defaults, {
- formatNoMatches: function () {
- return "Ei tuloksia";
- },
- formatInputTooShort: function (input, min) {
- var n = min - input.length;
- return "Ole hyvä ja anna " + n + " merkkiä lisää";
- },
- formatInputTooLong: function (input, max) {
- var n = input.length - max;
- return "Ole hyvä ja anna " + n + " merkkiä vähemmän";
- },
- formatSelectionTooBig: function (limit) {
- return "Voit valita ainoastaan " + limit + " kpl";
- },
- formatLoadMore: function (pageNumber) {
- return "Ladataan lisää tuloksia...";
- },
- formatSearching: function () {
- return "Etsitään...";
- }
- });
-})(jQuery);