Ticket #20294: 20294.2.diff
File 20294.2.diff, 2.8 KB (added by , 12 years ago) |
---|
-
wp-admin/user-new.php
341 341 </tr> 342 342 <?php if ( apply_filters('show_password_fields', true) ) : ?> 343 343 <tr class="form-field form-required"> 344 <th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('( twice,required)'); ?></span></label></th>344 <th scope="row"><label for="pass1"><?php _e('Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th> 345 345 <td><input name="pass1" type="password" id="pass1" autocomplete="off" /> 346 <br /> 346 </td> 347 </tr> 348 <tr> 349 <th scope="row"><label for="pass2"><?php _e('Repeat Password'); ?> <span class="description"><?php /* translators: password input field */_e('(required)'); ?></span></label></th> 350 <td scope="row"> 347 351 <input name="pass2" type="password" id="pass2" autocomplete="off" /> 348 352 <br /> 349 353 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> -
wp-admin/user-edit.php
378 378 <tr id="password"> 379 379 <th><label for="pass1"><?php _e('New Password'); ?></label></th> 380 380 <td><input type="password" name="pass1" id="pass1" size="16" value="" autocomplete="off" /> <span class="description"><?php _e("If you would like to change the password type a new one. Otherwise leave this blank."); ?></span><br /> 381 <input type="password" name="pass2" id="pass2" size="16" value="" autocomplete="off" /> < span class="description"><?php _e("Type your new password again."); ?></span><br />381 <input type="password" name="pass2" id="pass2" size="16" value="" autocomplete="off" /> <label class="description" for="pass2"><?php _e("Type your new password again."); ?></label><br /> 382 382 <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div> 383 383 <p class="description indicator-hint"><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).'); ?></p> 384 384 </td> -
wp-admin/css/wp-admin.css
3466 3466 p.help, 3467 3467 p.description, 3468 3468 span.description, 3469 label.description, 3469 3470 .form-wrap p { 3470 3471 font-size: 12px; 3471 3472 font-style: italic; … … 8270 8271 .locale-zh-cn p.help, 8271 8272 .locale-zh-cn p.description, 8272 8273 .locale-zh-cn span.description, 8274 .locale-zh-cn label.description, 8273 8275 .locale-zh-cn .form-wrap p { 8274 8276 font-style: normal; 8275 8277 }