I18N: Remove HTML tags from translatable strings in `wp-admin/network/themes.php`.

Props ramiy.
Fixes #35988.
Built from https://develop.svn.wordpress.org/trunk@36770


git-svn-id: http://core.svn.wordpress.org/trunk@36737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-02-29 02:38:26 +00:00
parent 0e5bb06cb8
commit 6cf7973221
2 changed files with 7 additions and 3 deletions

View File

@ -143,8 +143,12 @@ if ( $action ) {
<ul class="ul-disc">
<?php
foreach ( $theme_info as $theme ) {
/* translators: 1: theme name, 2: theme author */
echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $theme->display('Name'), $theme->display('Author') ), '</li>';
echo '<li>' . sprintf(
/* translators: 1: theme name, 2: theme author */
_x( '%1$s by %2$s', 'theme' ),
'<strong>' . $theme->display( 'Name' ) . '</strong>',
'<em>' . $theme->display( 'Author' ) . '</em>'
) . '</li>';
}
?>
</ul>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-beta1-36769';
$wp_version = '4.5-beta1-36770';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.