Ticket #6362: 6362.patch
File 6362.patch, 8.0 KB (added by , 15 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
304 304 <p><label for="comment_status" class="selectit"> 305 305 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> 306 306 <?php _e('Allow Comments') ?></label></p> 307 <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> 308 <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> 307 <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> 309 308 </div> 310 309 </div> 311 310 … … 313 312 <h3><?php _e('Password Protect This Post') ?></h3> 314 313 <div class="inside"> 315 314 <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> 316 <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>315 <p><?php _e('Setting a password will require visitors to enter it to view this post and its comments.'); ?></p> 317 316 </div> 318 317 </div> 319 318 -
wp-admin/edit-link-category-form.php
30 30 </tr> 31 31 <tr class="form-field"> 32 32 <th scope="row" valign="top"><label for="slug"><?php _e('Category slug') ?></label></th> 33 <td><input name="slug" id="slug" type="text" value="<?php echo rawurldecode($category->slug); ?>" size="40" /> 33 <td><input name="slug" id="slug" type="text" value="<?php echo rawurldecode($category->slug); ?>" size="40" /><br /> 34 34 <?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> 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
216 216 <p><label for="comment_status" class="selectit"> 217 217 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> 218 218 <?php _e('Allow Comments') ?></label></p> 219 <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> 220 <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> 219 <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> 221 220 </div> 222 221 </div> 223 222 … … 225 224 <h3><?php _e('Password Protect This Page') ?></h3> 226 225 <div class="inside"> 227 226 <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> 228 <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>227 <p><?php _e('Setting a password will require visitors to enter it to view this page and its comments.'); ?></p> 229 228 </div> 230 229 </div> 231 230 … … 243 242 <option value='0'><?php _e('Main Page (no parent)'); ?></option> 244 243 <?php parent_dropdown($post->post_parent); ?> 245 244 </select> 246 <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>245 <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> 247 246 </div> 248 247 </div> 249 248 -
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>