Changeset 16696 for trunk/wp-admin/includes/class-wp-upgrader.php
- Timestamp:
- 12/02/2010 09:45:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r15978 r16696 369 369 function upgrade_strings() { 370 370 $this->strings['up_to_date'] = __('The plugin is at the latest version.'); 371 $this->strings['no_package'] = __('Up grade package not available.');371 $this->strings['no_package'] = __('Update package not available.'); 372 372 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 373 373 $this->strings['unpack_package'] = __('Unpacking the update…'); … … 375 375 $this->strings['remove_old'] = __('Removing the old version of the plugin…'); 376 376 $this->strings['remove_old_failed'] = __('Could not remove the old plugin.'); 377 $this->strings['process_failed'] = __('Plugin up grade failed.');378 $this->strings['process_success'] = __('Plugin up graded successfully.');377 $this->strings['process_failed'] = __('Plugin update failed.'); 378 $this->strings['process_success'] = __('Plugin updated successfully.'); 379 379 } 380 380 … … 609 609 function upgrade_strings() { 610 610 $this->strings['up_to_date'] = __('The theme is at the latest version.'); 611 $this->strings['no_package'] = __('Up grade package not available.');611 $this->strings['no_package'] = __('Update package not available.'); 612 612 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 613 613 $this->strings['unpack_package'] = __('Unpacking the update…'); 614 614 $this->strings['remove_old'] = __('Removing the old version of the theme…'); 615 615 $this->strings['remove_old_failed'] = __('Could not remove the old theme.'); 616 $this->strings['process_failed'] = __('Theme up grade failed.');617 $this->strings['process_success'] = __('Theme up graded successfully.');616 $this->strings['process_failed'] = __('Theme update failed.'); 617 $this->strings['process_success'] = __('Theme updated successfully.'); 618 618 } 619 619 … … 862 862 function upgrade_strings() { 863 863 $this->strings['up_to_date'] = __('WordPress is at the latest version.'); 864 $this->strings['no_package'] = __('Up grade package not available.');864 $this->strings['no_package'] = __('Update package not available.'); 865 865 $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); 866 866 $this->strings['unpack_package'] = __('Unpacking the update…'); … … 1018 1018 1019 1019 function __construct($args = array()) { 1020 $defaults = array( 'url' => '', 'plugin' => '', 'nonce' => '', 'title' => __('Up grade Plugin') );1020 $defaults = array( 'url' => '', 'plugin' => '', 'nonce' => '', 'title' => __('Update Plugin') ); 1021 1021 $args = wp_parse_args($args, $defaults); 1022 1022 … … 1389 1389 1390 1390 function __construct($args = array()) { 1391 $defaults = array( 'url' => '', 'theme' => '', 'nonce' => '', 'title' => __('Up grade Theme') );1391 $defaults = array( 'url' => '', 'theme' => '', 'nonce' => '', 'title' => __('Update Theme') ); 1392 1392 $args = wp_parse_args($args, $defaults); 1393 1393
Note: See TracChangeset
for help on using the changeset viewer.