Skip to content

Commit

Permalink
Fixed lithuanian translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Karmalakas committed Apr 8, 2013
1 parent e8a0336 commit b368506
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions select2_locale_lt.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
"use strict";

$.extend($.fn.select2.defaults, {
formatNoMatches: function () { return "Įrašų nerasta"; },
formatNoMatches: function () { return "Atitikmenų nerasta"; },
formatInputTooShort: function (input, min) {
var n = min - input.length;
var suffix = (n % 10 == 1) && (n % 100 != 11)) ? 'į' : (((n % 10 >= 2) && ((n % 100 < 10) || (n % 100 >= 20))) ? 'ius' : 'ių';
var suffix = (n % 10 == 1) && (n % 100 != 11) ? 'į' : (((n % 10 >= 2) && ((n % 100 < 10) || (n % 100 >= 20))) ? 'ius' : 'ių');
return "Įrašykite dar " + n + " simbol" + suffix;
},
formatInputTooLong: function (input, max) {
var n = input.length - max;
var suffix = (n % 10 == 1) && (n % 100 != 11)) ? 'į' : (((n % 10 >= 2) && ((n % 100 < 10) || (n % 100 >= 20))) ? 'ius' : 'ių';
var suffix = (n % 10 == 1) && (n % 100 != 11) ? 'į' : (((n % 10 >= 2) && ((n % 100 < 10) || (n % 100 >= 20))) ? 'ius' : 'ių');
return "Pašalinkite " + n + " simbol" + suffix;
},
formatSelectionTooBig: function (limit) {
var suffix = (n % 10 == 1) && (n % 100 != 11)) ? 'ą' : (((n % 10 >= 2) && ((n % 100 < 10) || (n % 100 >= 20))) ? 'us' : 'ų';
var suffix = (n % 10 == 1) && (n % 100 != 11) ? 'ą' : (((n % 10 >= 2) && ((n % 100 < 10) || (n % 100 >= 20))) ? 'us' : 'ų');
return "Jūs galite pasirinkti tik " + limit + " element" + suffix;
},
formatLoadMore: function (pageNumber) { return "Kraunama daugiau rezultatų..."; },
Expand Down

0 comments on commit b368506

Please sign in to comment.