#35748 closed defect (bug) (wontfix)
Avoid using HTML tags in translation strings (wp-admin/includes/dashboard.php)
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch |
Focuses: | Cc: |
Description
See the attached patch.
Remove two <a>
HTML tags from translation strings and add esc_url()
to a string with codex URL.
Attachments (1)
Change History (6)
Note: See
TracTickets for help on using
tickets.
Old string:
Manage <a href="%1$s">widgets</a> or <a href="%2$s">menus</a>
New strings:
Manage %1$s or %2$s
widgets
menus
No HTML tags, much easier to translate.