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/includes/revision.php

    r45926 r45932  
    242242            'date'       => date_i18n( __( 'M j, Y @ H:i' ), $modified ),
    243243            'dateShort'  => date_i18n( _x( 'j M @ H:i', 'revision date short format' ), $modified ),
    244             /* translators: %s: Human-readable time difference */
     244            /* translators: %s: Human-readable time difference. */
    245245            'timeAgo'    => sprintf( __( '%s ago' ), human_time_diff( $modified_gmt, $now_gmt ) ),
    246246            'autosave'   => $autosave,
     
    285285            'date'       => date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_modified ) ),
    286286            'dateShort'  => date_i18n( _x( 'j M @ H:i', 'revision date short format' ), strtotime( $post->post_modified ) ),
    287             /* translators: %s: Human-readable time difference */
     287            /* translators: %s: Human-readable time difference. */
    288288            'timeAgo'    => sprintf( __( '%s ago' ), human_time_diff( strtotime( $post->post_modified_gmt ), $now_gmt ) ),
    289289            'autosave'   => false,
     
    400400                        <?php
    401401                        printf(
    402                             /* translators: %s: user's display name */
     402                            /* translators: %s: User's display name. */
    403403                            __( 'Autosave by %s' ),
    404404                            '<span class="author-name">{{ data.attributes.author.name }}</span>'
     
    410410                        <?php
    411411                        printf(
    412                             /* translators: %s: user's display name */
     412                            /* translators: %s: User's display name. */
    413413                            __( 'Current Revision by %s' ),
    414414                            '<span class="author-name">{{ data.attributes.author.name }}</span>'
     
    420420                        <?php
    421421                        printf(
    422                             /* translators: %s: user's display name */
     422                            /* translators: %s: User's display name. */
    423423                            __( 'Revision by %s' ),
    424424                            '<span class="author-name">{{ data.attributes.author.name }}</span>'
Note: See TracChangeset for help on using the changeset viewer.