Skip to content

Commit 9d44e06

Browse files
committed
Reword Polish string for formatInputTooShort
1 parent 25f89bf commit 9d44e06

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

select2_locale_pl.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
*
44
* @author Jan Kondratowicz <jan@kondratowicz.pl>
55
* @author Uriy Efremochkin <efremochkin@uriy.me>
6+
* @author Michał Połtyn <mike@poltyn.com>
67
*/
78
(function ($) {
89
"use strict";
910

1011
$.extend($.fn.select2.defaults, {
1112
formatNoMatches: function () { return "Brak wyników"; },
12-
formatInputTooShort: function (input, min) { return "Wpisz jeszcze" + character(min - input.length, "znak", "i"); },
13+
formatInputTooShort: function (input, min) { return "Wpisz co najmniej" + character(min - input.length, "znak", "i"); },
1314
formatInputTooLong: function (input, max) { return "Wpisana fraza jest za długa o" + character(input.length - max, "znak", "i"); },
1415
formatSelectionTooBig: function (limit) { return "Możesz zaznaczyć najwyżej" + character(limit, "element", "y"); },
1516
formatLoadMore: function (pageNumber) { return "Ładowanie wyników…"; },

0 commit comments

Comments
 (0)