Ticket #15688: t15688-string-fixes.diff
| File t15688-string-fixes.diff, 3.5 KB (added by , 15 years ago) |
|---|
-
wp-admin/includes/class-wp-plugin-install-list-table.php
209 209 </td> 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> 215 215 <div class="star star4"><img src="<?php echo admin_url( 'images/star.gif' ); ?>" alt="<?php _e( '4 stars' ) ?>" /></div> -
wp-admin/includes/class-wp-posts-list-table.php
841 841 <label> 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 —' ); 847 847 $dropdown_args = apply_filters( 'quick_edit_dropdown_pages_args', $dropdown_args ); -
wp-admin/includes/theme.php
393 393 } else { 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 } 399 399 //var_dump(array($args, $res)); -
wp-admin/maint/repair.php
78 78 } 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.') 84 84 ?>