Browse Source

Fixed typo in maximum selected message

Michał Zalewski 9 years ago
parent
commit
74bb22939a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/js/select2/i18n/pl.js

+ 2 - 2
src/js/select2/i18n/pl.js

@@ -33,7 +33,7 @@ define(function () {
     },
     maximumSelected: function (args) {
       return 'Możesz zaznaczyć tylko ' + args.maximum + ' ' +
-        pluralWord(args.maxiumum, itemsWords);
+        pluralWord(args.maximum, itemsWords);
     },
     noResults: function () {
       return 'Brak wyników';
@@ -42,4 +42,4 @@ define(function () {
       return 'Trwa wyszukiwanie…';
     }
   };
-});
+});