diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py index b593da0b8a73..31d9d567bc56 100644 --- a/django/contrib/admin/options.py +++ b/django/contrib/admin/options.py @@ -2798,9 +2798,9 @@ def hand_clean_DELETE(self): len(collector.protected) - delete_confirmation_max_display ) if remaining_object_count > 0: - # Translators: This string is used as a separator - # between list elements related = ( + # Translators: This string is used as a + # separator between list elements. _(", ").join(str(i) for i in objs) + _(", ") + ngettext( diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt index 523ef542c11a..04a7f1f245bc 100644 --- a/docs/releases/6.1.txt +++ b/docs/releases/6.1.txt @@ -681,6 +681,7 @@ Miscellaneous * The ``email_backend`` argument of :class:`.log.AdminEmailHandler` is deprecated in favor of the newly introduced ``using`` argument. + See :ref:`migrating-to-mailers-adminemailhandler` for details. * The ``BitAnd``, ``BitOr``, and ``BitXor`` classes in ``django.contrib.postgres.aggregates`` are deprecated in favor of the