Changeset 41908 for trunk/src/wp-admin/includes/class-theme-upgrader.php
- Timestamp:
- 10/18/2017 05:14:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-theme-upgrader.php
r41289 r41908 46 46 $this->strings['up_to_date'] = __('The theme is at the latest version.'); 47 47 $this->strings['no_package'] = __('Update package not available.'); 48 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 48 /* translators: %s: package URL */ 49 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); 49 50 $this->strings['unpack_package'] = __('Unpacking the update…'); 50 51 $this->strings['remove_old'] = __('Removing the old version of the theme…'); … … 61 62 public function install_strings() { 62 63 $this->strings['no_package'] = __('Installation package not available.'); 63 $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…'); 64 /* translators: %s: package URL */ 65 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' ); 64 66 $this->strings['unpack_package'] = __('Unpacking the package…'); 65 67 $this->strings['installing_package'] = __('Installing the theme…');
Note: See TracChangeset
for help on using the changeset viewer.