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/edit-form-comment.php

    r45416 r45932  
    110110<?php
    111111printf(
    112     /* translators: %s: comment date */
     112    /* translators: %s: Comment date. */
    113113    __( 'Submitted on: %s' ),
    114114    '<b>' . date_i18n( $datef, strtotime( $comment->comment_date ) ) . '</b>'
     
    136136    <?php
    137137    printf(
    138         /* translators: %s: post link */
     138        /* translators: %s: Post link. */
    139139        __( 'In response to: %s' ),
    140140        '<b>' . $post_link . '</b>'
     
    153153        <?php
    154154        printf(
    155             /* translators: %s: comment link */
     155            /* translators: %s: Comment link. */
    156156            __( 'In reply to: %s' ),
    157157            '<b><a href="' . $parent_link . '">' . $name . '</a></b>'
Note: See TracChangeset for help on using the changeset viewer.