mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
I18N: Capitalize translator comments consistently, add trailing punctuation.
Includes minor code layout fixes. See #44360. git-svn-id: https://develop.svn.wordpress.org/trunk@45932 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -109,7 +109,7 @@ $datef = __( 'M j, Y @ H:i' );
|
||||
<span id="timestamp">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: comment date */
|
||||
/* translators: %s: Comment date. */
|
||||
__( 'Submitted on: %s' ),
|
||||
'<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
|
||||
);
|
||||
@@ -135,7 +135,7 @@ if ( current_user_can( 'edit_post', $post_id ) ) {
|
||||
<div class="misc-pub-section misc-pub-response-to">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: post link */
|
||||
/* translators: %s: Post link. */
|
||||
__( 'In response to: %s' ),
|
||||
'<b>' . $post_link . '</b>'
|
||||
);
|
||||
@@ -152,7 +152,7 @@ if ( $comment->comment_parent ) :
|
||||
<div class="misc-pub-section misc-pub-reply-to">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: %s: comment link */
|
||||
/* translators: %s: Comment link. */
|
||||
__( 'In reply to: %s' ),
|
||||
'<b><a href="' . $parent_link . '">' . $name . '</a></b>'
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user