Changeset 36830
- Timestamp:
- 03/30/08 10:02:45 (3 months ago)
- Files:
-
- wp-stats/trunk/readme.html (modified) (4 diffs)
- wp-stats/trunk/stats-options.php (modified) (3 diffs)
- wp-stats/trunk/wp-stats-widget.php (modified) (2 diffs)
- wp-stats/trunk/wp-stats.mo (modified) (previous)
- wp-stats/trunk/wp-stats.php (modified) (2 diffs)
- wp-stats/trunk/wp-stats.pot (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-stats/trunk/readme.html
r22752 r36830 234 234 <p> 235 235 <strong>Download:</strong><br /> 236 <strong>»</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>»</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>»</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 /> 237 238 <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 /> 238 239 <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 /> … … 257 258 <strong>Support Forums:</strong><br /> 258 259 <strong>»</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>»</strong> 1st January 2008263 260 </p> 264 261 <p> … … 271 268 <script type="text/javascript"> 272 269 /* <![CDATA[*/ 273 document.write(' <strong> gamerz84@hotmail.com</strong>.');270 document.write(' <strong>lesterchan@gmail.com</strong>.'); 274 271 /* ]]> */ 275 272 </script> … … 282 279 <ul> 283 280 <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> 286 285 <li>NEW: Uses /wp-stats/ Folder Instead Of /stats/</li> 287 286 <li>NEW: Uses wp-stats.php Instead Of stats.php</li> wp-stats/trunk/stats-options.php
r22752 r36830 3 3 +----------------------------------------------------------------+ 4 4 | | 5 | WordPress 2. 1Plugin: WP-Stats 2.30 |6 | Copyright (c) 200 7Lester "GaMerZ" Chan |5 | WordPress 2.5 Plugin: WP-Stats 2.30 | 6 | Copyright (c) 2008 Lester "GaMerZ" Chan | 7 7 | | 8 8 | File Written By: | … … 108 108 <div class="wrap"> 109 109 <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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> 110 172 <p class="submit"> 111 <input type="submit" name="Submit" class="button" value="<?php _e('Update Options »', '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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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']); ?> /> <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 »', 'wp-stats'); ?>" /> 173 <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-stats'); ?>" /> 180 174 </p> 181 175 </div> 182 176 </form> 177 <p> </p> 183 178 184 179 <!-- Uninstall WP-Stats --> … … 196 191 <strong><?php _e('The following WordPress Options will be DELETED:', 'wp-stats'); ?></strong><br /> 197 192 </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> 202 199 <tr> 203 <td valign="top" style="background-color: #eee;">200 <td valign="top"> 204 201 <ol> 205 202 <?php wp-stats/trunk/wp-stats-widget.php
r22752 r36830 10 10 11 11 12 /* Copyright 200 6 Lester Chan (email : gamerz84@hotmail.com)12 /* Copyright 2008 Lester Chan (email : lesterchan@gmail.com) 13 13 14 14 This program is free software; you can redistribute it and/or modify … … 87 87 } 88 88 // Total Spam 89 if($stats_total_options['spam'] == 1 ) {89 if($stats_total_options['spam'] == 1 && function_exists('akismet_spam_count')) { 90 90 echo '<li><strong>'.number_format(akismet_spam_count()).'</strong> '.__('Spam Blocked', 'wp-stats').'</li>'."\n"; 91 91 } wp-stats/trunk/wp-stats.php
r34359 r36830 11 11 12 12 /* 13 Copyright 200 7 Lester Chan (email : gamerz84@hotmail.com)13 Copyright 2008 Lester Chan (email : lesterchan@gmail.com) 14 14 15 15 This program is free software; you can redistribute it and/or modify … … 358 358 359 359 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 361 add_shortcode('page_stats', 'stats_page_shortcode'); 362 function stats_page_shortcode($atts) { 363 return stats_page(); 365 364 } 366 365 wp-stats/trunk/wp-stats.pot
r34359 r36830 3 3 "Project-Id-Version: WP-Stats 2.30\n" 4 4 "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" 6 6 "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" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" … … 16 16 17 17 #: stats-options.php:45 18 #: stats-options.php:11 718 #: stats-options.php:112 19 19 msgid "Stats URL" 20 20 msgstr "" 21 21 22 22 #: stats-options.php:46 23 #: stats-options.php:1 2323 #: stats-options.php:118 24 24 msgid "Stats Most Limit" 25 25 msgstr "" … … 38 38 39 39 #: stats-options.php:63 40 #: stats-options.php:21 740 #: stats-options.php:214 41 41 msgid "UNINSTALL WP-Stats" 42 42 msgstr "" … … 53 53 54 54 #: stats-options.php:97 55 #: stats-options.php:18 755 #: stats-options.php:182 56 56 msgid "Uninstall WP-Stats" 57 57 msgstr "" … … 63 63 64 64 #: stats-options.php:109 65 msgid "Stats Options" 66 msgstr "" 67 65 68 #: stats-options.php:114 66 msgid "Stats Options"67 msgstr ""68 69 #: stats-options.php:11170 #: stats-options.php:17971 msgid "Update Options »"72 msgstr ""73 74 #: stats-options.php:11975 69 msgid "URL To Stats Page.<br />Example: http://www.yoursite.com/blogs/stats/<br />Example: http://www.yoursite.com/blogs/?page_id=2" 76 70 msgstr "" 77 71 78 #: stats-options.php:12 572 #: stats-options.php:120 79 73 msgid "Top X Stats, where X is the most limit." 80 74 msgstr "" 81 75 82 #: stats-options.php:12 976 #: stats-options.php:124 83 77 msgid "Type Of Stats To Display" 84 78 msgstr "" 85 79 86 #: stats-options.php:1 3187 #: wp-stats.php: 40080 #: stats-options.php:126 81 #: wp-stats.php:399 88 82 msgid "General Stats" 89 83 msgstr "" 90 84 85 #: stats-options.php:132 86 msgid "Plugin Stats" 87 msgstr "" 88 91 89 #: 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 97 91 #, php-format 98 92 msgid "Top %s Recent Stats" 99 93 msgstr "" 100 94 101 #: stats-options.php:1 4395 #: stats-options.php:138 102 96 msgid "Most Recent Posts" 103 97 msgstr "" 104 98 99 #: stats-options.php:139 100 msgid "Most Recent Comments" 101 msgstr "" 102 105 103 #: 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 111 105 #, php-format 112 106 msgid "Top %s Most/Highest Stats" 113 107 msgstr "" 114 108 115 #: stats-options.php:1 50109 #: stats-options.php:145 116 110 #: wp-stats-widget.php:192 117 111 msgid "Most Commented Posts" 118 112 msgstr "" 119 113 120 #: stats-options.php:15 5121 #: wp-stats.php:46 3114 #: stats-options.php:150 115 #: wp-stats.php:462 122 116 msgid "Authors Stats" 123 117 msgstr "" 124 118 119 #: stats-options.php:151 120 #: wp-stats-widget.php:54 121 #: wp-stats.php:466 122 msgid "Authors" 123 msgstr "" 124 125 125 #: 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 133 127 msgid "Comments' Members Stats" 134 128 msgstr "" 135 129 130 #: stats-options.php:157 131 #: wp-stats.php:480 132 msgid "Comment Members" 133 msgstr "" 134 136 135 #: 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 143 137 msgid "Misc Stats" 144 138 msgstr "" 145 139 146 #: stats-options.php:16 8140 #: stats-options.php:163 147 141 #: wp-stats-widget.php:82 148 #: wp-stats.php:49 5142 #: wp-stats.php:494 149 143 msgid "Post Categories" 150 144 msgstr "" 151 145 152 #: stats-options.php:16 9146 #: stats-options.php:164 153 147 #: wp-stats-widget.php:86 154 #: wp-stats.php:50 3148 #: wp-stats.php:502 155 149 msgid "Link Categories" 156 150 msgstr "" 157 151 158 #: stats-options.php:1 70159 #: wp-stats.php:5 10152 #: stats-options.php:165 153 #: wp-stats.php:509 160 154 msgid "Tags List" 161 155 msgstr "" 162 156 163 #: stats-options.php:189 157 #: stats-options.php:173 158 msgid "Save Changes" 159 msgstr "" 160 161 #: stats-options.php:184 164 162 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." 165 163 msgstr "" 166 164 167 #: stats-options.php:1 92165 #: stats-options.php:187 168 166 msgid "WARNING:" 169 167 msgstr "" 170 168 171 #: stats-options.php:1 93169 #: stats-options.php:188 172 170 msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to back up all the data first." 173 171 msgstr "" 174 172 173 #: stats-options.php:191 174 msgid "The following WordPress Options will be DELETED:" 175 msgstr "" 176 175 177 #: stats-options.php:196 176 msgid "The following WordPress Options will be DELETED:"177 msgstr ""178 179 #: stats-options.php:200180 178 msgid "WordPress Options" 181 179 msgstr "" 182 180 183 #: stats-options.php:21 6181 #: stats-options.php:213 184 182 #: wp-stats-widget.php:203 185 183 msgid "Yes" 186 184 msgstr "" 187 185 188 #: stats-options.php:21 7186 #: stats-options.php:214 189 187 msgid "" 190 188 "You Are About To Uninstall WP-Stats From WordPress.\\n" … … 195 193 196 194 #: wp-stats-widget.php:49 197 #: wp-stats.php:40 1195 #: wp-stats.php:400 198 196 msgid "Total Stats" 199 197 msgstr "" … … 356 354 msgstr "" 357 355 356 #: wp-stats.php:402 357 msgid "authors to this blog." 358 msgstr "" 359 358 360 #: wp-stats.php:403 359 msgid " authors to this blog."361 msgid "posts were posted." 360 362 msgstr "" 361 363 362 364 #: wp-stats.php:404 363 msgid "p osts were posted."365 msgid "pages were created." 364 366 msgstr "" 365 367 366 368 #: wp-stats.php:405 367 msgid " pages were created."369 msgid "tags were created." 368 370 msgstr "" 369 371 370 372 #: wp-stats.php:406 371 msgid " tags were created."373 msgid "comments were posted." 372 374 msgstr "" 373 375 374 376 #: wp-stats.php:407 375 msgid " comments were posted."377 msgid "different nicknames were represented in the comments." 376 378 msgstr "" 377 379 378 380 #: wp-stats.php:408 379 msgid " different nicknames were represented in the comments."381 msgid "links were added." 380 382 msgstr "" 381 383 382 384 #: wp-stats.php:409 383 msgid " links were added."385 msgid "post categories were needed." 384 386 msgstr "" 385 387 386 388 #: wp-stats.php:410 387 msgid "post categories were needed."388 msgstr ""389 390 #: wp-stats.php:411391 389 msgid "link categories were needed." 392 390 msgstr "" 393 391 394 #: wp-stats.php:41 3392 #: wp-stats.php:412 395 393 msgid "spam blocked." 396 394 msgstr "" 397 395 398 #: wp-stats.php:42 1396 #: wp-stats.php:420 399 397 msgid "Plugins Stats" 400 398 msgstr "" 401 399 402 #: wp-stats.php:43 1400 #: wp-stats.php:430 403 401 msgid "Recent Posts" 404 402 msgstr "" 405 403 406 #: wp-stats.php:43 9404 #: wp-stats.php:438 407 405 msgid "Recent Comments" 408 406 msgstr "" 409 407 410 #: wp-stats.php:45 3408 #: wp-stats.php:452 411 409 msgid "Most Commented Post" 412 410 msgstr "" 413 411 412 #: wp-stats.php:542 413 msgid "Comments Posted By" 414 msgstr "" 415 414 416 #: wp-stats.php:543 415 msgid "Comments Posted By"416 msgstr ""417 418 #: wp-stats.php:544419 417 #, php-format 420 418 msgid "Displaying <strong>%s</strong> To <strong>%s</strong> Of <strong>%s</strong> Comments" 421 419 msgstr "" 422 420 423 #: wp-stats.php:55 2424 #: wp-stats.php:55 4421 #: wp-stats.php:551 422 #: wp-stats.php:553 425 423 #, php-format 426 424 msgid "%s @ %s" 427 425 msgstr "" 428 426 427 #: wp-stats.php:560 428 #: wp-stats.php:566 429 msgid "Posted On" 430 msgstr "" 431 432 #: wp-stats.php:560 433 msgid "Protected" 434 msgstr "" 435 429 436 #: wp-stats.php:561 430 #: wp-stats.php:567431 msgid "Posted On"432 msgstr ""433 434 #: wp-stats.php:561435 msgid "Protected"436 msgstr ""437 438 #: wp-stats.php:562439 437 msgid "Comments Protected" 440 438 msgstr "" 441 439 442 #: wp-stats.php:56 9440 #: wp-stats.php:568 443 441 #, php-format 444 442 msgid "View the comment posted by %s" 445 443 msgstr "" 446 444 447 #: wp-stats.php:56 9445 #: wp-stats.php:568 448 446 msgid "Posted By" 449 447 msgstr "" 450 448 451 #: wp-stats.php:56 9449 #: wp-stats.php:568 452 450 msgid "On" 453 451 msgstr "" 454 452 455 #: wp-stats.php:57 4453 #: wp-stats.php:573 456 454 msgid "has not made any comments yet." 457 455 msgstr "" 458 456 459 #: wp-stats.php:58 3457 #: wp-stats.php:582 460 458 msgid "Previous Page" 461 459 msgstr "" 462 460 463 #: wp-stats.php:59 1461 #: wp-stats.php:590 464 462 msgid "Next Page" 465 463 msgstr "" 466 464 467 #: wp-stats.php: 600465 #: wp-stats.php:599 468 466 #, php-format 469 467 msgid "Pages (%s)" 470 468 msgstr "" 471 469 472 #: wp-stats.php:60 2470 #: wp-stats.php:601 473 471 msgid "Go to First Page" 474 472 msgstr "" 475 473 476 #: wp-stats.php:60 2474 #: wp-stats.php:601 477 475 msgid "First" 478 476 msgstr "" 479 477 480 #: wp-stats.php:60 5481 #: wp-stats.php:61 7478 #: wp-stats.php:604 479 #: wp-stats.php:616 482 480 msgid "Go to Page" 483 481 msgstr "" 484 482 485 #: wp-stats.php:61 2483 #: wp-stats.php:611 486 484 msgid "Page" 487 485 msgstr "" 488 486 489 #: wp-stats.php:6 20487 #: wp-stats.php:619 490 488 msgid "Go to Last Page" 491 489 msgstr "" 492 490 493 #: wp-stats.php:6 20491 #: wp-stats.php:619 494 492 msgid "Last" 495 493 msgstr "" 496 494 497 #: wp-stats.php:62 4495 #: wp-stats.php:623 498 496 msgid "Back To Stats Page" 499 497 msgstr ""
