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/ms-load.php

    r45926 r45932  
    108108            wp_die(
    109109                sprintf(
    110                     /* translators: %s: admin email link */
     110                    /* translators: %s: Admin email link. */
    111111                    __( 'This site has not been activated yet. If you are having problems activating your site, please contact %s.' ),
    112112                    sprintf( '<a href="mailto:%1$s">%1$s</a>', $admin_email )
     
    476476    if ( ! $wpdb->get_var( $query ) ) {
    477477        $msg .= '<p>' . sprintf(
    478             /* translators: %s: table name */
     478            /* translators: %s: Table name. */
    479479            __( '<strong>Database tables are missing.</strong> This means that MySQL is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now.' ),
    480480            '<code>' . $wpdb->site . '</code>'
     
    482482    } else {
    483483        $msg .= '<p>' . sprintf(
    484             /* translators: 1: site url, 2: table name, 3: database name */
     484            /* translators: 1: Site URL, 2: Table name, 3: Database name. */
    485485            __( '<strong>Could not find site %1$s.</strong> Searched for table %2$s in database %3$s. Is that right?' ),
    486486            '<code>' . rtrim( $domain . $path, '/' ) . '</code>',
     
    491491    $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
    492492    $msg .= sprintf(
    493         /* translators: %s: Documentation URL */
     493        /* translators: %s: Documentation URL. */
    494494        __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
    495495        __( 'https://wordpress.org/support/article/debugging-a-wordpress-network/' )
Note: See TracChangeset for help on using the changeset viewer.