Make WordPress Core

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: ramiy's profile ramiy Owned by: sergeybiryukov's profile SergeyBiryukov
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)

41695.png (21.0 KB) - added by ramiy 8 years ago.
41695.patch (1.6 KB) - added by ramiy 8 years ago.

Download all attachments as: .zip

Change History (5)

@ramiy
8 years ago

@ramiy
8 years ago

#1 @ramiy
8 years ago

  • Focuses administration added
  • Keywords has-patch added

#2 @SergeyBiryukov
8 years ago

  • Milestone changed from Awaiting Review to 4.9
  • Owner set to SergeyBiryukov
  • Status changed from new to reviewing

#3 @SergeyBiryukov
7 years ago

  • Resolution set to fixed
  • Status changed from reviewing to closed

In 41909:

I18N: Remove <strong> tag from a translatable string in Theme_Upgrader::install_strings().

Props ramiy.
Fixes #41695.

Note: See TracTickets for help on using tickets.