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/network/settings.php

    r45926 r45932  
    172172                        <?php
    173173                            printf(
    174                                 /* translators: %s: new network admin email */
     174                                /* translators: %s: New network admin email. */
    175175                                __( 'There is a pending change of the network admin email to %s.' ),
    176176                                '<code>' . esc_html( $new_admin_email ) . '</code>'
     
    366366                        <?php
    367367                        printf(
    368                             /* translators: %s: number of megabytes to limit uploads to */
     368                            /* translators: %s: Number of megabytes to limit uploads to. */
    369369                            __( 'Limit total size of files uploaded to %s MB' ),
    370370                            '</label><label><input name="blog_upload_space" type="number" min="0" style="width: 100px" id="blog_upload_space" aria-describedby="blog-upload-space-desc" value="' . esc_attr( get_site_option( 'blog_upload_space', 100 ) ) . '" />'
     
    393393                    <?php
    394394                        printf(
    395                             /* translators: %s: File size in kilobytes */
     395                            /* translators: %s: File size in kilobytes. */
    396396                            __( '%s KB' ),
    397397                            '<input name="fileupload_maxk" type="number" min="0" style="width: 100px" id="fileupload_maxk" aria-describedby="fileupload-maxk-desc" value="' . esc_attr( get_site_option( 'fileupload_maxk', 300 ) ) . '" />'
Note: See TracChangeset for help on using the changeset viewer.