1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed #34278 -- Made translatable string plural-aware in SelectFilter2.js.

Bug in be63c78760.
This commit is contained in:
Claude Paroz 2023-01-23 06:07:20 +01:00 committed by Mariusz Felisiak
parent e1a093f8cb
commit e3a4cee081

View File

@ -207,7 +207,11 @@ Requires core.js and SelectBox.js.
const selector = document.getElementById(field_id + '_selector_chosen');
const warning = document.getElementById(field_id + '_list-footer-display-text');
selector.className = selector.className.replace('selector-chosen--with-filtered', '');
warning.textContent = interpolate(gettext('%s selected options not visible'), [count]);
warning.textContent = interpolate(ngettext(
'%s selected option not visible',
'%s selected options not visible',
count
), [count]);
if(count > 0) {
selector.className += ' selector-chosen--with-filtered';
}