Make WordPress Core

Ticket #29005: 29005-02.patch

File 29005-02.patch, 1.7 KB (added by Jonnyauk, 9 years ago)

Combines #29006 plus another suggested text amend (re database prefix)

  • wp-admin/setup-config.php

     
    114114                }
    115115?>
    116116
    117 <p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.' ) ?></p>
     117<p><?php _e( 'Welcome to WordPress. Before getting started, we need some information on the database you wish to use with this installation of WordPress. You will need to know the following items before proceeding:' ) ?></p>
    118118<ol>
    119119        <li><?php _e( 'Database name' ); ?></li>
    120120        <li><?php _e( 'Database username' ); ?></li>
     
    143143                <tr>
    144144                        <th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th>
    145145                        <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
    146                         <td><?php _e( 'The name of the database you want to run WP in.' ); ?></td>
     146                        <td><?php _e( 'The name of the database you want to use to run this WordPress installation.' ); ?></td>
    147147                </tr>
    148148                <tr>
    149149                        <th scope="row"><label for="uname"><?php _e( 'User Name' ); ?></label></th>
     
    163163                <tr>
    164164                        <th scope="row"><label for="prefix"><?php _e( 'Table Prefix' ); ?></label></th>
    165165                        <td><input name="prefix" id="prefix" type="text" value="wp_" size="25" /></td>
    166                         <td><?php _e( 'If you want to run multiple WordPress installations in a single database, change this.' ); ?></td>
     166                        <td><?php _e( 'If you want to run multiple WordPress installations in a single database, change this to something unique.' ); ?></td>
    167167                </tr>
    168168        </table>
    169169        <?php if ( isset( $_GET['noapi'] ) ) { ?><input name="noapi" type="hidden" value="1" /><?php } ?>