Changeset 16734
- Timestamp:
- 12/05/2010 02:31:18 PM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-plugin-install-list-table.php
r16710 r16734 210 210 <td class="vers"><?php echo $version; ?></td> 211 211 <td class="vers"> 212 <div class="star-holder" title="<?php printf( _n( '( based on %s rating )', '( based on %s ratings)', $plugin['num_ratings'] ), number_format_i18n( $plugin['num_ratings'] ) ) ?>">212 <div class="star-holder" title="<?php printf( _n( '(based on %s rating)', '(based on %s ratings)', $plugin['num_ratings'] ), number_format_i18n( $plugin['num_ratings'] ) ) ?>"> 213 213 <div class="star star-rating" style="width: <?php echo esc_attr( $plugin['rating'] ) ?>px"></div> 214 214 <div class="star star5"><img src="<?php echo admin_url( 'images/star.gif' ); ?>" alt="<?php _e( '5 stars' ) ?>" /></div> -
trunk/wp-admin/includes/class-wp-posts-list-table.php
r16680 r16734 842 842 <span class="title"><?php _e( 'Parent' ); ?></span> 843 843 <?php 844 $dropdown_args = array( 'post_type' => $post_type_object->name, 'selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __( 'Main Page ( no parent)' ), 'option_none_value' => 0, 'sort_column'=> 'menu_order, post_title' );844 $dropdown_args = array( 'post_type' => $post_type_object->name, 'selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __( 'Main Page (no parent)' ), 'option_none_value' => 0, 'sort_column'=> 'menu_order, post_title' ); 845 845 if ( $bulk ) 846 846 $dropdown_args['show_option_no_change'] = __( '— No Change —' ); -
trunk/wp-admin/includes/theme.php
r16701 r16734 394 394 $res = unserialize($request['body']); 395 395 if ( ! $res ) 396 $res = new WP_Error('themes_api_failed', __('An unknown error occurred '), $request['body']);396 $res = new WP_Error('themes_api_failed', __('An unknown error occurred.'), $request['body']); 397 397 } 398 398 } -
trunk/wp-admin/maint/repair.php
r16431 r16734 79 79 } else { 80 80 if ( isset($_GET['referrer']) && 'is_blog_installed' == $_GET['referrer'] ) 81 _e('One or more database tables is unavailable. To allow WordPress to attempt to repair these tables, press the "Repair Database"button. Repairing can take a while, so please be patient.');81 _e('One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'); 82 82 else 83 83 _e('WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.')
Note: See TracChangeset
for help on using the changeset viewer.