Changeset 11047
- Timestamp:
- 04/22/2009 07:29:01 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
-
edit-link-categories.php (modified) (2 diffs)
-
edit-link-category-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-link-categories.php
r10943 r11047 190 190 191 191 <div class="form-wrap"> 192 <h3><?php _e('Add Category'); ?></h3>192 <h3><?php _e('Add Link Category'); ?></h3> 193 193 <div id="ajax-response"></div> 194 194 <form name="addcat" id="addcat" class="add:the-list: validate" method="post" action="link-category.php"> … … 197 197 198 198 <div class="form-field form-required"> 199 <label for="name"><?php _e(' Category name') ?></label>199 <label for="name"><?php _e('Link Category name') ?></label> 200 200 <input name="name" id="name" type="text" value="" size="40" aria-required="true" /> 201 201 </div> 202 202 203 203 <div class="form-field"> 204 <label for="slug"><?php _e(' Category slug') ?></label>204 <label for="slug"><?php _e('Link Category slug') ?></label> 205 205 <input name="slug" id="slug" type="text" value="" size="40" /> 206 206 <p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p> -
trunk/wp-admin/edit-link-category-form.php
r10137 r11047 63 63 <table class="form-table"> 64 64 <tr class="form-field form-required"> 65 <th scope="row" valign="top"><label for="name"><?php _e(' Category name') ?></label></th>65 <th scope="row" valign="top"><label for="name"><?php _e('Link Category name') ?></label></th> 66 66 <td><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" aria-required="true" /></td> 67 67 </tr> 68 68 <tr class="form-field"> 69 <th scope="row" valign="top"><label for="slug"><?php _e(' Category slug') ?></label></th>69 <th scope="row" valign="top"><label for="slug"><?php _e('Link Category slug') ?></label></th> 70 70 <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br /> 71 71 <?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></td>
Note: See TracChangeset
for help on using the changeset viewer.