Changeset 41908 for trunk/src/wp-admin/includes/class-plugin-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-plugin-upgrader.php
r41289 r41908 47 47 $this->strings['up_to_date'] = __('The plugin is at the latest version.'); 48 48 $this->strings['no_package'] = __('Update package not available.'); 49 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 49 /* translators: %s: package URL */ 50 $this->strings['downloading_package'] = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' ); 50 51 $this->strings['unpack_package'] = __('Unpacking the update…'); 51 52 $this->strings['remove_old'] = __('Removing the old version of the plugin…'); … … 63 64 public function install_strings() { 64 65 $this->strings['no_package'] = __('Installation package not available.'); 65 $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…'); 66 /* translators: %s: package URL */ 67 $this->strings['downloading_package'] = sprintf( __( 'Downloading installation package from %s…' ), '<span class="code">%s</span>' ); 66 68 $this->strings['unpack_package'] = __('Unpacking the package…'); 67 69 $this->strings['installing_package'] = __('Installing the plugin…');
Note: See TracChangeset
for help on using the changeset viewer.