mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
Fixed #34278 -- Made translatable string plural-aware in SelectFilter2.js.
Bug in be63c78760924e1335603c36babd0ad6cfaea3c4.
This commit is contained in:
parent
e1a093f8cb
commit
e3a4cee081
@ -207,7 +207,11 @@ Requires core.js and SelectBox.js.
|
|||||||
const selector = document.getElementById(field_id + '_selector_chosen');
|
const selector = document.getElementById(field_id + '_selector_chosen');
|
||||||
const warning = document.getElementById(field_id + '_list-footer-display-text');
|
const warning = document.getElementById(field_id + '_list-footer-display-text');
|
||||||
selector.className = selector.className.replace('selector-chosen--with-filtered', '');
|
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) {
|
if(count > 0) {
|
||||||
selector.className += ' selector-chosen--with-filtered';
|
selector.className += ' selector-chosen--with-filtered';
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user