Opened 8 years ago
Closed 8 years ago
#41694 closed defect (bug) (fixed)
i18n: Avoid using HTML tags in translation strings (wp-signup.php)
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 4.9 | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | I18N | Keywords: | has-patch |
| Focuses: | Cc: |
Description
The old translation string:
<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Log in</a> as “%4$s” using your existing password.
Is using <a href="%1$s">%2$s</a>. This can be replaced with a simple %1$s moving the HTML tags out of the string. Making is much easier for translation, especially in RTL languages like Hebrew where bi-directional languages are difficult to handle.
Attachments (2)
Change History (6)
Note: See
TracTickets for help on using
tickets.
Old string:
<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Log in</a> as “%4$s” using your existing password.New string:
%1$s is your new site. <a href="%2$s">Log in</a> as “%3$s” using your existing password.