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/class-wp-xmlrpc-server.php

    r45906 r45932  
    63166316                401,
    63176317                sprintf(
    6318                     /* translators: %s: allowed space allocation */
     6318                    /* translators: %s: Allowed space allocation. */
    63196319                    __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ),
    63206320                    size_format( get_space_allowed() * MB_IN_BYTES )
     
    63416341        $upload = wp_upload_bits( $name, null, $bits );
    63426342        if ( ! empty( $upload['error'] ) ) {
    6343             /* translators: 1: file name, 2: error message */
     6343            /* translators: 1: File name, 2: Error message. */
    63446344            $errorString = sprintf( __( 'Could not write file %1$s (%2$s).' ), $name, $upload['error'] );
    63456345            return new IXR_Error( 500, $errorString );
     
    69736973        do_action( 'pingback_post', $comment_ID );
    69746974
    6975         /* translators: 1: URL of the page linked from, 2: URL of the page linked to */
     6975        /* translators: 1: URL of the page linked from, 2: URL of the page linked to. */
    69766976        return sprintf( __( 'Pingback from %1$s to %2$s registered. Keep the web talking! :-)' ), $pagelinkedfrom, $pagelinkedto );
    69776977    }
Note: See TracChangeset for help on using the changeset viewer.