Ticket #11274: 11274.diff
| File 11274.diff, 2.3 KB (added by , 15 years ago) |
|---|
-
wp-admin/edit-comments.php
101 101 } 102 102 103 103 if ( $post_id ) 104 $title = sprintf(__(' Comments on “%s”'), wp_html_excerpt(_draft_or_post_title($post_id), 50));104 $title = sprintf(__('Edit Comments on “%s”'), wp_html_excerpt(_draft_or_post_title($post_id), 50)); 105 105 else 106 $title = __(' Comments');106 $title = __('Edit Comments'); 107 107 108 108 require_once('./admin-header.php'); 109 109 -
wp-admin/plugins.php
317 317 unset($menu_perms); 318 318 } 319 319 320 $title = __(' Plugins');320 $title = __('Manage Plugins'); 321 321 require_once('./admin-header.php'); 322 322 323 323 $invalid = validate_active_plugins(); -
wp-admin/edit.php
154 154 else 155 155 $num_pages = $wp_query->max_num_pages; 156 156 157 $title = $post_type_object->labels->name;158 157 require_once('./admin-header.php'); 159 158 160 159 if ( empty($_GET['mode']) ) … … 164 163 165 164 <div class="wrap"> 166 165 <?php screen_icon(); ?> 167 <h2><?php echo esc_html( $post_type_object->labels-> name); ?> <a href="<?php echo $post_new_file ?>" class="button add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a> <?php166 <h2><?php echo esc_html( $post_type_object->labels->edit_item ); ?> <a href="<?php echo $post_new_file ?>" class="button add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a> <?php 168 167 if ( isset($_GET['s']) && $_GET['s'] ) 169 168 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query() ); ?> 170 169 </h2> -
wp-admin/link-manager.php
41 41 if ( empty($order_by) ) 42 42 $order_by = 'order_name'; 43 43 44 $title = __(' Links');44 $title = __('Edit Links'); 45 45 $this_file = $parent_file = 'link-manager.php'; 46 46 include_once ('./admin-header.php'); 47 47