Changeset 17545

Show
Ignore:
Timestamp:
08/28/07 17:16:29 (11 months ago)
Author:
GamerZ
Message:

WP 2.3 Update

Files:

Legend:

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

    r17289 r17545  
    243243                  <p> 
    244244                        <strong>Download:</strong><br /> 
    245                         <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.20 For WordPress 2.1.x And Above</a><br /> 
     245                        <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.20 For WordPress 2.3.x</a><br /> 
     246                        <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 /> 
    246247                        <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 /> 
    247248                        <strong>&raquo;</strong> <a href="http://lesterchan.net/others/downloads/wp-stats.zip" title="http://lesterchan.net/others/downloads/wp-stats.zip">WP-Stats 1.00 For WordPress 1.5.2 </a> 
     
    292293                              <strong>Version 2.20 (01-10-2007)</strong> 
    293294                              <ul> 
     295                                    <li>NEW: Works For WordPress 2.3 Only</li> 
     296                                    <li>NEW: Added Total Tags And Tag Lists</li> 
    294297                                    <li>NEW: Added Total Post Categories And Total Link Categories Stats</li> 
    295298                                    <li>NEW: Ability To Uninstall WP-Stats</li> 
  • wp-stats/trunk/readme.txt

    r15773 r17545  
    33Donate link: http://lesterchan.net/wordpress 
    44Tags: stat, stats, statistics, wp-stats, wp-stat, top, most, widget, popular, information 
    5 Requires at least: 2.1.0 
     5Requires at least: 2.3.0 
    66Stable tag: 2.11 
    77 
  • wp-stats/trunk/stats/stats-options.php

    r15773 r17545  
    127127                        <td align="left"> 
    128128                              <p><strong><?php _e('General Stats', 'wp-stats'); ?></strong></p> 
    129                               <input type="checkbox" name="stats_display[]" value="total_stats"<?php checked(1, $stats_display['total_stats']); ?> />&nbsp;&nbsp;Total<br /> 
     129                              <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 /> 
    130130 
    131131                              <!-- Admin General Stats Filter --> 
     
    138138 
    139139                              <p><strong><?php printf(__('Top %s Recent Stats', 'wp-stats'), get_option('stats_mostlimit')); ?></strong></p> 
    140                               <input type="checkbox" name="stats_display[]" value="recent_posts"<?php checked(1, $stats_display['recent_posts']); ?> />&nbsp;&nbsp;<?php echo $stats_mostlimit ?> <?php _e('Most Recent Posts', 'wp-stats'); ?><br /> 
    141                               <input type="checkbox" name="stats_display[]" value="recent_commtents"<?php checked(1, $stats_display['recent_commtents']); ?> />&nbsp;&nbsp;<?php echo $stats_mostlimit ?> <?php _e('Most Recent Comments', 'wp-stats'); ?><br /> 
     140                              <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 /> 
     141                              <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 /> 
    142142 
    143143                              <!-- Admin Recent Stats Filter --> 
     
    145145 
    146146                              <p><strong><?php printf(__('Top %s Most/Highest Stats', 'wp-stats'), get_option('stats_mostlimit')); ?></strong></p> 
    147                               <input type="checkbox" name="stats_display[]" value="commented_post"<?php checked(1, $stats_display['commented_post']); ?> />&nbsp;&nbsp;<?php echo $stats_mostlimit ?> <?php _e('Most Commented Posts', 'wp-stats'); ?><br /> 
     147                              <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 /> 
    148148 
    149149                              <!-- Admin Most Stats Filter --> 
     
    151151 
    152152                              <p><strong><?php _e('Authors Stats', 'wp-stats'); ?></strong></p> 
    153                               <input type="checkbox" name="stats_display[]" value="authors"<?php checked(1, $stats_display['authors']); ?> />&nbsp;&nbsp;<?php _e('Authors', 'wp-stats'); ?><br /> 
     153                              <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 /> 
    154154 
    155155                              <!-- Admin Authors Stats Filter --> 
     
    157157 
    158158                              <p><strong><?php _e('Comments\' Members Stats', 'wp-stats'); ?></strong></p> 
    159                               <input type="checkbox" name="stats_display[]" value="comment_members"<?php checked(1, $stats_display['comment_members']); ?> />&nbsp;&nbsp;<?php _e('Comment Members', 'wp-stats'); ?><br /> 
     159                              <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 /> 
    160160 
    161161                              <!-- Admin Comments' Members Stats Filter --> 
     
    163163 
    164164                              <p><strong><?php _e('Misc Stats', 'wp-stats'); ?></strong></p> 
    165                               <input type="checkbox" name="stats_display[]" value="post_cats"<?php checked(1, $stats_display['post_cats']); ?> />&nbsp;&nbsp;<?php _e('Post Categories', 'wp-stats'); ?><br /> 
    166                               <input type="checkbox" name="stats_display[]" value="link_cats"<?php checked(1, $stats_display['link_cats']); ?> />&nbsp;&nbsp;<?php _e('Link Categories', 'wp-stats'); ?><br /> 
     165                              <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 /> 
     166                              <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 /> 
     167                              <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 /> 
    167168 
    168169                              <!-- Admin Misc Stats Filter --> 
  • wp-stats/trunk/stats/stats-widget.php

    r17289 r17545  
    6262                              echo '<li><strong>'.get_totalpages(false).'</strong> '.__('Pages', 'wp-stats').'</li>'."\n"; 
    6363                        } 
     64                        // Total Tags 
     65                        if($stats_total_options['tags'] == 1) { 
     66                              echo '<li><strong>'.wp_count_terms('post_tag').'</strong> '.__('Tags', 'wp-stats').'</li>'."\n"; 
     67                        } 
    6468                        // Total Comments 
    6569                        if($stats_total_options['comments'] == 1) { 
     
    7680                        // Total Post Categories 
    7781                        if($stats_total_options['post_cats'] == 1) { 
    78                               echo '<li><strong>'.get_totalpost_categories(false).'</strong> '.__('Post Categories', 'wp-stats').'</li>'."\n"; 
     82                              echo '<li><strong>'.wp_count_terms('category').'</strong> '.__('Post Categories', 'wp-stats').'</li>'."\n"; 
    7983                        } 
    8084                        // Total Link Categories 
    8185                        if($stats_total_options['link_cats'] == 1) { 
    82                               echo '<li><strong>'.get_totallink_categories(false).'</strong> '.__('Link Categories', 'wp-stats').'</li>'."\n"; 
     86                              echo '<li><strong>'.wp_count_terms('link_category').'</strong> '.__('Link Categories', 'wp-stats').'</li>'."\n"; 
    8387                        } 
    8488                        // Total Spam 
     
    148152            } 
    149153            echo '<p style="text-align: left;"><label for="stats-title">'.__('Widget Title', 'wp-stats').':</label>&nbsp;&nbsp;&nbsp;<input type="text" id="stats-title" name="stats-title" value="'.htmlspecialchars($options['title']).'" />'; 
    150             echo '<p style="text-align: left;"><label for="stats_display">'.__('Statistics To Display?', 'wp-stats').'</label>&nbsp;&nbsp;&nbsp;'."\n"; 
     154            echo '<p style="text-align: left;">'.__('Statistics To Display?', 'wp-stats').'&nbsp;&nbsp;&nbsp;'."\n"; 
    151155            echo '<p style="text-align: left;">'."\n"; 
    152             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="authors"'; 
     156            echo '<input type="checkbox" id="wpstats_widget_authors" name="stats_display_total[]" value="authors"'; 
    153157            checked(1, $options['stats_display_total']['authors']); 
    154             echo ' />&nbsp;&nbsp;'.__('Total Authors', 'wp-stats').'<br />'."\n"; 
    155             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="posts"'; 
     158            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_authors">'.__('Total Authors', 'wp-stats').'</label><br />'."\n"; 
     159            echo '<input type="checkbox" id="wpstats_widget_posts" name="stats_display_total[]" value="posts"'; 
    156160            checked(1, $options['stats_display_total']['posts']); 
    157             echo ' />&nbsp;&nbsp;'.__('Total Posts', 'wp-stats').'<br />'."\n"; 
    158             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="pages"'; 
     161            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_posts">'.__('Total Posts', 'wp-stats').'</label><br />'."\n"; 
     162            echo '<input type="checkbox" id="wpstats_widget_pages" name="stats_display_total[]" value="pages"'; 
    159163            checked(1, $options['stats_display_total']['pages']); 
    160             echo ' />&nbsp;&nbsp;'.__('Total Pages', 'wp-stats').'<br />'."\n"; 
    161             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="comments"'; 
     164            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_pages">'.__('Total Pages', 'wp-stats').'</label><br />'."\n"; 
     165            echo '<input type="checkbox" id="wpstats_widget_tags" name="stats_display_total[]" value="tags"'; 
     166            checked(1, $options['stats_display_total']['tags']); 
     167            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_tags">'.__('Total Tags', 'wp-stats').'</label><br />'."\n"; 
     168            echo '<input type="checkbox" id="wpstats_widget_comments" name="stats_display_total[]" value="comments"'; 
    162169            checked(1, $options['stats_display_total']['comments']); 
    163             echo ' />&nbsp;&nbsp;'.__('Total Comments', 'wp-stats').'<br />'."\n"; 
    164             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="commenters"'; 
     170            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_comments">'.__('Total Comments', 'wp-stats').'</label><br />'."\n"; 
     171            echo '<input type="checkbox" id="wpstats_widget_commenters" name="stats_display_total[]" value="commenters"'; 
    165172            checked(1, $options['stats_display_total']['commenters']); 
    166             echo ' />&nbsp;&nbsp;'.__('Total Comment Posters', 'wp-stats').'<br />'."\n"; 
    167             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="links"'; 
     173            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_commenters">'.__('Total Comment Posters', 'wp-stats').'</label><br />'."\n"; 
     174            echo '<input type="checkbox" id="wpstats_widget_links" name="stats_display_total[]" value="links"'; 
    168175            checked(1, $options['stats_display_total']['links']); 
    169             echo ' />&nbsp;&nbsp;'.__('Total Links', 'wp-stats').'<br />'."\n"; 
    170             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="post_cats"'; 
     176            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_links">'.__('Total Links', 'wp-stats').'</label><br />'."\n"; 
     177            echo '<input type="checkbox" id="wpstats_widget_post_cats" name="stats_display_total[]" value="post_cats"'; 
    171178            checked(1, $options['stats_display_total']['post_cats']); 
    172             echo ' />&nbsp;&nbsp;'.__('Total Post Categories', 'wp-stats').'<br />'."\n"; 
    173             echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="link_cats"'; 
     179            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_post_cats">'.__('Total Post Categories', 'wp-stats').'</label><br />'."\n"; 
     180            echo '<input type="checkbox" id="wpstats_widget_link_cats" name="stats_display_total[]" value="link_cats"'; 
    174181            checked(1, $options['stats_display_total']['link_cats']); 
    175             echo ' />&nbsp;&nbsp;'.__('Total Link Categories', 'wp-stats').'<br />'."\n"; 
     182            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_link_cats">'.__('Total Link Categories', 'wp-stats').'</label><br />'."\n"; 
    176183            if(function_exists('akismet_spam_count')) { 
    177                   echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="spam"'; 
     184                  echo '<input type="checkbox" id="wpstats_widget_spam" name="stats_display_total[]" value="spam"'; 
    178185                  checked(1, $options['stats_display_total']['spam']); 
    179                   echo ' />&nbsp;&nbsp;'.__('Total Spam Blocked', 'wp-stats')
     186                  echo ' />&nbsp;&nbsp;<label for="wpstats_widget_spam">'.__('Total Spam Blocked', 'wp-stats').'</label>'
    180187            } 
    181188            echo apply_filters('wp_stats_widget_admin_general', $widget_admin_general_stats); 
    182189            echo '<br /><br />'."\n"; 
    183             echo '<input type="checkbox" id="stats_display_most" name="stats_display_most[]" value="comments"'; 
     190            echo '<input type="checkbox" id="wpstats_widget_most_comments" name="stats_display_most[]" value="comments"'; 
    184191            checked(1, $options['stats_display_most']['comments']); 
    185             echo ' />&nbsp;&nbsp;'.$options['most_limit'].' '.__('Most Commented Posts', 'wp-stats').'<br />'."\n"; 
     192            echo ' />&nbsp;&nbsp;<label for="wpstats_widget_most_comments">'.$options['most_limit'].' '.__('Most Commented Posts', 'wp-stats').'</label><br />'."\n"; 
    186193            echo apply_filters('wp_stats_widget_admin_most', $widget_admin_most_stats); 
    187194            echo '</p>'."\n"; 
     
    190197            echo '<p style="text-align: left;"><label for="most_limit">'.__('Most Limit', 'wp-stats').':</label>&nbsp;&nbsp;&nbsp;'."\n"; 
    191198            echo '<p style="text-align: left;"><input type="text" id="most_limit" name="most_limit" value="'.$options['most_limit'].'" size="2" maxlength="2" /></p>'."\n"; 
    192             echo '<p style="text-align: left;"><label for="show_link">'.__('Show Link To Full Stats?', 'wp-stats').'</label>&nbsp;&nbsp;&nbsp;'."\n"; 
     199            echo '<p style="text-align: left;">'.__('Show Link To Full Stats?', 'wp-stats').'&nbsp;&nbsp;&nbsp;'."\n"; 
    193200            echo '<p style="text-align: left;">'; 
    194             echo '<input type="radio" id="show_link" name="show_link" value="1"'; 
     201            echo '<input type="radio" id="show_link-1" name="show_link" value="1"'; 
    195202            checked(1, intval($options['show_link'])); 
    196             echo ' />&nbsp;'.__('Yes', 'wp-stats').'&nbsp;&nbsp;&nbsp;<input type="radio" id="show_link" name="show_link" value="0"'; 
     203            echo ' />&nbsp;<label for="show_link-1">'.__('Yes', 'wp-stats').'</label>&nbsp;&nbsp;&nbsp;<input type="radio" id="show_link-0" name="show_link" value="0"'; 
    197204            checked(0, intval($options['show_link']));             
    198             echo ' />&nbsp;'.__('No', 'wp-stats').'</p>'."\n"; 
     205            echo ' />&nbsp;<label for="show_link-0">'.__('No', 'wp-stats').'</label></p>'."\n"; 
    199206            echo '<input type="hidden" id="stats-submit" name="stats-submit" value="1" />'."\n"; 
    200207      } 
  • wp-stats/trunk/stats/stats.php

    r17289 r17545  
    112112 
    113113 
    114 ### Function: Get Total Post Categories 
    115 function get_totalpost_categories($display = true) { 
    116       global $wpdb; 
    117       $totalpost_categories = $wpdb->get_var("SELECT COUNT(cat_ID) FROM $wpdb->categories WHERE link_count = 0"); 
    118       if($display) { 
    119             echo number_format($totalpost_categories); 
    120       } else { 
    121             return number_format($totalpost_categories); 
    122       } 
    123 } 
    124  
    125  
    126114### Function: Get Total Links 
    127115function get_totallinks($display = true) { 
     
    132120      } else { 
    133121            return number_format($totallinks); 
    134       } 
    135 } 
    136  
    137  
    138 ### Function: Get Total Link Categories 
    139 function get_totallink_categories($display = true) { 
    140       global $wpdb; 
    141       $totallink_categories = $wpdb->get_var("SELECT COUNT(cat_ID) FROM $wpdb->categories WHERE category_count = 0"); 
    142       if($display) { 
    143             echo number_format($totallink_categories); 
    144       } else { 
    145             return number_format($totallink_categories); 
    146122      } 
    147123} 
     
    334310      global $wpdb; 
    335311      $temp = ''; 
    336       $cats = get_categories("type=link"); 
     312      $cats = get_categories('type=link'); 
    337313      if ($cats) { 
    338314            foreach ($cats as $cat) { 
    339                   $temp .= '<li>'.$cat->cat_name.' ('.$cat->link_count.")</li>\n"; 
     315                  $temp .= '<li>'.$cat->cat_name.' ('.$cat->count.")</li>\n"; 
     316            } 
     317      } 
     318      if($display) { 
     319            echo $temp; 
     320      } else { 
     321            return $temp; 
     322      } 
     323
     324 
     325 
     326### Function: Get Tags List 
     327function get_tags_list($display = true) { 
     328      global $wpdb; 
     329      $temp = ''; 
     330      $tags = get_tags('orderby=count&order=DESC'); 
     331      if ($tags) { 
     332            foreach ($tags as $tag) { 
     333                  $temp .= '<li><a href="'.clean_url(get_tag_link($tag->term_id)).'" title="'.sprintf(__('%s topics', 'wp-stats'), $tag->count).'">'.$tag->name.'</a> ('.$tag->count.")</li>\n"; 
    340334            } 
    341335      } 
     
    414408                  $temp_stats .= '<li><strong>'.get_totalauthors(false).'</strong> '.__('authors to this blog.', 'wp-stats').'</li>'."\n"; 
    415409                  $temp_stats .= '<li><strong>'.get_totalposts(false).'</strong> '.__('posts were posted.', 'wp-stats').'</li>'."\n"; 
    416                   $temp_stats .= '<li><strong>'.get_totalpages(false).'</strong> '.__('pages were created.', 'wp-stats').'</li>'."\n";                 
     410                  $temp_stats .= '<li><strong>'.get_totalpages(false).'</strong> '.__('pages were created.', 'wp-stats').'</li>'."\n"; 
     411                  $temp_stats .= '<li><strong>'.wp_count_terms('post_tag').'</strong> '.__('tags were created.', 'wp-stats').'</li>'."\n";             
    417412                  $temp_stats .= '<li><strong>'.get_totalcomments(false).'</strong> '.__('comments were posted.', 'wp-stats').'</li>'."\n"; 
    418413                  $temp_stats .= '<li><strong>'.get_totalcommentposters(false).'</strong> '.__('different nicknames were represented in the comments.', 'wp-stats').'</li>'."\n"; 
    419414                  $temp_stats .= '<li><strong>'.get_totallinks(false).'</strong> '.__('links were added.', 'wp-stats').'</li>'."\n"; 
    420                   $temp_stats .= '<li><strong>'.get_totalpost_categories(false).'</strong> '.__('post categories were needed.', 'wp-stats').'</li>'."\n"; 
    421                   $temp_stats .= '<li><strong>'.get_totallink_categories(false).'</strong> '.__('link categories were needed.', 'wp-stats').'</li>'."\n"; 
     415                  $temp_stats .= '<li><strong>'.wp_count_terms('category').'</strong> '.__('post categories were needed.', 'wp-stats').'</li>'."\n"; 
     416                  $temp_stats .= '<li><strong>'.wp_count_terms('link_category').'</strong> '.__('link categories were needed.', 'wp-stats').'</li>'."\n"; 
    422417                  if(function_exists('akismet_spam_count')) { 
    423418                        $temp_stats .= '<li><strong>'.number_format(get_option('akismet_spam_count')).'</strong> '.__('spam blocked.', 'wp-stats').'</li>'."\n"; 
     
    514509                  $temp_stats .= '<ul>'."\n"; 
    515510                  $temp_stats .= get_linkcats(false); 
     511                  $temp_stats .= '</ul>'."\n"; 
     512            } 
     513 
     514            if($stats_display['tags_list'] == 1) { 
     515                  $temp_stats .= '<p><strong>'.__('Tags List', 'wp-stats').'</strong></p>'."\n"; 
     516                  $temp_stats .= '<ul>'."\n"; 
     517                  $temp_stats .= get_tags_list(false); 
    516518                  $temp_stats .= '</ul>'."\n"; 
    517519            } 
  • wp-stats/trunk/stats/wp-stats.pot

    r17289 r17545  
    33"Project-Id-Version: WP-Stats 2.20\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2007-08-23 01:11+0800\n" 
     5"PO-Revision-Date: 2007-08-29 00:59+0800\n" 
    66"Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 
    77"Language-Team: Lester Chan <gamerz84@homtail.com>\n" 
     
    1616 
    1717#: stats-options.php:31 
    18 #: stats-options.php:175 
     18#: stats-options.php:176 
    1919msgid "Update Options" 
    2020msgstr "" 
     
    4343 
    4444#: stats-options.php:63 
    45 #: stats-options.php:213 
     45#: stats-options.php:214 
    4646msgid "UNINSTALL WP-Stats" 
    4747msgstr "" 
     
    5858 
    5959#: stats-options.php:97 
    60 #: stats-options.php:183 
     60#: stats-options.php:184 
    6161msgid "Uninstall WP-Stats" 
    6262msgstr "" 
     
    8585 
    8686#: stats-options.php:128 
    87 #: stats.php:411 
     87#: stats.php:405 
    8888msgid "General Stats" 
    8989msgstr "" 
     
    9494 
    9595#: stats-options.php:139 
    96 #: stats.php:437 
     96#: stats.php:432 
    9797#, php-format 
    9898msgid "Top %s Recent Stats" 
     
    108108 
    109109#: stats-options.php:146 
    110 #: stats.php:459 
     110#: stats.php:454 
    111111#, php-format 
    112112msgid "Top %s Most/Highest Stats" 
     
    114114 
    115115#: stats-options.php:147 
    116 #: stats-widget.php:185 
     116#: stats-widget.php:192 
    117117msgid "Most Commented Posts" 
    118118msgstr "" 
    119119 
    120120#: stats-options.php:152 
    121 #: stats.php:473 
     121#: stats.php:468 
    122122msgid "Authors Stats" 
    123123msgstr "" 
     
    125125#: stats-options.php:153 
    126126#: stats-widget.php:54 
    127 #: stats.php:477 
     127#: stats.php:472 
    128128msgid "Authors" 
    129129msgstr "" 
    130130 
    131131#: stats-options.php:158 
    132 #: stats.php:487 
     132#: stats.php:482 
    133133msgid "Comments' Members Stats" 
    134134msgstr "" 
    135135 
    136136#: stats-options.php:159 
    137 #: stats.php:491 
     137#: stats.php:486 
    138138msgid "Comment Members" 
    139139msgstr "" 
    140140 
    141141#: stats-options.php:164 
    142 #: stats.php:501 
     142#: stats.php:496 
    143143msgid "Misc Stats" 
    144144msgstr "" 
    145145 
    146146#: stats-options.php:165 
    147 #: stats-widget.php:78 
    148 #: stats.php:505 
     147#: stats-widget.php:82 
     148#: stats.php:500 
    149149msgid "Post Categories" 
    150150msgstr "" 
    151151 
    152152#: stats-options.php:166 
    153 #: stats-widget.php:82 
    154 #: stats.php:513 
     153#: stats-widget.php:86 
     154#: stats.php:508 
    155155msgid "Link Categories" 
    156156msgstr "" 
    157157 
    158 #: stats-options.php:175 
     158#: stats-options.php:167 
     159#: stats.php:515 
     160msgid "Tags List" 
     161msgstr "" 
     162 
     163#: stats-options.php:176 
    159164msgid "Cancel" 
    160165msgstr "" 
    161166 
    162 #: stats-options.php:185 
     167#: stats-options.php:186 
    163168msgid "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." 
    164169msgstr "" 
    165170 
    166 #: stats-options.php:188 
     171#: stats-options.php:189 
    167172msgid "WARNING:" 
    168173msgstr "" 
    169174 
    170 #: stats-options.php:189 
     175#: stats-options.php:190 
    171176msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first." 
    172177msgstr "" 
    173178 
    174 #: stats-options.php:192 
     179#: stats-options.php:193 
    175180msgid "The following WordPress Options will be DELETED:" 
    176181msgstr "" 
    177182 
    178 #: stats-options.php:196 
     183#: stats-options.php:197 
    179184msgid "WordPress Options" 
    180185msgstr "" 
    181186 
    182 #: stats-options.php:212 
    183 #: stats-widget.php:196 
     187#: stats-options.php:213 
     188#: stats-widget.php:203 
    184189msgid "Yes" 
    185190msgstr "" 
    186191 
    187 #: stats-options.php:213 
     192#: stats-options.php:214 
    188193msgid "" 
    189194"You Are About To Uninstall WP-Stats From WordPress.\\n" 
     
    194199 
    195200#: stats-widget.php:49 
    196 #: stats.php:412 
     201#: stats.php:406 
    197202msgid "Total Stats" 
    198203msgstr "" 
     
    207212 
    208213#: stats-widget.php:66 
     214msgid "Tags" 
     215msgstr "" 
     216 
     217#: stats-widget.php:70 
    209218msgid "Comments" 
    210219msgstr "" 
    211220 
    212 #: stats-widget.php:70 
     221#: stats-widget.php:74 
    213222msgid "Comment Posters" 
    214223msgstr "" 
    215224 
    216 #: stats-widget.php:74 
     225#: stats-widget.php:78 
    217226msgid "Links" 
    218227msgstr "" 
    219228 
    220 #: stats-widget.php:86 
     229#: stats-widget.php:90 
    221230msgid "Spam Blocked" 
    222231msgstr "" 
    223232 
    224 #: stats-widget.php:96 
     233#: stats-widget.php:100 
    225234msgid "Most Commented" 
    226235msgstr "" 
    227236 
    228 #: stats-widget.php:107 
     237#: stats-widget.php:111 
    229238msgid "My Blog Statistics" 
    230239msgstr "" 
    231240 
    232 #: stats-widget.php:121 
     241#: stats-widget.php:125 
    233242msgid "Statistics" 
    234243msgstr "" 
    235244 
    236 #: stats-widget.php:149 
     245#: stats-widget.php:153 
    237246msgid "Widget Title" 
    238247msgstr "" 
    239248 
    240 #: stats-widget.php:150 
     249#: stats-widget.php:154 
    241250msgid "Statistics To Display?" 
    242251msgstr "" 
    243252 
    244 #: stats-widget.php:154 
     253#: stats-widget.php:158 
    245254msgid "Total Authors" 
    246255msgstr "" 
    247256 
    248 #: stats-widget.php:157 
     257#: stats-widget.php:161 
    249258msgid "Total Posts" 
    250259msgstr "" 
    251260 
    252 #: stats-widget.php:160 
     261#: stats-widget.php:164 
    253262msgid "Total Pages" 
    254263msgstr "" 
    255264 
    256 #: stats-widget.php:163 
     265#: stats-widget.php:167 
     266msgid "Total Tags" 
     267msgstr "" 
     268 
     269#: stats-widget.php:170 
    257270msgid "Total Comments" 
    258271msgstr "" 
    259272 
    260 #: stats-widget.php:166 
     273#: stats-widget.php:173 
    261274msgid "Total Comment Posters" 
    262275msgstr "" 
    263276 
    264 #: stats-widget.php:169 
     277#: stats-widget.php:176 
    265278msgid "Total Links" 
    266279msgstr "" 
    267280 
    268 #: stats-widget.php:172 
     281#: stats-widget.php:179 
    269282msgid "Total Post Categories" 
    270283msgstr "" 
    271284 
    272 #: stats-widget.php:175 
     285#: stats-widget.php:182 
    273286msgid "Total Link Categories" 
    274287msgstr "" 
    275288 
    276 #: stats-widget.php:179 
     289#: stats-widget.php:186 
    277290msgid "Total Spam Blocked" 
    278291msgstr "" 
    279292 
    280 #: stats-widget.php:188 
     293#: stats-widget.php:195 
    281294msgid "Post Title Length (Characters)" 
    282295msgstr "" 
    283296 
    284 #: stats-widget.php:190 
     297#: stats-widget.php:197 
    285298msgid "Most Limit" 
    286299msgstr "" 
    287300 
    288 #: stats-widget.php:192 
     301#: stats-widget.php:199 
    289302msgid "Show Link To Full Stats?" 
    290303msgstr "" 
    291304 
    292 #: stats-widget.php:198 
     305#: stats-widget.php:205 
    293306msgid "No" 
    294307msgstr "" 
     
    302315msgstr "" 
    303316 
    304 #: stats.php:166 
     317#: stats.php:142 
    305318#, php-format 
    306319msgid "View post %s" 
    307320msgstr "" 
    308321 
    309 #: stats.php:169 
    310 #: stats.php:198 
    311 #: stats.php:234 
    312 #: stats.php:270 
    313 #: stats.php:303 
     322#: stats.php:145 
     323#: stats.php:174 
     324#: stats.php:210 
     325#: stats.php:246 
     326#: stats.php:279 
    314327msgid "N/A" 
    315328msgstr "" 
    316329 
    317 #: stats.php:195 
    318 #: stats.php:224 
    319 #: stats.php:230 
     330#: stats.php:171 
     331#: stats.php:200 
     332#: stats.php:206 
    320333#, php-format 
    321334msgid "View comments in post %s" 
    322335msgstr "" 
    323336 
    324 #: stats.php:224 
    325 #: stats.php:230 
     337#: stats.php:200 
     338#: stats.php:206 
    326339msgid "comments" 
    327340msgstr "" 
    328341 
    329 #: stats.php:264 
    330 #: stats.php:266 
     342#: stats.php:240 
     343#: stats.php:242 
    331344#, php-format 
    332345msgid "View posts posted by %s" 
    333346msgstr "" 
    334347 
     348#: stats.php:272 
     349#, php-format 
     350msgid "View all comments posted by %s" 
     351msgstr "" 
     352 
    335353#: stats.php:296 
    336 #, php-format 
    337 msgid "View all comments posted by %s" 
    338 msgstr "" 
    339  
    340 #: stats.php:320 
    341354msgid "No categories" 
    342355msgstr "" 
    343356 
     357#: stats.php:333 
     358#, php-format 
     359msgid "%s topics" 
     360msgstr "" 
     361 
     362#: stats.php:408 
     363msgid "authors to this blog." 
     364msgstr "" 
     365 
     366#: stats.php:409 
     367msgid "posts were posted." 
     368msgstr "" 
     369 
     370#: stats.php:410 
     371msgid "pages were created." 
     372msgstr "" 
     373 
     374#: stats.php:411 
     375msgid "tags were created." 
     376msgstr "" 
     377 
     378#: stats.php:412 
     379msgid "comments were posted." 
     380msgstr "" 
     381 
     382#: stats.php:413 
     383msgid "different nicknames were represented in the comments." 
     384msgstr "" 
     385 
    344386#: stats.php:414 
    345 msgid "authors to this blog." 
     387msgid "links were added." 
    346388msgstr "" 
    347389 
    348390#: stats.php:415 
    349 msgid "posts were posted." 
     391msgid "post categories were needed." 
    350392msgstr "" 
    351393 
    352394#: stats.php:416 
    353 msgid "pages were created." 
    354 msgstr "" 
    355  
    356 #: stats.php:417 
    357 msgid "comments were posted." 
     395msgid "link categories were needed." 
    358396msgstr "" 
    359397 
    360398#: stats.php:418 
    361 msgid "different nicknames were represented in the comments." 
    362 msgstr "" 
    363  
    364 #: stats.php:419 
    365 msgid "links were added." 
    366 msgstr "" 
    367  
    368 #: stats.php:420 
    369 msgid "post categories were needed." 
    370 msgstr "" 
    371  
    372 #: stats.php:421 
    373 msgid "link categories were needed." 
    374 msgstr "" 
    375  
    376 #: stats.php:423 
    377399msgid "spam blocked." 
    378400msgstr "" 
    379401 
    380 #: stats.php:431 
     402#: stats.php:426 
    381403msgid "Plugins Stats" 
    382404msgstr "" 
    383405 
    384 #: stats.php:441 
     406#: stats.php:436 
    385407msgid "Recent Posts" 
    386408msgstr "" 
    387409 
    388 #: stats.php:449 
     410#: stats.php:444 
    389411msgid "Recent Comments" 
    390412msgstr "" 
    391413 
    392 #: stats.php:463 
     414#: stats.php:458 
    393415msgid "Most Commented Post" 
    394416msgstr "" 
    395417 
    396 #: stats.php:546 
     418#: stats.php:548 
    397419msgid "Comments Posted By" 
    398420msgstr "" 
    399421 
    400 #: stats.php:547 
     422#: stats.php:549 
    401423#, php-format 
    402424msgid "Displaying <strong>%s</strong> To <strong>%s</strong> Of <strong>%s</strong> Comments" 
    403425msgstr "" 
    404426 
    405 #: stats.php:555 
    406427#: stats.php:557 
     428#: stats.php:559 
    407429#, php-format 
    408430msgid "%s @ %s" 
    409431msgstr "" 
    410432 
    411 #: stats.php:564 
    412 #: stats.php:570 
     433#: stats.php:566 
     434#: stats.php:572 
    413435msgid "Posted On" 
    414436msgstr "" 
    415437 
    416 #: stats.php:564 
     438#: stats.php:566 
    417439msgid "Protected" 
    418440msgstr "" 
    419441 
    420 #: stats.php:565 
     442#: stats.php:567 
    421443msgid "Comments Protected" 
    422444msgstr "" 
    423445 
    424 #: stats.php:572 
     446#: stats.php:574 
    425447#, php-format 
    426448msgid "View the comment posted by %s" 
    427449msgstr "" 
    428450 
    429 #: stats.php:572 
     451#: stats.php:574 
    430452msgid "Posted By" 
    431453msgstr "" 
    432454 
    433 #: stats.php:572 
     455#: stats.php:574 
    434456msgid "On" 
    435457msgstr "" 
    436458 
    437 #: stats.php:577 
     459#: stats.php:579 
    438460msgid "has not made any comments yet." 
    439461msgstr "" 
    440462 
    441 #: stats.php:586 
     463#: stats.php:588 
    442464msgid "Previous Page" 
    443465msgstr "" 
    444466 
    445 #: stats.php:594 
     467#: stats.php:596 
    446468msgid "Next Page" 
    447469msgstr "" 
    448470 
    449 #: stats.php:603 
     471#: stats.php:605 
    450472#, php-format 
    451473msgid "Pages (%s)" 
    452474msgstr "" 
    453475 
    454 #: stats.php:605 
     476#: stats.php:607 
    455477msgid "Go to First Page" 
    456478msgstr "" 
    457479 
    458 #: stats.php:605 
     480#: stats.php:607 
    459481msgid "First" 
    460482msgstr "" 
    461483 
    462 #: stats.php:608 
    463 #: stats.php:620 
     484#: stats.php:610 
     485#: stats.php:622 
    464486msgid "Go to Page" 
    465487msgstr "" 
    466488 
    467 #: stats.php:615 
     489#: stats.php:617 
    468490msgid "Page" 
    469491msgstr "" 
    470492 
    471 #: stats.php:623 
     493#: stats.php:625 
    472494msgid "Go to Last Page" 
    473495msgstr "" 
    474496 
    475 #: stats.php:623 
     497#: stats.php:625 
    476498msgid "Last" 
    477499msgstr "" 
    478500 
    479 #: stats.php:627 
     501#: stats.php:629 
    480502msgid "Back To Stats Page" 
    481503msgstr ""