Make WordPress Core


Ignore:
Timestamp:
10/18/2017 05:14:58 PM (7 years ago)
Author:
SergeyBiryukov
Message:

I18N: Remove <code> tags from translatable strings in Core_Upgrader, Language_Pack_Upgrader, Plugin_Upgrader, Theme_Upgrader.

Props ramiy.
Fixes #41705.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-core-upgrader.php

    r41289 r41908  
    3030        $this->strings['locked'] = __('Another update is currently in progress.');
    3131        $this->strings['no_package'] = __('Update package not available.');
    32         $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>&#8230;');
     32        /* translators: %s: package URL */
     33        $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s&#8230;' ), '<span class="code">%s</span>' );
    3334        $this->strings['unpack_package'] = __('Unpacking the update&#8230;');
    3435        $this->strings['copy_failed'] = __('Could not copy files.');
Note: See TracChangeset for help on using the changeset viewer.