Changeset 12533 for trunk/wp-admin/includes/class-wp-upgrader.php
- Timestamp:
- 12/24/2009 09:46:57 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r12227 r12533 52 52 53 53 $this->strings['download_failed'] = __('Download failed.'); 54 $this->strings['installing_package'] = __('Installing the latest version .');54 $this->strings['installing_package'] = __('Installing the latest version…'); 55 55 $this->strings['folder_exists'] = __('Destination folder already exists.'); 56 56 $this->strings['mkdir_failed'] = __('Could not create directory.'); 57 57 $this->strings['bad_package'] = __('Incompatible Archive'); 58 58 59 $this->strings['maintenance_start'] = __('Enabling Maintenance mode .');60 $this->strings['maintenance_end'] = __('Disabling Maintenance mode .');59 $this->strings['maintenance_start'] = __('Enabling Maintenance mode…'); 60 $this->strings['maintenance_end'] = __('Disabling Maintenance mode…'); 61 61 } 62 62 … … 367 367 $this->strings['up_to_date'] = __('The plugin is at the latest version.'); 368 368 $this->strings['no_package'] = __('Upgrade package not available.'); 369 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span> .');370 $this->strings['unpack_package'] = __('Unpacking the update .');371 $this->strings['deactivate_plugin'] = __('Deactivating the plugin .');372 $this->strings['remove_old'] = __('Removing the old version of the plugin .');369 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 370 $this->strings['unpack_package'] = __('Unpacking the update…'); 371 $this->strings['deactivate_plugin'] = __('Deactivating the plugin…'); 372 $this->strings['remove_old'] = __('Removing the old version of the plugin…'); 373 373 $this->strings['remove_old_failed'] = __('Could not remove the old plugin.'); 374 $this->strings['process_failed'] = __('Plugin upgrade Failed.');374 $this->strings['process_failed'] = __('Plugin upgrade failed.'); 375 375 $this->strings['process_success'] = __('Plugin upgraded successfully.'); 376 376 } … … 378 378 function install_strings() { 379 379 $this->strings['no_package'] = __('Install package not available.'); 380 $this->strings['downloading_package'] = __('Downloading install package from <span class="code">%s</span> .');381 $this->strings['unpack_package'] = __('Unpacking the package .');382 $this->strings['installing_package'] = __('Installing the plugin .');383 $this->strings['process_failed'] = __('Plugin Install Failed.');384 $this->strings['process_success'] = __('Plugin Installed successfully.');380 $this->strings['downloading_package'] = __('Downloading install package from <span class="code">%s</span>…'); 381 $this->strings['unpack_package'] = __('Unpacking the package…'); 382 $this->strings['installing_package'] = __('Installing the plugin…'); 383 $this->strings['process_failed'] = __('Plugin install failed.'); 384 $this->strings['process_success'] = __('Plugin installed successfully.'); 385 385 } 386 386 … … 593 593 $this->strings['up_to_date'] = __('The theme is at the latest version.'); 594 594 $this->strings['no_package'] = __('Upgrade package not available.'); 595 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span> .');596 $this->strings['unpack_package'] = __('Unpacking the update .');597 $this->strings['remove_old'] = __('Removing the old version of the theme .');595 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 596 $this->strings['unpack_package'] = __('Unpacking the update…'); 597 $this->strings['remove_old'] = __('Removing the old version of the theme…'); 598 598 $this->strings['remove_old_failed'] = __('Could not remove the old theme.'); 599 $this->strings['process_failed'] = __('Theme upgrade Failed.');599 $this->strings['process_failed'] = __('Theme upgrade failed.'); 600 600 $this->strings['process_success'] = __('Theme upgraded successfully.'); 601 601 } … … 603 603 function install_strings() { 604 604 $this->strings['no_package'] = __('Install package not available.'); 605 $this->strings['downloading_package'] = __('Downloading install package from <span class="code">%s</span> .');606 $this->strings['unpack_package'] = __('Unpacking the package .');607 $this->strings['installing_package'] = __('Installing the theme .');608 $this->strings['process_failed'] = __('Theme Install Failed.');609 $this->strings['process_success'] = __('Theme Installed successfully.');605 $this->strings['downloading_package'] = __('Downloading install package from <span class="code">%s</span>…'); 606 $this->strings['unpack_package'] = __('Unpacking the package…'); 607 $this->strings['installing_package'] = __('Installing the theme…'); 608 $this->strings['process_failed'] = __('Theme install failed.'); 609 $this->strings['process_success'] = __('Theme installed successfully.'); 610 610 } 611 611 … … 750 750 $this->strings['up_to_date'] = __('WordPress is at the latest version.'); 751 751 $this->strings['no_package'] = __('Upgrade package not available.'); 752 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span> .');753 $this->strings['unpack_package'] = __('Unpacking the update .');752 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 753 $this->strings['unpack_package'] = __('Unpacking the update…'); 754 754 $this->strings['copy_failed'] = __('Could not copy files.'); 755 755 } … … 914 914 $this->plugin = $this->upgrader->plugin_info(); 915 915 if( !empty($this->plugin) && !is_wp_error($this->result) && $this->plugin_active ){ 916 show_message(__(' Attempting reactivation of the plugin'));916 show_message(__('Reactivating the plugin…')); 917 917 echo '<iframe style="border:0;overflow:hidden" width="100%" height="170px" src="' . wp_nonce_url('update.php?action=activate-plugin&plugin=' . $this->plugin, 'activate-plugin_' . $this->plugin) .'"></iframe>'; 918 918 }
Note: See TracChangeset
for help on using the changeset viewer.