Changeset 45932 for trunk/src/wp-admin/options-discussion.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-discussion.php
r45926 r45932 80 80 <?php 81 81 printf( 82 /* translators: %s: number of days*/82 /* translators: %s: Number of days. */ 83 83 __( 'Automatically close comments on posts older than %s days' ), 84 84 '</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" />' … … 116 116 $thread_comments_depth .= '</select>'; 117 117 118 /* translators: %s: number of levels*/118 /* translators: %s: Number of levels. */ 119 119 printf( __( 'Enable threaded (nested) comments %s levels deep' ), $thread_comments_depth ); 120 120 … … 135 135 $default_comments_page .= '>' . __( 'first' ) . '</option></select>'; 136 136 printf( 137 /* translators: 1: Form field control for number of top level comments per page, 2: Form field control for the 'first' or 'last' page */137 /* translators: 1: Form field control for number of top level comments per page, 2: Form field control for the 'first' or 'last' page. */ 138 138 __( 'Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default' ), 139 139 '</label> <label for="comments_per_page"><input name="comments_per_page" type="number" step="1" min="0" id="comments_per_page" value="' . esc_attr( get_option( 'comments_per_page' ) ) . '" class="small-text" />', … … 156 156 $comment_order .= '>' . __( 'newer' ) . '</option></select>'; 157 157 158 /* translators: %s: Form field control for 'older' or 'newer' comments */158 /* translators: %s: Form field control for 'older' or 'newer' comments. */ 159 159 printf( __( 'Comments should be displayed with the %s comments at the top of each page' ), $comment_order ); 160 160 … … 191 191 <?php 192 192 printf( 193 /* translators: %s: number of links*/193 /* translators: %s: Number of links. */ 194 194 __( '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.)' ), 195 195 '<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" />'
Note: See TracChangeset
for help on using the changeset viewer.