Ticket #12186: 12186.3.diff
File 12186.3.diff, 2.9 KB (added by , 15 years ago) |
---|
-
Applications/XAMPP/xamppfiles/htdocs/trunk/wp-admin/custom-background.php
195 195 <form method="post" action=""> 196 196 <?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?> 197 197 <input type="submit" class="button" name="remove-background" value="<?php esc_attr_e('Remove Background Image'); ?>" /><br/> 198 <?php _e('This will remove the background image. You will not be able to restore any customizations.') ?>198 <?php _e('This will remove the background image. You will not be able to restore it.') ?> 199 199 </form> 200 200 </td> 201 201 </tr> … … 208 208 <form method="post" action=""> 209 209 <?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?> 210 210 <input type="submit" class="button" name="reset-background" value="<?php esc_attr_e('Restore Original Image'); ?>" /><br/> 211 <?php _e('This will restore the original background image. You will not be able to restore any custom izations.') ?>211 <?php _e('This will restore the original background image. You will not be able to restore any custom images.') ?> 212 212 </form> 213 213 </td> 214 214 </tr> … … 262 262 <tr valign="top"> 263 263 <th scope="row"><?php _e( 'Repeat' ); ?></th> 264 264 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Repeat' ); ?></span></legend> 265 <label> 266 <select name="background-repeat"> 267 <option value="no-repeat"<?php selected('no-repeat', get_theme_mod('background_repeat', 'repeat')); ?> ><?php _e('No repeat'); ?></option> 268 <option value="repeat"<?php selected('repeat', get_theme_mod('background_repeat', 'repeat')); ?>><?php _e('Tile'); ?></option> 269 <option value="repeat-x"<?php selected('repeat-x', get_theme_mod('background_repeat', 'repeat')); ?>><?php _e('Tile Horizontally'); ?></option> 270 <option value="repeat-y"<?php selected('repeat-y', get_theme_mod('background_repeat', 'repeat')); ?>><?php _e('Tile Vertically'); ?></option> 271 </select> 265 <label> 266 <input name="background-repeat" type="radio" value="no-repeat"<?php checked('no-repeat', get_theme_mod('background_repeat', 'repeat')); ?> /> 267 <?php _e('No repeat'); ?> 272 268 </label> 269 <label> 270 <input name="background-repeat" type="radio" value="repeat"<?php checked('repeat', get_theme_mod('background_repeat', 'repeat')); ?> /> 271 <?php _e('Tile'); ?> 272 </label> 273 <label> 274 <input name="background-repeat" type="radio" value="repeat-x"<?php checked('repeat-x', get_theme_mod('background_repeat', 'repeat')); ?> /> 275 <?php _e('Tile Horizontally'); ?> 276 </label> 277 <label> 278 <input name="background-repeat" type="radio" value="repeat-y"<?php checked('repeat-y', get_theme_mod('background_repeat', 'repeat')); ?> /> 279 <?php _e('Tile Vertically'); ?> 280 </label> 273 281 </fieldset></td> 274 282 </tr> 275 283