Ticket #6362: 6362.5-all.diff
| File 6362.5-all.diff, 8.3 KB (added by , 16 years ago) |
|---|
-
wp-admin/edit-link-categories.php
209 209 <div class="form-field"> 210 210 <label for="description"><?php _e('Description (optional)') ?></label> 211 211 <textarea name="description" id="description" rows="5" cols="40"></textarea> 212 <p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p> 212 213 </div> 213 214 214 215 <p class="submit"><input type="submit" class="button" name="submit" value="<?php esc_attr_e('Add Category'); ?>" /></p> -
wp-admin/includes/meta-boxes.php
375 375 ?> 376 376 <input name="advanced_view" type="hidden" value="1" /> 377 377 <p class="meta-options"> 378 <label for="comment_status" class="selectit"> <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e('Allow Comments ') ?></label><br />379 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>')?></label>378 <label for="comment_status" class="selectit"> <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e('Allow Comments on this page.') ?></label><br /> 379 <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow ') ?><a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank"><?php _e('trackbacks and pingbacks') ?></a><?php _e(' on this page.'); ?></label> 380 380 </p> 381 381 <?php 382 382 } … … 479 479 <h5><?php _e('Parent') ?></h5> 480 480 <label class="screen-reader-text" for="parent_id"><?php _e('Page Parent') ?></label> 481 481 <?php wp_dropdown_pages(array('exclude_tree' => $post->ID, 'selected' => $post->post_parent, 'name' => 'parent_id', 'show_option_none' => __('Main Page (no parent)'), 'sort_column'=> 'menu_order, post_title')); ?> 482 <p><?php _e('You can arrange your pages in hierarchies , for exampleyou could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages.'); ?></p>482 <p><?php _e('You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how deeply nested you can make pages.'); ?></p> 483 483 <?php 484 484 if ( 0 != count( get_page_templates() ) ) { ?> 485 485 <h5><?php _e('Template') ?></h5> … … 492 492 } ?> 493 493 <h5><?php _e('Order') ?></h5> 494 494 <p><label class="screen-reader-text" for="menu_order"><?php _e('Page Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p> 495 <p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it’ll be better in future releases.)'); ?></p>495 <p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in.'); ?></p> 496 496 <?php 497 497 } 498 498 -
wp-admin/edit-tags.php
295 295 <div class="form-field"> 296 296 <label for="description"><?php _e('Description') ?></label> 297 297 <textarea name="description" id="description" rows="5" cols="40"></textarea> 298 <p><?php _e('The description is not prominent by default , howeversome themes may show it.'); ?></p>298 <p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p> 299 299 </div> 300 300 301 301 <p class="submit"><input type="submit" class="button" name="submit" id="submit" value="<?php esc_attr_e('Add Tag'); ?>" /></p> -
wp-admin/edit-link-category-form.php
79 79 </tr> 80 80 <tr class="form-field"> 81 81 <th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th> 82 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea></td> 82 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea><br /> 83 <span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td> 83 84 </tr> 84 85 <?php do_action('edit_link_category_form_fields', $category); ?> 85 86 </table> -
wp-admin/edit-tag-form.php
33 33 <table class="form-table"> 34 34 <tr class="form-field form-required"> 35 35 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 36 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /> 37 <p class="description"><?php _e('The name is how the tag appears on your site.'); ?></p></td> 36 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /></td> 38 37 </tr> 39 38 <tr class="form-field"> 40 39 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> -
wp-admin/edit-category-form.php
57 57 <tr class="form-field form-required"> 58 58 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 59 59 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo esc_attr($category->name); ?>" size="40" aria-required="true" /><br /> 60 <span class="description"><?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></span></td>61 60 </tr> 62 61 <tr class="form-field"> 63 62 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th> … … 74 73 <tr class="form-field"> 75 74 <th scope="row" valign="top"><label for="category_description"><?php _e('Description') ?></label></th> 76 75 <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($category->description); ?></textarea><br /> 77 <span class="description"><?php _e('The description is not prominent by default , howeversome themes may show it.'); ?></span></td>76 <span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td> 78 77 </tr> 79 78 <?php do_action('edit_category_form_fields', $category); ?> 80 79 </table> -
wp-admin/categories.php
280 280 <div class="form-field"> 281 281 <label for="category_description"><?php _e('Description') ?></label> 282 282 <textarea name="category_description" id="category_description" rows="5" cols="40"></textarea> 283 <p><?php _e('The description is not prominent by default , howeversome themes may show it.'); ?></p>283 <p><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></p> 284 284 </div> 285 285 286 286 <p class="submit"><input type="submit" class="button" name="submit" value="<?php esc_attr_e('Add Category'); ?>" /></p>