Ticket #6362: 6362.diff
| File 6362.diff, 8.0 KB (added by , 18 years ago) |
|---|
-
wp-admin/edit-category-form.php
26 26 <table class="form-table"> 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 29 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->name); ?>" size="40" aria-required="true" /><br /> 30 <?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></td> 29 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->name); ?>" size="40" aria-required="true" /></td> 31 30 </tr> 32 31 <tr class="form-field"> 33 32 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th> … … 44 43 <tr class="form-field"> 45 44 <th scope="row" valign="top"><label for="category_description"><?php _e('Description') ?></label></th> 46 45 <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo wp_specialchars($category->description); ?></textarea><br /> 47 <?php _e('The description is not prominent by default , howeversome themes may show it.'); ?></td>46 <?php _e('The description is not prominent by default; however, some themes may show it.'); ?></td> 48 47 </tr> 49 48 </table> 50 49 <p class="submit"><input type="submit" class="button" name="submit" value="<?php echo $submit_text ?>" /></p> -
wp-admin/edit-form-advanced.php
334 334 <p><label for="comment_status" class="selectit"> 335 335 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> 336 336 <?php _e('Allow Comments') ?></label></p> 337 <p><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 Pings') ?></label></p> 338 <p><?php _e('These settings apply to this post only. “Pings” are <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>.'); ?></p> 337 <p><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></p> 339 338 <?php 340 339 } 341 340 add_meta_box('commentstatusdiv', __('Comments & Pings'), 'post_comment_status_meta_box', 'post', 'advanced', 'core'); … … 343 342 function post_password_meta_box($post) { 344 343 ?> 345 344 <p><label class="hidden" for="post_password"><?php _e('Password Protect This Post') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php echo attribute_escape( $post->post_password ); ?>" /></p> 346 <p><?php _e('Setting a password will require people who visit your blog to enter the above passwordto view this post and its comments.'); ?></p>345 <p><?php _e('Setting a password will require visitors to enter it to view this post and its comments.'); ?></p> 347 346 <?php 348 347 } 349 348 add_meta_box('passworddiv', __('Password Protect This Post'), 'post_password_meta_box', 'post', 'advanced', 'core'); -
wp-admin/edit-link-category-form.php
35 35 </tr> 36 36 <tr class="form-field"> 37 37 <th scope="row" valign="top"><label for="description"><?php _e('Description (optional)') ?></label></th> 38 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea></td> 38 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo $category->description; ?></textarea><br /> 39 <?php _e('The description is not prominent by default; however, some themes may show it.'); ?></td> 39 40 </tr> 40 41 </table> 41 42 <p class="submit"><input type="submit" class="button" name="submit" value="<?php echo $submit_text ?>" /></p> -
wp-admin/edit-page-form.php
232 232 <p><label for="comment_status" class="selectit"> 233 233 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> 234 234 <?php _e('Allow Comments') ?></label></p> 235 <p><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 Pings') ?></label></p> 236 <p><?php _e('These settings apply to this page only. “Pings” are <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>.'); ?></p> 235 <p><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></p> 237 236 <?php 238 237 } 239 238 add_meta_box('pagecommentstatusdiv', __('Comments & Pings'), 'page_comments_status_meta_box', 'page', 'advanced', 'core'); … … 241 240 function page_password_meta_box($post){ 242 241 ?> 243 242 <p><label class="hidden" for="post_password"><?php _e('Password Protect This Page') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php echo attribute_escape( $post->post_password ); ?>" /></p> 244 <p><?php _e('Setting a password will require people who visit your blog to enter the above passwordto view this page and its comments.'); ?></p>243 <p><?php _e('Setting a password will require visitors to enter it to view this page and its comments.'); ?></p> 245 244 <?php 246 245 } 247 246 add_meta_box('pagepassworddiv', __('Password Protect This Page'), 'page_password_meta_box', 'page', 'advanced', 'core'); … … 260 259 <option value='0'><?php _e('Main Page (no parent)'); ?></option> 261 260 <?php parent_dropdown($post->post_parent); ?> 262 261 </select> 263 <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>262 <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> 264 263 <?php 265 264 } 266 265 add_meta_box('pageparentdiv', __('Page Parent'), 'page_parent_meta_box', 'page', 'advanced', 'core'); -
wp-admin/edit-tag-form.php
27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 29 29 <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" aria-required="true" /> 30 <p><?php _e('The name is how the tag appears on your site.'); ?></p></td>30 </td> 31 31 </tr> 32 32 <tr class="form-field"> 33 33 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th>