Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (5 years ago)
Author:
SergeyBiryukov
Message:

I18N: Capitalize translator comments consistently, add trailing punctuation.

Includes minor code layout fixes.

See #44360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/comment.php

    r45926 r45932  
    176176<?php } ?>
    177177<tr>
    178     <th scope="row"><?php /* translators: column name or table row header */ _e( 'In Response To' ); ?></th>
     178    <th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In Response To' ); ?></th>
    179179    <td>
    180180        <?php
     
    193193            $name        = get_comment_author( $parent );
    194194            printf(
    195                 /* translators: %s: comment link */
     195                /* translators: %s: Comment link. */
    196196                ' | ' . __( 'In reply to %s.' ),
    197197                '<a href="' . $parent_link . '">' . $name . '</a>'
     
    206206        <?php
    207207        $submitted = sprintf(
    208             /* translators: 1: comment date, 2: comment time */
     208            /* translators: 1: Comment date, 2: Comment time. */
    209209            __( '%1$s at %2$s' ),
    210             /* translators: comment date format. See https://secure.php.net/date */
     210            /* translators: Comment date format. See https://secure.php.net/date */
    211211            get_comment_date( __( 'Y/m/d' ), $comment ),
    212212            get_comment_date( __( 'g:i a' ), $comment )
     
    221221    </tr>
    222222    <tr>
    223     <th scope="row"><?php /* translators: field name in comment form */ _ex( 'Comment', 'noun' ); ?></th>
     223    <th scope="row"><?php /* translators: Field name in comment form. */ _ex( 'Comment', 'noun' ); ?></th>
    224224    <td class="comment-content">
    225225        <?php comment_text( $comment ); ?>
Note: See TracChangeset for help on using the changeset viewer.