Changes between Initial Version and Version 1 of Ticket #11069, comment 19
- Timestamp:
- Sep 22, 2013, 9:24:32 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11069, comment 19
initial v1 1 In [12031], I inadvertently removed the action being shown in the titleon hover-over. This had previously been added in #11095, since the action might be truncated if it has too many characters. The following patch should fix the issue:1 In [12031], I inadvertently removed the action from the title attribute, so it is no longer shown on hover-over. This had previously been added in #11095, since the action might be truncated if it has too many characters. The following patch should fix the issue: 2 2 3 3 {{{#!diff 4 4 diff --git a/trac/admin/templates/admin_perms.html b/trac/admin/templates/admin_perms.html 5 index 4adb9ae.. 13ca4cb1006445 index 4adb9ae..31036b0 100644 6 6 --- a/trac/admin/templates/admin_perms.html 7 7 +++ b/trac/admin/templates/admin_perms.html … … 22 22 - title="Action is no longer defined">${action}</span> 23 23 + <span class="${classes(missing=invalid)}" 24 + title="${_(' Action is no longer defined') if invalid else action}">${action}</span>24 + title="${_('%(action)s is no longer defined', action=action) if invalid else action}">${action}</span> 25 25 </label> 26 26 </td>