Changeset 33774 for trunk/src/wp-admin/options-discussion.php
- Timestamp:
- 08/28/2015 03:16:02 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-discussion.php
r33264 r33774 79 79 <th scope="row"><?php _e('Other comment settings'); ?></th> 80 80 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Other comment settings'); ?></span></legend> 81 <label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_option('require_name_email')); ?> /> <?php _e('Comment author must fill out name and e -mail'); ?></label>81 <label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_option('require_name_email')); ?> /> <?php _e('Comment author must fill out name and email'); ?></label> 82 82 <br /> 83 83 <label for="comment_registration"> … … 145 145 </tr> 146 146 <tr> 147 <th scope="row"><?php _e('E -mail me whenever'); ?></th>148 <td><fieldset><legend class="screen-reader-text"><span><?php _e('E -mail me whenever'); ?></span></legend>147 <th scope="row"><?php _e('Email me whenever'); ?></th> 148 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Email me whenever'); ?></span></legend> 149 149 <label for="comments_notify"> 150 150 <input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked('1', get_option('comments_notify')); ?> /> … … 171 171 <p><label for="comment_max_links"><?php printf(__('Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'), '<input name="comment_max_links" type="number" step="1" min="0" id="comment_max_links" value="' . esc_attr(get_option('comment_max_links')) . '" class="small-text" />' ); ?></label></p> 172 172 173 <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e -mail, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.'); ?></label></p>173 <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, email, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.'); ?></label></p> 174 174 <p> 175 175 <textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" class="large-text code"><?php echo esc_textarea( get_option( 'moderation_keys' ) ); ?></textarea> … … 180 180 <th scope="row"><?php _e('Comment Blacklist'); ?></th> 181 181 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Comment Blacklist'); ?></span></legend> 182 <p><label for="blacklist_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e -mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so “press” will match “WordPress”.'); ?></label></p>182 <p><label for="blacklist_keys"><?php _e('When a comment contains any of these words in its content, name, URL, email, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so “press” will match “WordPress”.'); ?></label></p> 183 183 <p> 184 184 <textarea name="blacklist_keys" rows="10" cols="50" id="blacklist_keys" class="large-text code"><?php echo esc_textarea( get_option( 'blacklist_keys' ) ); ?></textarea> … … 236 236 <td class="defaultavatarpicker"><fieldset><legend class="screen-reader-text"><span><?php _e('Default Avatar'); ?></span></legend> 237 237 238 <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their e -mail address.'); ?><br />238 <?php _e('For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'); ?><br /> 239 239 240 240 <?php
Note: See TracChangeset
for help on using the changeset viewer.