Changeset 17545
- Timestamp:
- 08/28/07 17:16:29 (11 months ago)
- Files:
-
- wp-stats/trunk/readme.html (modified) (2 diffs)
- wp-stats/trunk/readme.txt (modified) (1 diff)
- wp-stats/trunk/stats/stats-options.php (modified) (6 diffs)
- wp-stats/trunk/stats/stats-widget.php (modified) (4 diffs)
- wp-stats/trunk/stats/stats.php (modified) (5 diffs)
- wp-stats/trunk/stats/wp-stats.mo (modified) (previous)
- wp-stats/trunk/stats/wp-stats.pot (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-stats/trunk/readme.html
r17289 r17545 243 243 <p> 244 244 <strong>Download:</strong><br /> 245 <strong>»</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>»</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>»</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 /> 246 247 <strong>»</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 /> 247 248 <strong>»</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> … … 292 293 <strong>Version 2.20 (01-10-2007)</strong> 293 294 <ul> 295 <li>NEW: Works For WordPress 2.3 Only</li> 296 <li>NEW: Added Total Tags And Tag Lists</li> 294 297 <li>NEW: Added Total Post Categories And Total Link Categories Stats</li> 295 298 <li>NEW: Ability To Uninstall WP-Stats</li> wp-stats/trunk/readme.txt
r15773 r17545 3 3 Donate link: http://lesterchan.net/wordpress 4 4 Tags: stat, stats, statistics, wp-stats, wp-stat, top, most, widget, popular, information 5 Requires at least: 2. 1.05 Requires at least: 2.3.0 6 6 Stable tag: 2.11 7 7 wp-stats/trunk/stats/stats-options.php
r15773 r17545 127 127 <td align="left"> 128 128 <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']); ?> /> Total<br />129 <input type="checkbox" name="stats_display[]" id="wpstats_total_stats" value="total_stats"<?php checked(1, $stats_display['total_stats']); ?> /> <label for="wpstats_total_stats">Total</label><br /> 130 130 131 131 <!-- Admin General Stats Filter --> … … 138 138 139 139 <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']); ?> /> <?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']); ?> /> <?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']); ?> /> <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']); ?> /> <label for="wpstats_recent_commtents"><?php echo $stats_mostlimit ?> <?php _e('Most Recent Comments', 'wp-stats'); ?></label><br /> 142 142 143 143 <!-- Admin Recent Stats Filter --> … … 145 145 146 146 <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']); ?> /> <?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']); ?> /> <label for="wpstats_commented_post"><?php echo $stats_mostlimit ?> <?php _e('Most Commented Posts', 'wp-stats'); ?></label><br /> 148 148 149 149 <!-- Admin Most Stats Filter --> … … 151 151 152 152 <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']); ?> /> <?php _e('Authors', 'wp-stats'); ?><br />153 <input type="checkbox" name="stats_display[]" id="wpstats_authors" value="authors"<?php checked(1, $stats_display['authors']); ?> /> <label for="wpstats_authors"><?php _e('Authors', 'wp-stats'); ?></label><br /> 154 154 155 155 <!-- Admin Authors Stats Filter --> … … 157 157 158 158 <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']); ?> /> <?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']); ?> /> <label for="wpstats_comment_members"><?php _e('Comment Members', 'wp-stats'); ?></label><br /> 160 160 161 161 <!-- Admin Comments' Members Stats Filter --> … … 163 163 164 164 <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']); ?> /> <?php _e('Post Categories', 'wp-stats'); ?><br /> 166 <input type="checkbox" name="stats_display[]" value="link_cats"<?php checked(1, $stats_display['link_cats']); ?> /> <?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']); ?> /> <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']); ?> /> <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']); ?> /> <label for="wpstats_tags_list"><?php _e('Tags List', 'wp-stats'); ?></label><br /> 167 168 168 169 <!-- Admin Misc Stats Filter --> wp-stats/trunk/stats/stats-widget.php
r17289 r17545 62 62 echo '<li><strong>'.get_totalpages(false).'</strong> '.__('Pages', 'wp-stats').'</li>'."\n"; 63 63 } 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 } 64 68 // Total Comments 65 69 if($stats_total_options['comments'] == 1) { … … 76 80 // Total Post Categories 77 81 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"; 79 83 } 80 84 // Total Link Categories 81 85 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"; 83 87 } 84 88 // Total Spam … … 148 152 } 149 153 echo '<p style="text-align: left;"><label for="stats-title">'.__('Widget Title', 'wp-stats').':</label> <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> '."\n";154 echo '<p style="text-align: left;">'.__('Statistics To Display?', 'wp-stats').' '."\n"; 151 155 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"'; 153 157 checked(1, $options['stats_display_total']['authors']); 154 echo ' /> '.__('Total Authors', 'wp-stats').'<br />'."\n";155 echo '<input type="checkbox" id=" stats_display_total" name="stats_display_total[]" value="posts"';158 echo ' /> <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"'; 156 160 checked(1, $options['stats_display_total']['posts']); 157 echo ' /> '.__('Total Posts', 'wp-stats').'<br />'."\n";158 echo '<input type="checkbox" id=" stats_display_total" name="stats_display_total[]" value="pages"';161 echo ' /> <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"'; 159 163 checked(1, $options['stats_display_total']['pages']); 160 echo ' /> '.__('Total Pages', 'wp-stats').'<br />'."\n"; 161 echo '<input type="checkbox" id="stats_display_total" name="stats_display_total[]" value="comments"'; 164 echo ' /> <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 ' /> <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"'; 162 169 checked(1, $options['stats_display_total']['comments']); 163 echo ' /> '.__('Total Comments', 'wp-stats').'<br />'."\n";164 echo '<input type="checkbox" id=" stats_display_total" name="stats_display_total[]" value="commenters"';170 echo ' /> <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"'; 165 172 checked(1, $options['stats_display_total']['commenters']); 166 echo ' /> '.__('Total Comment Posters', 'wp-stats').'<br />'."\n";167 echo '<input type="checkbox" id=" stats_display_total" name="stats_display_total[]" value="links"';173 echo ' /> <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"'; 168 175 checked(1, $options['stats_display_total']['links']); 169 echo ' /> '.__('Total Links', 'wp-stats').'<br />'."\n";170 echo '<input type="checkbox" id=" stats_display_total" name="stats_display_total[]" value="post_cats"';176 echo ' /> <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"'; 171 178 checked(1, $options['stats_display_total']['post_cats']); 172 echo ' /> '.__('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 ' /> <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"'; 174 181 checked(1, $options['stats_display_total']['link_cats']); 175 echo ' /> '.__('Total Link Categories', 'wp-stats').'<br />'."\n";182 echo ' /> <label for="wpstats_widget_link_cats">'.__('Total Link Categories', 'wp-stats').'</label><br />'."\n"; 176 183 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"'; 178 185 checked(1, $options['stats_display_total']['spam']); 179 echo ' /> '.__('Total Spam Blocked', 'wp-stats');186 echo ' /> <label for="wpstats_widget_spam">'.__('Total Spam Blocked', 'wp-stats').'</label>'; 180 187 } 181 188 echo apply_filters('wp_stats_widget_admin_general', $widget_admin_general_stats); 182 189 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"'; 184 191 checked(1, $options['stats_display_most']['comments']); 185 echo ' /> '.$options['most_limit'].' '.__('Most Commented Posts', 'wp-stats').'<br />'."\n";192 echo ' /> <label for="wpstats_widget_most_comments">'.$options['most_limit'].' '.__('Most Commented Posts', 'wp-stats').'</label><br />'."\n"; 186 193 echo apply_filters('wp_stats_widget_admin_most', $widget_admin_most_stats); 187 194 echo '</p>'."\n"; … … 190 197 echo '<p style="text-align: left;"><label for="most_limit">'.__('Most Limit', 'wp-stats').':</label> '."\n"; 191 198 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> '."\n";199 echo '<p style="text-align: left;">'.__('Show Link To Full Stats?', 'wp-stats').' '."\n"; 193 200 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"'; 195 202 checked(1, intval($options['show_link'])); 196 echo ' /> '.__('Yes', 'wp-stats').' <input type="radio" id="show_link" name="show_link" value="0"';203 echo ' /> <label for="show_link-1">'.__('Yes', 'wp-stats').'</label> <input type="radio" id="show_link-0" name="show_link" value="0"'; 197 204 checked(0, intval($options['show_link'])); 198 echo ' /> '.__('No', 'wp-stats').'</p>'."\n";205 echo ' /> <label for="show_link-0">'.__('No', 'wp-stats').'</label></p>'."\n"; 199 206 echo '<input type="hidden" id="stats-submit" name="stats-submit" value="1" />'."\n"; 200 207 } wp-stats/trunk/stats/stats.php
r17289 r17545 112 112 113 113 114 ### Function: Get Total Post Categories115 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 126 114 ### Function: Get Total Links 127 115 function get_totallinks($display = true) { … … 132 120 } else { 133 121 return number_format($totallinks); 134 }135 }136 137 138 ### Function: Get Total Link Categories139 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);146 122 } 147 123 } … … 334 310 global $wpdb; 335 311 $temp = ''; 336 $cats = get_categories( "type=link");312 $cats = get_categories('type=link'); 337 313 if ($cats) { 338 314 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 327 function 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"; 340 334 } 341 335 } … … 414 408 $temp_stats .= '<li><strong>'.get_totalauthors(false).'</strong> '.__('authors to this blog.', 'wp-stats').'</li>'."\n"; 415 409 $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"; 417 412 $temp_stats .= '<li><strong>'.get_totalcomments(false).'</strong> '.__('comments were posted.', 'wp-stats').'</li>'."\n"; 418 413 $temp_stats .= '<li><strong>'.get_totalcommentposters(false).'</strong> '.__('different nicknames were represented in the comments.', 'wp-stats').'</li>'."\n"; 419 414 $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"; 422 417 if(function_exists('akismet_spam_count')) { 423 418 $temp_stats .= '<li><strong>'.number_format(get_option('akismet_spam_count')).'</strong> '.__('spam blocked.', 'wp-stats').'</li>'."\n"; … … 514 509 $temp_stats .= '<ul>'."\n"; 515 510 $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); 516 518 $temp_stats .= '</ul>'."\n"; 517 519 } wp-stats/trunk/stats/wp-stats.pot
r17289 r17545 3 3 "Project-Id-Version: WP-Stats 2.20\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2007-08-2 3 01:11+0800\n"5 "PO-Revision-Date: 2007-08-29 00:59+0800\n" 6 6 "Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 7 7 "Language-Team: Lester Chan <gamerz84@homtail.com>\n" … … 16 16 17 17 #: stats-options.php:31 18 #: stats-options.php:17 518 #: stats-options.php:176 19 19 msgid "Update Options" 20 20 msgstr "" … … 43 43 44 44 #: stats-options.php:63 45 #: stats-options.php:21 345 #: stats-options.php:214 46 46 msgid "UNINSTALL WP-Stats" 47 47 msgstr "" … … 58 58 59 59 #: stats-options.php:97 60 #: stats-options.php:18 360 #: stats-options.php:184 61 61 msgid "Uninstall WP-Stats" 62 62 msgstr "" … … 85 85 86 86 #: stats-options.php:128 87 #: stats.php:4 1187 #: stats.php:405 88 88 msgid "General Stats" 89 89 msgstr "" … … 94 94 95 95 #: stats-options.php:139 96 #: stats.php:43 796 #: stats.php:432 97 97 #, php-format 98 98 msgid "Top %s Recent Stats" … … 108 108 109 109 #: stats-options.php:146 110 #: stats.php:45 9110 #: stats.php:454 111 111 #, php-format 112 112 msgid "Top %s Most/Highest Stats" … … 114 114 115 115 #: stats-options.php:147 116 #: stats-widget.php:1 85116 #: stats-widget.php:192 117 117 msgid "Most Commented Posts" 118 118 msgstr "" 119 119 120 120 #: stats-options.php:152 121 #: stats.php:4 73121 #: stats.php:468 122 122 msgid "Authors Stats" 123 123 msgstr "" … … 125 125 #: stats-options.php:153 126 126 #: stats-widget.php:54 127 #: stats.php:47 7127 #: stats.php:472 128 128 msgid "Authors" 129 129 msgstr "" 130 130 131 131 #: stats-options.php:158 132 #: stats.php:48 7132 #: stats.php:482 133 133 msgid "Comments' Members Stats" 134 134 msgstr "" 135 135 136 136 #: stats-options.php:159 137 #: stats.php:4 91137 #: stats.php:486 138 138 msgid "Comment Members" 139 139 msgstr "" 140 140 141 141 #: stats-options.php:164 142 #: stats.php: 501142 #: stats.php:496 143 143 msgid "Misc Stats" 144 144 msgstr "" 145 145 146 146 #: stats-options.php:165 147 #: stats-widget.php: 78148 #: stats.php:50 5147 #: stats-widget.php:82 148 #: stats.php:500 149 149 msgid "Post Categories" 150 150 msgstr "" 151 151 152 152 #: stats-options.php:166 153 #: stats-widget.php:8 2154 #: stats.php:5 13153 #: stats-widget.php:86 154 #: stats.php:508 155 155 msgid "Link Categories" 156 156 msgstr "" 157 157 158 #: stats-options.php:175 158 #: stats-options.php:167 159 #: stats.php:515 160 msgid "Tags List" 161 msgstr "" 162 163 #: stats-options.php:176 159 164 msgid "Cancel" 160 165 msgstr "" 161 166 162 #: stats-options.php:18 5167 #: stats-options.php:186 163 168 msgid "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." 164 169 msgstr "" 165 170 166 #: stats-options.php:18 8171 #: stats-options.php:189 167 172 msgid "WARNING:" 168 173 msgstr "" 169 174 170 #: stats-options.php:1 89175 #: stats-options.php:190 171 176 msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first." 172 177 msgstr "" 173 178 174 #: stats-options.php:19 2179 #: stats-options.php:193 175 180 msgid "The following WordPress Options will be DELETED:" 176 181 msgstr "" 177 182 178 #: stats-options.php:19 6183 #: stats-options.php:197 179 184 msgid "WordPress Options" 180 185 msgstr "" 181 186 182 #: stats-options.php:21 2183 #: stats-widget.php: 196187 #: stats-options.php:213 188 #: stats-widget.php:203 184 189 msgid "Yes" 185 190 msgstr "" 186 191 187 #: stats-options.php:21 3192 #: stats-options.php:214 188 193 msgid "" 189 194 "You Are About To Uninstall WP-Stats From WordPress.\\n" … … 194 199 195 200 #: stats-widget.php:49 196 #: stats.php:4 12201 #: stats.php:406 197 202 msgid "Total Stats" 198 203 msgstr "" … … 207 212 208 213 #: stats-widget.php:66 214 msgid "Tags" 215 msgstr "" 216 217 #: stats-widget.php:70 209 218 msgid "Comments" 210 219 msgstr "" 211 220 212 #: stats-widget.php:7 0221 #: stats-widget.php:74 213 222 msgid "Comment Posters" 214 223 msgstr "" 215 224 216 #: stats-widget.php:7 4225 #: stats-widget.php:78 217 226 msgid "Links" 218 227 msgstr "" 219 228 220 #: stats-widget.php: 86229 #: stats-widget.php:90 221 230 msgid "Spam Blocked" 222 231 msgstr "" 223 232 224 #: stats-widget.php: 96233 #: stats-widget.php:100 225 234 msgid "Most Commented" 226 235 msgstr "" 227 236 228 #: stats-widget.php:1 07237 #: stats-widget.php:111 229 238 msgid "My Blog Statistics" 230 239 msgstr "" 231 240 232 #: stats-widget.php:12 1241 #: stats-widget.php:125 233 242 msgid "Statistics" 234 243 msgstr "" 235 244 236 #: stats-widget.php:1 49245 #: stats-widget.php:153 237 246 msgid "Widget Title" 238 247 msgstr "" 239 248 240 #: stats-widget.php:15 0249 #: stats-widget.php:154 241 250 msgid "Statistics To Display?" 242 251 msgstr "" 243 252 244 #: stats-widget.php:15 4253 #: stats-widget.php:158 245 254 msgid "Total Authors" 246 255 msgstr "" 247 256 248 #: stats-widget.php:1 57257 #: stats-widget.php:161 249 258 msgid "Total Posts" 250 259 msgstr "" 251 260 252 #: stats-widget.php:16 0261 #: stats-widget.php:164 253 262 msgid "Total Pages" 254 263 msgstr "" 255 264 256 #: stats-widget.php:163 265 #: stats-widget.php:167 266 msgid "Total Tags" 267 msgstr "" 268 269 #: stats-widget.php:170 257 270 msgid "Total Comments" 258 271 msgstr "" 259 272 260 #: stats-widget.php:1 66273 #: stats-widget.php:173 261 274 msgid "Total Comment Posters" 262 275 msgstr "" 263 276 264 #: stats-widget.php:1 69277 #: stats-widget.php:176 265 278 msgid "Total Links" 266 279 msgstr "" 267 280 268 #: stats-widget.php:17 2281 #: stats-widget.php:179 269 282 msgid "Total Post Categories" 270 283 msgstr "" 271 284 272 #: stats-widget.php:1 75285 #: stats-widget.php:182 273 286 msgid "Total Link Categories" 274 287 msgstr "" 275 288 276 #: stats-widget.php:1 79289 #: stats-widget.php:186 277 290 msgid "Total Spam Blocked" 278 291 msgstr "" 279 292 280 #: stats-widget.php:1 88293 #: stats-widget.php:195 281 294 msgid "Post Title Length (Characters)" 282 295 msgstr "" 283 296 284 #: stats-widget.php:19 0297 #: stats-widget.php:197 285 298 msgid "Most Limit" 286 299 msgstr "" 287 300 288 #: stats-widget.php:19 2301 #: stats-widget.php:199 289 302 msgid "Show Link To Full Stats?" 290 303 msgstr "" 291 304 292 #: stats-widget.php: 198305 #: stats-widget.php:205 293 306 msgid "No" 294 307 msgstr "" … … 302 315 msgstr "" 303 316 304 #: stats.php:1 66317 #: stats.php:142 305 318 #, php-format 306 319 msgid "View post %s" 307 320 msgstr "" 308 321 309 #: stats.php:1 69310 #: stats.php:1 98311 #: stats.php:2 34312 #: stats.php:2 70313 #: stats.php: 303322 #: stats.php:145 323 #: stats.php:174 324 #: stats.php:210 325 #: stats.php:246 326 #: stats.php:279 314 327 msgid "N/A" 315 328 msgstr "" 316 329 317 #: stats.php:1 95318 #: stats.php:2 24319 #: stats.php:2 30330 #: stats.php:171 331 #: stats.php:200 332 #: stats.php:206 320 333 #, php-format 321 334 msgid "View comments in post %s" 322 335 msgstr "" 323 336 324 #: stats.php:2 24325 #: stats.php:2 30337 #: stats.php:200 338 #: stats.php:206 326 339 msgid "comments" 327 340 msgstr "" 328 341 329 #: stats.php:2 64330 #: stats.php:2 66342 #: stats.php:240 343 #: stats.php:242 331 344 #, php-format 332 345 msgid "View posts posted by %s" 333 346 msgstr "" 334 347 348 #: stats.php:272 349 #, php-format 350 msgid "View all comments posted by %s" 351 msgstr "" 352 335 353 #: stats.php:296 336 #, php-format337 msgid "View all comments posted by %s"338 msgstr ""339 340 #: stats.php:320341 354 msgid "No categories" 342 355 msgstr "" 343 356 357 #: stats.php:333 358 #, php-format 359 msgid "%s topics" 360 msgstr "" 361 362 #: stats.php:408 363 msgid "authors to this blog." 364 msgstr "" 365 366 #: stats.php:409 367 msgid "posts were posted." 368 msgstr "" 369 370 #: stats.php:410 371 msgid "pages were created." 372 msgstr "" 373 374 #: stats.php:411 375 msgid "tags were created." 376 msgstr "" 377 378 #: stats.php:412 379 msgid "comments were posted." 380 msgstr "" 381 382 #: stats.php:413 383 msgid "different nicknames were represented in the comments." 384 msgstr "" 385 344 386 #: stats.php:414 345 msgid " authors to this blog."387 msgid "links were added." 346 388 msgstr "" 347 389 348 390 #: stats.php:415 349 msgid "post s were posted."391 msgid "post categories were needed." 350 392 msgstr "" 351 393 352 394 #: stats.php:416 353 msgid "pages were created." 354 msgstr "" 355 356 #: stats.php:417 357 msgid "comments were posted." 395 msgid "link categories were needed." 358 396 msgstr "" 359 397 360 398 #: stats.php:418 361 msgid "different nicknames were represented in the comments."362 msgstr ""363 364 #: stats.php:419365 msgid "links were added."366 msgstr ""367 368 #: stats.php:420369 msgid "post categories were needed."370 msgstr ""371 372 #: stats.php:421373 msgid "link categories were needed."374 msgstr ""375 376 #: stats.php:423377 399 msgid "spam blocked." 378 400 msgstr "" 379 401 380 #: stats.php:4 31402 #: stats.php:426 381 403 msgid "Plugins Stats" 382 404 msgstr "" 383 405 384 #: stats.php:4 41406 #: stats.php:436 385 407 msgid "Recent Posts" 386 408 msgstr "" 387 409 388 #: stats.php:44 9410 #: stats.php:444 389 411 msgid "Recent Comments" 390 412 msgstr "" 391 413 392 #: stats.php:4 63414 #: stats.php:458 393 415 msgid "Most Commented Post" 394 416 msgstr "" 395 417 396 #: stats.php:54 6418 #: stats.php:548 397 419 msgid "Comments Posted By" 398 420 msgstr "" 399 421 400 #: stats.php:54 7422 #: stats.php:549 401 423 #, php-format 402 424 msgid "Displaying <strong>%s</strong> To <strong>%s</strong> Of <strong>%s</strong> Comments" 403 425 msgstr "" 404 426 405 #: stats.php:555406 427 #: stats.php:557 428 #: stats.php:559 407 429 #, php-format 408 430 msgid "%s @ %s" 409 431 msgstr "" 410 432 411 #: stats.php:56 4412 #: stats.php:57 0433 #: stats.php:566 434 #: stats.php:572 413 435 msgid "Posted On" 414 436 msgstr "" 415 437 416 #: stats.php:56 4438 #: stats.php:566 417 439 msgid "Protected" 418 440 msgstr "" 419 441 420 #: stats.php:56 5442 #: stats.php:567 421 443 msgid "Comments Protected" 422 444 msgstr "" 423 445 424 #: stats.php:57 2446 #: stats.php:574 425 447 #, php-format 426 448 msgid "View the comment posted by %s" 427 449 msgstr "" 428 450 429 #: stats.php:57 2451 #: stats.php:574 430 452 msgid "Posted By" 431 453 msgstr "" 432 454 433 #: stats.php:57 2455 #: stats.php:574 434 456 msgid "On" 435 457 msgstr "" 436 458 437 #: stats.php:57 7459 #: stats.php:579 438 460 msgid "has not made any comments yet." 439 461 msgstr "" 440 462 441 #: stats.php:58 6463 #: stats.php:588 442 464 msgid "Previous Page" 443 465 msgstr "" 444 466 445 #: stats.php:59 4467 #: stats.php:596 446 468 msgid "Next Page" 447 469 msgstr "" 448 470 449 #: stats.php:60 3471 #: stats.php:605 450 472 #, php-format 451 473 msgid "Pages (%s)" 452 474 msgstr "" 453 475 454 #: stats.php:60 5476 #: stats.php:607 455 477 msgid "Go to First Page" 456 478 msgstr "" 457 479 458 #: stats.php:60 5480 #: stats.php:607 459 481 msgid "First" 460 482 msgstr "" 461 483 462 #: stats.php:6 08463 #: stats.php:62 0484 #: stats.php:610 485 #: stats.php:622 464 486 msgid "Go to Page" 465 487 msgstr "" 466 488 467 #: stats.php:61 5489 #: stats.php:617 468 490 msgid "Page" 469 491 msgstr "" 470 492 471 #: stats.php:62 3493 #: stats.php:625 472 494 msgid "Go to Last Page" 473 495 msgstr "" 474 496 475 #: stats.php:62 3497 #: stats.php:625 476 498 msgid "Last" 477 499 msgstr "" 478 500 479 #: stats.php:62 7501 #: stats.php:629 480 502 msgid "Back To Stats Page" 481 503 msgstr ""
