Ticket #15576: 15576.7.patch
| File 15576.7.patch, 6.2 KB (added by , 13 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
222 222 ); 223 223 } 224 224 225 add_screen_option( 'per_page', array( 'label' => $title, 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) );225 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ), 'default' => 20, 'option' => 'edit_' . $post_type . '_per_page' ) ); 226 226 227 227 require_once('./admin-header.php'); 228 228 ?> -
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
155 155 exit(); 156 156 } 157 157 158 add_screen_option( 'per_page', array( 'label' => _x( ' Users', 'users per page (screen options)' ) ) );158 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 159 159 160 160 $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $id ) ); 161 161 $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
200 200 201 201 add_thickbox(); 202 202 203 add_screen_option( 'per_page', array( 'label' => _x( 'Themes', 'themes per page (screen options)' )) );203 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 204 204 205 205 get_current_screen()->add_help_tab( array( 206 206 '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
333 333 wp_enqueue_script('plugin-install'); 334 334 add_thickbox(); 335 335 336 add_screen_option( 'per_page', array( 'label' => _x( 'Plugins', 'plugins per page (screen options)' ), 'default' => 999 ) );336 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ), 'default' => 999 ) ); 337 337 338 338 get_current_screen()->add_help_tab( array( 339 339 'id' => 'overview', -
wp-admin/upload.php
145 145 wp_enqueue_script( 'jquery-ui-draggable' ); 146 146 wp_enqueue_script( 'media' ); 147 147 148 add_screen_option( 'per_page', array( 'label' => _x( 'Media items', 'items per page (screen options)' )) );148 add_screen_option( 'per_page', array( 'label' => _x( 'Items', 'items per page (screen options)' ) ) ); 149 149 150 150 get_current_screen()->add_help_tab( array( 151 151 '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(