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:
Sergey Biryukov
2019-09-03 00:39:13 +00:00
parent aed8c497cb
commit 00b03f2a6f
361 changed files with 2050 additions and 1861 deletions
+3 -3
View File
@@ -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>'
);