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/rest-api/fields/class-wp-rest-meta-fields.php

    r45903 r45932  
    152152                        return new WP_Error(
    153153                            'rest_invalid_stored_value',
    154                             /* translators: %s: custom field key */
     154                            /* translators: %s: Custom field key. */
    155155                            sprintf( __( 'The %s property has an invalid stored value, and cannot be updated to null.' ), $name ),
    156156                            array( 'status' => 500 )
     
    171171                return new WP_Error(
    172172                    'rest_invalid_stored_value',
    173                     /* translators: %s: custom field key */
     173                    /* translators: %s: Custom field key. */
    174174                    sprintf( __( 'The %s property has an invalid stored value, and cannot be updated to null.' ), $name ),
    175175                    array( 'status' => 500 )
     
    214214            return new WP_Error(
    215215                'rest_cannot_delete',
    216                 /* translators: %s: custom field key */
     216                /* translators: %s: Custom field key. */
    217217                sprintf( __( 'Sorry, you are not allowed to edit the %s custom field.' ), $name ),
    218218                array(
     
    255255            return new WP_Error(
    256256                'rest_cannot_update',
    257                 /* translators: %s: custom field key */
     257                /* translators: %s: Custom field key. */
    258258                sprintf( __( 'Sorry, you are not allowed to edit the %s custom field.' ), $name ),
    259259                array(
     
    296296                return new WP_Error(
    297297                    'rest_meta_database_error',
    298                     /* translators: %s: custom field key */
     298                    /* translators: %s: Custom field key. */
    299299                    sprintf( __( 'Could not update the meta value of %s in database.' ), $meta_key ),
    300300                    array(
     
    310310                return new WP_Error(
    311311                    'rest_meta_database_error',
    312                     /* translators: %s: custom field key */
     312                    /* translators: %s: Custom field key. */
    313313                    sprintf( __( 'Could not update the meta value of %s in database.' ), $meta_key ),
    314314                    array(
     
    339339            return new WP_Error(
    340340                'rest_cannot_update',
    341                 /* translators: %s: custom field key */
     341                /* translators: %s: Custom field key. */
    342342                sprintf( __( 'Sorry, you are not allowed to edit the %s custom field.' ), $name ),
    343343                array(
     
    369369            return new WP_Error(
    370370                'rest_meta_database_error',
    371                 /* translators: %s: custom field key */
     371                /* translators: %s: Custom field key. */
    372372                sprintf( __( 'Could not update the meta value of %s in database.' ), $meta_key ),
    373373                array(
Note: See TracChangeset for help on using the changeset viewer.