#35994 closed defect (bug) (fixed)
Avoid using HTML tags in translation strings (wp-includes/ms-default-constants.php)
Reported by: | ramiy | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 4.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch |
Focuses: | administration | Cc: |
Description
One more translation string with <code>
HTML tags.
Old String:
The constant <code>VHOST</code> <strong>is deprecated</strong>. Use the boolean constant <code>SUBDOMAIN_INSTALL</code> in wp-config.php to enable a subdomain configuration. Use is_subdomain_install() to check whether a subdomain configuration is enabled.
New String:
The constant %1$s <strong>is deprecated</strong>. Use the boolean constant %2$s in %3$s to enable a subdomain configuration. Use %4$s to check whether a subdomain configuration is enabled.
Changes:
- %1$s =
<code>VHOST</code>
- %2$s =
<code>SUBDOMAIN_INSTALL</code>
- %3$s =
wp-config.php
- %4$s =
is_subdomain_install()
I added code tags to the last the placeholders. And also I added translators comments.
See the attached patch.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
In 36773: