Changeset 45401 for trunk/src/wp-admin/options-discussion.php
- Timestamp:
- 05/24/2019 07:17:50 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-discussion.php
r45382 r45401 44 44 <table class="form-table"> 45 45 <tr> 46 <th scope="row"><?php _e( 'Default articlesettings' ); ?></th>47 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Default articlesettings' ); ?></span></legend>46 <th scope="row"><?php _e( 'Default post settings' ); ?></th> 47 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Default post settings' ); ?></span></legend> 48 48 <label for="default_pingback_flag"> 49 49 <input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked( '1', get_option( 'default_pingback_flag' ) ); ?> /> 50 <?php _e( 'Attempt to notify any blogs linked to from the article' ); ?></label>50 <?php _e( 'Attempt to notify any blogs linked to from the post' ); ?></label> 51 51 <br /> 52 52 <label for="default_ping_status"> 53 53 <input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked( 'open', get_option( 'default_ping_status' ) ); ?> /> 54 <?php _e( 'Allow link notifications from other blogs (pingbacks and trackbacks) on new articles' ); ?></label>54 <?php _e( 'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts' ); ?></label> 55 55 <br /> 56 56 <label for="default_comment_status"> 57 57 <input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked( 'open', get_option( 'default_comment_status' ) ); ?> /> 58 <?php _e( 'Allow people to post comments on new articles' ); ?></label>59 <br /> 60 <p class="description"><?php echo '(' . __( 'These settings may be overridden for individual articles.' ) . ')'; ?></p>58 <?php _e( 'Allow people to submit comments on new posts' ); ?></label> 59 <br /> 60 <p class="description"><?php echo '(' . __( 'These settings may be overridden for individual posts.' ) . ')'; ?></p> 61 61 </fieldset></td> 62 62 </tr> … … 80 80 <?php 81 81 printf( 82 __( 'Automatically close comments on articles older than %s days' ),82 __( 'Automatically close comments on posts older than %s days' ), 83 83 '</label> <label for="close_comments_days_old"><input name="close_comments_days_old" type="number" min="0" step="1" id="close_comments_days_old" value="' . esc_attr( get_option( 'close_comments_days_old' ) ) . '" class="small-text" />' 84 84 );
Note: See TracChangeset
for help on using the changeset viewer.