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/class-wp-plugin-install-list-table.php

    r45926 r45932  
    500500            $author = wp_kses( $plugin['author'], $plugins_allowedtags );
    501501            if ( ! empty( $author ) ) {
    502                 /* translators: %s: plugin author */
     502                /* translators: %s: Plugin author. */
    503503                $author = ' <cite>' . sprintf( __( 'By %s' ), $author ) . '</cite>';
    504504            }
     
    524524                                    esc_attr( $plugin['slug'] ),
    525525                                    esc_url( $status['url'] ),
    526                                     /* translators: %s: plugin name and version */
     526                                    /* translators: %s: Plugin name and version. */
    527527                                    esc_attr( sprintf( __( 'Install %s now' ), $name ) ),
    528528                                    esc_attr( $name ),
     
    546546                                    esc_attr( $plugin['slug'] ),
    547547                                    esc_url( $status['url'] ),
    548                                     /* translators: %s: plugin name and version */
     548                                    /* translators: %s: Plugin name and version. */
    549549                                    esc_attr( sprintf( __( 'Update %s now' ), $name ) ),
    550550                                    esc_attr( $name ),
     
    569569                        } elseif ( current_user_can( 'activate_plugin', $status['file'] ) ) {
    570570                            $button_text = __( 'Activate' );
    571                             /* translators: %s: plugin name */
     571                            /* translators: %s: Plugin name. */
    572572                            $button_label = _x( 'Activate %s', 'plugin' );
    573573                            $activate_url = add_query_arg(
     
    582582                            if ( is_network_admin() ) {
    583583                                $button_text = __( 'Network Activate' );
    584                                 /* translators: %s: plugin name */
     584                                /* translators: %s: Plugin name. */
    585585                                $button_label = _x( 'Network Activate %s', 'plugin' );
    586586                                $activate_url = add_query_arg( array( 'networkwide' => 1 ), $activate_url );
     
    611611                '<a href="%s" class="thickbox open-plugin-details-modal" aria-label="%s" data-title="%s">%s</a>',
    612612                esc_url( $details_link ),
    613                 /* translators: %s: plugin name and version */
     613                /* translators: %s: Plugin name and version. */
    614614                esc_attr( sprintf( __( 'More information about %s' ), $name ) ),
    615615                esc_attr( $name ),
     
    647647                    if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) {
    648648                        printf(
    649                             /* translators: 1: "Update WordPress" screen URL, 2: "Update PHP" page URL */
     649                            /* translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. */
    650650                            ' ' . __( '<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>.' ),
    651651                            self_admin_url( 'update-core.php' ),
     
    655655                    } elseif ( current_user_can( 'update_core' ) ) {
    656656                        printf(
    657                             /* translators: %s: "Update WordPress" screen URL */
     657                            /* translators: %s: URL to WordPress Updates screen. */
    658658                            ' ' . __( '<a href="%s">Please update WordPress</a>.' ),
    659659                            self_admin_url( 'update-core.php' )
     
    661661                    } elseif ( current_user_can( 'update_php' ) ) {
    662662                        printf(
    663                             /* translators: %s: "Update PHP" page URL */
     663                            /* translators: %s: URL to Update PHP page. */
    664664                            ' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
    665665                            esc_url( wp_get_update_php_url() )
     
    671671                    if ( current_user_can( 'update_core' ) ) {
    672672                        printf(
    673                             /* translators: %s: "Update WordPress" screen URL */
     673                            /* translators: %s: URL to WordPress Updates screen. */
    674674                            ' ' . __( '<a href="%s">Please update WordPress</a>.' ),
    675675                            self_admin_url( 'update-core.php' )
     
    680680                    if ( current_user_can( 'update_php' ) ) {
    681681                        printf(
    682                             /* translators: %s: "Update PHP" page URL */
     682                            /* translators: %s: URL to Update PHP page. */
    683683                            ' ' . __( '<a href="%s">Learn more about updating PHP</a>.' ),
    684684                            esc_url( wp_get_update_php_url() )
     
    727727                    <strong><?php _e( 'Last Updated:' ); ?></strong>
    728728                    <?php
    729                         /* translators: %s: Human-readable time difference */
     729                        /* translators: %s: Human-readable time difference. */
    730730                        printf( __( '%s ago' ), human_time_diff( $last_updated_timestamp ) );
    731731                    ?>
     
    736736                        $active_installs_millions = floor( $plugin['active_installs'] / 1000000 );
    737737                        $active_installs_text     = sprintf(
    738                             /* translators: %s: number of millions */
     738                            /* translators: %s: Number of millions. */
    739739                            _nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ),
    740740                            number_format_i18n( $active_installs_millions )
     
    745745                        $active_installs_text = number_format_i18n( $plugin['active_installs'] ) . '+';
    746746                    }
    747                     /* translators: %s: number of installations */
     747                    /* translators: %s: Number of installations. */
    748748                    printf( __( '%s Active Installations' ), $active_installs_text );
    749749                    ?>
Note: See TracChangeset for help on using the changeset viewer.