Changeset 36830

Show
Ignore:
Timestamp:
03/30/08 10:02:45 (3 months ago)
Author:
GamerZ
Message:

so that it looks nice on WP2.5

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wp-stats/trunk/readme.html

    r22752 r36830  
    234234                  <p> 
    235235                        <strong>Download:</strong><br /> 
    236                         <strong>&raquo;</strong> <a href="http://lesterchan.net/others/downloads.php?id=8" title="http://lesterchan.net/others/downloads.php?id=8">WP-Stats 2.30 For WordPress 2.3.x</a><br /> 
     236                        <strong>&raquo;</strong> <a href="http://lesterchan.net/others/downloads.php?id=8" title="http://lesterchan.net/others/downloads.php?id=8">WP-Stats 2.30 For WordPress 2.5.x</a><br /> 
     237                        <strong>&raquo;</strong> <a href="http://lesterchan.net/others/downloads/wp-stats220.zip" title="http://lesterchan.net/others/downloads/wp-stats220.zip">WP-Stats 2.20 For WordPress 2.3.x</a><br /> 
    237238                        <strong>&raquo;</strong> <a href="http://lesterchan.net/others/downloads/wp-stats211.zip" title="http://lesterchan.net/others/downloads/wp-stats211.zip">WP-Stats 2.11 For WordPress 2.1.x And 2.2.x</a><br /> 
    238239                        <strong>&raquo;</strong> <a href="http://lesterchan.net/others/downloads/wp-stats206.zip" title="http://lesterchan.net/others/downloads/wp-stats206.zip">WP-Stats 2.06 For WordPress 2.0.x</a><br /> 
     
    257258                        <strong>Support Forums:</strong><br /> 
    258259                        <strong>&raquo;</strong> <a href="http://forums.lesterchan.net/index.php?board=20.0" title="http://forums.lesterchan.net/index.php?board=20.0">http://forums.lesterchan.net/index.php?board=20.0</a> 
    259                   </p> 
    260                   <p> 
    261                         <strong>Updated:</strong><br /> 
    262                         <strong>&raquo;</strong> 1st January 2008 
    263260                  </p> 
    264261                  <p> 
     
    271268                        <script type="text/javascript"> 
    272269                              /* <![CDATA[*/ 
    273                               document.write(' <strong>gamerz84@hotmail.com</strong>.'); 
     270                              document.write(' <strong>lesterchan@gmail.com</strong>.'); 
    274271                              /* ]]> */ 
    275272                        </script> 
     
    282279                  <ul> 
    283280                        <li> 
    284                               <strong>Version 2.30 (01-01-2008)</strong> 
    285                               <ul> 
     281                              <strong>Version 2.30 (01-06-2008)</strong> 
     282                              <ul> 
     283                                    <li>NEW: Works With WordPress 2.5 Only</li> 
     284                                    <li>NEW: Uses Shortcode API</li> 
    286285                                    <li>NEW: Uses /wp-stats/ Folder Instead Of /stats/</li> 
    287286                                    <li>NEW: Uses wp-stats.php Instead Of stats.php</li> 
  • wp-stats/trunk/stats-options.php

    r22752 r36830  
    33+----------------------------------------------------------------+ 
    44|                                                                                                                                         | 
    5 |     WordPress 2.1 Plugin: WP-Stats 2.30                                                           | 
    6 |     Copyright (c) 2007 Lester "GaMerZ" Chan                                                 | 
     5|     WordPress 2.5 Plugin: WP-Stats 2.30                                                           | 
     6|     Copyright (c) 2008 Lester "GaMerZ" Chan                                                 | 
    77|                                                                                                                                         | 
    88|     File Written By:                                                                                                  | 
     
    108108<div class="wrap">  
    109109      <h2><?php _e('Stats Options', 'wp-stats'); ?></h2>  
     110      <table class="form-table"> 
     111             <tr> 
     112                  <th scope="row" valign="top"><?php _e('Stats URL', 'wp-stats'); ?></th> 
     113                  <td> 
     114                        <input type="text" name="stats_url" value="<?php echo get_option('stats_url'); ?>" size="50" /><br /><?php _e('URL To Stats Page.<br />Example: http://www.yoursite.com/blogs/stats/<br />Example: http://www.yoursite.com/blogs/?page_id=2', 'wp-stats'); ?> 
     115                  </td> 
     116            </tr> 
     117             <tr> 
     118                  <th scope="row" valign="top"><?php _e('Stats Most Limit', 'wp-stats'); ?></th> 
     119                  <td> 
     120                        <input type="text" name="stats_mostlimit" value="<?php echo $stats_mostlimit ?>" size="2" /><br /><?php _e('Top X Stats, where X is the most limit.', 'wp-stats'); ?> 
     121                  </td> 
     122            </tr> 
     123             <tr> 
     124                  <th scope="row" valign="top"><?php _e('Type Of Stats To Display', 'wp-stats'); ?></th> 
     125                  <td> 
     126                        <p><strong><?php _e('General Stats', 'wp-stats'); ?></strong></p> 
     127                        <input type="checkbox" name="stats_display[]" id="wpstats_total_stats" value="total_stats"<?php checked(1, $stats_display['total_stats']); ?> />&nbsp;&nbsp;<label for="wpstats_total_stats">Total</label><br /> 
     128 
     129                        <!-- Admin General Stats Filter --> 
     130                        <?php echo apply_filters('wp_stats_page_admin_general', $page_admin_general_stats); ?> 
     131 
     132                        <p><strong><?php _e('Plugin Stats', 'wp-stats'); ?></strong></p> 
     133 
     134                        <!-- Admin Plugins Stats Filter --> 
     135                        <?php echo apply_filters('wp_stats_page_admin_plugins', $page_admin_plugins_stats); ?> 
     136 
     137                        <p><strong><?php printf(__('Top %s Recent Stats', 'wp-stats'), get_option('stats_mostlimit')); ?></strong></p> 
     138                        <input type="checkbox" name="stats_display[]" id="wpstats_recent_posts" value="recent_posts"<?php checked(1, $stats_display['recent_posts']); ?> />&nbsp;&nbsp;<label for="wpstats_recent_posts"><?php echo $stats_mostlimit ?> <?php _e('Most Recent Posts', 'wp-stats'); ?></label><br /> 
     139                        <input type="checkbox" name="stats_display[]" id="wpstats_recent_commtents" value="recent_commtents"<?php checked(1, $stats_display['recent_commtents']); ?> />&nbsp;&nbsp;<label for="wpstats_recent_commtents"><?php echo $stats_mostlimit ?> <?php _e('Most Recent Comments', 'wp-stats'); ?></label><br /> 
     140 
     141                        <!-- Admin Recent Stats Filter --> 
     142                        <?php echo apply_filters('wp_stats_page_admin_recent', $page_admin_recent_stats); ?> 
     143 
     144                        <p><strong><?php printf(__('Top %s Most/Highest Stats', 'wp-stats'), get_option('stats_mostlimit')); ?></strong></p> 
     145                        <input type="checkbox" name="stats_display[]" id="wpstats_commented_post" value="commented_post"<?php checked(1, $stats_display['commented_post']); ?> />&nbsp;&nbsp;<label for="wpstats_commented_post"><?php echo $stats_mostlimit ?> <?php _e('Most Commented Posts', 'wp-stats'); ?></label><br /> 
     146 
     147                        <!-- Admin Most Stats Filter --> 
     148                        <?php echo apply_filters('wp_stats_page_admin_most', $page_page_admin_most_stats); ?> 
     149 
     150                        <p><strong><?php _e('Authors Stats', 'wp-stats'); ?></strong></p> 
     151                        <input type="checkbox" name="stats_display[]" id="wpstats_authors" value="authors"<?php checked(1, $stats_display['authors']); ?> />&nbsp;&nbsp;<label for="wpstats_authors"><?php _e('Authors', 'wp-stats'); ?></label><br /> 
     152 
     153                        <!-- Admin Authors Stats Filter --> 
     154                        <?php echo apply_filters('wp_stats_page_admin_authors', $page_admin_authors_stats); ?> 
     155 
     156                        <p><strong><?php _e('Comments\' Members Stats', 'wp-stats'); ?></strong></p> 
     157                        <input type="checkbox" name="stats_display[]" id="wpstats_comment_members" value="comment_members"<?php checked(1, $stats_display['comment_members']); ?> />&nbsp;&nbsp;<label for="wpstats_comment_members"><?php _e('Comment Members', 'wp-stats'); ?></label><br /> 
     158 
     159                        <!-- Admin Comments' Members Stats Filter --> 
     160                        <?php echo apply_filters('wp_stats_page_admin_comments_members', $admin_comments_members_stats); ?> 
     161 
     162                        <p><strong><?php _e('Misc Stats', 'wp-stats'); ?></strong></p> 
     163                        <input type="checkbox" name="stats_display[]" id="wpstats_post_cats" value="post_cats"<?php checked(1, $stats_display['post_cats']); ?> />&nbsp;&nbsp;<label for="wpstats_post_cats"><?php _e('Post Categories', 'wp-stats'); ?></label><br /> 
     164                        <input type="checkbox" name="stats_display[]" id="wpstats_link_cats" value="link_cats"<?php checked(1, $stats_display['link_cats']); ?> />&nbsp;&nbsp;<label for="wpstats_link_cats"><?php _e('Link Categories', 'wp-stats'); ?></label><br /> 
     165                        <input type="checkbox" name="stats_display[]" id="wpstats_tags_list" value="tags_list"<?php checked(1, $stats_display['tags_list']); ?> />&nbsp;&nbsp;<label for="wpstats_tags_list"><?php _e('Tags List', 'wp-stats'); ?></label><br /> 
     166 
     167                        <!-- Admin Misc Stats Filter --> 
     168                        <?php echo apply_filters('wp_stats_page_admin_misc', $page_admin_misc_stats); ?> 
     169                  </td> 
     170            </tr> 
     171      </table> 
    110172      <p class="submit"> 
    111             <input type="submit" name="Submit" class="button" value="<?php _e('Update Options &raquo;', 'wp-stats'); ?>" /> 
    112       </p> 
    113       <fieldset class="options"> 
    114             <legend><?php _e('Stats Options', 'wp-stats'); ?></legend> 
    115             <table width="100%"  border="0" cellspacing="3" cellpadding="3"> 
    116                    <tr valign="top"> 
    117                         <th align="left" width="30%"><?php _e('Stats URL', 'wp-stats'); ?></th> 
    118                         <td align="left"> 
    119                               <input type="text" name="stats_url" value="<?php echo get_option('stats_url'); ?>" size="50" /><br /><?php _e('URL To Stats Page.<br />Example: http://www.yoursite.com/blogs/stats/<br />Example: http://www.yoursite.com/blogs/?page_id=2', 'wp-stats'); ?> 
    120                         </td> 
    121                   </tr> 
    122                    <tr valign="top"> 
    123                         <th align="left" width="30%"><?php _e('Stats Most Limit', 'wp-stats'); ?></th> 
    124                         <td align="left"> 
    125                               <input type="text" name="stats_mostlimit" value="<?php echo $stats_mostlimit ?>" size="2" /><br /><?php _e('Top X Stats, where X is the most limit.', 'wp-stats'); ?> 
    126                         </td> 
    127                   </tr> 
    128                    <tr valign="top"> 
    129                         <th align="left" width="30%"><?php _e('Type Of Stats To Display', 'wp-stats'); ?></th> 
    130                         <td align="left"> 
    131                               <p><strong><?php _e('General Stats', 'wp-stats'); ?></strong></p> 
    132                               <input type="checkbox" name="stats_display[]" id="wpstats_total_stats" value="total_stats"<?php checked(1, $stats_display['total_stats']); ?> />&nbsp;&nbsp;<label for="wpstats_total_stats">Total</label><br /> 
    133  
    134                               <!-- Admin General Stats Filter --> 
    135                               <?php echo apply_filters('wp_stats_page_admin_general', $page_admin_general_stats); ?> 
    136  
    137                               <p><strong><?php _e('Plugin Stats', 'wp-stats'); ?></strong></p> 
    138  
    139                               <!-- Admin Plugins Stats Filter --> 
    140                               <?php echo apply_filters('wp_stats_page_admin_plugins', $page_admin_plugins_stats); ?> 
    141  
    142                               <p><strong><?php printf(__('Top %s Recent Stats', 'wp-stats'), get_option('stats_mostlimit')); ?></strong></p> 
    143                               <input type="checkbox" name="stats_display[]" id="wpstats_recent_posts" value="recent_posts"<?php checked(1, $stats_display['recent_posts']); ?> />&nbsp;&nbsp;<label for="wpstats_recent_posts"><?php echo $stats_mostlimit ?> <?php _e('Most Recent Posts', 'wp-stats'); ?></label><br /> 
    144                               <input type="checkbox" name="stats_display[]" id="wpstats_recent_commtents" value="recent_commtents"<?php checked(1, $stats_display['recent_commtents']); ?> />&nbsp;&nbsp;<label for="wpstats_recent_commtents"><?php echo $stats_mostlimit ?> <?php _e('Most Recent Comments', 'wp-stats'); ?></label><br /> 
    145  
    146                               <!-- Admin Recent Stats Filter --> 
    147                               <?php echo apply_filters('wp_stats_page_admin_recent', $page_admin_recent_stats); ?> 
    148  
    149                               <p><strong><?php printf(__('Top %s Most/Highest Stats', 'wp-stats'), get_option('stats_mostlimit')); ?></strong></p> 
    150                               <input type="checkbox" name="stats_display[]" id="wpstats_commented_post" value="commented_post"<?php checked(1, $stats_display['commented_post']); ?> />&nbsp;&nbsp;<label for="wpstats_commented_post"><?php echo $stats_mostlimit ?> <?php _e('Most Commented Posts', 'wp-stats'); ?></label><br /> 
    151  
    152                               <!-- Admin Most Stats Filter --> 
    153                               <?php echo apply_filters('wp_stats_page_admin_most', $page_page_admin_most_stats); ?> 
    154  
    155                               <p><strong><?php _e('Authors Stats', 'wp-stats'); ?></strong></p> 
    156                               <input type="checkbox" name="stats_display[]" id="wpstats_authors" value="authors"<?php checked(1, $stats_display['authors']); ?> />&nbsp;&nbsp;<label for="wpstats_authors"><?php _e('Authors', 'wp-stats'); ?></label><br /> 
    157  
    158                               <!-- Admin Authors Stats Filter --> 
    159                               <?php echo apply_filters('wp_stats_page_admin_authors', $page_admin_authors_stats); ?> 
    160  
    161                               <p><strong><?php _e('Comments\' Members Stats', 'wp-stats'); ?></strong></p> 
    162                               <input type="checkbox" name="stats_display[]" id="wpstats_comment_members" value="comment_members"<?php checked(1, $stats_display['comment_members']); ?> />&nbsp;&nbsp;<label for="wpstats_comment_members"><?php _e('Comment Members', 'wp-stats'); ?></label><br /> 
    163  
    164                               <!-- Admin Comments' Members Stats Filter --> 
    165                               <?php echo apply_filters('wp_stats_page_admin_comments_members', $admin_comments_members_stats); ?> 
    166  
    167                               <p><strong><?php _e('Misc Stats', 'wp-stats'); ?></strong></p> 
    168                               <input type="checkbox" name="stats_display[]" id="wpstats_post_cats" value="post_cats"<?php checked(1, $stats_display['post_cats']); ?> />&nbsp;&nbsp;<label for="wpstats_post_cats"><?php _e('Post Categories', 'wp-stats'); ?></label><br /> 
    169                               <input type="checkbox" name="stats_display[]" id="wpstats_link_cats" value="link_cats"<?php checked(1, $stats_display['link_cats']); ?> />&nbsp;&nbsp;<label for="wpstats_link_cats"><?php _e('Link Categories', 'wp-stats'); ?></label><br /> 
    170                               <input type="checkbox" name="stats_display[]" id="wpstats_tags_list" value="tags_list"<?php checked(1, $stats_display['tags_list']); ?> />&nbsp;&nbsp;<label for="wpstats_tags_list"><?php _e('Tags List', 'wp-stats'); ?></label><br /> 
    171  
    172                               <!-- Admin Misc Stats Filter --> 
    173                               <?php echo apply_filters('wp_stats_page_admin_misc', $page_admin_misc_stats); ?> 
    174                         </td> 
    175                   </tr> 
    176             </table> 
    177       </fieldset> 
    178       <p class="submit"> 
    179             <input type="submit" name="Submit" class="button" value="<?php _e('Update Options &raquo;', 'wp-stats'); ?>" /> 
     173            <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-stats'); ?>" /> 
    180174      </p> 
    181175</div> 
    182176</form> 
     177<p>&nbsp;</p> 
    183178 
    184179<!-- Uninstall WP-Stats --> 
     
    196191            <strong><?php _e('The following WordPress Options will be DELETED:', 'wp-stats'); ?></strong><br /> 
    197192      </p> 
    198       <table width="70%"  border="0" cellspacing="3" cellpadding="3"> 
    199             <tr class="thead"> 
    200                   <td align="center"><strong><?php _e('WordPress Options', 'wp-stats'); ?></strong></td> 
    201             </tr> 
     193      <table class="widefat"> 
     194            <thead> 
     195                  <tr> 
     196                        <th><?php _e('WordPress Options', 'wp-stats'); ?></th> 
     197                  </tr> 
     198            </thead> 
    202199            <tr> 
    203                   <td valign="top" style="background-color: #eee;"
     200                  <td valign="top"
    204201                        <ol> 
    205202                        <?php 
  • wp-stats/trunk/wp-stats-widget.php

    r22752 r36830  
    1010 
    1111 
    12 /*  Copyright 2006  Lester Chan  (email : gamerz84@hotmail.com) 
     12/*  Copyright 2008  Lester Chan  (email : lesterchan@gmail.com) 
    1313 
    1414    This program is free software; you can redistribute it and/or modify 
     
    8787                        } 
    8888                        // Total Spam 
    89                         if($stats_total_options['spam'] == 1) { 
     89                        if($stats_total_options['spam'] == 1 && function_exists('akismet_spam_count')) { 
    9090                              echo '<li><strong>'.number_format(akismet_spam_count()).'</strong> '.__('Spam Blocked', 'wp-stats').'</li>'."\n"; 
    9191                        } 
  • wp-stats/trunk/wp-stats.php

    r34359 r36830  
    1111 
    1212/*   
    13       Copyright 2007  Lester Chan  (email : gamerz84@hotmail.com) 
     13      Copyright 2008  Lester Chan  (email : lesterchan@gmail.com) 
    1414 
    1515    This program is free software; you can redistribute it and/or modify 
     
    358358 
    359359 
    360 ### Function: Place Statistics Page In Content 
    361 add_filter('the_content', 'place_stats', '7'); 
    362 function place_stats($content){ 
    363      $content = preg_replace( "/\[page_stats\]/ise", "stats_page()", $content);  
    364     return $content; 
     360### Function: Short Code For Inserting Stats Into Page 
     361add_shortcode('page_stats', 'stats_page_shortcode'); 
     362function stats_page_shortcode($atts) { 
     363      return stats_page(); 
    365364} 
    366365 
  • wp-stats/trunk/wp-stats.pot

    r34359 r36830  
    33"Project-Id-Version: WP-Stats 2.30\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2008-03-11 21:51+0800\n" 
     5"PO-Revision-Date: 2008-03-30 17:47+0800\n" 
    66"Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 
    7 "Language-Team: Lester Chan <gamerz84@homtail.com>\n" 
     7"Language-Team: Lester Chan <lesterchan@gmail.com>\n" 
    88"MIME-Version: 1.0\n" 
    99"Content-Type: text/plain; charset=utf-8\n" 
     
    1616 
    1717#: stats-options.php:45 
    18 #: stats-options.php:117 
     18#: stats-options.php:112 
    1919msgid "Stats URL" 
    2020msgstr "" 
    2121 
    2222#: stats-options.php:46 
    23 #: stats-options.php:123 
     23#: stats-options.php:118 
    2424msgid "Stats Most Limit" 
    2525msgstr "" 
     
    3838 
    3939#: stats-options.php:63 
    40 #: stats-options.php:217 
     40#: stats-options.php:214 
    4141msgid "UNINSTALL WP-Stats" 
    4242msgstr "" 
     
    5353 
    5454#: stats-options.php:97 
    55 #: stats-options.php:187 
     55#: stats-options.php:182 
    5656msgid "Uninstall WP-Stats" 
    5757msgstr "" 
     
    6363 
    6464#: stats-options.php:109 
     65msgid "Stats Options" 
     66msgstr "" 
     67 
    6568#: stats-options.php:114 
    66 msgid "Stats Options" 
    67 msgstr "" 
    68  
    69 #: stats-options.php:111 
    70 #: stats-options.php:179 
    71 msgid "Update Options &raquo;" 
    72 msgstr "" 
    73  
    74 #: stats-options.php:119 
    7569msgid "URL To Stats Page.<br />Example: http://www.yoursite.com/blogs/stats/<br />Example: http://www.yoursite.com/blogs/?page_id=2" 
    7670msgstr "" 
    7771 
    78 #: stats-options.php:125 
     72#: stats-options.php:120 
    7973msgid "Top X Stats, where X is the most limit." 
    8074msgstr "" 
    8175 
    82 #: stats-options.php:129 
     76#: stats-options.php:124 
    8377msgid "Type Of Stats To Display" 
    8478msgstr "" 
    8579 
    86 #: stats-options.php:131 
    87 #: wp-stats.php:400 
     80#: stats-options.php:126 
     81#: wp-stats.php:399 
    8882msgid "General Stats" 
    8983msgstr "" 
    9084 
     85#: stats-options.php:132 
     86msgid "Plugin Stats" 
     87msgstr "" 
     88 
    9189#: stats-options.php:137 
    92 msgid "Plugin Stats" 
    93 msgstr "" 
    94  
    95 #: stats-options.php:142 
    96 #: wp-stats.php:427 
     90#: wp-stats.php:426 
    9791#, php-format 
    9892msgid "Top %s Recent Stats" 
    9993msgstr "" 
    10094 
    101 #: stats-options.php:143 
     95#: stats-options.php:138 
    10296msgid "Most Recent Posts" 
    10397msgstr "" 
    10498 
     99#: stats-options.php:139 
     100msgid "Most Recent Comments" 
     101msgstr "" 
     102 
    105103#: stats-options.php:144 
    106 msgid "Most Recent Comments" 
    107 msgstr "" 
    108  
    109 #: stats-options.php:149 
    110 #: wp-stats.php:449 
     104#: wp-stats.php:448 
    111105#, php-format 
    112106msgid "Top %s Most/Highest Stats" 
    113107msgstr "" 
    114108 
    115 #: stats-options.php:150 
     109#: stats-options.php:145 
    116110#: wp-stats-widget.php:192 
    117111msgid "Most Commented Posts" 
    118112msgstr "" 
    119113 
    120 #: stats-options.php:155 
    121 #: wp-stats.php:463 
     114#: stats-options.php:150 
     115#: wp-stats.php:462 
    122116msgid "Authors Stats" 
    123117msgstr "" 
    124118 
     119#: stats-options.php:151 
     120#: wp-stats-widget.php:54 
     121#: wp-stats.php:466 
     122msgid "Authors" 
     123msgstr "" 
     124 
    125125#: stats-options.php:156 
    126 #: wp-stats-widget.php:54 
    127 #: wp-stats.php:467 
    128 msgid "Authors" 
    129 msgstr "" 
    130  
    131 #: stats-options.php:161 
    132 #: wp-stats.php:477 
     126#: wp-stats.php:476 
    133127msgid "Comments' Members Stats" 
    134128msgstr "" 
    135129 
     130#: stats-options.php:157 
     131#: wp-stats.php:480 
     132msgid "Comment Members" 
     133msgstr "" 
     134 
    136135#: stats-options.php:162 
    137 #: wp-stats.php:481 
    138 msgid "Comment Members" 
    139 msgstr "" 
    140  
    141 #: stats-options.php:167 
    142 #: wp-stats.php:491 
     136#: wp-stats.php:490 
    143137msgid "Misc Stats" 
    144138msgstr "" 
    145139 
    146 #: stats-options.php:168 
     140#: stats-options.php:163 
    147141#: wp-stats-widget.php:82 
    148 #: wp-stats.php:495 
     142#: wp-stats.php:494 
    149143msgid "Post Categories" 
    150144msgstr "" 
    151145 
    152 #: stats-options.php:169 
     146#: stats-options.php:164 
    153147#: wp-stats-widget.php:86 
    154 #: wp-stats.php:503 
     148#: wp-stats.php:502 
    155149msgid "Link Categories" 
    156150msgstr "" 
    157151 
    158 #: stats-options.php:170 
    159 #: wp-stats.php:510 
     152#: stats-options.php:165 
     153#: wp-stats.php:509 
    160154msgid "Tags List" 
    161155msgstr "" 
    162156 
    163 #: stats-options.php:189 
     157#: stats-options.php:173 
     158msgid "Save Changes" 
     159msgstr "" 
     160 
     161#: stats-options.php:184 
    164162msgid "Deactivating WP-Stats plugin does not remove any data that may have been created, such as the stats options. To completely remove this plugin, you can uninstall it here." 
    165163msgstr "" 
    166164 
    167 #: stats-options.php:192 
     165#: stats-options.php:187 
    168166msgid "WARNING:" 
    169167msgstr "" 
    170168 
    171 #: stats-options.php:193 
     169#: stats-options.php:188 
    172170msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first." 
    173171msgstr "" 
    174172 
     173#: stats-options.php:191 
     174msgid "The following WordPress Options will be DELETED:" 
     175msgstr "" 
     176 
    175177#: stats-options.php:196 
    176 msgid "The following WordPress Options will be DELETED:" 
    177 msgstr "" 
    178  
    179 #: stats-options.php:200 
    180178msgid "WordPress Options" 
    181179msgstr "" 
    182180 
    183 #: stats-options.php:216 
     181#: stats-options.php:213 
    184182#: wp-stats-widget.php:203 
    185183msgid "Yes" 
    186184msgstr "" 
    187185 
    188 #: stats-options.php:217 
     186#: stats-options.php:214 
    189187msgid "" 
    190188"You Are About To Uninstall WP-Stats From WordPress.\\n" 
     
    195193 
    196194#: wp-stats-widget.php:49 
    197 #: wp-stats.php:401 
     195#: wp-stats.php:400 
    198196msgid "Total Stats" 
    199197msgstr "" 
     
    356354msgstr "" 
    357355 
     356#: wp-stats.php:402 
     357msgid "authors to this blog." 
     358msgstr "" 
     359 
    358360#: wp-stats.php:403 
    359 msgid "authors to this blog." 
     361msgid "posts were posted." 
    360362msgstr "" 
    361363 
    362364#: wp-stats.php:404 
    363 msgid "posts were posted." 
     365msgid "pages were created." 
    364366msgstr "" 
    365367 
    366368#: wp-stats.php:405 
    367 msgid "pages were created." 
     369msgid "tags were created." 
    368370msgstr "" 
    369371 
    370372#: wp-stats.php:406 
    371 msgid "tags were created." 
     373msgid "comments were posted." 
    372374msgstr "" 
    373375 
    374376#: wp-stats.php:407 
    375 msgid "comments were posted." 
     377msgid "different nicknames were represented in the comments." 
    376378msgstr "" 
    377379 
    378380#: wp-stats.php:408 
    379 msgid "different nicknames were represented in the comments." 
     381msgid "links were added." 
    380382msgstr "" 
    381383 
    382384#: wp-stats.php:409 
    383 msgid "links were added." 
     385msgid "post categories were needed." 
    384386msgstr "" 
    385387 
    386388#: wp-stats.php:410 
    387 msgid "post categories were needed." 
    388 msgstr "" 
    389  
    390 #: wp-stats.php:411 
    391389msgid "link categories were needed." 
    392390msgstr "" 
    393391 
    394 #: wp-stats.php:413 
     392#: wp-stats.php:412 
    395393msgid "spam blocked." 
    396394msgstr "" 
    397395 
    398 #: wp-stats.php:421 
     396#: wp-stats.php:420 
    399397msgid "Plugins Stats" 
    400398msgstr "" 
    401399 
    402 #: wp-stats.php:431 
     400#: wp-stats.php:430 
    403401msgid "Recent Posts" 
    404402msgstr "" 
    405403 
    406 #: wp-stats.php:439 
     404#: wp-stats.php:438 
    407405msgid "Recent Comments" 
    408406msgstr "" 
    409407 
    410 #: wp-stats.php:453 
     408#: wp-stats.php:452 
    411409msgid "Most Commented Post" 
    412410msgstr "" 
    413411 
     412#: wp-stats.php:542 
     413msgid "Comments Posted By" 
     414msgstr "" 
     415 
    414416#: wp-stats.php:543 
    415 msgid "Comments Posted By" 
    416 msgstr "" 
    417  
    418 #: wp-stats.php:544 
    419417#, php-format 
    420418msgid "Displaying <strong>%s</strong> To <strong>%s</strong> Of <strong>%s</strong> Comments" 
    421419msgstr "" 
    422420 
    423 #: wp-stats.php:552 
    424 #: wp-stats.php:554 
     421#: wp-stats.php:551 
     422#: wp-stats.php:553 
    425423#, php-format 
    426424msgid "%s @ %s" 
    427425msgstr "" 
    428426 
     427#: wp-stats.php:560 
     428#: wp-stats.php:566 
     429msgid "Posted On" 
     430msgstr "" 
     431 
     432#: wp-stats.php:560 
     433msgid "Protected" 
     434msgstr "" 
     435 
    429436#: wp-stats.php:561 
    430 #: wp-stats.php:567 
    431 msgid "Posted On" 
    432 msgstr "" 
    433  
    434 #: wp-stats.php:561 
    435 msgid "Protected" 
    436 msgstr "" 
    437  
    438 #: wp-stats.php:562 
    439437msgid "Comments Protected" 
    440438msgstr "" 
    441439 
    442 #: wp-stats.php:569 
     440#: wp-stats.php:568 
    443441#, php-format 
    444442msgid "View the comment posted by %s" 
    445443msgstr "" 
    446444 
    447 #: wp-stats.php:569 
     445#: wp-stats.php:568 
    448446msgid "Posted By" 
    449447msgstr "" 
    450448 
    451 #: wp-stats.php:569 
     449#: wp-stats.php:568 
    452450msgid "On" 
    453451msgstr "" 
    454452 
    455 #: wp-stats.php:574 
     453#: wp-stats.php:573 
    456454msgid "has not made any comments yet." 
    457455msgstr "" 
    458456 
    459 #: wp-stats.php:583 
     457#: wp-stats.php:582 
    460458msgid "Previous Page" 
    461459msgstr "" 
    462460 
    463 #: wp-stats.php:591 
     461#: wp-stats.php:590 
    464462msgid "Next Page" 
    465463msgstr "" 
    466464 
    467 #: wp-stats.php:600 
     465#: wp-stats.php:599 
    468466#, php-format 
    469467msgid "Pages (%s)" 
    470468msgstr "" 
    471469 
    472 #: wp-stats.php:602 
     470#: wp-stats.php:601 
    473471msgid "Go to First Page" 
    474472msgstr "" 
    475473 
    476 #: wp-stats.php:602 
     474#: wp-stats.php:601 
    477475msgid "First" 
    478476msgstr "" 
    479477 
    480 #: wp-stats.php:605 
    481 #: wp-stats.php:617 
     478#: wp-stats.php:604 
     479#: wp-stats.php:616 
    482480msgid "Go to Page" 
    483481msgstr "" 
    484482 
    485 #: wp-stats.php:612 
     483#: wp-stats.php:611 
    486484msgid "Page" 
    487485msgstr "" 
    488486 
    489 #: wp-stats.php:620 
     487#: wp-stats.php:619 
    490488msgid "Go to Last Page" 
    491489msgstr "" 
    492490 
    493 #: wp-stats.php:620 
     491#: wp-stats.php:619 
    494492msgid "Last" 
    495493msgstr "" 
    496494 
    497 #: wp-stats.php:624 
     495#: wp-stats.php:623 
    498496msgid "Back To Stats Page" 
    499497msgstr ""