Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (6 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/ms-site.php

    r45910 r45932  
    689689        array(
    690690            'user_id' => 0,
    691             /* translators: %d: site ID */
     691            /* translators: %d: Site ID. */
    692692            'title'   => sprintf( __( 'Site %d' ), $site->id ),
    693693            'options' => array(),
     
    13201320function wp_check_site_meta_support_prefilter( $check ) {
    13211321    if ( ! is_site_meta_supported() ) {
    1322         /* translators: %s: database table name */
     1322        /* translators: %s: Database table name. */
    13231323        _doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' );
    13241324        return false;
Note: See TracChangeset for help on using the changeset viewer.