Make WordPress Core

Ticket #13467: connection_info.patch

File connection_info.patch, 1.4 KB (added by jane, 14 years ago)

Updated text for Connection Info screen.

  • wp-admin/includes/file.php

     
    964964<div class="wrap">
    965965<?php screen_icon(); ?>
    966966<h2><?php _e('Connection Information') ?></h2>
    967 <p><?php _e('To perform the requested action, connection information is required.') ?></p>
     967<p><?php _e('To perform this installation, files must be added to your web server. Please enter your FTP information to proceed. If you do not remember your FTP credentials, you can contact your hosting company to get them.') ?></p>
    968968
    969969<table class="form-table">
    970970<tr valign="top">
     
    973973</tr>
    974974
    975975<tr valign="top">
    976 <th scope="row"><label for="username"><?php _e('Username') ?></label></th>
     976<th scope="row"><label for="username"><?php _e(' FTP Username') ?></label></th>
    977977<td><input name="username" type="text" id="username" value="<?php echo esc_attr($username) ?>"<?php disabled( defined('FTP_USER') ); ?> size="40" /></td>
    978978</tr>
    979979
    980980<tr valign="top">
    981 <th scope="row"><label for="password"><?php _e('Password') ?></label></th>
     981<th scope="row"><label for="password"><?php _e('FTP Password') ?></label></th>
    982982<td><input name="password" type="password" id="password" value="<?php if ( defined('FTP_PASS') ) echo '*****'; ?>"<?php disabled( defined('FTP_PASS') ); ?> size="40" /></td>
    983983</tr>
    984984