Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/wp-includes/category-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -1230,6 +1230,7 @@ function get_the_tag_list( $before = '', $sep = '', $after = '', $post_id = 0 )
*/
function the_tags( $before = null, $sep = ', ', $after = '' ) {
if ( null === $before ) {
/* translators: There is a space after the colon. */
$before = __( 'Tags: ' );
}

Expand Down
2 changes: 2 additions & 0 deletions src/wp-includes/pluggable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2086,6 +2086,7 @@ function wp_notify_moderator( $comment_id ) {
$notify_message .= sprintf( __( 'Website: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
/* translators: %s: Trackback/pingback/comment author URL. */
$notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n";
/* translators: There is a space after the colon. */
$notify_message .= __( 'Trackback excerpt: ' ) . "\r\n" . $comment_content . "\r\n\r\n";
break;

Expand All @@ -2097,6 +2098,7 @@ function wp_notify_moderator( $comment_id ) {
$notify_message .= sprintf( __( 'Website: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
/* translators: %s: Trackback/pingback/comment author URL. */
$notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n";
/* translators: There is a space after the colon. */
$notify_message .= __( 'Pingback excerpt: ' ) . "\r\n" . $comment_content . "\r\n\r\n";
break;

Expand Down
Loading