Make WordPress Core


Ignore:
Timestamp:
05/26/2010 01:27:58 AM (14 years ago)
Author:
dd32
Message:

Tweak String language to match language used elsewhere. Props Jane. See #11232

File:
1 edited

Legend:

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

    r14919 r14920  
    10701070
    10711071    function add_strings() {
    1072         $this->upgrader->strings['bulk_upgrade_start'] = __('The update process is starting. This process may take awhile on some hosts, so please be patient.');
     1072        $this->upgrader->strings['skin_upgrade_start'] = __('The update process is starting. This process may take awhile on some hosts, so please be patient.');
    10731073        $this->upgrader->strings['skin_update_failed_error'] = __('An error occured while updating %1$s: <strong>%2$s</strong>.');
    10741074        $this->upgrader->strings['skin_update_failed'] = __('The update of %1$s failed.');
    10751075        $this->upgrader->strings['skin_update_successful'] = __('%1$s updated successfully.').' <a onclick="%2$s" href="#" class="hide-if-no-js"><span>'.__('Show Details').'</span><span class="hidden">'.__('Hide Details').'</span>.</a>';
    1076         $this->upgrader->strings['bulk_upgrade_end'] = __('All upgrades have been completed.');
     1076        $this->upgrader->strings['skin_upgrade_end'] = __('All updates have been completed.');
    10771077    }
    10781078
     
    11191119
    11201120    function bulk_header() {
    1121         $this->feedback('bulk_upgrade_start');
     1121        $this->feedback('skin_upgrade_start');
    11221122    }
    11231123
    11241124    function bulk_footer() {
    1125         $this->feedback('bulk_upgrade_end');
     1125        $this->feedback('skin_upgrade_end');
    11261126    }
    11271127
Note: See TracChangeset for help on using the changeset viewer.