Make WordPress Core


Ignore:
Timestamp:
03/04/2010 11:28:15 PM (15 years ago)
Author:
wpmuguru
Message:

UI upgrade -> update, see #12517

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/update-core.php

    r13588 r13590  
    2020    if ( !isset($update->response) || 'latest' == $update->response )
    2121        $current = true;
    22     $submit = __('Upgrade Automatically');
     22    $submit = __('Update Automatically');
    2323    $form_action = 'update-core.php?action=do-core-upgrade';
    2424    $php_version    = phpversion();
     
    2626    $show_buttons = true;
    2727    if ( 'development' == $update->response ) {
    28         $message = __('You are using a development version of WordPress.  You can upgrade to the latest nightly build automatically or download the nightly build and install it manually:');
     28        $message = __('You are using a development version of WordPress.  You can update to the latest nightly build automatically or download the nightly build and install it manually:');
    2929        $download = __('Download nightly build');
    3030    } else {
    3131        if ( $current ) {
    32             $message = sprintf(__('You have the latest version of WordPress. You do not need to upgrade. However, if you want to re-install version %s, you can do so automatically or download the package and re-install manually:'), $version_string);
     32            $message = sprintf(__('You have the latest version of WordPress. You do not need to update. However, if you want to re-install version %s, you can do so automatically or download the package and re-install manually:'), $version_string);
    3333            $submit = __('Re-install Automatically');
    3434            $form_action = 'update-core.php?action=do-core-reinstall';
     
    3737            $mysql_compat   = version_compare( $mysql_version, $update->mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' );
    3838            if ( !$mysql_compat && !$php_compat )
    39                 $message = sprintf( __('You cannot upgrade because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version );
     39                $message = sprintf( __('You cannot update because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'), $update->current, $update->php_version, $update->mysql_version, $php_version, $mysql_version );
    4040            elseif ( !$php_compat )
    41                 $message = sprintf( __('You cannot upgrade because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $update->current, $update->php_version, $php_version );
     41                $message = sprintf( __('You cannot update because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires PHP version %2$s or higher. You are running version %3$s.'), $update->current, $update->php_version, $php_version );
    4242            elseif ( !$mysql_compat )
    43                 $message = sprintf( __('You cannot upgrade because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $update->current, $update->mysql_version, $mysql_version );
     43                $message = sprintf( __('You cannot update because <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> requires MySQL version %2$s or higher. You are running version %3$s.'), $update->current, $update->mysql_version, $mysql_version );
    4444            else
    45                 $message =  sprintf(__('You can upgrade to <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> automatically or download the package and install it manually:'), $version_string);
     45                $message =  sprintf(__('You can update to <a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> automatically or download the package and install it manually:'), $version_string);
    4646            if ( !$mysql_compat || !$php_compat )
    4747                $show_buttons = false;
     
    128128    if ( !isset($updates[0]->response) || 'latest' == $updates[0]->response ) {
    129129        echo '<h3>';
    130         _e('You have the latest version of WordPress. You do not need to upgrade');
     130        _e('You have the latest version of WordPress. You do not need to update');
    131131        echo '</h3>';
    132132    } else {
    133133        echo '<div class="updated"><p>';
    134         _e('<strong>Important:</strong> before upgrading, please <a href="http://codex.wordpress.org/WordPress_Backups">backup your database and files</a>.');
     134        _e('<strong>Important:</strong> before updating, please <a href="http://codex.wordpress.org/WordPress_Backups">backup your database and files</a>.');
    135135        echo '</p></div>';
    136136
    137137        echo '<h3 class="response">';
    138         _e( 'There is a new version of WordPress available for upgrade' );
     138        _e( 'There is a new version of WordPress available for update' );
    139139        echo '</h3>';
    140140    }
     
    176176    ?>
    177177<h3><?php _e('Plugins'); ?></h3>
    178 <p><?php _e('The following plugins have new versions available. Check the ones you want to upgrade and then click "Upgrade Plugins".'); ?></p>
     178<p><?php _e('The following plugins have new versions available. Check the ones you want to update and then click "Update Plugins".'); ?></p>
    179179<form method="post" action="<?php echo $form_action; ?>" name="upgrade-plugins" class="upgrade">
    180180<?php wp_nonce_field('upgrade-core'); ?>
    181 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p>
     181<p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
    182182<table class="widefat" cellspacing="0" id="update-plugins-table">
    183183    <thead>
     
    225225    <tr class='active'>
    226226        <th scope='row' class='check-column'><input type='checkbox' name='checked[]' value='" . esc_attr($plugin_file) . "' /></th>
    227         <td class='plugin-title'><strong>{$plugin_data->Name}</strong>" . sprintf(__('You are running version %1$s. Upgrade to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td>
     227        <td class='plugin-title'><strong>{$plugin_data->Name}</strong>" . sprintf(__('You are running version %1$s. Update to %2$s.'), $plugin_data->Version, $plugin_data->update->new_version) . $compat . $upgrade_notice . "</td>
    228228    </tr>";
    229229    }
     
    231231    </tbody>
    232232</table>
    233 <p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Upgrade Plugins'); ?>" name="upgrade" /></p>
     233<p><input id="upgrade-plugins-2" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
    234234</form>
    235235<?php
     
    303303    <div class="wrap">
    304304    <?php screen_icon(); ?>
    305     <h2><?php _e('Upgrade WordPress'); ?></h2>
     305    <h2><?php _e('Update WordPress'); ?></h2>
    306306<?php
    307307    if ( $wp_filesystem->errors->get_error_code() ) {
     
    322322            show_message( __('Installation Failed') );
    323323    } else {
    324         show_message( __('WordPress upgraded successfully') );
     324        show_message( __('WordPress updated successfully') );
    325325        show_message( '<strong>' . __('Actions:') . '</strong> <a href="' . esc_url( admin_url() ) . '">' . __('Go to Dashboard') . '</a>' );
    326326    }
Note: See TracChangeset for help on using the changeset viewer.