Ticket #13383: 13383-remove-trailing-space-in-label.diff
File 13383-remove-trailing-space-in-label.diff, 5.4 KB (added by , 14 years ago) |
---|
-
wp-admin/theme-editor.php
123 123 </div> 124 124 <div class="alignright"> 125 125 <form action="theme-editor.php" method="post"> 126 <strong><label for="theme"><?php _e('Select theme to edit:'); ?> 126 <strong><label for="theme"><?php _e('Select theme to edit:'); ?></label></strong> 127 127 <select name="theme" id="theme"> 128 128 <?php 129 129 foreach ($themes as $a_theme) { -
wp-admin/user-new.php
202 202 </tr> 203 203 <?php if ( !is_multisite() ) { ?> 204 204 <tr class="form-field"> 205 <th scope="row"><label for="first_name"><?php _e('First Name') ?> 205 <th scope="row"><label for="first_name"><?php _e('First Name') ?></label></th> 206 206 <td><input name="first_name" type="text" id="first_name" value="<?php echo esc_attr($new_user_firstname); ?>" /></td> 207 207 </tr> 208 208 <tr class="form-field"> 209 <th scope="row"><label for="last_name"><?php _e('Last Name') ?> 209 <th scope="row"><label for="last_name"><?php _e('Last Name') ?></label></th> 210 210 <td><input name="last_name" type="text" id="last_name" value="<?php echo esc_attr($new_user_lastname); ?>" /></td> 211 211 </tr> 212 212 <tr class="form-field"> -
wp-admin/options-general.php
83 83 <span class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></span></td> 84 84 </tr> 85 85 <tr valign="top"> 86 <th scope="row"><label for="admin_email"><?php _e('E-mail address') ?> 86 <th scope="row"><label for="admin_email"><?php _e('E-mail address') ?></label></th> 87 87 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text" /> 88 88 <span class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></span></td> 89 89 </tr> … … 102 102 </tr> 103 103 <?php } else { ?> 104 104 <tr valign="top"> 105 <th scope="row"><label for="new_admin_email"><?php _e('E-mail address') ?> 105 <th scope="row"><label for="new_admin_email"><?php _e('E-mail address') ?></label></th> 106 106 <td><input name="new_admin_email" type="text" id="new_admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text code" /> 107 107 <span class="setting-description"><?php _e('This address is used for admin purposes. If you change this we will send you an e-mail at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>') ?></span> 108 108 <?php … … 119 119 <?php 120 120 if ( !wp_timezone_supported() ) : // no magic timezone support here 121 121 ?> 122 <th scope="row"><label for="gmt_offset"><?php _e('Timezone') ?> 122 <th scope="row"><label for="gmt_offset"><?php _e('Timezone') ?></label></th> 123 123 <td> 124 124 <select name="gmt_offset" id="gmt_offset"> 125 125 <?php -
wp-admin/options-discussion.php
115 115 <td><fieldset><legend class="screen-reader-text"><span><?php _e('E-mail me whenever') ?></span></legend> 116 116 <label for="comments_notify"> 117 117 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> /> 118 <?php _e('Anyone posts a comment') ?> 118 <?php _e('Anyone posts a comment') ?></label> 119 119 <br /> 120 120 <label for="moderation_notify"> 121 121 <input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked('1', get_option('moderation_notify')); ?> /> 122 <?php _e('A comment is held for moderation') ?> 122 <?php _e('A comment is held for moderation') ?></label> 123 123 </fieldset></td> 124 124 </tr> 125 125 <tr valign="top"> … … 127 127 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Before a comment appears') ?></span></legend> 128 128 <label for="comment_moderation"> 129 129 <input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked('1', get_option('comment_moderation')); ?> /> 130 <?php _e('An administrator must always approve the comment') ?> 130 <?php _e('An administrator must always approve the comment') ?></label> 131 131 <br /> 132 132 <label for="comment_whitelist"><input type="checkbox" name="comment_whitelist" id="comment_whitelist" value="1" <?php checked('1', get_option('comment_whitelist')); ?> /> <?php _e('Comment author must have a previously approved comment') ?></label> 133 133 </fieldset></td> -
wp-admin/plugin-editor.php
162 162 </div> 163 163 <div class="alignright"> 164 164 <form action="plugin-editor.php" method="post"> 165 <strong><label for="plugin"><?php _e('Select plugin to edit:'); ?> 165 <strong><label for="plugin"><?php _e('Select plugin to edit:'); ?></label></strong> 166 166 <select name="plugin" id="plugin"> 167 167 <?php 168 168 foreach ( $plugins as $plugin_key => $a_plugin ) {