#35672 closed defect (bug) (fixed)
Avoid using HTML tags in translation strings (wp-admin/user-edit.php)
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch |
Focuses: | Cc: |
Description
See the attached patch.
Attachments (2)
Change History (9)
#3
@
8 years ago
Old string:
There is a pending change of your email to %1$s. <a href="%2$s">Cancel</a>
New strings:
There is a pending change of your email to %s.
Cancel
This ticket was mentioned in Slack in #core-i18n by ramiy. View the logs.
8 years ago
Note: See
TracTickets for help on using
tickets.
In this patch I've moved the
<a href="%2$s">Cancel</a>
part into a separate translation string. And also I've added a translator comment to the original string.