1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Fixed typo in maximum selected message

This commit is contained in:
Michał Zalewski 2015-07-18 10:19:10 +02:00
parent 3422460488
commit 74bb22939a

View File

@ -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…';
}
};
});
});