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-includes/customize/class-wp-customize-theme-control.php

    r45527 r45932  
    5858     */
    5959    public function content_template() {
    60         /* translators: %s: theme name */
     60        /* translators: %s: Theme name. */
    6161        $details_label = sprintf( __( 'Details for theme: %s' ), '{{ data.theme.name }}' );
    62         /* translators: %s: theme name */
     62        /* translators: %s: Theme name. */
    6363        $customize_label = sprintf( __( 'Customize theme: %s' ), '{{ data.theme.name }}' );
    64         /* translators: %s: theme name */
     64        /* translators: %s: Theme name. */
    6565        $preview_label = sprintf( __( 'Live preview theme: %s' ), '{{ data.theme.name }}' );
    66         /* translators: %s: theme name */
     66        /* translators: %s: Theme name. */
    6767        $install_label = sprintf( __( 'Install and preview theme: %s' ), '{{ data.theme.name }}' );
    6868        ?>
     
    8585            <div class="theme-author">
    8686            <?php
    87                 /* translators: Theme author name */
     87                /* translators: Theme author name. */
    8888                printf( _x( 'By %s', 'theme author' ), '{{ data.theme.author }}' );
    8989            ?>
     
    9898                        } else {
    9999                            printf(
    100                                 /* translators: %s: "Update now" button */
     100                                /* translators: %s: "Update now" button. */
    101101                                __( 'New version available. %s' ),
    102102                                '<button class="button-link update-theme" type="button">' . __( 'Update now' ) . '</button>'
Note: See TracChangeset for help on using the changeset viewer.