Changeset 45835 for branches/5.2/src/wp-admin/setup-config.php
- Timestamp:
- 08/19/2019 04:14:38 AM (5 years ago)
- Location:
- branches/5.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2
-
branches/5.2/src/wp-admin/setup-config.php
r45834 r45835 211 211 <tr> 212 212 <th scope="row"><label for="dbname"><?php _e( 'Database Name' ); ?></label></th> 213 <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress"<?php echo $autofocus; ?>/></td>214 <td ><?php _e( 'The name of the database you want to use with WordPress.' ); ?></td>213 <td><input name="dbname" id="dbname" type="text" aria-describedby="dbname-desc" size="25" value="wordpress"<?php echo $autofocus; ?>/></td> 214 <td id="dbname-desc"><?php _e( 'The name of the database you want to use with WordPress.' ); ?></td> 215 215 </tr> 216 216 <tr> 217 217 <th scope="row"><label for="uname"><?php _e( 'Username' ); ?></label></th> 218 <td><input name="uname" id="uname" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'username', 'example username' ), ENT_QUOTES ); ?>" /></td>219 <td ><?php _e( 'Your database username.' ); ?></td>218 <td><input name="uname" id="uname" type="text" aria-describedby="uname-desc" size="25" value="<?php echo htmlspecialchars( _x( 'username', 'example username' ), ENT_QUOTES ); ?>" /></td> 219 <td id="uname-desc"><?php _e( 'Your database username.' ); ?></td> 220 220 </tr> 221 221 <tr> 222 222 <th scope="row"><label for="pwd"><?php _e( 'Password' ); ?></label></th> 223 <td><input name="pwd" id="pwd" type="text" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" autocomplete="off" /></td>224 <td ><?php _e( 'Your database password.' ); ?></td>223 <td><input name="pwd" id="pwd" type="text" aria-describedby="pwd-desc" size="25" value="<?php echo htmlspecialchars( _x( 'password', 'example password' ), ENT_QUOTES ); ?>" autocomplete="off" /></td> 224 <td id="pwd-desc"><?php _e( 'Your database password.' ); ?></td> 225 225 </tr> 226 226 <tr> 227 227 <th scope="row"><label for="dbhost"><?php _e( 'Database Host' ); ?></label></th> 228 <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>229 <td >228 <td><input name="dbhost" id="dbhost" type="text" aria-describedby="dbhost-desc" size="25" value="localhost" /></td> 229 <td id="dbhost-desc"> 230 230 <?php 231 231 /* translators: %s: localhost */ … … 236 236 <tr> 237 237 <th scope="row"><label for="prefix"><?php _e( 'Table Prefix' ); ?></label></th> 238 <td><input name="prefix" id="prefix" type="text" value="wp_" size="25" /></td>239 <td ><?php _e( 'If you want to run multiple WordPress installations in a single database, change this.' ); ?></td>238 <td><input name="prefix" id="prefix" type="text" aria-describedby="prefix-desc" value="wp_" size="25" /></td> 239 <td id="prefix-desc"><?php _e( 'If you want to run multiple WordPress installations in a single database, change this.' ); ?></td> 240 240 </tr> 241 241 </table>
Note: See TracChangeset
for help on using the changeset viewer.