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-admin/includes/class-wp-filesystem-base.php

    r45583 r45932  
    252252
    253253        if ( $this->verbose ) {
    254             /* translators: 1: folder to locate, 2: folder to start searching from */
     254            /* translators: 1: Folder to locate, 2: Folder to start searching from. */
    255255            printf( "\n" . __( 'Looking for %1$s in %2$s' ) . "<br/>\n", $folder, $base );
    256256        }
     
    280280                $newdir = trailingslashit( path_join( $base, $key ) );
    281281                if ( $this->verbose ) {
    282                     /* translators: %s: directory name */
     282                    /* translators: %s: Directory name. */
    283283                    printf( "\n" . __( 'Changing to %s' ) . "<br/>\n", $newdir );
    284284                }
     
    297297        if ( isset( $files[ $last_path ] ) ) {
    298298            if ( $this->verbose ) {
    299                 /* translators: %s: directory name */
     299                /* translators: %s: Directory name. */
    300300                printf( "\n" . __( 'Found %s' ) . "<br/>\n", $base . $last_path );
    301301            }
Note: See TracChangeset for help on using the changeset viewer.