Make WordPress Core

Changeset 41909


Ignore:
Timestamp:
10/18/2017 05:19:21 PM (7 years ago)
Author:
SergeyBiryukov
Message:

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

Props ramiy.
Fixes #41695.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-theme-upgrader.php

    r41908 r41909  
    7878        /* translators: 1: theme name, 2: version */
    7979        $this->strings['parent_theme_install_success'] = __('Successfully installed the parent theme, <strong>%1$s %2$s</strong>.');
    80         $this->strings['parent_theme_not_found'] = __('<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.');
     80        /* translators: %s: theme name */
     81        $this->strings['parent_theme_not_found'] = sprintf( __( '<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.' ), '<strong>%s</strong>' );
    8182    }
    8283
Note: See TracChangeset for help on using the changeset viewer.