Make WordPress Core

Ticket #6362: 6362.3.diff

File 6362.3.diff, 2.1 KB (added by ninjaWR, 14 years ago)
  • wp-admin/edit-page-form.php

     
    292292        } ?>
    293293<h5><?php _e('Order') ?></h5>
    294294<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>
    295 <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&#8217;ll be better in future releases.)'); ?></p>
     295<p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in.'); ?></p>
    296296<?php
    297297}
    298298add_meta_box('pageparentdiv', __('Attributes'), 'page_attributes_meta_box', 'page', 'side', 'core');
     
    330330<input name="advanced_view" type="hidden" value="1" />
    331331<p><label for="comment_status" class="selectit">
    332332<input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> />
    333 <?php _e('Allow Comments') ?></label></p>
    334 <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>
    335 <p><?php _e('These settings apply to this page only. &#8220;Pings&#8221; are <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>.'); ?></p>
     333<?php _e('Allow comments on this page.') ?></label></p>
     334<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 '); echo('<a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">'); _e('trackbacks and pingbacks'); echo('</a> on this page.'); ?></label></p>
    336335<?php
    337336}
    338337add_meta_box('pagecommentstatusdiv', __('Discussion'), 'page_comments_status_meta_box', 'page', 'normal', 'core');