Opened 3 months ago

Closed 9 days ago

#37123 closed Uncategorized (invalid)

Wrong translation id used in actions-submit (actions.html)

Reported by: alex Owned by:
Component: contrib.admin Version: 6.0
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Problem:

Block actions-submit of django/contrib/admin/templates/admin/actions.html (line 8) specifies

{% translate "Run" %}

It should however be

{% translate "Run the selected action" %}

as specified in the po files.

Change History (4)

comment:1 by alex, 3 months ago

Summary: Wrong translation id used in actions-submitWrong translation id used in actions-submit (actions.html)

comment:2 by Jacob Walls, 3 months ago

Component: Uncategorizedcontrib.admin
Resolution: invalid
Status: newclosed
UI/UX: unset

Thanks for the report, but the change to "Run" was intentional, and we will need translations submitted in any languages where it's missing.

comment:3 by alex, 9 days ago

Resolution: invalid
Status: closednew

In django 6.1 this problem isn't fixed yet.

When looking through the po files I see some having Run defined and the rest Run selected action

I think someone reverted the change because it broke for him, so we have to edit both places:

  1. po files
  2. django/contrib/admin/templates/admin/actions.html

comment:4 by Sarah Boyce, 9 days ago

Resolution: invalid
Status: newclosed

Hi alex,

Run the selected action was actually a title tooltip which has been removed completely. The Button used to say "Go", this now says "Run". See the ticket #36255 and PR for more details. This was an intentional change for accessibility purposes
As this is a new change as of 6.1, our translations may take time to catch up. Note that when new translations are received, these are included in later versions.

Note: See TracTickets for help on using tickets.
Back to Top