Ticket #41705: 41705.patch
File 41705.patch, 5.3 KB (added by , 8 years ago) |
---|
-
wp-admin/includes/class-core-upgrader.php
29 29 $this->strings['up_to_date'] = __('WordPress is at the latest version.'); 30 30 $this->strings['locked'] = __('Another update is currently in progress.'); 31 31 $this->strings['no_package'] = __('Update package not available.'); 32 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…');32 $this->strings['downloading_package'] = __('Downloading update from %s…'); 33 33 $this->strings['unpack_package'] = __('Unpacking the update…'); 34 34 $this->strings['copy_failed'] = __('Could not copy files.'); 35 35 $this->strings['copy_failed_space'] = __('Could not copy files. You may have run out of disk space.' ); -
wp-admin/includes/class-language-pack-upgrader.php
112 112 $this->strings['starting_upgrade'] = __( 'Some of your translations need updating. Sit tight for a few more seconds while we update them as well.' ); 113 113 $this->strings['up_to_date'] = __( 'The translations are up to date.' ); 114 114 $this->strings['no_package'] = __( 'Update package not available.' ); 115 $this->strings['downloading_package'] = __( 'Downloading translation from <span class="code">%s</span>…' );115 $this->strings['downloading_package'] = __( 'Downloading translation from %s…' ); 116 116 $this->strings['unpack_package'] = __( 'Unpacking the update…' ); 117 117 $this->strings['process_failed'] = __( 'Translation update failed.' ); 118 118 $this->strings['process_success'] = __( 'Translation updated successfully.' ); -
wp-admin/includes/class-plugin-upgrader.php
46 46 public function upgrade_strings() { 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 $this->strings['downloading_package'] = __('Downloading update from %s…'); 50 50 $this->strings['unpack_package'] = __('Unpacking the update…'); 51 51 $this->strings['remove_old'] = __('Removing the old version of the plugin…'); 52 52 $this->strings['remove_old_failed'] = __('Could not remove the old plugin.'); … … 62 62 */ 63 63 public function install_strings() { 64 64 $this->strings['no_package'] = __('Installation package not available.'); 65 $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…');65 $this->strings['downloading_package'] = __('Downloading installation package from %s…'); 66 66 $this->strings['unpack_package'] = __('Unpacking the package…'); 67 67 $this->strings['installing_package'] = __('Installing the plugin…'); 68 68 $this->strings['no_files'] = __('The plugin contains no files.'); -
wp-admin/includes/class-theme-upgrader.php
45 45 public function upgrade_strings() { 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 $this->strings['downloading_package'] = __('Downloading update from %s…'); 49 49 $this->strings['unpack_package'] = __('Unpacking the update…'); 50 50 $this->strings['remove_old'] = __('Removing the old version of the theme…'); 51 51 $this->strings['remove_old_failed'] = __('Could not remove the old theme.'); … … 60 60 */ 61 61 public function install_strings() { 62 62 $this->strings['no_package'] = __('Installation package not available.'); 63 $this->strings['downloading_package'] = __('Downloading installation package from <span class="code">%s</span>…');63 $this->strings['downloading_package'] = __('Downloading installation package from %s…'); 64 64 $this->strings['unpack_package'] = __('Unpacking the package…'); 65 65 $this->strings['installing_package'] = __('Installing the theme…'); 66 66 $this->strings['no_files'] = __('The theme contains no files.'); -
wp-admin/includes/class-wp-upgrader.php
261 261 if ( empty($package) ) 262 262 return new WP_Error('no_package', $this->strings['no_package']); 263 263 264 $this->skin->feedback('downloading_package', $package);264 $this->skin->feedback('downloading_package', '<span class="code">' . $package . '</span>' ); 265 265 266 266 $download_file = download_url($package); 267 267