Changeset 50112 for trunk/src/wp-includes/comment.php
- Timestamp:
- 01/31/2021 05:35:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r50109 r50112 2390 2390 2391 2391 $subject = sprintf( 2392 /* translators: 1: blog name, 2: post title*/2392 /* translators: 1: Blog name, 2: Post title. */ 2393 2393 __( '[%1$s] Your comment on "%2$s" has been approved' ), 2394 2394 $blogname, … … 2398 2398 if ( ! empty( $comment->comment_author ) ) { 2399 2399 $notify_message = sprintf( 2400 /* translators: 1: comment author's name*/2400 /* translators: %s: Comment author's name. */ 2401 2401 __( 'Howdy %s,' ), 2402 2402 $comment->comment_author … … 2407 2407 2408 2408 $notify_message .= sprintf( 2409 /* translators: 1: post title*/2409 /* translators: %s: Post title. */ 2410 2410 __( 'Your comment on "%s" has been approved.' ), 2411 2411 $post->post_title … … 2413 2413 2414 2414 $notify_message .= sprintf( 2415 /* translators: 1: comment permalink*/2415 /* translators: %s: Comment permalink. */ 2416 2416 __( 'View comment: %s' ), 2417 2417 get_comment_link( $comment )
Note: See TracChangeset
for help on using the changeset viewer.