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/deprecated.php

    r45926 r45932  
    601601            if ( $this->paging_text ) {
    602602                $this->paging_text = sprintf(
    603                     /* translators: 1: starting number of users on the current page, 2: ending number of users, 3: total number of users */
     603                    /* translators: 1: Starting number of users on the current page, 2: Ending number of users, 3: Total number of users. */
    604604                    '<span class="displaying-num">' . __( 'Displaying %1$s&#8211;%2$s of %3$s' ) . '</span>%s',
    605605                    number_format_i18n( ( $this->page - 1 ) * $this->users_per_page + 1 ),
     
    13801380        echo '<li class="dashboard-news-plugin"><span>' . __( 'Popular Plugin' ) . ':</span> ' . esc_html( $raw_title ) .
    13811381            '&nbsp;<a href="' . $ilink . '" class="thickbox open-plugin-details-modal" aria-label="' .
    1382             /* translators: %s: plugin name */
     1382            /* translators: %s: Plugin name. */
    13831383            esc_attr( sprintf( __( 'Install %s' ), $raw_title ) ) . '">(' . __( 'Install' ) . ')</a></li>';
    13841384
Note: See TracChangeset for help on using the changeset viewer.