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-language-pack-upgrader.php

    r41289 r41908  
    113113        $this->strings['up_to_date'] = __( 'The translations are up to date.' );
    114114        $this->strings['no_package'] = __( 'Update package not available.' );
    115         $this->strings['downloading_package'] = __( 'Downloading translation from <span class="code">%s</span>&#8230;' );
     115        /* translators: %s: package URL */
     116        $this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s&#8230;' ), '<span class="code">%s</span>' );
    116117        $this->strings['unpack_package'] = __( 'Unpacking the update&#8230;' );
    117118        $this->strings['process_failed'] = __( 'Translation update failed.' );
Note: See TracChangeset for help on using the changeset viewer.