Make WordPress Core

Changeset 45167


Ignore:
Timestamp:
04/12/2019 04:31:37 PM (5 years ago)
Author:
desrosj
Message:

Administration: Remove unnecessary numbered placeholders.

Props: tobifjellner, thrijith.
Fixes #46824.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/file.php

    r45148 r45167  
    11401140            'signature_verification_unsupported',
    11411141            sprintf(
    1142                 /* translators: 1: The filename of the package. */
    1143                 __( 'The authenticity of %1$s could not be verified as signature verification is unavailable on this system.' ),
     1142                /* translators: %s: The filename of the package. */
     1143                __( 'The authenticity of %s could not be verified as signature verification is unavailable on this system.' ),
    11441144                '<span class="code">' . esc_html( $filename_for_errors ) . '</span>'
    11451145            ),
     
    11521152            'signature_verification_no_signature',
    11531153            sprintf(
    1154                 /* translators: 1: The filename of the package. */
    1155                 __( 'The authenticity of %1$s could not be verified as no signature was found.' ),
     1154                /* translators: %s: The filename of the package. */
     1155                __( 'The authenticity of %s could not be verified as no signature was found.' ),
    11561156                '<span class="code">' . esc_html( $filename_for_errors ) . '</span>'
    11571157            ),
     
    11991199        'signature_verification_failed',
    12001200        sprintf(
    1201             /* translators: 1: The filename of the package. */
    1202             __( 'The authenticity of %1$s could not be verified.' ),
     1201            /* translators: %s: The filename of the package. */
     1202            __( 'The authenticity of %s could not be verified.' ),
    12031203            '<span class="code">' . esc_html( $filename_for_errors ) . '</span>'
    12041204        ),
Note: See TracChangeset for help on using the changeset viewer.