]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/plugins/akismet/views/config.php
Wordpress 4.5.3
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / views / config.php
index 74701c9eba4d0fcce9128a46542a8d2e1f9c0d52..d84e21a8d9dabfc9f0946827abdee533f5dab93f 100644 (file)
                                        <li>
                                                <h3><?php esc_html_e( 'Past six months' , 'akismet');?></h3>
                                                <span><?php echo number_format( $stat_totals['6-months']->spam );?></span>
-                                               <?php esc_html_e( 'Spam blocked' , 'akismet');?>
+                                               <?php echo esc_html( _n( 'Spam blocked', 'Spam blocked', $stat_totals['6-months']->spam, 'akismet' ) ); ?>
                                        </li>
                                        <li>
                                                <h3><?php esc_html_e( 'All time' , 'akismet');?></h3>
                                                <span><?php echo number_format( $stat_totals['all']->spam );?></span>
-                                               <?php esc_html_e( 'Spam blocked' , 'akismet');?>
+                                               <?php echo esc_html( _n( 'Spam blocked', 'Spam blocked', $stat_totals['all']->spam, 'akismet' ) ); ?>
                                        </li>
                                        <li>
                                                <h3><?php esc_html_e( 'Accuracy' , 'akismet');?></h3>
                                                <span><?php echo $stat_totals['all']->accuracy; ?>%</span>
-                                               <?php printf(
-                                                       esc_html(
-                                                               _n( '%s missed spam, %s false positive', '%s missed spam, %s false positives', $stat_totals['all']->false_positives , 'akismet')
-                                                       ),
-                                                       number_format( $stat_totals['all']->missed_spam ),
-                                                       number_format( $stat_totals['all']->false_positives )
-                                               ); ?>
+                                               <?php printf( _n( '%s missed spam', '%s missed spam', $stat_totals['all']->missed_spam, 'akismet' ), number_format( $stat_totals['all']->missed_spam ) ); ?>
+                                               |
+                                               <?php printf( _n( '%s false positive', '%s false positives', $stat_totals['all']->false_positives, 'akismet' ), number_format( $stat_totals['all']->false_positives ) ); ?>
                                        </li>
                                </ul>
                                <div class="clearfix"></div>