Remove <code> tags from translatable string in wp-admin/network/settings.php.

Add translator comment.

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


git-svn-id: http://core.svn.wordpress.org/trunk@35534 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-11-08 01:34:26 +00:00
parent 1b44ae6663
commit a4dc43106c
2 changed files with 8 additions and 2 deletions

View File

@ -137,7 +137,13 @@ if ( isset( $_GET['updated'] ) ) {
<label><input name="registration" type="radio" id="registration3" value="blog"<?php checked( $reg, 'blog') ?> /> <?php _e( 'Logged in users may register new sites.' ); ?></label><br />
<label><input name="registration" type="radio" id="registration4" value="all"<?php checked( $reg, 'all') ?> /> <?php _e( 'Both sites and user accounts can be registered.' ); ?></label>
<?php if ( is_subdomain_install() ) {
echo '<p class="description">' . __( 'If registration is disabled, please set <code>NOBLOGREDIRECT</code> in <code>wp-config.php</code> to a URL you will redirect visitors to if they visit a non-existent site.' ) . '</p>';
echo '<p class="description">';
/* translators: 1: NOBLOGREDIRECT 2: wp-config.php */
printf( __( 'If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.' ),
'<code>NOBLOGREDIRECT</code>',
'<code>wp-config.php</code>'
);
echo '</p>';
} ?>
</fieldset>
</td>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-beta3-35569';
$wp_version = '4.4-beta3-35570';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.