Opened 8 years ago
Closed 7 years ago
#41695 closed defect (bug) (fixed)
i18n: Avoid using HTML tags in translation strings (wp-admin/includes/class-theme-upgrader.php)
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.9 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch |
Focuses: | administration | Cc: |
Description
This patch removes HTML <strong>
tags from translation strings. Replacing <strong>%s</strong>
with %s
moving the HTML tags outside.
Old string:
<strong>The parent theme could not be found.</strong> You will need to install the parent theme, <strong>%s</strong>, before you can use this child theme.
New string:
<strong>The parent theme could not be found.</strong> You will need to install the parent theme, %s, before you can use this child theme.
Attachments (2)
Change History (5)
Note: See
TracTickets for help on using
tickets.
In 41909: