Make WordPress Core


Ignore:
Timestamp:
12/24/2009 09:46:57 AM (15 years ago)
Author:
westi
Message:

Consitent use of … Fixes #10374 props demetris.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-upgrader.php

    r12227 r12533  
    5252
    5353        $this->strings['download_failed'] = __('Download failed.');
    54         $this->strings['installing_package'] = __('Installing the latest version.');
     54        $this->strings['installing_package'] = __('Installing the latest version…');
    5555        $this->strings['folder_exists'] = __('Destination folder already exists.');
    5656        $this->strings['mkdir_failed'] = __('Could not create directory.');
    5757        $this->strings['bad_package'] = __('Incompatible Archive');
    5858
    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…');
    6161    }
    6262
     
    367367        $this->strings['up_to_date'] = __('The plugin is at the latest version.');
    368368        $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>&#8230;');
     370        $this->strings['unpack_package'] = __('Unpacking the update&#8230;');
     371        $this->strings['deactivate_plugin'] = __('Deactivating the plugin&#8230;');
     372        $this->strings['remove_old'] = __('Removing the old version of the plugin&#8230;');
    373373        $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.');
    375375        $this->strings['process_success'] = __('Plugin upgraded successfully.');
    376376    }
     
    378378    function install_strings() {
    379379        $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>&#8230;');
     381        $this->strings['unpack_package'] = __('Unpacking the package&#8230;');
     382        $this->strings['installing_package'] = __('Installing the plugin&#8230;');
     383        $this->strings['process_failed'] = __('Plugin install failed.');
     384        $this->strings['process_success'] = __('Plugin installed successfully.');
    385385    }
    386386
     
    593593        $this->strings['up_to_date'] = __('The theme is at the latest version.');
    594594        $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>&#8230;');
     596        $this->strings['unpack_package'] = __('Unpacking the update&#8230;');
     597        $this->strings['remove_old'] = __('Removing the old version of the theme&#8230;');
    598598        $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.');
    600600        $this->strings['process_success'] = __('Theme upgraded successfully.');
    601601    }
     
    603603    function install_strings() {
    604604        $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>&#8230;');
     606        $this->strings['unpack_package'] = __('Unpacking the package&#8230;');
     607        $this->strings['installing_package'] = __('Installing the theme&#8230;');
     608        $this->strings['process_failed'] = __('Theme install failed.');
     609        $this->strings['process_success'] = __('Theme installed successfully.');
    610610    }
    611611
     
    750750        $this->strings['up_to_date'] = __('WordPress is at the latest version.');
    751751        $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>&#8230;');
     753        $this->strings['unpack_package'] = __('Unpacking the update&#8230;');
    754754        $this->strings['copy_failed'] = __('Could not copy files.');
    755755    }
     
    914914        $this->plugin = $this->upgrader->plugin_info();
    915915        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&#8230;'));
    917917            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>';
    918918        }
Note: See TracChangeset for help on using the changeset viewer.