Ticket #35751: 35751.3.patch
File 35751.3.patch, 2.3 KB (added by , 9 years ago) |
---|
-
wp-admin/includes/meta-boxes.php
569 569 function post_excerpt_meta_box($post) { 570 570 ?> 571 571 <label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label><textarea rows="1" cols="40" name="excerpt" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea> 572 <p><?php _e('Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="https://codex.wordpress.org/Excerpt" target="_blank">Learn more about manual excerpts.</a>'); ?></p>572 <p><?php printf( __( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s" target="_blank">Learn more about manual excerpts.</a>' ), __( 'https://codex.wordpress.org/Excerpt' ) ); ?></p> 573 573 <?php 574 574 } 575 575 … … 598 598 <?php echo $form_trackback; ?> 599 599 </p> 600 600 <p id="trackback-url-desc" class="howto"><?php _e( 'Separate multiple URLs with spaces' ); ?></p> 601 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using <a href="https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p>601 <p><?php printf( __( 'Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using <a href="%s" target="_blank">pingbacks</a>, no other action necessary.' ), __( 'https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></p> 602 602 <?php 603 603 if ( ! empty($pings) ) 604 604 echo $pings; … … 624 624 list_meta( $metadata ); 625 625 meta_form( $post ); ?> 626 626 </div> 627 <p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="https://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p>627 <p><?php printf( __( 'Custom fields can be used to add extra metadata to a post that you can <a href="%s" target="_blank">use in your theme</a>.' ), __( 'https://codex.wordpress.org/Using_Custom_Fields' ) ); ?></p> 628 628 <?php 629 629 } 630 630