mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
Do not include space in the beginning of internationalized string
git-svn-id: http://svn.automattic.com/wordpress/trunk@15448 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
22bc77ccee
commit
3730d14fa2
@ -60,7 +60,7 @@ include('./admin-header.php');
|
|||||||
<label for="comment_registration">
|
<label for="comment_registration">
|
||||||
<input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> />
|
<input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> />
|
||||||
<?php _e('Users must be registered and logged in to comment') ?>
|
<?php _e('Users must be registered and logged in to comment') ?>
|
||||||
<?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment.)' ); ?>
|
<?php if ( !get_option( 'users_can_register' ) && is_multisite() ) echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' ); ?>
|
||||||
</label>
|
</label>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user