Changeset 45926 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r45787 r45926 1152 1152 __FUNCTION__, 1153 1153 '2.5.0', 1154 /* translators: %s: get_trackback_url() */1155 1154 sprintf( 1155 /* translators: %s: get_trackback_url() */ 1156 1156 __( 'Use %s instead if you do not want the value echoed.' ), 1157 1157 '<code>get_trackback_url()</code>' … … 1935 1935 } 1936 1936 if ( false === $replytext ) { 1937 /* translators: %s: author of the comment being replied to */ 1937 1938 $replytext = __( 'Leave a Reply to %s' ); 1938 1939 } … … 2293 2294 } 2294 2295 2295 $required_text = sprintf( ' ' . __( 'Required fields are marked %s' ), '<span class="required">*</span>' ); 2296 $required_text = sprintf( 2297 /* translators: %s: an asterisk symbol (*) */ 2298 ' ' . __( 'Required fields are marked %s' ), 2299 '<span class="required">*</span>' 2300 ); 2296 2301 2297 2302 /** … … 2309 2314 'must_log_in' => '<p class="must-log-in">' . sprintf( 2310 2315 /* translators: %s: login URL */ 2311 2316 __( 'You must be <a href="%s">logged in</a> to post a comment.' ), 2312 2317 wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) 2313 2318 ) . '</p>', … … 2315 2320 'logged_in_as' => '<p class="logged-in-as">' . sprintf( 2316 2321 /* translators: 1: edit user link, 2: accessibility text, 3: user name, 4: logout URL */ 2317 2322 __( '<a href="%1$s" aria-label="%2$s">Logged in as %3$s</a>. <a href="%4$s">Log out?</a>' ), 2318 2323 get_edit_user_link(), 2319 2324 /* translators: %s: user name */ 2320 2325 esc_attr( sprintf( __( 'Logged in as %s. Edit your profile.' ), $user_identity ) ), 2321 2326 $user_identity, 2322 2327 wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) … … 2331 2336 'name_submit' => 'submit', 2332 2337 'title_reply' => __( 'Leave a Reply' ), 2338 /* translators: %s: author of the comment being replied to */ 2333 2339 'title_reply_to' => __( 'Leave a Reply to %s' ), 2334 2340 'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">',
Note: See TracChangeset
for help on using the changeset viewer.