Ticket #15576: 15576.6.patch
| File 15576.6.patch, 6.3 KB (added by , 14 years ago) |
|---|
-
wp-admin/edit-comments.php
109 109 else 110 110 $title = __('Comments'); 111 111 112 add_screen_option( 'per_page', array( 'label' => _x( 'Comments', 'comments per page (screen options)' )) );112 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 113 113 114 114 get_current_screen()->add_help_tab( array( 115 115 'id' => 'overview', -
wp-admin/edit-tags.php
36 36 $submenu_file = "edit-tags.php?taxonomy=$taxonomy"; 37 37 } 38 38 39 add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) );39 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ), 'default' => 20, 'option' => 'edit_' . $tax->name . '_per_page' ) ); 40 40 41 41 switch ( $wp_list_table->current_action() ) { 42 42 -
wp-admin/edit.php
215 215 ); 216 216 } 217 217 218 add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) );218 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ), 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) ); 219 219 220 220 require_once('./admin-header.php'); 221 221 ?> -
wp-admin/network/site-themes.php
123 123 } 124 124 125 125 add_thickbox(); 126 add_screen_option( 'per_page', array( 'label' => _x( ' Themes', 'themes per page (screen options)' ) ) );126 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 127 127 128 128 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 129 129 $title_site_url_linked = sprintf( __('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id( $id ), $site_url_no_http ); -
wp-admin/network/site-users.php
162 162 exit(); 163 163 } 164 164 165 add_screen_option( 'per_page', array( 'label' => _x( ' Users', 'users per page (screen options)' ) ) );165 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 166 166 167 167 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 168 168 $title_site_url_linked = sprintf( __('Edit Site: <a href="%1$s">%2$s</a>'), get_blogaddress_by_id( $id ), $site_url_no_http ); -
wp-admin/network/sites.php
22 22 $title = __( 'Sites' ); 23 23 $parent_file = 'sites.php'; 24 24 25 add_screen_option( 'per_page', array( 'label' => _x( 'Sites', 'sites per page (screen options)' )) );25 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 26 26 27 27 get_current_screen()->add_help_tab( array( 28 28 'id' => 'overview', -
wp-admin/network/themes.php
189 189 190 190 add_thickbox(); 191 191 192 add_screen_option( 'per_page', array( 'label' => _x( 'Themes', 'themes per page (screen options)' )) );192 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 193 193 194 194 get_current_screen()->add_help_tab( array( 195 195 'id' => 'overview', -
wp-admin/network/users.php
225 225 $title = __( 'Users' ); 226 226 $parent_file = 'users.php'; 227 227 228 add_screen_option( 'per_page', array( 'label' => _x( 'Users', 'users per page (screen options)' )) );228 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 229 229 230 230 get_current_screen()->add_help_tab( array( 231 231 'id' => 'overview', -
wp-admin/plugins.php
321 321 wp_enqueue_script('plugin-install'); 322 322 add_thickbox(); 323 323 324 add_screen_option( 'per_page', array( 'label' => _x( 'Plugins', 'plugins per page (screen options)' ), 'default' => 999 ) );324 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ), 'default' => 999 ) ); 325 325 326 326 get_current_screen()->add_help_tab( array( 327 327 'id' => 'overview', -
wp-admin/upload.php
143 143 wp_enqueue_script( 'jquery-ui-draggable' ); 144 144 wp_enqueue_script( 'media' ); 145 145 146 add_screen_option( 'per_page', array( 'label' => _x( 'Media items', 'items per page (screen options)' )) );146 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 147 147 148 148 get_current_screen()->add_help_tab( array( 149 149 'id' => 'overview', -
wp-admin/users.php
17 17 $title = __('Users'); 18 18 $parent_file = 'users.php'; 19 19 20 add_screen_option( 'per_page', array( 'label' => _x( 'Users', 'users per page (screen options)' )) );20 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 21 21 22 22 // contextual help - choose Help on the top right of admin panel to preview this. 23 23 get_current_screen()->add_help_tab( array(