Count per Day - Version 3.0

Version Description

  • New: use now default WordPress database functions to be compatible to e.g. multi-db plugins
  • New: backup your counter data
  • New: collect entries of counter table per month and per post to reduce the database and speed up the statistics
  • New: functions and shortcodes [CPD_DAY_MOST_READS] [CPD_DAY_MOST_USERS] to shows days with most reads/visitors
  • New: option to cut referrer on "?" to not store query strings
  • New: parameter '$postsonly' for 'getMostVisitedPosts' function to list single posts and pages only
  • New: flags for Moldavia and Nepal
  • New language: Norwegian, thanks to Stein Ivar Johnsen and Tore Johnny Brtveit
  • New language: Azerbaijani, thanks to Bohdan Zograf
  • New language: Japanese, thanks to Juno Hayami
  • Bugfix: visitors per month list
  • Change: some function parameters
  • Change: little memory optimizing
  • Change: visitors currently online and notes will now managed per option, without seperate tables in database
  • Change: design updated
  • Change: old bar charts deleted
Download this release

Release Info

Developer Tom Braider
Plugin Icon 128x128 Count per Day
Version 3.0
Comparing to
See all releases

Code changes from version 2.17 to 3.0

Files changed (60) hide show
  1. ajax.php +3 -3
  2. counter-core.php +1233 -0
  3. counter-options.php +640 -371
  4. counter.css +174 -137
  5. counter.php +472 -1528
  6. geoip/GeoIP.dat +0 -0
  7. geoip/geoip.php +26 -41
  8. img/cpd_calendar.png +0 -0
  9. img/cpd_flags.png +0 -0
  10. img/cpd_pen.png +0 -0
  11. img/cpd_sprites.png +0 -0
  12. js/jquery.flot.min.js +6 -1
  13. locale/cpd-az_AZ.mo +0 -0
  14. locale/cpd-az_AZ.po +972 -0
  15. locale/cpd-be_BY.mo +0 -0
  16. locale/cpd-be_BY.po +784 -0
  17. locale/cpd-bg_BG.mo +0 -0
  18. locale/cpd-bg_BG.po +398 -211
  19. locale/cpd-da_DK.mo +0 -0
  20. locale/cpd-da_DK.po +414 -226
  21. locale/cpd-de_DE.mo +0 -0
  22. locale/cpd-de_DE.po +389 -217
  23. locale/cpd-el.mo +0 -0
  24. locale/cpd-el.po +398 -211
  25. locale/cpd-es_ES.mo +0 -0
  26. locale/cpd-es_ES.po +398 -211
  27. locale/cpd-fr_FR.mo +0 -0
  28. locale/cpd-fr_FR.po +399 -212
  29. locale/cpd-it_IT.mo +0 -0
  30. locale/cpd-it_IT.po +399 -212
  31. locale/cpd-ja.mo +0 -0
  32. locale/cpd-ja.po +972 -0
  33. locale/cpd-lt_LT.mo +0 -0
  34. locale/cpd-lt_LT.po +784 -0
  35. locale/cpd-nb_NO.mo +0 -0
  36. locale/cpd-nb_NO.po +972 -0
  37. locale/cpd-nl_NL.mo +0 -0
  38. locale/cpd-nl_NL.po +411 -224
  39. locale/cpd-pl_PL.mo +0 -0
  40. locale/cpd-pl_PL.po +398 -211
  41. locale/cpd-pt_BR.mo +0 -0
  42. locale/cpd-pt_BR.po +430 -244
  43. locale/cpd-pt_PT.mo +0 -0
  44. locale/cpd-pt_PT.po +971 -0
  45. locale/cpd-ru_RU.mo +0 -0
  46. locale/cpd-ru_RU.po +402 -214
  47. locale/cpd-sv_SE.mo +0 -0
  48. locale/cpd-sv_SE.po +538 -350
  49. locale/cpd-tr_TR.mo +0 -0
  50. locale/cpd-tr_TR.po +401 -214
  51. locale/cpd-ua_UA.mo +0 -0
  52. locale/cpd-ua_UA.po +972 -0
  53. map/ammap.swf +0 -0
  54. map/data.xml.php +26 -39
  55. map/map.php +1 -1
  56. map/settings.xml.php +3 -0
  57. massbots.php +29 -26
  58. notes.php +22 -26
  59. readme.txt +118 -71
  60. userperspan.php +18 -18
ajax.php CHANGED
@@ -2,15 +2,15 @@
2
  if ( $_GET['f'] == 'count' )
3
  {
4
  if (!session_id()) session_start();
5
- require_once($_SESSION['cpd_wp'].'wp-load.php');
 
6
 
7
- // $cpd_funcs = CountPerDay_Widget::getWidgetFuncs();
8
  $cpd_funcs = array ( 'show',
9
  'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
10
  'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
11
  'getUserPerDay', 'getUserOnline', 'getFirstCount' );
12
 
13
- $page = intval($_GET['page']);
14
  if ( is_numeric($page) )
15
  {
16
  $count_per_day->count( '', $page );
2
  if ( $_GET['f'] == 'count' )
3
  {
4
  if (!session_id()) session_start();
5
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../';
6
+ require_once($cpd_wp.'wp-load.php');
7
 
 
8
  $cpd_funcs = array ( 'show',
9
  'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
10
  'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
11
  'getUserPerDay', 'getUserOnline', 'getFirstCount' );
12
 
13
+ $page = (int) $_GET['page'];
14
  if ( is_numeric($page) )
15
  {
16
  $count_per_day->count( '', $page );
counter-core.php ADDED
@@ -0,0 +1,1233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Filename: counter-core.php
4
+ * Count Per Day - core functions
5
+ */
6
+
7
+ /**
8
+ * include GeoIP addon
9
+ */
10
+ if ( file_exists($cpd_path.'geoip/geoip.php') )
11
+ include_once($cpd_path.'geoip/geoip.php');
12
+ $cpd_geoip = ( class_exists('CpdGeoIp') && file_exists($cpd_path.'geoip/GeoIP.dat') ) ? 1 : 0;
13
+
14
+ /**
15
+ * helper functions
16
+ */
17
+ class CountPerDayCore
18
+ {
19
+
20
+ var $options; // options array
21
+ var $dir; // this plugin dir
22
+ var $dbcon; // database connection
23
+ var $queries = array(); // queries times for debug
24
+ var $page; // Post/Page-ID
25
+ var $installed = false; // CpD installed in subblogs?
26
+
27
+ /**
28
+ * Constructor
29
+ */
30
+ function init()
31
+ {
32
+ // variables
33
+ global $wpdb, $cpd_path, $cpd_dir_name;
34
+
35
+ define('CPD_METABOX', 'cpd_metaboxes');
36
+
37
+ // multisite table names
38
+ foreach ( array('cpd_counter','cpd_counter_useronline','cpd_notes') as $t )
39
+ {
40
+ $wpdb->tables[] = $t;
41
+ $wpdb->$t = $wpdb->get_blog_prefix().$t;
42
+ }
43
+
44
+ // use local time, not UTC
45
+ get_option('gmt_offset');
46
+
47
+ $this->options = get_option('count_per_day');
48
+
49
+ // manual debug mode
50
+ if (!empty($_GET['debug']) && WP_DEBUG )
51
+ $this->options['debug'] = 1;
52
+
53
+ $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
54
+ $this->queries[0] = 0;
55
+
56
+ // update online counter
57
+ add_action('wp', array(&$this,'deleteOnlineCounter'));
58
+
59
+ // settings link on plugin page
60
+ add_filter('plugin_action_links', array(&$this,'pluginActions'), 10, 2);
61
+
62
+ // auto counter
63
+ if ($this->options['autocount'])
64
+ add_action('wp', array(&$this,'count'));
65
+
66
+ // javascript to count cached posts
67
+ if ($this->options['ajax'])
68
+ {
69
+ wp_enqueue_script('jquery');
70
+ add_action('wp_footer', array(&$this,'addAjaxScript'));
71
+ }
72
+
73
+ if (is_admin())
74
+ {
75
+ // admin menu
76
+ add_action('admin_menu', array(&$this,'menu'));
77
+ // widget on dashboard page
78
+ add_action('wp_dashboard_setup', array(&$this,'dashboardWidgetSetup'));
79
+ // CpD dashboard page
80
+ add_filter('screen_layout_columns', array(&$this,'screenLayoutColumns'), 10, 2);
81
+ // CpD dashboard
82
+ add_action('admin_menu', array(&$this,'setAdminMenu'));
83
+ // column page list
84
+ add_action('manage_pages_custom_column', array(&$this,'cpdColumnContent'), 10, 2);
85
+ add_filter('manage_pages_columns', array(&$this,'cpdColumn'));
86
+ // column post list
87
+ add_action('manage_posts_custom_column', array(&$this,'cpdColumnContent'), 10, 2);
88
+ add_filter('manage_posts_columns', array(&$this,'cpdColumn'));
89
+ // adds javascript
90
+ add_action('admin_head', array(&$this,'addJS'));
91
+ // check version
92
+ add_action('admin_head', array(&$this,'checkInstalledVersion'));
93
+ }
94
+
95
+ // locale support
96
+ if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
97
+ load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
98
+
99
+ // adds stylesheet
100
+ if (is_admin())
101
+ add_action('admin_head', array(&$this,'addCss'));
102
+ if ( empty($this->options['no_front_css']) )
103
+ add_action('wp_head', array(&$this,'addCss'));
104
+
105
+ // widget setup
106
+ add_action('widgets_init', array( &$this,'register_widgets'));
107
+
108
+ // activation hook
109
+ register_activation_hook(ABSPATH.PLUGINDIR.'/count-per-day/counter.php', array(&$this,'checkVersion'));
110
+
111
+ // update hook
112
+ if (function_exists('register_update_hook'))
113
+ register_update_hook(ABSPATH.PLUGINDIR.'/count-per-day/counter.php', array(&$this,'checkVersion'));
114
+
115
+ // uninstall hook
116
+ register_uninstall_hook($cpd_path.'counter.php', 'count_per_day_uninstall');
117
+
118
+ // query times debug
119
+ if ($this->options['debug'])
120
+ {
121
+ add_action('wp_footer', array(&$this,'showQueries'));
122
+ add_action('admin_footer', array(&$this,'showQueries'));
123
+ }
124
+
125
+ // add shortcode support
126
+ $this->addShortcodes();
127
+
128
+ // thickbox in backend only
129
+ if (strpos($_SERVER['SCRIPT_NAME'], '/wp-admin/') !== false )
130
+ {
131
+ wp_enqueue_script('thickbox');
132
+ wp_enqueue_script('cpd_flot', $this->dir.'/js/jquery.flot.min.js', 'jQuery');
133
+ }
134
+
135
+ // Session
136
+ add_action('init', array(&$this,'startSession'), 1);
137
+ }
138
+
139
+ /**
140
+ * starts session to provide WP variables to "addons"
141
+ */
142
+ function startSession()
143
+ {
144
+ if (!session_id())
145
+ session_start();
146
+ $_SESSION['cpd_wp'] = ABSPATH;
147
+ }
148
+
149
+ /**
150
+ * get result from database
151
+ * @param string $kind kind of result
152
+ * @param string $sql sql query
153
+ * @param string $func name for debug info
154
+ */
155
+ function mysqlQuery( $kind = '', $sql, $func = '' )
156
+ {
157
+ global $wpdb;
158
+ $t = microtime(true);
159
+ $con = $wpdb->dbh;
160
+
161
+ $preparedSql = $wpdb->prepare($sql);
162
+
163
+ if ($kind == 'var')
164
+ $r = $wpdb->get_var( $preparedSql );
165
+ else if ($kind == 'count')
166
+ {
167
+ $sql = 'SELECT COUNT(*) FROM ('.trim($sql,';').') t';
168
+ $r = $wpdb->get_var( $wpdb->prepare($sql) );
169
+ }
170
+ else if ($kind = 'rows')
171
+ $r = $wpdb->get_results( $preparedSql );
172
+ else
173
+ $wpdb->query( $preparedSql );
174
+
175
+ if ( $this->options['debug'] )
176
+ {
177
+ $d = number_format( microtime(true) - $t , 5);
178
+ $m = sprintf("%.2f", memory_get_usage()/1048576).' MB';
179
+ $error = (!$r && mysql_errno($con)) ? '<b style="color:red">ERROR:</b> '.mysql_errno($con).' - '.mysql_error($con).' - ' : '';
180
+ $this->queries[] = $func." : <b>$d</b> - $m<br/><code>$preparedSql</code><br/>$error";
181
+ $this->queries[0] += $d;
182
+ }
183
+
184
+ return $r;
185
+ }
186
+
187
+ /**
188
+ * update DB if neccessary
189
+ */
190
+ function checkInstalledVersion()
191
+ {
192
+ global $cpd_version, $cpd_dir_name;
193
+ if ( $this->options['version'] != $cpd_version )
194
+ {
195
+ $this->checkVersion();
196
+ echo '<div class="updated"><p>'.sprintf(__('"Count per Day" updated to version %s.', 'cpd'), $cpd_version).'</p></div>';
197
+ }
198
+ }
199
+
200
+ /**
201
+ * anonymize IP address (last bit) if option is set
202
+ * @param $ip real IP address
203
+ * @return new IP address
204
+ */
205
+ function anonymize_ip( $ip )
206
+ {
207
+ if ( $this->options['debug'] )
208
+ $this->queries[] = 'called Function: <b style="color:blue">anonymize_ip</b> IP: <code>'.$ip.'</code>';
209
+ if ($this->options['anoip'])
210
+ {
211
+ $i = explode('.', $ip);
212
+ $i[3] += round( array_sum($i) / 4 + date_i18n('d') );
213
+ if ( $i[3] > 255 )
214
+ $i[3] -= 255;
215
+ return implode('.', $i);
216
+ }
217
+ else
218
+ return $ip;
219
+ }
220
+
221
+ /**
222
+ * gets PostID
223
+ */
224
+ function getPostID()
225
+ {
226
+ global $wp_query;
227
+ // find PostID
228
+ if ( !is_404() ) :
229
+ if ( $this->options['autocount'] && is_singular() )
230
+ {
231
+ // single page with autocount on
232
+ // make loop before regular loop is defined
233
+ if (have_posts()) :
234
+ while ( have_posts() && empty($p) ) :
235
+ the_post();
236
+ $p = get_the_ID();
237
+ endwhile;
238
+ endif;
239
+ rewind_posts();
240
+ }
241
+ else if (is_singular())
242
+ // single page with template tag show() or count()
243
+ $p = get_the_ID();
244
+ // "index" pages only with autocount
245
+ else if ( is_category() || is_tag() )
246
+ // category or tag => negativ ID in CpD DB
247
+ $p = 0 - $wp_query->get_queried_object_id();
248
+ else
249
+ // index, date, search and other "list" pages will count only once
250
+ $p = 0;
251
+ $this->page = $p;
252
+ if ( $this->options['debug'] )
253
+ $this->queries[] = 'called Function: <b style="color:blue">getPostID</b> page ID: <code>'.$p.'</code>';
254
+ return $p;
255
+ endif;
256
+
257
+ return false;
258
+ }
259
+
260
+ /**
261
+ * bot or human?
262
+ * @param string $client USER_AGENT
263
+ * @param array $bots strings to check
264
+ * @param string $ip IP adress
265
+ */
266
+ function isBot( $client = '', $bots = '', $ip = '' )
267
+ {
268
+ if (empty($client))
269
+ $client = $_SERVER['HTTP_USER_AGENT'];
270
+ if (empty($ip))
271
+ $ip = $_SERVER['REMOTE_ADDR'];
272
+
273
+ // empty/short client -> not normal browser -> bot
274
+ if ( empty($client) || strlen($client) < 20 )
275
+ return true;
276
+
277
+ if (empty($bots))
278
+ $bots = explode( "\n", $this->options['bots'] );
279
+
280
+ $isBot = false;
281
+ foreach ( $bots as $bot )
282
+ {
283
+ if (!$isBot) // loop until first bot was found only
284
+ {
285
+ $b = trim($bot);
286
+ if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false ) )
287
+ $isBot = true;
288
+ }
289
+ }
290
+ return $isBot;
291
+ }
292
+
293
+ /**
294
+ * checks installation in sub blogs
295
+ */
296
+ function checkVersion()
297
+ {
298
+ global $wpdb;
299
+ if ( function_exists('is_multisite') && is_multisite() )
300
+ {
301
+ // check if it is a network activation
302
+ if (!empty($_GET['networkwide']))
303
+ {
304
+ $old_blog = $wpdb->blogid;
305
+ $blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs"));
306
+ foreach ($blogids as $blog_id)
307
+ {
308
+ // create tables in all sub blogs
309
+ switch_to_blog($blog_id);
310
+ $this->createTables();
311
+ }
312
+ switch_to_blog($old_blog);
313
+ return;
314
+ }
315
+ }
316
+ // create tables in main blog
317
+ $this->createTables();
318
+ }
319
+
320
+ /**
321
+ * creates tables if not exists
322
+ */
323
+ function createTables()
324
+ {
325
+ global $wpdb;
326
+ // for plugin activation, creates $wpdb
327
+ require_once(ABSPATH.'wp-admin/includes/upgrade.php');
328
+
329
+ // variables for subblogs
330
+ $cpd_c = $wpdb->cpd_counter;
331
+ $cpd_o = $wpdb->cpd_counter_useronline;
332
+ $cpd_n = $wpdb->cpd_notes;
333
+
334
+ if (!empty ($wpdb->charset))
335
+ $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
336
+ if (!empty ($wpdb->collate))
337
+ $charset_collate .= " COLLATE $wpdb->collate";
338
+
339
+ // table "counter"
340
+ $sql = "CREATE TABLE IF NOT EXISTS `$cpd_c` (
341
+ `id` int(10) NOT NULL auto_increment,
342
+ `ip` int(10) unsigned NOT NULL,
343
+ `client` varchar(150) NOT NULL,
344
+ `date` date NOT NULL,
345
+ `page` mediumint(9) NOT NULL,
346
+ `referer` varchar(100) NOT NULL,
347
+ PRIMARY KEY (`id`),
348
+ KEY `idx_page` (`page`),
349
+ KEY `idx_dateip` (`date`,`ip`) )
350
+ $charset_collate;";
351
+ $this->mysqlQuery('', $sql, 'createTables '.__LINE__);
352
+
353
+ // update fields in old table
354
+ $field = $this->mysqlQuery('rows', "SHOW FIELDS FROM `$cpd_c` LIKE 'ip'", 'createTables '.__LINE__);
355
+ $row = $field[0];
356
+ if ( strpos(strtolower($row->Type), 'int') === false )
357
+ {
358
+ $queries = array (
359
+ "ALTER TABLE `$cpd_c` ADD `ip2` INT(10) UNSIGNED NOT NULL AFTER `ip`",
360
+ "UPDATE `$cpd_c` SET ip2 = INET_ATON(ip)",
361
+ "ALTER TABLE `$cpd_c` DROP `ip`",
362
+ "ALTER TABLE `$cpd_c` CHANGE `ip2` `ip` INT( 10 ) UNSIGNED NOT NULL",
363
+ "ALTER TABLE `$cpd_c` CHANGE `date` `date` date NOT NULL",
364
+ "ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL");
365
+ foreach ($queries as $sql)
366
+ $this->mysqlQuery('', $sql, 'update old fields '.__LINE__);
367
+ }
368
+
369
+ // make new keys
370
+ $keys = $this->mysqlQuery('rows', "SHOW KEYS FROM `$cpd_c`", 'make keys '.__LINE__);
371
+ $s = array();
372
+ foreach ($keys as $row)
373
+ if ( $row->Key_name != 'PRIMARY' )
374
+ $s[] = "DROP INDEX `$row->Key_name`";
375
+ $s = array_unique($s);
376
+
377
+ $sql = "ALTER TABLE `$cpd_c` ";
378
+ if (sizeof($s))
379
+ $sql .= implode(',', $s).', ';
380
+ $sql .= 'ADD KEY `idx_dateip` (`date`,`ip`), ADD KEY `idx_page` (`page`)';
381
+ $this->mysqlQuery('', $sql, 'make keys '.__LINE__);
382
+
383
+ // if GeoIP installed we need row "country"
384
+ if ( class_exists('CpdGeoIp') )
385
+ {
386
+ $this->mysqlQuery('', "SELECT country FROM `$cpd_c` LIMIT 1", 'check country '.__LINE__);
387
+ if ((int) mysql_errno() == 1054)
388
+ $this->mysqlQuery('', "ALTER TABLE `$cpd_c` ADD `country` CHAR(2) NOT NULL", 'make country '.__LINE__);
389
+ }
390
+
391
+ // referrer
392
+ $this->mysqlQuery('', "SELECT referer FROM `$cpd_c` LIMIT 1", 'check referer '.__LINE__);
393
+ if ((int) mysql_errno() == 1054)
394
+ $this->mysqlQuery('', "ALTER TABLE `$cpd_c` ADD `referer` VARCHAR(100) NOT NULL", 'make referer '.__LINE__);
395
+
396
+ // delete table "counter-online", since v3.0
397
+ $this->mysqlQuery('', "DROP TABLE IF EXISTS `$cpd_o`", 'table online '.__LINE__);
398
+
399
+ // delete table "notes", since v3.0
400
+ if (!get_option('count_per_day_notes'))
401
+ {
402
+ $table = $this->mysqlQuery('rows', "SHOW TABLES LIKE '$cpd_n'", 'table notes '.__LINE__);
403
+ if (!empty($table))
404
+ {
405
+ $ndb = $this->mysqlQuery('rows', "SELECT * FROM $cpd_n", 'table notes '.__LINE__);
406
+ $n = array();
407
+ foreach ($ndb as $note)
408
+ $n[] = array( $note->date, $note->note );
409
+ update_option('count_per_day_notes', $n);
410
+ }
411
+ }
412
+ $this->mysqlQuery('', "DROP TABLE IF EXISTS `$cpd_n`", 'table notes '.__LINE__);
413
+
414
+ // update options to array
415
+ $this->UpdateOptions();
416
+
417
+ // set directory mode
418
+ @chmod(ABSPATH.PLUGINDIR.'/count-per-day/geoip', 0777);
419
+ }
420
+
421
+ /**
422
+ * calls widget class
423
+ */
424
+ function register_widgets()
425
+ {
426
+ register_widget('CountPerDay_Widget');
427
+ }
428
+
429
+ /**
430
+ * shows debug infos
431
+ */
432
+ function showQueries()
433
+ {
434
+ global $wpdb, $cpd_path, $cpd_version;
435
+ echo '<div style="position:absolute;margin:10px;padding:10px;border:1px red solid">
436
+ <b>Count per Day - DEBUG: '.round($this->queries[0], 3).' s</b><ol>'."\n";
437
+ echo '<li>'
438
+ .'<b>Server:</b> '.$_SERVER['SERVER_SOFTWARE'].'<br/>'
439
+ .'<b>PHP:</b> '.phpversion().'<br/>'
440
+ .'<b>mySQL Server:</b> '.mysql_get_server_info($wpdb->dbh).'<br/>'
441
+ .'<b>mySQL Client:</b> '.mysql_get_client_info().'<br/>'
442
+ .'<b>WordPress:</b> '.get_bloginfo('version').'<br/>'
443
+ .'<b>Count per Day:</b> '.$cpd_version.'<br/>'
444
+ .'<b>Time for Count per Day:</b> '.date_i18n('Y-m-d H:i').'<br/>'
445
+ .'<b>URL:</b> '.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'].'<br/>'
446
+ .'<b>Referrer:</b> '.(isset($_SERVER['HTTP_REFERER']) ? htmlentities($_SERVER['HTTP_REFERER']) : '')
447
+ .'</li>';
448
+ echo "\n<li><b>POST:</b><br/>\n";
449
+ var_dump($_POST);
450
+ echo '</li>';
451
+ echo "\n<li><b>SESSION:</b><br/>\n";
452
+ var_dump($_SESSION);
453
+ echo '</li>';
454
+ echo "\n<li><b>Table:</b><br /><b>$wpdb->cpd_counter</b>:\n";
455
+ $res = $this->mysqlQuery('rows', "SHOW FIELDS FROM `$wpdb->cpd_counter`", 'showFields' );
456
+ foreach ($res as $c)
457
+ echo '<span style="color:blue">'.$c->Field.'</span> = '.$c->Type.' &nbsp; ';
458
+ echo "\n</li>";
459
+ echo "\n<li><b>Options:</b><br />\n";
460
+ foreach ( $this->options as $k=>$v )
461
+ if ( $k != 'bots') // hoster restrictions
462
+ echo "$k = $v<br />\n";
463
+ echo "</li>";
464
+ foreach($this->queries as $q)
465
+ if ($q != $this->queries[0])
466
+ echo "\n<li>$q</li>";
467
+ echo "</ol>\n";
468
+ ?>
469
+ <p>GeoIP:
470
+ d_ir=<?php echo substr(decoct(fileperms($cpd_path.'geoip/')), -3) ?>
471
+ f_ile=<?php echo (is_file($cpd_path.'geoip/GeoIP.dat')) ? substr(decoct(fileperms($cpd_path.'geoip/GeoIP.dat')), -3) : '-'; ?>
472
+ f_open=<?php echo (function_exists('fopen')) ? 'true' : 'false' ?>
473
+ g_zopen=<?php echo (function_exists('gzopen')) ? 'true' : 'false' ?>
474
+ a_llow_url_fopen=<?php echo (ini_get('allow_url_fopen')) ? 'true' : 'false' ?>
475
+ </p>
476
+ <?php
477
+ echo '</div>';
478
+ }
479
+
480
+ /**
481
+ * adds style sheet to admin header
482
+ */
483
+ function addCss()
484
+ {
485
+ global $text_direction;
486
+ echo "\n".'<link rel="stylesheet" href="'.$this->dir.'/counter.css" type="text/css" />'."\n";
487
+ if ( $text_direction == 'rtl' )
488
+ echo "\n".'<link rel="stylesheet" href="'.$this->dir.'/counter-rtl.css" type="text/css" />'."\n";
489
+ // thickbox style here because add_thickbox() breaks RTL in he_IL
490
+ if ( strpos($_SERVER['SCRIPT_NAME'], '/wp-admin/') !== false )
491
+ echo '<link rel="stylesheet" href="'.get_bloginfo('wpurl').'/wp-includes/js/thickbox/thickbox.css" type="text/css" />'."\n";
492
+ }
493
+
494
+ /**
495
+ * adds javascript to admin header
496
+ */
497
+ function addJS()
498
+ {
499
+ echo '<!--[if IE]><script type="text/javascript" src="'.$this->dir.'/js/excanvas.min.js"></script><![endif]-->'."\n";
500
+ }
501
+
502
+ /**
503
+ * adds ajax script to count cached posts
504
+ */
505
+ function addAjaxScript()
506
+ {
507
+ $this->getPostID();
508
+ echo <<< JSEND
509
+ <script type="text/javascript">
510
+ // Count per Day
511
+ //<![CDATA[
512
+ jQuery(document).ready( function($)
513
+ {
514
+ jQuery.get('{$this->dir}/ajax.php?f=count&page={$this->page}', function(text)
515
+ {
516
+ var cpd_funcs = text.split('|');
517
+ for(var i = 0; i < cpd_funcs.length; i++)
518
+ {
519
+ var cpd_daten = cpd_funcs[i].split('===');
520
+ var cpd_fields = document.getElementById('cpd_number_' + cpd_daten[0].toLowerCase());
521
+ cpd_fields.innerHTML = cpd_daten[1];
522
+ }
523
+ });
524
+ } );
525
+ //]]>
526
+ </script>
527
+ JSEND;
528
+
529
+ // name not valide in span or div...
530
+ // var cpd_fields = document.getElementsByName('cpd_number_' + cpd_daten[0].toLowerCase());
531
+ // for(var x = 0; x < cpd_fields.length; x++)
532
+ // {
533
+ // cpd_fields[x].innerHTML = cpd_daten[1];
534
+ // }
535
+ }
536
+
537
+ /**
538
+ * deletes spam in table, if you add new bot pattern you can clean the db
539
+ */
540
+ function cleanDB()
541
+ {
542
+ global $wpdb;
543
+
544
+ // get trimed bot array
545
+ function trim_value(&$value) { $value = trim($value); }
546
+ $bots = explode( "\n", $this->options['bots'] );
547
+ array_walk($bots, 'trim_value');
548
+
549
+ $rows_before = $this->mysqlQuery('count', "SELECT COUNT(*) FROM $wpdb->cpd_counter", 'cleanDB '.__LINE__);
550
+
551
+ // delete by ip
552
+ foreach( $bots as $ip )
553
+ if ( ip2long($ip) !== false )
554
+ $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE INET_NTOA(ip) LIKE '".$ip."%%", 'clenaDB_ip'.__LINE__);
555
+
556
+ // delete by client
557
+ foreach ($bots as $bot)
558
+ $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE client LIKE '%%".$bot."%%'", 'cleanDB_client'.__LINE__);
559
+
560
+ // delete if a previously countered page was deleted
561
+ $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE page NOT IN ( SELECT id FROM $wpdb->posts) AND page > 0", 'cleanDB_delPosts'.__LINE__);
562
+
563
+ $rows_after = $this->mysqlQuery('count', "SELECT COUNT(*) FROM $wpdb->cpd_counter", 'cleanDB '.__LINE__);
564
+ return $rows_before - $rows_after;
565
+ }
566
+
567
+ /**
568
+ * adds menu entry to backend
569
+ * @param string $content WP-"Content"
570
+ */
571
+ function menu($content)
572
+ {
573
+ global $cpd_dir_name;
574
+ if (function_exists('add_options_page'))
575
+ {
576
+ $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="/" style="width:9px;height:12px;" /> Count per Day';
577
+ add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
578
+ }
579
+ }
580
+
581
+ /**
582
+ * adds an "settings" link to the plugins page
583
+ */
584
+ function pluginActions($links, $file)
585
+ {
586
+ global $cpd_dir_name;
587
+ if( $file == $cpd_dir_name.'/counter.php'
588
+ && strpos( $_SERVER['SCRIPT_NAME'], '/network/') === false ) // not on network plugin page
589
+ {
590
+ $link = '<a href="options-general.php?page='.$cpd_dir_name.'/counter-options.php">'.__('Settings').'</a>';
591
+ array_unshift( $links, $link );
592
+ }
593
+ return $links;
594
+ }
595
+
596
+ /**
597
+ * combines the options to one array, update from previous versions
598
+ */
599
+ function updateOptions()
600
+ {
601
+ global $cpd_version;
602
+
603
+ $o = get_option('count_per_day', array());
604
+ $this->options = array('version' => $cpd_version);
605
+ $odefault = array(
606
+ 'onlinetime' => 300,
607
+ 'user' => 0,
608
+ 'user_level' => 0,
609
+ 'autocount' => 1,
610
+ 'bots' => "bot\nspider\nsearch\ncrawler\nask.com\nvalidator\nsnoopy\nsuchen.de\nsuchbaer.de\nshelob\nsemager\nxenu\nsuch_de\nia_archiver\nMicrosoft URL Control\nnetluchs",
611
+ 'dashboard_posts' => 20,
612
+ 'dashboard_last_posts' => 20,
613
+ 'dashboard_last_days' => 7,
614
+ 'show_in_lists' => 1,
615
+ 'chart_days' => 60,
616
+ 'chart_height' => 100,
617
+ 'countries' => 20,
618
+ 'startdate' => '',
619
+ 'startcount' => '',
620
+ 'startreads' => '',
621
+ 'anoip' => 0,
622
+ 'massbotlimit' => 25,
623
+ 'clients' => 'Firefox, MSIE, Chrome, Safari, Opera',
624
+ 'ajax' => 0,
625
+ 'debug' => 0,
626
+ 'referers' => 1,
627
+ 'referers_cut' => 0,
628
+ 'localref' => 1,
629
+ 'dashboard_referers' => 20,
630
+ 'referers_last_days' => 7,
631
+ 'no_front_css' => 0,
632
+ 'whocansee' => 'publish_posts',
633
+ 'backup_part' => 10000
634
+ );
635
+ foreach ($odefault as $k => $v)
636
+ $this->options[$k] = (isset($o[$k])) ? $o[$k] : $v;
637
+ update_option('count_per_day', $this->options);
638
+ }
639
+
640
+ /**
641
+ * adds widget to dashboard page
642
+ */
643
+ function dashboardWidgetSetup()
644
+ {
645
+ wp_add_dashboard_widget( 'cpdDashboardWidget', 'Count per Day', array(&$this,'dashboardWidget') );
646
+ }
647
+
648
+ /**
649
+ * add counter column to page/post lists
650
+ */
651
+ function cpdColumn($defaults)
652
+ {
653
+ if ( $this->options['show_in_lists'] )
654
+ $defaults['cpd_reads'] = '<img src="'.$this->img('cpd_menu.gif').'" alt="'.__('Reads', 'cpd').'" title="'.__('Reads', 'cpd').'" style="width:9px;height:12px;" />';
655
+ return $defaults;
656
+ }
657
+
658
+ /**
659
+ * adds content to the counter column
660
+ */
661
+ function cpdColumnContent($column_name, $id = 0)
662
+ {
663
+ global $wpdb;
664
+ if( $column_name == 'cpd_reads' )
665
+ echo $this->mysqlQuery('count', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE page='$id'", 'cpdColumn_'.$id.'_'.__LINE__);
666
+ }
667
+
668
+ /**
669
+ * gets image recource with given name
670
+ */
671
+ function img( $r )
672
+ {
673
+ return trailingslashit( $this->dir ).'img/'.$r;
674
+ }
675
+
676
+ /**
677
+ * sets columns on dashboard page
678
+ */
679
+ function screenLayoutColumns($columns, $screen)
680
+ {
681
+ if ($screen == $this->pagehook)
682
+ $columns[$this->pagehook] = 4;
683
+ return $columns;
684
+ }
685
+
686
+ /**
687
+ * extends the admin menu
688
+ */
689
+ function setAdminMenu()
690
+ {
691
+ $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
692
+ $this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
693
+ add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
694
+ }
695
+
696
+ /**
697
+ * backlink to Plugin homepage
698
+ */
699
+ function cpdInfo()
700
+ {
701
+ global $cpd_version;
702
+ $t = '<span style="white-space:nowrap">'.date_i18n('Y-m-d H:i').'</span>';
703
+ echo '<p style="margin:0">Count per Day: <code>'.$cpd_version.'</code><br/>';
704
+ printf(__('Time for Count per Day: <code>%s</code>.', 'cpd'), $t);
705
+ echo '<br />'.__('Bug? Problem? Question? Hint? Praise?', 'cpd').' ';
706
+ printf(__('Write a comment on the <a href="%s">plugin page</a>.', 'cpd'), 'http://www.tomsdimension.de/wp-plugins/count-per-day');
707
+ echo '<br />'.__('License').': <a href="http://www.tomsdimension.de/postcards">Postcardware :)</a>';
708
+ echo '<br /><a href="'.$this->dir.'/readme.txt?KeepThis=true&amp;TB_iframe=true" title="Count per Day - Readme.txt" class="thickbox"><strong>Readme.txt</strong></a></p>';
709
+ }
710
+
711
+ /**
712
+ * function calls from metabox default parameters
713
+ */
714
+ function getMostVisitedPostsMeta() { $this->getMostVisitedPosts(); }
715
+ function getUserPerPostMeta() { $this->getUserPerPost(); }
716
+ function getVisitedPostsOnDayMeta() { $this->getVisitedPostsOnDay(0, 100); }
717
+ function dashboardChartMeta() { $this->dashboardChart(0, false, false); }
718
+ function dashboardChartVisitorsMeta() { $this->dashboardChartVisitors(0, false, false); }
719
+ function getCountriesMeta() { $this->getCountries(0, false); }
720
+ function getCountriesVisitorsMeta() { $this->getCountries(0, false, true); }
721
+ function getReferersMeta() { $this->getReferers(0, false, 0); }
722
+ function getUserOnlineMeta() { $this->getUserOnline(false, true); }
723
+ function getUserPerMonthMeta() { $this->getUserPerMonth(); }
724
+ function getReadsPerMonthMeta() { $this->getReadsPerMonth(); }
725
+
726
+ /**
727
+ * will be executed if wordpress core detects this page has to be rendered
728
+ */
729
+ function onLoadPage()
730
+ {
731
+ global $cpd_geoip;
732
+ // needed javascripts
733
+ wp_enqueue_script('common');
734
+ wp_enqueue_script('wp-lists');
735
+ wp_enqueue_script('postbox');
736
+
737
+ // add the metaboxes
738
+ add_meta_box('reads_at_all', '<span class="cpd_icon cpd_summary">&nbsp;</span> '.__('Total visitors', 'cpd'), array(&$this,'dashboardReadsAtAll'), $this->pagehook, 'cpdrow1', 'core');
739
+ add_meta_box('user_online', '<span class="cpd_icon cpd_online">&nbsp;</span> '.__('Visitors online', 'cpd'), array(&$this,'getUserOnlineMeta'), $this->pagehook, 'cpdrow1', 'default');
740
+ add_meta_box('user_per_month', '<span class="cpd_icon cpd_user">&nbsp;</span> '.__('Visitors per month', 'cpd'), array(&$this,'getUserPerMonthMeta'), $this->pagehook, 'cpdrow2', 'default');
741
+ add_meta_box('reads_per_month', '<span class="cpd_icon cpd_reads">&nbsp;</span> '.__('Reads per month', 'cpd'), array(&$this,'getReadsPerMonthMeta'), $this->pagehook, 'cpdrow3', 'default');
742
+ add_meta_box('reads_per_post', '<span class="cpd_icon cpd_post">&nbsp;</span> '.__('Visitors per post', 'cpd'), array(&$this,'getUserPerPostMeta'), $this->pagehook, 'cpdrow3', 'default');
743
+ add_meta_box('last_reads', '<span class="cpd_icon cpd_calendar">&nbsp;</span> '.__('Latest Counts', 'cpd'), array(&$this,'getMostVisitedPostsMeta'), $this->pagehook, 'cpdrow4', 'default');
744
+ add_meta_box('day_reads', '<span class="cpd_icon cpd_day">&nbsp;</span> '.__('Visitors per day', 'cpd'), array(&$this,'getVisitedPostsOnDayMeta'), $this->pagehook, 'cpdrow4', 'default');
745
+ add_meta_box('cpd_info', '<span class="cpd_icon cpd_help">&nbsp;</span> '.__('Plugin'), array(&$this,'cpdInfo'), $this->pagehook, 'cpdrow1', 'low');
746
+ if ($this->options['referers'])
747
+ {
748
+ add_meta_box('browsers', '<span class="cpd_icon cpd_computer">&nbsp;</span> '.__('Browsers', 'cpd'), array(&$this,'getClients'), $this->pagehook, 'cpdrow2', 'default');
749
+ add_meta_box('referers', '<span class="cpd_icon cpd_referrer">&nbsp;</span> '.__('Referrer', 'cpd'), array(&$this,'getReferersMeta'), $this->pagehook, 'cpdrow3', 'default');
750
+ }
751
+ if ($cpd_geoip)
752
+ {
753
+ add_meta_box('countries', '<span class="cpd_icon cpd_reads">&nbsp;</span> '.__('Reads per Country', 'cpd'), array(&$this,'getCountriesMeta'), $this->pagehook, 'cpdrow2', 'default');
754
+ add_meta_box('countries2', '<span class="cpd_icon cpd_user">&nbsp;</span> '.__('Visitors per Country', 'cpd'), array(&$this,'getCountriesVisitorsMeta'), $this->pagehook, 'cpdrow2', 'default');
755
+ }
756
+ }
757
+
758
+ /**
759
+ * creates dashboard page
760
+ */
761
+ function onShowPage()
762
+ {
763
+ global $screen_layout_columns, $count_per_day;
764
+ if ( empty($screen_layout_columns) )
765
+ $screen_layout_columns = 4;
766
+ $data = '';
767
+ ?>
768
+ <div id="cpd-metaboxes" class="wrap">
769
+ <h2><img src="<?php echo $this->img('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day - <?php _e('Statistics', 'cpd') ?></h2>
770
+ <?php
771
+ wp_nonce_field('cpd-metaboxes');
772
+ wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
773
+ wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
774
+ $css = 'style="width:'.round(98 / $screen_layout_columns, 1).'%;"';
775
+ $this->getFlotChart();
776
+ ?>
777
+ <div id="dashboard-widgets" class="metabox-holder cpd-dashboard">
778
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow1', $data); ?></div>
779
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow2', $data); ?></div>
780
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow3', $data); ?></div>
781
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow4', $data); ?></div>
782
+ <br class="clear"/>
783
+ </div>
784
+ </div>
785
+ <script type="text/javascript">
786
+ //<![CDATA[
787
+ jQuery(document).ready( function($) {
788
+ $('.if-js-closed').removeClass('if-js-closed').addClass('closed');
789
+ postboxes.add_postbox_toggles('<?php echo $this->pagehook; ?>');
790
+ });
791
+ //]]>
792
+ </script>
793
+ <?php
794
+ }
795
+
796
+ /**
797
+ * adds some shortcodes to use functions in frontend
798
+ */
799
+ function addShortcodes()
800
+ {
801
+ add_shortcode('CPD_READS_THIS', array(&$this,'shortShow'));
802
+ add_shortcode('CPD_READS_TOTAL', array(&$this,'shortReadsTotal'));
803
+ add_shortcode('CPD_READS_TODAY', array(&$this,'shortReadsToday'));
804
+ add_shortcode('CPD_READS_YESTERDAY', array(&$this,'shortReadsYesterday'));
805
+ add_shortcode('CPD_READS_LAST_WEEK', array(&$this,'shortReadsLastWeek'));
806
+ add_shortcode('CPD_READS_PER_MONTH', array(&$this,'shortReadsPerMonth'));
807
+ add_shortcode('CPD_READS_THIS_MONTH', array(&$this,'shortReadsThisMonth'));
808
+ add_shortcode('CPD_VISITORS_TOTAL', array(&$this,'shortUserAll'));
809
+ add_shortcode('CPD_VISITORS_ONLINE', array(&$this,'shortUserOnline'));
810
+ add_shortcode('CPD_VISITORS_TODAY', array(&$this,'shortUserToday'));
811
+ add_shortcode('CPD_VISITORS_YESTERDAY', array(&$this,'shortUserYesterday'));
812
+ add_shortcode('CPD_VISITORS_LAST_WEEK', array(&$this,'shortUserLastWeek'));
813
+ add_shortcode('CPD_VISITORS_THIS_MONTH', array(&$this,'shortUserThisMonth'));
814
+ add_shortcode('CPD_VISITORS_PER_DAY', array(&$this,'shortUserPerDay'));
815
+ add_shortcode('CPD_FIRST_COUNT', array(&$this,'shortFirstCount'));
816
+ add_shortcode('CPD_CLIENTS', array(&$this,'shortClients'));
817
+ add_shortcode('CPD_VISITORS_PER_MONTH', array(&$this,'shortUserPerMonth'));
818
+ add_shortcode('CPD_VISITORS_PER_POST', array(&$this,'shortUserPerPost'));
819
+ add_shortcode('CPD_COUNTRIES', array(&$this,'shortCountries'));
820
+ add_shortcode('CPD_MOST_VISITED_POSTS', array(&$this,'shortMostVisitedPosts'));
821
+ add_shortcode('CPD_REFERERS', array(&$this,'shortReferers'));
822
+ add_shortcode('CPD_POSTS_ON_DAY', array(&$this,'shortPostsOnDay'));
823
+ add_shortcode('CPD_MAP', array(&$this,'shortShowMap'));
824
+ add_shortcode('CPD_DAY_MOST_READS', array(&$this,'shortDayWithMostReads'));
825
+ add_shortcode('CPD_DAY_MOST_USERS', array(&$this,'shortDayWithMostUsers'));
826
+ }
827
+ function shortShow() { return $this->show('', '', false, false); }
828
+ function shortReadsTotal() { return $this->getReadsAll(true); }
829
+ function shortReadsToday() { return $this->getReadsToday(true); }
830
+ function shortReadsYesterday() { return $this->getReadsYesterday(true); }
831
+ function shortReadsThisMonth() { return $this->getReadsThisMonth(true); }
832
+ function shortReadsLastWeek() { return $this->getReadsLastWeek(true); }
833
+ function shortReadsPerMonth() { return $this->getReadsPerMonth(true, true); }
834
+ function shortUserAll() { return $this->getUserAll(true); }
835
+ function shortUserOnline() { return $this->getUserOnline(false, false, true); }
836
+ function shortUserToday() { return $this->getUserToday(true); }
837
+ function shortUserYesterday() { return $this->getUserYesterday(true); }
838
+ function shortUserLastWeek() { return $this->getUserLastWeek(true); }
839
+ function shortUserThisMonth() { return $this->getUserThisMonth(true); }
840
+ function shortUserPerDay() { return $this->getUserPerDay($this->options['dashboard_last_days'], true); }
841
+ function shortFirstCount() { return $this->getFirstCount(true); }
842
+ function shortClients() { return $this->getClients(true); }
843
+ function shortUserPerMonth() { return $this->getUserPerMonth(true, true); }
844
+ function shortUserPerPost() { return $this->getUserPerPost(0, true, true); }
845
+ function shortCountries() { return $this->getCountries(0, true, false, true); }
846
+ function shortMostVisitedPosts(){ return $this->getMostVisitedPosts(0, 0, true, false, true); }
847
+ function shortReferers() { return $this->getReferers(0, true, 0); }
848
+ function shortDayWithMostReads(){ return $this->getDayWithMostReads(true, true); }
849
+ function shortDayWithMostUsers(){ return $this->getDayWithMostUsers(true, true); }
850
+ function shortPostsOnDay( $atts )
851
+ {
852
+ extract( shortcode_atts( array(
853
+ 'date' => 0,
854
+ 'limit' => 0
855
+ ), $atts) );
856
+ return $this->getVisitedPostsOnDay( $date, $limit, false, false, true, true );
857
+ }
858
+ function shortShowMap( $atts )
859
+ {
860
+ extract( shortcode_atts( array(
861
+ 'width' => 500,
862
+ 'height' => 340,
863
+ 'what' => 'reads',
864
+ 'min' => 0
865
+ ), $atts) );
866
+ return $this->getMap( $what, $width, $height, $min );
867
+ }
868
+
869
+ /**
870
+ * adds charts to lists on dashboard
871
+ * @param string $id HTML-id of the DIV
872
+ * @param array $data data
873
+ * @param string $html given list code to add the chart
874
+ */
875
+ function includeChartJS( $id, $data, $html )
876
+ {
877
+ $d = array_reverse($data);
878
+ $d = '[['.implode(',', $d).']]';
879
+ $code = '<div id="'.$id.'" class="cpd-list-chart" style="width:100%;height:50px"></div>
880
+ <script type="text/javascript">
881
+ //<![CDATA[
882
+ if (jQuery("#'.$id.'").width() > 0)
883
+ jQuery(function(){jQuery.plot(jQuery("#'.$id.'"),'.$d.',{series:{lines:{fill:true,lineWidth:1}},colors:["red"],grid:{show:false}});});
884
+ //]]>
885
+ </script>
886
+ '.$html;
887
+ return $code;
888
+ }
889
+
890
+ /**
891
+ * get mass bots
892
+ */
893
+ function getMassBots( $limit )
894
+ {
895
+ global $wpdb;
896
+ $sql = $wpdb->prepare("
897
+ SELECT t.id, t.ip AS longip, INET_NTOA(t.ip) AS ip, t.date, t.posts, c.client
898
+ FROM ( SELECT id, ip, date, count(*) posts
899
+ FROM $wpdb->cpd_counter
900
+ GROUP BY ip, date
901
+ ORDER BY posts DESC ) AS t
902
+ LEFT JOIN $wpdb->cpd_counter c
903
+ ON c.id = t.id
904
+ WHERE posts > %d", (int) $limit );
905
+ return $this->mysqlQuery('rows', $sql, 'getMassBots '.__LINE__);
906
+ }
907
+
908
+ /**
909
+ * backup the counter table to wp-content dir, gz-compressed if possible
910
+ */
911
+ function backup()
912
+ {
913
+ global $wpdb;
914
+
915
+ $t = $wpdb->cpd_counter;
916
+
917
+ $name = '/'.$t.'_backup_'.date_i18n('Y-m-d_H-i-s').'.sql';
918
+
919
+ $gz = ( function_exists('gzopen') && is_writable(WP_CONTENT_DIR) ) ? 1 : 0;
920
+ if ($gz) $name .= '.gz';
921
+
922
+ // wp-content or tempdir?
923
+ $path = (is_writable(WP_CONTENT_DIR)) ? WP_CONTENT_DIR.$name : tempnam('', $name);
924
+
925
+ // open file
926
+ $f = ($gz) ? gzopen($path,'w9') : fopen($path,'w');
927
+
928
+ if (!$f) :
929
+ echo '<div class="error"><p>'.__('Backup failed! Cannot open file', 'cpd').' '.$path.'.</p></div>';
930
+ else :
931
+ set_time_limit(600);
932
+
933
+ // write backup to file
934
+ $d = "DROP TABLE IF EXISTS `$t`;\n";
935
+ ($gz) ? gzwrite($f, $d) : fwrite($f, $d);
936
+ if ( $res = $this->mysqlQuery('rows', "SHOW CREATE TABLE `$t`", 'backupCollect'.__LINE__) )
937
+ {
938
+ // create table command
939
+ $create = $res[0];
940
+ $create->{'Create Table'} .= ';';
941
+ $line = str_replace("\n", "", $create->{'Create Table'})."\n";
942
+ ($gz) ? gzwrite($f, $line) : fwrite($f, $line);
943
+ $line = false;
944
+
945
+ // number of entries
946
+ $entries = $this->mysqlQuery('count', "SELECT 1 FROM `$t`", 'backupCollect'.__LINE__);
947
+ $part = (int) $this->options['backup_part'];
948
+ if (empty($part))
949
+ $part = 10000;
950
+
951
+ // show progress
952
+ echo '<div id="cpd_progress" class="updated"><p>'.sprintf(__('Backup of %s entries in progress. Every point complies %s entries.', 'cpd'), $entries, $part).'<br />';
953
+ $this->flush_buffers();
954
+
955
+ // get data
956
+ for ($i = 0; $i <= $entries; $i = $i + $part)
957
+ {
958
+ if ( $data = $this->mysqlQuery('rows', "SELECT * FROM `$t` LIMIT $i, $part", 'backupCollect'.__LINE__) )
959
+ {
960
+ foreach ($data as $row)
961
+ {
962
+ $row = (array) $row;
963
+
964
+ // columns names
965
+ if (empty($cols))
966
+ $cols = array_keys($row);
967
+
968
+ // create line
969
+ if (!$line)
970
+ {
971
+ $line = "INSERT INTO `$t` (`".implode('`,`',$cols)."`) VALUES\n";
972
+ if (isset($v))
973
+ $line .= "$v\n";
974
+ }
975
+
976
+ // add values
977
+ $v = '';
978
+ foreach ($row as $val)
979
+ $v .= "'".mysql_real_escape_string($val)."',";
980
+ $v = '('.substr($v,0,-1).'),';
981
+
982
+ if ( strlen($line) < 50000 - strlen($v) )
983
+ $line .= "$v\n";
984
+ else
985
+ {
986
+ $line = substr($line,0,-2).";\n";
987
+ ($gz) ? gzwrite($f, $line) : fwrite($f, $line);
988
+ $line = false;
989
+ }
990
+ }
991
+ }
992
+ echo '| ';
993
+ $this->flush_buffers();
994
+ }
995
+
996
+ // write leftover
997
+ if ($line)
998
+ {
999
+ $line = substr($line,0,-2).";\n";
1000
+ ($gz) ? gzwrite($f, $line) : fwrite($f, $line);
1001
+ }
1002
+
1003
+ // reindex command
1004
+ $line = "REPAIR TABLE `$t`;";
1005
+ ($gz) ? gzwrite($f, $line) : fwrite($f, $line);
1006
+
1007
+ echo '</p></div>';
1008
+
1009
+ // hide progress
1010
+ echo '<script type="text/javascript">'
1011
+ .'document.getElementById("cpd_progress").style.display="none";'
1012
+ .'</script>'."\n";
1013
+ $this->flush_buffers();
1014
+ }
1015
+
1016
+ // close file
1017
+ ($gz) ? gzclose($f) : fclose($f);
1018
+
1019
+ // save collection and options
1020
+ $oname = '/count_per_day_options_'.date_i18n('Y-m-d_H-i-s').'.txt';
1021
+ if ($gz) $oname .= '.gz';
1022
+ $opath = (is_writable(WP_CONTENT_DIR)) ? WP_CONTENT_DIR.$oname : tempnam('', $oname);
1023
+ $f = ($gz) ? gzopen($opath,'w9') : fopen($opath,'w');
1024
+
1025
+ foreach (array('count_per_day', 'count_per_day_summary', 'count_per_day_collected', 'count_per_day_posts', 'count_per_day_notes') as $o)
1026
+ {
1027
+ $c = get_option($o);
1028
+ $line = "=== begin $o ===\n".serialize($c)."\n=== end $o ===\n\n";
1029
+ ($gz) ? gzwrite($f, $line) : fwrite($f, $line);
1030
+ }
1031
+ ($gz) ? gzclose($f) : fclose($f);
1032
+
1033
+ // message
1034
+ echo '<div class="updated"><p>';
1035
+ if ( strpos($path, WP_CONTENT_DIR) === false )
1036
+ {
1037
+ // show tempfile in textarea
1038
+ $content = file_get_contents($path);
1039
+ _e('Your wp-content directory is not writable. But you can copy the content of this box to a plain text file.', 'cpd');
1040
+ echo '<textarea style="width:100%;height:200px">'.$content.'</textarea>';
1041
+ }
1042
+ else
1043
+ {
1044
+ // show link
1045
+ echo sprintf(__('Backup of counter table saved in %s.', 'cpd'),
1046
+ '<a href="'.content_url().$name.'">'.content_url().$name.'</a>').'<br/>';
1047
+ echo sprintf(__('Backup of counter options and collection saved in %s.', 'cpd'),
1048
+ '<a href="'.content_url().$oname.'">'.content_url().$oname.'</a>');
1049
+ }
1050
+ echo '</p></div>';
1051
+ endif;
1052
+ $this->flush_buffers();
1053
+ }
1054
+
1055
+ function addCollectionToCountries( $visitors, $limit = false )
1056
+ {
1057
+ global $wpdb;
1058
+ if ( $visitors )
1059
+ // visitors
1060
+ $sql = "SELECT country, COUNT(*) c
1061
+ FROM ( SELECT country, COUNT(*) c
1062
+ FROM $wpdb->cpd_counter
1063
+ WHERE ip > 0
1064
+ GROUP BY country, date, ip ) as t
1065
+ GROUP BY country
1066
+ ORDER BY c desc";
1067
+ else
1068
+ // reads
1069
+ $sql = "SELECT country, COUNT(*) c
1070
+ FROM $wpdb->cpd_counter
1071
+ WHERE ip > 0
1072
+ GROUP BY country
1073
+ ORDER BY c DESC";
1074
+ $res = $this->mysqlQuery('rows', $sql, 'getCountries '.__LINE__);
1075
+
1076
+ foreach ( $res as $r )
1077
+ $temp[$r->country] = $r->c;
1078
+
1079
+ // add collection values
1080
+ $coll = get_option('count_per_day_collected');
1081
+ if ($coll)
1082
+ {
1083
+ foreach ($coll as $month)
1084
+ {
1085
+ $countries = explode(';', $month['country']);
1086
+ // country:reads|visitors
1087
+ foreach ($countries as $v)
1088
+ {
1089
+ if (!empty($v))
1090
+ {
1091
+ $x = explode(':', $v);
1092
+ $country = $x[0];
1093
+ $y = explode('|', $x[1]);
1094
+ $value = ($visitors) ? $y[1] : $y[0];
1095
+ if (isset($temp[$country]))
1096
+ $temp[$country] += $value;
1097
+ else
1098
+ $temp[$country] = $value;
1099
+ }
1100
+ }
1101
+ }
1102
+ }
1103
+
1104
+ // max $limit biggest values
1105
+ $keys = array_keys($temp);
1106
+ array_multisort($temp, SORT_NUMERIC, SORT_DESC, $keys);
1107
+ if ($limit)
1108
+ $temp = array_slice($temp, 0, $limit);
1109
+
1110
+ return $temp;
1111
+ }
1112
+
1113
+ /**
1114
+ * flush buffers, the hard way ;)
1115
+ */
1116
+ function flush_buffers()
1117
+ {
1118
+ @ob_end_flush();
1119
+ @ob_flush();
1120
+ @flush();
1121
+ @ob_start();
1122
+ }
1123
+
1124
+ /* get collected data */
1125
+
1126
+ function getLastCollectedMonth()
1127
+ {
1128
+ $s = get_option('count_per_day_summary');
1129
+ return (isset($s['lastcollectedmonth'])) ? $s['lastcollectedmonth'] : false;
1130
+ }
1131
+
1132
+ function getCollectedReads()
1133
+ {
1134
+ $s = get_option('count_per_day_summary');
1135
+ return (isset($s['reads'])) ? $s['reads'] : 0;
1136
+ }
1137
+
1138
+ function getCollectedUsers()
1139
+ {
1140
+ $s = get_option('count_per_day_summary');
1141
+ return (isset($s['users'])) ? $s['users'] : 0;
1142
+ }
1143
+
1144
+ function getCollectedDayMostReads()
1145
+ {
1146
+ $s = get_option('count_per_day_summary');
1147
+ return (isset($s['mostreads'])) ? $s['mostreads'] : 0;
1148
+ }
1149
+
1150
+ function getCollectedDayMostUsers()
1151
+ {
1152
+ $s = get_option('count_per_day_summary');
1153
+ return (isset($s['mostusers'])) ? $s['mostusers'] : 0;
1154
+ }
1155
+
1156
+ function getCollectedData( $month ) // YYYYMM
1157
+ {
1158
+ $d = get_option('count_per_day_collected');
1159
+ if ($d)
1160
+ {
1161
+ $m = $d[$month];
1162
+ unset($d);
1163
+ return $m;
1164
+ }
1165
+ }
1166
+
1167
+ /* update if new count is bigger than collected */
1168
+
1169
+ function updateCollectedDayMostReads( $new )
1170
+ {
1171
+ $n = array ($new->date, $new->count);
1172
+ $s = get_option('count_per_day_summary', array());
1173
+ if ( empty($s['mostreads']) || $n[1] > $s['mostreads'][1] )
1174
+ $s['mostreads'] = $n;
1175
+ update_option('count_per_day_summary', $s);
1176
+ return $s['mostreads'];
1177
+ }
1178
+
1179
+ function updateCollectedDayMostUsers( $new )
1180
+ {
1181
+ $n = array ($new->date, $new->count);
1182
+ $s = get_option('count_per_day_summary', array());
1183
+ if ( empty($s['mostusers']) || $n[1] > $s['mostusers'][1] )
1184
+ $s['mostusers'] = $n;
1185
+ update_option('count_per_day_summary', $s);
1186
+ return $s['mostusers'];
1187
+ }
1188
+
1189
+ /**
1190
+ * sets first date in summary
1191
+ */
1192
+ function updateFirstCount()
1193
+ {
1194
+ global $wpdb;
1195
+ // first day in summary
1196
+ $s = get_option('count_per_day_summary', array());
1197
+ if ( empty($s['firstcount']) )
1198
+ {
1199
+ // first day from table ORDER BY date LIMIT 1
1200
+ $res = $this->mysqlQuery('var', "SELECT MIN(date) FROM $wpdb->cpd_counter", 'getFirstCount'.__LINE__);
1201
+ if ($res)
1202
+ {
1203
+ $s['firstcount'] = $res;
1204
+ update_option('count_per_day_summary', $s);
1205
+ }
1206
+ }
1207
+ return $s['firstcount'];
1208
+ }
1209
+
1210
+ /**
1211
+ * returns table size in KB or MB
1212
+ */
1213
+ function getTableSize( $table )
1214
+ {
1215
+ $res = $this->mysqlQuery('rows', "SHOW TABLE STATUS");
1216
+ if ($res)
1217
+ foreach ($res as $row)
1218
+ if ($row->Name == $table)
1219
+ $size = $this->formatBytes( $row->Data_length + $row->Index_length );
1220
+ if ($size)
1221
+ return $size;
1222
+ }
1223
+
1224
+ function formatBytes( $size )
1225
+ {
1226
+ $units = array(' B', ' KB', ' MB', ' GB', ' TB');
1227
+ for ($i = 0; $size >= 1024 && $i < 4; $i++)
1228
+ $size /= 1024;
1229
+ return round($size, 2).$units[$i];
1230
+ }
1231
+
1232
+
1233
+ } // class
counter-options.php CHANGED
@@ -31,11 +31,13 @@ if(!empty($_POST['do']))
31
  $count_per_day->options['debug'] = empty( $_POST['cpd_debug'] ) ? 0 : 1 ;
32
  $count_per_day->options['localref'] = empty( $_POST['cpd_localref'] ) ? 0 : 1 ;
33
  $count_per_day->options['referers'] = empty( $_POST['cpd_referers'] ) ? 0 : 1 ;
 
34
  $count_per_day->options['dashboard_referers'] = $_POST['cpd_dashboard_referers'];
35
  $count_per_day->options['referers_last_days'] = $_POST['cpd_referers_last_days'];
36
  $count_per_day->options['chart_old'] = empty( $_POST['cpd_chart_old'] ) ? 0 : 1 ;
37
  $count_per_day->options['no_front_css'] = empty( $_POST['cpd_no_front_css'] ) ? 0 : 1 ;
38
  $count_per_day->options['whocansee'] = ($_POST['cpd_whocansee'] == 'custom') ? $_POST['cpd_whocansee_custom'] : $_POST['cpd_whocansee'];
 
39
 
40
  if (empty($count_per_day->options['clients']))
41
  $count_per_day->options['clients'] = 'Firefox, MSIE, Chrome, Safari, Opera';
@@ -45,105 +47,263 @@ if(!empty($_POST['do']))
45
 
46
  update_option('count_per_day', $count_per_day->options);
47
 
48
- echo '<div id="message" class="updated fade"><p>'.__('Options updated', 'cpd').'</p></div>';
49
  break;
50
 
51
- // update countries
52
- case 'cpd_countries' :
53
- if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
54
  {
55
- $count_per_day->queries[] = 'cpd_countries - class "CpdGeoIp" exists';
56
- $rest = CpdGeoIp::updateDB();
57
- echo '<div id="message" class="updated fade">
58
- <form name="cpdcountries" method="post" action="'.$_SERVER['REQUEST_URI'].'">
59
- <p>'.sprintf(__('Countries updated. <b>%s</b> entries in %s without country left', 'cpd'), $rest, CPD_C_TABLE);
60
- if ( $rest > 100 )
61
- {
62
- // reload page per javascript until less than 100 entries without country
63
- echo '<input type="hidden" name="do" value="cpd_countries" />
64
- <input type="submit" name="updcon" value="'.__('update next', 'cpd').'" class="button" />';
65
- if ( !$count_per_day->options['debug'] )
66
- echo '<script type="text/javascript">document.cpdcountries.submit();</script>';
67
- }
68
- echo '</p>
69
- </form>
70
- </div>';
71
- if ( $rest > 100 )
72
- while (@ob_end_flush());
73
  }
74
- else
75
- $count_per_day->queries[] = '<span style="color:red">cpd_countries - class "CpdGeoIp" NOT exists</span>';
76
- break;
77
-
78
- // download new GeoIP database
79
- case 'cpd_countrydb' :
80
- if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  {
82
- $count_per_day->getQuery("SELECT country FROM ".CPD_C_TABLE, 'geoip_select');
83
- if ((int) mysql_errno() == 1054)
84
- // add row 'country' to counter db
85
- $count_per_day->getQuery("ALTER TABLE `".CPD_C_TABLE."` ADD `country` CHAR(2) NOT NULL", 'geoip_alter');
86
-
87
- $result = CpdGeoIp::updateGeoIpFile();
88
- echo '<div id="message" class="updated fade"><p>'.$result.'</p></div>';
89
- if ( file_exists($cpd_path.'geoip/GeoIP.dat') )
90
- $cpd_geoip = 1;
91
  }
92
- break;
 
 
 
93
 
94
- // delete massbots
95
- case 'cpd_delete_massbots' :
96
- if ( isset($_POST['limit']) )
97
- {
98
- $bots = $count_per_day->getMassBots($_POST['limit']);
99
- $sum = 0;
100
- while ( $row = mysql_fetch_array($bots) )
101
- {
102
- $count_per_day->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE ip = INET_ATON('".$row['ip']."') AND date = '".$row['date']."'", 'deleteMassbots');
103
- $sum += $row['posts'];
104
- }
105
- if ( $sum )
106
- echo '<div id="message" class="updated fade"><p>'.sprintf(__('Mass Bots cleaned. %s counts deleted.', 'cpd'), $sum).'</p></div>';
107
- }
108
- break;
109
-
110
- // clean database
111
- case 'cpd_clean' :
112
- $rows = $count_per_day->cleanDB();
113
- echo '<div id="message" class="updated fade"><p>'.sprintf(__('Database cleaned. %s rows deleted.', 'cpd'), $rows).'</p></div>';
114
- break;
115
 
116
- // reset counter
117
- case 'cpd_reset' :
118
- $wpdb->query('TRUNCATE TABLE '.CPD_C_TABLE);
119
- echo '<div id="message" class="updated fade"><p>'.sprintf(__('Counter reseted.', 'cpd'), $rows).'</p></div>';
120
- break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
 
122
- // uninstall plugin
123
- case __('UNINSTALL Count per Day', 'cpd') :
124
- if(trim($_POST['uninstall_cpd_yes']) == 'yes')
125
  {
126
- count_per_day_uninstall();
127
- echo '<div id="message" class="updated fade"><p>';
128
- printf(__('Table %s deleted', 'cpd'), CPD_C_TABLE);
129
- echo '<br/>';
130
- printf(__('Table %s deleted', 'cpd'), CPD_CO_TABLE);
131
- echo '<br/>';
132
- printf(__('Table %s deleted', 'cpd'), CPD_N_TABLE);
133
- echo '<br/>';
134
- echo __('Options deleted', 'cpd').'</p></div>';
135
- $mode = 'end-UNINSTALL';
136
  }
137
- break;
138
-
139
- default:
140
- break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  }
142
  }
143
 
144
  // delete one massbots per click on X
145
  if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
146
- $count_per_day->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE ip = '".$_GET['dmbip']."' AND date = '".$_GET['dmbdate']."'", 'deleteMassbot');
147
 
148
  if ( empty($mode) )
149
  $mode = '';
@@ -161,7 +321,8 @@ switch($mode) {
161
  break;
162
 
163
  default:
164
- // show options page
 
165
 
166
  $o = $count_per_day->options;
167
 
@@ -172,266 +333,248 @@ switch($mode) {
172
  update_option('count_per_day', $o);
173
  }
174
  ?>
175
- <div class="wrap">
176
- <h2><img src="<?php echo $count_per_day->getResource('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day</h2>
177
 
178
- <div id="poststuff">
179
 
180
- <div class="postbox cpd_settings">
181
- <h3><?php _e('Options', 'cpd') ?></h3>
182
- <div class="inside">
183
- <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
184
-
185
- <!-- counter -->
186
-
187
- <fieldset>
188
- <legend><?php _e('Counter', 'cpd') ?></legend>
189
-
190
- <table class="form-table">
191
- <tr>
192
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Online time', 'cpd') ?>:</th>
193
- <td><input class="code" type="text" name="cpd_onlinetime" size="3" value="<?php echo $o['onlinetime']; ?>" /> <?php _e('Seconds for online counter. Used for "Visitors online" on dashboard page.', 'cpd') ?></td>
194
- </tr>
195
- <tr>
196
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Logged on Users', 'cpd') ?>:</th>
197
- <td>
198
- <label for="cpd_user"><input type="checkbox" name="cpd_user" id="cpd_user" <?php if($o['user']==1) echo 'checked="checked"'; ?> /> <?php _e('count too', 'cpd') ?></label>
199
- - <?php _e('until User Level', 'cpd') ?>
200
- <select name="cpd_user_level">
201
- <option value="10" <?php if ($o['user_level'] == 10) echo 'selected="selected"' ?>><?php echo translate_user_role('Administrator') ?> (10)</option>
202
- <option value="7" <?php if ($o['user_level'] == 7) echo 'selected="selected"' ?>><?php echo translate_user_role('Editor') ?> (7)</option>
203
- <option value="2" <?php if ($o['user_level'] == 2) echo 'selected="selected"' ?>><?php echo translate_user_role('Author') ?> (2)</option>
204
- <option value="1" <?php if ($o['user_level'] == 1) echo 'selected="selected"' ?>><?php echo translate_user_role('Contributor') ?> (1)</option>
205
- <option value="0" <?php if ($o['user_level'] == 0) echo 'selected="selected"' ?>><?php echo translate_user_role('Subscriber') ?> (0)</option>
206
- </select>
207
- </td>
208
- </tr>
209
- <tr>
210
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Auto counter', 'cpd') ?>:</th>
211
- <td><label for="cpd_autocount"><input type="checkbox" name="cpd_autocount" id="cpd_autocount" <?php if($o['autocount']==1) echo 'checked="checked"'; ?> /> <?php _e('Counts automatically single-posts and pages, no changes on template needed.', 'cpd') ?></label></td>
212
- </tr>
213
- <tr>
214
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Bots to ignore', 'cpd') ?>:</th>
215
- <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
216
- </tr>
217
- <tr>
218
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Anonymous IP', 'cpd') ?>:</th>
219
- <td><label for="cpd_anoip"><input type="checkbox" name="cpd_anoip" id="cpd_anoip" <?php if($o['anoip']==1) echo 'checked="checked"'; ?> /> a.b.c.d &gt; a.b.c.x</label></td>
220
- </tr>
221
- <tr>
222
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Cache', 'cpd') ?> (beta):</th>
223
- <td><label for="cpd_ajax"><input type="checkbox" name="cpd_ajax" id="cpd_ajax" <?php if($o['ajax']==1) echo 'checked="checked"'; ?> /> <?php _e('I use a cache plugin. Count these visits with ajax.', 'cpd') ?></label></td>
224
- </tr>
225
- <tr>
226
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Clients and referrers', 'cpd') ?>:</th>
227
- <td><label for="cpd_referers"><input type="checkbox" name="cpd_referers" id="cpd_referers" <?php if($o['referers']==1) echo 'checked="checked"'; ?> /> <?php _e('Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors.', 'cpd') ?> (1000000 <?php _e('Reads', 'cpd') ?> ~ 130 MB)</label></td>
228
- </tr>
229
- </table>
230
- </fieldset>
231
-
232
- <!-- dashboard -->
233
-
234
- <fieldset>
235
- <legend><?php _e('Dashboard') ?></legend>
236
-
237
- <script>
238
- function checkcustom()
239
- {
240
- var b = document.getElementById('cpd_whocansee');
241
- var i = document.getElementById('cpd_whocansee_custom_div');
242
- if ( b.value == 'custom' )
243
- i.style.display = 'block';
244
- else
245
- i.style.display = 'none';
246
- }
247
- </script>
248
-
249
- <table class="form-table">
250
- <tr>
251
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Who can see it', 'cpd') ?>:</th>
252
- <td>
253
- <?php $cus = (in_array($o['whocansee'], array('manage_options','manage_links','publish_posts','edit_posts','read'))) ? 0 : 1 ?>
254
- <select id="cpd_whocansee" name="cpd_whocansee" onchange="checkcustom()">
255
- <option value="manage_options" <?php if ($o['whocansee'] == 'manage_options') echo 'selected="selected"' ?>><?php echo translate_user_role('Administrator') ?> </option>
256
- <option value="manage_links" <?php if ($o['whocansee'] == 'manage_links') echo 'selected="selected"' ?>><?php echo translate_user_role('Editor') ?></option>
257
- <option value="publish_posts" <?php if ($o['whocansee'] == 'publish_posts') echo 'selected="selected"' ?>><?php echo translate_user_role('Author') ?></option>
258
- <option value="edit_posts" <?php if ($o['whocansee'] == 'edit_posts') echo 'selected="selected"' ?>><?php echo translate_user_role('Contributor') ?></option>
259
- <option value="read" <?php if ($o['whocansee'] == 'read') echo 'selected="selected"' ?>><?php echo translate_user_role('Subscriber') ?></option>
260
- <option value="custom" <?php if ($cus) echo 'selected="selected"' ?>>- <?php echo _e('custom', 'cpd') ?> -</option>
261
- </select>
262
- <?php _e('and higher are allowed to see the statistics page.', 'cpd') ?>
263
- <div id="cpd_whocansee_custom_div" <?php if (!$cus) echo 'style="display:none"' ?>>
264
- <?php printf(__('Set the %s capability %s a user need:', 'cpd'), '<a href="https://codex.wordpress.org/Roles_and_Capabilities">', '</a>'); ?>
265
- <input type="text" name="cpd_whocansee_custom" value="<?php echo $o['whocansee'] ?>" />
266
- </div>
267
- </td>
268
- </tr>
269
- <tr>
270
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Visitors per post', 'cpd') ?>:</th>
271
- <td><input class="code" type="text" name="cpd_dashboard_posts" size="3" value="<?php echo $o['dashboard_posts']; ?>" /> <?php _e('How many posts do you want to see on dashboard page?', 'cpd') ?></td>
272
- </tr>
273
- <tr>
274
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Posts', 'cpd') ?>:</th>
275
- <td><input class="code" type="text" name="cpd_dashboard_last_posts" size="3" value="<?php echo $o['dashboard_last_posts']; ?>" /> <?php _e('How many posts do you want to see on dashboard page?', 'cpd') ?></td>
276
- </tr>
277
- <tr>
278
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Days', 'cpd') ?>:</th>
279
- <td><input class="code" type="text" name="cpd_dashboard_last_days" size="3" value="<?php echo $o['dashboard_last_days']; ?>" /> <?php _e('How many days do you want look back?', 'cpd') ?></td>
280
- </tr>
281
- <tr>
282
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Days', 'cpd') ?>:</th>
283
- <td><input class="code" type="text" name="cpd_chart_days" size="3" value="<?php echo $o['chart_days']; ?>" /> <?php _e('How many days do you want look back?', 'cpd') ?></td>
284
- </tr>
285
- <tr>
286
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Height', 'cpd') ?>:</th>
287
- <td><input class="code" type="text" name="cpd_chart_height" size="3" value="<?php echo $o['chart_height']; ?>" /> px - <?php _e('Height of the biggest bar', 'cpd') ?></td>
288
- </tr>
289
- <tr>
290
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Old Charts', 'cpd') ?>:</th>
291
- <td><label for="cpd_chart_old"><input type="checkbox" name="cpd_chart_old" id="cpd_chart_old" <?php if($o['chart_old']==1) echo 'checked="checked"'; ?> /> <?php _e('Show old bar charts.', 'cpd') ?></label></td>
292
- </tr>
293
- <?php if ($cpd_geoip) { ?>
294
- <tr>
295
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Countries', 'cpd') ?>:</th>
296
- <td><input class="code" type="text" name="cpd_countries" size="3" value="<?php echo $o['countries']; ?>" /> <?php _e('How many countries do you want to see on dashboard page?', 'cpd') ?></td>
297
- </tr>
298
- <?php } ?>
299
- <tr>
300
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Browsers', 'cpd') ?>:</th>
301
- <td><input class="code" type="text" name="cpd_clients" size="50" value="<?php echo $o['clients']; ?>" /> <?php _e('Substring of the user agent, separated by comma', 'cpd') ?></td>
302
- </tr>
303
- <tr>
304
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Referrers - Entries', 'cpd') ?>:</th>
305
- <td><input class="code" type="text" name="cpd_dashboard_referers" size="3" value="<?php echo $o['dashboard_referers']; ?>" /> <?php _e('How many referrers do you want to see on dashboard page?', 'cpd') ?></td>
306
- </tr>
307
- <tr>
308
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Referrers - Days', 'cpd') ?>:</th>
309
- <td><input class="code" type="text" name="cpd_referers_last_days" size="3" value="<?php echo $o['referers_last_days']; ?>" /> <?php _e('How many days do you want look back?', 'cpd') ?></td>
310
- </tr>
311
- <tr>
312
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Local URLs', 'cpd') ?>:</th>
313
- <td><label for="cpd_localref"><input type="checkbox" name="cpd_localref" id="cpd_localref" <?php if($o['localref']==1) echo 'checked="checked"'; ?> /> <?php _e('Show local referrers too.', 'cpd') ?> (<?php echo bloginfo('url') ?>/...)</label></td>
314
- </tr>
315
- </table>
316
- </fieldset>
317
-
318
- <!-- lists -->
319
-
320
- <fieldset>
321
- <legend><?php _e('Posts') ?> / <?php _e('Pages') ?></legend>
322
- <table class="form-table">
323
- <tr>
324
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Show in lists', 'cpd') ?>:</th>
325
- <td><label for="cpd_show_in_lists"><input type="checkbox" name="cpd_show_in_lists" id="cpd_show_in_lists" <?php if($o['show_in_lists']==1) echo 'checked="checked"'; ?> /> <?php _e('Show "Reads per Post" in a new column in post management views.', 'cpd') ?></label></td>
326
- </tr>
327
- </table>
328
- </fieldset>
329
-
330
- <!-- start values -->
331
-
332
- <fieldset>
333
- <legend><?php _e('Start Values', 'cpd') ?></legend>
334
- <table class="form-table">
335
- <tr>
336
- <th colspan="2">
337
- <?php _e('Here you can change the date of first count and add a start count.', 'cpd')?>
338
- </th>
339
- </tr>
340
- <tr>
341
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start date', 'cpd') ?>:</th>
342
- <td><input class="code" type="text" name="cpd_startdate" size="10" value="<?php echo $o['startdate']; ?>" /> <?php _e('Your old Counter starts at?', 'cpd') ?> [yyyy-mm-dd]</td>
343
- </tr>
344
- <tr>
345
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start count', 'cpd') ?>:</th>
346
- <td><input class="code" type="text" name="cpd_startcount" size="10" value="<?php echo $o['startcount']; ?>" /> <?php _e('Add this value to "Total visitors".', 'cpd') ?></td>
347
- </tr>
348
- <tr>
349
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start count', 'cpd') ?>:</th>
350
- <td><input class="code" type="text" name="cpd_startreads" size="10" value="<?php echo $o['startreads']; ?>" /> <?php _e('Add this value to "Total reads".', 'cpd') ?></td>
351
- </tr>
352
- </table>
353
- </fieldset>
354
-
355
- <!-- Stylesheet -->
356
-
357
- <fieldset>
358
- <legend><?php _e('Stylesheet') ?></legend>
359
- <table class="form-table">
360
- <tr>
361
- <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('NO Stylesheet in Frontend', 'cpd') ?>:</th>
362
- <td><label for="cpd_no_front_css"><input type="checkbox" name="cpd_no_front_css" id="cpd_no_front_css" <?php if($o['no_front_css']==1) echo 'checked="checked"'; ?> /> <?php _e('Do not load the stylesheet "counter.css" in frontend.', 'cpd') ?></label></td>
363
- </tr>
364
- </table>
365
- </fieldset>
366
-
367
- <!-- debug -->
368
-
369
- <fieldset>
370
- <legend style="color:red"><?php _e('Debug mode', 'cpd') ?></legend>
371
- <p style="margin-top:15px;">
372
- <label for="cpd_debug"><input type="checkbox" name="cpd_debug" id="cpd_debug" <?php if($o['debug']==1) echo 'checked="checked"'; ?> /> <?php _e('Show debug informations at the bottom of all pages.', 'cpd') ?></label>
373
- </p>
374
- </fieldset>
375
-
376
- <input type="hidden" name="do" value="cpd_update" />
377
- <input type="submit" name="update" value="<?php _e('Update options', 'cpd') ?>" class="button-primary" style="margin-left: 5px;" />
378
-
379
- </form>
380
-
381
- </div>
382
- </div>
383
-
384
- <!-- Countries -->
385
  <div class="postbox">
386
- <h3><?php _e('GeoIP - Countries', 'cpd') ?></h3>
387
- <div class="inside">
 
 
 
388
 
389
- <table class="form-table">
390
- <?php if ( $cpd_geoip ) { ?>
391
- <tr>
392
- <td>
393
- <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
394
- <input type="hidden" name="do" value="cpd_countries" />
395
- <input type="submit" name="updcon" value="<?php _e('Update old counter data', 'cpd') ?>" class="button" />
396
- </form>
397
- </td>
398
- <td><?php _e('You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!', 'cpd') ?></td>
399
- </tr>
400
- <?php } ?>
401
 
402
- <?php if ( class_exists('CpdGeoIp') && ini_get('allow_url_fopen') && function_exists('gzopen') ) {
403
- // install or update database ?>
404
- <tr>
405
- <td width="10">
406
- <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
407
- <input type="hidden" name="do" value="cpd_countrydb" />
408
- <input type="submit" name="updcondb" value="<?php _e('Update GeoIP database', 'cpd') ?>" class="button" />
409
- </form>
410
- </td>
411
- <td><?php _e('Download a new version of GeoIP.dat file.', 'cpd') ?></td>
412
- </tr>
413
- <?php } ?>
414
- </table>
415
 
416
- <p>
417
- <span class="cpd-r"><?php _e('More informations about GeoIP', 'cpd') ?>:
418
- <a href="http://www.maxmind.com/app/geoip_country">www.maxmind.com</a></span>&nbsp;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  </p>
420
-
421
- </div>
 
 
 
 
 
 
 
422
  </div>
423
 
424
- <!-- Mass Bots -->
425
  <div class="postbox">
426
  <?php
427
  $limit = (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25;
428
  $limit = (isset($_POST['limit'])) ? $_POST['limit'] : $limit;
429
  $limit_input = '<input type="text" size="3" name="limit" value="'.$limit.'" />';
430
- $bots = $count_per_day->getMassBots($limit);
 
 
 
431
  ?>
432
- <h3><?php _e('Mass Bots', 'cpd') ?></h3>
433
  <div class="inside">
434
- <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
435
  <p>
436
  <?php printf(__('Show all IPs with more than %s page views per day', 'cpd'), $limit_input) ?>
437
  <input type="submit" name="showmassbots" value="<?php _e('show', 'cpd') ?>" class="button" />
@@ -445,37 +588,35 @@ switch($mode) {
445
  <th><?php _e('IP', 'cpd') ?></th>
446
  <th><?php _e('Date', 'cpd') ?></th>
447
  <th><?php _e('Client', 'cpd') ?></th>
448
- <th><?php _e('Views', 'cpd') ?></th>
449
  </tr>
450
  </thead>
451
  <?php
452
  $sum = 0;
453
- if ( !mysql_errno() ) :
454
- while ( $row = mysql_fetch_assoc($bots) )
 
 
 
455
  {
456
- $ip = $row['ip'];
457
- echo '<tr><td style="white-space:nowrap">';
458
- if ( $cpd_geoip )
459
- {
460
- $c = CpdGeoIp::getCountry($ip);
461
- echo $c[1].' &nbsp;';
462
- }
463
- echo '<a href="?page=count-per-day/counter-options.php&amp;dmbip='.$row['longip'].'&amp;dmbdate='.$row['date'].'"
464
- title="'.sprintf(__('Delete these %s counts', 'cpd'), $row['posts']).'"
465
- style="color:red; font-weight: bold;">X</a> &nbsp;';
466
- echo '<a href="http://www.utrace.de/?query='.$ip.'">'.$ip.'</a></td>'
467
- .'<td style="white-space:nowrap;">'.mysql2date(get_option('date_format'), $row['date'] ).'</td>'
468
- .'<td>'.$row['client'].'</td>'
469
- .'<td style="text-align:right;"><a href="'.$count_per_day->dir.'/massbots.php?dmbip='.$row['longip'].'&amp;dmbdate='.$row['date'].'&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day" class="thickbox">'
470
- .$row['posts'].'</a></td>'
471
- .'</tr>';
472
- $sum += $row['posts'];
473
  }
474
- endif;
 
 
 
 
 
 
 
 
 
 
475
  ?>
476
  </table>
477
  <?php if ( $sum ) { ?>
478
- <p class="submit">
479
  <input type="hidden" name="do" value="cpd_delete_massbots" />
480
  <input type="hidden" name="limit" value="<?php echo $limit ?>" />
481
  <input type="submit" name="clean" value="<?php printf(__('Delete these %s counts', 'cpd'), $sum) ?>" class="button" />
@@ -484,18 +625,49 @@ switch($mode) {
484
  </form>
485
  </div>
486
  </div>
487
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  <!-- Cleaner -->
489
  <?php if ( $count_per_day->options['referers'] ) : ?>
490
  <div class="postbox">
491
- <h3><?php _e('Clean the database', 'cpd') ?></h3>
492
  <div class="inside">
493
  <p>
494
  <?php _e('You can clean the counter table by delete the "spam data".<br />If you add new bots above the old "spam data" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots.', 'cpd') ?>
495
  </p>
496
 
497
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
498
- <p class="submit">
499
  <input type="hidden" name="do" value="cpd_clean" />
500
  <input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
501
  </p>
@@ -503,28 +675,132 @@ switch($mode) {
503
  </div>
504
  </div>
505
  <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
507
  <!-- Reset DBs -->
508
  <div class="postbox">
509
- <h3><?php _e('Reset the counter', 'cpd') ?></h3>
510
  <div class="inside">
511
  <p style="color: red">
512
  <?php _e('You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!', 'cpd') ?>
513
  </p>
514
 
515
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
516
- <p class="submit">
517
  <input type="hidden" name="do" value="cpd_reset" />
518
- <input type="submit" name="clean" value="<?php _e('Reset the counter', 'cpd') ?>" class="button" />
 
519
  </p>
520
  </form>
521
  </div>
522
  </div>
523
-
524
  <!-- Uninstall -->
525
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
526
  <div class="postbox">
527
- <h3><?php _e('Uninstall', 'cpd') ?></h3>
528
  <div class="inside">
529
  <p>
530
  <?php _e('If "Count per Day" only disabled the tables in the database will be preserved.', 'cpd') ?><br/>
@@ -533,26 +809,19 @@ switch($mode) {
533
  <p style="color: red">
534
  <strong><?php _e('WARNING', 'cpd') ?>:</strong><br />
535
  <?php _e('These tables (with ALL counter data) will be deleted.', 'cpd') ?><br />
536
- <b><?php echo CPD_C_TABLE.', '.CPD_CO_TABLE.', '.CPD_N_TABLE; ?></b><br />
537
  <?php _e('If "Count per Day" re-installed, the counter starts at 0.', 'cpd') ?>
538
  </p>
539
- <p>&nbsp;</p>
540
- <p class="submit">
541
- <input type="checkbox" name="uninstall_cpd_yes" value="yes" />&nbsp;<?php _e('Yes', 'cpd'); ?><br /><br />
542
- <input type="submit" name="do" value="<?php _e('UNINSTALL Count per Day', 'cpd') ?>" class="button" onclick="return confirm('<?php _e('You are sure to disable Count per Day and delete all data?', 'cpd') ?>')" />
543
  </p>
544
  </div>
545
  </div>
546
  </form>
547
 
548
- <!-- Plugin page -->
549
- <div class="postbox">
550
- <h3><?php _e('Support', 'cpd') ?></h3>
551
- <div class="inside">
552
- <?php $count_per_day->cpdInfo() ?>
553
- </div>
554
- </div>
555
-
556
 
557
  </div><!-- poststuff -->
558
  </div><!-- wrap -->
31
  $count_per_day->options['debug'] = empty( $_POST['cpd_debug'] ) ? 0 : 1 ;
32
  $count_per_day->options['localref'] = empty( $_POST['cpd_localref'] ) ? 0 : 1 ;
33
  $count_per_day->options['referers'] = empty( $_POST['cpd_referers'] ) ? 0 : 1 ;
34
+ $count_per_day->options['referers_cut'] = empty( $_POST['cpd_referers_cut'] ) ? 0 : 1 ;
35
  $count_per_day->options['dashboard_referers'] = $_POST['cpd_dashboard_referers'];
36
  $count_per_day->options['referers_last_days'] = $_POST['cpd_referers_last_days'];
37
  $count_per_day->options['chart_old'] = empty( $_POST['cpd_chart_old'] ) ? 0 : 1 ;
38
  $count_per_day->options['no_front_css'] = empty( $_POST['cpd_no_front_css'] ) ? 0 : 1 ;
39
  $count_per_day->options['whocansee'] = ($_POST['cpd_whocansee'] == 'custom') ? $_POST['cpd_whocansee_custom'] : $_POST['cpd_whocansee'];
40
+ $count_per_day->options['backup_part'] = $_POST['cpd_backup_part'];
41
 
42
  if (empty($count_per_day->options['clients']))
43
  $count_per_day->options['clients'] = 'Firefox, MSIE, Chrome, Safari, Opera';
47
 
48
  update_option('count_per_day', $count_per_day->options);
49
 
50
+ echo '<div class="updated"><p>'.__('Options updated', 'cpd').'</p></div>';
51
  break;
52
 
53
+ // update countries
54
+ case 'cpd_countries' :
55
+ if ( class_exists('CpdGeoIp') )
56
+ {
57
+ $count_per_day->queries[] = 'cpd_countries - class "CpdGeoIp" exists';
58
+ $rest = CpdGeoIp::updateDB();
59
+ echo '<div class="updated">
60
+ <form name="cpdcountries" method="post" action="'.$_SERVER['REQUEST_URI'].'">
61
+ <p>'.sprintf(__('Countries updated. <b>%s</b> entries in %s without country left', 'cpd'), $rest, $wpdb->cpd_counter);
62
+ if ( $rest > 0 )
63
+ echo '<input type="hidden" name="do" value="cpd_countries" />
64
+ <input type="submit" name="updcon" value="'.__('update next', 'cpd').'" class="button" />';
65
+ if ( $rest > 20 )
66
  {
67
+ // reload page per javascript until less than 100 entries without country
68
+ if ( !$count_per_day->options['debug'] )
69
+ echo '<script type="text/javascript">document.cpdcountries.submit();</script>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
+ echo '</p>
72
+ </form>
73
+ </div>';
74
+ if ( $rest > 20 )
75
+ $count_per_day->flush_buffers();
76
+ }
77
+ else
78
+ $count_per_day->queries[] = '<span style="color:red">cpd_countries - class "CpdGeoIp" NOT exists</span>';
79
+ break;
80
+
81
+ // download new GeoIP database
82
+ case 'cpd_countrydb' :
83
+ if ( class_exists('CpdGeoIp') )
84
+ {
85
+ $result = CpdGeoIp::updateGeoIpFile();
86
+ echo '<div class="updated"><p>'.$result.'</p></div>';
87
+ if ( file_exists($cpd_path.'geoip/GeoIP.dat') )
88
+ $cpd_geoip = 1;
89
+ }
90
+ break;
91
+
92
+ // delete massbots
93
+ case 'cpd_delete_massbots' :
94
+ if ( isset($_POST['limit']) )
95
+ {
96
+ $bots = $count_per_day->getMassBots($_POST['limit']);
97
+ $sum = 0;
98
+ foreach ($bots as $r)
99
  {
100
+ $count_per_day->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE ip = INET_ATON('$r->ip') AND date = '$r->date'", 'deleteMassbots '.__LINE__);
101
+ $sum += $r->posts;
 
 
 
 
 
 
 
102
  }
103
+ if ( $sum )
104
+ echo '<div class="updated"><p>'.sprintf(__('Mass Bots cleaned. %s counts deleted.', 'cpd'), $sum).'</p></div>';
105
+ }
106
+ break;
107
 
108
+ // clean database
109
+ case 'cpd_clean' :
110
+ $rows = $count_per_day->cleanDB();
111
+ delete_option('count_per_day_summary');
112
+ delete_option('count_per_day_collected');
113
+ delete_option('count_per_day_posts');
114
+ echo '<div class="updated"><p>'.sprintf(__('Database cleaned. %s rows deleted.', 'cpd'), $rows).'</p></div>';
115
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
+ // reset counter
118
+ case 'cpd_reset' :
119
+ if(trim($_POST['reset_cpd_yes']) == 'yes')
120
+ {
121
+ $wpdb->query('TRUNCATE TABLE '.$wpdb->cpd_counter);
122
+ $wpdb->query('TRUNCATE TABLE '.$wpdb->cpd_counter_useronline);
123
+ $wpdb->query('TRUNCATE TABLE '.$wpdb->cpd_notes);
124
+ echo '<div class="updated"><p>'.sprintf(__('Counter reseted.', 'cpd'), $rows).'</p></div>';
125
+ }
126
+ break;
127
+
128
+ // uninstall plugin
129
+ case __('UNINSTALL Count per Day', 'cpd') :
130
+ if(trim($_POST['uninstall_cpd_yes']) == 'yes')
131
+ {
132
+ count_per_day_uninstall();
133
+ echo '<div class="updated"><p>';
134
+ echo sprintf(__('Table %s deleted', 'cpd'), $wpdb->cpd_counter).'<br/>';
135
+ echo sprintf(__('Table %s deleted', 'cpd'), $wpdb->cpd_counter_useronline).'<br/>';
136
+ echo sprintf(__('Table %s deleted', 'cpd'), $wpdb->cpd_notes).'<br/>';
137
+ echo __('Options deleted', 'cpd').'</p></div>';
138
+ $mode = 'end-UNINSTALL';
139
+ }
140
+ break;
141
+
142
+ // backup counter
143
+ case 'cpd_backup' :
144
+ $count_per_day->backup();
145
+ break;
146
+
147
+ // collect entries
148
+ case 'cpd_collect' :
149
+ // backup first ;)
150
+ $count_per_day->backup();
151
+
152
+ set_time_limit(300);
153
+
154
+ $allnew = (isset($_POST['cpd_new_collection'])) ? 1 : 0;
155
+ if ($allnew)
156
+ {
157
+ delete_option('count_per_day_summary');
158
+ delete_option('count_per_day_collected');
159
+ delete_option('count_per_day_posts');
160
+ }
161
+
162
+ $keep = (isset($_POST['cpd_keep_month'])) ? $_POST['cpd_keep_month'] : 6;
163
+
164
+ $d = array(); // month data
165
+ $t = array(); // temp country data
166
+ $s = array( // summary
167
+ 'reads' => $count_per_day->getCollectedReads(),
168
+ 'users' => $count_per_day->getCollectedUsers() );
169
+ $mold = 0; // current month
170
+ $countryold = '#'; // current country
171
+
172
+ echo '<div id="cpd_progress_collection" class="updated"><p>'.__('Collection in progress...', 'cpd').' ';
173
+ $count_per_day->flush_buffers();
174
+
175
+ $sql = "
176
+ SELECT LEFT(date,7) month, COUNT(*) c, country
177
+ FROM $wpdb->cpd_counter
178
+ WHERE date < DATE_SUB( DATE_FORMAT(CURDATE(), '%%Y-%%m-01'), INTERVAL $keep MONTH )
179
+ GROUP BY date, country, ip
180
+ ORDER BY LEFT(date,7), country";
181
+ $res = $count_per_day->mysqlQuery('rows', $sql, 'getReadsPerMonthsCompress '.__LINE__);
182
+
183
+ foreach ($res as $r)
184
+ {
185
+ $reads = (int) $r->c;
186
+ $s['reads'] += $reads;
187
+ $s['users'] += 1;
188
+ $country = ($r->country) ? $r->country : '-';
189
 
190
+ if ( $r->month != $mold )
 
 
191
  {
192
+ // new month row
193
+ $month = str_replace('-','',$r->month);
194
+ $d[$month]['reads'] = $reads;
195
+ $d[$month]['users'] = 1;
196
+ $t[$month][$country]['reads'] = $reads;
197
+ $t[$month][$country]['users'] = 1;
198
+ $mold = $r->month;
199
+ echo "| ";
200
+ $count_per_day->flush_buffers();
 
201
  }
202
+ else if ( $country != $countryold )
203
+ {
204
+ // new country
205
+ $d[$month]['reads'] += $reads;
206
+ $d[$month]['users'] += 1;
207
+ $t[$month][$country]['reads'] = $reads;
208
+ $t[$month][$country]['users'] = 1;
209
+ $countryold = $country;
210
+ }
211
+ else
212
+ {
213
+ // new visitor/ip
214
+ $d[$month]['reads'] += $reads;
215
+ $d[$month]['users'] += 1;
216
+ $t[$month][$country]['reads'] += $reads;
217
+ $t[$month][$country]['users'] += 1;
218
+ }
219
+ }
220
+
221
+ // format country data as "country:reads|visitors;"
222
+ foreach ($t as $month => $cdata)
223
+ {
224
+ $d[$month]['country'] = '';
225
+ foreach ($cdata as $country => $c)
226
+ $d[$month]['country'] .= $country.':'.$c['reads'].'|'.$c['users'].';';
227
+ $d[$month]['country'] = substr($d[$month]['country'], 0, -1);
228
+ }
229
+ unset($t);
230
+
231
+ // add new to collected data
232
+ $d = get_option('count_per_day_collected', array()) + $d;
233
+
234
+ // summaries
235
+ $last = max(array_keys($d));
236
+ $s['lastcollectedmonth'] = substr($last, 0, 4).'-'.substr($last, 4, 2);
237
+ $s['mostreads'] = $count_per_day->getDayWithMostReads(0, 1);
238
+ $s['mostusers'] = $count_per_day->getDayWithMostUsers(0, 1);
239
+ $s['firstcount'] = $count_per_day->updateFirstCount();
240
+
241
+ // visitors per post
242
+ echo "<br />".__('Get Visitors per Post...', 'cpd')."\n";
243
+ $count_per_day->flush_buffers();
244
+
245
+ $sql = "
246
+ SELECT COUNT(*) count, page
247
+ FROM $wpdb->cpd_counter
248
+ WHERE date < DATE_SUB( DATE_FORMAT(CURDATE(), '%%Y-%%m-01'), INTERVAL $keep MONTH )
249
+ AND page
250
+ GROUP BY page";
251
+ $res = $count_per_day->mysqlQuery('rows', $sql, 'getUsersPerPostCompress '.__LINE__);
252
+
253
+ $p = get_option('count_per_day_posts',array());
254
+ foreach ($res as $r)
255
+ {
256
+ if (isset($p['p'.$r->page]))
257
+ $p['p'.$r->page] += (int) $r->count;
258
+ else
259
+ $p['p'.$r->page] = (int) $r->count;
260
+ }
261
+
262
+ // save collection
263
+ echo "<br />".__('Delete old data...', 'cpd')."\n";
264
+ $count_per_day->flush_buffers();
265
+
266
+ update_option('count_per_day_summary', $s);
267
+ update_option('count_per_day_collected', $d);
268
+ update_option('count_per_day_posts', $p);
269
+ unset($s);
270
+ unset($d);
271
+ unset($p);
272
+
273
+ // delete entries
274
+ $sizeold = $count_per_day->getTableSize($wpdb->cpd_counter);
275
+ $sql = "
276
+ DELETE FROM $wpdb->cpd_counter
277
+ WHERE date < DATE_SUB( DATE_FORMAT(CURDATE(), '%%Y-%%m-01'), INTERVAL $keep MONTH )";
278
+ $count_per_day->mysqlQuery('', $sql, 'deleteAfterCollection '.__LINE__);
279
+ $count_per_day->mysqlQuery('', "REPAIR TABLE `$wpdb->cpd_counter`", 'repairTable '.__LINE__);
280
+ $sizenew = $count_per_day->getTableSize($wpdb->cpd_counter);
281
+
282
+ // hide progress
283
+ echo "</p></div>\n";
284
+ echo '<script type="text/javascript">document.getElementById("cpd_progress_collection").style.display="none";</script>'."\n";
285
+
286
+ echo '<div class="updated"><p>'
287
+ .sprintf(__('Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s).', 'cpd'),
288
+ $count_per_day->getLastCollectedMonth(), "<code>$wpdb->cpd_counter</code>", $sizeold, $sizenew)
289
+ .'</p></div>';
290
+ $count_per_day->flush_buffers();
291
+ break;
292
+
293
+ // reactivation
294
+ case 'cpd_activate' :
295
+ $count_per_day->checkVersion();
296
+ echo '<div class="updated"><p>'.__('Installation of "Count per Day" checked', 'cpd').'</p></div>';
297
+ break;
298
+
299
+ default:
300
+ break;
301
  }
302
  }
303
 
304
  // delete one massbots per click on X
305
  if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
306
+ $count_per_day->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE ip = '".$_GET['dmbip']."' AND date = '".$_GET['dmbdate']."'", 'deleteMassbot '.__LINE__);
307
 
308
  if ( empty($mode) )
309
  $mode = '';
321
  break;
322
 
323
  default:
324
+
325
+ // show options page
326
 
327
  $o = $count_per_day->options;
328
 
333
  update_option('count_per_day', $o);
334
  }
335
  ?>
336
+ <div id="cpdsettings" class="wrap">
337
+ <h2><img src="<?php echo $count_per_day->img('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day</h2>
338
 
339
+ <div id="poststuff" class="cpd_settings">
340
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
  <div class="postbox">
342
+ <h3>
343
+ <span class="cpd_icon cpd_settings"></span> <?php _e('Settings') ?> |
344
+ <span class="cpd_icon cpd_tools"></span> <a href="#cpdtools"><?php _e('Tools') ?></a>
345
+ </h3>
346
+ </div>
347
 
348
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
 
 
 
 
 
 
 
 
 
 
 
349
 
350
+ <?php // counter ?>
351
+ <fieldset>
352
+ <legend><span class="cpd_icon cpd_settings"></span> <?php _e('Counter', 'cpd') ?></legend>
 
 
 
 
 
 
 
 
 
 
353
 
354
+ <table class="form-table">
355
+ <tr>
356
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Online time', 'cpd') ?>:</th>
357
+ <td><input class="code" type="text" name="cpd_onlinetime" size="3" value="<?php echo $o['onlinetime']; ?>" /> <?php _e('Seconds for online counter. Used for "Visitors online" on dashboard page.', 'cpd') ?></td>
358
+ </tr>
359
+ <tr>
360
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Logged on Users', 'cpd') ?>:</th>
361
+ <td>
362
+ <label for="cpd_user"><input type="checkbox" name="cpd_user" id="cpd_user" <?php if($o['user']==1) echo 'checked="checked"'; ?> /> <?php _e('count too', 'cpd') ?></label>
363
+ - <?php _e('until User Level', 'cpd') ?>
364
+ <select name="cpd_user_level">
365
+ <option value="10" <?php selected($o['user_level'], 10) ?>><?php echo translate_user_role('Administrator') ?> (10)</option>
366
+ <option value="7" <?php selected($o['user_level'], 7) ?>><?php echo translate_user_role('Editor') ?> (7)</option>
367
+ <option value="2" <?php selected($o['user_level'], 2) ?>><?php echo translate_user_role('Author') ?> (2)</option>
368
+ <option value="1" <?php selected($o['user_level'], 1) ?>><?php echo translate_user_role('Contributor') ?> (1)</option>
369
+ <option value="0" <?php selected($o['user_level'], 0) ?>><?php echo translate_user_role('Subscriber') ?> (0)</option>
370
+ </select>
371
+ </td>
372
+ </tr>
373
+ <tr>
374
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Auto counter', 'cpd') ?>:</th>
375
+ <td><label for="cpd_autocount"><input type="checkbox" name="cpd_autocount" id="cpd_autocount" <?php checked($o['autocount'], 1) ?> /> <?php _e('Counts automatically single-posts and pages, no changes on template needed.', 'cpd') ?></label></td>
376
+ </tr>
377
+ <tr>
378
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Bots to ignore', 'cpd') ?>:</th>
379
+ <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
380
+ </tr>
381
+ <tr>
382
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Anonymous IP', 'cpd') ?>:</th>
383
+ <td><label for="cpd_anoip"><input type="checkbox" name="cpd_anoip" id="cpd_anoip" <?php checked($o['anoip'], 1) ?> /> a.b.c.d &gt; a.b.c.x</label></td>
384
+ </tr>
385
+ <tr>
386
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Cache', 'cpd') ?> (beta):</th>
387
+ <td><label for="cpd_ajax"><input type="checkbox" name="cpd_ajax" id="cpd_ajax" <?php checked($o['ajax'], 1) ?> /> <?php _e('I use a cache plugin. Count these visits with ajax.', 'cpd') ?></label></td>
388
+ </tr>
389
+ <tr>
390
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Clients and referrers', 'cpd') ?>:</th>
391
+ <td>
392
+ <label for="cpd_referers"><input type="checkbox" name="cpd_referers" id="cpd_referers" <?php checked($o['referers'], 1) ?> />
393
+ <?php _e('Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors.', 'cpd') ?> (1000000 <?php _e('Reads', 'cpd') ?> ~ 130 MB)</label><br/>
394
+ <label for="cpd_referers_cut"><input type="checkbox" name="cpd_referers_cut" id="cpd_referers_cut" <?php checked($o['referers_cut'], 1) ?> />
395
+ <?php _e('Save URL only, no query string.', 'cpd') ?> <code>http://example.com/webhp?hl=de#sclient=psy&amp;hl=de...</code> &gt; <code>http://example.com/webhp</code></label>
396
+ </td>
397
+ </tr>
398
+ </table>
399
+ </fieldset>
400
+
401
+ <?php // dashboard ?>
402
+ <fieldset>
403
+ <legend><span class="cpd_icon cpd_settings"></span> <?php _e('Dashboard') ?></legend>
404
+
405
+ <script type="text/javascript">
406
+ function checkcustom()
407
+ {
408
+ var b = document.getElementById('cpd_whocansee');
409
+ var i = document.getElementById('cpd_whocansee_custom_div');
410
+ if ( b.value == 'custom' )
411
+ i.style.display = 'block';
412
+ else
413
+ i.style.display = 'none';
414
+ }
415
+ </script>
416
+
417
+ <table class="form-table">
418
+ <tr>
419
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Who can see it', 'cpd') ?>:</th>
420
+ <td>
421
+ <?php $cus = (in_array($o['whocansee'], array('manage_options','manage_links','publish_posts','edit_posts','read'))) ? 0 : 1 ?>
422
+ <select id="cpd_whocansee" name="cpd_whocansee" onchange="checkcustom()">
423
+ <option value="manage_options" <?php selected($o['whocansee'], 'manage_options') ?>><?php echo translate_user_role('Administrator') ?> </option>
424
+ <option value="manage_links" <?php selected($o['whocansee'], 'manage_links') ?>><?php echo translate_user_role('Editor') ?></option>
425
+ <option value="publish_posts" <?php selected($o['whocansee'], 'publish_posts') ?>><?php echo translate_user_role('Author') ?></option>
426
+ <option value="edit_posts" <?php selected($o['whocansee'], 'edit_posts') ?>><?php echo translate_user_role('Contributor') ?></option>
427
+ <option value="read" <?php selected($o['whocansee'], 'read') ?>><?php echo translate_user_role('Subscriber') ?></option>
428
+ <option value="custom" <?php selected($cus) ?>>- <?php echo _e('custom', 'cpd') ?> -</option>
429
+ </select>
430
+ <?php _e('and higher are allowed to see the statistics page.', 'cpd') ?>
431
+ <div id="cpd_whocansee_custom_div" <?php if (!$cus) echo 'style="display:none"' ?>>
432
+ <?php printf(__('Set the %s capability %s a user need:', 'cpd'), '<a href="https://codex.wordpress.org/Roles_and_Capabilities">', '</a>'); ?>
433
+ <input type="text" name="cpd_whocansee_custom" value="<?php echo $o['whocansee'] ?>" />
434
+ </div>
435
+ </td>
436
+ </tr>
437
+ <tr>
438
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Visitors per post', 'cpd') ?>:</th>
439
+ <td><input class="code" type="text" name="cpd_dashboard_posts" size="3" value="<?php echo $o['dashboard_posts']; ?>" /> <?php _e('How many posts do you want to see on dashboard page?', 'cpd') ?></td>
440
+ </tr>
441
+ <tr>
442
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Posts', 'cpd') ?>:</th>
443
+ <td><input class="code" type="text" name="cpd_dashboard_last_posts" size="3" value="<?php echo $o['dashboard_last_posts']; ?>" /> <?php _e('How many posts do you want to see on dashboard page?', 'cpd') ?></td>
444
+ </tr>
445
+ <tr>
446
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Days', 'cpd') ?>:</th>
447
+ <td><input class="code" type="text" name="cpd_dashboard_last_days" size="3" value="<?php echo $o['dashboard_last_days']; ?>" /> <?php _e('How many days do you want look back?', 'cpd') ?></td>
448
+ </tr>
449
+ <tr>
450
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Days', 'cpd') ?>:</th>
451
+ <td><input class="code" type="text" name="cpd_chart_days" size="3" value="<?php echo $o['chart_days']; ?>" /> <?php _e('How many days do you want look back?', 'cpd') ?></td>
452
+ </tr>
453
+ <tr>
454
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Height', 'cpd') ?>:</th>
455
+ <td><input class="code" type="text" name="cpd_chart_height" size="3" value="<?php echo $o['chart_height']; ?>" /> px - <?php _e('Height of the biggest bar', 'cpd') ?></td>
456
+ </tr>
457
+ <?php if ($cpd_geoip) { ?>
458
+ <tr>
459
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Countries', 'cpd') ?>:</th>
460
+ <td><input class="code" type="text" name="cpd_countries" size="3" value="<?php echo $o['countries']; ?>" /> <?php _e('How many countries do you want to see on dashboard page?', 'cpd') ?></td>
461
+ </tr>
462
+ <?php } ?>
463
+ <tr>
464
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Browsers', 'cpd') ?>:</th>
465
+ <td><input class="code" type="text" name="cpd_clients" size="50" value="<?php echo $o['clients']; ?>" /> <?php _e('Substring of the user agent, separated by comma', 'cpd') ?></td>
466
+ </tr>
467
+ <tr>
468
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Referrers - Entries', 'cpd') ?>:</th>
469
+ <td><input class="code" type="text" name="cpd_dashboard_referers" size="3" value="<?php echo $o['dashboard_referers']; ?>" /> <?php _e('How many referrers do you want to see on dashboard page?', 'cpd') ?></td>
470
+ </tr>
471
+ <tr>
472
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Referrers - Days', 'cpd') ?>:</th>
473
+ <td><input class="code" type="text" name="cpd_referers_last_days" size="3" value="<?php echo $o['referers_last_days']; ?>" /> <?php _e('How many days do you want look back?', 'cpd') ?></td>
474
+ </tr>
475
+ <tr>
476
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Local URLs', 'cpd') ?>:</th>
477
+ <td><label for="cpd_localref"><input type="checkbox" name="cpd_localref" id="cpd_localref" <?php checked($o['localref'], 1) ?> /> <?php _e('Show local referrers too.', 'cpd') ?> (<?php echo bloginfo('url') ?>/...)</label></td>
478
+ </tr>
479
+ </table>
480
+ </fieldset>
481
+
482
+ <?php // lists ?>
483
+ <fieldset>
484
+ <legend><span class="cpd_icon cpd_settings"></span> <?php _e('Posts') ?> / <?php _e('Pages') ?></legend>
485
+ <table class="form-table">
486
+ <tr>
487
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Show in lists', 'cpd') ?>:</th>
488
+ <td><label for="cpd_show_in_lists"><input type="checkbox" name="cpd_show_in_lists" id="cpd_show_in_lists" <?php checked($o['show_in_lists'], 1) ?> /> <?php _e('Show "Reads per Post" in a new column in post management views.', 'cpd') ?></label></td>
489
+ </tr>
490
+ </table>
491
+ </fieldset>
492
+
493
+ <?php // start values ?>
494
+ <fieldset>
495
+ <legend><span class="cpd_icon cpd_settings"></span> <?php _e('Start Values', 'cpd') ?></legend>
496
+ <table class="form-table">
497
+ <tr>
498
+ <th colspan="2">
499
+ <?php _e('Here you can change the date of first count and add a start count.', 'cpd')?>
500
+ </th>
501
+ </tr>
502
+ <tr>
503
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start date', 'cpd') ?>:</th>
504
+ <td><input class="code" type="text" name="cpd_startdate" size="10" value="<?php echo $o['startdate']; ?>" /> <?php _e('Your old Counter starts at?', 'cpd') ?> [yyyy-mm-dd]</td>
505
+ </tr>
506
+ <tr>
507
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start count', 'cpd') ?>:</th>
508
+ <td><input class="code" type="text" name="cpd_startcount" size="10" value="<?php echo $o['startcount']; ?>" /> <?php _e('Add this value to "Total visitors".', 'cpd') ?></td>
509
+ </tr>
510
+ <tr>
511
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start count', 'cpd') ?>:</th>
512
+ <td><input class="code" type="text" name="cpd_startreads" size="10" value="<?php echo $o['startreads']; ?>" /> <?php _e('Add this value to "Total reads".', 'cpd') ?></td>
513
+ </tr>
514
+ </table>
515
+ </fieldset>
516
+
517
+ <?php // stylesheet ?>
518
+ <fieldset>
519
+ <legend><span class="cpd_icon cpd_settings"></span> <?php _e('Stylesheet', 'cpd') ?></legend>
520
+ <table class="form-table">
521
+ <tr>
522
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('NO Stylesheet in Frontend', 'cpd') ?>:</th>
523
+ <td><label for="cpd_no_front_css"><input type="checkbox" name="cpd_no_front_css" id="cpd_no_front_css" <?php checked($o['no_front_css'], 1) ?> /> <?php _e('Do not load the stylesheet "counter.css" in frontend.', 'cpd') ?></label></td>
524
+ </tr>
525
+ </table>
526
+ </fieldset>
527
+
528
+ <?php // backup ?>
529
+ <fieldset>
530
+ <legend><span class="cpd_icon cpd_settings"></span> <?php _e('Backup', 'cpd') ?></legend>
531
+ <table class="form-table">
532
+ <tr>
533
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Entries per pass', 'cpd') ?>:</th>
534
+ <td>
535
+ <input class="code" type="text" name="cpd_backup_part" size="10" value="<?php echo $o['backup_part']; ?>" />
536
+ <?php _e('How many entries should be saved per pass? Default: 10000', 'cpd') ?><br/>
537
+ </td>
538
+ </tr>
539
+ <tr>
540
+ <td colspan="2">
541
+ <?php _e('If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value.', 'cpd') ?>
542
+ </td>
543
+ </tr>
544
+ </table>
545
+ </fieldset>
546
+
547
+ <?php // debug ?>
548
+ <fieldset>
549
+ <legend style="color:red"><span class="cpd_icon cpd_settings"></span> <?php _e('Debug mode', 'cpd') ?></legend>
550
+ <p style="margin-top:15px;margin-left:10px">
551
+ <label for="cpd_debug"><input type="checkbox" name="cpd_debug" id="cpd_debug" <?php checked($o['debug'], 1) ?> /> <?php _e('Show debug informations at the bottom of all pages.', 'cpd') ?></label>
552
  </p>
553
+ </fieldset>
554
+
555
+ <input type="hidden" name="do" value="cpd_update" />
556
+ <input type="submit" name="update" value="<?php _e('Update options', 'cpd') ?>" class="button-primary" style="margin-left: 5px;" />
557
+ </form>
558
+
559
+ <div id="cpdtools" class="postbox" style="margin-top:40px">
560
+ <h3><span class="cpd_icon cpd_settings"></span> <a href="#cpdsettings"><?php _e('Settings') ?></a> |
561
+ <span class="cpd_icon cpd_tools"></span> <?php _e('Tools') ?></h3>
562
  </div>
563
 
564
+ <?php // mass bots ?>
565
  <div class="postbox">
566
  <?php
567
  $limit = (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25;
568
  $limit = (isset($_POST['limit'])) ? $_POST['limit'] : $limit;
569
  $limit_input = '<input type="text" size="3" name="limit" value="'.$limit.'" />';
570
+
571
+ if ( $limit == 0 )
572
+ $limit = 50;
573
+ $bots = $count_per_day->getMassBots( $limit );
574
  ?>
575
+ <h3><span class="cpd_icon cpd_massbots"></span> <?php _e('Mass Bots', 'cpd') ?></h3>
576
  <div class="inside">
577
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>#cpdtools">
578
  <p>
579
  <?php printf(__('Show all IPs with more than %s page views per day', 'cpd'), $limit_input) ?>
580
  <input type="submit" name="showmassbots" value="<?php _e('show', 'cpd') ?>" class="button" />
588
  <th><?php _e('IP', 'cpd') ?></th>
589
  <th><?php _e('Date', 'cpd') ?></th>
590
  <th><?php _e('Client', 'cpd') ?></th>
591
+ <th style="text-align:right"><?php _e('Views', 'cpd') ?></th>
592
  </tr>
593
  </thead>
594
  <?php
595
  $sum = 0;
596
+ foreach ($bots as $row)
597
+ {
598
+ $ip = $row->ip;
599
+ echo '<tr><td style="white-space:nowrap">';
600
+ if ( $cpd_geoip )
601
  {
602
+ $c = CpdGeoIp::getCountry($ip);
603
+ echo $c[1].' &nbsp;';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
604
  }
605
+ echo '<a href="?page=count-per-day/counter-options.php&amp;dmbip='.$row->longip.'&amp;dmbdate='.$row->date.'"
606
+ title="'.sprintf(__('Delete these %s counts', 'cpd'), $row->posts).'"
607
+ style="color:red; font-weight: bold;">X</a> &nbsp;';
608
+ echo '<a href="http://www.utrace.de/?query='.$ip.'">'.$ip.'</a></td>'
609
+ .'<td style="white-space:nowrap;">'.mysql2date(get_option('date_format'), $row->date).'</td>'
610
+ .'<td>'.htmlentities($row->client).'</td>'
611
+ .'<td style="text-align:right;"><a href="'.$count_per_day->dir.'/massbots.php?dmbip='.$row->longip.'&amp;dmbdate='.$row->date.'&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day" class="thickbox">'
612
+ .$row->posts.'</a></td>'
613
+ .'</tr>';
614
+ $sum += $row->posts;
615
+ }
616
  ?>
617
  </table>
618
  <?php if ( $sum ) { ?>
619
+ <p>
620
  <input type="hidden" name="do" value="cpd_delete_massbots" />
621
  <input type="hidden" name="limit" value="<?php echo $limit ?>" />
622
  <input type="submit" name="clean" value="<?php printf(__('Delete these %s counts', 'cpd'), $sum) ?>" class="button" />
625
  </form>
626
  </div>
627
  </div>
628
+
629
+ <!-- left column -->
630
+ <div class="cpd_halfsize" style="margin-right: 2%;">
631
+
632
+ <!-- Backup -->
633
+ <div class="postbox">
634
+ <h3><span class="cpd_icon cpd_backup"></span> <?php _e('Backup', 'cpd') ?></h3>
635
+ <div class="inside">
636
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
637
+ <p>
638
+ <?php printf(__('Create a backup of the counter table %s in your wp-content directory (if writable).', 'cpd'), '<code>'.$wpdb->cpd_counter.'</code>') ?>
639
+ </p>
640
+ <p>
641
+ <input type="hidden" name="do" value="cpd_backup" />
642
+ <input type="submit" name="backup" value="<?php _e('Backup the database', 'cpd') ?>" class="button" />
643
+ </p>
644
+ </form>
645
+ <p>
646
+ <?php
647
+ if ( is_writable(WP_CONTENT_DIR) )
648
+ {
649
+ $d = dir(WP_CONTENT_DIR);
650
+ while ( ($entry = $d->read()) !== false )
651
+ if ( preg_match('/count_per_day|cpd_counter/i', $entry) )
652
+ echo '<a href="'.content_url().'/'.$entry.'">'.$entry.'</a> - '.$count_per_day->formatbytes(filesize(WP_CONTENT_DIR.'/'.$entry)).'<br/>';
653
+ $d->close();
654
+ }
655
+ ?>
656
+ </p>
657
+ </div>
658
+ </div>
659
+
660
  <!-- Cleaner -->
661
  <?php if ( $count_per_day->options['referers'] ) : ?>
662
  <div class="postbox">
663
+ <h3><span class="cpd_icon cpd_clean"></span> <?php _e('Clean the database', 'cpd') ?></h3>
664
  <div class="inside">
665
  <p>
666
  <?php _e('You can clean the counter table by delete the "spam data".<br />If you add new bots above the old "spam data" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots.', 'cpd') ?>
667
  </p>
668
 
669
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
670
+ <p>
671
  <input type="hidden" name="do" value="cpd_clean" />
672
  <input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
673
  </p>
675
  </div>
676
  </div>
677
  <?php endif; ?>
678
+
679
+ <!-- Collect -->
680
+ <div class="postbox">
681
+ <h3><span class="cpd_icon cpd_collection"></span> <?php _e('Collect old data', 'cpd') ?></h3>
682
+ <div class="inside">
683
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
684
+ <p>
685
+ <?php
686
+ printf(__('Current size of your counter table %s is %s.', 'cpd'), '<code>'.$wpdb->cpd_counter.'</code>', $count_per_day->getTableSize($wpdb->cpd_counter));
687
+ echo '<br/>';
688
+ _e('You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted.', 'cpd');
689
+ echo '<br/>';
690
+ $x = $count_per_day->getLastCollectedMonth();
691
+ $m = __(date( 'F', strtotime($x.'-01'))).' '.substr($x, 0, 4);
692
+ if ($x && $m)
693
+ printf(__('Currently your collection contains data until %s.', 'cpd'), $m);
694
+ ?>
695
+ </p>
696
+ <p>
697
+ <?php _e('Normally new data will be added to the collection.', 'cpd') ?>
698
+ </p>
699
+ <?php if ($m) { ?>
700
+ <p style="color:red">
701
+ <input type="checkbox" name="cpd_new_collection" value="1" />
702
+ <?php
703
+ echo __('Delete old collection and create a new one which contains only the data currently in counter table.', 'cpd')
704
+ .' '.sprintf(__('All collected data until %s will deleted.', 'cpd'), $m);
705
+ ?>
706
+ </p>
707
+ <?php } ?>
708
+ <p>
709
+ <?php printf(__('Keep entries of last %s full months + current month in counter table.', 'cpd'), '<input type="text" size="2" name="cpd_keep_month" value="6" class="code" />') ?>
710
+ </p>
711
+ <p>
712
+ <input type="hidden" name="do" value="cpd_collect" />
713
+ <input type="submit" name="collect" value="<?php _e('Collect old data', 'cpd') ?>" class="button" />
714
+ </p>
715
+ </form>
716
+ </div>
717
+ </div>
718
 
719
+ <!-- Plugin page -->
720
+ <div class="postbox">
721
+ <h3><span class="cpd_icon cpd_help"></span> <?php _e('Support', 'cpd') ?></h3>
722
+ <div class="inside">
723
+ <?php $count_per_day->cpdInfo() ?>
724
+ </div>
725
+ </div>
726
+
727
+ </div> <!-- left column -->
728
+
729
+ <!-- right column -->
730
+ <div class="cpd_halfsize">
731
+
732
+ <!-- Countries -->
733
+ <div class="postbox">
734
+ <h3><span class="cpd_icon cpd_geoip"></span> <?php _e('GeoIP - Countries', 'cpd') ?></h3>
735
+ <div class="inside">
736
+ <p>
737
+ <?php _e('You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!', 'cpd') ?>
738
+ </p>
739
+ <?php if ( $cpd_geoip ) { ?>
740
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
741
+ <p>
742
+ <input type="hidden" name="do" value="cpd_countries" />
743
+ <input type="submit" name="updcon" value="<?php _e('Update old counter data', 'cpd') ?>" class="button" />
744
+ </p>
745
+ </form>
746
+ <?php } ?>
747
+
748
+ <?php if ( class_exists('CpdGeoIp') && ini_get('allow_url_fopen') && function_exists('gzopen') ) {
749
+ // install or update database
750
+ echo '<p>'.__('Download a new version of GeoIP.dat file.', 'cpd').'</p>';
751
+ ?>
752
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
753
+ <p>
754
+ <input type="hidden" name="do" value="cpd_countrydb" />
755
+ <input type="submit" name="updcondb" value="<?php _e('Update GeoIP database', 'cpd') ?>" class="button" />
756
+ </p>
757
+ </form>
758
+ <?php } ?>
759
+ <p>
760
+ <span class="cpd-r"><?php _e('More informations about GeoIP', 'cpd') ?>:
761
+ <a href="http://www.maxmind.com/app/geoip_country">www.maxmind.com</a></span>&nbsp;
762
+ </p>
763
+ </div>
764
+ </div>
765
+
766
+ <!-- ReActivation -->
767
+ <div class="postbox">
768
+ <h3><span class="cpd_icon cpd_update"></span> <?php _e('ReActivation', 'cpd') ?></h3>
769
+ <div class="inside">
770
+ <p>
771
+ <?php _e('Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin.', 'cpd') ?>
772
+ </p>
773
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
774
+ <p>
775
+ <input type="hidden" name="do" value="cpd_activate" />
776
+ <input type="submit" name="activate" value="<?php _e('ReActivate the plugin', 'cpd') ?>" class="button" />
777
+ </p>
778
+ </form>
779
+ </div>
780
+ </div>
781
+
782
  <!-- Reset DBs -->
783
  <div class="postbox">
784
+ <h3><span class="cpd_icon cpd_reset"></span> <?php _e('Reset the counter', 'cpd') ?></h3>
785
  <div class="inside">
786
  <p style="color: red">
787
  <?php _e('You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!', 'cpd') ?>
788
  </p>
789
 
790
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
791
+ <p>
792
  <input type="hidden" name="do" value="cpd_reset" />
793
+ <input type="checkbox" name="reset_cpd_yes" value="yes" />&nbsp;<?php _e('Yes', 'cpd'); ?> &nbsp;
794
+ <input type="submit" name="clean" value="<?php _e('Reset the counter', 'cpd') ?>" class="button cpd_red" />
795
  </p>
796
  </form>
797
  </div>
798
  </div>
799
+
800
  <!-- Uninstall -->
801
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
802
  <div class="postbox">
803
+ <h3><span class="cpd_icon cpd_uninstall"></span> <?php _e('Uninstall', 'cpd') ?></h3>
804
  <div class="inside">
805
  <p>
806
  <?php _e('If "Count per Day" only disabled the tables in the database will be preserved.', 'cpd') ?><br/>
809
  <p style="color: red">
810
  <strong><?php _e('WARNING', 'cpd') ?>:</strong><br />
811
  <?php _e('These tables (with ALL counter data) will be deleted.', 'cpd') ?><br />
812
+ <b><?php echo $wpdb->cpd_counter ?></b><br />
813
  <?php _e('If "Count per Day" re-installed, the counter starts at 0.', 'cpd') ?>
814
  </p>
815
+ <p>
816
+ <input type="checkbox" name="uninstall_cpd_yes" value="yes" />&nbsp;<?php _e('Yes', 'cpd'); ?> &nbsp;
817
+ <input type="submit" name="do" value="<?php _e('UNINSTALL Count per Day', 'cpd') ?>" class="button cpd_red" onclick="return confirm('<?php _e('You are sure to disable Count per Day and delete all data?', 'cpd') ?>')" />
 
818
  </p>
819
  </div>
820
  </div>
821
  </form>
822
 
823
+ </div> <!-- right column -->
824
+ <div class="clear"></div>
 
 
 
 
 
 
825
 
826
  </div><!-- poststuff -->
827
  </div><!-- wrap -->
counter.css CHANGED
@@ -9,46 +9,79 @@
9
  float: right;
10
  }
11
 
12
- .cpd_front_chart {
13
- padding-bottom: 5px;
14
- }
15
-
16
- .cpd_front_chart p {
17
- padding: 0 !important;
18
- }
19
 
20
- .cpd_front_chart img {
21
- vertical-align: bottom;
 
22
  }
23
 
24
- /* settings */
25
-
26
  .cpd_settings fieldset {
27
- margin: 10px 5px 20px;
28
- padding: 0 10px 10px;
29
  border: 1px solid #dfdfdf;
30
- border-radius: 6px;
31
- -moz-border-radius: 6px;
32
- -webkit-border-radius: 6px;
 
33
  }
34
 
35
  .cpd_settings legend {
36
- background: #dfdfdf;
37
- border-radius: 10px;
38
- -moz-border-radius: 10px;
39
- -webkit-border-radius: 10px;
 
40
  margin: 0 10px;
41
- padding: 5px 10px;
42
  text-shadow: 0 1px 0 #fff;
43
- font-weight: bold;
 
 
 
 
 
 
 
 
 
44
  }
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  /* dashboard */
47
 
48
  #cpd-flot-place {
49
  padding: 5px;
50
  background: #fff;
51
- border-radius: 6px;
52
  border: 1px #ccc solid;
53
  }
54
 
@@ -60,6 +93,7 @@
60
  #cpd-flot {
61
  overflow: hidden;
62
  }
 
63
  #cpd-tooltip {
64
  position: absolute;
65
  z-index: 10;
@@ -74,7 +108,6 @@
74
 
75
  .cpd-list-chart {
76
  margin-bottom: 10px;
77
- height: 50px;
78
  border: 1px solid #ddd;
79
  background: -moz-linear-gradient(top, #ccc 0, #fff 80%);
80
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(80%, #fff));
@@ -99,6 +132,7 @@
99
 
100
  .cpd-dashboard li b {
101
  float: right;
 
102
  font-family: Georgia,"Times New Roman",Times,serif;
103
  font-size: 18px;
104
  color: #2583ad;
@@ -122,6 +156,7 @@
122
 
123
  .cpd-r {
124
  float: right;
 
125
  }
126
 
127
  /* widget */
@@ -239,122 +274,124 @@
239
  background-repeat: no-repeat;
240
  }
241
 
242
- .cpd-flag-ae {background-position:0 0;}
243
  .cpd-flag-af, .cpd-flag-xh, .cpd-flag-zu {background-position:0 -13px;}
244
- .cpd-flag-al {background-position:0 -26px;}
245
- .cpd-flag-am {background-position:0 -39px;}
246
- .cpd-flag-ar {background-position:0 -52px;}
247
- .cpd-flag-at {background-position:0 -65px;}
248
- .cpd-flag-au {background-position:0 -78px;}
249
- .cpd-flag-az {background-position:0 -91px;}
250
- .cpd-flag-ba {background-position:0 -104px;}
251
- .cpd-flag-bd {background-position:0 -117px;}
252
- .cpd-flag-be {background-position:0 -130px;}
253
- .cpd-flag-bg {background-position:0 -143px;}
254
- .cpd-flag-bh {background-position:0 -156px;}
255
- .cpd-flag-bn {background-position:0 -169px;}
256
- .cpd-flag-bo {background-position:0 -182px;}
257
- .cpd-flag-br {background-position:0 -195px;}
258
- .cpd-flag-by {background-position:0 -208px;}
259
- .cpd-flag-bz {background-position:0 -221px;}
260
- .cpd-flag-ca {background-position:0 -234px;}
261
- .cpd-flag-ch {background-position:0 -247px;}
262
- .cpd-flag-ci {background-position:0 -260px;}
263
- .cpd-flag-cl {background-position:0 -273px;}
264
- .cpd-flag-cn {background-position:0 -286px;}
265
- .cpd-flag-co {background-position:0 -299px;}
266
- .cpd-flag-cr {background-position:0 -312px;}
267
- .cpd-flag-cs {background-position:0 -325px;}
268
  .cpd-flag-cy, .cpd-flag-el, .cpd-flag-gr {background-position:0 -338px;}
269
- .cpd-flag-cz {background-position:0 -351px;}
270
  .cpd-flag-da, .cpd-flag-dk {background-position:0 -364px;}
271
- .cpd-flag-de {background-position:0 -377px;}
272
- .cpd-flag-do {background-position:0 -390px;}
273
- .cpd-flag-dz {background-position:0 -403px;}
274
- .cpd-flag-ec {background-position:0 -416px;}
275
- .cpd-flag-ee {background-position:0 -429px;}
276
- .cpd-flag-eg {background-position:0 -442px;}
277
  .cpd-flag-en, .cpd-flag-us {background-position:0 -455px;}
278
- .cpd-flag-eo {background-position:0 -468px;}
279
- .cpd-flag-es {background-position:0 -481px;}
280
- .cpd-flag-eu {background-position:0 -494px;}
281
- .cpd-flag-fi {background-position:0 -507px;}
282
- .cpd-flag-fo {background-position:0 -520px;}
283
- .cpd-flag-fr {background-position:0 -533px;}
284
- .cpd-flag-gb {background-position:0 -546px;}
285
- .cpd-flag-ge {background-position:0 -559px;}
286
- .cpd-flag-gt {background-position:0 -572px;}
287
- .cpd-flag-hk {background-position:0 -585px;}
288
- .cpd-flag-hn {background-position:0 -598px;}
289
- .cpd-flag-hr {background-position:0 -611px;}
290
- .cpd-flag-hu {background-position:0 -624px;}
291
- .cpd-flag-id {background-position:0 -637px;}
292
- .cpd-flag-ie {background-position:0 -650px;}
293
- .cpd-flag-il {background-position:0 -663px;}
294
- .cpd-flag-in {background-position:0 -676px;}
295
- .cpd-flag-iq {background-position:0 -689px;}
296
- .cpd-flag-ir {background-position:0 -702px;}
297
- .cpd-flag-is {background-position:0 -715px;}
298
- .cpd-flag-it {background-position:0 -728px;}
299
  .cpd-flag-ja, .cpd-flag-jp {background-position:0 -741px;}
300
- .cpd-flag-jm {background-position:0 -754px;}
301
- .cpd-flag-jo {background-position:0 -767px;}
302
- .cpd-flag-kk {background-position:0 -780px;}
303
- .cpd-flag-kp {background-position:0 -793px;}
304
- .cpd-flag-kr {background-position:0 -806px;}
305
- .cpd-flag-kw {background-position:0 -819px;}
306
- .cpd-flag-ky {background-position:0 -832px;}
307
- .cpd-flag-lb {background-position:0 -845px;}
308
- .cpd-flag-li {background-position:0 -858px;}
309
- .cpd-flag-lk {background-position:0 -871px;}
310
- .cpd-flag-ls {background-position:0 -884px;}
311
- .cpd-flag-lt {background-position:0 -897px;}
312
- .cpd-flag-lu {background-position:0 -910px;}
313
- .cpd-flag-lv {background-position:0 -923px;}
314
- .cpd-flag-ly {background-position:0 -936px;}
315
- .cpd-flag-ma {background-position:0 -949px;}
316
- .cpd-flag-mk {background-position:0 -962px;}
317
- .cpd-flag-mm {background-position:0 -975px;}
318
- .cpd-flag-mo {background-position:0 -988px;}
319
- .cpd-flag-mt {background-position:0 -1001px;}
320
- .cpd-flag-mx {background-position:0 -1014px;}
321
- .cpd-flag-my {background-position:0 -1027px;}
322
  .cpd-flag-nb, .cpd-flag-nn, .cpd-flag-no {background-position:0 -1040px;}
323
- .cpd-flag-ni {background-position:0 -1053px;}
324
- .cpd-flag-nl {background-position:0 -1066px;}
325
- .cpd-flag-nz {background-position:0 -1079px;}
326
- .cpd-flag-om {background-position:0 -1092px;}
327
- .cpd-flag-pa {background-position:0 -1105px;}
328
- .cpd-flag-pe {background-position:0 -1118px;}
329
- .cpd-flag-ph {background-position:0 -1131px;}
330
- .cpd-flag-pk {background-position:0 -1144px;}
331
- .cpd-flag-pl {background-position:0 -1157px;}
332
- .cpd-flag-pr {background-position:0 -1170px;}
333
- .cpd-flag-pt {background-position:0 -1183px;}
334
- .cpd-flag-py {background-position:0 -1196px;}
335
- .cpd-flag-qa {background-position:0 -1209px;}
336
- .cpd-flag-ro {background-position:0 -1222px;}
337
- .cpd-flag-rs {background-position:0 -1235px;}
338
- .cpd-flag-ru {background-position:0 -1248px;}
339
- .cpd-flag-sa {background-position:0 -1261px;}
340
- .cpd-flag-se {background-position:0 -1274px;}
341
- .cpd-flag-sg {background-position:0 -1287px;}
342
- .cpd-flag-si {background-position:0 -1300px;}
343
- .cpd-flag-sk {background-position:0 -1313px;}
344
- .cpd-flag-sv {background-position:0 -1326px;}
345
- .cpd-flag-sy {background-position:0 -1339px;}
346
- .cpd-flag-th {background-position:0 -1352px;}
347
- .cpd-flag-tn {background-position:0 -1365px;}
348
- .cpd-flag-tr {background-position:0 -1378px;}
349
- .cpd-flag-tt {background-position:0 -1391px;}
350
- .cpd-flag-tw {background-position:0 -1404px;}
351
- .cpd-flag-tz {background-position:0 -1417px;}
352
- .cpd-flag-ua {background-position:0 -1430px;}
353
- .cpd-flag-unknown, .cpd-flag-a1, .cpd-flag-a2, .cpd-flag-o1 {background-position:0 -1443px;}
354
- .cpd-flag-uy {background-position:0 -1456px;}
355
- .cpd-flag-uz {background-position:0 -1469px;}
356
- .cpd-flag-ve {background-position:0 -1482px;}
357
- .cpd-flag-vn {background-position:0 -1495px;}
358
- .cpd-flag-ye {background-position:0 -1508px;}
359
- .cpd-flag-za {background-position:0 -1521px;}
360
- .cpd-flag-me {background-position:0 -1534px;}
 
 
9
  float: right;
10
  }
11
 
12
+ /* settings */
 
 
 
 
 
 
13
 
14
+ .cpd_halfsize {
15
+ width: 49%;
16
+ float: left;
17
  }
18
 
 
 
19
  .cpd_settings fieldset {
20
+ margin: 5px 5px 10px;
21
+ padding: 0 10px 0px;
22
  border: 1px solid #dfdfdf;
23
+ border-radius: 3px;
24
+ -moz-border-radius: 3px;
25
+ -webkit-border-radius: 3px;
26
+ background: #fafafa;
27
  }
28
 
29
  .cpd_settings legend {
30
+ background: #eee;
31
+ border: 1px solid #dfdfdf;
32
+ border-radius: 3px;
33
+ -moz-border-radius: 3px;
34
+ -webkit-border-radius: 3px;
35
  margin: 0 10px;
36
+ padding: 1px 7px 2px;
37
  text-shadow: 0 1px 0 #fff;
38
+ font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
39
+ font-size: 15px;
40
+ }
41
+
42
+ .cpd_settings .form-table {
43
+ margin-bottom: 5px !important;
44
+ }
45
+
46
+ .cpd_red {
47
+ color:red !important;
48
  }
49
 
50
+ .cpd_icon {
51
+ display: inline-block;
52
+ background: url(img/cpd_sprites.png) no-repeat top left;
53
+ width: 16px;
54
+ height: 16px;
55
+ vertical-align: text-bottom;
56
+ padding: 0 !important;
57
+ }
58
+ .cpd_backup{background-position: 0 0}
59
+ .cpd_clean{background-position: 0 -46px}
60
+ .cpd_collection{background-position: 0 -92px}
61
+ .cpd_computer{background-position: 0 -138px}
62
+ .cpd_calendar{background-position: 0 -184px}
63
+ .cpd_day{background-position: 0 -230px}
64
+ .cpd_geoip{background-position: 0 -276px}
65
+ .cpd_help{background-position: 0 -322px}
66
+ .cpd_massbots{background-position: 0 -368px}
67
+ .cpd_online{background-position: 0 -414px}
68
+ .cpd_post{background-position: 0 -460px}
69
+ .cpd_reads{background-position: 0 -506px}
70
+ .cpd_referrer{background-position: 0 -552px}
71
+ .cpd_reset{background-position: 0 -598px}
72
+ .cpd_settings{background-position: 0 -644px}
73
+ .cpd_summary{background-position: 0 -690px}
74
+ .cpd_tools{background-position: 0 -736px}
75
+ .cpd_uninstall{background-position: 0 -782px}
76
+ .cpd_update{background-position: 0 -828px}
77
+ .cpd_user{background-position: 0 -874px}
78
+
79
  /* dashboard */
80
 
81
  #cpd-flot-place {
82
  padding: 5px;
83
  background: #fff;
84
+ border-radius: 3px;
85
  border: 1px #ccc solid;
86
  }
87
 
93
  #cpd-flot {
94
  overflow: hidden;
95
  }
96
+
97
  #cpd-tooltip {
98
  position: absolute;
99
  z-index: 10;
108
 
109
  .cpd-list-chart {
110
  margin-bottom: 10px;
 
111
  border: 1px solid #ddd;
112
  background: -moz-linear-gradient(top, #ccc 0, #fff 80%);
113
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(80%, #fff));
132
 
133
  .cpd-dashboard li b {
134
  float: right;
135
+ text-align: right;
136
  font-family: Georgia,"Times New Roman",Times,serif;
137
  font-size: 18px;
138
  color: #2583ad;
156
 
157
  .cpd-r {
158
  float: right;
159
+ text-align: right;
160
  }
161
 
162
  /* widget */
274
  background-repeat: no-repeat;
275
  }
276
 
277
+ .cpd-flag-ae{background-position:0 0;}
278
  .cpd-flag-af, .cpd-flag-xh, .cpd-flag-zu {background-position:0 -13px;}
279
+ .cpd-flag-al{background-position:0 -26px;}
280
+ .cpd-flag-am{background-position:0 -39px;}
281
+ .cpd-flag-ar{background-position:0 -52px;}
282
+ .cpd-flag-at{background-position:0 -65px;}
283
+ .cpd-flag-au{background-position:0 -78px;}
284
+ .cpd-flag-az{background-position:0 -91px;}
285
+ .cpd-flag-ba{background-position:0 -104px;}
286
+ .cpd-flag-bd{background-position:0 -117px;}
287
+ .cpd-flag-be{background-position:0 -130px;}
288
+ .cpd-flag-bg{background-position:0 -143px;}
289
+ .cpd-flag-bh{background-position:0 -156px;}
290
+ .cpd-flag-bn{background-position:0 -169px;}
291
+ .cpd-flag-bo{background-position:0 -182px;}
292
+ .cpd-flag-br{background-position:0 -195px;}
293
+ .cpd-flag-by{background-position:0 -208px;}
294
+ .cpd-flag-bz{background-position:0 -221px;}
295
+ .cpd-flag-ca{background-position:0 -234px;}
296
+ .cpd-flag-ch{background-position:0 -247px;}
297
+ .cpd-flag-ci{background-position:0 -260px;}
298
+ .cpd-flag-cl{background-position:0 -273px;}
299
+ .cpd-flag-cn{background-position:0 -286px;}
300
+ .cpd-flag-co{background-position:0 -299px;}
301
+ .cpd-flag-cr{background-position:0 -312px;}
302
+ .cpd-flag-cs{background-position:0 -325px;}
303
  .cpd-flag-cy, .cpd-flag-el, .cpd-flag-gr {background-position:0 -338px;}
304
+ .cpd-flag-cz{background-position:0 -351px;}
305
  .cpd-flag-da, .cpd-flag-dk {background-position:0 -364px;}
306
+ .cpd-flag-de{background-position:0 -377px;}
307
+ .cpd-flag-do{background-position:0 -390px;}
308
+ .cpd-flag-dz{background-position:0 -403px;}
309
+ .cpd-flag-ec{background-position:0 -416px;}
310
+ .cpd-flag-ee{background-position:0 -429px;}
311
+ .cpd-flag-eg{background-position:0 -442px;}
312
  .cpd-flag-en, .cpd-flag-us {background-position:0 -455px;}
313
+ .cpd-flag-eo{background-position:0 -468px;}
314
+ .cpd-flag-es{background-position:0 -481px;}
315
+ .cpd-flag-eu{background-position:0 -494px;}
316
+ .cpd-flag-fi{background-position:0 -507px;}
317
+ .cpd-flag-fo{background-position:0 -520px;}
318
+ .cpd-flag-fr{background-position:0 -533px;}
319
+ .cpd-flag-gb{background-position:0 -546px;}
320
+ .cpd-flag-ge{background-position:0 -559px;}
321
+ .cpd-flag-gt{background-position:0 -572px;}
322
+ .cpd-flag-hk{background-position:0 -585px;}
323
+ .cpd-flag-hn{background-position:0 -598px;}
324
+ .cpd-flag-hr{background-position:0 -611px;}
325
+ .cpd-flag-hu{background-position:0 -624px;}
326
+ .cpd-flag-id{background-position:0 -637px;}
327
+ .cpd-flag-ie{background-position:0 -650px;}
328
+ .cpd-flag-il{background-position:0 -663px;}
329
+ .cpd-flag-in{background-position:0 -676px;}
330
+ .cpd-flag-iq{background-position:0 -689px;}
331
+ .cpd-flag-ir{background-position:0 -702px;}
332
+ .cpd-flag-is{background-position:0 -715px;}
333
+ .cpd-flag-it{background-position:0 -728px;}
334
  .cpd-flag-ja, .cpd-flag-jp {background-position:0 -741px;}
335
+ .cpd-flag-jm{background-position:0 -754px;}
336
+ .cpd-flag-jo{background-position:0 -767px;}
337
+ .cpd-flag-kk{background-position:0 -780px;}
338
+ .cpd-flag-kp{background-position:0 -793px;}
339
+ .cpd-flag-kr{background-position:0 -806px;}
340
+ .cpd-flag-kw{background-position:0 -819px;}
341
+ .cpd-flag-ky{background-position:0 -832px;}
342
+ .cpd-flag-lb{background-position:0 -845px;}
343
+ .cpd-flag-li{background-position:0 -858px;}
344
+ .cpd-flag-lk{background-position:0 -871px;}
345
+ .cpd-flag-ls{background-position:0 -884px;}
346
+ .cpd-flag-lt{background-position:0 -897px;}
347
+ .cpd-flag-lu{background-position:0 -910px;}
348
+ .cpd-flag-lv{background-position:0 -923px;}
349
+ .cpd-flag-ly{background-position:0 -936px;}
350
+ .cpd-flag-ma{background-position:0 -949px;}
351
+ .cpd-flag-mk{background-position:0 -962px;}
352
+ .cpd-flag-mm{background-position:0 -975px;}
353
+ .cpd-flag-mo{background-position:0 -988px;}
354
+ .cpd-flag-mt{background-position:0 -1001px;}
355
+ .cpd-flag-mx{background-position:0 -1014px;}
356
+ .cpd-flag-my{background-position:0 -1027px;}
357
  .cpd-flag-nb, .cpd-flag-nn, .cpd-flag-no {background-position:0 -1040px;}
358
+ .cpd-flag-ni{background-position:0 -1053px;}
359
+ .cpd-flag-nl{background-position:0 -1066px;}
360
+ .cpd-flag-nz{background-position:0 -1079px;}
361
+ .cpd-flag-om{background-position:0 -1092px;}
362
+ .cpd-flag-pa{background-position:0 -1105px;}
363
+ .cpd-flag-pe{background-position:0 -1118px;}
364
+ .cpd-flag-ph{background-position:0 -1131px;}
365
+ .cpd-flag-pk{background-position:0 -1144px;}
366
+ .cpd-flag-pl{background-position:0 -1157px;}
367
+ .cpd-flag-pr{background-position:0 -1170px;}
368
+ .cpd-flag-pt{background-position:0 -1183px;}
369
+ .cpd-flag-py{background-position:0 -1196px;}
370
+ .cpd-flag-qa{background-position:0 -1209px;}
371
+ .cpd-flag-ro{background-position:0 -1222px;}
372
+ .cpd-flag-rs{background-position:0 -1235px;}
373
+ .cpd-flag-ru{background-position:0 -1248px;}
374
+ .cpd-flag-sa{background-position:0 -1261px;}
375
+ .cpd-flag-se{background-position:0 -1274px;}
376
+ .cpd-flag-sg{background-position:0 -1287px;}
377
+ .cpd-flag-si{background-position:0 -1300px;}
378
+ .cpd-flag-sk{background-position:0 -1313px;}
379
+ .cpd-flag-sv{background-position:0 -1326px;}
380
+ .cpd-flag-sy{background-position:0 -1339px;}
381
+ .cpd-flag-th{background-position:0 -1352px;}
382
+ .cpd-flag-tn{background-position:0 -1365px;}
383
+ .cpd-flag-tr{background-position:0 -1378px;}
384
+ .cpd-flag-tt{background-position:0 -1391px;}
385
+ .cpd-flag-tw{background-position:0 -1404px;}
386
+ .cpd-flag-tz{background-position:0 -1417px;}
387
+ .cpd-flag-ua{background-position:0 -1430px;}
388
+ .cpd-flag-unknown, .cpd-flag-a1, .cpd-flag-a2, .cpd-flag-o1{background-position:0 -1443px;}
389
+ .cpd-flag-uy{background-position:0 -1456px;}
390
+ .cpd-flag-uz{background-position:0 -1469px;}
391
+ .cpd-flag-ve{background-position:0 -1482px;}
392
+ .cpd-flag-vn{background-position:0 -1495px;}
393
+ .cpd-flag-ye{background-position:0 -1508px;}
394
+ .cpd-flag-za{background-position:0 -1521px;}
395
+ .cpd-flag-me{background-position:0 -1534px;}
396
+ .cpd-flag-md{background-position:0 -1547px;}
397
+ .cpd-flag-np{background-position:0 -1560px;}
counter.php CHANGED
@@ -3,199 +3,30 @@
3
  Plugin Name: Count Per Day
4
  Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
5
  Description: Counter, shows reads per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
6
- Version: 2.17
7
- License: Postcardware :)
8
  Author: Tom Braider
9
  Author URI: http://www.tomsdimension.de
10
  */
11
 
12
  $cpd_dir_name = 'count-per-day';
13
- $cpd_version = '2.17';
14
 
15
- /**
16
- * include GeoIP addon
17
- */
18
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
19
-
20
- if ( file_exists($cpd_path.'geoip/geoip.php') )
21
- include_once($cpd_path.'geoip/geoip.php');
22
- $cpd_geoip = ( class_exists('CpdGeoIp') && file_exists($cpd_path.'geoip/GeoIP.dat') ) ? 1 : 0;
23
 
24
  /**
25
  * Count per Day
26
  */
27
- class CountPerDay
28
  {
29
-
30
- var $options; // options array
31
- var $dir; // this plugin dir
32
- var $dbcon; // database connection
33
- var $queries = array(); // queries times for debug
34
- var $page; // Post/Page-ID
35
- var $installed = false; // CpD installed in subblogs?
36
 
37
  /**
38
- * Constructor
39
  */
40
  function CountPerDay()
41
  {
42
- // variables
43
- global $table_prefix, $cpd_path, $cpd_dir_name;
44
- define('CPD_C_TABLE', $table_prefix.'cpd_counter');
45
- define('CPD_CO_TABLE', $table_prefix.'cpd_counter_useronline');
46
- define('CPD_N_TABLE', $table_prefix.'cpd_notes');
47
- define('CPD_METABOX', 'cpd_metaboxes');
48
-
49
- // use local time, not UTC
50
- get_option('gmt_offset');
51
-
52
- $this->options = get_option('count_per_day');
53
-
54
- // manual debug mode
55
- if ( !empty($_GET['debug']) && WP_DEBUG )
56
- $this->options['debug'] = 1;
57
-
58
- $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
59
- $this->queries[0] = 0;
60
-
61
- // update online counter
62
- add_action('wp', array(&$this, 'deleteOnlineCounter'));
63
-
64
- // admin menu
65
- if ( is_admin() )
66
- add_action('admin_menu', array(&$this, 'menu'));
67
-
68
- // settings link on plugin page
69
- add_filter('plugin_action_links', array(&$this, 'pluginActions'), 10, 2);
70
-
71
- // auto counter
72
- if ( $this->options['autocount'] == 1 )
73
- add_action('wp', array(&$this,'count'));
74
-
75
- // javascript to count cached posts
76
- if ( $this->options['ajax'] == 1 )
77
- {
78
- wp_enqueue_script('jquery');
79
- add_action('wp_footer', array(&$this,'addAjaxScript'));
80
- }
81
-
82
- // widget on dashboard page
83
- if (is_admin())
84
- add_action('wp_dashboard_setup', array(&$this, 'dashboardWidgetSetup'));
85
-
86
- // CpD dashboard page
87
- if (is_admin())
88
- add_filter('screen_layout_columns', array(&$this, 'screenLayoutColumns'), 10, 2);
89
-
90
- // CpD dashboard
91
- if (is_admin())
92
- add_action('admin_menu', array(&$this, 'setAdminMenu'));
93
-
94
- // column page list
95
- if (is_admin())
96
- add_action('manage_pages_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
97
- add_filter('manage_pages_columns', array(&$this, 'cpdColumn'));
98
-
99
- // column post list
100
- if (is_admin())
101
- add_action('manage_posts_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
102
- add_filter('manage_posts_columns', array(&$this, 'cpdColumn'));
103
-
104
- // locale support
105
- if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
106
- load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
107
-
108
- // adds stylesheet
109
- if (is_admin())
110
- add_action('admin_head', array(&$this, 'addCss'));
111
- if ( empty($this->options['no_front_css']) )
112
- add_action('wp_head', array(&$this, 'addCss'));
113
-
114
- // adds javascript
115
- if (is_admin())
116
- add_action('admin_head', array(&$this, 'addJS'));
117
-
118
- // widget setup
119
- add_action('widgets_init', array( &$this, 'register_widgets'));
120
-
121
- // activation hook
122
- register_activation_hook(ABSPATH.PLUGINDIR.'/count-per-day/counter.php', array(&$this, 'checkVersion'));
123
-
124
- // update hook
125
- if ( function_exists('register_update_hook') )
126
- register_update_hook(ABSPATH.PLUGINDIR.'/count-per-day/counter.php', array(&$this, 'checkVersion'));
127
-
128
- // uninstall hook
129
- register_uninstall_hook($cpd_path.'counter.php', 'count_per_day_uninstall');
130
-
131
- // query times debug
132
- if ( $this->options['debug'] )
133
- {
134
- add_action('wp_footer', array(&$this, 'showQueries'));
135
- add_action('admin_footer', array(&$this, 'showQueries'));
136
- }
137
-
138
- // add shortcode support
139
- $this->addShortcodes();
140
-
141
- // thickbox in backend only
142
- if ( strpos($_SERVER['SCRIPT_NAME'], '/wp-admin/') !== false )
143
- {
144
- wp_enqueue_script('thickbox');
145
- wp_enqueue_script('cpd_flot', $this->dir.'/js/jquery.flot.min.js', 'jQuery');
146
- }
147
-
148
- // Session
149
- add_action('init', array(&$this, 'startSession'));
150
-
151
- $this->connectDB();
152
- }
153
-
154
- /**
155
- * starts session to provide WP variables to "addons"
156
- */
157
- function startSession()
158
- {
159
- if (!session_id())
160
- session_start();
161
- $_SESSION['cpd_wp'] = ABSPATH;
162
- }
163
-
164
- /**
165
- * direct database connection without wordpress functions saves memory
166
- */
167
- function connectDB()
168
- {
169
- global $wpdb;
170
-
171
- $this->dbcon = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, true);
172
- @mysql_select_db(DB_NAME, $this->dbcon);
173
- $this->getQuery("SET NAMES '".$wpdb->charset."'", 'SET NAMES'.__LINE__);
174
- }
175
-
176
- /**
177
- * get results per own connection (shows time for debug)
178
- * @param string $sql SQL statement
179
- * @param string $func show this name before time
180
- * @return MySql result
181
- */
182
- function getQuery( $sql, $func = '' )
183
- {
184
- global $wpdb;
185
-
186
- if ( $this->options['debug'] )
187
- {
188
- $t = microtime(true);
189
- $res = mysql_query($sql, $this->dbcon);
190
- $d = number_format( microtime(true) - $t , 5);
191
- $error = ($res) ? '' : '<b style="color:red">ERROR:</b> '.mysql_errno($this->dbcon).' - '.mysql_error($this->dbcon);
192
- $this->queries[] = $func.' : <b>'.$d.'</b><br/><code>'.$sql.'</code><br/>'.$error;
193
- $this->queries[0] += $d;
194
- }
195
- else
196
- $res = @mysql_query($sql, $this->dbcon);
197
-
198
- return $res;
199
  }
200
 
201
  /**
@@ -216,78 +47,15 @@ function show( $before='', $after=' reads', $show = true, $count = true, $page =
216
  $this->count();
217
  if ( $page == 'x' )
218
  $page = get_the_ID();
219
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$page'", 'show'.__LINE__);
220
- $row = mysql_fetch_row($res);
221
- if ( $show )
222
- echo $before.$row[0].$after;
223
  else
224
- return $row[0];
225
- }
226
-
227
- /**
228
- * anonymize IP address (last bit) if option is set
229
- * @param $ip real IP address
230
- * @return new IP address
231
- */
232
- function anonymize_ip( $ip )
233
- {
234
- if ( $this->options['debug'] )
235
- $this->queries[] = 'called Function: <b style="color:blue">anonymize_ip</b> IP: <code>'.$ip.'</code>';
236
-
237
- if ($this->options['anoip'] == 1)
238
  {
239
- $i = explode('.', $ip);
240
- $i[3] += round( array_sum($i) / 4 + date_i18n('d') );
241
- if ( $i[3] > 255 )
242
- $i[3] -= 255;
243
- return implode('.', $i);
244
- }
245
- else
246
- return $ip;
247
- }
248
-
249
- /**
250
- * gets PostID
251
- */
252
- function getPostID()
253
- {
254
- global $wp_query;
255
-
256
- // find PostID
257
- if ( !is_404() ) :
258
- if ( $this->options['autocount'] == 1 && is_singular() )
259
- {
260
- // single page with autocount on
261
- // make loop before regular loop is defined
262
- if (have_posts()) :
263
- while ( have_posts() && empty($p) ) :
264
- the_post();
265
- $p = get_the_ID();
266
- endwhile;
267
- endif;
268
- rewind_posts();
269
- }
270
- else if ( is_singular() )
271
- // single page with template tag show() or count()
272
- $p = get_the_ID();
273
-
274
- // "index" pages only with autocount
275
- else if ( is_category() || is_tag() )
276
- // category or tag => negativ ID in CpD DB
277
- $p = 0 - $wp_query->get_queried_object_id();
278
  else
279
- // index, date, search and other "list" pages will count only once
280
- $p = 0;
281
-
282
- $this->page = $p;
283
-
284
- if ( $this->options['debug'] )
285
- $this->queries[] = 'called Function: <b style="color:blue">getPostID</b> page ID: <code>'.$p.'</code>';
286
-
287
- return $p;
288
- endif;
289
-
290
- return false;
291
  }
292
 
293
  /**
@@ -297,43 +65,36 @@ function getPostID()
297
  */
298
  function count( $x, $page = 'x' )
299
  {
300
- global $wpdb, $wp_query, $cpd_path, $cpd_geoip, $userdata, $table_prefix;
301
 
302
- if ( $this->options['debug'] )
303
  $this->queries[] = 'called Function: <b style="color:blue">count</b> page: <code>'.$page.'</code>';
304
 
305
- if ( $page == 'x' )
306
  // normal counter
307
  $page = $this->getPostID();
308
  else
309
  // ajax counter on cached pages
310
- $page = intval($page);
311
 
312
  // get userlevel from role
313
- $caps = $table_prefix.'capabilities';
314
- if ( isset($userdata->$caps) )
315
- {
316
- $role = $userdata->$caps;
317
- if ($role['administrator']) $userlevel = 10;
318
- else if ($role['editor']) $userlevel = 7;
319
- else if ($role['author']) $userlevel = 2;
320
- else if ($role['contributor']) $userlevel = 1;
321
- else if ($role['subscriber']) $userlevel = 0;
322
- else $userlevel = -1;
323
- }
324
- else
325
- $userlevel = -1;
326
-
327
  // count visitor?
328
  $countUser = 1;
329
- if ( $this->options['user'] == 0 && is_user_logged_in() ) $countUser = 0; // don't count loged user
330
- if ( $this->options['user'] == 1 && isset($userdata) && $this->options['user_level'] < $userlevel ) $countUser = 0; // loged user, but higher user level
331
 
332
  $isBot = $this->isBot();
333
 
334
- if ( $this->options['debug'] )
335
  $this->queries[] = 'called Function: <b style="color:blue">count (variables)</b> '
336
- .'isBot: <code>'.intval($isBot).'</code> '
337
  .'countUser: <code>'.$countUser.'</code> '
338
  .'page: <code>'.$page.'</code> '
339
  .'userlevel: <code>'.$userlevel.'</code>';
@@ -344,181 +105,45 @@ function count( $x, $page = 'x' )
344
  $userip = $this->anonymize_ip($_SERVER['REMOTE_ADDR']);
345
  $client = ($this->options['referers']) ? $_SERVER['HTTP_USER_AGENT'] : '';
346
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? $_SERVER['HTTP_REFERER'] : '';
 
 
347
  $date = date_i18n('Y-m-d');
348
 
349
  // new visitor on page?
350
- $res = $this->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE ip=INET_ATON('$userip') AND date='$date' AND page='$page'", 'count check'.__LINE__);
351
- $row = mysql_fetch_row($res);
352
- if ( $row[0] == 0 )
353
  {
354
  // save count
355
- if ( $cpd_geoip )
356
  {
357
  // with GeoIP addon save country
358
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
359
  $country = strtolower(cpd_geoip_country_code_by_addr($gi, $userip));
360
- $this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, country, referer)
361
- VALUES (%s, INET_ATON(%s), %s, %s, %s, %s)", $page, $userip, $client, $date, $country, $referer), 'count insert'.__LINE__);
362
  }
363
  else
364
- {
365
  // without country
366
- $this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, referer)
367
- VALUES (%s, INET_ATON(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert'.__LINE__);
368
- }
369
  }
370
-
371
  // online counter
372
- $timestamp = time();
373
- $this->getQuery($wpdb->prepare("REPLACE INTO ".CPD_CO_TABLE." (timestamp, ip, page)
374
- VALUES ( %s, INET_ATON(%s), %s)", $timestamp, $userip, $page), 'count online'.__LINE__);
375
  }
376
  }
377
 
378
  /**
379
- * deletes old online user
380
  */
381
  function deleteOnlineCounter()
382
  {
383
- $timeout = time() - $this->options['onlinetime'];
384
- $this->getQuery("DELETE FROM ".CPD_CO_TABLE." WHERE timestamp < $timeout", 'deleteOnlineCounter'.__LINE__);
385
- }
386
-
387
- /**
388
- * bot or human?
389
- * @param string $client USER_AGENT
390
- * @param array $bots strings to check
391
- * @param string $ip IP adress
392
- */
393
- function isBot( $client = '', $bots = '', $ip = '' )
394
- {
395
- if ( empty($client) )
396
- $client = $_SERVER['HTTP_USER_AGENT'];
397
- if ( empty($ip) )
398
- $ip = $_SERVER['REMOTE_ADDR'];
399
-
400
- // empty/short client -> not normal browser -> bot
401
- if ( empty($client) || strlen($client) < 20 )
402
- return true;
403
-
404
- if ( empty($bots) )
405
- $bots = explode( "\n", $this->options['bots'] );
406
-
407
- $isBot = false;
408
- foreach ( $bots as $bot )
409
- {
410
- if (!$isBot) // loop until first bot was found only
411
- {
412
- $b = trim($bot);
413
- if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false ) )
414
- $isBot = true;
415
- }
416
- }
417
- return $isBot;
418
- }
419
-
420
- /**
421
- * creates tables if not exists
422
- */
423
- function createTables()
424
- {
425
- global $wpdb, $table_prefix;
426
-
427
- // for plugin activation, creates $wpdb
428
- require_once(ABSPATH.'wp-admin/includes/upgrade.php');
429
-
430
- // variables for subblogs
431
- $cpd_c = $table_prefix.'cpd_counter';
432
- $cpd_o = $table_prefix.'cpd_counter_useronline';
433
- $cpd_n = $table_prefix.'cpd_notes';
434
-
435
- if (!empty ($wpdb->charset))
436
- $charset_collate = "DEFAULT CHARACTER SET {$wpdb->charset}";
437
- if (!empty ($wpdb->collate))
438
- $charset_collate .= " COLLATE {$wpdb->collate}";
439
-
440
- // table "counter"
441
- $sql = "CREATE TABLE IF NOT EXISTS `$cpd_c` (
442
- `id` int(10) NOT NULL auto_increment,
443
- `ip` int(10) unsigned NOT NULL,
444
- `client` varchar(150) NOT NULL,
445
- `date` date NOT NULL,
446
- `page` mediumint(9) NOT NULL,
447
- `referer` varchar(100) NOT NULL,
448
- PRIMARY KEY (`id`),
449
- KEY `idx_page` (`page`),
450
- KEY `idx_dateip` (`date`,`ip`) )
451
- $charset_collate;";
452
- $this->getQuery($sql, __LINE__);
453
-
454
- // update fields in old table
455
- $field = $this->getQuery( "SHOW FIELDS FROM `$cpd_c` LIKE 'ip'" );
456
- $row = mysql_fetch_array($field);
457
- if ( strpos(strtolower($row['Type']), 'int') === false )
458
- {
459
- $queries = array (
460
- "ALTER TABLE `$cpd_c` ADD `ip2` INT(10) UNSIGNED NOT NULL AFTER `ip`",
461
- "UPDATE `$cpd_c` SET ip2 = INET_ATON(ip)",
462
- "ALTER TABLE `$cpd_c` DROP `ip`",
463
- "ALTER TABLE `$cpd_c` CHANGE `ip2` `ip` INT( 10 ) UNSIGNED NOT NULL",
464
- "ALTER TABLE `$cpd_c` CHANGE `date` `date` date NOT NULL",
465
- "ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL");
466
-
467
- foreach ( $queries as $sql)
468
- $this->getQuery($sql, 'update old fields'.__LINE__);
469
- }
470
-
471
- // make new keys
472
- $keys = $this->getQuery( "SHOW KEYS FROM `$cpd_c`" );
473
- $s = array();
474
- while ( $row = mysql_fetch_array($keys) )
475
- if ( $row['Key_name'] != 'PRIMARY' )
476
- $s[] = 'DROP INDEX `'.$row['Key_name'].'`';
477
- $s = array_unique($s);
478
-
479
- $sql = "ALTER TABLE `$cpd_c` ";
480
- if ( sizeof($s) )
481
- $sql .= implode(',', $s).', ';
482
- $sql .= 'ADD KEY `idx_dateip` (`date`,`ip`), ADD KEY `idx_page` (`page`)';
483
- $this->getQuery($sql);
484
-
485
- // if GeoIP installed we need row "country"
486
- if ( class_exists('CpdGeoIp') )
487
- {
488
- $this->getQuery("SELECT country FROM `$cpd_c`");
489
- if ((int) mysql_errno() == 1054)
490
- $this->getQuery("ALTER TABLE `$cpd_c` ADD `country` CHAR(2) NOT NULL");
491
- }
492
-
493
- // referer
494
- $this->getQuery("SELECT referer FROM `$cpd_c`");
495
- if ((int) mysql_errno() == 1054)
496
- $this->getQuery("ALTER TABLE `$cpd_c` ADD `referer` VARCHAR(100) NOT NULL");
497
-
498
- // table "counter-online"
499
- $sql = "CREATE TABLE IF NOT EXISTS `$cpd_o` (
500
- `timestamp` int(15) NOT NULL,
501
- `ip` int(10) UNSIGNED NOT NULL,
502
- `page` int(11) NOT NULL,
503
- PRIMARY KEY (`ip`) )
504
- $charset_collate;";
505
- $this->getQuery($sql);
506
-
507
- // table "notes"
508
- $sql = "CREATE TABLE IF NOT EXISTS `$cpd_n` (
509
- `id` int(11) NOT NULL AUTO_INCREMENT,
510
- `date` date NOT NULL,
511
- `note` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
512
- PRIMARY KEY (`id`),
513
- UNIQUE KEY `date` (`date`) )
514
- $charset_collate;";
515
- $this->getQuery($sql);
516
-
517
- // update options to array
518
- $this->UpdateOptions();
519
-
520
- // set directory mode
521
- @chmod(ABSPATH.PLUGINDIR.'/count-per-day/geoip', 0777);
522
  }
523
 
524
  /**
@@ -529,19 +154,21 @@ function dashboardReadsAtAll()
529
  $thisMonth = date_i18n('F');
530
  ?>
531
  <ul>
532
- <li><b><span><?php $this->getReadsAll(); ?></span></b><?php _e('Total reads', 'cpd') ?>:</li>
533
- <li><b><?php $this->getReadsToday(); ?></b><?php _e('Reads today', 'cpd') ?>:</li>
534
- <li><b><?php $this->getReadsYesterday(); ?></b><?php _e('Reads yesterday', 'cpd') ?>:</li>
535
- <li><b><?php $this->getReadsLastWeek(); ?></b><?php _e('Reads last week', 'cpd') ?>:</li>
536
- <li><b><?php $this->getReadsThisMonth(); ?></b><?php _e('Reads', 'cpd') ?> <?php echo $thisMonth ?>:</li>
537
- <li><b><span><?php $this->getUserAll(); ?></span></b><?php _e('Total visitors', 'cpd') ?>:</li>
538
- <li><b><span><?php $this->getUserOnline(); ?></span></b><?php _e('Visitors currently online', 'cpd') ?>:</li>
539
- <li><b><?php $this->getUserToday(); ?></b><?php _e('Visitors today', 'cpd') ?>:</li>
540
- <li><b><?php $this->getUserYesterday(); ?></b><?php _e('Visitors yesterday', 'cpd') ?>:</li>
541
- <li><b><?php $this->getUserLastWeek(); ?></b><?php _e('Visitors last week', 'cpd') ?>:</li>
542
- <li><b><?php $this->getUserThisMonth(); ?></b><?php _e('Total visitors', 'cpd') ?> <?php echo $thisMonth ?>:</li>
543
- <li><b><?php $this->getUserPerDay($this->options['dashboard_last_days']); ?></b>&Oslash; <?php _e('Visitors per day', 'cpd') ?>:</li>
544
- <li><b><?php $this->getFirstCount(); ?></b><?php _e('Counter starts on', 'cpd') ?>:</li>
 
 
545
  </ul>
546
  <?php
547
  }
@@ -552,12 +179,12 @@ function dashboardReadsAtAll()
552
  */
553
  function getFlotChart( $limit = 0 )
554
  {
555
- global $table_prefix;
556
  if ( $limit == 0 )
557
  $limit = (!empty($this->options['chart_days'])) ? $this->options['chart_days'] : 30;
558
  $limit -= 1;
559
 
560
- // last day
561
  $end_sql = (isset($_GET['cpd_chart_start'])) ? $_GET['cpd_chart_start'] : date_i18n('Y-m-d');
562
  $end_time = strtotime($end_sql);
563
  $end_str = mysql2date(get_option('date_format'), $end_sql);
@@ -577,29 +204,31 @@ function getFlotChart( $limit = 0 )
577
  $data[$day] = array(0, 0);
578
 
579
  // reads
580
- $sql = "
581
- SELECT COUNT(*) count, c.date
582
- FROM ".CPD_C_TABLE." AS c
583
- WHERE c.date BETWEEN '$start_sql' AND '$end_sql'
584
- GROUP BY c.date";
585
- $res = $this->getQuery($sql, 'ChartReads'.__LINE__);
586
- if ( @mysql_num_rows($res) )
587
- while ( $row = mysql_fetch_array($res) )
588
- $data[strtotime($row['date'])][0] = $row['count'];
 
589
 
590
  // visitors
591
- $sql = "
592
- SELECT COUNT(*) count, t.date
593
- FROM ( SELECT COUNT(*) count, date
594
- FROM ".CPD_C_TABLE."
595
- GROUP BY date, ip
596
- ) AS t
597
- WHERE t.date BETWEEN '$start_sql' AND '$end_sql'
598
- GROUP BY t.date";
599
- $res = $this->getQuery($sql, 'ChartVisitors'.__LINE__);
600
- if ( @mysql_num_rows($res) )
601
- while ( $row = mysql_fetch_array($res) )
602
- $data[strtotime($row['date'])][1] = $row['count'];
 
603
 
604
  // fill data array
605
  $reads = array();
@@ -637,7 +266,6 @@ function getFlotChart( $limit = 0 )
637
  'reads': { data: <?php echo $reads_line ?>, label: '<?php _e('Reads per day', 'cpd') ?>' },
638
  'visitors' : { data: <?php echo $visitors_line ?>, label: '<?php _e('Visitors per day', 'cpd') ?>' }
639
  };
640
-
641
  // Checkboxen
642
  var i = 0;
643
  jQuery.each(datasets, function(key, val) {
@@ -711,425 +339,230 @@ function getFlotChart( $limit = 0 )
711
  <?php
712
  }
713
 
714
- /**
715
- * creates dashboard chart metabox content - page visits
716
- * @param integer $limit days to show
717
- * @param boolean $frontend limit function on frontend
718
- * @see dashboardChartDataRequest()
719
- */
720
- function dashboardChart( $limit = 0, $frontend = false )
721
- {
722
- global $table_prefix;
723
- if ( $limit == 0 )
724
- $limit = ( !empty($this->options['chart_days']) )? $this->options['chart_days'] : 30;
725
- $start = ( isset($_GET['cpd_chart_start']) ) ? $_GET['cpd_chart_start'] : date_i18n('Y-m-d');
726
-
727
- $sql = "
728
- SELECT count(*) count, c.date, n.note
729
- FROM ".CPD_C_TABLE." AS c
730
- LEFT JOIN ".$table_prefix."cpd_notes AS n
731
- ON n.date = c.date
732
- WHERE c.date <= '".$start."'
733
- GROUP BY c.date
734
- ORDER BY c.date DESC
735
- LIMIT $limit";
736
- $r = $this->dashboardChartDataRequest($sql, $limit, $frontend);
737
- if ($frontend)
738
- return $r;
739
- else
740
- echo $r;
741
- }
742
-
743
- /**
744
- * creates dashboard chart metabox content - visitors
745
- * @param integer limit days to show
746
- * @param boolean $frontend limit function on frontend
747
- * @see dashboardChartDataRequest()
748
- */
749
- function dashboardChartVisitors( $limit = 0, $frontend = false )
750
- {
751
- global $table_prefix;
752
- if ( $limit == 0 )
753
- $limit = ( !empty($this->options['chart_days']) )? $this->options['chart_days'] : 30;
754
- $start = ( isset($_GET['cpd_chart_start']) ) ? $_GET['cpd_chart_start'] : date_i18n('Y-m-d');
755
- $sql = "
756
- SELECT count(*) count, t.date, n.note
757
- FROM ( SELECT count(*) count, date
758
- FROM ".CPD_C_TABLE."
759
- GROUP BY date, ip
760
- ) AS t
761
- LEFT JOIN ".$table_prefix."cpd_notes AS n
762
- ON n.date = t.date
763
- WHERE t.date <= '".$start."'
764
- GROUP BY t.date
765
- ORDER BY t.date DESC
766
- LIMIT $limit";
767
- $r = $this->dashboardChartDataRequest($sql, $limit, $frontend);
768
- if ($frontend)
769
- return $r;
770
- else
771
- echo $r;
772
- }
773
-
774
- /**
775
- * creates dashboard chart metabox content
776
- * @param string $sql SQL-Statement visitors or page visits
777
- * @param boolean $frontend limit function on frontend
778
- */
779
- function dashboardChartDataRequest( $sql = '', $limit, $frontend = false )
780
- {
781
- global $wp_locale;
782
-
783
- // get options
784
- $max_height = ( !empty($this->options['chart_height']) ) ? $this->options['chart_height'] : 200;
785
-
786
- $res = $this->getQuery($sql, 'Chart'.__LINE__);
787
- if ( mysql_errno() || !mysql_num_rows($res) )
788
- return;
789
-
790
- $res_array = array();
791
-
792
- // find date end points
793
- while ( $day = mysql_fetch_assoc($res) )
794
- {
795
- $res_array[] = $day;
796
- if ( empty($end) )
797
- $end = $day['date'];
798
- $start = $day['date'];
799
- }
800
-
801
- $end_time = strtotime($end);
802
- $start_time = max( array($end_time - ($limit - 1) * 86400, strtotime($start)) );
803
- $days = round(max(1, ($end_time - $start_time) / 86400 + 1));
804
- $bar_width = round(100 / $days, 2); // per cent
805
-
806
- // find max count
807
- $max = 1;
808
- mysql_data_seek($res, 0);
809
- while ( $day = mysql_fetch_array($res) )
810
- {
811
- $date = strtotime($day['date']);
812
- if ( $date >= $start_time && $day['count'] > $max )
813
- $max = max(1, $day['count']);
814
- }
815
-
816
- $height_factor = $max_height / $max;
817
-
818
- // headline with max count
819
- $r = '
820
- <div style="text-align:center;">
821
- <small style="display:block; float:right;">'.$days.' '.__('days', 'cpd').'</small>
822
- <small style="display:block; float:left;">Max: '.$max.'</small>';
823
- if ( !$frontend )
824
- $r .= '<small><a href="'.$this->dir.'/notes.php?KeepThis=true&amp;TB_iframe=true" title="Count per Day" class="thickbox">'.__('Notes', 'cpd').'</a></small>';
825
- $r .= '<small>&nbsp;</small></div>';
826
-
827
- $r .= '<p style="border-bottom:1px black solid; white-space:nowrap;">';
828
-
829
- $date_old = $start_time;
830
-
831
- // newest data will show right
832
- $res_array = array_reverse($res_array);
833
- foreach ( $res_array as $day )
834
- {
835
- $date = strtotime($day['date']);
836
- $note = ( $day['note'] != '' ) ? ' - '.$day['note'] : '';
837
-
838
- if ( $date >= $start_time )
839
- {
840
- // show the last $limit days only
841
- if ( $date - $date_old > 86400 )
842
- {
843
- // show space if no reads today
844
- $width = (($date - $date_old) / 86400 - 1) * $bar_width;
845
- if ( $frontend )
846
- $note = '';
847
- $r .= '<img src="'.$this->getResource('cpd_trans.png').'" title="'.__('no reads at this time', 'cpd').$note.'"
848
- style="width:'.$width.'%; height:'.$max_height.'px" />';
849
- }
850
-
851
- // show normal bar
852
- $height = max( round($day['count'] * $height_factor, 0), 1 );
853
- $date_str = mysql2date(get_option('date_format'), $day['date']);
854
- if ( !$frontend )
855
- $r .= '<a href="?page=cpd_metaboxes&amp;daytoshow='.$day['date'].'">';
856
- $r .= '<img src="';
857
- if ($note && !$frontend)
858
- $r .= $this->getResource('cpd_blau.png').'" title="'.$date_str.' : '.$day['count'].$note.'"';
859
- else
860
- $r .= $this->getResource('cpd_rot.png').'" title="'.$date_str.' : '.$day['count'].'"';
861
- $r .= ' style="width:'.$bar_width.'%; height:'.$height.'px" />';
862
- if ( !$frontend )
863
- $r .= '</a>';
864
-
865
- $date_old = $date;
866
- }
867
- }
868
-
869
- // legend
870
- $end_str = mysql2date(get_option('date_format'), $end);
871
- $start_str = mysql2date(get_option('date_format'), $start);
872
- $r .= '</p>
873
- <div style="height: 10px" class="cpd-l">
874
- <small>'.$start_str.'</small>
875
- <small class="cpd-r">'.$end_str.'</small>
876
- </div>';
877
-
878
- // buttons
879
- $date_back = date('Y-m-d', strtotime($start) - 86400);
880
- $date_forward = date('Y-m-d', strtotime($end) + 86400 * $limit);
881
- $r .= '<p style="text-align:center;">
882
- <a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start='.$date_back.'" class="button">&lt;</a>
883
- <a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start='.$date_forward.'" class="button">&gt;</a>
884
- </p>';
885
-
886
- return $r;
887
- }
888
-
889
  /**
890
  * shows current visitors
891
  */
892
- function getUserOnline( $frontend = false, $country = false )
893
  {
894
- global $cpd_geoip, $cpd_path;
895
  $c = '';
896
 
897
- if ( $cpd_geoip && $country )
 
 
898
  {
899
  // map link
900
- if (!$frontend && file_exists($cpd_path.'map/map.php') )
901
  $c .= '<div style="margin: 5px 0 10px 0;"><a href="'.$this->dir.'/map/map.php?map=online'
902
  .'&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
903
 
904
  // countries list
905
  $geoip = new GeoIPCpd();
906
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
907
-
908
- $res = $this->getQuery("SELECT INET_NTOA(ip) AS ip FROM ".CPD_CO_TABLE, 'getUserOnline'.__LINE__);
909
- if ( @mysql_num_rows($res) )
910
  {
911
- $vo = array();
912
- while ( $r = mysql_fetch_array($res) )
 
913
  {
914
- $country = strtolower(cpd_geoip_country_code_by_addr($gi, $r['ip']));
915
- $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($country)];
916
- if ( empty($id) )
917
- {
918
- $name = '???';
919
- $country = 'unknown';
920
- }
921
- else
922
- $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
923
- $count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
924
- $vo[$country] = array($name, $count);
925
  }
926
-
927
- $c .= '<ul class="cpd_front_list">';
928
- foreach ( $vo as $k => $v )
929
- $c .= '<li><b>'.$v[1].'</b><div class="cpd-flag cpd-flag-'.$k.'"></div> '.$v[0].'&nbsp;</li>'."\n";
930
- $c .= "</ul>\n";
931
  }
 
 
 
 
 
932
  }
 
 
933
  else
934
- {
935
- // number only
936
- $res = $this->getQuery("SELECT count(*) FROM ".CPD_CO_TABLE, 'getUserOnline'.__LINE__);
937
- $row = mysql_fetch_row($res);
938
- $c = $row[0];
939
- }
940
-
941
- if ($frontend)
942
- return $c;
943
- else
944
- echo $c;
945
  }
946
 
947
  /**
948
  * shows all visitors
949
  */
950
- function getUserAll( $frontend = false )
951
  {
952
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." GROUP BY date, ip", 'getUserAll'.__LINE__);
953
- $c = mysql_num_rows($res) + intval($this->options['startcount']);
954
- if ($frontend)
955
- return $c;
956
- else
957
- echo $c;
958
  }
959
 
960
  /**
961
  * shows all reads
962
  */
963
- function getReadsAll( $frontend = false )
964
  {
965
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE, 'getReadsAll'.__LINE__);
966
- $row = mysql_fetch_row($res);
967
- $c = $row[0] + intval($this->options['startreads']);
968
- if ($frontend)
969
- return $c;
970
- else
971
- echo $c;
972
  }
973
 
974
  /**
975
  * shows today visitors
976
  */
977
- function getUserToday( $frontend = false )
978
  {
 
979
  $date = date_i18n('Y-m-d');
980
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserToday'.__LINE__);
981
- $c = mysql_num_rows($res);
982
- if ($frontend)
983
- return $c;
984
- else
985
- echo $c;
986
  }
987
 
988
  /**
989
  * shows today reads
990
  */
991
- function getReadsToday( $frontend = false )
992
  {
 
993
  $date = date_i18n('Y-m-d');
994
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsToday'.__LINE__);
995
- $row = mysql_fetch_row($res);
996
- if ($frontend)
997
- return $row[0];
998
- else
999
- echo $row[0];
1000
  }
1001
 
1002
  /**
1003
  * shows yesterday visitors
1004
  */
1005
- function getUserYesterday( $frontend = false )
1006
  {
1007
- $date = date_i18n('Y-m-d', current_time('timestamp')-86400);
1008
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserYesterday'.__LINE__);
1009
- $c = mysql_num_rows($res);
1010
- if ($frontend)
1011
- return $c;
1012
- else
1013
- echo $c;
1014
  }
1015
 
1016
  /**
1017
  * shows yesterday reads
1018
  */
1019
- function getReadsYesterday( $frontend = false )
1020
  {
1021
- $date = date_i18n('Y-m-d', current_time('timestamp')-86400);
1022
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsYesterday'.__LINE__);
1023
- $row = mysql_fetch_row($res);
1024
- if ($frontend)
1025
- return $row[0];
1026
- else
1027
- echo $row[0];
1028
  }
1029
 
1030
  /**
1031
  * shows last week visitors (last 7 days)
1032
  */
1033
- function getUserLastWeek( $frontend = false )
1034
  {
1035
- $date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
1036
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$date' GROUP BY date, ip;", 'getUserLastWeek'.__LINE__);
1037
- $c = mysql_num_rows($res);
1038
- if ($frontend)
1039
- return $c;
1040
- else
1041
- echo $c;
1042
  }
1043
 
1044
  /**
1045
  * shows last week reads (last 7 days)
1046
  */
1047
- function getReadsLastWeek( $frontend = false )
1048
  {
1049
- $date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
1050
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$date';", 'getReadsLastWeek'.__LINE__);
1051
- $row = mysql_fetch_row($res);
1052
- if ($frontend)
1053
- return $row[0];
1054
- else
1055
- echo $row[0];
1056
  }
1057
 
1058
  /**
1059
  * shows this month visitors
1060
  */
1061
- function getUserThisMonth( $frontend = false )
1062
  {
 
1063
  $first = date_i18n('Y-m-', current_time('timestamp')).'01';
1064
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$first' GROUP BY date, ip;", 'getUserThisMonth'.__LINE__);
1065
- $c = mysql_num_rows($res);
1066
- if ($frontend)
1067
- return $c;
1068
- else
1069
- echo $c;
1070
  }
1071
 
1072
  /**
1073
  * shows this month reads
1074
  */
1075
- function getReadsThisMonth( $frontend = false )
1076
  {
 
1077
  $first = date_i18n('Y-m-', current_time('timestamp')).'01';
1078
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$first';", 'getReadsThisMonth'.__LINE__);
1079
- $row = mysql_fetch_row($res);
1080
- if ($frontend)
1081
- return $row[0];
1082
- else
1083
- echo $row[0];
1084
  }
1085
 
1086
  /**
1087
  * shows visitors per month
1088
  */
1089
- function getUserPerMonth( $frontend = false )
1090
  {
1091
- $m = $this->getQuery("SELECT LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getUserPerMonths'.__LINE__);
 
 
 
1092
  $r = '<ul class="cpd_front_list">';
1093
  $d = array();
1094
  $i = 1;
1095
- while ( $row = mysql_fetch_row($m) )
1096
  {
1097
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE LEFT(date,7) = '".$row[0]."' GROUP BY date, ip", 'getUserPerMonth'.__LINE__);
1098
- $r .= '<li><b>'.mysql_num_rows($res).'</b> '.$row[0].'</li>'."\n";
1099
- $d[] = '[-'.$i++.','.mysql_num_rows($res).']';
1100
  }
1101
- $r .= '</ul>';
1102
- if ($frontend)
1103
- return $r;
1104
- else
1105
  {
1106
- $r = $this->includeChartJS( 'cpd-flot-userpermonth', $d, $r );
1107
- echo $r;
 
 
 
 
 
1108
  }
 
 
 
 
1109
  }
1110
 
1111
  /**
1112
  * shows reads per month
1113
  */
1114
- function getReadsPerMonth( $frontend = false )
1115
  {
1116
- $res = $this->getQuery("SELECT COUNT(*), LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getReadsPerMonths'.__LINE__);
 
 
 
1117
  $r = '<ul class="cpd_front_list">';
1118
  $d = array();
1119
  $i = 1;
1120
- while ( $row = mysql_fetch_row($res) )
1121
  {
1122
- $r .= '<li><b>'.$row[0].'</b> '.$row[1].'</li>'."\n";
1123
- $d[] = '[-'.$i++.','.$row[0].']';
1124
  }
1125
- $r .= '</ul>';
1126
- if ($frontend)
1127
- return $r;
1128
- else
1129
  {
1130
- $r = $this->includeChartJS( 'cpd-flot-readspermonth', $d, $r );
1131
- echo $r;
 
 
 
 
 
1132
  }
 
 
 
 
1133
  }
1134
 
1135
  /**
@@ -1137,63 +570,39 @@ function getReadsPerMonth( $frontend = false )
1137
  * @param integer $limit number of posts, -1 = all, 0 = get option from db, x = number
1138
  * @param boolean $frontend limit function on frontend
1139
  */
1140
- function getUserPerPost( $limit = 0, $frontend = false )
1141
  {
1142
  global $wpdb;
1143
  if ( $limit == 0 )
1144
  $limit = $this->options['dashboard_posts'];
1145
-
1146
  $sql = "
1147
- SELECT COUNT(c.id) count,
1148
- c.page post_id,
1149
- p.post_title post,
1150
- t.name tag_cat_name,
1151
- t.slug tag_cat_slug,
1152
- x.taxonomy tax
1153
- FROM ".CPD_C_TABLE." c
1154
- LEFT JOIN ".$wpdb->posts." p
1155
- ON p.id = c.page
1156
- LEFT JOIN ".$wpdb->terms." t
1157
- ON t.term_id = 0 - c.page
1158
- LEFT JOIN ".$wpdb->term_taxonomy." x
1159
- ON x.term_id = t.term_id
1160
- WHERE c.page
1161
- GROUP BY c.page
1162
- ORDER BY count DESC";
1163
- if ( $limit > 0 )
1164
- $sql .= " LIMIT ".$limit;
1165
- $r = $this->getUserPer_SQL( $sql, 'getUserPerPost'.__LINE__, $frontend );
1166
- if ($frontend)
1167
- return $r;
1168
- else
1169
- echo $r;
1170
  }
1171
 
1172
  /**
1173
  * shows counter start, first day or given value
1174
  */
1175
- function getFirstCount( $frontend = false )
1176
  {
1177
  global $wp_locale;
1178
  if (!empty($this->options['startdate']))
1179
- $c = mysql2date(get_option('date_format'), $this->options['startdate'] );
1180
- else
1181
- {
1182
- $res = $this->getQuery("SELECT date FROM ".CPD_C_TABLE." ORDER BY date LIMIT 1", 'getFirstCount'.__LINE__);
1183
- $row = mysql_fetch_row($res);
1184
- $c = mysql2date(get_option('date_format'), $row[0] );
1185
- }
1186
- if ($frontend)
1187
- return $c;
1188
  else
1189
- echo $c;
 
 
1190
  }
1191
 
1192
  /**
1193
  * shows averaged visitors per day
1194
  * @param integer $days days to calc
1195
  */
1196
- function getUserPerDay( $days = 0, $frontend = false )
1197
  {
1198
  global $wpdb;
1199
  $datemax = date_i18n('Y-m-d');
@@ -1202,38 +611,30 @@ function getUserPerDay( $days = 0, $frontend = false )
1202
  $datemin = date_i18n('Y-m-d', current_time('timestamp') - ($days + 1) * 86400);
1203
  else
1204
  {
1205
- $v = $wpdb->get_results('SELECT MIN(date) min, MAX(date) max FROM '.CPD_C_TABLE);
1206
- foreach ($v as $row)
1207
- {
1208
- $min = strtotime($row->min);
1209
- $max = strtotime($row->max);
1210
- $days = (($max - $min) / 86400 + 1);
1211
- $datemin = 0;
1212
- }
1213
  }
1214
-
1215
- $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date > '$datemin' AND date < '$datemax' GROUP BY ip, date", 'getUserPerDay'.__LINE__);
1216
- $count = @mysql_num_rows($res) / $days;
1217
 
1218
- $c = '<abbr title="last '.$days.' days without today">';
1219
  if ( $count < 5 )
1220
- $c .= number_format($count, 2);
1221
  else
1222
- $c .= number_format($count, 0);
1223
- $c .= '</abbr>';
1224
-
1225
- if ($frontend)
1226
- return $c;
1227
- else
1228
- echo $c;
1229
  }
1230
 
1231
  /**
1232
  * shows most visited pages in last days
1233
  * @param integer $days days to calc (last days)
1234
  * @param integer $limit count of posts (last posts)
 
1235
  */
1236
- function getMostVisitedPosts( $days = 0, $limit = 0, $frontend = false )
1237
  {
1238
  global $wpdb;
1239
  if ( $days == 0 )
@@ -1241,31 +642,44 @@ function getMostVisitedPosts( $days = 0, $limit = 0, $frontend = false )
1241
  if ( $limit == 0 )
1242
  $limit = $this->options['dashboard_last_posts'];
1243
  $date = date_i18n('Y-m-d', current_time('timestamp') - 86400 * $days);
1244
- $sql = "
1245
- SELECT COUNT(c.id) count,
1246
- c.page post_id,
1247
- p.post_title post,
1248
- t.name tag_cat_name,
1249
- t.slug tag_cat_slug,
1250
- x.taxonomy tax
1251
- FROM ".CPD_C_TABLE." c
1252
- LEFT JOIN ".$wpdb->posts." p
1253
- ON p.id = c.page
1254
- LEFT JOIN ".$wpdb->terms." t
1255
- ON t.term_id = 0 - c.page
1256
- LEFT JOIN ".$wpdb->term_taxonomy." x
1257
- ON x.term_id = t.term_id
1258
- WHERE c.date >= '$date'
1259
- GROUP BY c.page
1260
- ORDER BY count DESC
1261
- LIMIT $limit";
1262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1263
  $r = '<small>'.sprintf(__('The %s most visited posts in last %s days:', 'cpd'), $limit, $days).'<br/>&nbsp;</small>';
1264
  $r .= $this->getUserPer_SQL( $sql, 'getMostVisitedPosts', $frontend );
1265
- if ($frontend)
1266
- return $r;
1267
- else
1268
- echo $r;
1269
  }
1270
 
1271
  /**
@@ -1301,30 +715,29 @@ function getMostVisitedPostIDs( $days = 365, $limit = 10, $cats = false, $return
1301
  SELECT COUNT(c.id) count,
1302
  c.page post_id
1303
  $q1
1304
- FROM ".CPD_C_TABLE." c
1305
  $q2
1306
- LEFT JOIN ".$wpdb->term_relationships." r
1307
  ON r.object_id = c.page
1308
- LEFT JOIN ".$wpdb->term_taxonomy." x
1309
  ON x.term_taxonomy_id = r.term_taxonomy_id
1310
  WHERE c.date >= '$date'
1311
  $cat_filter
1312
  GROUP BY c.page
1313
  ORDER BY count DESC
1314
  LIMIT $limit";
1315
- $res = $this->getQuery($sql, 'getMostVisitedPostIDs'.__LINE__);
1316
 
1317
  $ids = array();
1318
- if ( @mysql_num_rows($res) )
1319
- while ( $row = mysql_fetch_array($res) )
1320
  {
1321
- if ( $return_array )
1322
- $ids[] = array('id' => $row['post_id'], 'title' => $row['post_title'], 'count' => $row['count']);
1323
  else
1324
- $ids[] = $row['post_id'];
1325
  }
1326
-
1327
- if ( $return_array )
1328
  return $ids;
1329
  else
1330
  return implode(',', $ids);
@@ -1337,9 +750,9 @@ function getMostVisitedPostIDs( $days = 365, $limit = 10, $cats = false, $return
1337
  * @param boolean $show_form show form for date selection
1338
  * @param boolean $show_notes show button to add notes in form
1339
  */
1340
- function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_notes = true, $frontend = false )
1341
  {
1342
- global $wpdb, $cpd_path, $table_prefix, $userdata;
1343
  if (!empty($_POST['daytoshow']))
1344
  $date = $_POST['daytoshow'];
1345
  else if (!empty($_GET['daytoshow']))
@@ -1350,87 +763,83 @@ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_n
1350
  $limit = $this->options['dashboard_last_posts'];
1351
 
1352
  // get note
1353
- $notes = $wpdb->get_results("SELECT * FROM ".$table_prefix."cpd_notes WHERE date = '$date'", ARRAY_A);
1354
- if ( $notes )
1355
- $note = $notes[0]['note'];
1356
-
1357
- $sql = "
1358
- SELECT COUNT(c.id) count,
1359
- c.page post_id,
1360
- p.post_title post,
1361
- t.name tag_cat_name,
1362
- t.slug tag_cat_slug,
1363
- x.taxonomy tax
1364
- FROM ".CPD_C_TABLE." c
1365
- LEFT JOIN ".$wpdb->posts." p
1366
- ON p.id = c.page
1367
- LEFT JOIN ".$wpdb->terms." t
1368
- ON t.term_id = 0 - c.page
1369
- LEFT JOIN ".$wpdb->term_taxonomy." x
1370
- ON x.term_id = t.term_id
1371
- WHERE c.date = '$date'
1372
- GROUP BY c.page
1373
- ORDER BY count DESC
1374
- LIMIT $limit";
1375
-
1376
- if ( $show_form )
 
 
 
1377
  {
1378
  echo '<form action="" method="post">
1379
- <input name="daytoshow" value="'.$date.'" size="10" />
1380
  <input type="submit" name="showday" value="'.__('Show').'" class="button" />';
1381
  if ( $show_notes )
1382
  echo ' <a href="'.$this->dir.'/notes.php?KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Notes', 'cpd').'" class="button thickbox">'.__('Notes', 'cpd').'</a> ';
1383
  echo '</form>';
1384
  }
1385
-
1386
- if ( isset($note) )
1387
- echo '<p style="background:#eee; padding:2px;">'.$note.'</p>';
1388
-
1389
  $r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend );
1390
-
1391
- if ($frontend)
1392
- return $r;
1393
- else
1394
- echo $r;
1395
  }
1396
 
1397
  /**
1398
  * shows little browser statistics
1399
  */
1400
- function getClients( $frontend = false )
1401
  {
1402
  global $wpdb;
1403
  $c_string = $this->options['clients'];
1404
  $clients = explode(',', $c_string);
1405
 
1406
- $res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE, 'getClients_all'.__LINE__);
1407
- $row = @mysql_fetch_row($res);
1408
- $all = max(1, $row[0]);
 
1409
  $rest = 100;
1410
  $r = '<ul id="cpd_clients" class="cpd_front_list">';
1411
  foreach ($clients as $c)
1412
  {
1413
  $c = trim($c);
1414
- $res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE." WHERE client like '%".$c."%'", 'getClients_'.$c.'_'.__LINE__);
1415
- $row = @mysql_fetch_row($res);
1416
- $percent = number_format(100 * $row[0] / $all, 0);
1417
  $rest -= $percent;
1418
- $r .= '<li class="cpd-client-logo cpd-client-'.strtolower($c).'">'.$c.'<b>'.$percent.' %</b></li>';
1419
  }
1420
  if ( $rest > 0 )
1421
- $r .= '<li>'.__('Other', 'cpd').'<b>'.$rest.' %</b></li>';
1422
  $r .= '</ul>';
1423
 
1424
- if ($frontend)
1425
- return $r;
1426
- else
1427
- echo $r;
1428
  }
1429
 
1430
  /**
1431
  * shows top referrers
1432
  */
1433
- function getReferers( $limit = 0, $frontend = false, $days = 0 )
1434
  {
1435
  global $wpdb;
1436
  if ( $limit == 0 )
@@ -1441,45 +850,64 @@ function getReferers( $limit = 0, $frontend = false, $days = 0 )
1441
  // local url filter
1442
  $dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
1443
 
1444
- $localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%' ";
1445
- $res = $this->getQuery("SELECT COUNT(*) count, referer FROM ".CPD_C_TABLE." WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers'.__LINE__);
1446
- $r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'<br/>&nbsp;</small>';
1447
  $r .= '<ul id="cpd_referrers" class="cpd_front_list">';
1448
- if ( @mysql_num_rows($res) )
1449
- while ( $row = mysql_fetch_array($res) )
1450
  {
1451
- $ref = str_replace('&', '&amp;', $row['referer']);
1452
  $ref2 = str_replace('http://', '', $ref);
1453
- $r .= '<li><a href="'.$ref.'">'.$ref2.'</a><b>'.$row['count'].'</b></li>';
1454
  }
1455
  $r .= '</ul>';
1456
-
1457
- if ($frontend)
1458
- return $r;
1459
- else
1460
- echo $r;
1461
  }
1462
 
1463
  /**
1464
- * gets mass bots
1465
- * @param int $limit only show IP if more than x page views per day
1466
  */
1467
- function getMassBots( $limit = 0 )
1468
  {
1469
- if ( $limit == 0 )
1470
- $limit = 50;
 
 
 
 
 
 
 
 
 
 
 
 
 
1471
 
 
 
 
 
 
 
1472
  $sql = "
1473
- SELECT t.id, t.ip AS longip, INET_NTOA(t.ip) AS ip, t.date, t.posts,
1474
- c.client
1475
- FROM ( SELECT id, ip, date, count(*) posts
1476
- FROM ".CPD_C_TABLE."
1477
- GROUP BY ip, date
1478
- ORDER BY posts DESC ) AS t
1479
- LEFT JOIN ".CPD_C_TABLE." c
1480
- ON c.id = t.id
1481
- WHERE posts > $limit";
1482
- return $this->getQuery($sql, 'getMassBots'.__LINE__);
 
 
 
 
 
1483
  }
1484
 
1485
  /**
@@ -1488,110 +916,103 @@ function getMassBots( $limit = 0 )
1488
  * @param string $name function name for debug
1489
  * @param boolean $frontend limit function on frontend
1490
  */
1491
- function getUserPer_SQL( $sql, $name = '', $frontend = false )
1492
  {
1493
- global $userdata;
1494
- $m = $this->getQuery($sql, $name.__LINE__);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1495
  $r = '<ul class="cpd_front_list">';
1496
- while ( $row = mysql_fetch_assoc($m) )
1497
  {
1498
- $r .= '<li><b>'.$row['count'].'</b>';
1499
  // link only for editors in backend
1500
- if ( isset($userdata->user_level) && intval($userdata->user_level) >= 7 && !$frontend)
 
1501
  {
1502
- if ( $row['post_id'] > 0 )
1503
- $r .= '<a href="post.php?action=edit&amp;post='.$row['post_id'].'"><img src="'.$this->getResource('cpd_pen.png').'" alt="[e]" title="'.__('Edit Post').'" style="width:9px;height:12px;" /></a> '
1504
- .'<a href="'.$this->dir.'/userperspan.php?page='.$row['post_id'].'&amp;KeepThis=true&amp;TB_iframe=true" class="thickbox" title="Count per Day"><img src="'.$this->getResource('cpd_calendar.png').'" alt="[v]" style="width:12px;height:12px;" /></a> ';
1505
  else
1506
- $r .= '<img src="'.$this->getResource('cpd_trans.png').'" alt="" style="width:25px;height:12px;" /> ';
1507
  }
1508
 
1509
  $r .= '<a href="'.get_bloginfo('url');
1510
- if ( $row['post_id'] < 0 && $row['tax'] == 'category' )
1511
  //category
1512
- $r .= '?cat='.abs($row['post_id']).'">- '.$row['tag_cat_name'].' ('.__('Category').') -';
1513
- else if ( $row['post_id'] < 0 )
1514
  // tag
1515
- $r .= '?tag='.$row['tag_cat_slug'].'">- '.$row['tag_cat_name'].' ('.__('Tag').') -';
1516
- else if ( $row['post_id'] == 0 )
1517
  // homepage
1518
  $r .= '">- '.__('Front page displays').' -';
1519
  else
1520
- {
1521
  // post/page
1522
- $postname = $row['post'];
1523
- if ( empty($postname) )
1524
- $postname = '---';
1525
- $r .= '?p='.$row['post_id'].'">'.$postname;
1526
- }
1527
  $r .= '</a>';
1528
 
1529
- $r .= '</li>'."\n";
1530
  }
1531
  $r .= '</ul>';
1532
-
1533
  return $r;
1534
  }
1535
 
1536
- /**
1537
- * deletes spam in table, if you add new bot pattern you can clean the db
1538
- */
1539
- function cleanDB()
1540
- {
1541
- global $wpdb;
1542
-
1543
- // get trimed bot array
1544
- function trim_value(&$value) { $value = trim($value); }
1545
- $bots = explode( "\n", $this->options['bots'] );
1546
- array_walk($bots, 'trim_value');
1547
-
1548
- $rows_before = $wpdb->get_var('SELECT COUNT(*) FROM '.CPD_C_TABLE);
1549
-
1550
- // delete by ip
1551
- foreach( $bots as $ip )
1552
- if ( ip2long($ip) !== false )
1553
- $this->getQuery('DELETE FROM '.CPD_C_TABLE.' WHERE INET_NTOA(ip) LIKE \''.$ip.'%\'', 'clenaDB_ip'.__LINE__);
1554
-
1555
- // delete by client
1556
- foreach ($bots as $bot)
1557
- $this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE client LIKE '%$bot%'", 'cleanDB_client'.__LINE__);
1558
-
1559
- // delete if a previously countered page was deleted
1560
- $this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE page NOT IN ( SELECT id FROM ".$wpdb->posts.") AND page > 0", 'cleanDB_delPosts'.__LINE__);
1561
-
1562
- $rows_after = $wpdb->get_var('SELECT COUNT(*) FROM '.CPD_C_TABLE);
1563
- return $rows_before - $rows_after;
1564
- }
1565
-
1566
- /**
1567
- * adds menu entry to backend
1568
- * @param string $content WP-"Content"
1569
- */
1570
- function menu($content)
1571
- {
1572
- global $cpd_dir_name;
1573
- if (function_exists('add_options_page'))
1574
- {
1575
- $menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" style="width:9px;height:12px;" /> Count per Day';
1576
- add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
1577
- }
1578
- }
1579
-
1580
- /**
1581
- * adds an "settings" link to the plugins page
1582
- */
1583
- function pluginActions($links, $file)
1584
- {
1585
- global $cpd_dir_name;
1586
- if( $file == $cpd_dir_name.'/counter.php'
1587
- && strpos( $_SERVER['SCRIPT_NAME'], '/network/') === false ) // not on network plugin page
1588
- {
1589
- $link = '<a href="options-general.php?page='.$cpd_dir_name.'/counter-options.php">'.__('Settings').'</a>';
1590
- array_unshift( $links, $link );
1591
- }
1592
- return $links;
1593
- }
1594
-
1595
  /**
1596
  * creates the little widget on dashboard
1597
  */
@@ -1604,221 +1025,15 @@ function dashboardWidget()
1604
  echo '</b> '.__('Visitors per day', 'cpd');
1605
  }
1606
 
1607
- /**
1608
- * adds widget to dashboard page
1609
- */
1610
- function dashboardWidgetSetup()
1611
- {
1612
- wp_add_dashboard_widget( 'cpdDashboardWidget', 'Count per Day', array(&$this,'dashboardWidget') );
1613
- }
1614
-
1615
- /**
1616
- * combines the options to one array, update from previous versions
1617
- */
1618
- function updateOptions()
1619
- {
1620
- global $cpd_version;
1621
-
1622
- $o = get_option('count_per_day', array());
1623
- $onew = array(
1624
- 'version' => $cpd_version,
1625
- 'onlinetime' => (isset($o['onlinetime'])) ? $o['onlinetime'] : 300,
1626
- 'user' => (isset($o['user'])) ? $o['user'] : 0,
1627
- 'user_level' => (isset($o['user_level'])) ? $o['user_level'] : 0,
1628
- 'autocount' => (isset($o['autocount'])) ? $o['autocount'] : 1,
1629
- 'bots' => (isset($o['bots'])) ? $o['bots'] : "bot\nspider\nsearch\ncrawler\nask.com\nvalidator\nsnoopy\nsuchen.de\nsuchbaer.de\nshelob\nsemager\nxenu\nsuch_de\nia_archiver\nMicrosoft URL Control\nnetluchs",
1630
- 'dashboard_posts' => (isset($o['dashboard_posts'])) ? $o['dashboard_posts'] : 20,
1631
- 'dashboard_last_posts' => (isset($o['dashboard_last_posts'])) ? $o['dashboard_last_posts'] : 20,
1632
- 'dashboard_last_days' => (isset($o['dashboard_last_days'])) ? $o['dashboard_last_days'] : 7,
1633
- 'show_in_lists' => (isset($o['show_in_lists'])) ? $o['show_in_lists'] : 1,
1634
- 'chart_days' => (isset($o['chart_days'])) ? $o['chart_days'] : 60,
1635
- 'chart_height' => (isset($o['chart_height'])) ? $o['chart_height'] : 100,
1636
- 'countries' => (isset($o['countries'])) ? $o['countries'] : 20,
1637
- 'startdate' => (isset($o['startdate'])) ? $o['startdate'] : '',
1638
- 'startcount' => (isset($o['startcount'])) ? $o['startcount'] : '',
1639
- 'startreads' => (isset($o['startreads'])) ? $o['startreads'] : '',
1640
- 'anoip' => (isset($o['anoip'])) ? $o['anoip'] : 0,
1641
- 'massbotlimit' => (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25,
1642
- 'clients' => (isset($o['clients'])) ? $o['clients'] : 'Firefox, MSIE, Chrome, Safari, Opera',
1643
- 'ajax' => (isset($o['ajax'])) ? $o['ajax'] : 0,
1644
- 'debug' => (isset($o['debug'])) ? $o['debug'] : 0,
1645
- 'referers' => (isset($o['referers'])) ? $o['referers'] : 1,
1646
- 'dashboard_referers' => (isset($o['dashboard_referers'])) ? $o['dashboard_referers'] : 20,
1647
- 'referers_last_days' => (isset($o['referers_last_days'])) ? $o['referers_last_days'] : 7,
1648
- 'chart_old' => (isset($o['chart_old'])) ? $o['chart_old'] : 0,
1649
- 'no_front_css' => (isset($o['no_front_css'])) ? $o['no_front_css'] : 0,
1650
- 'whocansee' => (isset($o['whocansee'])) ? $o['whocansee'] : 'publish_posts'
1651
- );
1652
- update_option('count_per_day', $onew);
1653
- }
1654
-
1655
- /**
1656
- * add counter column to page/post lists
1657
- */
1658
- function cpdColumn($defaults)
1659
- {
1660
- if ( $this->options['show_in_lists'] )
1661
- $defaults['cpd_reads'] = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="'.__('Reads', 'cpd').'" title="'.__('Reads', 'cpd').'" style="width:9px;height:12px;" />';
1662
- return $defaults;
1663
- }
1664
-
1665
- /**
1666
- * adds content to the counter column
1667
- */
1668
- function cpdColumnContent($column_name, $id = 0)
1669
- {
1670
- global $wpdb;
1671
- if( $column_name == 'cpd_reads' )
1672
- {
1673
- $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$id'", 'cpdColumn_'.$id.'_'.__LINE__);
1674
- $row = mysql_fetch_row($res);
1675
- echo (int) $row[0];
1676
- }
1677
- }
1678
-
1679
- /**
1680
- * gets image recource with given name
1681
- */
1682
- function getResource( $r )
1683
- {
1684
- return trailingslashit( $this->dir ).'img/'.$r;
1685
- }
1686
-
1687
- /**
1688
- * sets columns on dashboard page
1689
- */
1690
- function screenLayoutColumns($columns, $screen)
1691
- {
1692
- if ($screen == $this->pagehook)
1693
- $columns[$this->pagehook] = 4;
1694
- return $columns;
1695
- }
1696
-
1697
- /**
1698
- * extends the admin menu
1699
- */
1700
- function setAdminMenu()
1701
- {
1702
- $menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
1703
- $this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
1704
- add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
1705
- }
1706
-
1707
- /**
1708
- * backlink to Plugin homepage
1709
- */
1710
- function cpdInfo()
1711
- {
1712
- global $cpd_version;
1713
-
1714
- $t = '<span style="white-space:nowrap">'.date_i18n('Y-m-d H:i').'</span>';
1715
- echo '<p>Count per Day: <code>'.$cpd_version.'</code><br/>';
1716
- printf(__('Time for Count per Day: <code>%s</code>.', 'cpd'), $t);
1717
- echo '<br />'.__('Bug? Problem? Question? Hint? Praise?', 'cpd').' ';
1718
- printf(__('Write a comment on the <a href="%s">plugin page</a>.', 'cpd'), 'http://www.tomsdimension.de/wp-plugins/count-per-day');
1719
- echo '<br />'.__('License').': <a href="http://www.tomsdimension.de/postcards">Postcardware :)</a>';
1720
- echo '<br /><a href="'.$this->dir.'/readme.txt?KeepThis=true&amp;TB_iframe=true" title="Count per Day - Readme.txt" class="thickbox"><strong>Readme.txt</strong></a></p>';
1721
- }
1722
-
1723
- /**
1724
- * function calls from metabox default parameters
1725
- */
1726
- function getMostVisitedPostsMeta() { $this->getMostVisitedPosts(); }
1727
- function getUserPerPostMeta() { $this->getUserPerPost(); }
1728
- function getVisitedPostsOnDayMeta() { $this->getVisitedPostsOnDay( 0, 100); }
1729
- function dashboardChartMeta() { $this->dashboardChart( 0, false); }
1730
- function dashboardChartVisitorsMeta() { $this->dashboardChartVisitors( 0, false); }
1731
- function getCountriesMeta() { $this->getCountries(0, false); }
1732
- function getCountriesVisitorsMeta() { $this->getCountries(0, false, true); }
1733
- function getReferersMeta() { $this->getReferers(0, false); }
1734
- function getUserOnlineMeta() { $this->getUserOnline( false, true); }
1735
-
1736
- /**
1737
- * will be executed if wordpress core detects this page has to be rendered
1738
- */
1739
- function onLoadPage()
1740
- {
1741
- global $cpd_geoip;
1742
- // needed javascripts
1743
- wp_enqueue_script('common');
1744
- wp_enqueue_script('wp-lists');
1745
- if ( !$this->options['chart_old'] )
1746
- wp_enqueue_script('postbox');
1747
-
1748
- // add the metaboxes
1749
- add_meta_box('reads_at_all', __('Total visitors', 'cpd'), array(&$this, 'dashboardReadsAtAll'), $this->pagehook, 'cpdrow1', 'core');
1750
- add_meta_box('user_online', __('Visitors online', 'cpd'), array(&$this, 'getUserOnlineMeta'), $this->pagehook, 'cpdrow1', 'default');
1751
- add_meta_box('user_per_month', __('Visitors per month', 'cpd'), array(&$this, 'getUserPerMonth'), $this->pagehook, 'cpdrow2', 'default');
1752
- add_meta_box('reads_per_month', __('Reads per month', 'cpd'), array(&$this, 'getReadsPerMonth'), $this->pagehook, 'cpdrow3', 'default');
1753
- add_meta_box('reads_per_post', __('Visitors per post', 'cpd'), array(&$this, 'getUserPerPostMeta'), $this->pagehook, 'cpdrow3', 'default');
1754
- add_meta_box('last_reads', __('Latest Counts', 'cpd'), array(&$this, 'getMostVisitedPostsMeta'), $this->pagehook, 'cpdrow4', 'default');
1755
- add_meta_box('day_reads', __('Visitors per day', 'cpd'), array(&$this, 'getVisitedPostsOnDayMeta'), $this->pagehook, 'cpdrow4', 'default');
1756
- add_meta_box('cpd_info', __('Plugin'), array(&$this, 'cpdInfo'), $this->pagehook, 'cpdrow1', 'low');
1757
- if ( $this->options['referers'] )
1758
- {
1759
- add_meta_box('browsers', __('Browsers', 'cpd'), array(&$this, 'getClients'), $this->pagehook, 'cpdrow2', 'default');
1760
- add_meta_box('referers', __('Referrer', 'cpd'), array(&$this, 'getReferersMeta'), $this->pagehook, 'cpdrow3', 'default');
1761
- }
1762
- if ( $this->options['chart_old'] )
1763
- {
1764
- add_meta_box('chart_visitors', __('Visitors per day', 'cpd'), array(&$this, 'dashboardChartVisitorsMeta'), $this->pagehook, 'cpdrow1', 'default');
1765
- add_meta_box('chart_reads', __('Reads per day', 'cpd'), array(&$this, 'dashboardChartMeta'), $this->pagehook, 'cpdrow1', 'default');
1766
- }
1767
- if ( $cpd_geoip )
1768
- {
1769
- add_meta_box('countries', __('Reads per Country', 'cpd'), array(&$this, 'getCountriesMeta'), $this->pagehook, 'cpdrow2', 'default');
1770
- add_meta_box('countries2', __('Visitors per Country', 'cpd'), array(&$this, 'getCountriesVisitorsMeta'), $this->pagehook, 'cpdrow2', 'default');
1771
- }
1772
- }
1773
-
1774
- /**
1775
- * creates dashboard page
1776
- */
1777
- function onShowPage()
1778
- {
1779
- global $screen_layout_columns, $count_per_day;
1780
- if ( empty($screen_layout_columns) )
1781
- $screen_layout_columns = 4;
1782
- $data = '';
1783
- ?>
1784
- <div id="cpd-metaboxes" class="wrap">
1785
- <h2><img src="<?php echo $this->getResource('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day - <?php _e('Statistics', 'cpd') ?></h2>
1786
- <?php
1787
- wp_nonce_field('cpd-metaboxes');
1788
- wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false );
1789
- wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false );
1790
- $css = 'style="width:'.round(98 / $screen_layout_columns, 1).'%;"';
1791
- if ( !$this->options['chart_old'] )
1792
- $this->getFlotChart();
1793
- ?>
1794
- <div id="dashboard-widgets" class="metabox-holder cpd-dashboard">
1795
- <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow1', $data); ?></div>
1796
- <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow2', $data); ?></div>
1797
- <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow3', $data); ?></div>
1798
- <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow4', $data); ?></div>
1799
- <br class="clear"/>
1800
- </div>
1801
- </div>
1802
- <script type="text/javascript">
1803
- //<![CDATA[
1804
- jQuery(document).ready( function($) {
1805
- $('.if-js-closed').removeClass('if-js-closed').addClass('closed');
1806
- postboxes.add_postbox_toggles('<?php echo $this->pagehook; ?>');
1807
- });
1808
- //]]>
1809
- </script>
1810
- <?php
1811
- }
1812
-
1813
  /**
1814
  * gets country flags and page views
1815
  * @param integer $limit count of countries
1816
  * @param boolean $frontend limit function on frontend
1817
  * @param boolean $visitors show visitors insteed of reads
1818
  */
1819
- function getCountries( $limit = 0, $frontend, $visitors = false )
1820
  {
1821
- global $cpd_path, $cpd_geoip;
1822
  $c = '';
1823
 
1824
  // with GeoIP addon only
@@ -1828,21 +1043,6 @@ function getCountries( $limit = 0, $frontend, $visitors = false )
1828
  if ( $limit == 0 )
1829
  $limit = max( 0, $this->options['countries'] );
1830
 
1831
- if ( $visitors )
1832
- // visitors
1833
- $res = $this->getQuery("
1834
- SELECT country, COUNT(*) c
1835
- FROM ( SELECT country, ip, COUNT(*) c
1836
- FROM ".CPD_C_TABLE."
1837
- WHERE ip > 0
1838
- GROUP BY country, ip ) as t
1839
- GROUP BY country
1840
- ORDER BY c desc
1841
- LIMIT $limit", 'getCountries'.__LINE__);
1842
- else
1843
- // reads
1844
- $res = $this->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE ip > 0 GROUP BY country ORDER BY c DESC LIMIT $limit", 'getCountries'.__LINE__);
1845
-
1846
  // map link
1847
  if (!$frontend && file_exists($cpd_path.'map/map.php') )
1848
  {
@@ -1853,31 +1053,28 @@ function getCountries( $limit = 0, $frontend, $visitors = false )
1853
  $c .= 'reads';
1854
  $c .= '&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
1855
  }
 
 
1856
 
1857
- if ( @mysql_num_rows($res) )
 
 
1858
  {
1859
- $c .= '<ul class="cpd_front_list">';
1860
- while ( $r = mysql_fetch_array($res) )
 
 
1861
  {
1862
- $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($r['country'])];
1863
- if ( empty($id) )
1864
- {
1865
- $name = '???';
1866
- $r['country'] = 'unknown';
1867
- }
1868
- else
1869
- $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
1870
- $c .= '<li><b>'.$r['c'].'</b>
1871
- <div class="cpd-flag cpd-flag-'.$r['country'].'"></div> '
1872
- .$name.'&nbsp;</li>'."\n";
1873
  }
1874
- $c .= '</ul>';
 
 
1875
  }
 
1876
  }
1877
- if ($frontend)
1878
- return $c;
1879
- else
1880
- echo $c;
1881
  }
1882
 
1883
  /**
@@ -1894,265 +1091,20 @@ function getMap( $what = 'visitors', $width = 500, $height = 340, $min = 0 )
1894
  ?>
1895
  <script type="text/javascript" src="<?php echo $dir ?>swfobject.js"></script>
1896
  <div id="<?php echo $divid ?>" class="cpd_worldmap" style="width:<?php echo $width ?>px; height:<?php echo $height ?>px; background:#4499FF;">
1897
- <strong>Flash content</strong>
1898
  </div>
1899
  <script type="text/javascript">
1900
- // <![CDATA[
1901
  var so = new SWFObject("<?php echo $dir ?>ammap.swf", "ammap", "100%", "100%", "8", "#4499FF");
1902
  so.addVariable("path", "<?php echo $dir ?>");
1903
  so.addVariable("settings_file", escape("<?php echo $dir ?>settings.xml.php?map=<?php echo $what ?>&min=<?php echo $min ?>"));
1904
  so.addVariable("data_file", escape("<?php echo $dir ?>data.xml.php?map=<?php echo $what ?>&min=<?php echo $min ?>"));
1905
  so.write("<?php echo $divid ?>");
1906
- // ]]>
1907
  </script>
1908
  <?php
1909
  }
1910
 
1911
-
1912
-
1913
-
1914
-
1915
- /**
1916
- * adds some shortcodes to use functions in frontend
1917
- */
1918
- function addShortcodes()
1919
- {
1920
- add_shortcode('CPD_READS_THIS', array( &$this, 'shortShow'));
1921
- add_shortcode('CPD_READS_TOTAL', array( &$this, 'shortReadsTotal'));
1922
- add_shortcode('CPD_READS_TODAY', array( &$this, 'shortReadsToday'));
1923
- add_shortcode('CPD_READS_YESTERDAY', array( &$this, 'shortReadsYesterday'));
1924
- add_shortcode('CPD_READS_LAST_WEEK', array( &$this, 'shortReadsLastWeek'));
1925
- add_shortcode('CPD_READS_PER_MONTH', array( &$this, 'shortReadsPerMonth'));
1926
- add_shortcode('CPD_READS_THIS_MONTH', array( &$this, 'shortReadsThisMonth'));
1927
- add_shortcode('CPD_VISITORS_TOTAL', array( &$this, 'shortUserAll'));
1928
- add_shortcode('CPD_VISITORS_ONLINE', array( &$this, 'shortUserOnline'));
1929
- add_shortcode('CPD_VISITORS_TODAY', array( &$this, 'shortUserToday'));
1930
- add_shortcode('CPD_VISITORS_YESTERDAY', array( &$this, 'shortUserYesterday'));
1931
- add_shortcode('CPD_VISITORS_LAST_WEEK', array( &$this, 'shortUserLastWeek'));
1932
- add_shortcode('CPD_VISITORS_THIS_MONTH', array( &$this, 'shortUserThisMonth'));
1933
- add_shortcode('CPD_VISITORS_PER_DAY', array( &$this, 'shortUserPerDay'));
1934
- add_shortcode('CPD_FIRST_COUNT', array( &$this, 'shortFirstCount'));
1935
- add_shortcode('CPD_CLIENTS', array( &$this, 'shortClients'));
1936
- add_shortcode('CPD_READS_CHART', array( &$this, 'shortChartReads'));
1937
- add_shortcode('CPD_VISITORS_CHART', array( &$this, 'shortChartVisitors'));
1938
- add_shortcode('CPD_VISITORS_PER_MONTH', array( &$this, 'shortUserPerMonth'));
1939
- add_shortcode('CPD_VISITORS_PER_POST', array( &$this, 'shortUserPerPost'));
1940
- add_shortcode('CPD_COUNTRIES', array( &$this, 'shortCountries'));
1941
- add_shortcode('CPD_MOST_VISITED_POSTS', array( &$this, 'shortMostVisitedPosts'));
1942
- add_shortcode('CPD_REFERERS', array( &$this, 'shortReferers'));
1943
- add_shortcode('CPD_POSTS_ON_DAY', array( &$this, 'shortPostsOnDay'));
1944
- add_shortcode('CPD_MAP', array( &$this, 'shortShowMap'));
1945
- }
1946
- function shortShow() { return $this->show('', '', false, false); }
1947
- function shortReadsTotal() { return $this->getReadsAll(true); }
1948
- function shortReadsToday() { return $this->getReadsToday(true); }
1949
- function shortReadsYesterday() { return $this->getReadsYesterday(true); }
1950
- function shortReadsThisMonth() { return $this->getReadsThisMonth(true); }
1951
- function shortReadsLastWeek() { return $this->getReadsLastWeek(true); }
1952
- function shortReadsPerMonth() { return $this->getReadsPerMonth(true); }
1953
- function shortUserAll() { return $this->getUserAll(true); }
1954
- function shortUserOnline() { return $this->getUserOnline(true); }
1955
- function shortUserToday() { return $this->getUserToday(true); }
1956
- function shortUserYesterday() { return $this->getUserYesterday(true); }
1957
- function shortUserLastWeek() { return $this->getUserLastWeek(true); }
1958
- function shortUserThisMonth() { return $this->getUserThisMonth(true); }
1959
- function shortUserPerDay() { return $this->getUserPerDay($this->options['dashboard_last_days'], true); }
1960
- function shortFirstCount() { return $this->getFirstCount(true); }
1961
- function shortClients() { return $this->getClients(true); }
1962
- function shortChartReads() { return '<div class="cpd_front_chart">'.$this->dashboardChart(0, true).'</div>'; }
1963
- function shortChartVisitors() { return '<div class="cpd_front_chart">'.$this->dashboardChartVisitors(0, true).'</div>'; }
1964
- function shortUserPerMonth() { return $this->getUserPerMonth(true); }
1965
- function shortUserPerPost() { return $this->getUserPerPost(0, true); }
1966
- function shortCountries() { return $this->getCountries(0, true); }
1967
- function shortMostVisitedPosts(){ return $this->getMostVisitedPosts(0, 0, true); }
1968
- function shortReferers() { return $this->getReferers(0, true); }
1969
- function shortPostsOnDay( $atts )
1970
- {
1971
- extract( shortcode_atts( array(
1972
- 'date' => 0,
1973
- 'limit' => 0
1974
- ), $atts) );
1975
- return $this->getVisitedPostsOnDay( $date, $limit, false, false, true );
1976
- }
1977
- function shortShowMap( $atts )
1978
- {
1979
- extract( shortcode_atts( array(
1980
- 'width' => 500,
1981
- 'height' => 340,
1982
- 'what' => 'reads',
1983
- 'min' => 0
1984
- ), $atts) );
1985
- return $this->getMap( $what, $width, $height, $min );
1986
- }
1987
-
1988
- /**
1989
- * adds style sheet to admin header
1990
- */
1991
- function addCss()
1992
- {
1993
- global $text_direction;
1994
- echo "\n".'<link rel="stylesheet" href="'.$this->dir.'/counter.css" type="text/css" />'."\n";
1995
- if ( $text_direction == 'rtl' )
1996
- echo '<link rel="stylesheet" href="'.$this->dir.'/counter-rtl.css" type="text/css" />'."\n";
1997
- // thickbox style here because add_thickbox() breaks RTL in he_IL
1998
- if ( strpos($_SERVER['SCRIPT_NAME'], '/wp-admin/') !== false )
1999
- echo '<link rel="stylesheet" href="'.get_bloginfo('wpurl').'/wp-includes/js/thickbox/thickbox.css" type="text/css" />'."\n";
2000
- }
2001
-
2002
- /**
2003
- * adds javascript to admin header
2004
- */
2005
- function addJS()
2006
- {
2007
- echo '<!--[if IE]><script type="text/javascript" src="'.$this->dir.'/js/excanvas.min.js"></script><![endif]-->'."\n";
2008
- }
2009
-
2010
- /**
2011
- * adds ajax script to count cached posts
2012
- */
2013
- function addAjaxScript()
2014
- {
2015
- $this->getPostID();
2016
- echo <<< JSEND
2017
- <script type="text/javascript">
2018
- // Count per Day
2019
- //<![CDATA[
2020
- jQuery(document).ready( function($)
2021
- {
2022
- jQuery.get('{$this->dir}/ajax.php?f=count&page={$this->page}', function(text)
2023
- {
2024
- var cpd_funcs = text.split('|');
2025
- for(var i = 0; i < cpd_funcs.length; i++)
2026
- {
2027
- var cpd_daten = cpd_funcs[i].split('===');
2028
- var cpd_fields = document.getElementsByName('cpd_number_' + cpd_daten[0].toLowerCase());
2029
- for(var x = 0; x < cpd_fields.length; x++)
2030
- cpd_fields[x].innerHTML = cpd_daten[1];
2031
- }
2032
- });
2033
- } );
2034
- //]]>
2035
- </script>
2036
- JSEND;
2037
- }
2038
-
2039
- /**
2040
- * shows time of queries
2041
- */
2042
- function showQueries()
2043
- {
2044
- global $cpd_path, $cpd_version;
2045
- echo '<div style="margin:10px; padding-left:30px; border:1px red solid">
2046
- <b>Count per Day - DEBUG: '.round($this->queries[0], 3).' s</b><ol>';
2047
- echo '<li>'
2048
- .'<b>Server:</b> '.$_SERVER['SERVER_SOFTWARE'].'<br/>'
2049
- .'<b>PHP:</b> '.phpversion().'<br/>'
2050
- .'<b>mySQL Server:</b> '.mysql_get_server_info($this->dbcon).'<br/>'
2051
- .'<b>mySQL Client:</b> '.mysql_get_client_info().'<br/>'
2052
- .'<b>WordPress:</b> '.get_bloginfo('version').'<br/>'
2053
- .'<b>Count per Day:</b> '.$cpd_version.'<br/>'
2054
- .'<b>Time for Count per Day:</b> '.date_i18n('Y-m-d H:i').'<br/>'
2055
- .'<b>URL:</b> '.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'].'<br/>'
2056
- .'<b>Referrer:</b> '.$_SERVER['HTTP_REFERER']
2057
- .'</li>';
2058
- echo '<li><b>POST:</b><br/>';
2059
- var_dump($_POST);
2060
- echo '<li><b>SESSION:</b><br/>';
2061
- var_dump($_SESSION);
2062
- echo '</li>';
2063
- echo '<li><b>Tables:</b><br><b>'.CPD_C_TABLE.'</b>: ';
2064
- $res = $this->getQuery( "SHOW FIELDS FROM `".CPD_C_TABLE."`", 'showFields' );
2065
- while ( $col = mysql_fetch_array($res) )
2066
- echo '<span style="color:blue">'.$col['Field'].'</span> = '.$col['Type'].' &nbsp; ';
2067
- echo '<br/><b>'.CPD_CO_TABLE.'</b>: ';
2068
- $res = $this->getQuery( "SHOW FIELDS FROM `".CPD_CO_TABLE."`", 'showFields' );
2069
- while ( $col = mysql_fetch_array($res) )
2070
- echo '<span style="color:blue">'.$col['Field'].'</span> = '.$col['Type'].' &nbsp; ';
2071
- echo '<br/><b>'.CPD_N_TABLE.'</b>: ';
2072
- $res = $this->getQuery( "SHOW FIELDS FROM `".CPD_N_TABLE."`", 'showFields' );
2073
- while ( $col = mysql_fetch_array($res) )
2074
- echo '<span style="color:blue">'.$col['Field'].'</span> = '.$col['Type'].' &nbsp; ';
2075
- echo '</li>';
2076
- echo '<li><b>Options:</b><br /> ';
2077
- foreach ( $this->options as $k=>$v )
2078
- if ( $k != 'bots') // hoster restrictions
2079
- echo $k.' = '.$v.'<br />';
2080
- echo '</li>';
2081
- foreach($this->queries as $q)
2082
- if ($q != $this->queries[0] )
2083
- echo '<li>'.$q.'</li>';
2084
- echo '</ol>';
2085
- ?>
2086
- <p>GeoIP:
2087
- d_ir=<?php echo substr(decoct(fileperms($cpd_path.'geoip/')), -3) ?>
2088
- f_ile=<?php echo (is_file($cpd_path.'geoip/GeoIP.dat')) ? substr(decoct(fileperms($cpd_path.'geoip/GeoIP.dat')), -3) : '-'; ?>
2089
- f_open=<?php echo (function_exists('fopen')) ? 'true' : 'false' ?>
2090
- g_zopen=<?php echo (function_exists('gzopen')) ? 'true' : 'false' ?>
2091
- a_llow_url_fopen=<?php echo (ini_get('allow_url_fopen')) ? 'true' : 'false' ?>
2092
- </p>
2093
- <?php
2094
- echo '</div>';
2095
- }
2096
-
2097
- /**
2098
- * checks installation in sub blogs
2099
- */
2100
- function checkVersion()
2101
- {
2102
- global $wpdb;
2103
-
2104
- if ( function_exists('is_multisite') && is_multisite() )
2105
- {
2106
- // check if it is a network activation
2107
- if ( isset($_GET['networkwide']) && ($_GET['networkwide'] == 1) )
2108
- {
2109
- $old_blog = $wpdb->blogid;
2110
- $blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs"));
2111
- foreach ($blogids as $blog_id)
2112
- {
2113
- // create tables in all sub blogs
2114
- switch_to_blog($blog_id);
2115
- $this->createTables();
2116
- }
2117
- switch_to_blog($old_blog);
2118
- return;
2119
- }
2120
- }
2121
- // create tables in main blog
2122
- $this->createTables();
2123
- }
2124
-
2125
- /**
2126
- * calls widget class
2127
- */
2128
- function register_widgets()
2129
- {
2130
- register_widget('CountPerDay_Widget');
2131
- }
2132
-
2133
- /**
2134
- * adds charts to lists on dashboard
2135
- * @param string $id HTML-id of the DIV
2136
- * @param array $data data
2137
- * @param string $html given list code to add the chart
2138
- */
2139
- function includeChartJS( $id, $data, $html )
2140
- {
2141
- if ( $this->options['chart_old'] )
2142
- return $html;
2143
- $d = array_reverse($data);
2144
- $d = '[['.implode(',', $d).']]';
2145
- $code = '<div id="'.$id.'" class="cpd-list-chart"></div>
2146
- <script type="text/javascript">
2147
- //<![CDATA[
2148
- if (jQuery("#'.$id.'").width() > 0)
2149
- jQuery(function(){jQuery.plot(jQuery("#'.$id.'"),'.$d.',{series:{lines:{fill:true,lineWidth:1}},colors:["red"],grid:{show:false}});});
2150
- //]]>
2151
- </script>
2152
- '.$html;
2153
- return $code;
2154
- }
2155
-
2156
  } // class end
2157
 
2158
 
@@ -2170,8 +1122,6 @@ class CountPerDay_Widget extends WP_Widget
2170
  'getreadsall_name', 'getreadstoday_name', 'getreadsyesterday_name', 'getreadslastweek_name', 'getreadsthismonth_name',
2171
  'getuserall_name', 'getusertoday_name', 'getuseryesterday_name', 'getuserlastweek_name', 'getuserthismonth_name',
2172
  'getuserperday_name', 'getuseronline_name', 'getfirstcount_name' );
2173
- // const CPDF = 'show,getReadsAll,getReadsToday,getReadsYesterday,getReadsLastWeek,getReadsThisMonth,getUserAll,getUserToday,getUserYesterday,getUserLastWeek,getUserThisMonth,getUserPerDay,getUserOnline,getFirstCount';
2174
- // var $cpd_funcs;
2175
  var $cpd_funcs = array ( 'show',
2176
  'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
2177
  'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
@@ -2179,15 +1129,8 @@ class CountPerDay_Widget extends WP_Widget
2179
  var $funcs;
2180
  var $names;
2181
 
2182
- // export functions to ajax script
2183
- // public static function getWidgetFuncs()
2184
- // {
2185
- // return explode(',', self::CPDF);
2186
- // }
2187
-
2188
  // constructor
2189
  function CountPerDay_Widget() {
2190
- // $this->cpd_funcs = explode(',', self::CPDF);
2191
  $this->funcs = array_slice( $this->fields, 2, 14);
2192
  $this->names = array_slice( $this->fields, 16, 14);
2193
  parent::WP_Widget('countperday_widget', 'Count per Day',
@@ -2214,7 +1157,8 @@ class CountPerDay_Widget extends WP_Widget
2214
  if ( ($k == 'show' && is_singular()) || $k != 'show' )
2215
  {
2216
  $f = str_replace( $this->funcs, $this->cpd_funcs, $k );
2217
- echo '<li class="cpd-l"><span id="cpd_number_'.$k.'" name="cpd_number_'.$k.'" class="cpd-r">';
 
2218
  // parameters only for special functions
2219
  if ( $f == 'getUserPerDay' )
2220
  eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
@@ -2222,7 +1166,7 @@ class CountPerDay_Widget extends WP_Widget
2222
  eval('echo $count_per_day->show("","",false,false);');
2223
  else
2224
  eval('echo $count_per_day->'.$f.'();');
2225
- echo '</span>'.$instance[$k.'_name'].':</li>';
2226
  }
2227
  }
2228
  }
@@ -2305,7 +1249,7 @@ class CountPerDay_Widget extends WP_Widget
2305
  $label_value = esc_attr( $instance[$fl] );
2306
 
2307
  echo '
2308
- <li itemid="'.$f.'" class="cpd_widget_item">
2309
  <input type="checkbox" class="checkbox" id="'.$check_id.'" name="'.$check_name.'" value="1" '.$check_status.' />
2310
  <label for="'.$check_id.'"> '.$default[$fl].'</label>
2311
  <input type="text" class="widefat" id="'.$label_id.'" name="'.$label_name.'" value="'.$label_value.'" />
@@ -2341,23 +1285,23 @@ class CountPerDay_Widget extends WP_Widget
2341
  </script>
2342
  <?php
2343
  }
2344
-
2345
  } // widget class
2346
 
2347
-
2348
-
2349
  /**
2350
  * uninstall function, deletes tables and options
2351
  */
2352
  function count_per_day_uninstall()
2353
  {
2354
  global $wpdb;
2355
- // $wpdb->query('DROP TABLE IF EXISTS '.CPD_C_TABLE);
2356
- // $wpdb->query('DROP TABLE IF EXISTS '.CPD_CO_TABLE);
2357
- // $wpdb->query('DROP TABLE IF EXISTS '.CPD_N_TABLE);
2358
- // delete_option('count_per_day');
2359
- $wpdb->query("DELETE FROM ".$wpdb->usermeta." WHERE meta_key like '%_cpd_metaboxes%';");
 
 
 
 
2360
  }
2361
 
2362
-
2363
  $count_per_day = new CountPerDay();
3
  Plugin Name: Count Per Day
4
  Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
5
  Description: Counter, shows reads per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
6
+ Version: 3.0
7
+ License: Postcardware
8
  Author: Tom Braider
9
  Author URI: http://www.tomsdimension.de
10
  */
11
 
12
  $cpd_dir_name = 'count-per-day';
13
+ $cpd_version = '3.0';
14
 
 
 
 
15
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
16
+ include_once($cpd_path.'counter-core.php');
 
 
 
17
 
18
  /**
19
  * Count per Day
20
  */
21
+ class CountPerDay extends CountPerDayCore
22
  {
 
 
 
 
 
 
 
23
 
24
  /**
25
+ * constructor
26
  */
27
  function CountPerDay()
28
  {
29
+ $this->init();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
  /**
47
  $this->count();
48
  if ( $page == 'x' )
49
  $page = get_the_ID();
 
 
 
 
50
  else
51
+ $page = (int) $page;
52
+ if ($c = $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE page='$page'"), 'show '.__LINE__))
 
 
 
 
 
 
 
 
 
 
 
 
53
  {
54
+ if ($show)
55
+ echo $before.$c.$after;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  else
57
+ return $c;
58
+ }
 
 
 
 
 
 
 
 
 
 
59
  }
60
 
61
  /**
65
  */
66
  function count( $x, $page = 'x' )
67
  {
68
+ global $wpdb, $wp_query, $cpd_path, $cpd_geoip, $userdata;
69
 
70
+ if ($this->options['debug'])
71
  $this->queries[] = 'called Function: <b style="color:blue">count</b> page: <code>'.$page.'</code>';
72
 
73
+ if ($page == 'x')
74
  // normal counter
75
  $page = $this->getPostID();
76
  else
77
  // ajax counter on cached pages
78
+ $page = (int) $page;
79
 
80
  // get userlevel from role
81
+ if (current_user_can('administrator')) $userlevel = 10;
82
+ else if (current_user_can('editor')) $userlevel = 7;
83
+ else if (current_user_can('author')) $userlevel = 2;
84
+ else if (current_user_can('contributor')) $userlevel = 1;
85
+ else if (current_user_can('subscriber')) $userlevel = 0;
86
+ else $userlevel = -1;
87
+
 
 
 
 
 
 
 
88
  // count visitor?
89
  $countUser = 1;
90
+ if (!$this->options['user'] && is_user_logged_in() ) $countUser = 0; // don't count loged user
91
+ if ( $this->options['user'] && isset($userdata) && $this->options['user_level'] < $userlevel ) $countUser = 0; // loged user, but higher user level
92
 
93
  $isBot = $this->isBot();
94
 
95
+ if ($this->options['debug'])
96
  $this->queries[] = 'called Function: <b style="color:blue">count (variables)</b> '
97
+ .'isBot: <code>'.(int) $isBot.'</code> '
98
  .'countUser: <code>'.$countUser.'</code> '
99
  .'page: <code>'.$page.'</code> '
100
  .'userlevel: <code>'.$userlevel.'</code>';
105
  $userip = $this->anonymize_ip($_SERVER['REMOTE_ADDR']);
106
  $client = ($this->options['referers']) ? $_SERVER['HTTP_USER_AGENT'] : '';
107
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? $_SERVER['HTTP_REFERER'] : '';
108
+ if ($this->options['referers_cut'])
109
+ $referer = substr( $referer, 0, strpos($referer,'?') );
110
  $date = date_i18n('Y-m-d');
111
 
112
  // new visitor on page?
113
+ $count = $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE ip=INET_ATON(%s) AND date=%s AND page=%d", $userip, $date, $page), 'count check '.__LINE__);
114
+ if ( !$count )
 
115
  {
116
  // save count
117
+ if ($cpd_geoip)
118
  {
119
  // with GeoIP addon save country
120
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
121
  $country = strtolower(cpd_geoip_country_code_by_addr($gi, $userip));
122
+ $this->mysqlQuery('', $wpdb->prepare("INSERT INTO $wpdb->cpd_counter (page, ip, client, date, country, referer)
123
+ VALUES (%s, INET_ATON(%s), %s, %s, %s, %s)", $page, $userip, $client, $date, $country, $referer), 'count insert '.__LINE__);
124
  }
125
  else
 
126
  // without country
127
+ $this->mysqlQuery('', $wpdb->prepare("INSERT INTO $wpdb->cpd_counter (page, ip, client, date, referer)
128
+ VALUES (%s, INET_ATON(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert '.__LINE__);
 
129
  }
 
130
  // online counter
131
+ $oc = get_option('count_per_day_online', array());
132
+ $oc[$userip] = array( time(), $page );
133
+ update_option('count_per_day_online', $oc);
134
  }
135
  }
136
 
137
  /**
138
+ * deletes old online user
139
  */
140
  function deleteOnlineCounter()
141
  {
142
+ $oc = get_option('count_per_day_online', array());
143
+ foreach ($oc as $k => $v)
144
+ if ($v[0] < time() - $this->options['onlinetime'])
145
+ unset($oc[$k]);
146
+ update_option('count_per_day_online', $oc);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  }
148
 
149
  /**
154
  $thisMonth = date_i18n('F');
155
  ?>
156
  <ul>
157
+ <li><?php _e('Total reads', 'cpd') ?>: <b><span><?php $this->getReadsAll() ?></span></b></li>
158
+ <li><?php _e('Reads today', 'cpd') ?>: <b><?php $this->getReadsToday() ?></b></li>
159
+ <li><?php _e('Reads yesterday', 'cpd') ?>: <b><?php $this->getReadsYesterday() ?></b></li>
160
+ <li><?php _e('Reads last week', 'cpd') ?>: <b><?php $this->getReadsLastWeek() ?></b></li>
161
+ <li><?php _e('Reads', 'cpd') ?> <?php echo $thisMonth ?>:<b><?php $this->getReadsThisMonth() ?></b></li>
162
+ <li><?php _e('Total visitors', 'cpd') ?>: <b><span><?php $this->getUserAll() ?></span></b></li>
163
+ <li><?php _e('Visitors currently online', 'cpd') ?>:<b><span><?php $this->getUserOnline() ?></span></b></li>
164
+ <li><?php _e('Visitors today', 'cpd') ?>: <b><?php $this->getUserToday() ?></b></li>
165
+ <li><?php _e('Visitors yesterday', 'cpd') ?>: <b><?php $this->getUserYesterday() ?></b></li>
166
+ <li><?php _e('Visitors last week', 'cpd') ?>: <b><?php $this->getUserLastWeek() ?></b></li>
167
+ <li><?php _e('Visitors', 'cpd') ?> <?php echo $thisMonth ?>: <b><?php $this->getUserThisMonth() ?></b></li>
168
+ <li>&Oslash; <?php _e('Visitors per day', 'cpd') ?>: <b><?php $this->getUserPerDay($this->options['dashboard_last_days']) ?></b></li>
169
+ <li><?php _e('Counter starts on', 'cpd') ?>: <b><?php $this->getFirstCount() ?></b></li>
170
+ <li><?php _e('Most visited day', 'cpd') ?>: <b class="cpd-r"><?php $this->getDayWithMostReads(1) ?></b></li>
171
+ <li><?php _e('Most visited day', 'cpd') ?>: <b class="cpd-r"><?php $this->getDayWithMostUsers(1) ?></b></li>
172
  </ul>
173
  <?php
174
  }
179
  */
180
  function getFlotChart( $limit = 0 )
181
  {
182
+ global $wpdb;
183
  if ( $limit == 0 )
184
  $limit = (!empty($this->options['chart_days'])) ? $this->options['chart_days'] : 30;
185
  $limit -= 1;
186
 
187
+ // last day
188
  $end_sql = (isset($_GET['cpd_chart_start'])) ? $_GET['cpd_chart_start'] : date_i18n('Y-m-d');
189
  $end_time = strtotime($end_sql);
190
  $end_str = mysql2date(get_option('date_format'), $end_sql);
204
  $data[$day] = array(0, 0);
205
 
206
  // reads
207
+ $sql = $wpdb->prepare("
208
+ SELECT COUNT(*) count, c.date
209
+ FROM $wpdb->cpd_counter c
210
+ WHERE c.date BETWEEN %s AND %s
211
+ GROUP BY c.date",
212
+ $start_sql, $end_sql );
213
+ $res = $this->mysqlQuery('rows', $sql, 'ChartReads '.__LINE__);
214
+ if ($res)
215
+ foreach ($res as $row)
216
+ $data[strtotime($row->date)][0] = $row->count;
217
 
218
  // visitors
219
+ $sql = $wpdb->prepare("
220
+ SELECT COUNT(*) count, t.date
221
+ FROM ( SELECT COUNT(*) count, date
222
+ FROM $wpdb->cpd_counter
223
+ GROUP BY date, ip
224
+ ) AS t
225
+ WHERE t.date BETWEEN %s AND %s
226
+ GROUP BY t.date",
227
+ $start_sql, $end_sql );
228
+ $res = $this->mysqlQuery('rows', $sql, 'ChartVisitors '.__LINE__);
229
+ if ($res)
230
+ foreach ($res as $row)
231
+ $data[strtotime($row->date)][1] = $row->count;
232
 
233
  // fill data array
234
  $reads = array();
266
  'reads': { data: <?php echo $reads_line ?>, label: '<?php _e('Reads per day', 'cpd') ?>' },
267
  'visitors' : { data: <?php echo $visitors_line ?>, label: '<?php _e('Visitors per day', 'cpd') ?>' }
268
  };
 
269
  // Checkboxen
270
  var i = 0;
271
  jQuery.each(datasets, function(key, val) {
339
  <?php
340
  }
341
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342
  /**
343
  * shows current visitors
344
  */
345
+ function getUserOnline( $frontend = false, $country = false, $return = false )
346
  {
347
+ global $wpdb, $cpd_geoip, $cpd_path;
348
  $c = '';
349
 
350
+ $oc = get_option('count_per_day_online');
351
+
352
+ if ( $oc && $cpd_geoip && $country )
353
  {
354
  // map link
355
+ if ( !$frontend && file_exists($cpd_path.'map/map.php') )
356
  $c .= '<div style="margin: 5px 0 10px 0;"><a href="'.$this->dir.'/map/map.php?map=online'
357
  .'&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
358
 
359
  // countries list
360
  $geoip = new GeoIPCpd();
361
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
362
+
363
+ $vo = array();
364
+ foreach ( $oc as $ip=>$x )
365
  {
366
+ $country = strtolower(cpd_geoip_country_code_by_addr($gi, $ip));
367
+ $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($country)];
368
+ if ( empty($id) )
369
  {
370
+ $name = '???';
371
+ $country = 'unknown';
 
 
 
 
 
 
 
 
 
372
  }
373
+ else
374
+ $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
375
+ $count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
376
+ $vo[$country] = array($name, $count);
 
377
  }
378
+
379
+ $c .= '<ul class="cpd_front_list">';
380
+ foreach ( $vo as $k => $v )
381
+ $c .= '<li><div class="cpd-flag cpd-flag-'.$k.'"></div> '.$v[0].'&nbsp;<b>'.$v[1].'</b></li>'."\n";
382
+ $c .= "</ul>\n";
383
  }
384
+ else if ( $oc )
385
+ $c = count($oc); // number only
386
  else
387
+ $c = 0;
388
+ if ($return) return $c; else echo $c;
 
 
 
 
 
 
 
 
 
389
  }
390
 
391
  /**
392
  * shows all visitors
393
  */
394
+ function getUserAll( $return = false )
395
  {
396
+ global $wpdb;
397
+ $res = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter GROUP BY date, ip", 'getUserAll '.__LINE__);
398
+ $c = $res + (int) $this->options['startcount'] + $this->getCollectedUsers();
399
+ if ($return) return $c; else echo $c;
 
 
400
  }
401
 
402
  /**
403
  * shows all reads
404
  */
405
+ function getReadsAll( $return = false )
406
  {
407
+ global $wpdb;
408
+ $res = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter", 'getReadsAll '.__LINE__);
409
+ $c = (int) $res + (int) $this->options['startreads'] + $this->getCollectedReads();
410
+ if ($return) return $c; else echo $c;
 
 
 
411
  }
412
 
413
  /**
414
  * shows today visitors
415
  */
416
+ function getUserToday( $return = false )
417
  {
418
+ global $wpdb;
419
  $date = date_i18n('Y-m-d');
420
+ $c = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter WHERE date = '$date' GROUP BY ip", 'getUserToday '.__LINE__);
421
+ if ($return) return $c; else echo $c;
 
 
 
 
422
  }
423
 
424
  /**
425
  * shows today reads
426
  */
427
+ function getReadsToday( $return = false )
428
  {
429
+ global $wpdb;
430
  $date = date_i18n('Y-m-d');
431
+ $c = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE date = '$date'", 'getReadsToday '.__LINE__);
432
+ if ($return) return $c; else echo $c;
 
 
 
 
433
  }
434
 
435
  /**
436
  * shows yesterday visitors
437
  */
438
+ function getUserYesterday( $return = false )
439
  {
440
+ global $wpdb;
441
+ $c = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter WHERE date = DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL 1 DAY) GROUP BY ip", 'getUserYesterday '.__LINE__);
442
+ if ($return) return $c; else echo $c;
 
 
 
 
443
  }
444
 
445
  /**
446
  * shows yesterday reads
447
  */
448
+ function getReadsYesterday( $return = false )
449
  {
450
+ global $wpdb;
451
+ $c = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE date = DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL 1 DAY)", 'getReadsYesterday '.__LINE__);
452
+ if ($return) return $c; else echo $c;
 
 
 
 
453
  }
454
 
455
  /**
456
  * shows last week visitors (last 7 days)
457
  */
458
+ function getUserLastWeek( $return = false )
459
  {
460
+ global $wpdb;
461
+ $c = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter WHERE date >= DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL 7 DAY) GROUP BY date, ip;", 'getUserLastWeek '.__LINE__);
462
+ if ($return) return $c; else echo $c;
 
 
 
 
463
  }
464
 
465
  /**
466
  * shows last week reads (last 7 days)
467
  */
468
+ function getReadsLastWeek( $return = false )
469
  {
470
+ global $wpdb;
471
+ $c = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE date >= DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL 7 DAY)", 'getReadsLastWeek '.__LINE__);
472
+ if ($return) return $c; else echo $c;
 
 
 
 
473
  }
474
 
475
  /**
476
  * shows this month visitors
477
  */
478
+ function getUserThisMonth( $return = false )
479
  {
480
+ global $wpdb;
481
  $first = date_i18n('Y-m-', current_time('timestamp')).'01';
482
+ $c = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter WHERE date >= '$first' GROUP BY date, ip;", 'getUserThisMonth '.__LINE__);
483
+ if ($return) return $c; else echo $c;
 
 
 
 
484
  }
485
 
486
  /**
487
  * shows this month reads
488
  */
489
+ function getReadsThisMonth( $return = false )
490
  {
491
+ global $wpdb;
492
  $first = date_i18n('Y-m-', current_time('timestamp')).'01';
493
+ $c = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE date >= '$first';", 'getReadsThisMonth '.__LINE__);
494
+ if ($return) return $c; else echo $c;
 
 
 
 
495
  }
496
 
497
  /**
498
  * shows visitors per month
499
  */
500
+ function getUserPerMonth( $frontend = false, $return = false )
501
  {
502
+ global $wpdb;
503
+ $m = $this->mysqlQuery('rows', "SELECT LEFT(date,7) month FROM $wpdb->cpd_counter GROUP BY year(date), month(date) ORDER BY date DESC", 'getUserPerMonths '.__LINE__);
504
+ if (!$m)
505
+ return;
506
  $r = '<ul class="cpd_front_list">';
507
  $d = array();
508
  $i = 1;
509
+ foreach ( $m as $row )
510
  {
511
+ $c = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter WHERE LEFT(date,7) = '$row->month' GROUP BY date, ip", 'getUserPerMonth '.__LINE__);
512
+ $r .= '<li>'.$row->month.' <b>'.$c.'</b></li>'."\n";
513
+ $d[] = '[-'.$i++.','.$c.']';
514
  }
515
+ // add collection
516
+ $coll = get_option('count_per_day_collected');
517
+ if ($coll)
 
518
  {
519
+ $coll = array_reverse($coll, true);
520
+ foreach ($coll as $m => $c)
521
+ {
522
+ $m2 = str_split($m, 4);
523
+ $r .= '<li>'.$m2[0].'-'.$m2[1].' <b>'.$c['users'].'</b></li>'."\n";
524
+ $d[] = '[-'.$i++.','.$c['users'].']';
525
+ }
526
  }
527
+ $r .= '</ul>';
528
+ if (!$frontend)
529
+ $r = $this->includeChartJS( 'cpd-flot-userpermonth', $d, $r );
530
+ if ($return) return $r; else echo $r;
531
  }
532
 
533
  /**
534
  * shows reads per month
535
  */
536
+ function getReadsPerMonth( $frontend = false, $return = false )
537
  {
538
+ global $wpdb;
539
+ $res = $this->mysqlQuery('rows', "SELECT COUNT(*) count, LEFT(date,7) month FROM $wpdb->cpd_counter GROUP BY year(date), month(date) ORDER BY date DESC", 'getReadsPerMonths '.__LINE__);
540
+ if (!$res)
541
+ return;
542
  $r = '<ul class="cpd_front_list">';
543
  $d = array();
544
  $i = 1;
545
+ foreach ( $res as $row )
546
  {
547
+ $r .= '<li>'.$row->month.' <b>'.$row->count.'</b></li>'."\n";
548
+ $d[] = '[-'.$i++.','.$row->count.']';
549
  }
550
+ // add collection
551
+ $coll = get_option('count_per_day_collected');
552
+ if ($coll)
 
553
  {
554
+ $coll = array_reverse($coll, true);
555
+ foreach ($coll as $m => $c)
556
+ {
557
+ $m2 = str_split($m, 4);
558
+ $r .= '<li>'.$m2[0].'-'.$m2[1].' <b>'.$c['reads'].'</b></li>'."\n";
559
+ $d[] = '[-'.$i++.','.$c['reads'].']';
560
+ }
561
  }
562
+ $r .= '</ul>';
563
+ if (!$frontend)
564
+ $r = $this->includeChartJS( 'cpd-flot-readspermonth', $d, $r );
565
+ if ($return) return $r; else echo $r;
566
  }
567
 
568
  /**
570
  * @param integer $limit number of posts, -1 = all, 0 = get option from db, x = number
571
  * @param boolean $frontend limit function on frontend
572
  */
573
+ function getUserPerPost( $limit = 0, $frontend = false, $return = false )
574
  {
575
  global $wpdb;
576
  if ( $limit == 0 )
577
  $limit = $this->options['dashboard_posts'];
 
578
  $sql = "
579
+ SELECT COUNT(*) count, page
580
+ FROM $wpdb->cpd_counter
581
+ WHERE page
582
+ GROUP BY page";
583
+ $r = $this->getUserPer_SQL( $sql, 'getUserPerPost '.__LINE__, $frontend, $limit );
584
+ if ($return) return $r; else echo $r;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  }
586
 
587
  /**
588
  * shows counter start, first day or given value
589
  */
590
+ function getFirstCount( $return = false )
591
  {
592
  global $wp_locale;
593
  if (!empty($this->options['startdate']))
594
+ $c = $this->options['startdate'];
 
 
 
 
 
 
 
 
595
  else
596
+ $c = $this->updateFirstCount();
597
+ $c = mysql2date(get_option('date_format'), $c );
598
+ if ($return) return $c; else echo $c;
599
  }
600
 
601
  /**
602
  * shows averaged visitors per day
603
  * @param integer $days days to calc
604
  */
605
+ function getUserPerDay( $days = 0, $return = false )
606
  {
607
  global $wpdb;
608
  $datemax = date_i18n('Y-m-d');
611
  $datemin = date_i18n('Y-m-d', current_time('timestamp') - ($days + 1) * 86400);
612
  else
613
  {
614
+ $res = $this->mysqlQuery('rows', 'SELECT MIN(date) min, MAX(date) max FROM '.$wpdb->cpd_counter, 'getUserPerDay '.__LINE__);
615
+ foreach ($res as $row)
616
+ $days = ((strtotime($row->max) - strtotime($row->min)) / 86400 + 1);
617
+ $datemin = 0;
 
 
 
 
618
  }
619
+ $c = $this->mysqlQuery('count', "SELECT 1 FROM $wpdb->cpd_counter WHERE date > '$datemin' AND date < '$datemax' GROUP BY ip, date", 'getUserPerDay '.__LINE__);
620
+ $count = $c / $days;
 
621
 
622
+ $s = '<abbr title="last '.$days.' days without today">';
623
  if ( $count < 5 )
624
+ $s .= number_format($count, 2);
625
  else
626
+ $s .= number_format($count, 0);
627
+ $s .= '</abbr>';
628
+ if ($return) return $s; else echo $s;
 
 
 
 
629
  }
630
 
631
  /**
632
  * shows most visited pages in last days
633
  * @param integer $days days to calc (last days)
634
  * @param integer $limit count of posts (last posts)
635
+ * @param boolean $postsonly don't show categories and taxonomies
636
  */
637
+ function getMostVisitedPosts( $days = 0, $limit = 0, $frontend = false, $postsonly = false, $return = false )
638
  {
639
  global $wpdb;
640
  if ( $days == 0 )
642
  if ( $limit == 0 )
643
  $limit = $this->options['dashboard_last_posts'];
644
  $date = date_i18n('Y-m-d', current_time('timestamp') - 86400 * $days);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645
 
646
+ if ($postsonly)
647
+ $sql = $wpdb->prepare("
648
+ SELECT COUNT(c.id) count,
649
+ c.page post_id,
650
+ p.post_title post
651
+ FROM $wpdb->cpd_counter c
652
+ LEFT JOIN $wpdb->posts p
653
+ ON p.id = c.page
654
+ WHERE c.date >= %s
655
+ AND c.page > 0
656
+ GROUP BY c.page
657
+ ORDER BY count DESC
658
+ LIMIT %d",
659
+ $date, $limit);
660
+ else
661
+ $sql = $wpdb->prepare("
662
+ SELECT COUNT(c.id) count,
663
+ c.page post_id,
664
+ p.post_title post,
665
+ t.name tag_cat_name,
666
+ t.slug tag_cat_slug,
667
+ x.taxonomy tax
668
+ FROM $wpdb->cpd_counter c
669
+ LEFT JOIN $wpdb->posts p
670
+ ON p.id = c.page
671
+ LEFT JOIN $wpdb->terms t
672
+ ON t.term_id = 0 - c.page
673
+ LEFT JOIN $wpdb->term_taxonomy x
674
+ ON x.term_id = t.term_id
675
+ WHERE c.date >= %s
676
+ GROUP BY c.page
677
+ ORDER BY count DESC
678
+ LIMIT %d",
679
+ $date, $limit);
680
  $r = '<small>'.sprintf(__('The %s most visited posts in last %s days:', 'cpd'), $limit, $days).'<br/>&nbsp;</small>';
681
  $r .= $this->getUserPer_SQL( $sql, 'getMostVisitedPosts', $frontend );
682
+ if ($return) return $r; else echo $r;
 
 
 
683
  }
684
 
685
  /**
715
  SELECT COUNT(c.id) count,
716
  c.page post_id
717
  $q1
718
+ FROM $wpdb->cpd_counter c
719
  $q2
720
+ LEFT JOIN $wpdb->term_relationships r
721
  ON r.object_id = c.page
722
+ LEFT JOIN $wpdb->term_taxonomy x
723
  ON x.term_taxonomy_id = r.term_taxonomy_id
724
  WHERE c.date >= '$date'
725
  $cat_filter
726
  GROUP BY c.page
727
  ORDER BY count DESC
728
  LIMIT $limit";
729
+ $res = $this->mysqlQuery('rows', $sql, 'getMostVisitedPostIDs '.__LINE__);
730
 
731
  $ids = array();
732
+ if ($res)
733
+ foreach ( $res as $row )
734
  {
735
+ if ($return_array)
736
+ $ids[] = array('id' => $row->post_id, 'title' => $row->post_title, 'count' => $row->count);
737
  else
738
+ $ids[] = $row->post_id;
739
  }
740
+ if ($return_array)
 
741
  return $ids;
742
  else
743
  return implode(',', $ids);
750
  * @param boolean $show_form show form for date selection
751
  * @param boolean $show_notes show button to add notes in form
752
  */
753
+ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_notes = true, $frontend = false, $return = false )
754
  {
755
+ global $wpdb, $cpd_path, $userdata;
756
  if (!empty($_POST['daytoshow']))
757
  $date = $_POST['daytoshow'];
758
  else if (!empty($_GET['daytoshow']))
763
  $limit = $this->options['dashboard_last_posts'];
764
 
765
  // get note
766
+ $notes = get_option('count_per_day_notes');
767
+ if ( isset($notes) && is_array($notes) )
768
+ foreach ( $notes as $n )
769
+ if ( $n[0] == $date )
770
+ $note[] = $n[1];
771
+
772
+ $sql = $wpdb->prepare("
773
+ SELECT COUNT(c.id) count,
774
+ c.page post_id,
775
+ p.post_title post,
776
+ t.name tag_cat_name,
777
+ t.slug tag_cat_slug,
778
+ x.taxonomy tax
779
+ FROM $wpdb->cpd_counter c
780
+ LEFT JOIN $wpdb->posts p
781
+ ON p.id = c.page
782
+ LEFT JOIN $wpdb->terms t
783
+ ON t.term_id = 0 - c.page
784
+ LEFT JOIN $wpdb->term_taxonomy x
785
+ ON x.term_id = t.term_id
786
+ WHERE c.date = %s
787
+ GROUP BY c.page
788
+ ORDER BY count DESC
789
+ LIMIT %d",
790
+ $date, $limit );
791
+
792
+ if ($show_form)
793
  {
794
  echo '<form action="" method="post">
795
+ <input name="daytoshow" value="'.$date.'" size="11" />
796
  <input type="submit" name="showday" value="'.__('Show').'" class="button" />';
797
  if ( $show_notes )
798
  echo ' <a href="'.$this->dir.'/notes.php?KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Notes', 'cpd').'" class="button thickbox">'.__('Notes', 'cpd').'</a> ';
799
  echo '</form>';
800
  }
801
+ if (isset($note))
802
+ echo '<p style="background:#eee; padding:2px;">'.implode(', ', $note).'</p>';
 
 
803
  $r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend );
804
+ if ($return) return $r; else echo $r;
 
 
 
 
805
  }
806
 
807
  /**
808
  * shows little browser statistics
809
  */
810
+ function getClients( $return = false )
811
  {
812
  global $wpdb;
813
  $c_string = $this->options['clients'];
814
  $clients = explode(',', $c_string);
815
 
816
+ $res = $this->mysqlQuery('var', "SELECT COUNT(*) FROM ".$wpdb->cpd_counter, 'getClients_all '.__LINE__);
817
+ if (!$res)
818
+ return;
819
+ $all = max(1, (int) $res);
820
  $rest = 100;
821
  $r = '<ul id="cpd_clients" class="cpd_front_list">';
822
  foreach ($clients as $c)
823
  {
824
  $c = trim($c);
825
+ $count = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE client like '%%".$c."%%'", 'getClients_'.$c.'_ '.__LINE__);
826
+ $percent = number_format(100 * $count / $all, 0);
 
827
  $rest -= $percent;
828
+ $r .= '<li class="cpd-client-logo cpd-client-'.strtolower($c).'">'.$c.' <b>'.$percent.' %</b></li>';
829
  }
830
  if ( $rest > 0 )
831
+ $r .= '<li>'.__('Other', 'cpd').' <b>'.$rest.' %</b></li>';
832
  $r .= '</ul>';
833
 
834
+ $res = $this->mysqlQuery('var', "SELECT MIN(date) FROM ".$wpdb->cpd_counter, 'getClients_date '.__LINE__);
835
+ $r .= '<small>'.__('Counter starts on', 'cpd').': '.mysql2date(get_option('date_format'), $res ).'</small>';
836
+ if ($return) return $r; else echo $r;
 
837
  }
838
 
839
  /**
840
  * shows top referrers
841
  */
842
+ function getReferers( $limit = 0, $return = false, $days = 0 )
843
  {
844
  global $wpdb;
845
  if ( $limit == 0 )
850
  // local url filter
851
  $dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
852
 
853
+ $localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%%' ";
854
+ $res = $this->mysqlQuery('rows', "SELECT COUNT(*) count, referer FROM $wpdb->cpd_counter WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers '.__LINE__);
855
+ $r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'<br/>&nbsp;</small>';
856
  $r .= '<ul id="cpd_referrers" class="cpd_front_list">';
857
+ if ($res)
858
+ foreach ( $res as $row )
859
  {
860
+ $ref = str_replace('&', '&amp;', $row->referer);
861
  $ref2 = str_replace('http://', '', $ref);
862
+ $r .= '<li><a href="'.$ref.'">'.$ref2.'</a> <b>'.$row->count.'</b></li>';
863
  }
864
  $r .= '</ul>';
865
+ if ($return) return $r; else echo $r;
 
 
 
 
866
  }
867
 
868
  /**
869
+ * shows day with most reads
 
870
  */
871
+ function getDayWithMostReads( $formated = false, $return = false )
872
  {
873
+ global $wpdb;
874
+ $sql = "
875
+ SELECT date, COUNT(id) count
876
+ FROM $wpdb->cpd_counter
877
+ GROUP BY date
878
+ ORDER BY count DESC
879
+ LIMIT 1";
880
+ $res = $this->mysqlQuery('rows', $sql, 'getDayWithMostReads '.__LINE__ );
881
+ if (!$res)
882
+ return;
883
+ $r = $this->updateCollectedDayMostReads( $res[0] );
884
+ if ($formated)
885
+ $r = mysql2date(get_option('date_format'), $r[0]).'<br/>'.$r[1].' '.__('Reads', 'cpd');
886
+ if ($return) return $r; else echo $r;
887
+ }
888
 
889
+ /**
890
+ * shows day with most visitors
891
+ */
892
+ function getDayWithMostUsers( $formated = false, $return = false )
893
+ {
894
+ global $wpdb;
895
  $sql = "
896
+ SELECT t.date, count(*) count
897
+ FROM ( SELECT count(*) count, date, page
898
+ FROM $wpdb->cpd_counter
899
+ GROUP BY date, ip
900
+ ) AS t
901
+ GROUP BY t.date
902
+ ORDER BY count DESC
903
+ LIMIT 1";
904
+ $res = $this->mysqlQuery('rows', $sql, 'getDayWithMostVisitors '.__LINE__ );
905
+ if (!$res)
906
+ return;
907
+ $r = $this->updateCollectedDayMostUsers( $res[0] );
908
+ if ($formated)
909
+ $r = mysql2date(get_option('date_format'), $r[0]).'<br/>'.$r[1].' '.__('Visitors', 'cpd');
910
+ if ($return) return $r; else echo $r;
911
  }
912
 
913
  /**
916
  * @param string $name function name for debug
917
  * @param boolean $frontend limit function on frontend
918
  */
919
+ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
920
  {
921
+ global $wpdb, $userdata;
922
+ $m = $this->mysqlQuery('rows', $sql, $name.__LINE__);
923
+ if (!$m)
924
+ return;
925
+
926
+
927
+ if ( strpos($name, 'getUserPerPost') !== false )
928
+ {
929
+ // get collection
930
+ $p = get_option('count_per_day_posts');
931
+ if (empty($p))
932
+ $p = array();
933
+ // add normal data
934
+ foreach ( $m as $r )
935
+ {
936
+ $pid = 'p'.$r->page;
937
+ if ( isset($p[$pid]) )
938
+ $p[$pid] += (int) $r->count;
939
+ else
940
+ $p[$pid] = (int) $r->count;
941
+ }
942
+ // max $limit
943
+ $keys = array_keys($p);
944
+ array_multisort($p, SORT_NUMERIC, SORT_DESC, $keys);
945
+ $p = array_slice($p, 0, $limit);
946
+
947
+ // new sql query
948
+ $keys = array_keys($p);
949
+ $list = '';
950
+ foreach ($keys as $k)
951
+ $list .= str_replace('p', '', $k).',';
952
+ $list = substr($list, 0, -1);
953
+
954
+ $if = '';
955
+ foreach ($p as $id=>$count)
956
+ $if .= " WHEN ".str_replace('p', '', $id)." THEN $count";
957
+
958
+ $sql = "
959
+ SELECT CASE p.id $if ELSE 0 END as count,
960
+ p.id post_id,
961
+ p.post_title post,
962
+ t.name tag_cat_name,
963
+ t.slug tag_cat_slug,
964
+ x.taxonomy tax
965
+ FROM $wpdb->posts p,
966
+ $wpdb->terms t
967
+ LEFT JOIN $wpdb->term_taxonomy x
968
+ ON x.term_id = t.term_id
969
+ WHERE p.id IN ($list)
970
+ OR -t.term_id IN ($list)
971
+ GROUP BY p.id
972
+ ORDER BY count DESC";
973
+
974
+ $m = $this->mysqlQuery('rows', $sql, $name.' '.__LINE__);
975
+ if (!$m)
976
+ return;
977
+ }
978
+
979
+
980
  $r = '<ul class="cpd_front_list">';
981
+ foreach ( $m as $row )
982
  {
983
+ $r .= '<li>';
984
  // link only for editors in backend
985
+ if ( current_user_can('editor') && !$frontend )
986
+ // if ( isset($userdata->user_level) && (int) $userdata->user_level >= 7 && !$frontend)
987
  {
988
+ if ( $row->post_id > 0 )
989
+ $r .= '<a href="post.php?action=edit&amp;post='.$row->post_id.'"><img src="'.$this->img('cpd_pen.png').'" alt="[e]" title="'.__('Edit Post').'" style="width:9px;height:12px;" /></a> '
990
+ .'<a href="'.$this->dir.'/userperspan.php?page='.$row->post_id.'&amp;KeepThis=true&amp;TB_iframe=true" class="thickbox" title="Count per Day"><img src="'.$this->img('cpd_calendar.png').'" alt="[v]" style="width:12px;height:12px;" /></a> ';
991
  else
992
+ $r .= '<img src="'.$this->img('cpd_trans.png').'" alt="" style="width:25px;height:12px;" /> ';
993
  }
994
 
995
  $r .= '<a href="'.get_bloginfo('url');
996
+ if ( $row->post_id < 0 && $row->tax == 'category' )
997
  //category
998
+ $r .= '?cat='.abs($row->post_id).'">- '.$row->tag_cat_name.' ('.__('Category').') -';
999
+ else if ( $row->post_id < 0 )
1000
  // tag
1001
+ $r .= '?tag='.$row->tag_cat_slug.'">- '.$row->tag_cat_name.' ('.__('Tag').') -';
1002
+ else if ( $row->post_id == 0 )
1003
  // homepage
1004
  $r .= '">- '.__('Front page displays').' -';
1005
  else
 
1006
  // post/page
1007
+ $r .= '?p='.$row->post_id.'">'.($row->post ? $row->post : '---');
 
 
 
 
1008
  $r .= '</a>';
1009
 
1010
+ $r .= ' <b>'.$row->count.'</b></li>'."\n";
1011
  }
1012
  $r .= '</ul>';
 
1013
  return $r;
1014
  }
1015
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1016
  /**
1017
  * creates the little widget on dashboard
1018
  */
1025
  echo '</b> '.__('Visitors per day', 'cpd');
1026
  }
1027
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1028
  /**
1029
  * gets country flags and page views
1030
  * @param integer $limit count of countries
1031
  * @param boolean $frontend limit function on frontend
1032
  * @param boolean $visitors show visitors insteed of reads
1033
  */
1034
+ function getCountries( $limit = 0, $frontend = false, $visitors = false, $return = false )
1035
  {
1036
+ global $wpdb, $cpd_path, $cpd_geoip;
1037
  $c = '';
1038
 
1039
  // with GeoIP addon only
1043
  if ( $limit == 0 )
1044
  $limit = max( 0, $this->options['countries'] );
1045
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1046
  // map link
1047
  if (!$frontend && file_exists($cpd_path.'map/map.php') )
1048
  {
1053
  $c .= 'reads';
1054
  $c .= '&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
1055
  }
1056
+
1057
+ $temp = $this->addCollectionToCountries( $visitors );
1058
 
1059
+ // make list
1060
+ $c .= '<ul class="cpd_front_list">';
1061
+ foreach ($temp as $country => $value)
1062
  {
1063
+ // get country names
1064
+ if ($country != '-')
1065
+ $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($country)];
1066
+ if ( empty($id) )
1067
  {
1068
+ $name = '???';
1069
+ $country = 'unknown';
 
 
 
 
 
 
 
 
 
1070
  }
1071
+ else
1072
+ $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
1073
+ $c .= '<li><div class="cpd-flag cpd-flag-'.$country.'"></div> '.$name.' <b>'.$value.'</b></li>'."\n";
1074
  }
1075
+ $c .= '</ul>';
1076
  }
1077
+ if ($return) return $c; else echo $c;
 
 
 
1078
  }
1079
 
1080
  /**
1091
  ?>
1092
  <script type="text/javascript" src="<?php echo $dir ?>swfobject.js"></script>
1093
  <div id="<?php echo $divid ?>" class="cpd_worldmap" style="width:<?php echo $width ?>px; height:<?php echo $height ?>px; background:#4499FF;">
1094
+ <strong>Flash World Map</strong>
1095
  </div>
1096
  <script type="text/javascript">
1097
+ //<![CDATA[
1098
  var so = new SWFObject("<?php echo $dir ?>ammap.swf", "ammap", "100%", "100%", "8", "#4499FF");
1099
  so.addVariable("path", "<?php echo $dir ?>");
1100
  so.addVariable("settings_file", escape("<?php echo $dir ?>settings.xml.php?map=<?php echo $what ?>&min=<?php echo $min ?>"));
1101
  so.addVariable("data_file", escape("<?php echo $dir ?>data.xml.php?map=<?php echo $what ?>&min=<?php echo $min ?>"));
1102
  so.write("<?php echo $divid ?>");
1103
+ //]]>
1104
  </script>
1105
  <?php
1106
  }
1107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1108
  } // class end
1109
 
1110
 
1122
  'getreadsall_name', 'getreadstoday_name', 'getreadsyesterday_name', 'getreadslastweek_name', 'getreadsthismonth_name',
1123
  'getuserall_name', 'getusertoday_name', 'getuseryesterday_name', 'getuserlastweek_name', 'getuserthismonth_name',
1124
  'getuserperday_name', 'getuseronline_name', 'getfirstcount_name' );
 
 
1125
  var $cpd_funcs = array ( 'show',
1126
  'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
1127
  'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
1129
  var $funcs;
1130
  var $names;
1131
 
 
 
 
 
 
 
1132
  // constructor
1133
  function CountPerDay_Widget() {
 
1134
  $this->funcs = array_slice( $this->fields, 2, 14);
1135
  $this->names = array_slice( $this->fields, 16, 14);
1136
  parent::WP_Widget('countperday_widget', 'Count per Day',
1157
  if ( ($k == 'show' && is_singular()) || $k != 'show' )
1158
  {
1159
  $f = str_replace( $this->funcs, $this->cpd_funcs, $k );
1160
+ echo '<li class="cpd-l">'.$instance[$k.'_name'].':';
1161
+ echo '<span id="cpd_number_'.$k.'" class="cpd-r">';
1162
  // parameters only for special functions
1163
  if ( $f == 'getUserPerDay' )
1164
  eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
1166
  eval('echo $count_per_day->show("","",false,false);');
1167
  else
1168
  eval('echo $count_per_day->'.$f.'();');
1169
+ echo '</span></li>';
1170
  }
1171
  }
1172
  }
1249
  $label_value = esc_attr( $instance[$fl] );
1250
 
1251
  echo '
1252
+ <li itemid="'.$f.'" class="cpd_widget_item" title="'.__('drag and drop to sort', 'cpd').'">
1253
  <input type="checkbox" class="checkbox" id="'.$check_id.'" name="'.$check_name.'" value="1" '.$check_status.' />
1254
  <label for="'.$check_id.'"> '.$default[$fl].'</label>
1255
  <input type="text" class="widefat" id="'.$label_id.'" name="'.$label_name.'" value="'.$label_value.'" />
1285
  </script>
1286
  <?php
1287
  }
 
1288
  } // widget class
1289
 
 
 
1290
  /**
1291
  * uninstall function, deletes tables and options
1292
  */
1293
  function count_per_day_uninstall()
1294
  {
1295
  global $wpdb;
1296
+ $wpdb->query('DROP TABLE IF EXISTS '.$wpdb->cpd_counter);
1297
+ $wpdb->query('DROP TABLE IF EXISTS '.$wpdb->cpd_counter_useronline);
1298
+ $wpdb->query('DROP TABLE IF EXISTS '.$wpdb->cpd_notes);
1299
+ delete_option('count_per_day');
1300
+ delete_option('count_per_day_summary');
1301
+ delete_option('count_per_day_collected');
1302
+ delete_option('count_per_day_online');
1303
+ delete_option('count_per_day_notes');
1304
+ $wpdb->query("DELETE FROM $wpdb->usermeta WHERE meta_key LIKE '%_cpd_metaboxes%';");
1305
  }
1306
 
 
1307
  $count_per_day = new CountPerDay();
geoip/GeoIP.dat CHANGED
Binary file
geoip/geoip.php CHANGED
@@ -15,7 +15,7 @@ class CpdGeoIp
15
  /**
16
  * gets country of ip adress
17
  * @param $ip IP
18
- * @return array e.g. ( 'de', image link to easywhois.com , 'Germany' )
19
  */
20
  function getCountry( $ip )
21
  {
@@ -33,62 +33,47 @@ function getCountry( $ip )
33
  return $country;
34
  }
35
 
36
-
37
-
38
  /**
39
  * updates CountPerDay table
40
  */
41
  function updateDB()
42
  {
43
- global $count_per_day;
44
- global $cpd_path;
45
- global $wpdb;
46
 
47
- $count_per_day->getQuery("SELECT country FROM `".CPD_C_TABLE."`", 'GeoIP updateDB Table');
48
  if ((int) mysql_errno() == 1054)
49
  // add row "country" to table
50
- $count_per_day->getQuery("ALTER TABLE `".CPD_C_TABLE."` ADD `country` CHAR( 2 ) NOT NULL", 'GeoIP updateDB create column');
51
 
52
- $limit = 10;
53
- $res = $count_per_day->getQuery("SELECT ip, INET_NTOA(ip) AS realip FROM ".CPD_C_TABLE." WHERE country LIKE '' GROUP BY ip LIMIT $limit;", 'GeoIP updateDB');
54
  $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
55
 
56
- if ( @mysql_num_rows($res) )
57
- while ( $r = mysql_fetch_array($res) )
58
- {
59
- $c = '';
60
- $ip = explode('.', $r['realip']);
61
- if ( $ip[0] == 10
62
- || $ip[0] == 127
63
- || ($ip[0] == 169 && $ip[1] == 254)
64
- || ($ip[0] == 172 && $ip[1] >= 16 && $ip[1] <= 31)
65
- || ($ip[0] == 192 && $ip[1] == 168) )
66
- // set local IPs to '-'
67
- $c = '-';
68
- else
69
- // get country
70
- $c = strtolower(cpd_geoip_country_code_by_addr($gi, $r['realip']));
71
-
72
- if ( !empty($c) )
73
- $count_per_day->getQuery("UPDATE ".CPD_C_TABLE." SET country = '".$c."' WHERE ip = '".$r['ip']."'", 'GeoIP updateDB');
74
- }
75
-
76
- cpd_geoip_close($gi);
77
-
78
- $res = $count_per_day->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE country like ''", 'GeoIP updateDB');
79
- if ( @mysql_num_rows($res) )
80
  {
81
- $row = mysql_fetch_array($res);
82
- $rest = (!empty($row[0])) ? $row[0] : 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  }
84
- else
85
- $rest = 0;
86
 
87
- return $rest;
 
 
 
88
  }
89
 
90
-
91
-
92
  /**
93
  * updates the GeoIP database file
94
  * works only if directory geoip has rights 777, set it in ftp client
15
  /**
16
  * gets country of ip adress
17
  * @param $ip IP
18
+ * @return array e.g. ( 'de', image div , 'Germany' )
19
  */
20
  function getCountry( $ip )
21
  {
33
  return $country;
34
  }
35
 
 
 
36
  /**
37
  * updates CountPerDay table
38
  */
39
  function updateDB()
40
  {
41
+ global $count_per_day, $cpd_path, $wpdb;
 
 
42
 
43
+ $count_per_day->mysqlQuery('rows', "SELECT country FROM $wpdb->cpd_counter LIMIT 1", 'GeoIP updateDB Table '.__LINE__);
44
  if ((int) mysql_errno() == 1054)
45
  // add row "country" to table
46
+ $count_per_day->mysqlQuery('', "ALTER TABLE $wpdb->cpd_counter ADD `country` CHAR( 2 ) NOT NULL", 'GeoIP updateDB create column '.__LINE__);
47
 
48
+ $limit = 20;
49
+ $res = $count_per_day->mysqlQuery('rows', "SELECT ip, INET_NTOA(ip) realip FROM $wpdb->cpd_counter WHERE country LIKE '' GROUP BY ip LIMIT $limit", 'GeoIP updateDB '.__LINE__);
50
  $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
51
 
52
+ foreach ($res as $r)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  {
54
+ $c = '';
55
+ $ip = explode('.', $r->realip);
56
+ if ( $ip[0] == 10
57
+ || $ip[0] == 127
58
+ || ($ip[0] == 169 && $ip[1] == 254)
59
+ || ($ip[0] == 172 && $ip[1] >= 16 && $ip[1] <= 31)
60
+ || ($ip[0] == 192 && $ip[1] == 168) )
61
+ // set local IPs to '-'
62
+ $c = '-';
63
+ else
64
+ // get country
65
+ $c = strtolower(cpd_geoip_country_code_by_addr($gi, $r->realip));
66
+
67
+ if ( !empty($c) )
68
+ $count_per_day->mysqlQuery('', "UPDATE $wpdb->cpd_counter SET country = '$c' WHERE ip = '$r->ip'", 'GeoIP updateDB '.__LINE__);
69
  }
 
 
70
 
71
+ cpd_geoip_close($gi);
72
+
73
+ $rest = $count_per_day->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE country like ''", 'GeoIP updateDB '.__LINE__);
74
+ return (int) $rest;
75
  }
76
 
 
 
77
  /**
78
  * updates the GeoIP database file
79
  * works only if directory geoip has rights 777, set it in ftp client
img/cpd_calendar.png CHANGED
Binary file
img/cpd_flags.png CHANGED
Binary file
img/cpd_pen.png CHANGED
Binary file
img/cpd_sprites.png ADDED
Binary file
js/jquery.flot.min.js CHANGED
@@ -1 +1,6 @@
1
- (function(){jQuery.color={};jQuery.color.make=function(G,H,J,I){var A={};A.r=G||0;A.g=H||0;A.b=J||0;A.a=I!=null?I:1;A.add=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]+=D}return A.normalize()};A.scale=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]*=D}return A.normalize()};A.toString=function(){if(A.a>=1){return"rgb("+[A.r,A.g,A.b].join(",")+")"}else{return"rgba("+[A.r,A.g,A.b,A.a].join(",")+")"}};A.normalize=function(){function C(E,D,F){return D<E?E:(D>F?F:D)}A.r=C(0,parseInt(A.r),255);A.g=C(0,parseInt(A.g),255);A.b=C(0,parseInt(A.b),255);A.a=C(0,A.a,1);return A};A.clone=function(){return jQuery.color.make(A.r,A.b,A.g,A.a)};return A.normalize()};jQuery.color.extract=function(E,F){var A;do{A=E.css(F).toLowerCase();if(A!=""&&A!="transparent"){break}E=E.parent()}while(!jQuery.nodeName(E.get(0),"body"));if(A=="rgba(0, 0, 0, 0)"){A="transparent"}return jQuery.color.parse(A)};jQuery.color.parse=function(A){var F,H=jQuery.color.make;if(F=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10))}if(F=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10),parseFloat(F[4]))}if(F=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(A)){return H(parseFloat(F[1])*2.55,parseFloat(F[2])*2.55,parseFloat(F[3])*2.55)}if(F=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(A)){return H(parseFloat(F[1])*2.55,parseFloat(F[2])*2.55,parseFloat(F[3])*2.55,parseFloat(F[4]))}if(F=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(A)){return H(parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16))}if(F=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(A)){return H(parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16))}var G=jQuery.trim(A).toLowerCase();if(G=="transparent"){return H(255,255,255,0)}else{F=B[G];return H(F[0],F[1],F[2])}};var B={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})();(function(C){function B(l,W,X,E){var O=[],g={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:true,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:0.85},xaxis:{mode:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,tickDecimals:null,tickSize:null,minTickSize:null,monthNames:null,timeformat:null,twelveHourClock:false},yaxis:{autoscaleMargin:0.02},x2axis:{autoscaleMargin:null},y2axis:{autoscaleMargin:0.02},series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff"},lines:{lineWidth:2,fill:false,fillColor:null,steps:false},bars:{show:false,lineWidth:2,barWidth:1,fill:true,fillColor:null,align:"left",horizontal:false},shadowSize:3},grid:{show:true,aboveData:false,color:"#545454",backgroundColor:null,tickColor:"rgba(0,0,0,0.15)",labelMargin:5,borderWidth:2,borderColor:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},hooks:{}},P=null,AC=null,AD=null,Y=null,AJ=null,s={xaxis:{},yaxis:{},x2axis:{},y2axis:{}},e={left:0,right:0,top:0,bottom:0},y=0,Q=0,I=0,t=0,L={processOptions:[],processRawData:[],processDatapoints:[],draw:[],bindEvents:[],drawOverlay:[]},G=this;G.setData=f;G.setupGrid=k;G.draw=AH;G.getPlaceholder=function(){return l};G.getCanvas=function(){return P};G.getPlotOffset=function(){return e};G.width=function(){return I};G.height=function(){return t};G.offset=function(){var AK=AD.offset();AK.left+=e.left;AK.top+=e.top;return AK};G.getData=function(){return O};G.getAxes=function(){return s};G.getOptions=function(){return g};G.highlight=AE;G.unhighlight=x;G.triggerRedrawOverlay=q;G.pointOffset=function(AK){return{left:parseInt(T(AK,"xaxis").p2c(+AK.x)+e.left),top:parseInt(T(AK,"yaxis").p2c(+AK.y)+e.top)}};G.hooks=L;b(G);r(X);c();f(W);k();AH();AG();function Z(AM,AK){AK=[G].concat(AK);for(var AL=0;AL<AM.length;++AL){AM[AL].apply(this,AK)}}function b(){for(var AK=0;AK<E.length;++AK){var AL=E[AK];AL.init(G);if(AL.options){C.extend(true,g,AL.options)}}}function r(AK){C.extend(true,g,AK);if(g.grid.borderColor==null){g.grid.borderColor=g.grid.color}if(g.xaxis.noTicks&&g.xaxis.ticks==null){g.xaxis.ticks=g.xaxis.noTicks}if(g.yaxis.noTicks&&g.yaxis.ticks==null){g.yaxis.ticks=g.yaxis.noTicks}if(g.grid.coloredAreas){g.grid.markings=g.grid.coloredAreas}if(g.grid.coloredAreasColor){g.grid.markingsColor=g.grid.coloredAreasColor}if(g.lines){C.extend(true,g.series.lines,g.lines)}if(g.points){C.extend(true,g.series.points,g.points)}if(g.bars){C.extend(true,g.series.bars,g.bars)}if(g.shadowSize){g.series.shadowSize=g.shadowSize}for(var AL in L){if(g.hooks[AL]&&g.hooks[AL].length){L[AL]=L[AL].concat(g.hooks[AL])}}Z(L.processOptions,[g])}function f(AK){O=M(AK);U();m()}function M(AN){var AL=[];for(var AK=0;AK<AN.length;++AK){var AM=C.extend(true,{},g.series);if(AN[AK].data){AM.data=AN[AK].data;delete AN[AK].data;C.extend(true,AM,AN[AK]);AN[AK].data=AM.data}else{AM.data=AN[AK]}AL.push(AM)}return AL}function T(AM,AK){var AL=AM[AK];if(!AL||AL==1){return s[AK]}if(typeof AL=="number"){return s[AK.charAt(0)+AL+AK.slice(1)]}return AL}function U(){var AP;var AV=O.length,AK=[],AN=[];for(AP=0;AP<O.length;++AP){var AS=O[AP].color;if(AS!=null){--AV;if(typeof AS=="number"){AN.push(AS)}else{AK.push(C.color.parse(O[AP].color))}}}for(AP=0;AP<AN.length;++AP){AV=Math.max(AV,AN[AP]+1)}var AL=[],AO=0;AP=0;while(AL.length<AV){var AR;if(g.colors.length==AP){AR=C.color.make(100,100,100)}else{AR=C.color.parse(g.colors[AP])}var AM=AO%2==1?-1:1;AR.scale("rgb",1+AM*Math.ceil(AO/2)*0.2);AL.push(AR);++AP;if(AP>=g.colors.length){AP=0;++AO}}var AQ=0,AW;for(AP=0;AP<O.length;++AP){AW=O[AP];if(AW.color==null){AW.color=AL[AQ].toString();++AQ}else{if(typeof AW.color=="number"){AW.color=AL[AW.color].toString()}}if(AW.lines.show==null){var AU,AT=true;for(AU in AW){if(AW[AU].show){AT=false;break}}if(AT){AW.lines.show=true}}AW.xaxis=T(AW,"xaxis");AW.yaxis=T(AW,"yaxis")}}function m(){var AW=Number.POSITIVE_INFINITY,AQ=Number.NEGATIVE_INFINITY,Ac,Aa,AZ,AV,AL,AR,Ab,AX,AP,AO,AK,Ai,Af,AT;for(AK in s){s[AK].datamin=AW;s[AK].datamax=AQ;s[AK].used=false}function AN(Al,Ak,Aj){if(Ak<Al.datamin){Al.datamin=Ak}if(Aj>Al.datamax){Al.datamax=Aj}}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];AR.datapoints={points:[]};Z(L.processRawData,[AR,AR.data,AR.datapoints])}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];var Ah=AR.data,Ae=AR.datapoints.format;if(!Ae){Ae=[];Ae.push({x:true,number:true,required:true});Ae.push({y:true,number:true,required:true});if(AR.bars.show){Ae.push({y:true,number:true,required:false,defaultValue:0})}AR.datapoints.format=Ae}if(AR.datapoints.pointsize!=null){continue}if(AR.datapoints.pointsize==null){AR.datapoints.pointsize=Ae.length}AX=AR.datapoints.pointsize;Ab=AR.datapoints.points;insertSteps=AR.lines.show&&AR.lines.steps;AR.xaxis.used=AR.yaxis.used=true;for(Aa=AZ=0;Aa<Ah.length;++Aa,AZ+=AX){AT=Ah[Aa];var AM=AT==null;if(!AM){for(AV=0;AV<AX;++AV){Ai=AT[AV];Af=Ae[AV];if(Af){if(Af.number&&Ai!=null){Ai=+Ai;if(isNaN(Ai)){Ai=null}}if(Ai==null){if(Af.required){AM=true}if(Af.defaultValue!=null){Ai=Af.defaultValue}}}Ab[AZ+AV]=Ai}}if(AM){for(AV=0;AV<AX;++AV){Ai=Ab[AZ+AV];if(Ai!=null){Af=Ae[AV];if(Af.x){AN(AR.xaxis,Ai,Ai)}if(Af.y){AN(AR.yaxis,Ai,Ai)}}Ab[AZ+AV]=null}}else{if(insertSteps&&AZ>0&&Ab[AZ-AX]!=null&&Ab[AZ-AX]!=Ab[AZ]&&Ab[AZ-AX+1]!=Ab[AZ+1]){for(AV=0;AV<AX;++AV){Ab[AZ+AX+AV]=Ab[AZ+AV]}Ab[AZ+1]=Ab[AZ-AX+1];AZ+=AX}}}}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];Z(L.processDatapoints,[AR,AR.datapoints])}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];Ab=AR.datapoints.points,AX=AR.datapoints.pointsize;var AS=AW,AY=AW,AU=AQ,Ad=AQ;for(Aa=0;Aa<Ab.length;Aa+=AX){if(Ab[Aa]==null){continue}for(AV=0;AV<AX;++AV){Ai=Ab[Aa+AV];Af=Ae[AV];if(!Af){continue}if(Af.x){if(Ai<AS){AS=Ai}if(Ai>AU){AU=Ai}}if(Af.y){if(Ai<AY){AY=Ai}if(Ai>Ad){Ad=Ai}}}}if(AR.bars.show){var Ag=AR.bars.align=="left"?0:-AR.bars.barWidth/2;if(AR.bars.horizontal){AY+=Ag;Ad+=Ag+AR.bars.barWidth}else{AS+=Ag;AU+=Ag+AR.bars.barWidth}}AN(AR.xaxis,AS,AU);AN(AR.yaxis,AY,Ad)}for(AK in s){if(s[AK].datamin==AW){s[AK].datamin=null}if(s[AK].datamax==AQ){s[AK].datamax=null}}}function c(){function AK(AM,AL){var AN=document.createElement("canvas");AN.width=AM;AN.height=AL;if(C.browser.msie){AN=window.G_vmlCanvasManager.initElement(AN)}return AN}y=l.width();Q=l.height();l.html("");if(l.css("position")=="static"){l.css("position","relative")}if(y<=0||Q<=0){throw"Invalid dimensions for plot, width = "+y+", height = "+Q}if(C.browser.msie){window.G_vmlCanvasManager.init_(document)}P=C(AK(y,Q)).appendTo(l).get(0);Y=P.getContext("2d");AC=C(AK(y,Q)).css({position:"absolute",left:0,top:0}).appendTo(l).get(0);AJ=AC.getContext("2d");AJ.stroke()}function AG(){AD=C([AC,P]);if(g.grid.hoverable){AD.mousemove(D)}if(g.grid.clickable){AD.click(d)}Z(L.bindEvents,[AD])}function k(){function AL(AT,AU){function AP(AV){return AV}var AS,AO,AQ=AU.transform||AP,AR=AU.inverseTransform;if(AT==s.xaxis||AT==s.x2axis){AS=AT.scale=I/(AQ(AT.max)-AQ(AT.min));AO=AQ(AT.min);if(AQ==AP){AT.p2c=function(AV){return(AV-AO)*AS}}else{AT.p2c=function(AV){return(AQ(AV)-AO)*AS}}if(!AR){AT.c2p=function(AV){return AO+AV/AS}}else{AT.c2p=function(AV){return AR(AO+AV/AS)}}}else{AS=AT.scale=t/(AQ(AT.max)-AQ(AT.min));AO=AQ(AT.max);if(AQ==AP){AT.p2c=function(AV){return(AO-AV)*AS}}else{AT.p2c=function(AV){return(AO-AQ(AV))*AS}}if(!AR){AT.c2p=function(AV){return AO-AV/AS}}else{AT.c2p=function(AV){return AR(AO-AV/AS)}}}}function AN(AR,AT){var AQ,AS=[],AP;AR.labelWidth=AT.labelWidth;AR.labelHeight=AT.labelHeight;if(AR==s.xaxis||AR==s.x2axis){if(AR.labelWidth==null){AR.labelWidth=y/(AR.ticks.length>0?AR.ticks.length:1)}if(AR.labelHeight==null){AS=[];for(AQ=0;AQ<AR.ticks.length;++AQ){AP=AR.ticks[AQ].label;if(AP){AS.push('<div class="tickLabel" style="float:left;width:'+AR.labelWidth+'px">'+AP+"</div>")}}if(AS.length>0){var AO=C('<div style="position:absolute;top:-10000px;width:10000px;font-size:smaller">'+AS.join("")+'<div style="clear:left"></div></div>').appendTo(l);AR.labelHeight=AO.height();AO.remove()}}}else{if(AR.labelWidth==null||AR.labelHeight==null){for(AQ=0;AQ<AR.ticks.length;++AQ){AP=AR.ticks[AQ].label;if(AP){AS.push('<div class="tickLabel">'+AP+"</div>")}}if(AS.length>0){var AO=C('<div style="position:absolute;top:-10000px;font-size:smaller">'+AS.join("")+"</div>").appendTo(l);if(AR.labelWidth==null){AR.labelWidth=AO.width()}if(AR.labelHeight==null){AR.labelHeight=AO.find("div").height()}AO.remove()}}}if(AR.labelWidth==null){AR.labelWidth=0}if(AR.labelHeight==null){AR.labelHeight=0}}function AM(){var AP=g.grid.borderWidth;for(i=0;i<O.length;++i){AP=Math.max(AP,2*(O[i].points.radius+O[i].points.lineWidth/2))}e.left=e.right=e.top=e.bottom=AP;var AO=g.grid.labelMargin+g.grid.borderWidth;if(s.xaxis.labelHeight>0){e.bottom=Math.max(AP,s.xaxis.labelHeight+AO)}if(s.yaxis.labelWidth>0){e.left=Math.max(AP,s.yaxis.labelWidth+AO)}if(s.x2axis.labelHeight>0){e.top=Math.max(AP,s.x2axis.labelHeight+AO)}if(s.y2axis.labelWidth>0){e.right=Math.max(AP,s.y2axis.labelWidth+AO)}I=y-e.left-e.right;t=Q-e.bottom-e.top}var AK;for(AK in s){K(s[AK],g[AK])}if(g.grid.show){for(AK in s){F(s[AK],g[AK]);p(s[AK],g[AK]);AN(s[AK],g[AK])}AM()}else{e.left=e.right=e.top=e.bottom=0;I=y;t=Q}for(AK in s){AL(s[AK],g[AK])}if(g.grid.show){h()}AI()}function K(AN,AQ){var AM=+(AQ.min!=null?AQ.min:AN.datamin),AK=+(AQ.max!=null?AQ.max:AN.datamax),AP=AK-AM;if(AP==0){var AL=AK==0?1:0.01;if(AQ.min==null){AM-=AL}if(AQ.max==null||AQ.min!=null){AK+=AL}}else{var AO=AQ.autoscaleMargin;if(AO!=null){if(AQ.min==null){AM-=AP*AO;if(AM<0&&AN.datamin!=null&&AN.datamin>=0){AM=0}}if(AQ.max==null){AK+=AP*AO;if(AK>0&&AN.datamax!=null&&AN.datamax<=0){AK=0}}}}AN.min=AM;AN.max=AK}function F(AP,AS){var AO;if(typeof AS.ticks=="number"&&AS.ticks>0){AO=AS.ticks}else{if(AP==s.xaxis||AP==s.x2axis){AO=0.3*Math.sqrt(y)}else{AO=0.3*Math.sqrt(Q)}}var AX=(AP.max-AP.min)/AO,AZ,AT,AV,AW,AR,AM,AL;if(AS.mode=="time"){var AU={second:1000,minute:60*1000,hour:60*60*1000,day:24*60*60*1000,month:30*24*60*60*1000,year:365.2425*24*60*60*1000};var AY=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[0.25,"month"],[0.5,"month"],[1,"month"],[2,"month"],[3,"month"],[6,"month"],[1,"year"]];var AN=0;if(AS.minTickSize!=null){if(typeof AS.tickSize=="number"){AN=AS.tickSize}else{AN=AS.minTickSize[0]*AU[AS.minTickSize[1]]}}for(AR=0;AR<AY.length-1;++AR){if(AX<(AY[AR][0]*AU[AY[AR][1]]+AY[AR+1][0]*AU[AY[AR+1][1]])/2&&AY[AR][0]*AU[AY[AR][1]]>=AN){break}}AZ=AY[AR][0];AV=AY[AR][1];if(AV=="year"){AM=Math.pow(10,Math.floor(Math.log(AX/AU.year)/Math.LN10));AL=(AX/AU.year)/AM;if(AL<1.5){AZ=1}else{if(AL<3){AZ=2}else{if(AL<7.5){AZ=5}else{AZ=10}}}AZ*=AM}if(AS.tickSize){AZ=AS.tickSize[0];AV=AS.tickSize[1]}AT=function(Ac){var Ah=[],Af=Ac.tickSize[0],Ai=Ac.tickSize[1],Ag=new Date(Ac.min);var Ab=Af*AU[Ai];if(Ai=="second"){Ag.setUTCSeconds(A(Ag.getUTCSeconds(),Af))}if(Ai=="minute"){Ag.setUTCMinutes(A(Ag.getUTCMinutes(),Af))}if(Ai=="hour"){Ag.setUTCHours(A(Ag.getUTCHours(),Af))}if(Ai=="month"){Ag.setUTCMonth(A(Ag.getUTCMonth(),Af))}if(Ai=="year"){Ag.setUTCFullYear(A(Ag.getUTCFullYear(),Af))}Ag.setUTCMilliseconds(0);if(Ab>=AU.minute){Ag.setUTCSeconds(0)}if(Ab>=AU.hour){Ag.setUTCMinutes(0)}if(Ab>=AU.day){Ag.setUTCHours(0)}if(Ab>=AU.day*4){Ag.setUTCDate(1)}if(Ab>=AU.year){Ag.setUTCMonth(0)}var Ak=0,Aj=Number.NaN,Ad;do{Ad=Aj;Aj=Ag.getTime();Ah.push({v:Aj,label:Ac.tickFormatter(Aj,Ac)});if(Ai=="month"){if(Af<1){Ag.setUTCDate(1);var Aa=Ag.getTime();Ag.setUTCMonth(Ag.getUTCMonth()+1);var Ae=Ag.getTime();Ag.setTime(Aj+Ak*AU.hour+(Ae-Aa)*Af);Ak=Ag.getUTCHours();Ag.setUTCHours(0)}else{Ag.setUTCMonth(Ag.getUTCMonth()+Af)}}else{if(Ai=="year"){Ag.setUTCFullYear(Ag.getUTCFullYear()+Af)}else{Ag.setTime(Aj+Ab)}}}while(Aj<Ac.max&&Aj!=Ad);return Ah};AW=function(Aa,Ad){var Af=new Date(Aa);if(AS.timeformat!=null){return C.plot.formatDate(Af,AS.timeformat,AS.monthNames)}var Ab=Ad.tickSize[0]*AU[Ad.tickSize[1]];var Ac=Ad.max-Ad.min;var Ae=(AS.twelveHourClock)?" %p":"";if(Ab<AU.minute){fmt="%h:%M:%S"+Ae}else{if(Ab<AU.day){if(Ac<2*AU.day){fmt="%h:%M"+Ae}else{fmt="%b %d %h:%M"+Ae}}else{if(Ab<AU.month){fmt="%b %d"}else{if(Ab<AU.year){if(Ac<AU.year){fmt="%b"}else{fmt="%b %y"}}else{fmt="%y"}}}}return C.plot.formatDate(Af,fmt,AS.monthNames)}}else{var AK=AS.tickDecimals;var AQ=-Math.floor(Math.log(AX)/Math.LN10);if(AK!=null&&AQ>AK){AQ=AK}AM=Math.pow(10,-AQ);AL=AX/AM;if(AL<1.5){AZ=1}else{if(AL<3){AZ=2;if(AL>2.25&&(AK==null||AQ+1<=AK)){AZ=2.5;++AQ}}else{if(AL<7.5){AZ=5}else{AZ=10}}}AZ*=AM;if(AS.minTickSize!=null&&AZ<AS.minTickSize){AZ=AS.minTickSize}if(AS.tickSize!=null){AZ=AS.tickSize}AP.tickDecimals=Math.max(0,(AK!=null)?AK:AQ);AT=function(Ac){var Ae=[];var Af=A(Ac.min,Ac.tickSize),Ab=0,Aa=Number.NaN,Ad;do{Ad=Aa;Aa=Af+Ab*Ac.tickSize;Ae.push({v:Aa,label:Ac.tickFormatter(Aa,Ac)});++Ab}while(Aa<Ac.max&&Aa!=Ad);return Ae};AW=function(Aa,Ab){return Aa.toFixed(Ab.tickDecimals)}}AP.tickSize=AV?[AZ,AV]:AZ;AP.tickGenerator=AT;if(C.isFunction(AS.tickFormatter)){AP.tickFormatter=function(Aa,Ab){return""+AS.tickFormatter(Aa,Ab)}}else{AP.tickFormatter=AW}}function p(AO,AQ){AO.ticks=[];if(!AO.used){return }if(AQ.ticks==null){AO.ticks=AO.tickGenerator(AO)}else{if(typeof AQ.ticks=="number"){if(AQ.ticks>0){AO.ticks=AO.tickGenerator(AO)}}else{if(AQ.ticks){var AP=AQ.ticks;if(C.isFunction(AP)){AP=AP({min:AO.min,max:AO.max})}var AN,AK;for(AN=0;AN<AP.length;++AN){var AL=null;var AM=AP[AN];if(typeof AM=="object"){AK=AM[0];if(AM.length>1){AL=AM[1]}}else{AK=AM}if(AL==null){AL=AO.tickFormatter(AK,AO)}AO.ticks[AN]={v:AK,label:AL}}}}}if(AQ.autoscaleMargin!=null&&AO.ticks.length>0){if(AQ.min==null){AO.min=Math.min(AO.min,AO.ticks[0].v)}if(AQ.max==null&&AO.ticks.length>1){AO.max=Math.max(AO.max,AO.ticks[AO.ticks.length-1].v)}}}function AH(){Y.clearRect(0,0,y,Q);var AL=g.grid;if(AL.show&&!AL.aboveData){S()}for(var AK=0;AK<O.length;++AK){AA(O[AK])}Z(L.draw,[Y]);if(AL.show&&AL.aboveData){S()}}function N(AL,AR){var AO=AR+"axis",AK=AR+"2axis",AN,AQ,AP,AM;if(AL[AO]){AN=s[AO];AQ=AL[AO].from;AP=AL[AO].to}else{if(AL[AK]){AN=s[AK];AQ=AL[AK].from;AP=AL[AK].to}else{AN=s[AO];AQ=AL[AR+"1"];AP=AL[AR+"2"]}}if(AQ!=null&&AP!=null&&AQ>AP){return{from:AP,to:AQ,axis:AN}}return{from:AQ,to:AP,axis:AN}}function S(){var AO;Y.save();Y.translate(e.left,e.top);if(g.grid.backgroundColor){Y.fillStyle=R(g.grid.backgroundColor,t,0,"rgba(255, 255, 255, 0)");Y.fillRect(0,0,I,t)}var AL=g.grid.markings;if(AL){if(C.isFunction(AL)){AL=AL({xmin:s.xaxis.min,xmax:s.xaxis.max,ymin:s.yaxis.min,ymax:s.yaxis.max,xaxis:s.xaxis,yaxis:s.yaxis,x2axis:s.x2axis,y2axis:s.y2axis})}for(AO=0;AO<AL.length;++AO){var AK=AL[AO],AQ=N(AK,"x"),AN=N(AK,"y");if(AQ.from==null){AQ.from=AQ.axis.min}if(AQ.to==null){AQ.to=AQ.axis.max}if(AN.from==null){AN.from=AN.axis.min}if(AN.to==null){AN.to=AN.axis.max}if(AQ.to<AQ.axis.min||AQ.from>AQ.axis.max||AN.to<AN.axis.min||AN.from>AN.axis.max){continue}AQ.from=Math.max(AQ.from,AQ.axis.min);AQ.to=Math.min(AQ.to,AQ.axis.max);AN.from=Math.max(AN.from,AN.axis.min);AN.to=Math.min(AN.to,AN.axis.max);if(AQ.from==AQ.to&&AN.from==AN.to){continue}AQ.from=AQ.axis.p2c(AQ.from);AQ.to=AQ.axis.p2c(AQ.to);AN.from=AN.axis.p2c(AN.from);AN.to=AN.axis.p2c(AN.to);if(AQ.from==AQ.to||AN.from==AN.to){Y.beginPath();Y.strokeStyle=AK.color||g.grid.markingsColor;Y.lineWidth=AK.lineWidth||g.grid.markingsLineWidth;Y.moveTo(AQ.from,AN.from);Y.lineTo(AQ.to,AN.to);Y.stroke()}else{Y.fillStyle=AK.color||g.grid.markingsColor;Y.fillRect(AQ.from,AN.to,AQ.to-AQ.from,AN.from-AN.to)}}}Y.lineWidth=1;Y.strokeStyle=g.grid.tickColor;Y.beginPath();var AM,AP=s.xaxis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=s.xaxis.max){continue}Y.moveTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,0);Y.lineTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,t)}AP=s.yaxis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=AP.max){continue}Y.moveTo(0,Math.floor(AP.p2c(AM))+Y.lineWidth/2);Y.lineTo(I,Math.floor(AP.p2c(AM))+Y.lineWidth/2)}AP=s.x2axis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=AP.max){continue}Y.moveTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,-5);Y.lineTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,5)}AP=s.y2axis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=AP.max){continue}Y.moveTo(I-5,Math.floor(AP.p2c(AM))+Y.lineWidth/2);Y.lineTo(I+5,Math.floor(AP.p2c(AM))+Y.lineWidth/2)}Y.stroke();if(g.grid.borderWidth){var AR=g.grid.borderWidth;Y.lineWidth=AR;Y.strokeStyle=g.grid.borderColor;Y.strokeRect(-AR/2,-AR/2,I+AR,t+AR)}Y.restore()}function h(){l.find(".tickLabels").remove();var AK=['<div class="tickLabels" style="font-size:smaller;color:'+g.grid.color+'">'];function AM(AP,AQ){for(var AO=0;AO<AP.ticks.length;++AO){var AN=AP.ticks[AO];if(!AN.label||AN.v<AP.min||AN.v>AP.max){continue}AK.push(AQ(AN,AP))}}var AL=g.grid.labelMargin+g.grid.borderWidth;AM(s.xaxis,function(AN,AO){return'<div style="position:absolute;top:'+(e.top+t+AL)+"px;left:"+Math.round(e.left+AO.p2c(AN.v)-AO.labelWidth/2)+"px;width:"+AO.labelWidth+'px;text-align:center" class="tickLabel">'+AN.label+"</div>"});AM(s.yaxis,function(AN,AO){return'<div style="position:absolute;top:'+Math.round(e.top+AO.p2c(AN.v)-AO.labelHeight/2)+"px;right:"+(e.right+I+AL)+"px;width:"+AO.labelWidth+'px;text-align:right" class="tickLabel">'+AN.label+"</div>"});AM(s.x2axis,function(AN,AO){return'<div style="position:absolute;bottom:'+(e.bottom+t+AL)+"px;left:"+Math.round(e.left+AO.p2c(AN.v)-AO.labelWidth/2)+"px;width:"+AO.labelWidth+'px;text-align:center" class="tickLabel">'+AN.label+"</div>"});AM(s.y2axis,function(AN,AO){return'<div style="position:absolute;top:'+Math.round(e.top+AO.p2c(AN.v)-AO.labelHeight/2)+"px;left:"+(e.left+I+AL)+"px;width:"+AO.labelWidth+'px;text-align:left" class="tickLabel">'+AN.label+"</div>"});AK.push("</div>");l.append(AK.join(""))}function AA(AK){if(AK.lines.show){a(AK)}if(AK.bars.show){n(AK)}if(AK.points.show){o(AK)}}function a(AN){function AM(AY,AZ,AR,Ad,Ac){var Ae=AY.points,AS=AY.pointsize,AW=null,AV=null;Y.beginPath();for(var AX=AS;AX<Ae.length;AX+=AS){var AU=Ae[AX-AS],Ab=Ae[AX-AS+1],AT=Ae[AX],Aa=Ae[AX+1];if(AU==null||AT==null){continue}if(Ab<=Aa&&Ab<Ac.min){if(Aa<Ac.min){continue}AU=(Ac.min-Ab)/(Aa-Ab)*(AT-AU)+AU;Ab=Ac.min}else{if(Aa<=Ab&&Aa<Ac.min){if(Ab<Ac.min){continue}AT=(Ac.min-Ab)/(Aa-Ab)*(AT-AU)+AU;Aa=Ac.min}}if(Ab>=Aa&&Ab>Ac.max){if(Aa>Ac.max){continue}AU=(Ac.max-Ab)/(Aa-Ab)*(AT-AU)+AU;Ab=Ac.max}else{if(Aa>=Ab&&Aa>Ac.max){if(Ab>Ac.max){continue}AT=(Ac.max-Ab)/(Aa-Ab)*(AT-AU)+AU;Aa=Ac.max}}if(AU<=AT&&AU<Ad.min){if(AT<Ad.min){continue}Ab=(Ad.min-AU)/(AT-AU)*(Aa-Ab)+Ab;AU=Ad.min}else{if(AT<=AU&&AT<Ad.min){if(AU<Ad.min){continue}Aa=(Ad.min-AU)/(AT-AU)*(Aa-Ab)+Ab;AT=Ad.min}}if(AU>=AT&&AU>Ad.max){if(AT>Ad.max){continue}Ab=(Ad.max-AU)/(AT-AU)*(Aa-Ab)+Ab;AU=Ad.max}else{if(AT>=AU&&AT>Ad.max){if(AU>Ad.max){continue}Aa=(Ad.max-AU)/(AT-AU)*(Aa-Ab)+Ab;AT=Ad.max}}if(AU!=AW||Ab!=AV){Y.moveTo(Ad.p2c(AU)+AZ,Ac.p2c(Ab)+AR)}AW=AT;AV=Aa;Y.lineTo(Ad.p2c(AT)+AZ,Ac.p2c(Aa)+AR)}Y.stroke()}function AO(AX,Ae,Ac){var Af=AX.points,AR=AX.pointsize,AS=Math.min(Math.max(0,Ac.min),Ac.max),Aa,AV=0,Ad=false;for(var AW=AR;AW<Af.length;AW+=AR){var AU=Af[AW-AR],Ab=Af[AW-AR+1],AT=Af[AW],AZ=Af[AW+1];if(Ad&&AU!=null&&AT==null){Y.lineTo(Ae.p2c(AV),Ac.p2c(AS));Y.fill();Ad=false;continue}if(AU==null||AT==null){continue}if(AU<=AT&&AU<Ae.min){if(AT<Ae.min){continue}Ab=(Ae.min-AU)/(AT-AU)*(AZ-Ab)+Ab;AU=Ae.min}else{if(AT<=AU&&AT<Ae.min){if(AU<Ae.min){continue}AZ=(Ae.min-AU)/(AT-AU)*(AZ-Ab)+Ab;AT=Ae.min}}if(AU>=AT&&AU>Ae.max){if(AT>Ae.max){continue}Ab=(Ae.max-AU)/(AT-AU)*(AZ-Ab)+Ab;AU=Ae.max}else{if(AT>=AU&&AT>Ae.max){if(AU>Ae.max){continue}AZ=(Ae.max-AU)/(AT-AU)*(AZ-Ab)+Ab;AT=Ae.max}}if(!Ad){Y.beginPath();Y.moveTo(Ae.p2c(AU),Ac.p2c(AS));Ad=true}if(Ab>=Ac.max&&AZ>=Ac.max){Y.lineTo(Ae.p2c(AU),Ac.p2c(Ac.max));Y.lineTo(Ae.p2c(AT),Ac.p2c(Ac.max));AV=AT;continue}else{if(Ab<=Ac.min&&AZ<=Ac.min){Y.lineTo(Ae.p2c(AU),Ac.p2c(Ac.min));Y.lineTo(Ae.p2c(AT),Ac.p2c(Ac.min));AV=AT;continue}}var Ag=AU,AY=AT;if(Ab<=AZ&&Ab<Ac.min&&AZ>=Ac.min){AU=(Ac.min-Ab)/(AZ-Ab)*(AT-AU)+AU;Ab=Ac.min}else{if(AZ<=Ab&&AZ<Ac.min&&Ab>=Ac.min){AT=(Ac.min-Ab)/(AZ-Ab)*(AT-AU)+AU;AZ=Ac.min}}if(Ab>=AZ&&Ab>Ac.max&&AZ<=Ac.max){AU=(Ac.max-Ab)/(AZ-Ab)*(AT-AU)+AU;Ab=Ac.max}else{if(AZ>=Ab&&AZ>Ac.max&&Ab<=Ac.max){AT=(Ac.max-Ab)/(AZ-Ab)*(AT-AU)+AU;AZ=Ac.max}}if(AU!=Ag){if(Ab<=Ac.min){Aa=Ac.min}else{Aa=Ac.max}Y.lineTo(Ae.p2c(Ag),Ac.p2c(Aa));Y.lineTo(Ae.p2c(AU),Ac.p2c(Aa))}Y.lineTo(Ae.p2c(AU),Ac.p2c(Ab));Y.lineTo(Ae.p2c(AT),Ac.p2c(AZ));if(AT!=AY){if(AZ<=Ac.min){Aa=Ac.min}else{Aa=Ac.max}Y.lineTo(Ae.p2c(AT),Ac.p2c(Aa));Y.lineTo(Ae.p2c(AY),Ac.p2c(Aa))}AV=Math.max(AT,AY)}if(Ad){Y.lineTo(Ae.p2c(AV),Ac.p2c(AS));Y.fill()}}Y.save();Y.translate(e.left,e.top);Y.lineJoin="round";var AP=AN.lines.lineWidth,AK=AN.shadowSize;if(AP>0&&AK>0){Y.lineWidth=AK;Y.strokeStyle="rgba(0,0,0,0.1)";var AQ=Math.PI/18;AM(AN.datapoints,Math.sin(AQ)*(AP/2+AK/2),Math.cos(AQ)*(AP/2+AK/2),AN.xaxis,AN.yaxis);Y.lineWidth=AK/2;AM(AN.datapoints,Math.sin(AQ)*(AP/2+AK/4),Math.cos(AQ)*(AP/2+AK/4),AN.xaxis,AN.yaxis)}Y.lineWidth=AP;Y.strokeStyle=AN.color;var AL=V(AN.lines,AN.color,0,t);if(AL){Y.fillStyle=AL;AO(AN.datapoints,AN.xaxis,AN.yaxis)}if(AP>0){AM(AN.datapoints,0,0,AN.xaxis,AN.yaxis)}Y.restore()}function o(AN){function AP(AU,AT,Ab,AR,AV,AZ,AY){var Aa=AU.points,AQ=AU.pointsize;for(var AS=0;AS<Aa.length;AS+=AQ){var AX=Aa[AS],AW=Aa[AS+1];if(AX==null||AX<AZ.min||AX>AZ.max||AW<AY.min||AW>AY.max){continue}Y.beginPath();Y.arc(AZ.p2c(AX),AY.p2c(AW)+AR,AT,0,AV,false);if(Ab){Y.fillStyle=Ab;Y.fill()}Y.stroke()}}Y.save();Y.translate(e.left,e.top);var AO=AN.lines.lineWidth,AL=AN.shadowSize,AK=AN.points.radius;if(AO>0&&AL>0){var AM=AL/2;Y.lineWidth=AM;Y.strokeStyle="rgba(0,0,0,0.1)";AP(AN.datapoints,AK,null,AM+AM/2,Math.PI,AN.xaxis,AN.yaxis);Y.strokeStyle="rgba(0,0,0,0.2)";AP(AN.datapoints,AK,null,AM/2,Math.PI,AN.xaxis,AN.yaxis)}Y.lineWidth=AO;Y.strokeStyle=AN.color;AP(AN.datapoints,AK,V(AN.points,AN.color),0,2*Math.PI,AN.xaxis,AN.yaxis);Y.restore()}function AB(AV,AU,Ad,AQ,AY,AN,AL,AT,AS,Ac,AZ){var AM,Ab,AR,AX,AO,AK,AW,AP,Aa;if(AZ){AP=AK=AW=true;AO=false;AM=Ad;Ab=AV;AX=AU+AQ;AR=AU+AY;if(Ab<AM){Aa=Ab;Ab=AM;AM=Aa;AO=true;AK=false}}else{AO=AK=AW=true;AP=false;AM=AV+AQ;Ab=AV+AY;AR=Ad;AX=AU;if(AX<AR){Aa=AX;AX=AR;AR=Aa;AP=true;AW=false}}if(Ab<AT.min||AM>AT.max||AX<AS.min||AR>AS.max){return }if(AM<AT.min){AM=AT.min;AO=false}if(Ab>AT.max){Ab=AT.max;AK=false}if(AR<AS.min){AR=AS.min;AP=false}if(AX>AS.max){AX=AS.max;AW=false}AM=AT.p2c(AM);AR=AS.p2c(AR);Ab=AT.p2c(Ab);AX=AS.p2c(AX);if(AL){Ac.beginPath();Ac.moveTo(AM,AR);Ac.lineTo(AM,AX);Ac.lineTo(Ab,AX);Ac.lineTo(Ab,AR);Ac.fillStyle=AL(AR,AX);Ac.fill()}if(AO||AK||AW||AP){Ac.beginPath();Ac.moveTo(AM,AR+AN);if(AO){Ac.lineTo(AM,AX+AN)}else{Ac.moveTo(AM,AX+AN)}if(AW){Ac.lineTo(Ab,AX+AN)}else{Ac.moveTo(Ab,AX+AN)}if(AK){Ac.lineTo(Ab,AR+AN)}else{Ac.moveTo(Ab,AR+AN)}if(AP){Ac.lineTo(AM,AR+AN)}else{Ac.moveTo(AM,AR+AN)}Ac.stroke()}}function n(AM){function AL(AS,AR,AU,AP,AT,AW,AV){var AX=AS.points,AO=AS.pointsize;for(var AQ=0;AQ<AX.length;AQ+=AO){if(AX[AQ]==null){continue}AB(AX[AQ],AX[AQ+1],AX[AQ+2],AR,AU,AP,AT,AW,AV,Y,AM.bars.horizontal)}}Y.save();Y.translate(e.left,e.top);Y.lineWidth=AM.bars.lineWidth;Y.strokeStyle=AM.color;var AK=AM.bars.align=="left"?0:-AM.bars.barWidth/2;var AN=AM.bars.fill?function(AO,AP){return V(AM.bars,AM.color,AO,AP)}:null;AL(AM.datapoints,AK,AK+AM.bars.barWidth,0,AN,AM.xaxis,AM.yaxis);Y.restore()}function V(AM,AK,AL,AO){var AN=AM.fill;if(!AN){return null}if(AM.fillColor){return R(AM.fillColor,AL,AO,AK)}var AP=C.color.parse(AK);AP.a=typeof AN=="number"?AN:0.4;AP.normalize();return AP.toString()}function AI(){l.find(".legend").remove();if(!g.legend.show){return }var AP=[],AN=false,AV=g.legend.labelFormatter,AU,AR;for(i=0;i<O.length;++i){AU=O[i];AR=AU.label;if(!AR){continue}if(i%g.legend.noColumns==0){if(AN){AP.push("</tr>")}AP.push("<tr>");AN=true}if(AV){AR=AV(AR,AU)}AP.push('<td class="legendColorBox"><div style="border:1px solid '+g.legend.labelBoxBorderColor+';padding:1px"><div style="width:4px;height:0;border:5px solid '+AU.color+';overflow:hidden"></div></div></td><td class="legendLabel">'+AR+"</td>")}if(AN){AP.push("</tr>")}if(AP.length==0){return }var AT='<table style="font-size:smaller;color:'+g.grid.color+'">'+AP.join("")+"</table>";if(g.legend.container!=null){C(g.legend.container).html(AT)}else{var AQ="",AL=g.legend.position,AM=g.legend.margin;if(AM[0]==null){AM=[AM,AM]}if(AL.charAt(0)=="n"){AQ+="top:"+(AM[1]+e.top)+"px;"}else{if(AL.charAt(0)=="s"){AQ+="bottom:"+(AM[1]+e.bottom)+"px;"}}if(AL.charAt(1)=="e"){AQ+="right:"+(AM[0]+e.right)+"px;"}else{if(AL.charAt(1)=="w"){AQ+="left:"+(AM[0]+e.left)+"px;"}}var AS=C('<div class="legend">'+AT.replace('style="','style="position:absolute;'+AQ+";")+"</div>").appendTo(l);if(g.legend.backgroundOpacity!=0){var AO=g.legend.backgroundColor;if(AO==null){AO=g.grid.backgroundColor;if(AO&&typeof AO=="string"){AO=C.color.parse(AO)}else{AO=C.color.extract(AS,"background-color")}AO.a=1;AO=AO.toString()}var AK=AS.children();C('<div style="position:absolute;width:'+AK.width()+"px;height:"+AK.height()+"px;"+AQ+"background-color:"+AO+';"> </div>').prependTo(AS).css("opacity",g.legend.backgroundOpacity)}}}var w=[],J=null;function AF(AR,AP,AM){var AX=g.grid.mouseActiveRadius,Aj=AX*AX+1,Ah=null,Aa=false,Af,Ad;for(Af=0;Af<O.length;++Af){if(!AM(O[Af])){continue}var AY=O[Af],AQ=AY.xaxis,AO=AY.yaxis,Ae=AY.datapoints.points,Ac=AY.datapoints.pointsize,AZ=AQ.c2p(AR),AW=AO.c2p(AP),AL=AX/AQ.scale,AK=AX/AO.scale;if(AY.lines.show||AY.points.show){for(Ad=0;Ad<Ae.length;Ad+=Ac){var AT=Ae[Ad],AS=Ae[Ad+1];if(AT==null){continue}if(AT-AZ>AL||AT-AZ<-AL||AS-AW>AK||AS-AW<-AK){continue}var AV=Math.abs(AQ.p2c(AT)-AR),AU=Math.abs(AO.p2c(AS)-AP),Ab=AV*AV+AU*AU;if(Ab<=Aj){Aj=Ab;Ah=[Af,Ad/Ac]}}}if(AY.bars.show&&!Ah){var AN=AY.bars.align=="left"?0:-AY.bars.barWidth/2,Ag=AN+AY.bars.barWidth;for(Ad=0;Ad<Ae.length;Ad+=Ac){var AT=Ae[Ad],AS=Ae[Ad+1],Ai=Ae[Ad+2];if(AT==null){continue}if(O[Af].bars.horizontal?(AZ<=Math.max(Ai,AT)&&AZ>=Math.min(Ai,AT)&&AW>=AS+AN&&AW<=AS+Ag):(AZ>=AT+AN&&AZ<=AT+Ag&&AW>=Math.min(Ai,AS)&&AW<=Math.max(Ai,AS))){Ah=[Af,Ad/Ac]}}}}if(Ah){Af=Ah[0];Ad=Ah[1];Ac=O[Af].datapoints.pointsize;return{datapoint:O[Af].datapoints.points.slice(Ad*Ac,(Ad+1)*Ac),dataIndex:Ad,series:O[Af],seriesIndex:Af}}return null}function D(AK){if(g.grid.hoverable){H("plothover",AK,function(AL){return AL.hoverable!=false})}}function d(AK){H("plotclick",AK,function(AL){return AL.clickable!=false})}function H(AL,AK,AM){var AN=AD.offset(),AS={pageX:AK.pageX,pageY:AK.pageY},AQ=AK.pageX-AN.left-e.left,AO=AK.pageY-AN.top-e.top;if(s.xaxis.used){AS.x=s.xaxis.c2p(AQ)}if(s.yaxis.used){AS.y=s.yaxis.c2p(AO)}if(s.x2axis.used){AS.x2=s.x2axis.c2p(AQ)}if(s.y2axis.used){AS.y2=s.y2axis.c2p(AO)}var AT=AF(AQ,AO,AM);if(AT){AT.pageX=parseInt(AT.series.xaxis.p2c(AT.datapoint[0])+AN.left+e.left);AT.pageY=parseInt(AT.series.yaxis.p2c(AT.datapoint[1])+AN.top+e.top)}if(g.grid.autoHighlight){for(var AP=0;AP<w.length;++AP){var AR=w[AP];if(AR.auto==AL&&!(AT&&AR.series==AT.series&&AR.point==AT.datapoint)){x(AR.series,AR.point)}}if(AT){AE(AT.series,AT.datapoint,AL)}}l.trigger(AL,[AS,AT])}function q(){if(!J){J=setTimeout(v,30)}}function v(){J=null;AJ.save();AJ.clearRect(0,0,y,Q);AJ.translate(e.left,e.top);var AL,AK;for(AL=0;AL<w.length;++AL){AK=w[AL];if(AK.series.bars.show){z(AK.series,AK.point)}else{u(AK.series,AK.point)}}AJ.restore();Z(L.drawOverlay,[AJ])}function AE(AM,AK,AN){if(typeof AM=="number"){AM=O[AM]}if(typeof AK=="number"){AK=AM.data[AK]}var AL=j(AM,AK);if(AL==-1){w.push({series:AM,point:AK,auto:AN});q()}else{if(!AN){w[AL].auto=false}}}function x(AM,AK){if(AM==null&&AK==null){w=[];q()}if(typeof AM=="number"){AM=O[AM]}if(typeof AK=="number"){AK=AM.data[AK]}var AL=j(AM,AK);if(AL!=-1){w.splice(AL,1);q()}}function j(AM,AN){for(var AK=0;AK<w.length;++AK){var AL=w[AK];if(AL.series==AM&&AL.point[0]==AN[0]&&AL.point[1]==AN[1]){return AK}}return -1}function u(AN,AM){var AL=AM[0],AR=AM[1],AQ=AN.xaxis,AP=AN.yaxis;if(AL<AQ.min||AL>AQ.max||AR<AP.min||AR>AP.max){return }var AO=AN.points.radius+AN.points.lineWidth/2;AJ.lineWidth=AO;AJ.strokeStyle=C.color.parse(AN.color).scale("a",0.5).toString();var AK=1.5*AO;AJ.beginPath();AJ.arc(AQ.p2c(AL),AP.p2c(AR),AK,0,2*Math.PI,false);AJ.stroke()}function z(AN,AK){AJ.lineWidth=AN.bars.lineWidth;AJ.strokeStyle=C.color.parse(AN.color).scale("a",0.5).toString();var AM=C.color.parse(AN.color).scale("a",0.5).toString();var AL=AN.bars.align=="left"?0:-AN.bars.barWidth/2;AB(AK[0],AK[1],AK[2]||0,AL,AL+AN.bars.barWidth,0,function(){return AM},AN.xaxis,AN.yaxis,AJ,AN.bars.horizontal)}function R(AM,AL,AQ,AO){if(typeof AM=="string"){return AM}else{var AP=Y.createLinearGradient(0,AQ,0,AL);for(var AN=0,AK=AM.colors.length;AN<AK;++AN){var AR=AM.colors[AN];if(typeof AR!="string"){AR=C.color.parse(AO).scale("rgb",AR.brightness);AR.a*=AR.opacity;AR=AR.toString()}AP.addColorStop(AN/(AK-1),AR)}return AP}}}C.plot=function(G,E,D){var F=new B(C(G),E,D,C.plot.plugins);return F};C.plot.plugins=[];C.plot.formatDate=function(H,E,G){var L=function(N){N=""+N;return N.length==1?"0"+N:N};var D=[];var M=false;var K=H.getUTCHours();var I=K<12;if(G==null){G=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(E.search(/%p|%P/)!=-1){if(K>12){K=K-12}else{if(K==0){K=12}}}for(var F=0;F<E.length;++F){var J=E.charAt(F);if(M){switch(J){case"h":J=""+K;break;case"H":J=L(K);break;case"M":J=L(H.getUTCMinutes());break;case"S":J=L(H.getUTCSeconds());break;case"d":J=""+H.getUTCDate();break;case"m":J=""+(H.getUTCMonth()+1);break;case"y":J=""+H.getUTCFullYear();break;case"b":J=""+G[H.getUTCMonth()];break;case"p":J=(I)?("am"):("pm");break;case"P":J=(I)?("AM"):("PM");break}D.push(J);M=false}else{if(J=="%"){M=true}else{D.push(J)}}}return D.join("")};function A(E,D){return D*Math.floor(E/D)}})(jQuery);
 
 
 
 
 
1
+ /* Javascript plotting library for jQuery, v. 0.7.
2
+ *
3
+ * Released under the MIT license by IOLA, December 2007.
4
+ *
5
+ */
6
+ (function(b){b.color={};b.color.make=function(d,e,g,f){var c={};c.r=d||0;c.g=e||0;c.b=g||0;c.a=f!=null?f:1;c.add=function(h,j){for(var k=0;k<h.length;++k){c[h.charAt(k)]+=j}return c.normalize()};c.scale=function(h,j){for(var k=0;k<h.length;++k){c[h.charAt(k)]*=j}return c.normalize()};c.toString=function(){if(c.a>=1){return"rgb("+[c.r,c.g,c.b].join(",")+")"}else{return"rgba("+[c.r,c.g,c.b,c.a].join(",")+")"}};c.normalize=function(){function h(k,j,l){return j<k?k:(j>l?l:j)}c.r=h(0,parseInt(c.r),255);c.g=h(0,parseInt(c.g),255);c.b=h(0,parseInt(c.b),255);c.a=h(0,c.a,1);return c};c.clone=function(){return b.color.make(c.r,c.b,c.g,c.a)};return c.normalize()};b.color.extract=function(d,e){var c;do{c=d.css(e).toLowerCase();if(c!=""&&c!="transparent"){break}d=d.parent()}while(!b.nodeName(d.get(0),"body"));if(c=="rgba(0, 0, 0, 0)"){c="transparent"}return b.color.parse(c)};b.color.parse=function(c){var d,f=b.color.make;if(d=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c)){return f(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10))}if(d=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c)){return f(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10),parseFloat(d[4]))}if(d=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c)){return f(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55)}if(d=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c)){return f(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55,parseFloat(d[4]))}if(d=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c)){return f(parseInt(d[1],16),parseInt(d[2],16),parseInt(d[3],16))}if(d=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c)){return f(parseInt(d[1]+d[1],16),parseInt(d[2]+d[2],16),parseInt(d[3]+d[3],16))}var e=b.trim(c).toLowerCase();if(e=="transparent"){return f(255,255,255,0)}else{d=a[e]||[0,0,0];return f(d[0],d[1],d[2])}};var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);(function(c){function b(av,ai,J,af){var Q=[],O={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:true,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:0.85},xaxis:{show:null,position:"bottom",mode:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null,monthNames:null,timeformat:null,twelveHourClock:false},yaxis:{autoscaleMargin:0.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:false,fillColor:null,steps:false},bars:{show:false,lineWidth:2,barWidth:1,fill:true,fillColor:null,align:"left",horizontal:false},shadowSize:3},grid:{show:true,aboveData:false,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},hooks:{}},az=null,ad=null,y=null,H=null,A=null,p=[],aw=[],q={left:0,right:0,top:0,bottom:0},G=0,I=0,h=0,w=0,ak={processOptions:[],processRawData:[],processDatapoints:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},aq=this;aq.setData=aj;aq.setupGrid=t;aq.draw=W;aq.getPlaceholder=function(){return av};aq.getCanvas=function(){return az};aq.getPlotOffset=function(){return q};aq.width=function(){return h};aq.height=function(){return w};aq.offset=function(){var aB=y.offset();aB.left+=q.left;aB.top+=q.top;return aB};aq.getData=function(){return Q};aq.getAxes=function(){var aC={},aB;c.each(p.concat(aw),function(aD,aE){if(aE){aC[aE.direction+(aE.n!=1?aE.n:"")+"axis"]=aE}});return aC};aq.getXAxes=function(){return p};aq.getYAxes=function(){return aw};aq.c2p=C;aq.p2c=ar;aq.getOptions=function(){return O};aq.highlight=x;aq.unhighlight=T;aq.triggerRedrawOverlay=f;aq.pointOffset=function(aB){return{left:parseInt(p[aA(aB,"x")-1].p2c(+aB.x)+q.left),top:parseInt(aw[aA(aB,"y")-1].p2c(+aB.y)+q.top)}};aq.shutdown=ag;aq.resize=function(){B();g(az);g(ad)};aq.hooks=ak;F(aq);Z(J);X();aj(ai);t();W();ah();function an(aD,aB){aB=[aq].concat(aB);for(var aC=0;aC<aD.length;++aC){aD[aC].apply(this,aB)}}function F(){for(var aB=0;aB<af.length;++aB){var aC=af[aB];aC.init(aq);if(aC.options){c.extend(true,O,aC.options)}}}function Z(aC){var aB;c.extend(true,O,aC);if(O.xaxis.color==null){O.xaxis.color=O.grid.color}if(O.yaxis.color==null){O.yaxis.color=O.grid.color}if(O.xaxis.tickColor==null){O.xaxis.tickColor=O.grid.tickColor}if(O.yaxis.tickColor==null){O.yaxis.tickColor=O.grid.tickColor}if(O.grid.borderColor==null){O.grid.borderColor=O.grid.color}if(O.grid.tickColor==null){O.grid.tickColor=c.color.parse(O.grid.color).scale("a",0.22).toString()}for(aB=0;aB<Math.max(1,O.xaxes.length);++aB){O.xaxes[aB]=c.extend(true,{},O.xaxis,O.xaxes[aB])}for(aB=0;aB<Math.max(1,O.yaxes.length);++aB){O.yaxes[aB]=c.extend(true,{},O.yaxis,O.yaxes[aB])}if(O.xaxis.noTicks&&O.xaxis.ticks==null){O.xaxis.ticks=O.xaxis.noTicks}if(O.yaxis.noTicks&&O.yaxis.ticks==null){O.yaxis.ticks=O.yaxis.noTicks}if(O.x2axis){O.xaxes[1]=c.extend(true,{},O.xaxis,O.x2axis);O.xaxes[1].position="top"}if(O.y2axis){O.yaxes[1]=c.extend(true,{},O.yaxis,O.y2axis);O.yaxes[1].position="right"}if(O.grid.coloredAreas){O.grid.markings=O.grid.coloredAreas}if(O.grid.coloredAreasColor){O.grid.markingsColor=O.grid.coloredAreasColor}if(O.lines){c.extend(true,O.series.lines,O.lines)}if(O.points){c.extend(true,O.series.points,O.points)}if(O.bars){c.extend(true,O.series.bars,O.bars)}if(O.shadowSize!=null){O.series.shadowSize=O.shadowSize}for(aB=0;aB<O.xaxes.length;++aB){V(p,aB+1).options=O.xaxes[aB]}for(aB=0;aB<O.yaxes.length;++aB){V(aw,aB+1).options=O.yaxes[aB]}for(var aD in ak){if(O.hooks[aD]&&O.hooks[aD].length){ak[aD]=ak[aD].concat(O.hooks[aD])}}an(ak.processOptions,[O])}function aj(aB){Q=Y(aB);ax();z()}function Y(aE){var aC=[];for(var aB=0;aB<aE.length;++aB){var aD=c.extend(true,{},O.series);if(aE[aB].data!=null){aD.data=aE[aB].data;delete aE[aB].data;c.extend(true,aD,aE[aB]);aE[aB].data=aD.data}else{aD.data=aE[aB]}aC.push(aD)}return aC}function aA(aC,aD){var aB=aC[aD+"axis"];if(typeof aB=="object"){aB=aB.n}if(typeof aB!="number"){aB=1}return aB}function m(){return c.grep(p.concat(aw),function(aB){return aB})}function C(aE){var aC={},aB,aD;for(aB=0;aB<p.length;++aB){aD=p[aB];if(aD&&aD.used){aC["x"+aD.n]=aD.c2p(aE.left)}}for(aB=0;aB<aw.length;++aB){aD=aw[aB];if(aD&&aD.used){aC["y"+aD.n]=aD.c2p(aE.top)}}if(aC.x1!==undefined){aC.x=aC.x1}if(aC.y1!==undefined){aC.y=aC.y1}return aC}function ar(aF){var aD={},aC,aE,aB;for(aC=0;aC<p.length;++aC){aE=p[aC];if(aE&&aE.used){aB="x"+aE.n;if(aF[aB]==null&&aE.n==1){aB="x"}if(aF[aB]!=null){aD.left=aE.p2c(aF[aB]);break}}}for(aC=0;aC<aw.length;++aC){aE=aw[aC];if(aE&&aE.used){aB="y"+aE.n;if(aF[aB]==null&&aE.n==1){aB="y"}if(aF[aB]!=null){aD.top=aE.p2c(aF[aB]);break}}}return aD}function V(aC,aB){if(!aC[aB-1]){aC[aB-1]={n:aB,direction:aC==p?"x":"y",options:c.extend(true,{},aC==p?O.xaxis:O.yaxis)}}return aC[aB-1]}function ax(){var aG;var aM=Q.length,aB=[],aE=[];for(aG=0;aG<Q.length;++aG){var aJ=Q[aG].color;if(aJ!=null){--aM;if(typeof aJ=="number"){aE.push(aJ)}else{aB.push(c.color.parse(Q[aG].color))}}}for(aG=0;aG<aE.length;++aG){aM=Math.max(aM,aE[aG]+1)}var aC=[],aF=0;aG=0;while(aC.length<aM){var aI;if(O.colors.length==aG){aI=c.color.make(100,100,100)}else{aI=c.color.parse(O.colors[aG])}var aD=aF%2==1?-1:1;aI.scale("rgb",1+aD*Math.ceil(aF/2)*0.2);aC.push(aI);++aG;if(aG>=O.colors.length){aG=0;++aF}}var aH=0,aN;for(aG=0;aG<Q.length;++aG){aN=Q[aG];if(aN.color==null){aN.color=aC[aH].toString();++aH}else{if(typeof aN.color=="number"){aN.color=aC[aN.color].toString()}}if(aN.lines.show==null){var aL,aK=true;for(aL in aN){if(aN[aL]&&aN[aL].show){aK=false;break}}if(aK){aN.lines.show=true}}aN.xaxis=V(p,aA(aN,"x"));aN.yaxis=V(aw,aA(aN,"y"))}}function z(){var aO=Number.POSITIVE_INFINITY,aI=Number.NEGATIVE_INFINITY,aB=Number.MAX_VALUE,aU,aS,aR,aN,aD,aJ,aT,aP,aH,aG,aC,a0,aX,aL;function aF(a3,a2,a1){if(a2<a3.datamin&&a2!=-aB){a3.datamin=a2}if(a1>a3.datamax&&a1!=aB){a3.datamax=a1}}c.each(m(),function(a1,a2){a2.datamin=aO;a2.datamax=aI;a2.used=false});for(aU=0;aU<Q.length;++aU){aJ=Q[aU];aJ.datapoints={points:[]};an(ak.processRawData,[aJ,aJ.data,aJ.datapoints])}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];var aZ=aJ.data,aW=aJ.datapoints.format;if(!aW){aW=[];aW.push({x:true,number:true,required:true});aW.push({y:true,number:true,required:true});if(aJ.bars.show||(aJ.lines.show&&aJ.lines.fill)){aW.push({y:true,number:true,required:false,defaultValue:0});if(aJ.bars.horizontal){delete aW[aW.length-1].y;aW[aW.length-1].x=true}}aJ.datapoints.format=aW}if(aJ.datapoints.pointsize!=null){continue}aJ.datapoints.pointsize=aW.length;aP=aJ.datapoints.pointsize;aT=aJ.datapoints.points;insertSteps=aJ.lines.show&&aJ.lines.steps;aJ.xaxis.used=aJ.yaxis.used=true;for(aS=aR=0;aS<aZ.length;++aS,aR+=aP){aL=aZ[aS];var aE=aL==null;if(!aE){for(aN=0;aN<aP;++aN){a0=aL[aN];aX=aW[aN];if(aX){if(aX.number&&a0!=null){a0=+a0;if(isNaN(a0)){a0=null}else{if(a0==Infinity){a0=aB}else{if(a0==-Infinity){a0=-aB}}}}if(a0==null){if(aX.required){aE=true}if(aX.defaultValue!=null){a0=aX.defaultValue}}}aT[aR+aN]=a0}}if(aE){for(aN=0;aN<aP;++aN){a0=aT[aR+aN];if(a0!=null){aX=aW[aN];if(aX.x){aF(aJ.xaxis,a0,a0)}if(aX.y){aF(aJ.yaxis,a0,a0)}}aT[aR+aN]=null}}else{if(insertSteps&&aR>0&&aT[aR-aP]!=null&&aT[aR-aP]!=aT[aR]&&aT[aR-aP+1]!=aT[aR+1]){for(aN=0;aN<aP;++aN){aT[aR+aP+aN]=aT[aR+aN]}aT[aR+1]=aT[aR-aP+1];aR+=aP}}}}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];an(ak.processDatapoints,[aJ,aJ.datapoints])}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];aT=aJ.datapoints.points,aP=aJ.datapoints.pointsize;var aK=aO,aQ=aO,aM=aI,aV=aI;for(aS=0;aS<aT.length;aS+=aP){if(aT[aS]==null){continue}for(aN=0;aN<aP;++aN){a0=aT[aS+aN];aX=aW[aN];if(!aX||a0==aB||a0==-aB){continue}if(aX.x){if(a0<aK){aK=a0}if(a0>aM){aM=a0}}if(aX.y){if(a0<aQ){aQ=a0}if(a0>aV){aV=a0}}}}if(aJ.bars.show){var aY=aJ.bars.align=="left"?0:-aJ.bars.barWidth/2;if(aJ.bars.horizontal){aQ+=aY;aV+=aY+aJ.bars.barWidth}else{aK+=aY;aM+=aY+aJ.bars.barWidth}}aF(aJ.xaxis,aK,aM);aF(aJ.yaxis,aQ,aV)}c.each(m(),function(a1,a2){if(a2.datamin==aO){a2.datamin=null}if(a2.datamax==aI){a2.datamax=null}})}function j(aB,aC){var aD=document.createElement("canvas");aD.className=aC;aD.width=G;aD.height=I;if(!aB){c(aD).css({position:"absolute",left:0,top:0})}c(aD).appendTo(av);if(!aD.getContext){aD=window.G_vmlCanvasManager.initElement(aD)}aD.getContext("2d").save();return aD}function B(){G=av.width();I=av.height();if(G<=0||I<=0){throw"Invalid dimensions for plot, width = "+G+", height = "+I}}function g(aC){if(aC.width!=G){aC.width=G}if(aC.height!=I){aC.height=I}var aB=aC.getContext("2d");aB.restore();aB.save()}function X(){var aC,aB=av.children("canvas.base"),aD=av.children("canvas.overlay");if(aB.length==0||aD==0){av.html("");av.css({padding:0});if(av.css("position")=="static"){av.css("position","relative")}B();az=j(true,"base");ad=j(false,"overlay");aC=false}else{az=aB.get(0);ad=aD.get(0);aC=true}H=az.getContext("2d");A=ad.getContext("2d");y=c([ad,az]);if(aC){av.data("plot").shutdown();aq.resize();A.clearRect(0,0,G,I);y.unbind();av.children().not([az,ad]).remove()}av.data("plot",aq)}function ah(){if(O.grid.hoverable){y.mousemove(aa);y.mouseleave(l)}if(O.grid.clickable){y.click(R)}an(ak.bindEvents,[y])}function ag(){if(M){clearTimeout(M)}y.unbind("mousemove",aa);y.unbind("mouseleave",l);y.unbind("click",R);an(ak.shutdown,[y])}function r(aG){function aC(aH){return aH}var aF,aB,aD=aG.options.transform||aC,aE=aG.options.inverseTransform;if(aG.direction=="x"){aF=aG.scale=h/Math.abs(aD(aG.max)-aD(aG.min));aB=Math.min(aD(aG.max),aD(aG.min))}else{aF=aG.scale=w/Math.abs(aD(aG.max)-aD(aG.min));aF=-aF;aB=Math.max(aD(aG.max),aD(aG.min))}if(aD==aC){aG.p2c=function(aH){return(aH-aB)*aF}}else{aG.p2c=function(aH){return(aD(aH)-aB)*aF}}if(!aE){aG.c2p=function(aH){return aB+aH/aF}}else{aG.c2p=function(aH){return aE(aB+aH/aF)}}}function L(aD){var aB=aD.options,aF,aJ=aD.ticks||[],aI=[],aE,aK=aB.labelWidth,aG=aB.labelHeight,aC;function aH(aM,aL){return c('<div style="position:absolute;top:-10000px;'+aL+'font-size:smaller"><div class="'+aD.direction+"Axis "+aD.direction+aD.n+'Axis">'+aM.join("")+"</div></div>").appendTo(av)}if(aD.direction=="x"){if(aK==null){aK=Math.floor(G/(aJ.length>0?aJ.length:1))}if(aG==null){aI=[];for(aF=0;aF<aJ.length;++aF){aE=aJ[aF].label;if(aE){aI.push('<div class="tickLabel" style="float:left;width:'+aK+'px">'+aE+"</div>")}}if(aI.length>0){aI.push('<div style="clear:left"></div>');aC=aH(aI,"width:10000px;");aG=aC.height();aC.remove()}}}else{if(aK==null||aG==null){for(aF=0;aF<aJ.length;++aF){aE=aJ[aF].label;if(aE){aI.push('<div class="tickLabel">'+aE+"</div>")}}if(aI.length>0){aC=aH(aI,"");if(aK==null){aK=aC.children().width()}if(aG==null){aG=aC.find("div.tickLabel").height()}aC.remove()}}}if(aK==null){aK=0}if(aG==null){aG=0}aD.labelWidth=aK;aD.labelHeight=aG}function au(aD){var aC=aD.labelWidth,aL=aD.labelHeight,aH=aD.options.position,aF=aD.options.tickLength,aG=O.grid.axisMargin,aJ=O.grid.labelMargin,aK=aD.direction=="x"?p:aw,aE;var aB=c.grep(aK,function(aN){return aN&&aN.options.position==aH&&aN.reserveSpace});if(c.inArray(aD,aB)==aB.length-1){aG=0}if(aF==null){aF="full"}var aI=c.grep(aK,function(aN){return aN&&aN.reserveSpace});var aM=c.inArray(aD,aI)==0;if(!aM&&aF=="full"){aF=5}if(!isNaN(+aF)){aJ+=+aF}if(aD.direction=="x"){aL+=aJ;if(aH=="bottom"){q.bottom+=aL+aG;aD.box={top:I-q.bottom,height:aL}}else{aD.box={top:q.top+aG,height:aL};q.top+=aL+aG}}else{aC+=aJ;if(aH=="left"){aD.box={left:q.left+aG,width:aC};q.left+=aC+aG}else{q.right+=aC+aG;aD.box={left:G-q.right,width:aC}}}aD.position=aH;aD.tickLength=aF;aD.box.padding=aJ;aD.innermost=aM}function U(aB){if(aB.direction=="x"){aB.box.left=q.left;aB.box.width=h}else{aB.box.top=q.top;aB.box.height=w}}function t(){var aC,aE=m();c.each(aE,function(aF,aG){aG.show=aG.options.show;if(aG.show==null){aG.show=aG.used}aG.reserveSpace=aG.show||aG.options.reserveSpace;n(aG)});allocatedAxes=c.grep(aE,function(aF){return aF.reserveSpace});q.left=q.right=q.top=q.bottom=0;if(O.grid.show){c.each(allocatedAxes,function(aF,aG){S(aG);P(aG);ap(aG,aG.ticks);L(aG)});for(aC=allocatedAxes.length-1;aC>=0;--aC){au(allocatedAxes[aC])}var aD=O.grid.minBorderMargin;if(aD==null){aD=0;for(aC=0;aC<Q.length;++aC){aD=Math.max(aD,Q[aC].points.radius+Q[aC].points.lineWidth/2)}}for(var aB in q){q[aB]+=O.grid.borderWidth;q[aB]=Math.max(aD,q[aB])}}h=G-q.left-q.right;w=I-q.bottom-q.top;c.each(aE,function(aF,aG){r(aG)});if(O.grid.show){c.each(allocatedAxes,function(aF,aG){U(aG)});k()}o()}function n(aE){var aF=aE.options,aD=+(aF.min!=null?aF.min:aE.datamin),aB=+(aF.max!=null?aF.max:aE.datamax),aH=aB-aD;if(aH==0){var aC=aB==0?1:0.01;if(aF.min==null){aD-=aC}if(aF.max==null||aF.min!=null){aB+=aC}}else{var aG=aF.autoscaleMargin;if(aG!=null){if(aF.min==null){aD-=aH*aG;if(aD<0&&aE.datamin!=null&&aE.datamin>=0){aD=0}}if(aF.max==null){aB+=aH*aG;if(aB>0&&aE.datamax!=null&&aE.datamax<=0){aB=0}}}}aE.min=aD;aE.max=aB}function S(aG){var aM=aG.options;var aH;if(typeof aM.ticks=="number"&&aM.ticks>0){aH=aM.ticks}else{aH=0.3*Math.sqrt(aG.direction=="x"?G:I)}var aT=(aG.max-aG.min)/aH,aO,aB,aN,aR,aS,aQ,aI;if(aM.mode=="time"){var aJ={second:1000,minute:60*1000,hour:60*60*1000,day:24*60*60*1000,month:30*24*60*60*1000,year:365.2425*24*60*60*1000};var aK=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[0.25,"month"],[0.5,"month"],[1,"month"],[2,"month"],[3,"month"],[6,"month"],[1,"year"]];var aC=0;if(aM.minTickSize!=null){if(typeof aM.tickSize=="number"){aC=aM.tickSize}else{aC=aM.minTickSize[0]*aJ[aM.minTickSize[1]]}}for(var aS=0;aS<aK.length-1;++aS){if(aT<(aK[aS][0]*aJ[aK[aS][1]]+aK[aS+1][0]*aJ[aK[aS+1][1]])/2&&aK[aS][0]*aJ[aK[aS][1]]>=aC){break}}aO=aK[aS][0];aN=aK[aS][1];if(aN=="year"){aQ=Math.pow(10,Math.floor(Math.log(aT/aJ.year)/Math.LN10));aI=(aT/aJ.year)/aQ;if(aI<1.5){aO=1}else{if(aI<3){aO=2}else{if(aI<7.5){aO=5}else{aO=10}}}aO*=aQ}aG.tickSize=aM.tickSize||[aO,aN];aB=function(aX){var a2=[],a0=aX.tickSize[0],a3=aX.tickSize[1],a1=new Date(aX.min);var aW=a0*aJ[a3];if(a3=="second"){a1.setUTCSeconds(a(a1.getUTCSeconds(),a0))}if(a3=="minute"){a1.setUTCMinutes(a(a1.getUTCMinutes(),a0))}if(a3=="hour"){a1.setUTCHours(a(a1.getUTCHours(),a0))}if(a3=="month"){a1.setUTCMonth(a(a1.getUTCMonth(),a0))}if(a3=="year"){a1.setUTCFullYear(a(a1.getUTCFullYear(),a0))}a1.setUTCMilliseconds(0);if(aW>=aJ.minute){a1.setUTCSeconds(0)}if(aW>=aJ.hour){a1.setUTCMinutes(0)}if(aW>=aJ.day){a1.setUTCHours(0)}if(aW>=aJ.day*4){a1.setUTCDate(1)}if(aW>=aJ.year){a1.setUTCMonth(0)}var a5=0,a4=Number.NaN,aY;do{aY=a4;a4=a1.getTime();a2.push(a4);if(a3=="month"){if(a0<1){a1.setUTCDate(1);var aV=a1.getTime();a1.setUTCMonth(a1.getUTCMonth()+1);var aZ=a1.getTime();a1.setTime(a4+a5*aJ.hour+(aZ-aV)*a0);a5=a1.getUTCHours();a1.setUTCHours(0)}else{a1.setUTCMonth(a1.getUTCMonth()+a0)}}else{if(a3=="year"){a1.setUTCFullYear(a1.getUTCFullYear()+a0)}else{a1.setTime(a4+aW)}}}while(a4<aX.max&&a4!=aY);return a2};aR=function(aV,aY){var a0=new Date(aV);if(aM.timeformat!=null){return c.plot.formatDate(a0,aM.timeformat,aM.monthNames)}var aW=aY.tickSize[0]*aJ[aY.tickSize[1]];var aX=aY.max-aY.min;var aZ=(aM.twelveHourClock)?" %p":"";if(aW<aJ.minute){fmt="%h:%M:%S"+aZ}else{if(aW<aJ.day){if(aX<2*aJ.day){fmt="%h:%M"+aZ}else{fmt="%b %d %h:%M"+aZ}}else{if(aW<aJ.month){fmt="%b %d"}else{if(aW<aJ.year){if(aX<aJ.year){fmt="%b"}else{fmt="%b %y"}}else{fmt="%y"}}}}return c.plot.formatDate(a0,fmt,aM.monthNames)}}else{var aU=aM.tickDecimals;var aP=-Math.floor(Math.log(aT)/Math.LN10);if(aU!=null&&aP>aU){aP=aU}aQ=Math.pow(10,-aP);aI=aT/aQ;if(aI<1.5){aO=1}else{if(aI<3){aO=2;if(aI>2.25&&(aU==null||aP+1<=aU)){aO=2.5;++aP}}else{if(aI<7.5){aO=5}else{aO=10}}}aO*=aQ;if(aM.minTickSize!=null&&aO<aM.minTickSize){aO=aM.minTickSize}aG.tickDecimals=Math.max(0,aU!=null?aU:aP);aG.tickSize=aM.tickSize||aO;aB=function(aX){var aZ=[];var a0=a(aX.min,aX.tickSize),aW=0,aV=Number.NaN,aY;do{aY=aV;aV=a0+aW*aX.tickSize;aZ.push(aV);++aW}while(aV<aX.max&&aV!=aY);return aZ};aR=function(aV,aW){return aV.toFixed(aW.tickDecimals)}}if(aM.alignTicksWithAxis!=null){var aF=(aG.direction=="x"?p:aw)[aM.alignTicksWithAxis-1];if(aF&&aF.used&&aF!=aG){var aL=aB(aG);if(aL.length>0){if(aM.min==null){aG.min=Math.min(aG.min,aL[0])}if(aM.max==null&&aL.length>1){aG.max=Math.max(aG.max,aL[aL.length-1])}}aB=function(aX){var aY=[],aV,aW;for(aW=0;aW<aF.ticks.length;++aW){aV=(aF.ticks[aW].v-aF.min)/(aF.max-aF.min);aV=aX.min+aV*(aX.max-aX.min);aY.push(aV)}return aY};if(aG.mode!="time"&&aM.tickDecimals==null){var aE=Math.max(0,-Math.floor(Math.log(aT)/Math.LN10)+1),aD=aB(aG);if(!(aD.length>1&&/\..*0$/.test((aD[1]-aD[0]).toFixed(aE)))){aG.tickDecimals=aE}}}}aG.tickGenerator=aB;if(c.isFunction(aM.tickFormatter)){aG.tickFormatter=function(aV,aW){return""+aM.tickFormatter(aV,aW)}}else{aG.tickFormatter=aR}}function P(aF){var aH=aF.options.ticks,aG=[];if(aH==null||(typeof aH=="number"&&aH>0)){aG=aF.tickGenerator(aF)}else{if(aH){if(c.isFunction(aH)){aG=aH({min:aF.min,max:aF.max})}else{aG=aH}}}var aE,aB;aF.ticks=[];for(aE=0;aE<aG.length;++aE){var aC=null;var aD=aG[aE];if(typeof aD=="object"){aB=+aD[0];if(aD.length>1){aC=aD[1]}}else{aB=+aD}if(aC==null){aC=aF.tickFormatter(aB,aF)}if(!isNaN(aB)){aF.ticks.push({v:aB,label:aC})}}}function ap(aB,aC){if(aB.options.autoscaleMargin&&aC.length>0){if(aB.options.min==null){aB.min=Math.min(aB.min,aC[0].v)}if(aB.options.max==null&&aC.length>1){aB.max=Math.max(aB.max,aC[aC.length-1].v)}}}function W(){H.clearRect(0,0,G,I);var aC=O.grid;if(aC.show&&aC.backgroundColor){N()}if(aC.show&&!aC.aboveData){ac()}for(var aB=0;aB<Q.length;++aB){an(ak.drawSeries,[H,Q[aB]]);d(Q[aB])}an(ak.draw,[H]);if(aC.show&&aC.aboveData){ac()}}function D(aB,aI){var aE,aH,aG,aD,aF=m();for(i=0;i<aF.length;++i){aE=aF[i];if(aE.direction==aI){aD=aI+aE.n+"axis";if(!aB[aD]&&aE.n==1){aD=aI+"axis"}if(aB[aD]){aH=aB[aD].from;aG=aB[aD].to;break}}}if(!aB[aD]){aE=aI=="x"?p[0]:aw[0];aH=aB[aI+"1"];aG=aB[aI+"2"]}if(aH!=null&&aG!=null&&aH>aG){var aC=aH;aH=aG;aG=aC}return{from:aH,to:aG,axis:aE}}function N(){H.save();H.translate(q.left,q.top);H.fillStyle=am(O.grid.backgroundColor,w,0,"rgba(255, 255, 255, 0)");H.fillRect(0,0,h,w);H.restore()}function ac(){var aF;H.save();H.translate(q.left,q.top);var aH=O.grid.markings;if(aH){if(c.isFunction(aH)){var aK=aq.getAxes();aK.xmin=aK.xaxis.min;aK.xmax=aK.xaxis.max;aK.ymin=aK.yaxis.min;aK.ymax=aK.yaxis.max;aH=aH(aK)}for(aF=0;aF<aH.length;++aF){var aD=aH[aF],aC=D(aD,"x"),aI=D(aD,"y");if(aC.from==null){aC.from=aC.axis.min}if(aC.to==null){aC.to=aC.axis.max}if(aI.from==null){aI.from=aI.axis.min}if(aI.to==null){aI.to=aI.axis.max}if(aC.to<aC.axis.min||aC.from>aC.axis.max||aI.to<aI.axis.min||aI.from>aI.axis.max){continue}aC.from=Math.max(aC.from,aC.axis.min);aC.to=Math.min(aC.to,aC.axis.max);aI.from=Math.max(aI.from,aI.axis.min);aI.to=Math.min(aI.to,aI.axis.max);if(aC.from==aC.to&&aI.from==aI.to){continue}aC.from=aC.axis.p2c(aC.from);aC.to=aC.axis.p2c(aC.to);aI.from=aI.axis.p2c(aI.from);aI.to=aI.axis.p2c(aI.to);if(aC.from==aC.to||aI.from==aI.to){H.beginPath();H.strokeStyle=aD.color||O.grid.markingsColor;H.lineWidth=aD.lineWidth||O.grid.markingsLineWidth;H.moveTo(aC.from,aI.from);H.lineTo(aC.to,aI.to);H.stroke()}else{H.fillStyle=aD.color||O.grid.markingsColor;H.fillRect(aC.from,aI.to,aC.to-aC.from,aI.from-aI.to)}}}var aK=m(),aM=O.grid.borderWidth;for(var aE=0;aE<aK.length;++aE){var aB=aK[aE],aG=aB.box,aQ=aB.tickLength,aN,aL,aP,aJ;if(!aB.show||aB.ticks.length==0){continue}H.strokeStyle=aB.options.tickColor||c.color.parse(aB.options.color).scale("a",0.22).toString();H.lineWidth=1;if(aB.direction=="x"){aN=0;if(aQ=="full"){aL=(aB.position=="top"?0:w)}else{aL=aG.top-q.top+(aB.position=="top"?aG.height:0)}}else{aL=0;if(aQ=="full"){aN=(aB.position=="left"?0:h)}else{aN=aG.left-q.left+(aB.position=="left"?aG.width:0)}}if(!aB.innermost){H.beginPath();aP=aJ=0;if(aB.direction=="x"){aP=h}else{aJ=w}if(H.lineWidth==1){aN=Math.floor(aN)+0.5;aL=Math.floor(aL)+0.5}H.moveTo(aN,aL);H.lineTo(aN+aP,aL+aJ);H.stroke()}H.beginPath();for(aF=0;aF<aB.ticks.length;++aF){var aO=aB.ticks[aF].v;aP=aJ=0;if(aO<aB.min||aO>aB.max||(aQ=="full"&&aM>0&&(aO==aB.min||aO==aB.max))){continue}if(aB.direction=="x"){aN=aB.p2c(aO);aJ=aQ=="full"?-w:aQ;if(aB.position=="top"){aJ=-aJ}}else{aL=aB.p2c(aO);aP=aQ=="full"?-h:aQ;if(aB.position=="left"){aP=-aP}}if(H.lineWidth==1){if(aB.direction=="x"){aN=Math.floor(aN)+0.5}else{aL=Math.floor(aL)+0.5}}H.moveTo(aN,aL);H.lineTo(aN+aP,aL+aJ)}H.stroke()}if(aM){H.lineWidth=aM;H.strokeStyle=O.grid.borderColor;H.strokeRect(-aM/2,-aM/2,h+aM,w+aM)}H.restore()}function k(){av.find(".tickLabels").remove();var aG=['<div class="tickLabels" style="font-size:smaller">'];var aJ=m();for(var aD=0;aD<aJ.length;++aD){var aC=aJ[aD],aF=aC.box;if(!aC.show){continue}aG.push('<div class="'+aC.direction+"Axis "+aC.direction+aC.n+'Axis" style="color:'+aC.options.color+'">');for(var aE=0;aE<aC.ticks.length;++aE){var aH=aC.ticks[aE];if(!aH.label||aH.v<aC.min||aH.v>aC.max){continue}var aK={},aI;if(aC.direction=="x"){aI="center";aK.left=Math.round(q.left+aC.p2c(aH.v)-aC.labelWidth/2);if(aC.position=="bottom"){aK.top=aF.top+aF.padding}else{aK.bottom=I-(aF.top+aF.height-aF.padding)}}else{aK.top=Math.round(q.top+aC.p2c(aH.v)-aC.labelHeight/2);if(aC.position=="left"){aK.right=G-(aF.left+aF.width-aF.padding);aI="right"}else{aK.left=aF.left+aF.padding;aI="left"}}aK.width=aC.labelWidth;var aB=["position:absolute","text-align:"+aI];for(var aL in aK){aB.push(aL+":"+aK[aL]+"px")}aG.push('<div class="tickLabel" style="'+aB.join(";")+'">'+aH.label+"</div>")}aG.push("</div>")}aG.push("</div>");av.append(aG.join(""))}function d(aB){if(aB.lines.show){at(aB)}if(aB.bars.show){e(aB)}if(aB.points.show){ao(aB)}}function at(aE){function aD(aP,aQ,aI,aU,aT){var aV=aP.points,aJ=aP.pointsize,aN=null,aM=null;H.beginPath();for(var aO=aJ;aO<aV.length;aO+=aJ){var aL=aV[aO-aJ],aS=aV[aO-aJ+1],aK=aV[aO],aR=aV[aO+1];if(aL==null||aK==null){continue}if(aS<=aR&&aS<aT.min){if(aR<aT.min){continue}aL=(aT.min-aS)/(aR-aS)*(aK-aL)+aL;aS=aT.min}else{if(aR<=aS&&aR<aT.min){if(aS<aT.min){continue}aK=(aT.min-aS)/(aR-aS)*(aK-aL)+aL;aR=aT.min}}if(aS>=aR&&aS>aT.max){if(aR>aT.max){continue}aL=(aT.max-aS)/(aR-aS)*(aK-aL)+aL;aS=aT.max}else{if(aR>=aS&&aR>aT.max){if(aS>aT.max){continue}aK=(aT.max-aS)/(aR-aS)*(aK-aL)+aL;aR=aT.max}}if(aL<=aK&&aL<aU.min){if(aK<aU.min){continue}aS=(aU.min-aL)/(aK-aL)*(aR-aS)+aS;aL=aU.min}else{if(aK<=aL&&aK<aU.min){if(aL<aU.min){continue}aR=(aU.min-aL)/(aK-aL)*(aR-aS)+aS;aK=aU.min}}if(aL>=aK&&aL>aU.max){if(aK>aU.max){continue}aS=(aU.max-aL)/(aK-aL)*(aR-aS)+aS;aL=aU.max}else{if(aK>=aL&&aK>aU.max){if(aL>aU.max){continue}aR=(aU.max-aL)/(aK-aL)*(aR-aS)+aS;aK=aU.max}}if(aL!=aN||aS!=aM){H.moveTo(aU.p2c(aL)+aQ,aT.p2c(aS)+aI)}aN=aK;aM=aR;H.lineTo(aU.p2c(aK)+aQ,aT.p2c(aR)+aI)}H.stroke()}function aF(aI,aQ,aP){var aW=aI.points,aV=aI.pointsize,aN=Math.min(Math.max(0,aP.min),aP.max),aX=0,aU,aT=false,aM=1,aL=0,aR=0;while(true){if(aV>0&&aX>aW.length+aV){break}aX+=aV;var aZ=aW[aX-aV],aK=aW[aX-aV+aM],aY=aW[aX],aJ=aW[aX+aM];if(aT){if(aV>0&&aZ!=null&&aY==null){aR=aX;aV=-aV;aM=2;continue}if(aV<0&&aX==aL+aV){H.fill();aT=false;aV=-aV;aM=1;aX=aL=aR+aV;continue}}if(aZ==null||aY==null){continue}if(aZ<=aY&&aZ<aQ.min){if(aY<aQ.min){continue}aK=(aQ.min-aZ)/(aY-aZ)*(aJ-aK)+aK;aZ=aQ.min}else{if(aY<=aZ&&aY<aQ.min){if(aZ<aQ.min){continue}aJ=(aQ.min-aZ)/(aY-aZ)*(aJ-aK)+aK;aY=aQ.min}}if(aZ>=aY&&aZ>aQ.max){if(aY>aQ.max){continue}aK=(aQ.max-aZ)/(aY-aZ)*(aJ-aK)+aK;aZ=aQ.max}else{if(aY>=aZ&&aY>aQ.max){if(aZ>aQ.max){continue}aJ=(aQ.max-aZ)/(aY-aZ)*(aJ-aK)+aK;aY=aQ.max}}if(!aT){H.beginPath();H.moveTo(aQ.p2c(aZ),aP.p2c(aN));aT=true}if(aK>=aP.max&&aJ>=aP.max){H.lineTo(aQ.p2c(aZ),aP.p2c(aP.max));H.lineTo(aQ.p2c(aY),aP.p2c(aP.max));continue}else{if(aK<=aP.min&&aJ<=aP.min){H.lineTo(aQ.p2c(aZ),aP.p2c(aP.min));H.lineTo(aQ.p2c(aY),aP.p2c(aP.min));continue}}var aO=aZ,aS=aY;if(aK<=aJ&&aK<aP.min&&aJ>=aP.min){aZ=(aP.min-aK)/(aJ-aK)*(aY-aZ)+aZ;aK=aP.min}else{if(aJ<=aK&&aJ<aP.min&&aK>=aP.min){aY=(aP.min-aK)/(aJ-aK)*(aY-aZ)+aZ;aJ=aP.min}}if(aK>=aJ&&aK>aP.max&&aJ<=aP.max){aZ=(aP.max-aK)/(aJ-aK)*(aY-aZ)+aZ;aK=aP.max}else{if(aJ>=aK&&aJ>aP.max&&aK<=aP.max){aY=(aP.max-aK)/(aJ-aK)*(aY-aZ)+aZ;aJ=aP.max}}if(aZ!=aO){H.lineTo(aQ.p2c(aO),aP.p2c(aK))}H.lineTo(aQ.p2c(aZ),aP.p2c(aK));H.lineTo(aQ.p2c(aY),aP.p2c(aJ));if(aY!=aS){H.lineTo(aQ.p2c(aY),aP.p2c(aJ));H.lineTo(aQ.p2c(aS),aP.p2c(aJ))}}}H.save();H.translate(q.left,q.top);H.lineJoin="round";var aG=aE.lines.lineWidth,aB=aE.shadowSize;if(aG>0&&aB>0){H.lineWidth=aB;H.strokeStyle="rgba(0,0,0,0.1)";var aH=Math.PI/18;aD(aE.datapoints,Math.sin(aH)*(aG/2+aB/2),Math.cos(aH)*(aG/2+aB/2),aE.xaxis,aE.yaxis);H.lineWidth=aB/2;aD(aE.datapoints,Math.sin(aH)*(aG/2+aB/4),Math.cos(aH)*(aG/2+aB/4),aE.xaxis,aE.yaxis)}H.lineWidth=aG;H.strokeStyle=aE.color;var aC=ae(aE.lines,aE.color,0,w);if(aC){H.fillStyle=aC;aF(aE.datapoints,aE.xaxis,aE.yaxis)}if(aG>0){aD(aE.datapoints,0,0,aE.xaxis,aE.yaxis)}H.restore()}function ao(aE){function aH(aN,aM,aU,aK,aS,aT,aQ,aJ){var aR=aN.points,aI=aN.pointsize;for(var aL=0;aL<aR.length;aL+=aI){var aP=aR[aL],aO=aR[aL+1];if(aP==null||aP<aT.min||aP>aT.max||aO<aQ.min||aO>aQ.max){continue}H.beginPath();aP=aT.p2c(aP);aO=aQ.p2c(aO)+aK;if(aJ=="circle"){H.arc(aP,aO,aM,0,aS?Math.PI:Math.PI*2,false)}else{aJ(H,aP,aO,aM,aS)}H.closePath();if(aU){H.fillStyle=aU;H.fill()}H.stroke()}}H.save();H.translate(q.left,q.top);var aG=aE.points.lineWidth,aC=aE.shadowSize,aB=aE.points.radius,aF=aE.points.symbol;if(aG>0&&aC>0){var aD=aC/2;H.lineWidth=aD;H.strokeStyle="rgba(0,0,0,0.1)";aH(aE.datapoints,aB,null,aD+aD/2,true,aE.xaxis,aE.yaxis,aF);H.strokeStyle="rgba(0,0,0,0.2)";aH(aE.datapoints,aB,null,aD/2,true,aE.xaxis,aE.yaxis,aF)}H.lineWidth=aG;H.strokeStyle=aE.color;aH(aE.datapoints,aB,ae(aE.points,aE.color),0,false,aE.xaxis,aE.yaxis,aF);H.restore()}function E(aN,aM,aV,aI,aQ,aF,aD,aL,aK,aU,aR,aC){var aE,aT,aJ,aP,aG,aB,aO,aH,aS;if(aR){aH=aB=aO=true;aG=false;aE=aV;aT=aN;aP=aM+aI;aJ=aM+aQ;if(aT<aE){aS=aT;aT=aE;aE=aS;aG=true;aB=false}}else{aG=aB=aO=true;aH=false;aE=aN+aI;aT=aN+aQ;aJ=aV;aP=aM;if(aP<aJ){aS=aP;aP=aJ;aJ=aS;aH=true;aO=false}}if(aT<aL.min||aE>aL.max||aP<aK.min||aJ>aK.max){return}if(aE<aL.min){aE=aL.min;aG=false}if(aT>aL.max){aT=aL.max;aB=false}if(aJ<aK.min){aJ=aK.min;aH=false}if(aP>aK.max){aP=aK.max;aO=false}aE=aL.p2c(aE);aJ=aK.p2c(aJ);aT=aL.p2c(aT);aP=aK.p2c(aP);if(aD){aU.beginPath();aU.moveTo(aE,aJ);aU.lineTo(aE,aP);aU.lineTo(aT,aP);aU.lineTo(aT,aJ);aU.fillStyle=aD(aJ,aP);aU.fill()}if(aC>0&&(aG||aB||aO||aH)){aU.beginPath();aU.moveTo(aE,aJ+aF);if(aG){aU.lineTo(aE,aP+aF)}else{aU.moveTo(aE,aP+aF)}if(aO){aU.lineTo(aT,aP+aF)}else{aU.moveTo(aT,aP+aF)}if(aB){aU.lineTo(aT,aJ+aF)}else{aU.moveTo(aT,aJ+aF)}if(aH){aU.lineTo(aE,aJ+aF)}else{aU.moveTo(aE,aJ+aF)}aU.stroke()}}function e(aD){function aC(aJ,aI,aL,aG,aK,aN,aM){var aO=aJ.points,aF=aJ.pointsize;for(var aH=0;aH<aO.length;aH+=aF){if(aO[aH]==null){continue}E(aO[aH],aO[aH+1],aO[aH+2],aI,aL,aG,aK,aN,aM,H,aD.bars.horizontal,aD.bars.lineWidth)}}H.save();H.translate(q.left,q.top);H.lineWidth=aD.bars.lineWidth;H.strokeStyle=aD.color;var aB=aD.bars.align=="left"?0:-aD.bars.barWidth/2;var aE=aD.bars.fill?function(aF,aG){return ae(aD.bars,aD.color,aF,aG)}:null;aC(aD.datapoints,aB,aB+aD.bars.barWidth,0,aE,aD.xaxis,aD.yaxis);H.restore()}function ae(aD,aB,aC,aF){var aE=aD.fill;if(!aE){return null}if(aD.fillColor){return am(aD.fillColor,aC,aF,aB)}var aG=c.color.parse(aB);aG.a=typeof aE=="number"?aE:0.4;aG.normalize();return aG.toString()}function o(){av.find(".legend").remove();if(!O.legend.show){return}var aH=[],aF=false,aN=O.legend.labelFormatter,aM,aJ;for(var aE=0;aE<Q.length;++aE){aM=Q[aE];aJ=aM.label;if(!aJ){continue}if(aE%O.legend.noColumns==0){if(aF){aH.push("</tr>")}aH.push("<tr>");aF=true}if(aN){aJ=aN(aJ,aM)}aH.push('<td class="legendColorBox"><div style="border:1px solid '+O.legend.labelBoxBorderColor+';padding:1px"><div style="width:4px;height:0;border:5px solid '+aM.color+';overflow:hidden"></div></div></td><td class="legendLabel">'+aJ+"</td>")}if(aF){aH.push("</tr>")}if(aH.length==0){return}var aL='<table style="font-size:smaller;color:'+O.grid.color+'">'+aH.join("")+"</table>";if(O.legend.container!=null){c(O.legend.container).html(aL)}else{var aI="",aC=O.legend.position,aD=O.legend.margin;if(aD[0]==null){aD=[aD,aD]}if(aC.charAt(0)=="n"){aI+="top:"+(aD[1]+q.top)+"px;"}else{if(aC.charAt(0)=="s"){aI+="bottom:"+(aD[1]+q.bottom)+"px;"}}if(aC.charAt(1)=="e"){aI+="right:"+(aD[0]+q.right)+"px;"}else{if(aC.charAt(1)=="w"){aI+="left:"+(aD[0]+q.left)+"px;"}}var aK=c('<div class="legend">'+aL.replace('style="','style="position:absolute;'+aI+";")+"</div>").appendTo(av);if(O.legend.backgroundOpacity!=0){var aG=O.legend.backgroundColor;if(aG==null){aG=O.grid.backgroundColor;if(aG&&typeof aG=="string"){aG=c.color.parse(aG)}else{aG=c.color.extract(aK,"background-color")}aG.a=1;aG=aG.toString()}var aB=aK.children();c('<div style="position:absolute;width:'+aB.width()+"px;height:"+aB.height()+"px;"+aI+"background-color:"+aG+';"> </div>').prependTo(aK).css("opacity",O.legend.backgroundOpacity)}}}var ab=[],M=null;function K(aI,aG,aD){var aO=O.grid.mouseActiveRadius,a0=aO*aO+1,aY=null,aR=false,aW,aU;for(aW=Q.length-1;aW>=0;--aW){if(!aD(Q[aW])){continue}var aP=Q[aW],aH=aP.xaxis,aF=aP.yaxis,aV=aP.datapoints.points,aT=aP.datapoints.pointsize,aQ=aH.c2p(aI),aN=aF.c2p(aG),aC=aO/aH.scale,aB=aO/aF.scale;if(aH.options.inverseTransform){aC=Number.MAX_VALUE}if(aF.options.inverseTransform){aB=Number.MAX_VALUE}if(aP.lines.show||aP.points.show){for(aU=0;aU<aV.length;aU+=aT){var aK=aV[aU],aJ=aV[aU+1];if(aK==null){continue}if(aK-aQ>aC||aK-aQ<-aC||aJ-aN>aB||aJ-aN<-aB){continue}var aM=Math.abs(aH.p2c(aK)-aI),aL=Math.abs(aF.p2c(aJ)-aG),aS=aM*aM+aL*aL;if(aS<a0){a0=aS;aY=[aW,aU/aT]}}}if(aP.bars.show&&!aY){var aE=aP.bars.align=="left"?0:-aP.bars.barWidth/2,aX=aE+aP.bars.barWidth;for(aU=0;aU<aV.length;aU+=aT){var aK=aV[aU],aJ=aV[aU+1],aZ=aV[aU+2];if(aK==null){continue}if(Q[aW].bars.horizontal?(aQ<=Math.max(aZ,aK)&&aQ>=Math.min(aZ,aK)&&aN>=aJ+aE&&aN<=aJ+aX):(aQ>=aK+aE&&aQ<=aK+aX&&aN>=Math.min(aZ,aJ)&&aN<=Math.max(aZ,aJ))){aY=[aW,aU/aT]}}}}if(aY){aW=aY[0];aU=aY[1];aT=Q[aW].datapoints.pointsize;return{datapoint:Q[aW].datapoints.points.slice(aU*aT,(aU+1)*aT),dataIndex:aU,series:Q[aW],seriesIndex:aW}}return null}function aa(aB){if(O.grid.hoverable){u("plothover",aB,function(aC){return aC.hoverable!=false})}}function l(aB){if(O.grid.hoverable){u("plothover",aB,function(aC){return false})}}function R(aB){u("plotclick",aB,function(aC){return aC.clickable!=false})}function u(aC,aB,aD){var aE=y.offset(),aH=aB.pageX-aE.left-q.left,aF=aB.pageY-aE.top-q.top,aJ=C({left:aH,top:aF});aJ.pageX=aB.pageX;aJ.pageY=aB.pageY;var aK=K(aH,aF,aD);if(aK){aK.pageX=parseInt(aK.series.xaxis.p2c(aK.datapoint[0])+aE.left+q.left);aK.pageY=parseInt(aK.series.yaxis.p2c(aK.datapoint[1])+aE.top+q.top)}if(O.grid.autoHighlight){for(var aG=0;aG<ab.length;++aG){var aI=ab[aG];if(aI.auto==aC&&!(aK&&aI.series==aK.series&&aI.point[0]==aK.datapoint[0]&&aI.point[1]==aK.datapoint[1])){T(aI.series,aI.point)}}if(aK){x(aK.series,aK.datapoint,aC)}}av.trigger(aC,[aJ,aK])}function f(){if(!M){M=setTimeout(s,30)}}function s(){M=null;A.save();A.clearRect(0,0,G,I);A.translate(q.left,q.top);var aC,aB;for(aC=0;aC<ab.length;++aC){aB=ab[aC];if(aB.series.bars.show){v(aB.series,aB.point)}else{ay(aB.series,aB.point)}}A.restore();an(ak.drawOverlay,[A])}function x(aD,aB,aF){if(typeof aD=="number"){aD=Q[aD]}if(typeof aB=="number"){var aE=aD.datapoints.pointsize;aB=aD.datapoints.points.slice(aE*aB,aE*(aB+1))}var aC=al(aD,aB);if(aC==-1){ab.push({series:aD,point:aB,auto:aF});f()}else{if(!aF){ab[aC].auto=false}}}function T(aD,aB){if(aD==null&&aB==null){ab=[];f()}if(typeof aD=="number"){aD=Q[aD]}if(typeof aB=="number"){aB=aD.data[aB]}var aC=al(aD,aB);if(aC!=-1){ab.splice(aC,1);f()}}function al(aD,aE){for(var aB=0;aB<ab.length;++aB){var aC=ab[aB];if(aC.series==aD&&aC.point[0]==aE[0]&&aC.point[1]==aE[1]){return aB}}return -1}function ay(aE,aD){var aC=aD[0],aI=aD[1],aH=aE.xaxis,aG=aE.yaxis;if(aC<aH.min||aC>aH.max||aI<aG.min||aI>aG.max){return}var aF=aE.points.radius+aE.points.lineWidth/2;A.lineWidth=aF;A.strokeStyle=c.color.parse(aE.color).scale("a",0.5).toString();var aB=1.5*aF,aC=aH.p2c(aC),aI=aG.p2c(aI);A.beginPath();if(aE.points.symbol=="circle"){A.arc(aC,aI,aB,0,2*Math.PI,false)}else{aE.points.symbol(A,aC,aI,aB,false)}A.closePath();A.stroke()}function v(aE,aB){A.lineWidth=aE.bars.lineWidth;A.strokeStyle=c.color.parse(aE.color).scale("a",0.5).toString();var aD=c.color.parse(aE.color).scale("a",0.5).toString();var aC=aE.bars.align=="left"?0:-aE.bars.barWidth/2;E(aB[0],aB[1],aB[2]||0,aC,aC+aE.bars.barWidth,0,function(){return aD},aE.xaxis,aE.yaxis,A,aE.bars.horizontal,aE.bars.lineWidth)}function am(aJ,aB,aH,aC){if(typeof aJ=="string"){return aJ}else{var aI=H.createLinearGradient(0,aH,0,aB);for(var aE=0,aD=aJ.colors.length;aE<aD;++aE){var aF=aJ.colors[aE];if(typeof aF!="string"){var aG=c.color.parse(aC);if(aF.brightness!=null){aG=aG.scale("rgb",aF.brightness)}if(aF.opacity!=null){aG.a*=aF.opacity}aF=aG.toString()}aI.addColorStop(aE/(aD-1),aF)}return aI}}}c.plot=function(g,e,d){var f=new b(c(g),e,d,c.plot.plugins);return f};c.plot.version="0.7";c.plot.plugins=[];c.plot.formatDate=function(l,f,h){var o=function(d){d=""+d;return d.length==1?"0"+d:d};var e=[];var p=false,j=false;var n=l.getUTCHours();var k=n<12;if(h==null){h=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(f.search(/%p|%P/)!=-1){if(n>12){n=n-12}else{if(n==0){n=12}}}for(var g=0;g<f.length;++g){var m=f.charAt(g);if(p){switch(m){case"h":m=""+n;break;case"H":m=o(n);break;case"M":m=o(l.getUTCMinutes());break;case"S":m=o(l.getUTCSeconds());break;case"d":m=""+l.getUTCDate();break;case"m":m=""+(l.getUTCMonth()+1);break;case"y":m=""+l.getUTCFullYear();break;case"b":m=""+h[l.getUTCMonth()];break;case"p":m=(k)?("am"):("pm");break;case"P":m=(k)?("AM"):("PM");break;case"0":m="";j=true;break}if(m&&j){m=o(m);j=false}e.push(m);if(!j){p=false}}else{if(m=="%"){p=true}else{e.push(m)}}}return e.join("")};function a(e,d){return d*Math.floor(e/d)}})(jQuery);
locale/cpd-az_AZ.mo ADDED
Binary file
locale/cpd-az_AZ.po ADDED
@@ -0,0 +1,972 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Madat <translator.baku@gmail.com>\n"
8
+ "Language-Team: Webmestre <translator.baku@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Azerbaijani\n"
14
+ "X-Poedit-Country: AZERBAIJAN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:49
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Opsiyalar yaddaşda saxlanılıb"
26
+
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Database cleaned. %s rows deleted."
31
+ msgstr "Məlumat bazası silinib. %s sətir silinib."
32
+
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
38
+
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ #@ cpd
44
+ msgid "Table %s deleted"
45
+ msgstr "Cədvəl %s silinib"
46
+
47
+ #: counter-options.php:135
48
+ #@ cpd
49
+ msgid "Options deleted"
50
+ msgstr "Opsiyalar silinib"
51
+
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ #@ cpd
55
+ msgid "Uninstall"
56
+ msgstr "Deinstalyasiya"
57
+
58
+ #: counter-options.php:317
59
+ #@ cpd
60
+ msgid "Click here"
61
+ msgstr "Bura basın"
62
+
63
+ #: counter-options.php:317
64
+ #@ cpd
65
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
+ msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
67
+
68
+ #: counter-options.php:355
69
+ #@ cpd
70
+ msgid "Online time"
71
+ msgstr "Onlayn vaxt"
72
+
73
+ #: counter-options.php:356
74
+ #@ cpd
75
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
+ msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
77
+
78
+ #: counter-options.php:359
79
+ #@ cpd
80
+ msgid "Logged on Users"
81
+ msgstr "Daxil olmuş istifadəçilər"
82
+
83
+ #: counter-options.php:361
84
+ #@ cpd
85
+ msgid "count too"
86
+ msgstr "onu da saymaq"
87
+
88
+ #: counter-options.php:373
89
+ #@ cpd
90
+ msgid "Auto counter"
91
+ msgstr "Avtomatik sayğac"
92
+
93
+ #: counter-options.php:374
94
+ #@ cpd
95
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
96
+ msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
97
+
98
+ #: counter-options.php:377
99
+ #@ cpd
100
+ msgid "Bots to ignore"
101
+ msgstr "Botları əhəmiyyət verməmək"
102
+
103
+ #: counter-options.php:561
104
+ #@ cpd
105
+ msgid "Update options"
106
+ msgstr "Opsiyaları yeniləşdirmək"
107
+
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ #@ cpd
111
+ msgid "Clean the database"
112
+ msgstr "Məlumat bazasının silmək"
113
+
114
+ #: counter-options.php:659
115
+ #@ cpd
116
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
+ msgstr "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz və botun baş çəkməsini silə bilərsiniz."
118
+
119
+ #: counter-options.php:799
120
+ #@ cpd
121
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
+ msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
123
+
124
+ #: counter-options.php:800
125
+ #@ cpd
126
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
127
+ msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
128
+
129
+ #: counter-options.php:803
130
+ #@ cpd
131
+ msgid "WARNING"
132
+ msgstr "DİQQƏT"
133
+
134
+ #: counter-options.php:804
135
+ #@ cpd
136
+ msgid "These tables (with ALL counter data) will be deleted."
137
+ msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
138
+
139
+ #: counter-options.php:806
140
+ #@ cpd
141
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
+ msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
143
+
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ #@ cpd
147
+ msgid "Yes"
148
+ msgstr "Bəli"
149
+
150
+ #: counter-options.php:810
151
+ #@ cpd
152
+ msgid "You are sure to disable Count per Day and delete all data?"
153
+ msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
154
+
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ #@ cpd
158
+ msgid "Statistics"
159
+ msgstr "Statistika"
160
+
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ #@ cpd
166
+ msgid "Total visitors"
167
+ msgstr "Ümümi qonaqların sayı"
168
+
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ #@ cpd
172
+ msgid "Visitors currently online"
173
+ msgstr "İndi qonaqların sayı saytda "
174
+
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ #@ cpd
178
+ msgid "Visitors today"
179
+ msgstr "Qonaqlar sayı bu gün"
180
+
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ #@ cpd
184
+ msgid "Visitors yesterday"
185
+ msgstr "Qonaqların sayı dünən"
186
+
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ #@ cpd
190
+ msgid "Visitors last week"
191
+ msgstr "Qonaqların sayı keçən həftə"
192
+
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ #@ cpd
197
+ msgid "Counter starts on"
198
+ msgstr "Sayğac başlanır -dan"
199
+
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ #@ cpd
207
+ msgid "Visitors per day"
208
+ msgstr "Gonaqlarn sayı gündə"
209
+
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ #@ cpd
213
+ msgid "Visitors per month"
214
+ msgstr "Qonaqların sayı ayda"
215
+
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ #@ cpd
219
+ msgid "Visitors per post"
220
+ msgstr "Qonaqların sayı yazışa görə"
221
+
222
+ #: counter-options.php:122
223
+ #@ cpd
224
+ msgid "Counter reseted."
225
+ msgstr "Sayğac yenidən başlayıb"
226
+
227
+ #: counter-options.php:403
228
+ #@ default
229
+ msgid "Dashboard"
230
+ msgstr "Konsol"
231
+
232
+ #: counter-options.php:439
233
+ #: counter-options.php:443
234
+ #@ cpd
235
+ msgid "How many posts do you want to see on dashboard page?"
236
+ msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
237
+
238
+ #: counter-options.php:442
239
+ #@ cpd
240
+ msgid "Latest Counts - Posts"
241
+ msgstr "Son sayğaclar - Yazılar"
242
+
243
+ #: counter-options.php:446
244
+ #@ cpd
245
+ msgid "Latest Counts - Days"
246
+ msgstr "Son sayğaclar - Günlər"
247
+
248
+ #: counter-options.php:447
249
+ #: counter-options.php:451
250
+ #: counter-options.php:473
251
+ #@ cpd
252
+ msgid "How many days do you want look back?"
253
+ msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
254
+
255
+ #: counter-options.php:450
256
+ #@ cpd
257
+ msgid "Chart - Days"
258
+ msgstr "Cədvəl - Günlər"
259
+
260
+ #: counter-options.php:454
261
+ #@ cpd
262
+ msgid "Chart - Height"
263
+ msgstr "Cədvəl - Hündürlük"
264
+
265
+ #: counter-options.php:455
266
+ #@ cpd
267
+ msgid "Height of the biggest bar"
268
+ msgstr "Ən böyük olan sütunun hündürlüyü"
269
+
270
+ #: counter-options.php:488
271
+ #@ cpd
272
+ msgid "Show in lists"
273
+ msgstr "Siyahıda göstərmək"
274
+
275
+ #: counter-options.php:489
276
+ #@ cpd
277
+ msgid "Show \"Reads per Post\" in a new column in post management views."
278
+ msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
279
+
280
+ #: counter-options.php:777
281
+ #: counter-options.php:787
282
+ #@ cpd
283
+ msgid "Reset the counter"
284
+ msgstr "Sayğacı yenidən 0 qoymaq"
285
+
286
+ #: counter-options.php:780
287
+ #@ cpd
288
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
289
+ msgstr "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
290
+
291
+ #: counter.php:672
292
+ #, php-format
293
+ #@ cpd
294
+ msgid "The %s most visited posts in last %s days:"
295
+ msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
296
+
297
+ #: counter-core.php:575
298
+ #: counter-options.php:341
299
+ #: counter-options.php:565
300
+ #@ default
301
+ msgid "Settings"
302
+ msgstr "Kökləmələr"
303
+
304
+ #: counter.php:262
305
+ #@ cpd
306
+ msgid "Reads per day"
307
+ msgstr "Gün ərzində oxunuş"
308
+
309
+ #: counter-core.php:639
310
+ #: counter-options.php:392
311
+ #: counter.php:159
312
+ #: counter.php:875
313
+ #@ cpd
314
+ msgid "Reads"
315
+ msgstr "Oxumalar"
316
+
317
+ #: counter.php:1196
318
+ #@ cpd
319
+ msgid "This post"
320
+ msgstr "Bu yazı"
321
+
322
+ #: counter-options.php:60
323
+ #, php-format
324
+ #@ cpd
325
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
+ msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
327
+
328
+ #: counter-options.php:65
329
+ #@ cpd
330
+ msgid "update next"
331
+ msgstr "sonraki yeniləşdirmək"
332
+
333
+ #: counter-options.php:102
334
+ #, php-format
335
+ #@ cpd
336
+ msgid "Mass Bots cleaned. %s counts deleted."
337
+ msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
338
+
339
+ #: counter-options.php:362
340
+ #@ cpd
341
+ msgid "until User Level"
342
+ msgstr "istifadəçi səviyyəsinə qədər"
343
+
344
+ #: counter-options.php:381
345
+ #@ cpd
346
+ msgid "Anonymous IP"
347
+ msgstr "Anonim IP"
348
+
349
+ #: counter-options.php:459
350
+ #@ cpd
351
+ msgid "Countries"
352
+ msgstr "Ölkələr"
353
+
354
+ #: counter-options.php:460
355
+ #@ cpd
356
+ msgid "How many countries do you want to see on dashboard page?"
357
+ msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
358
+
359
+ #: counter-options.php:497
360
+ #@ cpd
361
+ msgid "Start Values"
362
+ msgstr "Başlanğıc məlumatlar"
363
+
364
+ #: counter-options.php:501
365
+ #@ cpd
366
+ msgid "Here you can change the date of first count and add a start count."
367
+ msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
368
+
369
+ #: counter-options.php:505
370
+ #@ cpd
371
+ msgid "Start date"
372
+ msgstr "Başlanğıc tarix"
373
+
374
+ #: counter-options.php:506
375
+ #@ cpd
376
+ msgid "Your old Counter starts at?"
377
+ msgstr "Sizin köhnə Sayğacınız başlanır?"
378
+
379
+ #: counter-options.php:509
380
+ #: counter-options.php:513
381
+ #@ cpd
382
+ msgid "Start count"
383
+ msgstr "Sayın başlanğıcı"
384
+
385
+ #: counter-options.php:510
386
+ #@ cpd
387
+ msgid "Add this value to \"Total visitors\"."
388
+ msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
389
+
390
+ #: counter-options.php:727
391
+ #@ cpd
392
+ msgid "GeoIP - Countries"
393
+ msgstr "GeoIP - Ölkələr"
394
+
395
+ #: counter-options.php:736
396
+ #@ cpd
397
+ msgid "Update old counter data"
398
+ msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
399
+
400
+ #: counter-options.php:748
401
+ #@ cpd
402
+ msgid "Update GeoIP database"
403
+ msgstr "GeoIP məlumat bazasını yeniləşdirmək"
404
+
405
+ #: counter-options.php:743
406
+ #@ cpd
407
+ msgid "Download a new version of GeoIP.dat file."
408
+ msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
409
+
410
+ #: counter-options.php:753
411
+ #@ cpd
412
+ msgid "More informations about GeoIP"
413
+ msgstr " GeoIP haqqında daha da çox məlumat"
414
+
415
+ #: counter-options.php:580
416
+ #: massbots.php:35
417
+ #@ cpd
418
+ msgid "Mass Bots"
419
+ msgstr "Mümkün olan botlar"
420
+
421
+ #: counter-options.php:584
422
+ #, php-format
423
+ #@ cpd
424
+ msgid "Show all IPs with more than %s page views per day"
425
+ msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
426
+
427
+ #: counter-options.php:585
428
+ #: notes.php:71
429
+ #: userperspan.php:44
430
+ #@ cpd
431
+ msgid "show"
432
+ msgstr "göstərməkl"
433
+
434
+ #: counter-options.php:593
435
+ #@ cpd
436
+ msgid "IP"
437
+ msgstr "IP"
438
+
439
+ #: counter-options.php:594
440
+ #: notes.php:75
441
+ #@ cpd
442
+ #@ default
443
+ msgid "Date"
444
+ msgstr "Tarix"
445
+
446
+ #: counter-options.php:595
447
+ #@ cpd
448
+ msgid "Client"
449
+ msgstr "Müştəri"
450
+
451
+ #: counter-options.php:596
452
+ #@ cpd
453
+ msgid "Views"
454
+ msgstr "Baxış"
455
+
456
+ #: counter-options.php:611
457
+ #: counter-options.php:627
458
+ #, php-format
459
+ #@ cpd
460
+ msgid "Delete these %s counts"
461
+ msgstr "Bu %s sayğacları silmək"
462
+
463
+ #: counter-options.php:714
464
+ #@ cpd
465
+ msgid "Support"
466
+ msgstr "Dəstək"
467
+
468
+ #: counter-core.php:689
469
+ #, php-format
470
+ #@ cpd
471
+ msgid "Time for Count per Day: <code>%s</code>."
472
+ msgstr " Count per Day üçün vaxt: <code>%s</code>"
473
+
474
+ #: counter-core.php:690
475
+ #@ cpd
476
+ msgid "Bug? Problem? Question? Hint? Praise?"
477
+ msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
478
+
479
+ #: counter-core.php:691
480
+ #, php-format
481
+ #@ cpd
482
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
483
+ msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
484
+
485
+ #: counter.php:155
486
+ #: counter.php:1197
487
+ #@ cpd
488
+ msgid "Total reads"
489
+ msgstr "Ümumi oxunuş"
490
+
491
+ #: counter.php:156
492
+ #: counter.php:1198
493
+ #@ cpd
494
+ msgid "Reads today"
495
+ msgstr "Bu günkü oxunuş"
496
+
497
+ #: counter.php:157
498
+ #: counter.php:1199
499
+ #@ cpd
500
+ msgid "Reads yesterday"
501
+ msgstr "Dünənki oxunuş"
502
+
503
+ #: counter.php:788
504
+ #: notes.php:42
505
+ #: notes.php:76
506
+ #@ cpd
507
+ msgid "Notes"
508
+ msgstr "Qeydlər"
509
+
510
+ #: counter.php:786
511
+ #@ default
512
+ msgid "Show"
513
+ msgstr "Göstərmək"
514
+
515
+ #: counter.php:821
516
+ #@ cpd
517
+ msgid "Other"
518
+ msgstr "Digər"
519
+
520
+ #: counter.php:976
521
+ #@ default
522
+ msgid "Edit Post"
523
+ msgstr "Yazışı redaktə etmək"
524
+
525
+ #: counter.php:991
526
+ #: massbots.php:52
527
+ #: userperspan.php:63
528
+ #@ default
529
+ msgid "Front page displays"
530
+ msgstr "Əsas səhifənin göstərişi"
531
+
532
+ #: counter-core.php:733
533
+ #: counter-options.php:464
534
+ #@ cpd
535
+ msgid "Browsers"
536
+ msgstr "Brauzerlər"
537
+
538
+ #: counter-core.php:728
539
+ #@ cpd
540
+ msgid "Latest Counts"
541
+ msgstr "Yaxında keçirilmiş hesablamalar"
542
+
543
+ #: counter-core.php:730
544
+ #@ default
545
+ msgid "Plugin"
546
+ msgstr "Plagin"
547
+
548
+ #: counter-core.php:738
549
+ #@ cpd
550
+ msgid "Reads per Country"
551
+ msgstr "Ölkələr üzrə oxunuşlar"
552
+
553
+ #: counter.php:353
554
+ #: counter.php:1041
555
+ #@ cpd
556
+ msgid "Map"
557
+ msgstr "Xəritə"
558
+
559
+ #: geoip/geoip.php:93
560
+ #@ cpd
561
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
+ msgstr "Bağışlayın, lazım olna funksiyalar (zlib) quraşdırılmayıb yaxud php.ini.-yə daxil olmayıb"
563
+
564
+ #: geoip/geoip.php:117
565
+ #@ cpd
566
+ msgid "New GeoIP database installed."
567
+ msgstr "GeoIP-nin yeni məlumat bazası quraşdırılıb."
568
+
569
+ #: geoip/geoip.php:119
570
+ #@ cpd
571
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
+ msgstr "Bağışlayin. səhv oldu. Yenidən sınayın yaxud \"geoip\" - 777 papkasına keçidi yoxlayın."
573
+
574
+ #: notes.php:77
575
+ #@ default
576
+ msgid "Action"
577
+ msgstr "Hərəkət"
578
+
579
+ #: notes.php:82
580
+ #@ cpd
581
+ msgid "add"
582
+ msgstr "əlavə etmək"
583
+
584
+ #: notes.php:98
585
+ #@ cpd
586
+ msgid "save"
587
+ msgstr "yaddaşda saxlamaq"
588
+
589
+ #: notes.php:99
590
+ #@ cpd
591
+ msgid "delete"
592
+ msgstr "silmək"
593
+
594
+ #: notes.php:110
595
+ #@ cpd
596
+ msgid "edit"
597
+ msgstr "redaktə etmək"
598
+
599
+ #: counter-options.php:385
600
+ #@ cpd
601
+ msgid "Cache"
602
+ msgstr "Keş"
603
+
604
+ #: counter-options.php:386
605
+ #@ cpd
606
+ msgid "I use a cache plugin. Count these visits with ajax."
607
+ msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
608
+
609
+ #: counter-options.php:465
610
+ #@ cpd
611
+ msgid "Substring of the user agent, separated by comma"
612
+ msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
613
+
614
+ #: counter-options.php:554
615
+ #@ cpd
616
+ msgid "Debug mode"
617
+ msgstr "Düzəliş rejimi"
618
+
619
+ #: counter-options.php:556
620
+ #@ cpd
621
+ msgid "Show debug informations at the bottom of all pages."
622
+ msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
623
+
624
+ #: counter-core.php:739
625
+ #@ cpd
626
+ msgid "Visitors per Country"
627
+ msgstr "Ölkə üzrə gəlişlər"
628
+
629
+ #: userperspan.php:38
630
+ #@ cpd
631
+ msgid "Start"
632
+ msgstr "Başlamaq"
633
+
634
+ #: userperspan.php:40
635
+ #@ cpd
636
+ msgid "End"
637
+ msgstr "Son"
638
+
639
+ #: userperspan.php:42
640
+ #@ cpd
641
+ msgid "PostID"
642
+ msgstr "ID məlumatlar"
643
+
644
+ #: counter-options.php:514
645
+ #@ cpd
646
+ msgid "Add this value to \"Total reads\"."
647
+ msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
648
+
649
+ #: counter-options.php:730
650
+ #@ cpd
651
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
652
+ msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
653
+
654
+ #: userperspan.php:50
655
+ #@ cpd
656
+ msgid "no data found"
657
+ msgstr "heç bir məlumat tapılmayıb"
658
+
659
+ #: counter-options.php:351
660
+ #@ cpd
661
+ msgid "Counter"
662
+ msgstr "Sayğac"
663
+
664
+ #: counter-options.php:389
665
+ #@ cpd
666
+ msgid "Clients and referrers"
667
+ msgstr "Müştərilər və istinad olan saytlar"
668
+
669
+ #: counter-options.php:392
670
+ #@ cpd
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
673
+
674
+ #: counter-options.php:476
675
+ #@ cpd
676
+ msgid "Local URLs"
677
+ msgstr "Lokal URL"
678
+
679
+ #: counter-options.php:477
680
+ #@ cpd
681
+ msgid "Show local referrers too."
682
+ msgstr "Lokal keçidləri də göstərmək."
683
+
684
+ #: counter-options.php:485
685
+ #@ default
686
+ msgid "Posts"
687
+ msgstr "Yazılar"
688
+
689
+ #: counter-options.php:485
690
+ #@ default
691
+ msgid "Pages"
692
+ msgstr "Səhifələr"
693
+
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ #@ cpd
697
+ msgid "Reads last week"
698
+ msgstr "Ötən həftənin oxunuşları"
699
+
700
+ #: counter.php:985
701
+ #@ default
702
+ msgid "Category"
703
+ msgstr "Kateqoriyalar"
704
+
705
+ #: counter.php:988
706
+ #@ default
707
+ msgid "Tag"
708
+ msgstr "Teq"
709
+
710
+ #: counter-core.php:692
711
+ #@ default
712
+ msgid "License"
713
+ msgstr "Lisenziya"
714
+
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ #@ cpd
718
+ msgid "Reads per month"
719
+ msgstr "Ay ərzində oxunuşlar"
720
+
721
+ #: counter-core.php:734
722
+ #@ cpd
723
+ msgid "Referrer"
724
+ msgstr "İstinad olunan sayt"
725
+
726
+ #: counter-options.php:468
727
+ #@ cpd
728
+ msgid "Referrers - Entries"
729
+ msgstr "İstenad olan saytlar - Girişlər"
730
+
731
+ #: counter-options.php:469
732
+ #@ cpd
733
+ msgid "How many referrers do you want to see on dashboard page?"
734
+ msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
735
+
736
+ #: counter-options.php:472
737
+ #@ cpd
738
+ msgid "Referrers - Days"
739
+ msgstr "İstenad olan saytlar - Günlər"
740
+
741
+ #: counter.php:845
742
+ #, php-format
743
+ #@ cpd
744
+ msgid "The %s referrers in last %s days:"
745
+ msgstr "%s istenad olan saytlar son %s günlər:"
746
+
747
+ #: counter-core.php:724
748
+ #@ cpd
749
+ msgid "Visitors online"
750
+ msgstr "Qonaq onlayn"
751
+
752
+ #: counter.php:1220
753
+ #@ default
754
+ msgid "Title"
755
+ msgstr "Başlıq"
756
+
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:917
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr ""
972
+
locale/cpd-be_BY.mo ADDED
Binary file
locale/cpd-be_BY.po ADDED
@@ -0,0 +1,784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Belarusian\n"
14
+ "X-Poedit-Country: BELARUS\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:46
23
+ msgid "Options updated"
24
+ msgstr "Налады захаваныя"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:111
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:121
34
+ #: counter-options.php:496
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "Выдаліць Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:126
40
+ #: counter-options.php:128
41
+ #: counter-options.php:130
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Табліца% s выдалена"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:132
48
+ msgid "Options deleted"
49
+ msgstr "Налады выдалены"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:156
53
+ #: counter-options.php:481
54
+ msgid "Uninstall"
55
+ msgstr "Деинсталяция"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:157
59
+ msgid "Click here"
60
+ msgstr "Націсніце сюды"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:157
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:179
69
+ msgid "Options"
70
+ msgstr "Налады"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:190
74
+ msgid "Online time"
75
+ msgstr "Час онлайн"
76
+
77
+ #@ cpd
78
+ #: counter-options.php:191
79
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
+ msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
81
+
82
+ #@ cpd
83
+ #: counter-options.php:194
84
+ msgid "Logged on Users"
85
+ msgstr "Якія ўвайшлі карыстальнікаў"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:196
89
+ msgid "count too"
90
+ msgstr "Таксама лічыць"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:208
94
+ msgid "Auto counter"
95
+ msgstr "Аўтаматычны лічыльнік"
96
+
97
+ #@ cpd
98
+ #: counter-options.php:209
99
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
100
+ msgstr "Лічыць аўтаматычна асобныя публікацыі і старонкі, ніякіх зменаў у шаблон не спатрэбіцца."
101
+
102
+ #@ cpd
103
+ #: counter-options.php:212
104
+ msgid "Bots to ignore"
105
+ msgstr "Ігнараваць робатаў"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:331
109
+ msgid "Update options"
110
+ msgstr "Захаваць наладкі"
111
+
112
+ #@ cpd
113
+ #: counter-options.php:445
114
+ #: counter-options.php:454
115
+ msgid "Clean the database"
116
+ msgstr "Ачысьціць базу даных"
117
+
118
+ #@ cpd
119
+ #: counter-options.php:448
120
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
+ msgstr "Вы можаце ачысціць лічыльнік выдаліўшы \" Спам \". <br /> Калі вы дадасце новых робатаў-над \"Спам \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць наведвання ботаў. "
122
+
123
+ #@ cpd
124
+ #: counter-options.php:484
125
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
+ msgstr "Калі \" Штодзённы лічыльнік \"актываваны, табліцы ў базах дадзеных будуць захаваныя:)."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:485
130
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
131
+ msgstr "Тут вы можаце выдаліць табліцы і адключыць \" Штодзённы лічыльнік \"."
132
+
133
+ #@ cpd
134
+ #: counter-options.php:488
135
+ msgid "WARNING"
136
+ msgstr "УВАГА"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:489
140
+ msgid "These tables (with ALL counter data) will be deleted."
141
+ msgstr "Гэтыя табліцы (са усімі дадзенымі лічыльніка), будуць выдаленыя."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:491
145
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
+ msgstr "Калі \" Штодзённы лічыльнік \"переинсталлирован, лічыльнік пачынаецца з 0."
147
+
148
+ #@ cpd
149
+ #: counter-options.php:495
150
+ msgid "Yes"
151
+ msgstr "Так"
152
+
153
+ #@ cpd
154
+ #: counter-options.php:496
155
+ msgid "You are sure to disable Count per Day and delete all data?"
156
+ msgstr "Ці вы ўпэўненыя, што жадаеце адключыць \" Штодзённы лічыльнік \"і выдаліць усе дадзеныя?"
157
+
158
+ #@ cpd
159
+ #: counter.php:1786
160
+ #: counter.php:2147
161
+ msgid "Statistics"
162
+ msgstr "Статыстыка"
163
+
164
+ #@ cpd
165
+ #: counter.php:529
166
+ #: counter.php:534
167
+ #: counter.php:1604
168
+ #: counter.php:1750
169
+ #: counter.php:2224
170
+ msgid "Total visitors"
171
+ msgstr "Усяго наведвальнікаў"
172
+
173
+ #@ cpd
174
+ #: counter.php:530
175
+ #: counter.php:2230
176
+ msgid "Visitors currently online"
177
+ msgstr "Наведвальнікаў зараз на сайце"
178
+
179
+ #@ cpd
180
+ #: counter.php:531
181
+ #: counter.php:2225
182
+ msgid "Visitors today"
183
+ msgstr "Наведвальнікаў сёння"
184
+
185
+ #@ cpd
186
+ #: counter.php:532
187
+ #: counter.php:2226
188
+ msgid "Visitors yesterday"
189
+ msgstr "Наведвальнікаў ўчора"
190
+
191
+ #@ cpd
192
+ #: counter.php:533
193
+ #: counter.php:2227
194
+ msgid "Visitors last week"
195
+ msgstr "Наведвальнікаў на мінулым тыдні"
196
+
197
+ #@ cpd
198
+ #: counter.php:536
199
+ #: counter.php:2231
200
+ msgid "Counter starts on"
201
+ msgstr "Лічыльнік пачынаецца з"
202
+
203
+ #@ cpd
204
+ #: counter.php:535
205
+ #: counter.php:636
206
+ #: counter.php:1606
207
+ #: counter.php:1756
208
+ #: counter.php:1765
209
+ #: counter.php:2229
210
+ #: userperspan.php:33
211
+ msgid "Visitors per day"
212
+ msgstr "Наведвальнікаў у дзень"
213
+
214
+ #@ cpd
215
+ #: counter.php:1752
216
+ #: counter.php:2228
217
+ msgid "Visitors per month"
218
+ msgstr "Наведвальнікаў у месяц"
219
+
220
+ #@ cpd
221
+ #: counter-options.php:236
222
+ #: counter.php:1754
223
+ msgid "Visitors per post"
224
+ msgstr "Наведвальнікаў запісы"
225
+
226
+ #@ cpd
227
+ #: counter-options.php:117
228
+ msgid "Counter reseted."
229
+ msgstr "Лічыльнік абнулены"
230
+
231
+ #@ default
232
+ #: counter-options.php:233
233
+ msgid "Dashboard"
234
+ msgstr "Кансоль"
235
+
236
+ #@ cpd
237
+ #: counter-options.php:237
238
+ #: counter-options.php:241
239
+ msgid "How many posts do you want to see on dashboard page?"
240
+ msgstr "Колькі запісаў вы хочаце бачыць на старонцы кансолі?"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:240
244
+ msgid "Latest Counts - Posts"
245
+ msgstr "Апошнія лічыльнікі - Запісы"
246
+
247
+ #@ cpd
248
+ #: counter-options.php:244
249
+ msgid "Latest Counts - Days"
250
+ msgstr "Апошнія лічыльнікі - Дні"
251
+
252
+ #@ cpd
253
+ #: counter-options.php:245
254
+ #: counter-options.php:249
255
+ #: counter-options.php:275
256
+ msgid "How many days do you want look back?"
257
+ msgstr "Наколькі дзён таму вы хочаце бачыць статыстыку?"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:248
261
+ msgid "Chart - Days"
262
+ msgstr "Табліца - Дні"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:252
266
+ msgid "Chart - Height"
267
+ msgstr "Табліца - Вышыня"
268
+
269
+ #@ cpd
270
+ #: counter-options.php:253
271
+ msgid "Height of the biggest bar"
272
+ msgstr "Вышыня самага вялікага слупка"
273
+
274
+ #@ cpd
275
+ #: counter-options.php:290
276
+ msgid "Show in lists"
277
+ msgstr "Паказаць ў спісах"
278
+
279
+ #@ cpd
280
+ #: counter-options.php:291
281
+ msgid "Show \"Reads per Post\" in a new column in post management views."
282
+ msgstr "Паказаць \" чытанне паведамленняў\"у новай калонцы ва ўпраўленні запісамі"
283
+
284
+ #@ cpd
285
+ #: counter-options.php:463
286
+ #: counter-options.php:472
287
+ msgid "Reset the counter"
288
+ msgstr "Абнуліць лічыльнік"
289
+
290
+ #@ cpd
291
+ #: counter-options.php:466
292
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
293
+ msgstr "Вы можаце абнуліць лічыльнік шляхам ачысткі табліцы. УСЕ У 0! <br /> Захавайце рэзервовую копію калі вам неабходныя бягучыя дадзеныя "
294
+
295
+ #@ cpd
296
+ #: counter.php:845
297
+ msgid "no reads at this time"
298
+ msgstr "Няма разоў прачытана да гэтага часу"
299
+
300
+ #@ cpd
301
+ #: counter.php:819
302
+ msgid "days"
303
+ msgstr "Дзён"
304
+
305
+ #@ cpd
306
+ #: counter.php:1257
307
+ #, php-format
308
+ msgid "The %s most visited posts in last %s days:"
309
+ msgstr "Самае% s наведвальныя запісы за апошнія% s дзён:"
310
+
311
+ #@ default
312
+ #: counter.php:1591
313
+ msgid "Settings"
314
+ msgstr "Налады"
315
+
316
+ #@ cpd
317
+ #: counter.php:635
318
+ #: counter.php:1766
319
+ msgid "Reads per day"
320
+ msgstr "Чытанне ў дзень"
321
+
322
+ #@ cpd
323
+ #: counter-options.php:225
324
+ #: counter.php:528
325
+ #: counter.php:1661
326
+ msgid "Reads"
327
+ msgstr "Чытанне"
328
+
329
+ #@ cpd
330
+ #: counter.php:2218
331
+ msgid "This post"
332
+ msgstr "Гэтая запіс"
333
+
334
+ #@ cpd
335
+ #: counter-options.php:57
336
+ #, php-format
337
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
+ msgstr "Краіны <b>абноўлены.% s</b> запісаў у% s засталося без краін"
339
+
340
+ #@ cpd
341
+ #: counter-options.php:62
342
+ msgid "update next"
343
+ msgstr "Абнавіць наступны"
344
+
345
+ #@ cpd
346
+ #: counter-options.php:104
347
+ #, php-format
348
+ msgid "Mass Bots cleaned. %s counts deleted."
349
+ msgstr "Табліца робатаў ачышчана.% s запісаў выдаленае"
350
+
351
+ #@ cpd
352
+ #: counter-options.php:197
353
+ msgid "until User Level"
354
+ msgstr "Да ўзроўню карыстальніка"
355
+
356
+ #@ cpd
357
+ #: counter-options.php:216
358
+ msgid "Anonymous IP"
359
+ msgstr "Ананімны IP"
360
+
361
+ #@ cpd
362
+ #: counter-options.php:261
363
+ msgid "Countries"
364
+ msgstr "Краіны"
365
+
366
+ #@ cpd
367
+ #: counter-options.php:262
368
+ msgid "How many countries do you want to see on dashboard page?"
369
+ msgstr "Колькі краін вы хочаце бачыць у спісе?"
370
+
371
+ #@ cpd
372
+ #: counter-options.php:299
373
+ msgid "Start Values"
374
+ msgstr "Пачатковыя дадзеныя"
375
+
376
+ #@ cpd
377
+ #: counter-options.php:303
378
+ msgid "Here you can change the date of first count and add a start count."
379
+ msgstr "Тут вы можаце памяняць дату пачатку адліку і дадаць пачатковы лічыльнік"
380
+
381
+ #@ cpd
382
+ #: counter-options.php:307
383
+ msgid "Start date"
384
+ msgstr "Дата пачатку"
385
+
386
+ #@ cpd
387
+ #: counter-options.php:308
388
+ msgid "Your old Counter starts at?"
389
+ msgstr "Ваш стары Лічыльнік пачынаўся з"
390
+
391
+ #@ cpd
392
+ #: counter-options.php:311
393
+ #: counter-options.php:315
394
+ msgid "Start count"
395
+ msgstr "Пачатак адліку"
396
+
397
+ #@ cpd
398
+ #: counter-options.php:312
399
+ msgid "Add this value to \"Total visitors\"."
400
+ msgstr "Дадаць значэнне да \" Усяго наведвальнікаў \"."
401
+
402
+ #@ cpd
403
+ #: counter-options.php:340
404
+ msgid "GeoIP - Countries"
405
+ msgstr "GeoIP - Краіны"
406
+
407
+ #@ cpd
408
+ #: counter-options.php:349
409
+ msgid "Update old counter data"
410
+ msgstr "Абнавіць дадзеныя старога лічыльніка"
411
+
412
+ #@ cpd
413
+ #: counter-options.php:362
414
+ msgid "Update GeoIP database"
415
+ msgstr "Абнавіць базу дадзеных GeoIP"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:365
419
+ msgid "Download a new version of GeoIP.dat file."
420
+ msgstr "Запампаваць новую версію файла GeoIP.dat."
421
+
422
+ #@ cpd
423
+ #: counter-options.php:371
424
+ msgid "More informations about GeoIP"
425
+ msgstr "Больш інфармацыі пра GeoIP"
426
+
427
+ #@ cpd
428
+ #: counter-options.php:386
429
+ #: massbots.php:33
430
+ msgid "Mass Bots"
431
+ msgstr "Верагодныя боты"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:390
435
+ #, php-format
436
+ msgid "Show all IPs with more than %s page views per day"
437
+ msgstr "Паказаць усе IP з больш чым% s праглядаў у суткі"
438
+
439
+ #@ cpd
440
+ #: counter-options.php:391
441
+ #: notes.php:76
442
+ #: userperspan.php:43
443
+ msgid "show"
444
+ msgstr "Паказаць"
445
+
446
+ #@ cpd
447
+ #: counter-options.php:399
448
+ msgid "IP"
449
+ msgstr "IP"
450
+
451
+ #@ cpd
452
+ #@ default
453
+ #: counter-options.php:400
454
+ #: notes.php:80
455
+ msgid "Date"
456
+ msgstr "Дата"
457
+
458
+ #@ cpd
459
+ #: counter-options.php:401
460
+ msgid "Client"
461
+ msgstr "Кліент"
462
+
463
+ #@ cpd
464
+ #: counter-options.php:402
465
+ msgid "Views"
466
+ msgstr "Праглядаў"
467
+
468
+ #@ cpd
469
+ #: counter-options.php:413
470
+ #: counter-options.php:435
471
+ #, php-format
472
+ msgid "Delete these %s counts"
473
+ msgstr "Выдаліць гэтыя% s лічыльнікаў"
474
+
475
+ #@ cpd
476
+ #: counter-options.php:504
477
+ msgid "Support"
478
+ msgstr "Падтрымка"
479
+
480
+ #@ cpd
481
+ #: counter.php:1716
482
+ #, php-format
483
+ msgid "Time for Count per Day: <code>%s</code>."
484
+ msgstr "Час для Count per Day: <code>%s</code> "
485
+
486
+ #@ cpd
487
+ #: counter.php:1717
488
+ msgid "Bug? Problem? Question? Hint? Praise?"
489
+ msgstr "Памылка? Праблема? Пытанне? Савет? Хвала?"
490
+
491
+ #@ cpd
492
+ #: counter.php:1718
493
+ #, php-format
494
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
495
+ msgstr "Напішыце каментар на <a href=\"%s\">старонцы плагіна</a> "
496
+
497
+ #@ cpd
498
+ #: counter.php:524
499
+ #: counter.php:2219
500
+ msgid "Total reads"
501
+ msgstr "Усяго чытанняў"
502
+
503
+ #@ cpd
504
+ #: counter.php:525
505
+ #: counter.php:2220
506
+ msgid "Reads today"
507
+ msgstr "Чытанне сёння"
508
+
509
+ #@ cpd
510
+ #: counter.php:526
511
+ #: counter.php:2221
512
+ msgid "Reads yesterday"
513
+ msgstr "Чытанне ўчора"
514
+
515
+ #@ cpd
516
+ #: counter.php:822
517
+ #: counter.php:1376
518
+ #: notes.php:47
519
+ #: notes.php:81
520
+ msgid "Notes"
521
+ msgstr "Нататкі"
522
+
523
+ #@ default
524
+ #: counter.php:1374
525
+ msgid "Show"
526
+ msgstr "Паказаць"
527
+
528
+ #@ cpd
529
+ #: counter.php:1421
530
+ msgid "Other"
531
+ msgstr "Іншыя"
532
+
533
+ #@ default
534
+ #: counter.php:1505
535
+ msgid "Edit Post"
536
+ msgstr "Рэдагаваць запіс"
537
+
538
+ #@ default
539
+ #: counter.php:1520
540
+ #: massbots.php:50
541
+ #: userperspan.php:63
542
+ msgid "Front page displays"
543
+ msgstr "Адлюстраванне галоўнай старонкі"
544
+
545
+ #@ cpd
546
+ #: counter-options.php:266
547
+ #: counter.php:1760
548
+ msgid "Browsers"
549
+ msgstr "Браўзэры"
550
+
551
+ #@ cpd
552
+ #: counter.php:1755
553
+ msgid "Latest Counts"
554
+ msgstr "Нядаўнія падлікі"
555
+
556
+ #@ default
557
+ #: counter.php:1757
558
+ msgid "Plugin"
559
+ msgstr "Плагін"
560
+
561
+ #@ cpd
562
+ #: counter.php:1770
563
+ msgid "Reads per Country"
564
+ msgstr "Чытанне па краінах"
565
+
566
+ #@ cpd
567
+ #: counter.php:900
568
+ #: counter.php:1856
569
+ msgid "Map"
570
+ msgstr "Карта"
571
+
572
+ #@ cpd
573
+ #: geoip/geoip.php:108
574
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
575
+ msgstr "Прыносім выбачэнні, неабходныя функцыі (zlib) не ўстаноўлена або не ўключана ў php.ini."
576
+
577
+ #@ cpd
578
+ #: geoip/geoip.php:132
579
+ msgid "New GeoIP database installed."
580
+ msgstr "Новая база дадзеных GeoIP ўсталяваная."
581
+
582
+ #@ cpd
583
+ #: geoip/geoip.php:134
584
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
585
+ msgstr "Прыносім выбачэнні, адбылася памылка. Паспрабуйце зноў або праверце што правы доступу да тэчцы \" geoip \"- 777"
586
+
587
+ #@ cpd
588
+ #: notes.php:81
589
+ msgid "(1 per day)"
590
+ msgstr "(1 на суткі)"
591
+
592
+ #@ default
593
+ #: notes.php:82
594
+ msgid "Action"
595
+ msgstr "Дзеянне"
596
+
597
+ #@ cpd
598
+ #: notes.php:87
599
+ msgid "add"
600
+ msgstr "Дадаць"
601
+
602
+ #@ cpd
603
+ #: notes.php:102
604
+ msgid "save"
605
+ msgstr "Захаваць"
606
+
607
+ #@ cpd
608
+ #: notes.php:103
609
+ msgid "delete"
610
+ msgstr "Выдаліць"
611
+
612
+ #@ cpd
613
+ #: notes.php:114
614
+ msgid "edit"
615
+ msgstr "Рэдагаваць"
616
+
617
+ #@ cpd
618
+ #: counter-options.php:220
619
+ msgid "Cache"
620
+ msgstr "Кэш"
621
+
622
+ #@ cpd
623
+ #: counter-options.php:221
624
+ msgid "I use a cache plugin. Count these visits with ajax."
625
+ msgstr "Я выкарыстоўваю кэшавання убудова. Лічыць гэтыя наведвання пры дапамозе ajax"
626
+
627
+ #@ cpd
628
+ #: counter-options.php:267
629
+ msgid "Substring of the user agent, separated by comma"
630
+ msgstr "Падрадок агента карыстальніка падзелены коскі"
631
+
632
+ #@ cpd
633
+ #: counter-options.php:324
634
+ msgid "Debug mode"
635
+ msgstr "Рэжым адладкі"
636
+
637
+ #@ cpd
638
+ #: counter-options.php:326
639
+ msgid "Show debug informations at the bottom of all pages."
640
+ msgstr "Дадаць дапаможную інфармацыю ўнізе кожнай старонкі."
641
+
642
+ #@ cpd
643
+ #: counter.php:1771
644
+ msgid "Visitors per Country"
645
+ msgstr "Наведвальнікаў па краінах"
646
+
647
+ #@ cpd
648
+ #: userperspan.php:37
649
+ msgid "Start"
650
+ msgstr "Пачатак"
651
+
652
+ #@ cpd
653
+ #: userperspan.php:39
654
+ msgid "End"
655
+ msgstr "Канец"
656
+
657
+ #@ cpd
658
+ #: userperspan.php:41
659
+ msgid "PostID"
660
+ msgstr "ID паведамлення"
661
+
662
+ #@ cpd
663
+ #: counter-options.php:316
664
+ msgid "Add this value to \"Total reads\"."
665
+ msgstr "Дадаць значэнне да \" Усяго разоў прачытана \"."
666
+
667
+ #@ cpd
668
+ #: counter-options.php:352
669
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
670
+ msgstr "Вы можаце атрымаць дадзеныя краін для ўсіх запісаў праверыўшы IP адрасы зноўку. Можа заняць некаторы час!"
671
+
672
+ #@ cpd
673
+ #: userperspan.php:49
674
+ msgid "no data found"
675
+ msgstr "Нічога не знойдзена"
676
+
677
+ #@ cpd
678
+ #: counter-options.php:186
679
+ msgid "Counter"
680
+ msgstr "Лічыльнік"
681
+
682
+ #@ cpd
683
+ #: counter-options.php:224
684
+ msgid "Clients and referrers"
685
+ msgstr "Кліенты і якія спасылаюцца сайты"
686
+
687
+ #@ cpd
688
+ #: counter-options.php:225
689
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
+ msgstr "Захаваць і паказаць кліентаў і якія спасылаюцца сайты. <br /> Патрабуе шмат дыскавай прасторы ў базе дадзеных, але дае больш дэталёвую інфармацыю аб вашых наведвальніках. "
691
+
692
+ #@ cpd
693
+ #: counter-options.php:278
694
+ msgid "Local URLs"
695
+ msgstr "Лакальныя URL"
696
+
697
+ #@ cpd
698
+ #: counter-options.php:279
699
+ msgid "Show local referrers too."
700
+ msgstr "Паказваць лакальныя пераходы таксама."
701
+
702
+ #@ default
703
+ #: counter-options.php:287
704
+ msgid "Posts"
705
+ msgstr "Запісы"
706
+
707
+ #@ default
708
+ #: counter-options.php:287
709
+ msgid "Pages"
710
+ msgstr "Старонкі"
711
+
712
+ #@ cpd
713
+ #: counter.php:527
714
+ #: counter.php:2222
715
+ msgid "Reads last week"
716
+ msgstr "Чытанне на мінулым тыдні"
717
+
718
+ #@ default
719
+ #: counter.php:1514
720
+ msgid "Category"
721
+ msgstr "Катэгорыя"
722
+
723
+ #@ default
724
+ #: counter.php:1517
725
+ msgid "Tag"
726
+ msgstr "Тег"
727
+
728
+ #@ default
729
+ #: counter.php:1719
730
+ msgid "License"
731
+ msgstr "Ліцэнзія"
732
+
733
+ #@ cpd
734
+ #: counter.php:1753
735
+ #: counter.php:2223
736
+ msgid "Reads per month"
737
+ msgstr "Чытанне за месяц"
738
+
739
+ #@ cpd
740
+ #: counter.php:1761
741
+ msgid "Referrer"
742
+ msgstr "Спасылаецца сайт"
743
+
744
+ #@ cpd
745
+ #: counter-options.php:256
746
+ msgid "Old Charts"
747
+ msgstr "Старыя табліцы"
748
+
749
+ #@ cpd
750
+ #: counter-options.php:257
751
+ msgid "Show old bar charts."
752
+ msgstr "Паказаць у табліцу слупкамі"
753
+
754
+ #@ cpd
755
+ #: counter-options.php:270
756
+ msgid "Referrers - Entries"
757
+ msgstr "Старонкі, якія спасылаюцца сайты - Уваходжанне"
758
+
759
+ #@ cpd
760
+ #: counter-options.php:271
761
+ msgid "How many referrers do you want to see on dashboard page?"
762
+ msgstr "Колькі спасылаюцца сайтаў вы хочаце ўбачыць на старонцы статыстыкі?"
763
+
764
+ #@ cpd
765
+ #: counter-options.php:274
766
+ msgid "Referrers - Days"
767
+ msgstr "Старонкі, якія спасылаюцца сайты - Дні"
768
+
769
+ #@ cpd
770
+ #: counter.php:1449
771
+ #, php-format
772
+ msgid "The %s referrers in last %s days:"
773
+ msgstr "%s спасылаюцца сайтаў за апошнія% s дзён:"
774
+
775
+ #@ cpd
776
+ #: counter.php:1751
777
+ msgid "Visitors online"
778
+ msgstr "Наведвальнікаў на сайце"
779
+
780
+ #@ default
781
+ #: counter.php:2242
782
+ msgid "Title"
783
+ msgstr "Загаловак"
784
+
locale/cpd-bg_BG.mo CHANGED
Binary file
locale/cpd-bg_BG.po CHANGED
@@ -19,767 +19,954 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:46
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Настройките са обновени"
26
 
27
- #: counter-options.php:57
28
  #, php-format
29
  #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
32
 
33
- #: counter-options.php:62
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "следващо обновяване"
37
 
38
- #: counter-options.php:104
39
  #, php-format
40
  #@ cpd
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Mass Bots са изчистени. %s броячите изтрити."
43
 
44
- #: counter-options.php:111
45
  #, php-format
46
  #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Базата-данни е изчистена. %s редовете са изтрити."
49
 
50
- #: counter-options.php:117
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Броячът е нулиран."
54
 
55
- #: counter-options.php:121
56
- #: counter-options.php:496
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "Деинсталирай Count per Day"
60
 
61
- #: counter-options.php:126
62
- #: counter-options.php:128
63
- #: counter-options.php:130
64
  #, php-format
65
  #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Таблицата %s изтрита"
68
 
69
- #: counter-options.php:132
70
  #@ cpd
71
  msgid "Options deleted"
72
  msgstr "Настройките са изтрити"
73
 
74
- #: counter-options.php:156
75
- #: counter-options.php:481
76
  #@ cpd
77
  msgid "Uninstall"
78
  msgstr "Деинсталиране"
79
 
80
- #: counter-options.php:157
81
  #@ cpd
82
  msgid "Click here"
83
  msgstr "Натиснете тук"
84
 
85
- #: counter-options.php:157
86
  #@ cpd
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
89
 
90
- #: counter-options.php:179
91
- #@ cpd
92
- msgid "Options"
93
- msgstr "Настройки"
94
-
95
- #: counter-options.php:186
96
  #@ cpd
97
  msgid "Counter"
98
  msgstr "Брояч"
99
 
100
- #: counter-options.php:190
101
  #@ cpd
102
  msgid "Online time"
103
  msgstr "Време онлайн"
104
 
105
- #: counter-options.php:191
106
  #@ cpd
107
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
108
  msgstr "Време онлайн"
109
 
110
- #: counter-options.php:194
111
  #@ cpd
112
  msgid "Logged on Users"
113
  msgstr "Включени потребители"
114
 
115
- #: counter-options.php:196
116
  #@ cpd
117
  msgid "count too"
118
  msgstr "преброявай също"
119
 
120
- #: counter-options.php:197
121
  #@ cpd
122
  msgid "until User Level"
123
  msgstr "до нивото на потребителя"
124
 
125
- #: counter-options.php:208
126
  #@ cpd
127
  msgid "Auto counter"
128
  msgstr "Автоматичен брояч"
129
 
130
- #: counter-options.php:209
131
  #@ cpd
132
  msgid "Counts automatically single-posts and pages, no changes on template needed."
133
  msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
134
 
135
- #: counter-options.php:212
136
  #@ cpd
137
  msgid "Bots to ignore"
138
  msgstr "Игнорирай тези Ботове"
139
 
140
- #: counter-options.php:216
141
  #@ cpd
142
  msgid "Anonymous IP"
143
  msgstr "Анонимно IP"
144
 
145
- #: counter-options.php:220
146
  #@ cpd
147
  msgid "Cache"
148
  msgstr "Кеш"
149
 
150
- #: counter-options.php:221
151
  #@ cpd
152
  msgid "I use a cache plugin. Count these visits with ajax."
153
  msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
154
 
155
- #: counter-options.php:224
156
  #@ cpd
157
  msgid "Clients and referrers"
158
  msgstr "Потребители и препращащи сайтове"
159
 
160
- #: counter-options.php:225
161
  #@ cpd
162
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
163
  msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
164
 
165
- #: counter-options.php:225
166
- #: counter.php:528
167
- #: counter.php:1661
 
168
  #@ cpd
169
  msgid "Reads"
170
  msgstr "Прочетени"
171
 
172
- #: counter-options.php:233
173
  #@ default
174
  msgid "Dashboard"
175
  msgstr "Табло"
176
 
177
- #: counter-options.php:236
178
- #: counter.php:1754
179
  #@ cpd
180
  msgid "Visitors per post"
181
  msgstr "Посетители за публикация"
182
 
183
- #: counter-options.php:237
184
- #: counter-options.php:241
185
  #@ cpd
186
  msgid "How many posts do you want to see on dashboard page?"
187
  msgstr "Колко публикации искате се покажат на таблото?"
188
 
189
- #: counter-options.php:240
190
  #@ cpd
191
  msgid "Latest Counts - Posts"
192
  msgstr "Последни преброявания - Публикации"
193
 
194
- #: counter-options.php:244
195
  #@ cpd
196
  msgid "Latest Counts - Days"
197
  msgstr "Последни преброявания - Дни"
198
 
199
- #: counter-options.php:245
200
- #: counter-options.php:249
201
- #: counter-options.php:275
202
  #@ cpd
203
  msgid "How many days do you want look back?"
204
  msgstr "Колко дни искате да бъдат показани?"
205
 
206
- #: counter-options.php:248
207
  #@ cpd
208
  msgid "Chart - Days"
209
  msgstr "Графика - Дни"
210
 
211
- #: counter-options.php:252
212
  #@ cpd
213
  msgid "Chart - Height"
214
  msgstr "Графика - Височина"
215
 
216
- #: counter-options.php:253
217
  #@ cpd
218
  msgid "Height of the biggest bar"
219
  msgstr "Височина на най-голямото показание"
220
 
221
- #: counter-options.php:261
222
  #@ cpd
223
  msgid "Countries"
224
  msgstr "Държави"
225
 
226
- #: counter-options.php:262
227
  #@ cpd
228
  msgid "How many countries do you want to see on dashboard page?"
229
  msgstr "Колко държави искате да виждате на таблото?"
230
 
231
- #: counter-options.php:266
232
- #: counter.php:1760
233
  #@ cpd
234
  msgid "Browsers"
235
  msgstr "Браузъри"
236
 
237
- #: counter-options.php:267
238
  #@ cpd
239
  msgid "Substring of the user agent, separated by comma"
240
  msgstr ""
241
 
242
- #: counter-options.php:278
243
  #@ cpd
244
  msgid "Local URLs"
245
  msgstr "Локални URLs"
246
 
247
- #: counter-options.php:279
248
  #@ cpd
249
  msgid "Show local referrers too."
250
  msgstr "Покажи и местните препращащи сайтове."
251
 
252
- #: counter-options.php:287
253
  #@ default
254
  msgid "Posts"
255
  msgstr "Публикации"
256
 
257
- #: counter-options.php:287
258
  #@ default
259
  msgid "Pages"
260
  msgstr "Страници"
261
 
262
- #: counter-options.php:290
263
  #@ cpd
264
  msgid "Show in lists"
265
  msgstr "Покажи в списъците"
266
 
267
- #: counter-options.php:291
268
  #@ cpd
269
  msgid "Show \"Reads per Post\" in a new column in post management views."
270
  msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
271
 
272
- #: counter-options.php:299
273
  #@ cpd
274
  msgid "Start Values"
275
  msgstr "Начални стойности"
276
 
277
- #: counter-options.php:303
278
  #@ cpd
279
  msgid "Here you can change the date of first count and add a start count."
280
  msgstr "Тук можете да промените началната дата и да добавите нова дата."
281
 
282
- #: counter-options.php:307
283
  #@ cpd
284
  msgid "Start date"
285
  msgstr "Начална дата"
286
 
287
- #: counter-options.php:308
288
  #@ cpd
289
  msgid "Your old Counter starts at?"
290
  msgstr "Кога да стартира Вашия брояч?"
291
 
292
- #: counter-options.php:311
293
- #: counter-options.php:315
294
  #@ cpd
295
  msgid "Start count"
296
  msgstr "Стартирай брояча"
297
 
298
- #: counter-options.php:312
299
  #@ cpd
300
  msgid "Add this value to \"Total visitors\"."
301
  msgstr "Добави тази стойност към \"Общо посетители\"."
302
 
303
- #: counter-options.php:316
304
  #@ cpd
305
  msgid "Add this value to \"Total reads\"."
306
  msgstr "Добави тази стойност към \"Общо прочетени\"."
307
 
308
- #: counter-options.php:324
309
  #@ cpd
310
  msgid "Debug mode"
311
  msgstr "Дебъг режим"
312
 
313
- #: counter-options.php:326
314
  #@ cpd
315
  msgid "Show debug informations at the bottom of all pages."
316
  msgstr "Покажи дебъг информация в дъното на всяка страница."
317
 
318
- #: counter-options.php:331
319
  #@ cpd
320
  msgid "Update options"
321
  msgstr "Обнови настройките"
322
 
323
- #: counter-options.php:340
324
  #@ cpd
325
  msgid "GeoIP - Countries"
326
  msgstr "GeoIP - Държави"
327
 
328
- #: counter-options.php:349
329
  #@ cpd
330
  msgid "Update old counter data"
331
  msgstr "Обнови старите данни на брояча"
332
 
333
- #: counter-options.php:352
334
  #@ cpd
335
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
336
  msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
337
 
338
- #: counter-options.php:362
339
  #@ cpd
340
  msgid "Update GeoIP database"
341
  msgstr "Обнови GeoIP базата-данни"
342
 
343
- #: counter-options.php:365
344
  #@ cpd
345
  msgid "Download a new version of GeoIP.dat file."
346
  msgstr "Изтегли нова версия на GeoIP.dat."
347
 
348
- #: counter-options.php:371
349
  #@ cpd
350
  msgid "More informations about GeoIP"
351
  msgstr "Повече информация за GeoIP"
352
 
353
- #: counter-options.php:386
354
- #: massbots.php:33
355
  #@ cpd
356
  msgid "Mass Bots"
357
  msgstr ""
358
 
359
- #: counter-options.php:390
360
  #, php-format
361
  #@ cpd
362
  msgid "Show all IPs with more than %s page views per day"
363
  msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
364
 
365
- #: counter-options.php:391
366
- #: notes.php:76
367
- #: userperspan.php:43
368
  #@ cpd
369
  msgid "show"
370
  msgstr "покажи"
371
 
372
- #: counter-options.php:399
373
  #@ cpd
374
  msgid "IP"
375
  msgstr "IP"
376
 
377
- #: counter-options.php:400
378
- #: notes.php:80
379
  #@ cpd
380
  #@ default
381
  msgid "Date"
382
  msgstr "Дата"
383
 
384
- #: counter-options.php:401
385
  #@ cpd
386
  msgid "Client"
387
  msgstr "Потребител"
388
 
389
- #: counter-options.php:402
390
  #@ cpd
391
  msgid "Views"
392
  msgstr "Прегледи"
393
 
394
- #: counter-options.php:413
395
- #: counter-options.php:435
396
  #, php-format
397
  #@ cpd
398
  msgid "Delete these %s counts"
399
  msgstr "Изтрий тези %s броячи"
400
 
401
- #: counter-options.php:445
402
- #: counter-options.php:454
403
  #@ cpd
404
  msgid "Clean the database"
405
  msgstr "Изчисти базата-данни"
406
 
407
- #: counter-options.php:448
408
  #@ cpd
409
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
410
  msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
411
 
412
- #: counter-options.php:463
413
- #: counter-options.php:472
414
  #@ cpd
415
  msgid "Reset the counter"
416
  msgstr "Изтрий брояча"
417
 
418
- #: counter-options.php:466
419
  #@ cpd
420
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
421
  msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
422
 
423
- #: counter-options.php:484
424
  #@ cpd
425
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
426
  msgstr ""
427
 
428
- #: counter-options.php:485
429
  #@ cpd
430
  msgid "Here you can delete the tables and disable \"Count per Day\"."
431
  msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
432
 
433
- #: counter-options.php:488
434
  #@ cpd
435
  msgid "WARNING"
436
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
437
 
438
- #: counter-options.php:489
439
  #@ cpd
440
  msgid "These tables (with ALL counter data) will be deleted."
441
  msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
442
 
443
- #: counter-options.php:491
444
  #@ cpd
445
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
446
  msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
447
 
448
- #: counter-options.php:495
 
449
  #@ cpd
450
  msgid "Yes"
451
  msgstr "Да"
452
 
453
- #: counter-options.php:496
454
  #@ cpd
455
  msgid "You are sure to disable Count per Day and delete all data?"
456
  msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
457
 
458
- #: counter-options.php:504
459
  #@ cpd
460
  msgid "Support"
461
  msgstr "Поддръжка"
462
 
463
- #: counter.php:524
464
- #: counter.php:2219
465
  #@ cpd
466
  msgid "Total reads"
467
  msgstr "Общо прочетени"
468
 
469
- #: counter.php:525
470
- #: counter.php:2220
471
  #@ cpd
472
  msgid "Reads today"
473
  msgstr "Прочетени днес"
474
 
475
- #: counter.php:526
476
- #: counter.php:2221
477
  #@ cpd
478
  msgid "Reads yesterday"
479
  msgstr "Прочетени вчера"
480
 
481
- #: counter.php:527
482
- #: counter.php:2222
483
  #@ cpd
484
  msgid "Reads last week"
485
  msgstr "Прочетени последната седмица"
486
 
487
- #: counter.php:529
488
- #: counter.php:534
489
- #: counter.php:1604
490
- #: counter.php:1750
491
- #: counter.php:2224
492
  #@ cpd
493
  msgid "Total visitors"
494
  msgstr "Общо посетители"
495
 
496
- #: counter.php:530
497
- #: counter.php:2230
498
  #@ cpd
499
  msgid "Visitors currently online"
500
  msgstr "Посетители онлайн"
501
 
502
- #: counter.php:531
503
- #: counter.php:2225
504
  #@ cpd
505
  msgid "Visitors today"
506
  msgstr "Посетители днес"
507
 
508
- #: counter.php:532
509
- #: counter.php:2226
510
  #@ cpd
511
  msgid "Visitors yesterday"
512
  msgstr "Посетители вчера"
513
 
514
- #: counter.php:533
515
- #: counter.php:2227
516
  #@ cpd
517
  msgid "Visitors last week"
518
  msgstr "Посетители през последната седмица"
519
 
520
- #: counter.php:535
521
- #: counter.php:636
522
- #: counter.php:1606
523
- #: counter.php:1756
524
- #: counter.php:1765
525
- #: counter.php:2229
526
- #: userperspan.php:33
527
  #@ cpd
528
  msgid "Visitors per day"
529
  msgstr "Посетители по дни"
530
 
531
- #: counter.php:536
532
- #: counter.php:2231
 
533
  #@ cpd
534
  msgid "Counter starts on"
535
  msgstr "Броячът е стартиран"
536
 
537
- #: counter.php:819
538
- #@ cpd
539
- msgid "days"
540
- msgstr "дни"
541
-
542
- #: counter.php:822
543
- #: counter.php:1376
544
- #: notes.php:47
545
- #: notes.php:81
546
  #@ cpd
547
  msgid "Notes"
548
  msgstr "Забележки"
549
 
550
- #: counter.php:845
551
- #@ cpd
552
- msgid "no reads at this time"
553
- msgstr "Няма прочитания до момента"
554
-
555
- #: counter.php:1257
556
  #, php-format
557
  #@ cpd
558
  msgid "The %s most visited posts in last %s days:"
559
  msgstr "Най-много %s посетени публикации в последните %s дни:"
560
 
561
- #: counter.php:1374
562
  #@ default
563
  msgid "Show"
564
  msgstr "Покажи"
565
 
566
- #: counter.php:1421
567
  #@ cpd
568
  msgid "Other"
569
  msgstr "Други"
570
 
571
- #: counter.php:1505
572
  #@ default
573
  msgid "Edit Post"
574
  msgstr "Редактирай публикацията"
575
 
576
- #: counter.php:1514
577
  #@ default
578
  msgid "Category"
579
  msgstr "Категория"
580
 
581
- #: counter.php:1517
582
  #@ default
583
  msgid "Tag"
584
  msgstr "Таг"
585
 
586
- #: counter.php:1520
587
- #: massbots.php:50
588
  #: userperspan.php:63
589
  #@ default
590
  msgid "Front page displays"
591
  msgstr "Изобразяване на предна страница"
592
 
593
- #: counter.php:1591
 
 
594
  #@ default
595
  msgid "Settings"
596
  msgstr "Настройки"
597
 
598
- #: counter.php:1716
599
  #, php-format
600
  #@ cpd
601
  msgid "Time for Count per Day: <code>%s</code>."
602
  msgstr "Време за Count per Day: <code>%s</code>."
603
 
604
- #: counter.php:1717
605
  #@ cpd
606
  msgid "Bug? Problem? Question? Hint? Praise?"
607
  msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
608
 
609
- #: counter.php:1718
610
  #, php-format
611
  #@ cpd
612
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
613
  msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
614
 
615
- #: counter.php:1719
616
  #@ default
617
  msgid "License"
618
  msgstr "Лиценз"
619
 
620
- #: counter.php:635
621
- #: counter.php:1766
622
  #@ cpd
623
  msgid "Reads per day"
624
  msgstr "Прочетени по дни"
625
 
626
- #: counter.php:1752
627
- #: counter.php:2228
628
  #@ cpd
629
  msgid "Visitors per month"
630
  msgstr "Посетители по месеци"
631
 
632
- #: counter.php:1753
633
- #: counter.php:2223
634
  #@ cpd
635
  msgid "Reads per month"
636
  msgstr "Прочетени по месеци"
637
 
638
- #: counter.php:1755
639
  #@ cpd
640
  msgid "Latest Counts"
641
  msgstr "Последни броячи"
642
 
643
- #: counter.php:1757
644
  #@ default
645
  msgid "Plugin"
646
  msgstr "Разширение"
647
 
648
- #: counter.php:1761
649
  #@ cpd
650
  msgid "Referrer"
651
  msgstr "Препращащ сайт"
652
 
653
- #: counter.php:1770
654
  #@ cpd
655
  msgid "Reads per Country"
656
  msgstr "Прочетени по държави"
657
 
658
- #: counter.php:1771
659
  #@ cpd
660
  msgid "Visitors per Country"
661
  msgstr "Посетители по държави"
662
 
663
- #: counter.php:1786
664
- #: counter.php:2147
665
  #@ cpd
666
  msgid "Statistics"
667
  msgstr "Статистика"
668
 
669
- #: counter.php:900
670
- #: counter.php:1856
671
  #@ cpd
672
  msgid "Map"
673
  msgstr "Карта"
674
 
675
- #: counter.php:2218
676
  #@ cpd
677
  msgid "This post"
678
  msgstr "Тази публикация"
679
 
680
- #: counter.php:2242
681
  #@ default
682
  msgid "Title"
683
  msgstr "Заглавие"
684
 
685
- #: geoip/geoip.php:108
686
  #@ cpd
687
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
688
  msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
689
 
690
- #: geoip/geoip.php:132
691
  #@ cpd
692
  msgid "New GeoIP database installed."
693
  msgstr "Новата GeoIP база-данни е инсталирана."
694
 
695
- #: geoip/geoip.php:134
696
  #@ cpd
697
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
698
  msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
699
 
700
- #: notes.php:81
701
- #@ cpd
702
- msgid "(1 per day)"
703
- msgstr "(1 per day)"
704
-
705
- #: notes.php:82
706
  #@ default
707
  msgid "Action"
708
  msgstr "Действие"
709
 
710
- #: notes.php:87
711
  #@ cpd
712
  msgid "add"
713
  msgstr "добави"
714
 
715
- #: notes.php:102
716
  #@ cpd
717
  msgid "save"
718
  msgstr "запази"
719
 
720
- #: notes.php:103
721
  #@ cpd
722
  msgid "delete"
723
  msgstr "изтрий"
724
 
725
- #: notes.php:114
726
  #@ cpd
727
  msgid "edit"
728
  msgstr "редакция"
729
 
730
- #: userperspan.php:37
731
  #@ cpd
732
  msgid "Start"
733
  msgstr "Начало"
734
 
735
- #: userperspan.php:39
736
  #@ cpd
737
  msgid "End"
738
  msgstr "Край"
739
 
740
- #: userperspan.php:41
741
  #@ cpd
742
  msgid "PostID"
743
  msgstr "PostID"
744
 
745
- #: userperspan.php:49
746
  #@ cpd
747
  msgid "no data found"
748
  msgstr "няма намерени данни"
749
 
750
- #: counter-options.php:256
751
  #@ cpd
752
- msgid "Old Charts"
753
  msgstr ""
754
 
755
- #: counter-options.php:257
756
  #@ cpd
757
- msgid "Show old bar charts."
758
  msgstr ""
759
 
760
- #: counter-options.php:270
761
  #@ cpd
762
- msgid "Referrers - Entries"
763
  msgstr ""
764
 
765
- #: counter-options.php:271
 
766
  #@ cpd
767
- msgid "How many referrers do you want to see on dashboard page?"
768
  msgstr ""
769
 
770
- #: counter-options.php:274
771
  #@ cpd
772
- msgid "Referrers - Days"
773
  msgstr ""
774
 
775
- #: counter.php:1449
776
  #, php-format
777
  #@ cpd
778
- msgid "The %s referrers in last %s days:"
779
  msgstr ""
780
 
781
- #: counter.php:1751
782
  #@ cpd
783
- msgid "Visitors online"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784
  msgstr ""
785
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:49
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Настройките са обновени"
26
 
27
+ #: counter-options.php:60
28
  #, php-format
29
  #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
32
 
33
+ #: counter-options.php:65
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "следващо обновяване"
37
 
38
+ #: counter-options.php:102
39
  #, php-format
40
  #@ cpd
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Mass Bots са изчистени. %s броячите изтрити."
43
 
44
+ #: counter-options.php:112
45
  #, php-format
46
  #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Базата-данни е изчистена. %s редовете са изтрити."
49
 
50
+ #: counter-options.php:122
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Броячът е нулиран."
54
 
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "Деинсталирай Count per Day"
60
 
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
  #, php-format
65
  #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Таблицата %s изтрита"
68
 
69
+ #: counter-options.php:135
70
  #@ cpd
71
  msgid "Options deleted"
72
  msgstr "Настройките са изтрити"
73
 
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
  #@ cpd
77
  msgid "Uninstall"
78
  msgstr "Деинсталиране"
79
 
80
+ #: counter-options.php:317
81
  #@ cpd
82
  msgid "Click here"
83
  msgstr "Натиснете тук"
84
 
85
+ #: counter-options.php:317
86
  #@ cpd
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
89
 
90
+ #: counter-options.php:351
 
 
 
 
 
91
  #@ cpd
92
  msgid "Counter"
93
  msgstr "Брояч"
94
 
95
+ #: counter-options.php:355
96
  #@ cpd
97
  msgid "Online time"
98
  msgstr "Време онлайн"
99
 
100
+ #: counter-options.php:356
101
  #@ cpd
102
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
103
  msgstr "Време онлайн"
104
 
105
+ #: counter-options.php:359
106
  #@ cpd
107
  msgid "Logged on Users"
108
  msgstr "Включени потребители"
109
 
110
+ #: counter-options.php:361
111
  #@ cpd
112
  msgid "count too"
113
  msgstr "преброявай също"
114
 
115
+ #: counter-options.php:362
116
  #@ cpd
117
  msgid "until User Level"
118
  msgstr "до нивото на потребителя"
119
 
120
+ #: counter-options.php:373
121
  #@ cpd
122
  msgid "Auto counter"
123
  msgstr "Автоматичен брояч"
124
 
125
+ #: counter-options.php:374
126
  #@ cpd
127
  msgid "Counts automatically single-posts and pages, no changes on template needed."
128
  msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
129
 
130
+ #: counter-options.php:377
131
  #@ cpd
132
  msgid "Bots to ignore"
133
  msgstr "Игнорирай тези Ботове"
134
 
135
+ #: counter-options.php:381
136
  #@ cpd
137
  msgid "Anonymous IP"
138
  msgstr "Анонимно IP"
139
 
140
+ #: counter-options.php:385
141
  #@ cpd
142
  msgid "Cache"
143
  msgstr "Кеш"
144
 
145
+ #: counter-options.php:386
146
  #@ cpd
147
  msgid "I use a cache plugin. Count these visits with ajax."
148
  msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
149
 
150
+ #: counter-options.php:389
151
  #@ cpd
152
  msgid "Clients and referrers"
153
  msgstr "Потребители и препращащи сайтове"
154
 
155
+ #: counter-options.php:392
156
  #@ cpd
157
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
158
  msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
159
 
160
+ #: counter-core.php:639
161
+ #: counter-options.php:392
162
+ #: counter.php:159
163
+ #: counter.php:875
164
  #@ cpd
165
  msgid "Reads"
166
  msgstr "Прочетени"
167
 
168
+ #: counter-options.php:403
169
  #@ default
170
  msgid "Dashboard"
171
  msgstr "Табло"
172
 
173
+ #: counter-core.php:727
174
+ #: counter-options.php:438
175
  #@ cpd
176
  msgid "Visitors per post"
177
  msgstr "Посетители за публикация"
178
 
179
+ #: counter-options.php:439
180
+ #: counter-options.php:443
181
  #@ cpd
182
  msgid "How many posts do you want to see on dashboard page?"
183
  msgstr "Колко публикации искате се покажат на таблото?"
184
 
185
+ #: counter-options.php:442
186
  #@ cpd
187
  msgid "Latest Counts - Posts"
188
  msgstr "Последни преброявания - Публикации"
189
 
190
+ #: counter-options.php:446
191
  #@ cpd
192
  msgid "Latest Counts - Days"
193
  msgstr "Последни преброявания - Дни"
194
 
195
+ #: counter-options.php:447
196
+ #: counter-options.php:451
197
+ #: counter-options.php:473
198
  #@ cpd
199
  msgid "How many days do you want look back?"
200
  msgstr "Колко дни искате да бъдат показани?"
201
 
202
+ #: counter-options.php:450
203
  #@ cpd
204
  msgid "Chart - Days"
205
  msgstr "Графика - Дни"
206
 
207
+ #: counter-options.php:454
208
  #@ cpd
209
  msgid "Chart - Height"
210
  msgstr "Графика - Височина"
211
 
212
+ #: counter-options.php:455
213
  #@ cpd
214
  msgid "Height of the biggest bar"
215
  msgstr "Височина на най-голямото показание"
216
 
217
+ #: counter-options.php:459
218
  #@ cpd
219
  msgid "Countries"
220
  msgstr "Държави"
221
 
222
+ #: counter-options.php:460
223
  #@ cpd
224
  msgid "How many countries do you want to see on dashboard page?"
225
  msgstr "Колко държави искате да виждате на таблото?"
226
 
227
+ #: counter-core.php:733
228
+ #: counter-options.php:464
229
  #@ cpd
230
  msgid "Browsers"
231
  msgstr "Браузъри"
232
 
233
+ #: counter-options.php:465
234
  #@ cpd
235
  msgid "Substring of the user agent, separated by comma"
236
  msgstr ""
237
 
238
+ #: counter-options.php:476
239
  #@ cpd
240
  msgid "Local URLs"
241
  msgstr "Локални URLs"
242
 
243
+ #: counter-options.php:477
244
  #@ cpd
245
  msgid "Show local referrers too."
246
  msgstr "Покажи и местните препращащи сайтове."
247
 
248
+ #: counter-options.php:485
249
  #@ default
250
  msgid "Posts"
251
  msgstr "Публикации"
252
 
253
+ #: counter-options.php:485
254
  #@ default
255
  msgid "Pages"
256
  msgstr "Страници"
257
 
258
+ #: counter-options.php:488
259
  #@ cpd
260
  msgid "Show in lists"
261
  msgstr "Покажи в списъците"
262
 
263
+ #: counter-options.php:489
264
  #@ cpd
265
  msgid "Show \"Reads per Post\" in a new column in post management views."
266
  msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
267
 
268
+ #: counter-options.php:497
269
  #@ cpd
270
  msgid "Start Values"
271
  msgstr "Начални стойности"
272
 
273
+ #: counter-options.php:501
274
  #@ cpd
275
  msgid "Here you can change the date of first count and add a start count."
276
  msgstr "Тук можете да промените началната дата и да добавите нова дата."
277
 
278
+ #: counter-options.php:505
279
  #@ cpd
280
  msgid "Start date"
281
  msgstr "Начална дата"
282
 
283
+ #: counter-options.php:506
284
  #@ cpd
285
  msgid "Your old Counter starts at?"
286
  msgstr "Кога да стартира Вашия брояч?"
287
 
288
+ #: counter-options.php:509
289
+ #: counter-options.php:513
290
  #@ cpd
291
  msgid "Start count"
292
  msgstr "Стартирай брояча"
293
 
294
+ #: counter-options.php:510
295
  #@ cpd
296
  msgid "Add this value to \"Total visitors\"."
297
  msgstr "Добави тази стойност към \"Общо посетители\"."
298
 
299
+ #: counter-options.php:514
300
  #@ cpd
301
  msgid "Add this value to \"Total reads\"."
302
  msgstr "Добави тази стойност към \"Общо прочетени\"."
303
 
304
+ #: counter-options.php:554
305
  #@ cpd
306
  msgid "Debug mode"
307
  msgstr "Дебъг режим"
308
 
309
+ #: counter-options.php:556
310
  #@ cpd
311
  msgid "Show debug informations at the bottom of all pages."
312
  msgstr "Покажи дебъг информация в дъното на всяка страница."
313
 
314
+ #: counter-options.php:561
315
  #@ cpd
316
  msgid "Update options"
317
  msgstr "Обнови настройките"
318
 
319
+ #: counter-options.php:727
320
  #@ cpd
321
  msgid "GeoIP - Countries"
322
  msgstr "GeoIP - Държави"
323
 
324
+ #: counter-options.php:736
325
  #@ cpd
326
  msgid "Update old counter data"
327
  msgstr "Обнови старите данни на брояча"
328
 
329
+ #: counter-options.php:730
330
  #@ cpd
331
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
332
  msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
333
 
334
+ #: counter-options.php:748
335
  #@ cpd
336
  msgid "Update GeoIP database"
337
  msgstr "Обнови GeoIP базата-данни"
338
 
339
+ #: counter-options.php:743
340
  #@ cpd
341
  msgid "Download a new version of GeoIP.dat file."
342
  msgstr "Изтегли нова версия на GeoIP.dat."
343
 
344
+ #: counter-options.php:753
345
  #@ cpd
346
  msgid "More informations about GeoIP"
347
  msgstr "Повече информация за GeoIP"
348
 
349
+ #: counter-options.php:580
350
+ #: massbots.php:35
351
  #@ cpd
352
  msgid "Mass Bots"
353
  msgstr ""
354
 
355
+ #: counter-options.php:584
356
  #, php-format
357
  #@ cpd
358
  msgid "Show all IPs with more than %s page views per day"
359
  msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
360
 
361
+ #: counter-options.php:585
362
+ #: notes.php:71
363
+ #: userperspan.php:44
364
  #@ cpd
365
  msgid "show"
366
  msgstr "покажи"
367
 
368
+ #: counter-options.php:593
369
  #@ cpd
370
  msgid "IP"
371
  msgstr "IP"
372
 
373
+ #: counter-options.php:594
374
+ #: notes.php:75
375
  #@ cpd
376
  #@ default
377
  msgid "Date"
378
  msgstr "Дата"
379
 
380
+ #: counter-options.php:595
381
  #@ cpd
382
  msgid "Client"
383
  msgstr "Потребител"
384
 
385
+ #: counter-options.php:596
386
  #@ cpd
387
  msgid "Views"
388
  msgstr "Прегледи"
389
 
390
+ #: counter-options.php:611
391
+ #: counter-options.php:627
392
  #, php-format
393
  #@ cpd
394
  msgid "Delete these %s counts"
395
  msgstr "Изтрий тези %s броячи"
396
 
397
+ #: counter-options.php:656
398
+ #: counter-options.php:665
399
  #@ cpd
400
  msgid "Clean the database"
401
  msgstr "Изчисти базата-данни"
402
 
403
+ #: counter-options.php:659
404
  #@ cpd
405
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
406
  msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
407
 
408
+ #: counter-options.php:777
409
+ #: counter-options.php:787
410
  #@ cpd
411
  msgid "Reset the counter"
412
  msgstr "Изтрий брояча"
413
 
414
+ #: counter-options.php:780
415
  #@ cpd
416
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
417
  msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
418
 
419
+ #: counter-options.php:799
420
  #@ cpd
421
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
422
  msgstr ""
423
 
424
+ #: counter-options.php:800
425
  #@ cpd
426
  msgid "Here you can delete the tables and disable \"Count per Day\"."
427
  msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
428
 
429
+ #: counter-options.php:803
430
  #@ cpd
431
  msgid "WARNING"
432
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
433
 
434
+ #: counter-options.php:804
435
  #@ cpd
436
  msgid "These tables (with ALL counter data) will be deleted."
437
  msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
438
 
439
+ #: counter-options.php:806
440
  #@ cpd
441
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
442
  msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
443
 
444
+ #: counter-options.php:786
445
+ #: counter-options.php:809
446
  #@ cpd
447
  msgid "Yes"
448
  msgstr "Да"
449
 
450
+ #: counter-options.php:810
451
  #@ cpd
452
  msgid "You are sure to disable Count per Day and delete all data?"
453
  msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
454
 
455
+ #: counter-options.php:714
456
  #@ cpd
457
  msgid "Support"
458
  msgstr "Поддръжка"
459
 
460
+ #: counter.php:155
461
+ #: counter.php:1197
462
  #@ cpd
463
  msgid "Total reads"
464
  msgstr "Общо прочетени"
465
 
466
+ #: counter.php:156
467
+ #: counter.php:1198
468
  #@ cpd
469
  msgid "Reads today"
470
  msgstr "Прочетени днес"
471
 
472
+ #: counter.php:157
473
+ #: counter.php:1199
474
  #@ cpd
475
  msgid "Reads yesterday"
476
  msgstr "Прочетени вчера"
477
 
478
+ #: counter.php:158
479
+ #: counter.php:1200
480
  #@ cpd
481
  msgid "Reads last week"
482
  msgstr "Прочетени последната седмица"
483
 
484
+ #: counter-core.php:723
485
+ #: counter.php:160
486
+ #: counter.php:1010
487
+ #: counter.php:1202
 
488
  #@ cpd
489
  msgid "Total visitors"
490
  msgstr "Общо посетители"
491
 
492
+ #: counter.php:161
493
+ #: counter.php:1208
494
  #@ cpd
495
  msgid "Visitors currently online"
496
  msgstr "Посетители онлайн"
497
 
498
+ #: counter.php:162
499
+ #: counter.php:1203
500
  #@ cpd
501
  msgid "Visitors today"
502
  msgstr "Посетители днес"
503
 
504
+ #: counter.php:163
505
+ #: counter.php:1204
506
  #@ cpd
507
  msgid "Visitors yesterday"
508
  msgstr "Посетители вчера"
509
 
510
+ #: counter.php:164
511
+ #: counter.php:1205
512
  #@ cpd
513
  msgid "Visitors last week"
514
  msgstr "Посетители през последната седмица"
515
 
516
+ #: counter-core.php:729
517
+ #: counter.php:166
518
+ #: counter.php:263
519
+ #: counter.php:1012
520
+ #: counter.php:1207
521
+ #: userperspan.php:34
 
522
  #@ cpd
523
  msgid "Visitors per day"
524
  msgstr "Посетители по дни"
525
 
526
+ #: counter.php:167
527
+ #: counter.php:825
528
+ #: counter.php:1209
529
  #@ cpd
530
  msgid "Counter starts on"
531
  msgstr "Броячът е стартиран"
532
 
533
+ #: counter.php:788
534
+ #: notes.php:42
535
+ #: notes.php:76
 
 
 
 
 
 
536
  #@ cpd
537
  msgid "Notes"
538
  msgstr "Забележки"
539
 
540
+ #: counter.php:672
 
 
 
 
 
541
  #, php-format
542
  #@ cpd
543
  msgid "The %s most visited posts in last %s days:"
544
  msgstr "Най-много %s посетени публикации в последните %s дни:"
545
 
546
+ #: counter.php:786
547
  #@ default
548
  msgid "Show"
549
  msgstr "Покажи"
550
 
551
+ #: counter.php:821
552
  #@ cpd
553
  msgid "Other"
554
  msgstr "Други"
555
 
556
+ #: counter.php:976
557
  #@ default
558
  msgid "Edit Post"
559
  msgstr "Редактирай публикацията"
560
 
561
+ #: counter.php:985
562
  #@ default
563
  msgid "Category"
564
  msgstr "Категория"
565
 
566
+ #: counter.php:988
567
  #@ default
568
  msgid "Tag"
569
  msgstr "Таг"
570
 
571
+ #: counter.php:991
572
+ #: massbots.php:52
573
  #: userperspan.php:63
574
  #@ default
575
  msgid "Front page displays"
576
  msgstr "Изобразяване на предна страница"
577
 
578
+ #: counter-core.php:575
579
+ #: counter-options.php:341
580
+ #: counter-options.php:565
581
  #@ default
582
  msgid "Settings"
583
  msgstr "Настройки"
584
 
585
+ #: counter-core.php:689
586
  #, php-format
587
  #@ cpd
588
  msgid "Time for Count per Day: <code>%s</code>."
589
  msgstr "Време за Count per Day: <code>%s</code>."
590
 
591
+ #: counter-core.php:690
592
  #@ cpd
593
  msgid "Bug? Problem? Question? Hint? Praise?"
594
  msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
595
 
596
+ #: counter-core.php:691
597
  #, php-format
598
  #@ cpd
599
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
600
  msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
601
 
602
+ #: counter-core.php:692
603
  #@ default
604
  msgid "License"
605
  msgstr "Лиценз"
606
 
607
+ #: counter.php:262
 
608
  #@ cpd
609
  msgid "Reads per day"
610
  msgstr "Прочетени по дни"
611
 
612
+ #: counter-core.php:725
613
+ #: counter.php:1206
614
  #@ cpd
615
  msgid "Visitors per month"
616
  msgstr "Посетители по месеци"
617
 
618
+ #: counter-core.php:726
619
+ #: counter.php:1201
620
  #@ cpd
621
  msgid "Reads per month"
622
  msgstr "Прочетени по месеци"
623
 
624
+ #: counter-core.php:728
625
  #@ cpd
626
  msgid "Latest Counts"
627
  msgstr "Последни броячи"
628
 
629
+ #: counter-core.php:730
630
  #@ default
631
  msgid "Plugin"
632
  msgstr "Разширение"
633
 
634
+ #: counter-core.php:734
635
  #@ cpd
636
  msgid "Referrer"
637
  msgstr "Препращащ сайт"
638
 
639
+ #: counter-core.php:738
640
  #@ cpd
641
  msgid "Reads per Country"
642
  msgstr "Прочетени по държави"
643
 
644
+ #: counter-core.php:739
645
  #@ cpd
646
  msgid "Visitors per Country"
647
  msgstr "Посетители по държави"
648
 
649
+ #: counter-core.php:754
650
+ #: counter.php:1124
651
  #@ cpd
652
  msgid "Statistics"
653
  msgstr "Статистика"
654
 
655
+ #: counter.php:353
656
+ #: counter.php:1041
657
  #@ cpd
658
  msgid "Map"
659
  msgstr "Карта"
660
 
661
+ #: counter.php:1196
662
  #@ cpd
663
  msgid "This post"
664
  msgstr "Тази публикация"
665
 
666
+ #: counter.php:1220
667
  #@ default
668
  msgid "Title"
669
  msgstr "Заглавие"
670
 
671
+ #: geoip/geoip.php:93
672
  #@ cpd
673
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
674
  msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
675
 
676
+ #: geoip/geoip.php:117
677
  #@ cpd
678
  msgid "New GeoIP database installed."
679
  msgstr "Новата GeoIP база-данни е инсталирана."
680
 
681
+ #: geoip/geoip.php:119
682
  #@ cpd
683
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
684
  msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
685
 
686
+ #: notes.php:77
 
 
 
 
 
687
  #@ default
688
  msgid "Action"
689
  msgstr "Действие"
690
 
691
+ #: notes.php:82
692
  #@ cpd
693
  msgid "add"
694
  msgstr "добави"
695
 
696
+ #: notes.php:98
697
  #@ cpd
698
  msgid "save"
699
  msgstr "запази"
700
 
701
+ #: notes.php:99
702
  #@ cpd
703
  msgid "delete"
704
  msgstr "изтрий"
705
 
706
+ #: notes.php:110
707
  #@ cpd
708
  msgid "edit"
709
  msgstr "редакция"
710
 
711
+ #: userperspan.php:38
712
  #@ cpd
713
  msgid "Start"
714
  msgstr "Начало"
715
 
716
+ #: userperspan.php:40
717
  #@ cpd
718
  msgid "End"
719
  msgstr "Край"
720
 
721
+ #: userperspan.php:42
722
  #@ cpd
723
  msgid "PostID"
724
  msgstr "PostID"
725
 
726
+ #: userperspan.php:50
727
  #@ cpd
728
  msgid "no data found"
729
  msgstr "няма намерени данни"
730
 
731
+ #: counter-options.php:468
732
  #@ cpd
733
+ msgid "Referrers - Entries"
734
  msgstr ""
735
 
736
+ #: counter-options.php:469
737
  #@ cpd
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr ""
740
 
741
+ #: counter-options.php:472
742
  #@ cpd
743
+ msgid "Referrers - Days"
744
  msgstr ""
745
 
746
+ #: counter.php:845
747
+ #, php-format
748
  #@ cpd
749
+ msgid "The %s referrers in last %s days:"
750
  msgstr ""
751
 
752
+ #: counter-core.php:724
753
  #@ cpd
754
+ msgid "Visitors online"
755
  msgstr ""
756
 
757
+ #: counter-core.php:186
758
  #, php-format
759
  #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
+ #: counter-core.php:917
764
  #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
  msgstr ""
972
 
locale/cpd-da_DK.mo CHANGED
Binary file
locale/cpd-da_DK.po CHANGED
@@ -5,6 +5,7 @@ msgstr ""
5
  "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,774 +13,961 @@ msgstr ""
12
  "X-Poedit-Language: Danish\n"
13
  "X-Poedit-Country: DENMARK\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
16
  "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
17
- "X-Textdomain-Support: yes\n"
18
- "Language-Team: \n"
19
  "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
 
20
 
 
21
  #@ cpd
22
- #: counter-options.php:46
23
  msgid "Options updated"
24
  msgstr "Indstillingerne er blevet gemt"
25
 
26
- #@ cpd
27
- #: counter-options.php:57
28
  #, php-format
 
29
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
  msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
31
 
 
32
  #@ cpd
33
- #: counter-options.php:62
34
  msgid "update next"
35
  msgstr "opdatér næste"
36
 
37
- #@ cpd
38
- #: counter-options.php:104
39
  #, php-format
 
40
  msgid "Mass Bots cleaned. %s counts deleted."
41
  msgstr "Massebots renset. %s rækker slettet."
42
 
43
- #@ cpd
44
- #: counter-options.php:111
45
  #, php-format
 
46
  msgid "Database cleaned. %s rows deleted."
47
  msgstr "Databasen renset. %s rækker slettet."
48
 
 
49
  #@ cpd
50
- #: counter-options.php:117
51
  msgid "Counter reseted."
52
  msgstr "Tæller nulstillet."
53
 
 
 
54
  #@ cpd
55
- #: counter-options.php:121
56
- #: counter-options.php:496
57
  msgid "UNINSTALL Count per Day"
58
  msgstr "AFINSTALLÉR Count per Day"
59
 
60
- #@ cpd
61
- #: counter-options.php:126
62
- #: counter-options.php:128
63
- #: counter-options.php:130
64
  #, php-format
 
65
  msgid "Table %s deleted"
66
  msgstr "Tabellen %s blev slettet"
67
 
 
68
  #@ cpd
69
- #: counter-options.php:132
70
  msgid "Options deleted"
71
  msgstr "Indstillinger slettet"
72
 
 
 
73
  #@ cpd
74
- #: counter-options.php:156
75
- #: counter-options.php:481
76
  msgid "Uninstall"
77
  msgstr "Afinstallér"
78
 
 
79
  #@ cpd
80
- #: counter-options.php:157
81
  msgid "Click here"
82
  msgstr "Klik her"
83
 
 
84
  #@ cpd
85
- #: counter-options.php:157
86
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
  msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
88
 
 
89
  #@ cpd
90
- #: counter-options.php:179
91
- msgid "Options"
92
- msgstr "Indstillinger"
93
-
94
- #@ cpd
95
- #: counter-options.php:190
96
  msgid "Online time"
97
  msgstr "Tid online"
98
 
 
99
  #@ cpd
100
- #: counter-options.php:191
101
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
  msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
103
 
 
104
  #@ cpd
105
- #: counter-options.php:194
106
  msgid "Logged on Users"
107
  msgstr "Indloggede brugere"
108
 
 
109
  #@ cpd
110
- #: counter-options.php:196
111
  msgid "count too"
112
  msgstr "tæl også"
113
 
 
114
  #@ cpd
115
- #: counter-options.php:197
116
  msgid "until User Level"
117
  msgstr "til og med brugerniveau"
118
 
 
119
  #@ cpd
120
- #: counter-options.php:208
121
  msgid "Auto counter"
122
  msgstr "Auto-tæller"
123
 
 
124
  #@ cpd
125
- #: counter-options.php:209
126
  msgid "Counts automatically single-posts and pages, no changes on template needed."
127
  msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
128
 
 
129
  #@ cpd
130
- #: counter-options.php:212
131
  msgid "Bots to ignore"
132
  msgstr "Ignorér følgende bots"
133
 
 
134
  #@ cpd
135
- #: counter-options.php:216
136
  msgid "Anonymous IP"
137
  msgstr "Anonymt IP-nummer"
138
 
 
139
  #@ cpd
140
- #: counter-options.php:220
141
  msgid "Cache"
142
  msgstr "Cache"
143
 
 
144
  #@ cpd
145
- #: counter-options.php:221
146
  msgid "I use a cache plugin. Count these visits with ajax."
147
  msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
148
 
 
149
  #@ cpd
150
- #: counter-options.php:331
151
  msgid "Update options"
152
  msgstr "Opdatér indstillinger"
153
 
 
154
  #@ default
155
- #: counter-options.php:233
156
  msgid "Dashboard"
157
  msgstr "Kontrolpanel"
158
 
 
 
159
  #@ cpd
160
- #: counter-options.php:236
161
- #: counter.php:1754
162
  msgid "Visitors per post"
163
  msgstr "Besøgende per indlæg"
164
 
 
 
165
  #@ cpd
166
- #: counter-options.php:237
167
- #: counter-options.php:241
168
  msgid "How many posts do you want to see on dashboard page?"
169
  msgstr "Hvor mange indlæg vil du se på kontrolpanel"
170
 
 
171
  #@ cpd
172
- #: counter-options.php:240
173
  msgid "Latest Counts - Posts"
174
  msgstr "Seneste læste - Indlæg"
175
 
 
176
  #@ cpd
177
- #: counter-options.php:244
178
  msgid "Latest Counts - Days"
179
  msgstr "Seneste læste - Dage"
180
 
 
 
 
181
  #@ cpd
182
- #: counter-options.php:245
183
- #: counter-options.php:249
184
- #: counter-options.php:275
185
  msgid "How many days do you want look back?"
186
  msgstr "Hvor mange dage vil du se tilbage?"
187
 
 
188
  #@ cpd
189
- #: counter-options.php:248
190
  msgid "Chart - Days"
191
  msgstr "Diagram - Dage"
192
 
 
193
  #@ cpd
194
- #: counter-options.php:252
195
  msgid "Chart - Height"
196
  msgstr "Diagram - Højde"
197
 
 
198
  #@ cpd
199
- #: counter-options.php:253
200
  msgid "Height of the biggest bar"
201
  msgstr "Højde på den største søjle"
202
 
 
203
  #@ cpd
204
- #: counter-options.php:261
205
  msgid "Countries"
206
  msgstr "Lande"
207
 
 
208
  #@ cpd
209
- #: counter-options.php:262
210
  msgid "How many countries do you want to see on dashboard page?"
211
  msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
212
 
 
 
213
  #@ cpd
214
- #: counter-options.php:266
215
- #: counter.php:1760
216
  msgid "Browsers"
217
  msgstr "Browsere"
218
 
 
219
  #@ cpd
220
- #: counter-options.php:267
221
  msgid "Substring of the user agent, separated by comma"
222
  msgstr "Delstrenge, der identificerer en browser, kommasepareret"
223
 
 
224
  #@ cpd
225
- #: counter-options.php:290
226
  msgid "Show in lists"
227
  msgstr "Vis som liste"
228
 
 
229
  #@ cpd
230
- #: counter-options.php:291
231
  msgid "Show \"Reads per Post\" in a new column in post management views."
232
  msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
233
 
 
234
  #@ cpd
235
- #: counter-options.php:299
236
  msgid "Start Values"
237
  msgstr "Startværdier"
238
 
 
239
  #@ cpd
240
- #: counter-options.php:303
241
  msgid "Here you can change the date of first count and add a start count."
242
  msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
243
 
 
244
  #@ cpd
245
- #: counter-options.php:307
246
  msgid "Start date"
247
  msgstr "Startdato"
248
 
 
249
  #@ cpd
250
- #: counter-options.php:308
251
  msgid "Your old Counter starts at?"
252
  msgstr "Hvornår starter din gamle tæller?"
253
 
 
 
254
  #@ cpd
255
- #: counter-options.php:311
256
- #: counter-options.php:315
257
  msgid "Start count"
258
  msgstr "Start-tæller"
259
 
 
260
  #@ cpd
261
- #: counter-options.php:312
262
  msgid "Add this value to \"Total visitors\"."
263
  msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
264
 
 
265
  #@ cpd
266
- #: counter-options.php:316
267
  msgid "Add this value to \"Total reads\"."
268
  msgstr "Tilføj denne værdi til \"Læst i alt\"."
269
 
 
270
  #@ cpd
271
- #: counter-options.php:324
272
  msgid "Debug mode"
273
  msgstr "Debug-modus"
274
 
 
275
  #@ cpd
276
- #: counter-options.php:326
277
  msgid "Show debug informations at the bottom of all pages."
278
  msgstr "Vis debug-information i bunden af alle sider."
279
 
 
280
  #@ cpd
281
- #: counter-options.php:340
282
  msgid "GeoIP - Countries"
283
  msgstr "GeoIP - Lande"
284
 
 
285
  #@ cpd
286
- #: counter-options.php:349
287
  msgid "Update old counter data"
288
  msgstr "Opdatér gamle tællerdata"
289
 
 
290
  #@ cpd
291
- #: counter-options.php:362
292
  msgid "Update GeoIP database"
293
  msgstr "Opdatér GeoIP-database"
294
 
 
295
  #@ cpd
296
- #: counter-options.php:365
297
  msgid "Download a new version of GeoIP.dat file."
298
  msgstr "Download en ny version af GeoIP.dat-filen."
299
 
 
300
  #@ cpd
301
- #: counter-options.php:371
302
  msgid "More informations about GeoIP"
303
  msgstr "Flere oplysninger om GeoIP"
304
 
 
 
305
  #@ cpd
306
- #: counter-options.php:386
307
- #: massbots.php:33
308
  msgid "Mass Bots"
309
  msgstr "Massebots"
310
 
311
- #@ cpd
312
- #: counter-options.php:390
313
  #, php-format
 
314
  msgid "Show all IPs with more than %s page views per day"
315
  msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
316
 
 
 
 
317
  #@ cpd
318
- #: counter-options.php:391
319
- #: notes.php:76
320
- #: userperspan.php:43
321
  msgid "show"
322
  msgstr "vis"
323
 
 
324
  #@ cpd
325
- #: counter-options.php:399
326
  msgid "IP"
327
  msgstr "IP"
328
 
 
 
329
  #@ cpd
330
  #@ default
331
- #: counter-options.php:400
332
- #: notes.php:80
333
  msgid "Date"
334
  msgstr "Dato"
335
 
 
336
  #@ cpd
337
- #: counter-options.php:401
338
  msgid "Client"
339
  msgstr "Klient"
340
 
 
341
  #@ cpd
342
- #: counter-options.php:402
343
  msgid "Views"
344
  msgstr "Visninger"
345
 
346
- #@ cpd
347
- #: counter-options.php:413
348
- #: counter-options.php:435
349
  #, php-format
 
350
  msgid "Delete these %s counts"
351
  msgstr "Slet disse %s hits"
352
 
 
 
353
  #@ cpd
354
- #: counter-options.php:445
355
- #: counter-options.php:454
356
  msgid "Clean the database"
357
  msgstr "Rens databasen"
358
 
 
359
  #@ cpd
360
- #: counter-options.php:448
361
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
362
  msgstr "Du kan rense tællertabellen for \"spam-data\".<br />Når du tilføjer nye bots ovenfor, forbliver de gamle \"spam-data\" i databasen.<br />Her kan du køre bot-filteret igen og slette bot-besøgene."
363
 
 
 
364
  #@ cpd
365
- #: counter-options.php:463
366
- #: counter-options.php:472
367
  msgid "Reset the counter"
368
  msgstr "Nulstil tælleren"
369
 
 
370
  #@ cpd
371
- #: counter-options.php:466
372
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
373
  msgstr "Du kan nulstille tælleren ved at tømme tabellen. Alt bliver nulstillet.<br />Tag en sikkerhedskopi, hvis du har brug for de aktuelle data."
374
 
 
375
  #@ cpd
376
- #: counter-options.php:484
377
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
378
  msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
379
 
 
380
  #@ cpd
381
- #: counter-options.php:485
382
  msgid "Here you can delete the tables and disable \"Count per Day\"."
383
  msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
384
 
 
385
  #@ cpd
386
- #: counter-options.php:488
387
  msgid "WARNING"
388
  msgstr "ADVARSEL"
389
 
 
390
  #@ cpd
391
- #: counter-options.php:489
392
  msgid "These tables (with ALL counter data) will be deleted."
393
  msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
394
 
 
395
  #@ cpd
396
- #: counter-options.php:491
397
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
398
  msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
399
 
 
 
400
  #@ cpd
401
- #: counter-options.php:495
402
  msgid "Yes"
403
  msgstr "Ja"
404
 
 
405
  #@ cpd
406
- #: counter-options.php:496
407
  msgid "You are sure to disable Count per Day and delete all data?"
408
  msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
409
 
 
410
  #@ cpd
411
- #: counter-options.php:504
412
  msgid "Support"
413
  msgstr "Support"
414
 
415
- #@ cpd
416
- #: counter.php:1716
417
  #, php-format
 
418
  msgid "Time for Count per Day: <code>%s</code>."
419
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
420
 
 
421
  #@ cpd
422
- #: counter.php:1717
423
  msgid "Bug? Problem? Question? Hint? Praise?"
424
  msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
425
 
426
- #@ cpd
427
- #: counter.php:1718
428
  #, php-format
 
429
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
430
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
431
 
 
 
432
  #@ cpd
433
- #: counter.php:524
434
- #: counter.php:2219
435
  msgid "Total reads"
436
  msgstr "Læsninger i alt"
437
 
 
 
438
  #@ cpd
439
- #: counter.php:525
440
- #: counter.php:2220
441
  msgid "Reads today"
442
  msgstr "Læsninger i dag"
443
 
 
 
444
  #@ cpd
445
- #: counter.php:526
446
- #: counter.php:2221
447
  msgid "Reads yesterday"
448
  msgstr "Læsninger i går"
449
 
 
 
 
 
450
  #@ cpd
451
- #: counter.php:529
452
- #: counter.php:534
453
- #: counter.php:1604
454
- #: counter.php:1750
455
- #: counter.php:2224
456
  msgid "Total visitors"
457
  msgstr "Antal besøgende i alt"
458
 
 
 
459
  #@ cpd
460
- #: counter.php:530
461
- #: counter.php:2230
462
  msgid "Visitors currently online"
463
  msgstr "Besøgende online lige nu"
464
 
 
 
465
  #@ cpd
466
- #: counter.php:531
467
- #: counter.php:2225
468
  msgid "Visitors today"
469
  msgstr "Besøgende i dag"
470
 
 
 
471
  #@ cpd
472
- #: counter.php:532
473
- #: counter.php:2226
474
  msgid "Visitors yesterday"
475
  msgstr "Besøgende i går"
476
 
 
 
477
  #@ cpd
478
- #: counter.php:533
479
- #: counter.php:2227
480
  msgid "Visitors last week"
481
  msgstr "Besøgende sidste weekend"
482
 
 
 
 
 
 
 
483
  #@ cpd
484
- #: counter.php:535
485
- #: counter.php:636
486
- #: counter.php:1606
487
- #: counter.php:1756
488
- #: counter.php:1765
489
- #: counter.php:2229
490
- #: userperspan.php:33
491
  msgid "Visitors per day"
492
  msgstr "Besøgende per dag"
493
 
 
 
 
494
  #@ cpd
495
- #: counter.php:536
496
- #: counter.php:2231
497
  msgid "Counter starts on"
498
  msgstr "Tæller starter på"
499
 
 
 
 
500
  #@ cpd
501
- #: counter.php:819
502
- msgid "days"
503
- msgstr "dage"
504
-
505
- #@ cpd
506
- #: counter.php:822
507
- #: counter.php:1376
508
- #: notes.php:47
509
- #: notes.php:81
510
  msgid "Notes"
511
  msgstr "Noter"
512
 
513
- #@ cpd
514
- #: counter.php:845
515
- msgid "no reads at this time"
516
- msgstr "Ikke læst pt."
517
-
518
- #@ cpd
519
- #: counter.php:1257
520
  #, php-format
 
521
  msgid "The %s most visited posts in last %s days:"
522
  msgstr "De %s mest sete indlæg i de sidste %s dage:"
523
 
 
524
  #@ default
525
- #: counter.php:1374
526
  msgid "Show"
527
  msgstr "Vis"
528
 
 
529
  #@ cpd
530
- #: counter.php:1421
531
  msgid "Other"
532
  msgstr "Andre"
533
 
 
534
  #@ default
535
- #: counter.php:1505
536
  msgid "Edit Post"
537
  msgstr "Redigér indlæg"
538
 
539
- #@ default
540
- #: counter.php:1520
541
- #: massbots.php:50
542
  #: userperspan.php:63
 
543
  msgid "Front page displays"
544
  msgstr "Visninger af forsiden"
545
 
 
 
 
546
  #@ default
547
- #: counter.php:1591
548
  msgid "Settings"
549
  msgstr "Indstillinger"
550
 
551
  # tjekkes
 
 
 
 
552
  #@ cpd
553
- #: counter-options.php:225
554
- #: counter.php:528
555
- #: counter.php:1661
556
  msgid "Reads"
557
  msgstr "Læsninger"
558
 
 
559
  #@ cpd
560
- #: counter.php:2218
561
  msgid "This post"
562
  msgstr "Dette indlæg"
563
 
 
564
  #@ cpd
565
- #: counter.php:635
566
- #: counter.php:1766
567
  msgid "Reads per day"
568
  msgstr "Læsninger per dag"
569
 
 
 
570
  #@ cpd
571
- #: counter.php:1752
572
- #: counter.php:2228
573
  msgid "Visitors per month"
574
  msgstr "Besøgende per måned"
575
 
 
576
  #@ cpd
577
- #: counter.php:1755
578
  msgid "Latest Counts"
579
  msgstr "Seneste læste"
580
 
 
581
  #@ default
582
- #: counter.php:1757
583
  msgid "Plugin"
584
  msgstr "Plugin"
585
 
 
586
  #@ cpd
587
- #: counter.php:1770
588
  msgid "Reads per Country"
589
  msgstr "Læsninger per land"
590
 
 
591
  #@ cpd
592
- #: counter.php:1771
593
  msgid "Visitors per Country"
594
  msgstr "Besøgende per land"
595
 
 
 
596
  #@ cpd
597
- #: counter.php:1786
598
- #: counter.php:2147
599
  msgid "Statistics"
600
  msgstr "Statistik"
601
 
 
 
602
  #@ cpd
603
- #: counter.php:900
604
- #: counter.php:1856
605
  msgid "Map"
606
  msgstr "Kort"
607
 
608
- #@ cpd
609
- #: notes.php:81
610
- msgid "(1 per day)"
611
- msgstr "(1 gang per dag)"
612
-
613
  #@ default
614
- #: notes.php:82
615
  msgid "Action"
616
  msgstr "Handling"
617
 
 
618
  #@ cpd
619
- #: notes.php:87
620
  msgid "add"
621
  msgstr "tilføj"
622
 
 
623
  #@ cpd
624
- #: notes.php:102
625
  msgid "save"
626
  msgstr "gem"
627
 
 
628
  #@ cpd
629
- #: notes.php:103
630
  msgid "delete"
631
  msgstr "slet"
632
 
 
633
  #@ cpd
634
- #: notes.php:114
635
  msgid "edit"
636
  msgstr "redigér"
637
 
 
638
  #@ cpd
639
- #: userperspan.php:37
640
  msgid "Start"
641
  msgstr "Start"
642
 
 
643
  #@ cpd
644
- #: userperspan.php:39
645
  msgid "End"
646
  msgstr "Slut"
647
 
 
648
  #@ cpd
649
- #: userperspan.php:41
650
  msgid "PostID"
651
  msgstr "Indlægs-id"
652
 
 
653
  #@ cpd
654
- #: userperspan.php:49
655
  msgid "no data found"
656
  msgstr "ingen data fundet"
657
 
 
658
  #@ cpd
659
- #: geoip/geoip.php:108
660
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
661
  msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
662
 
 
663
  #@ cpd
664
- #: geoip/geoip.php:132
665
  msgid "New GeoIP database installed."
666
  msgstr "Ny GeoIP-database installeret."
667
 
 
668
  #@ cpd
669
- #: geoip/geoip.php:134
670
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
671
  msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
672
 
 
673
  #@ cpd
674
- #: counter-options.php:352
675
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
676
  msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
677
 
 
678
  #@ cpd
679
- #: counter-options.php:186
680
  msgid "Counter"
681
  msgstr "Tæller"
682
 
 
683
  #@ cpd
684
- #: counter-options.php:224
685
  msgid "Clients and referrers"
686
  msgstr "Klienter og henvisere"
687
 
 
688
  #@ cpd
689
- #: counter-options.php:225
690
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
691
  msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
692
 
 
693
  #@ cpd
694
- #: counter-options.php:278
695
  msgid "Local URLs"
696
  msgstr "Lokale adresser"
697
 
 
698
  #@ cpd
699
- #: counter-options.php:279
700
  msgid "Show local referrers too."
701
  msgstr "Vis også lokale henvisninger"
702
 
 
703
  #@ default
704
- #: counter-options.php:287
705
  msgid "Posts"
706
  msgstr "Indlæg"
707
 
 
708
  #@ default
709
- #: counter-options.php:287
710
  msgid "Pages"
711
  msgstr "Sider"
712
 
 
 
713
  #@ cpd
714
- #: counter.php:527
715
- #: counter.php:2222
716
  msgid "Reads last week"
717
  msgstr "Læsninger i sidste uge"
718
 
 
719
  #@ default
720
- #: counter.php:1514
721
  msgid "Category"
722
  msgstr "Kategori"
723
 
 
724
  #@ default
725
- #: counter.php:1517
726
  msgid "Tag"
727
  msgstr "Tag"
728
 
 
729
  #@ default
730
- #: counter.php:1719
731
  msgid "License"
732
  msgstr "Licens"
733
 
 
 
734
  #@ cpd
735
- #: counter.php:1753
736
- #: counter.php:2223
737
  msgid "Reads per month"
738
  msgstr "Læsninger per måned"
739
 
 
740
  #@ cpd
741
- #: counter.php:1761
742
  msgid "Referrer"
743
  msgstr "Henviser"
744
 
 
745
  #@ default
746
- #: counter.php:2242
747
  msgid "Title"
748
  msgstr "Titel"
749
 
 
750
  #@ cpd
751
- #: counter-options.php:256
752
- msgid "Old Charts"
753
- msgstr "Gamle diagrammer"
754
-
755
- #@ cpd
756
- #: counter-options.php:257
757
- msgid "Show old bar charts."
758
- msgstr "Vis det gamle søjlediagram"
759
-
760
- #@ cpd
761
- #: counter-options.php:270
762
  msgid "Referrers - Entries"
763
  msgstr "Henvisere - poster"
764
 
 
765
  #@ cpd
766
- #: counter-options.php:271
767
  msgid "How many referrers do you want to see on dashboard page?"
768
  msgstr "Hvor mange henvisere vil du se på dashboardet?"
769
 
 
770
  #@ cpd
771
- #: counter-options.php:274
772
  msgid "Referrers - Days"
773
  msgstr "Henvisere - Dage"
774
 
775
- #@ cpd
776
- #: counter.php:1449
777
  #, php-format
 
778
  msgid "The %s referrers in last %s days:"
779
  msgstr "De %s henvisere i de sidste %s dage:"
780
 
 
781
  #@ cpd
782
- #: counter.php:1751
783
  msgid "Visitors online"
784
  msgstr "Brugere online"
785
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
8
+ "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-Language: Danish\n"
14
  "X-Poedit-Country: DENMARK\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
 
19
  "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
+ "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:49
23
  #@ cpd
 
24
  msgid "Options updated"
25
  msgstr "Indstillingerne er blevet gemt"
26
 
27
+ #: counter-options.php:60
 
28
  #, php-format
29
+ #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
32
 
33
+ #: counter-options.php:65
34
  #@ cpd
 
35
  msgid "update next"
36
  msgstr "opdatér næste"
37
 
38
+ #: counter-options.php:102
 
39
  #, php-format
40
+ #@ cpd
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Massebots renset. %s rækker slettet."
43
 
44
+ #: counter-options.php:112
 
45
  #, php-format
46
+ #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Databasen renset. %s rækker slettet."
49
 
50
+ #: counter-options.php:122
51
  #@ cpd
 
52
  msgid "Counter reseted."
53
  msgstr "Tæller nulstillet."
54
 
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
  #@ cpd
 
 
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "AFINSTALLÉR Count per Day"
60
 
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
 
64
  #, php-format
65
+ #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Tabellen %s blev slettet"
68
 
69
+ #: counter-options.php:135
70
  #@ cpd
 
71
  msgid "Options deleted"
72
  msgstr "Indstillinger slettet"
73
 
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
  #@ cpd
 
 
77
  msgid "Uninstall"
78
  msgstr "Afinstallér"
79
 
80
+ #: counter-options.php:317
81
  #@ cpd
 
82
  msgid "Click here"
83
  msgstr "Klik her"
84
 
85
+ #: counter-options.php:317
86
  #@ cpd
 
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
89
 
90
+ #: counter-options.php:355
91
  #@ cpd
 
 
 
 
 
 
92
  msgid "Online time"
93
  msgstr "Tid online"
94
 
95
+ #: counter-options.php:356
96
  #@ cpd
 
97
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
  msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
99
 
100
+ #: counter-options.php:359
101
  #@ cpd
 
102
  msgid "Logged on Users"
103
  msgstr "Indloggede brugere"
104
 
105
+ #: counter-options.php:361
106
  #@ cpd
 
107
  msgid "count too"
108
  msgstr "tæl også"
109
 
110
+ #: counter-options.php:362
111
  #@ cpd
 
112
  msgid "until User Level"
113
  msgstr "til og med brugerniveau"
114
 
115
+ #: counter-options.php:373
116
  #@ cpd
 
117
  msgid "Auto counter"
118
  msgstr "Auto-tæller"
119
 
120
+ #: counter-options.php:374
121
  #@ cpd
 
122
  msgid "Counts automatically single-posts and pages, no changes on template needed."
123
  msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
124
 
125
+ #: counter-options.php:377
126
  #@ cpd
 
127
  msgid "Bots to ignore"
128
  msgstr "Ignorér følgende bots"
129
 
130
+ #: counter-options.php:381
131
  #@ cpd
 
132
  msgid "Anonymous IP"
133
  msgstr "Anonymt IP-nummer"
134
 
135
+ #: counter-options.php:385
136
  #@ cpd
 
137
  msgid "Cache"
138
  msgstr "Cache"
139
 
140
+ #: counter-options.php:386
141
  #@ cpd
 
142
  msgid "I use a cache plugin. Count these visits with ajax."
143
  msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
144
 
145
+ #: counter-options.php:561
146
  #@ cpd
 
147
  msgid "Update options"
148
  msgstr "Opdatér indstillinger"
149
 
150
+ #: counter-options.php:403
151
  #@ default
 
152
  msgid "Dashboard"
153
  msgstr "Kontrolpanel"
154
 
155
+ #: counter-core.php:727
156
+ #: counter-options.php:438
157
  #@ cpd
 
 
158
  msgid "Visitors per post"
159
  msgstr "Besøgende per indlæg"
160
 
161
+ #: counter-options.php:439
162
+ #: counter-options.php:443
163
  #@ cpd
 
 
164
  msgid "How many posts do you want to see on dashboard page?"
165
  msgstr "Hvor mange indlæg vil du se på kontrolpanel"
166
 
167
+ #: counter-options.php:442
168
  #@ cpd
 
169
  msgid "Latest Counts - Posts"
170
  msgstr "Seneste læste - Indlæg"
171
 
172
+ #: counter-options.php:446
173
  #@ cpd
 
174
  msgid "Latest Counts - Days"
175
  msgstr "Seneste læste - Dage"
176
 
177
+ #: counter-options.php:447
178
+ #: counter-options.php:451
179
+ #: counter-options.php:473
180
  #@ cpd
 
 
 
181
  msgid "How many days do you want look back?"
182
  msgstr "Hvor mange dage vil du se tilbage?"
183
 
184
+ #: counter-options.php:450
185
  #@ cpd
 
186
  msgid "Chart - Days"
187
  msgstr "Diagram - Dage"
188
 
189
+ #: counter-options.php:454
190
  #@ cpd
 
191
  msgid "Chart - Height"
192
  msgstr "Diagram - Højde"
193
 
194
+ #: counter-options.php:455
195
  #@ cpd
 
196
  msgid "Height of the biggest bar"
197
  msgstr "Højde på den største søjle"
198
 
199
+ #: counter-options.php:459
200
  #@ cpd
 
201
  msgid "Countries"
202
  msgstr "Lande"
203
 
204
+ #: counter-options.php:460
205
  #@ cpd
 
206
  msgid "How many countries do you want to see on dashboard page?"
207
  msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
208
 
209
+ #: counter-core.php:733
210
+ #: counter-options.php:464
211
  #@ cpd
 
 
212
  msgid "Browsers"
213
  msgstr "Browsere"
214
 
215
+ #: counter-options.php:465
216
  #@ cpd
 
217
  msgid "Substring of the user agent, separated by comma"
218
  msgstr "Delstrenge, der identificerer en browser, kommasepareret"
219
 
220
+ #: counter-options.php:488
221
  #@ cpd
 
222
  msgid "Show in lists"
223
  msgstr "Vis som liste"
224
 
225
+ #: counter-options.php:489
226
  #@ cpd
 
227
  msgid "Show \"Reads per Post\" in a new column in post management views."
228
  msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
229
 
230
+ #: counter-options.php:497
231
  #@ cpd
 
232
  msgid "Start Values"
233
  msgstr "Startværdier"
234
 
235
+ #: counter-options.php:501
236
  #@ cpd
 
237
  msgid "Here you can change the date of first count and add a start count."
238
  msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
239
 
240
+ #: counter-options.php:505
241
  #@ cpd
 
242
  msgid "Start date"
243
  msgstr "Startdato"
244
 
245
+ #: counter-options.php:506
246
  #@ cpd
 
247
  msgid "Your old Counter starts at?"
248
  msgstr "Hvornår starter din gamle tæller?"
249
 
250
+ #: counter-options.php:509
251
+ #: counter-options.php:513
252
  #@ cpd
 
 
253
  msgid "Start count"
254
  msgstr "Start-tæller"
255
 
256
+ #: counter-options.php:510
257
  #@ cpd
 
258
  msgid "Add this value to \"Total visitors\"."
259
  msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
260
 
261
+ #: counter-options.php:514
262
  #@ cpd
 
263
  msgid "Add this value to \"Total reads\"."
264
  msgstr "Tilføj denne værdi til \"Læst i alt\"."
265
 
266
+ #: counter-options.php:554
267
  #@ cpd
 
268
  msgid "Debug mode"
269
  msgstr "Debug-modus"
270
 
271
+ #: counter-options.php:556
272
  #@ cpd
 
273
  msgid "Show debug informations at the bottom of all pages."
274
  msgstr "Vis debug-information i bunden af alle sider."
275
 
276
+ #: counter-options.php:727
277
  #@ cpd
 
278
  msgid "GeoIP - Countries"
279
  msgstr "GeoIP - Lande"
280
 
281
+ #: counter-options.php:736
282
  #@ cpd
 
283
  msgid "Update old counter data"
284
  msgstr "Opdatér gamle tællerdata"
285
 
286
+ #: counter-options.php:748
287
  #@ cpd
 
288
  msgid "Update GeoIP database"
289
  msgstr "Opdatér GeoIP-database"
290
 
291
+ #: counter-options.php:743
292
  #@ cpd
 
293
  msgid "Download a new version of GeoIP.dat file."
294
  msgstr "Download en ny version af GeoIP.dat-filen."
295
 
296
+ #: counter-options.php:753
297
  #@ cpd
 
298
  msgid "More informations about GeoIP"
299
  msgstr "Flere oplysninger om GeoIP"
300
 
301
+ #: counter-options.php:580
302
+ #: massbots.php:35
303
  #@ cpd
 
 
304
  msgid "Mass Bots"
305
  msgstr "Massebots"
306
 
307
+ #: counter-options.php:584
 
308
  #, php-format
309
+ #@ cpd
310
  msgid "Show all IPs with more than %s page views per day"
311
  msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
312
 
313
+ #: counter-options.php:585
314
+ #: notes.php:71
315
+ #: userperspan.php:44
316
  #@ cpd
 
 
 
317
  msgid "show"
318
  msgstr "vis"
319
 
320
+ #: counter-options.php:593
321
  #@ cpd
 
322
  msgid "IP"
323
  msgstr "IP"
324
 
325
+ #: counter-options.php:594
326
+ #: notes.php:75
327
  #@ cpd
328
  #@ default
 
 
329
  msgid "Date"
330
  msgstr "Dato"
331
 
332
+ #: counter-options.php:595
333
  #@ cpd
 
334
  msgid "Client"
335
  msgstr "Klient"
336
 
337
+ #: counter-options.php:596
338
  #@ cpd
 
339
  msgid "Views"
340
  msgstr "Visninger"
341
 
342
+ #: counter-options.php:611
343
+ #: counter-options.php:627
 
344
  #, php-format
345
+ #@ cpd
346
  msgid "Delete these %s counts"
347
  msgstr "Slet disse %s hits"
348
 
349
+ #: counter-options.php:656
350
+ #: counter-options.php:665
351
  #@ cpd
 
 
352
  msgid "Clean the database"
353
  msgstr "Rens databasen"
354
 
355
+ #: counter-options.php:659
356
  #@ cpd
 
357
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
  msgstr "Du kan rense tællertabellen for \"spam-data\".<br />Når du tilføjer nye bots ovenfor, forbliver de gamle \"spam-data\" i databasen.<br />Her kan du køre bot-filteret igen og slette bot-besøgene."
359
 
360
+ #: counter-options.php:777
361
+ #: counter-options.php:787
362
  #@ cpd
 
 
363
  msgid "Reset the counter"
364
  msgstr "Nulstil tælleren"
365
 
366
+ #: counter-options.php:780
367
  #@ cpd
 
368
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
  msgstr "Du kan nulstille tælleren ved at tømme tabellen. Alt bliver nulstillet.<br />Tag en sikkerhedskopi, hvis du har brug for de aktuelle data."
370
 
371
+ #: counter-options.php:799
372
  #@ cpd
 
373
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
  msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
375
 
376
+ #: counter-options.php:800
377
  #@ cpd
 
378
  msgid "Here you can delete the tables and disable \"Count per Day\"."
379
  msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
380
 
381
+ #: counter-options.php:803
382
  #@ cpd
 
383
  msgid "WARNING"
384
  msgstr "ADVARSEL"
385
 
386
+ #: counter-options.php:804
387
  #@ cpd
 
388
  msgid "These tables (with ALL counter data) will be deleted."
389
  msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
390
 
391
+ #: counter-options.php:806
392
  #@ cpd
 
393
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
  msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
395
 
396
+ #: counter-options.php:786
397
+ #: counter-options.php:809
398
  #@ cpd
 
399
  msgid "Yes"
400
  msgstr "Ja"
401
 
402
+ #: counter-options.php:810
403
  #@ cpd
 
404
  msgid "You are sure to disable Count per Day and delete all data?"
405
  msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
406
 
407
+ #: counter-options.php:714
408
  #@ cpd
 
409
  msgid "Support"
410
  msgstr "Support"
411
 
412
+ #: counter-core.php:689
 
413
  #, php-format
414
+ #@ cpd
415
  msgid "Time for Count per Day: <code>%s</code>."
416
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
417
 
418
+ #: counter-core.php:690
419
  #@ cpd
 
420
  msgid "Bug? Problem? Question? Hint? Praise?"
421
  msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
422
 
423
+ #: counter-core.php:691
 
424
  #, php-format
425
+ #@ cpd
426
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
428
 
429
+ #: counter.php:155
430
+ #: counter.php:1197
431
  #@ cpd
 
 
432
  msgid "Total reads"
433
  msgstr "Læsninger i alt"
434
 
435
+ #: counter.php:156
436
+ #: counter.php:1198
437
  #@ cpd
 
 
438
  msgid "Reads today"
439
  msgstr "Læsninger i dag"
440
 
441
+ #: counter.php:157
442
+ #: counter.php:1199
443
  #@ cpd
 
 
444
  msgid "Reads yesterday"
445
  msgstr "Læsninger i går"
446
 
447
+ #: counter-core.php:723
448
+ #: counter.php:160
449
+ #: counter.php:1010
450
+ #: counter.php:1202
451
  #@ cpd
 
 
 
 
 
452
  msgid "Total visitors"
453
  msgstr "Antal besøgende i alt"
454
 
455
+ #: counter.php:161
456
+ #: counter.php:1208
457
  #@ cpd
 
 
458
  msgid "Visitors currently online"
459
  msgstr "Besøgende online lige nu"
460
 
461
+ #: counter.php:162
462
+ #: counter.php:1203
463
  #@ cpd
 
 
464
  msgid "Visitors today"
465
  msgstr "Besøgende i dag"
466
 
467
+ #: counter.php:163
468
+ #: counter.php:1204
469
  #@ cpd
 
 
470
  msgid "Visitors yesterday"
471
  msgstr "Besøgende i går"
472
 
473
+ #: counter.php:164
474
+ #: counter.php:1205
475
  #@ cpd
 
 
476
  msgid "Visitors last week"
477
  msgstr "Besøgende sidste weekend"
478
 
479
+ #: counter-core.php:729
480
+ #: counter.php:166
481
+ #: counter.php:263
482
+ #: counter.php:1012
483
+ #: counter.php:1207
484
+ #: userperspan.php:34
485
  #@ cpd
 
 
 
 
 
 
 
486
  msgid "Visitors per day"
487
  msgstr "Besøgende per dag"
488
 
489
+ #: counter.php:167
490
+ #: counter.php:825
491
+ #: counter.php:1209
492
  #@ cpd
 
 
493
  msgid "Counter starts on"
494
  msgstr "Tæller starter på"
495
 
496
+ #: counter.php:788
497
+ #: notes.php:42
498
+ #: notes.php:76
499
  #@ cpd
 
 
 
 
 
 
 
 
 
500
  msgid "Notes"
501
  msgstr "Noter"
502
 
503
+ #: counter.php:672
 
 
 
 
 
 
504
  #, php-format
505
+ #@ cpd
506
  msgid "The %s most visited posts in last %s days:"
507
  msgstr "De %s mest sete indlæg i de sidste %s dage:"
508
 
509
+ #: counter.php:786
510
  #@ default
 
511
  msgid "Show"
512
  msgstr "Vis"
513
 
514
+ #: counter.php:821
515
  #@ cpd
 
516
  msgid "Other"
517
  msgstr "Andre"
518
 
519
+ #: counter.php:976
520
  #@ default
 
521
  msgid "Edit Post"
522
  msgstr "Redigér indlæg"
523
 
524
+ #: counter.php:991
525
+ #: massbots.php:52
 
526
  #: userperspan.php:63
527
+ #@ default
528
  msgid "Front page displays"
529
  msgstr "Visninger af forsiden"
530
 
531
+ #: counter-core.php:575
532
+ #: counter-options.php:341
533
+ #: counter-options.php:565
534
  #@ default
 
535
  msgid "Settings"
536
  msgstr "Indstillinger"
537
 
538
  # tjekkes
539
+ #: counter-core.php:639
540
+ #: counter-options.php:392
541
+ #: counter.php:159
542
+ #: counter.php:875
543
  #@ cpd
 
 
 
544
  msgid "Reads"
545
  msgstr "Læsninger"
546
 
547
+ #: counter.php:1196
548
  #@ cpd
 
549
  msgid "This post"
550
  msgstr "Dette indlæg"
551
 
552
+ #: counter.php:262
553
  #@ cpd
 
 
554
  msgid "Reads per day"
555
  msgstr "Læsninger per dag"
556
 
557
+ #: counter-core.php:725
558
+ #: counter.php:1206
559
  #@ cpd
 
 
560
  msgid "Visitors per month"
561
  msgstr "Besøgende per måned"
562
 
563
+ #: counter-core.php:728
564
  #@ cpd
 
565
  msgid "Latest Counts"
566
  msgstr "Seneste læste"
567
 
568
+ #: counter-core.php:730
569
  #@ default
 
570
  msgid "Plugin"
571
  msgstr "Plugin"
572
 
573
+ #: counter-core.php:738
574
  #@ cpd
 
575
  msgid "Reads per Country"
576
  msgstr "Læsninger per land"
577
 
578
+ #: counter-core.php:739
579
  #@ cpd
 
580
  msgid "Visitors per Country"
581
  msgstr "Besøgende per land"
582
 
583
+ #: counter-core.php:754
584
+ #: counter.php:1124
585
  #@ cpd
 
 
586
  msgid "Statistics"
587
  msgstr "Statistik"
588
 
589
+ #: counter.php:353
590
+ #: counter.php:1041
591
  #@ cpd
 
 
592
  msgid "Map"
593
  msgstr "Kort"
594
 
595
+ #: notes.php:77
 
 
 
 
596
  #@ default
 
597
  msgid "Action"
598
  msgstr "Handling"
599
 
600
+ #: notes.php:82
601
  #@ cpd
 
602
  msgid "add"
603
  msgstr "tilføj"
604
 
605
+ #: notes.php:98
606
  #@ cpd
 
607
  msgid "save"
608
  msgstr "gem"
609
 
610
+ #: notes.php:99
611
  #@ cpd
 
612
  msgid "delete"
613
  msgstr "slet"
614
 
615
+ #: notes.php:110
616
  #@ cpd
 
617
  msgid "edit"
618
  msgstr "redigér"
619
 
620
+ #: userperspan.php:38
621
  #@ cpd
 
622
  msgid "Start"
623
  msgstr "Start"
624
 
625
+ #: userperspan.php:40
626
  #@ cpd
 
627
  msgid "End"
628
  msgstr "Slut"
629
 
630
+ #: userperspan.php:42
631
  #@ cpd
 
632
  msgid "PostID"
633
  msgstr "Indlægs-id"
634
 
635
+ #: userperspan.php:50
636
  #@ cpd
 
637
  msgid "no data found"
638
  msgstr "ingen data fundet"
639
 
640
+ #: geoip/geoip.php:93
641
  #@ cpd
 
642
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
  msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
644
 
645
+ #: geoip/geoip.php:117
646
  #@ cpd
 
647
  msgid "New GeoIP database installed."
648
  msgstr "Ny GeoIP-database installeret."
649
 
650
+ #: geoip/geoip.php:119
651
  #@ cpd
 
652
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
  msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
654
 
655
+ #: counter-options.php:730
656
  #@ cpd
 
657
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
  msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
659
 
660
+ #: counter-options.php:351
661
  #@ cpd
 
662
  msgid "Counter"
663
  msgstr "Tæller"
664
 
665
+ #: counter-options.php:389
666
  #@ cpd
 
667
  msgid "Clients and referrers"
668
  msgstr "Klienter og henvisere"
669
 
670
+ #: counter-options.php:392
671
  #@ cpd
 
672
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
  msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
674
 
675
+ #: counter-options.php:476
676
  #@ cpd
 
677
  msgid "Local URLs"
678
  msgstr "Lokale adresser"
679
 
680
+ #: counter-options.php:477
681
  #@ cpd
 
682
  msgid "Show local referrers too."
683
  msgstr "Vis også lokale henvisninger"
684
 
685
+ #: counter-options.php:485
686
  #@ default
 
687
  msgid "Posts"
688
  msgstr "Indlæg"
689
 
690
+ #: counter-options.php:485
691
  #@ default
 
692
  msgid "Pages"
693
  msgstr "Sider"
694
 
695
+ #: counter.php:158
696
+ #: counter.php:1200
697
  #@ cpd
 
 
698
  msgid "Reads last week"
699
  msgstr "Læsninger i sidste uge"
700
 
701
+ #: counter.php:985
702
  #@ default
 
703
  msgid "Category"
704
  msgstr "Kategori"
705
 
706
+ #: counter.php:988
707
  #@ default
 
708
  msgid "Tag"
709
  msgstr "Tag"
710
 
711
+ #: counter-core.php:692
712
  #@ default
 
713
  msgid "License"
714
  msgstr "Licens"
715
 
716
+ #: counter-core.php:726
717
+ #: counter.php:1201
718
  #@ cpd
 
 
719
  msgid "Reads per month"
720
  msgstr "Læsninger per måned"
721
 
722
+ #: counter-core.php:734
723
  #@ cpd
 
724
  msgid "Referrer"
725
  msgstr "Henviser"
726
 
727
+ #: counter.php:1220
728
  #@ default
 
729
  msgid "Title"
730
  msgstr "Titel"
731
 
732
+ #: counter-options.php:468
733
  #@ cpd
 
 
 
 
 
 
 
 
 
 
 
734
  msgid "Referrers - Entries"
735
  msgstr "Henvisere - poster"
736
 
737
+ #: counter-options.php:469
738
  #@ cpd
 
739
  msgid "How many referrers do you want to see on dashboard page?"
740
  msgstr "Hvor mange henvisere vil du se på dashboardet?"
741
 
742
+ #: counter-options.php:472
743
  #@ cpd
 
744
  msgid "Referrers - Days"
745
  msgstr "Henvisere - Dage"
746
 
747
+ #: counter.php:845
 
748
  #, php-format
749
+ #@ cpd
750
  msgid "The %s referrers in last %s days:"
751
  msgstr "De %s henvisere i de sidste %s dage:"
752
 
753
+ #: counter-core.php:724
754
  #@ cpd
 
755
  msgid "Visitors online"
756
  msgstr "Brugere online"
757
 
758
+ #: counter-core.php:186
759
+ #, php-format
760
+ #@ cpd
761
+ msgid "\"Count per Day\" updated to version %s."
762
+ msgstr ""
763
+
764
+ #: counter-core.php:917
765
+ #@ cpd
766
+ msgid "Backup failed! Cannot open file"
767
+ msgstr ""
768
+
769
+ #: counter-core.php:940
770
+ #, php-format
771
+ #@ cpd
772
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
773
+ msgstr ""
774
+
775
+ #: counter-core.php:1027
776
+ #@ cpd
777
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
+ msgstr ""
779
+
780
+ #: counter-core.php:1033
781
+ #, php-format
782
+ #@ cpd
783
+ msgid "Backup of counter table saved in %s."
784
+ msgstr ""
785
+
786
+ #: counter-core.php:1035
787
+ #, php-format
788
+ #@ cpd
789
+ msgid "Backup of counter options and collection saved in %s."
790
+ msgstr ""
791
+
792
+ #: counter-options.php:170
793
+ #@ cpd
794
+ msgid "Collection in progress..."
795
+ msgstr ""
796
+
797
+ #: counter-options.php:240
798
+ #@ cpd
799
+ msgid "Get Visitors per Post..."
800
+ msgstr ""
801
+
802
+ #: counter-options.php:261
803
+ #@ cpd
804
+ msgid "Delete old data..."
805
+ msgstr ""
806
+
807
+ #: counter-options.php:285
808
+ #, php-format
809
+ #@ cpd
810
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
+ msgstr ""
812
+
813
+ #: counter-options.php:294
814
+ #@ cpd
815
+ msgid "Installation of \"Count per Day\" checked"
816
+ msgstr ""
817
+
818
+ #: counter-options.php:342
819
+ #: counter-options.php:566
820
+ #@ default
821
+ msgid "Tools"
822
+ msgstr ""
823
+
824
+ #: counter-options.php:394
825
+ #@ cpd
826
+ msgid "Save URL only, no query string."
827
+ msgstr ""
828
+
829
+ #: counter-options.php:419
830
+ #@ cpd
831
+ msgid "Who can see it"
832
+ msgstr ""
833
+
834
+ #: counter-options.php:428
835
+ #@ cpd
836
+ msgid "custom"
837
+ msgstr ""
838
+
839
+ #: counter-options.php:430
840
+ #@ cpd
841
+ msgid "and higher are allowed to see the statistics page."
842
+ msgstr ""
843
+
844
+ #: counter-options.php:432
845
+ #, php-format
846
+ #@ cpd
847
+ msgid "Set the %s capability %s a user need:"
848
+ msgstr ""
849
+
850
+ #: counter-options.php:522
851
+ #@ cpd
852
+ msgid "Stylesheet"
853
+ msgstr ""
854
+
855
+ #: counter-options.php:525
856
+ #@ cpd
857
+ msgid "NO Stylesheet in Frontend"
858
+ msgstr ""
859
+
860
+ #: counter-options.php:526
861
+ #@ cpd
862
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
+ msgstr ""
864
+
865
+ #: counter-options.php:534
866
+ #: counter-options.php:639
867
+ #@ cpd
868
+ msgid "Backup"
869
+ msgstr ""
870
+
871
+ #: counter-options.php:537
872
+ #@ cpd
873
+ msgid "Entries per pass"
874
+ msgstr ""
875
+
876
+ #: counter-options.php:540
877
+ #@ cpd
878
+ msgid "How many entries should be saved per pass? Default: 10000"
879
+ msgstr ""
880
+
881
+ #: counter-options.php:545
882
+ #@ cpd
883
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
+ msgstr ""
885
+
886
+ #: counter-options.php:643
887
+ #, php-format
888
+ #@ cpd
889
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
+ msgstr ""
891
+
892
+ #: counter-options.php:647
893
+ #@ cpd
894
+ msgid "Backup the database"
895
+ msgstr ""
896
+
897
+ #: counter-options.php:674
898
+ #: counter-options.php:706
899
+ #@ cpd
900
+ msgid "Collect old data"
901
+ msgstr ""
902
+
903
+ #: counter-options.php:679
904
+ #, php-format
905
+ #@ cpd
906
+ msgid "Current size of your counter table %s is %s."
907
+ msgstr ""
908
+
909
+ #: counter-options.php:681
910
+ #@ cpd
911
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
+ msgstr ""
913
+
914
+ #: counter-options.php:686
915
+ #, php-format
916
+ #@ cpd
917
+ msgid "Currently your collection contains data until %s."
918
+ msgstr ""
919
+
920
+ #: counter-options.php:690
921
+ #@ cpd
922
+ msgid "Normally new data will be added to the collection."
923
+ msgstr ""
924
+
925
+ #: counter-options.php:696
926
+ #@ cpd
927
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
+ msgstr ""
929
+
930
+ #: counter-options.php:697
931
+ #, php-format
932
+ #@ cpd
933
+ msgid "All collected data until %s will deleted."
934
+ msgstr ""
935
+
936
+ #: counter-options.php:702
937
+ #, php-format
938
+ #@ cpd
939
+ msgid "Keep entries of last %s full months + current month in counter table."
940
+ msgstr ""
941
+
942
+ #: counter-options.php:761
943
+ #@ cpd
944
+ msgid "ReActivation"
945
+ msgstr ""
946
+
947
+ #: counter-options.php:764
948
+ #@ cpd
949
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
+ msgstr ""
951
+
952
+ #: counter-options.php:769
953
+ #@ cpd
954
+ msgid "ReActivate the plugin"
955
+ msgstr ""
956
+
957
+ #: counter.php:165
958
+ #: counter.php:899
959
+ #@ cpd
960
+ msgid "Visitors"
961
+ msgstr ""
962
+
963
+ #: counter.php:168
964
+ #: counter.php:169
965
+ #@ cpd
966
+ msgid "Most visited day"
967
+ msgstr ""
968
+
969
+ #: counter.php:1239
970
+ #@ cpd
971
+ msgid "drag and drop to sort"
972
+ msgstr ""
973
+
locale/cpd-de_DE.mo CHANGED
Binary file
locale/cpd-de_DE.po CHANGED
@@ -19,7 +19,7 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:47
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Einstellungen aktualisiert"
@@ -30,771 +30,943 @@ msgstr "Einstellungen aktualisiert"
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Datenbank aufger&auml;umt. %s Datens&auml;tze gel&ouml;scht."
32
 
33
- #: counter-options.php:122
34
- #: counter-options.php:509
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DEINSTALLIERE Count per Day"
38
 
39
- #: counter-options.php:127
40
- #: counter-options.php:129
41
- #: counter-options.php:131
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "Tabelle %s gel&ouml;scht"
46
 
47
- #: counter-options.php:133
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Einstellungen gel&ouml;scht"
51
 
52
- #: counter-options.php:157
53
- #: counter-options.php:494
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Deinstallation"
57
 
58
- #: counter-options.php:158
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Klick hier"
62
 
63
- #: counter-options.php:158
64
  #@ cpd
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
67
 
68
- #: counter-options.php:180
69
- #@ cpd
70
- msgid "Options"
71
- msgstr "Einstellungen"
72
-
73
- #: counter-options.php:191
74
  #@ cpd
75
  msgid "Online time"
76
  msgstr "Onlinezeit"
77
 
78
- #: counter-options.php:192
79
  #@ cpd
80
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
81
  msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
82
 
83
- #: counter-options.php:195
84
  #@ cpd
85
  msgid "Logged on Users"
86
  msgstr "Angemeldete Benutzer"
87
 
88
- #: counter-options.php:197
89
  #@ cpd
90
  msgid "count too"
91
  msgstr "auch mit z&auml;hlen"
92
 
93
- #: counter-options.php:209
94
  #@ cpd
95
  msgid "Auto counter"
96
  msgstr "Auto-Counter"
97
 
98
- #: counter-options.php:210
99
  #@ cpd
100
  msgid "Counts automatically single-posts and pages, no changes on template needed."
101
  msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
102
 
103
- #: counter-options.php:213
104
  #@ cpd
105
  msgid "Bots to ignore"
106
  msgstr "Spam/Suchmaschinen Bots ignorieren"
107
 
108
- #: counter-options.php:344
109
  #@ cpd
110
  msgid "Update options"
111
  msgstr "Einstellungen aktualisieren"
112
 
113
- #: counter-options.php:458
114
- #: counter-options.php:467
115
  #@ cpd
116
  msgid "Clean the database"
117
  msgstr "Datenbank aufr&auml;umen"
118
 
119
- #: counter-options.php:461
120
  #@ cpd
121
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
122
  msgstr "Du kannst die Counter-Tabelle von \"Spam-Daten\" befreien.<br />Wenn du neue Bots zu der Liste oben hinzuf&uuml;gst bleiben die alten \"Spam-Daten\" erhalten.<br />Hier kannst du den Filter erneut laufen lassen und die Besuche von Bots nachtr&auml;glich l&ouml;schen."
123
 
124
- #: counter-options.php:497
125
  #@ cpd
126
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
127
  msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
128
 
129
- #: counter-options.php:498
130
  #@ cpd
131
  msgid "Here you can delete the tables and disable \"Count per Day\"."
132
  msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
133
 
134
- #: counter-options.php:501
135
  #@ cpd
136
  msgid "WARNING"
137
  msgstr "WARNUNG"
138
 
139
- #: counter-options.php:502
140
  #@ cpd
141
  msgid "These tables (with ALL counter data) will be deleted."
142
  msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
143
 
144
- #: counter-options.php:504
145
  #@ cpd
146
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
147
  msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
148
 
149
- #: counter-options.php:508
 
150
  #@ cpd
151
  msgid "Yes"
152
  msgstr "Ja, los!"
153
 
154
- #: counter-options.php:509
155
  #@ cpd
156
  msgid "You are sure to disable Count per Day and delete all data?"
157
  msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
158
 
159
- #: counter.php:1779
160
- #: counter.php:2140
161
  #@ cpd
162
  msgid "Statistics"
163
  msgstr "Statistiken"
164
 
165
- #: counter.php:530
166
- #: counter.php:535
167
- #: counter.php:1597
168
- #: counter.php:1743
169
- #: counter.php:2217
170
  #@ cpd
171
  msgid "Total visitors"
172
  msgstr "Besucher gesamt"
173
 
174
- #: counter.php:531
175
- #: counter.php:2223
176
  #@ cpd
177
  msgid "Visitors currently online"
178
  msgstr "Besucher momentan online"
179
 
180
- #: counter.php:532
181
- #: counter.php:2218
182
  #@ cpd
183
  msgid "Visitors today"
184
  msgstr "Besucher heute"
185
 
186
- #: counter.php:533
187
- #: counter.php:2219
188
  #@ cpd
189
  msgid "Visitors yesterday"
190
  msgstr "Besucher gestern"
191
 
192
- #: counter.php:534
193
- #: counter.php:2220
194
  #@ cpd
195
  msgid "Visitors last week"
196
  msgstr "Besucher letzte Woche"
197
 
198
- #: counter.php:537
199
- #: counter.php:2224
 
200
  #@ cpd
201
  msgid "Counter starts on"
202
  msgstr "gez&auml;hlt ab"
203
 
204
- #: counter.php:536
205
- #: counter.php:637
206
- #: counter.php:1599
207
- #: counter.php:1749
208
- #: counter.php:1758
209
- #: counter.php:2222
210
- #: userperspan.php:33
211
  #@ cpd
212
  msgid "Visitors per day"
213
  msgstr "Besucher pro Tag"
214
 
215
- #: counter.php:1745
216
- #: counter.php:2221
217
  #@ cpd
218
  msgid "Visitors per month"
219
  msgstr "Besucher pro Monat"
220
 
221
- #: counter-options.php:237
222
- #: counter.php:1747
223
  #@ cpd
224
  msgid "Visitors per post"
225
  msgstr "Besucher pro Artikel"
226
 
227
- #: counter-options.php:118
228
  #@ cpd
229
  msgid "Counter reseted."
230
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
231
 
232
- #: counter-options.php:238
233
- #: counter-options.php:242
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
237
 
238
- #: counter-options.php:241
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Aktuelle Besuche - Artikel"
242
 
243
- #: counter-options.php:245
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Aktuelle Besuche - Tage"
247
 
248
- #: counter-options.php:246
249
- #: counter-options.php:250
250
- #: counter-options.php:276
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
254
 
255
- #: counter-options.php:291
256
  #@ cpd
257
  msgid "Show in lists"
258
  msgstr "In &Uuml;bersichten anzeigen"
259
 
260
- #: counter-options.php:292
261
  #@ cpd
262
  msgid "Show \"Reads per Post\" in a new column in post management views."
263
  msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
264
 
265
- #: counter-options.php:476
266
- #: counter-options.php:485
267
  #@ cpd
268
  msgid "Reset the counter"
269
  msgstr "Z&auml;hler zur&uuml;cksetzen"
270
 
271
- #: counter-options.php:479
272
  #@ cpd
273
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
274
  msgstr "Du kannst die Z&auml;hler zur&uuml;cksetzen und die Tabelle leeren. Alles auf 0!<br />Wenn du die aktuellen Zahlen brauchst, mache ein Backup der Datenbank!"
275
 
276
- #: counter.php:1258
277
  #, php-format
278
  #@ cpd
279
  msgid "The %s most visited posts in last %s days:"
280
  msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
281
 
282
- #: counter.php:1584
 
 
283
  #@ default
284
  msgid "Settings"
285
  msgstr ""
286
 
287
- #: counter-options.php:226
288
- #: counter.php:529
289
- #: counter.php:1655
 
290
  #@ cpd
291
  msgid "Reads"
292
  msgstr "Seitenaufrufe"
293
 
294
- #: counter.php:1748
295
  #@ cpd
296
  msgid "Latest Counts"
297
  msgstr "Letzte Seitenaufrufe"
298
 
299
- #: counter-options.php:249
300
  #@ cpd
301
  msgid "Chart - Days"
302
  msgstr "Diagramm - Tage"
303
 
304
- #: counter-options.php:253
305
  #@ cpd
306
  msgid "Chart - Height"
307
  msgstr "Diagramm - H&ouml;he"
308
 
309
- #: counter-options.php:254
310
  #@ cpd
311
  msgid "Height of the biggest bar"
312
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
313
 
314
- #: counter.php:846
315
- #@ cpd
316
- msgid "no reads at this time"
317
- msgstr "keine Seitenaufrufe"
318
-
319
- #: counter.php:820
320
- #@ cpd
321
- msgid "days"
322
- msgstr "Tage"
323
-
324
- #: counter.php:2211
325
  #@ cpd
326
  msgid "This post"
327
  msgstr "Diese Seite"
328
 
329
- #: counter-options.php:234
330
  #@ default
331
  msgid "Dashboard"
332
  msgstr ""
333
 
334
- #: counter.php:636
335
- #: counter.php:1759
336
  #@ cpd
337
  msgid "Reads per day"
338
  msgstr "Seitenaufrufe pro Tag"
339
 
340
- #: counter-options.php:58
341
  #, php-format
342
  #@ cpd
343
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
344
  msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
345
 
346
- #: counter-options.php:63
347
  #@ cpd
348
  msgid "update next"
349
  msgstr "weiter aktualisieren"
350
 
351
- #: counter-options.php:353
352
  #@ cpd
353
  msgid "GeoIP - Countries"
354
  msgstr "GeoIP - L&auml;nder"
355
 
356
- #: counter-options.php:362
357
  #@ cpd
358
  msgid "Update old counter data"
359
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
360
 
361
- #: counter-options.php:375
362
  #@ cpd
363
  msgid "Update GeoIP database"
364
  msgstr "Aktualisiere GeoIP Datenbank"
365
 
366
- #: counter-options.php:378
367
  #@ cpd
368
  msgid "Download a new version of GeoIP.dat file."
369
  msgstr "Neue Version von GeoIP.dat herunterladen."
370
 
371
- #: counter-options.php:384
372
  #@ cpd
373
  msgid "More informations about GeoIP"
374
  msgstr "Mehr Informationen über GeoIP"
375
 
376
- #: counter.php:1763
377
  #@ cpd
378
  msgid "Reads per Country"
379
  msgstr "Seitenaufrufe pro Land"
380
 
381
- #: geoip/geoip.php:132
382
  #@ cpd
383
  msgid "New GeoIP database installed."
384
  msgstr "Neue GeoIP Datenbank installiert."
385
 
386
- #: geoip/geoip.php:134
387
  #@ cpd
388
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
389
  msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder &uuml;berpr&uuml;fe ob du für das Verzeichnis \"geoip\" Schreibrechte (777) hast."
390
 
391
- #: geoip/geoip.php:108
392
  #@ cpd
393
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
394
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
395
 
396
- #: counter-options.php:262
397
  #@ cpd
398
  msgid "Countries"
399
  msgstr "L&auml;nder"
400
 
401
- #: counter-options.php:263
402
  #@ cpd
403
  msgid "How many countries do you want to see on dashboard page?"
404
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
405
 
406
- #: counter-options.php:105
407
  #, php-format
408
  #@ cpd
409
  msgid "Mass Bots cleaned. %s counts deleted."
410
  msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
411
 
412
- #: counter-options.php:399
413
- #: massbots.php:33
414
  #@ cpd
415
  msgid "Mass Bots"
416
  msgstr "Massen-Bots"
417
 
418
- #: counter-options.php:403
419
  #, php-format
420
  #@ cpd
421
  msgid "Show all IPs with more than %s page views per day"
422
  msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
423
 
424
- #: counter-options.php:404
425
- #: notes.php:76
426
- #: userperspan.php:43
427
  #@ cpd
428
  msgid "show"
429
  msgstr "anzeigen"
430
 
431
- #: counter-options.php:431
432
- #: counter-options.php:448
433
  #, php-format
434
  #@ cpd
435
  msgid "Delete these %s counts"
436
  msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
437
 
438
- #: counter.php:1416
439
  #@ cpd
440
  msgid "Other"
441
  msgstr "Sonstige"
442
 
443
- #: counter.php:1513
444
- #: massbots.php:50
445
  #: userperspan.php:63
446
  #@ default
447
  msgid "Front page displays"
448
  msgstr ""
449
 
450
- #: counter-options.php:267
451
- #: counter.php:1753
452
  #@ cpd
453
  msgid "Browsers"
454
  msgstr "Browser"
455
 
456
- #: counter-options.php:412
457
  #@ cpd
458
  msgid "IP"
459
  msgstr "IP"
460
 
461
- #: counter-options.php:413
462
- #: notes.php:80
463
  #@ cpd
464
  #@ default
465
  msgid "Date"
466
- msgstr "Datum"
467
 
468
- #: counter-options.php:414
469
  #@ cpd
470
  msgid "Client"
471
  msgstr "Browser"
472
 
473
- #: counter-options.php:415
474
  #@ cpd
475
  msgid "Views"
476
  msgstr "Seitenaufrufe"
477
 
478
- #: counter-options.php:300
479
  #@ cpd
480
  msgid "Start Values"
481
  msgstr "Startwerte"
482
 
483
- #: counter-options.php:304
484
  #@ cpd
485
  msgid "Here you can change the date of first count and add a start count."
486
  msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
487
 
488
- #: counter-options.php:308
489
  #@ cpd
490
  msgid "Start date"
491
  msgstr "Startdatum"
492
 
493
- #: counter-options.php:309
494
  #@ cpd
495
  msgid "Your old Counter starts at?"
496
  msgstr "Dein alter Z&auml;hler begann am?"
497
 
498
- #: counter-options.php:312
499
- #: counter-options.php:316
500
  #@ cpd
501
  msgid "Start count"
502
  msgstr "Startz&auml;hlerstand"
503
 
504
- #: counter-options.php:313
505
  #@ cpd
506
  msgid "Add this value to \"Total visitors\"."
507
  msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
508
 
509
- #: counter-options.php:517
510
  #@ cpd
511
  msgid "Support"
512
  msgstr "Kontakt"
513
 
514
- #: counter.php:1711
515
  #@ cpd
516
  msgid "Bug? Problem? Question? Hint? Praise?"
517
  msgstr "Bug? Problem? Frage? Tipp? Lob?"
518
 
519
- #: counter.php:1712
520
  #, php-format
521
  #@ cpd
522
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
523
  msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
524
 
525
- #: counter.php:1375
526
  #@ default
527
  msgid "Show"
528
  msgstr ""
529
 
530
- #: counter.php:1498
531
  #@ default
532
  msgid "Edit Post"
533
  msgstr ""
534
 
535
- #: counter.php:1710
536
  #, php-format
537
  #@ cpd
538
  msgid "Time for Count per Day: <code>%s</code>."
539
  msgstr "Zeit bei Count per Day: <code>%s</code>"
540
 
541
- #: counter-options.php:198
542
  #@ cpd
543
  msgid "until User Level"
544
  msgstr "bis Benutzerlevel"
545
 
546
- #: counter.php:1750
547
  #@ default
548
  msgid "Plugin"
549
  msgstr ""
550
 
551
- #: counter.php:823
552
- #: counter.php:1377
553
- #: notes.php:47
554
- #: notes.php:81
555
  #@ cpd
556
  msgid "Notes"
557
  msgstr "Notizen"
558
 
559
- #: notes.php:82
560
  #@ default
561
  msgid "Action"
562
  msgstr ""
563
 
564
- #: notes.php:87
565
  #@ cpd
566
  msgid "add"
567
  msgstr "hinzuf&uuml;gen"
568
 
569
- #: notes.php:102
570
  #@ cpd
571
  msgid "save"
572
  msgstr "speichern"
573
 
574
- #: notes.php:103
575
  #@ cpd
576
  msgid "delete"
577
  msgstr "l&ouml;schen"
578
 
579
- #: notes.php:114
580
  #@ cpd
581
  msgid "edit"
582
  msgstr "&auml;ndern"
583
 
584
- #: notes.php:81
585
- #@ cpd
586
- msgid "(1 per day)"
587
- msgstr "(1 pro Tag)"
588
-
589
- #: counter-options.php:317
590
  #@ cpd
591
  msgid "Add this value to \"Total reads\"."
592
  msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
593
 
594
- #: counter.php:525
595
- #: counter.php:2212
596
  #@ cpd
597
  msgid "Total reads"
598
  msgstr "Seitenaufrufe gesamt"
599
 
600
- #: counter.php:526
601
- #: counter.php:2213
602
  #@ cpd
603
  msgid "Reads today"
604
  msgstr "Seitenaufrufe heute"
605
 
606
- #: counter.php:527
607
- #: counter.php:2214
608
  #@ cpd
609
  msgid "Reads yesterday"
610
  msgstr "Seitenaufrufe gestern"
611
 
612
- #: counter.php:901
613
- #: counter.php:1848
614
  #@ cpd
615
  msgid "Map"
616
  msgstr "Weltkarte"
617
 
618
- #: counter-options.php:217
619
  #@ cpd
620
  msgid "Anonymous IP"
621
  msgstr "Anonyme IP-Adresse"
622
 
623
- #: counter-options.php:221
624
  #@ cpd
625
  msgid "Cache"
626
  msgstr "Cache"
627
 
628
- #: counter-options.php:222
629
  #@ cpd
630
  msgid "I use a cache plugin. Count these visits with ajax."
631
  msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
632
 
633
- #: counter-options.php:268
634
  #@ cpd
635
  msgid "Substring of the user agent, separated by comma"
636
  msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
637
 
638
- #: counter.php:1764
639
  #@ cpd
640
  msgid "Visitors per Country"
641
  msgstr "Besucher pro Land"
642
 
643
- #: counter-options.php:337
644
  #@ cpd
645
  msgid "Debug mode"
646
  msgstr "Debug Modus"
647
 
648
- #: counter-options.php:339
649
  #@ cpd
650
  msgid "Show debug informations at the bottom of all pages."
651
  msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
652
 
653
- #: userperspan.php:37
654
  #@ cpd
655
  msgid "Start"
656
  msgstr "Start"
657
 
658
- #: userperspan.php:39
659
  #@ cpd
660
  msgid "End"
661
  msgstr "Ende"
662
 
663
- #: userperspan.php:41
664
  #@ cpd
665
  msgid "PostID"
666
  msgstr "Artikel-ID"
667
 
668
- #: userperspan.php:49
669
  #@ cpd
670
  msgid "no data found"
671
  msgstr "keine passenden Daten gefunden"
672
 
673
- #: counter-options.php:365
674
  #@ cpd
675
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
676
  msgstr "Du kannst zu allen Zählerdaten das Herkunftsland speichern. Dazu wird die IP mit der GeoIP Datenbank abgeglichen. Das kann je nach Anzahl der Daten eine ganze Weile dauern."
677
 
678
- #: counter-options.php:187
679
  #@ cpd
680
  msgid "Counter"
681
  msgstr "Z&auml;hler"
682
 
683
- #: counter-options.php:279
684
  #@ cpd
685
  msgid "Local URLs"
686
  msgstr "Lokale URLs"
687
 
688
- #: counter-options.php:280
689
  #@ cpd
690
  msgid "Show local referrers too."
691
  msgstr "Zeige auch lokale Referrer."
692
 
693
- #: counter-options.php:288
694
  #@ default
695
  msgid "Posts"
696
  msgstr ""
697
 
698
- #: counter-options.php:288
699
  #@ default
700
  msgid "Pages"
701
  msgstr ""
702
 
703
- #: counter.php:1507
704
  #@ default
705
  msgid "Category"
706
  msgstr ""
707
 
708
- #: counter.php:1510
709
  #@ default
710
  msgid "Tag"
711
  msgstr ""
712
 
713
- #: counter.php:1713
714
  #@ default
715
  msgid "License"
716
  msgstr ""
717
 
718
- #: counter.php:1754
719
  #@ cpd
720
  msgid "Referrer"
721
  msgstr "Herkunft"
722
 
723
- #: counter.php:2235
724
  #@ default
725
  msgid "Title"
726
  msgstr ""
727
 
728
- #: counter-options.php:226
729
  #@ cpd
730
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
731
  msgstr "Browser und Herkunft speichern und anzeigen.<br />Diese Daten brauchen mit Abstand den meisten Platz in der Datenbank, liefern aber auch detailliertere Informationen über die Besucher."
732
 
733
- #: counter-options.php:225
734
  #@ cpd
735
  msgid "Clients and referrers"
736
  msgstr "Browser und Herkunft"
737
 
738
- #: counter.php:528
739
- #: counter.php:2215
740
  #@ cpd
741
  msgid "Reads last week"
742
  msgstr "Seitenaufrufe letzte Woche"
743
 
744
- #: counter.php:1746
745
- #: counter.php:2216
746
  #@ cpd
747
  msgid "Reads per month"
748
  msgstr "Seitenaufrufe pro Monat"
749
 
750
- #: counter-options.php:257
751
- #@ cpd
752
- msgid "Old Charts"
753
- msgstr "Alte Diagramme"
754
-
755
- #: counter-options.php:258
756
- #@ cpd
757
- msgid "Show old bar charts."
758
- msgstr "Zeige alte Balken-Diagramme."
759
-
760
- #: counter-options.php:271
761
  #@ cpd
762
  msgid "Referrers - Entries"
763
  msgstr "Herkunft - Einträge"
764
 
765
- #: counter-options.php:272
766
  #@ cpd
767
  msgid "How many referrers do you want to see on dashboard page?"
768
  msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
769
 
770
- #: counter-options.php:275
771
  #@ cpd
772
  msgid "Referrers - Days"
773
  msgstr "Herkunft - Tage"
774
 
775
- #: counter.php:1441
776
  #, php-format
777
  #@ cpd
778
  msgid "The %s referrers in last %s days:"
779
  msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
780
 
781
- #: counter.php:1744
782
  #@ cpd
783
  msgid "Visitors online"
784
  msgstr "Besucher online"
785
 
786
- #: counter-options.php:325
787
- #@ default
788
  msgid "Stylesheet"
789
- msgstr ""
790
 
791
- #: counter-options.php:328
792
  #@ cpd
793
  msgid "NO Stylesheet in Frontend"
794
  msgstr "KEIN Stylesheet im Frontend"
795
 
796
- #: counter-options.php:329
797
  #@ cpd
798
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
799
  msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
800
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:49
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Einstellungen aktualisiert"
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Datenbank aufger&auml;umt. %s Datens&auml;tze gel&ouml;scht."
32
 
33
+ #: counter-options.php:127
34
+ #: counter-options.php:819
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DEINSTALLIERE Count per Day"
38
 
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "Tabelle %s gel&ouml;scht"
46
 
47
+ #: counter-options.php:135
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Einstellungen gel&ouml;scht"
51
 
52
+ #: counter-options.php:316
53
+ #: counter-options.php:805
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Deinstallation"
57
 
58
+ #: counter-options.php:317
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Klick hier"
62
 
63
+ #: counter-options.php:317
64
  #@ cpd
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
67
 
68
+ #: counter-options.php:355
 
 
 
 
 
69
  #@ cpd
70
  msgid "Online time"
71
  msgstr "Onlinezeit"
72
 
73
+ #: counter-options.php:356
74
  #@ cpd
75
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
  msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
77
 
78
+ #: counter-options.php:359
79
  #@ cpd
80
  msgid "Logged on Users"
81
  msgstr "Angemeldete Benutzer"
82
 
83
+ #: counter-options.php:361
84
  #@ cpd
85
  msgid "count too"
86
  msgstr "auch mit z&auml;hlen"
87
 
88
+ #: counter-options.php:373
89
  #@ cpd
90
  msgid "Auto counter"
91
  msgstr "Auto-Counter"
92
 
93
+ #: counter-options.php:374
94
  #@ cpd
95
  msgid "Counts automatically single-posts and pages, no changes on template needed."
96
  msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
97
 
98
+ #: counter-options.php:377
99
  #@ cpd
100
  msgid "Bots to ignore"
101
  msgstr "Spam/Suchmaschinen Bots ignorieren"
102
 
103
+ #: counter-options.php:561
104
  #@ cpd
105
  msgid "Update options"
106
  msgstr "Einstellungen aktualisieren"
107
 
108
+ #: counter-options.php:665
109
+ #: counter-options.php:674
110
  #@ cpd
111
  msgid "Clean the database"
112
  msgstr "Datenbank aufr&auml;umen"
113
 
114
+ #: counter-options.php:668
115
  #@ cpd
116
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
  msgstr "Du kannst die Counter-Tabelle von \"Spam-Daten\" befreien.<br />Wenn du neue Bots zu der Liste oben hinzuf&uuml;gst bleiben die alten \"Spam-Daten\" erhalten.<br />Hier kannst du den Filter erneut laufen lassen und die Besuche von Bots nachtr&auml;glich l&ouml;schen."
118
 
119
+ #: counter-options.php:808
120
  #@ cpd
121
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
  msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
123
 
124
+ #: counter-options.php:809
125
  #@ cpd
126
  msgid "Here you can delete the tables and disable \"Count per Day\"."
127
  msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
128
 
129
+ #: counter-options.php:812
130
  #@ cpd
131
  msgid "WARNING"
132
  msgstr "WARNUNG"
133
 
134
+ #: counter-options.php:813
135
  #@ cpd
136
  msgid "These tables (with ALL counter data) will be deleted."
137
  msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
138
 
139
+ #: counter-options.php:815
140
  #@ cpd
141
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
  msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
143
 
144
+ #: counter-options.php:795
145
+ #: counter-options.php:818
146
  #@ cpd
147
  msgid "Yes"
148
  msgstr "Ja, los!"
149
 
150
+ #: counter-options.php:819
151
  #@ cpd
152
  msgid "You are sure to disable Count per Day and delete all data?"
153
  msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
154
 
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  #@ cpd
158
  msgid "Statistics"
159
  msgstr "Statistiken"
160
 
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
 
165
  #@ cpd
166
  msgid "Total visitors"
167
  msgstr "Besucher gesamt"
168
 
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  #@ cpd
172
  msgid "Visitors currently online"
173
  msgstr "Besucher momentan online"
174
 
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  #@ cpd
178
  msgid "Visitors today"
179
  msgstr "Besucher heute"
180
 
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  #@ cpd
184
  msgid "Visitors yesterday"
185
  msgstr "Besucher gestern"
186
 
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  #@ cpd
190
  msgid "Visitors last week"
191
  msgstr "Besucher letzte Woche"
192
 
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "gez&auml;hlt ab"
199
 
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
 
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Besucher pro Tag"
209
 
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Besucher pro Monat"
215
 
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Besucher pro Artikel"
221
 
222
+ #: counter-options.php:122
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
226
 
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
232
 
233
+ #: counter-options.php:442
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Aktuelle Besuche - Artikel"
237
 
238
+ #: counter-options.php:446
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Aktuelle Besuche - Tage"
242
 
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
249
 
250
+ #: counter-options.php:488
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "In &Uuml;bersichten anzeigen"
254
 
255
+ #: counter-options.php:489
256
  #@ cpd
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
259
 
260
+ #: counter-options.php:786
261
+ #: counter-options.php:796
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Z&auml;hler zur&uuml;cksetzen"
265
 
266
+ #: counter-options.php:789
267
  #@ cpd
268
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
269
  msgstr "Du kannst die Z&auml;hler zur&uuml;cksetzen und die Tabelle leeren. Alles auf 0!<br />Wenn du die aktuellen Zahlen brauchst, mache ein Backup der Datenbank!"
270
 
271
+ #: counter.php:672
272
  #, php-format
273
  #@ cpd
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
276
 
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
  #@ default
281
  msgid "Settings"
282
  msgstr ""
283
 
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Seitenaufrufe"
291
 
292
+ #: counter-core.php:728
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Letzte Seitenaufrufe"
296
 
297
+ #: counter-options.php:450
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Diagramm - Tage"
301
 
302
+ #: counter-options.php:454
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Diagramm - H&ouml;he"
306
 
307
+ #: counter-options.php:455
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
311
 
312
+ #: counter.php:1196
 
 
 
 
 
 
 
 
 
 
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Diese Seite"
316
 
317
+ #: counter-options.php:403
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr ""
321
 
322
+ #: counter.php:262
 
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Seitenaufrufe pro Tag"
326
 
327
+ #: counter-options.php:60
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
332
 
333
+ #: counter-options.php:65
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "weiter aktualisieren"
337
 
338
+ #: counter-options.php:736
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - L&auml;nder"
342
 
343
+ #: counter-options.php:745
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
347
 
348
+ #: counter-options.php:757
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Aktualisiere GeoIP Datenbank"
352
 
353
+ #: counter-options.php:752
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Neue Version von GeoIP.dat herunterladen."
357
 
358
+ #: counter-options.php:762
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Mehr Informationen über GeoIP"
362
 
363
+ #: counter-core.php:738
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Seitenaufrufe pro Land"
367
 
368
+ #: geoip/geoip.php:117
369
  #@ cpd
370
  msgid "New GeoIP database installed."
371
  msgstr "Neue GeoIP Datenbank installiert."
372
 
373
+ #: geoip/geoip.php:119
374
  #@ cpd
375
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
376
  msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder &uuml;berpr&uuml;fe ob du für das Verzeichnis \"geoip\" Schreibrechte (777) hast."
377
 
378
+ #: geoip/geoip.php:93
379
  #@ cpd
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
382
 
383
+ #: counter-options.php:459
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "L&auml;nder"
387
 
388
+ #: counter-options.php:460
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
392
 
393
+ #: counter-options.php:102
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
398
 
399
+ #: counter-options.php:589
400
+ #: massbots.php:35
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Massen-Bots"
404
 
405
+ #: counter-options.php:593
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
410
 
411
+ #: counter-options.php:594
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
  #@ cpd
415
  msgid "show"
416
  msgstr "anzeigen"
417
 
418
+ #: counter-options.php:620
419
+ #: counter-options.php:636
420
  #, php-format
421
  #@ cpd
422
  msgid "Delete these %s counts"
423
  msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
424
 
425
+ #: counter.php:821
426
  #@ cpd
427
  msgid "Other"
428
  msgstr "Sonstige"
429
 
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
  #: userperspan.php:63
433
  #@ default
434
  msgid "Front page displays"
435
  msgstr ""
436
 
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
+ #: counter-options.php:602
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
+ #: counter-options.php:603
449
+ #: notes.php:75
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
+ msgstr ""
454
 
455
+ #: counter-options.php:604
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Browser"
459
 
460
+ #: counter-options.php:605
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Seitenaufrufe"
464
 
465
+ #: counter-options.php:497
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Startwerte"
469
 
470
+ #: counter-options.php:501
471
  #@ cpd
472
  msgid "Here you can change the date of first count and add a start count."
473
  msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
474
 
475
+ #: counter-options.php:505
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Startdatum"
479
 
480
+ #: counter-options.php:506
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Dein alter Z&auml;hler begann am?"
484
 
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Startz&auml;hlerstand"
490
 
491
+ #: counter-options.php:510
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
495
 
496
+ #: counter-options.php:723
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Kontakt"
500
 
501
+ #: counter-core.php:690
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "Bug? Problem? Frage? Tipp? Lob?"
505
 
506
+ #: counter-core.php:691
507
  #, php-format
508
  #@ cpd
509
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
  msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
511
 
512
+ #: counter.php:786
513
  #@ default
514
  msgid "Show"
515
  msgstr ""
516
 
517
+ #: counter.php:976
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr ""
521
 
522
+ #: counter-core.php:689
523
  #, php-format
524
  #@ cpd
525
  msgid "Time for Count per Day: <code>%s</code>."
526
  msgstr "Zeit bei Count per Day: <code>%s</code>"
527
 
528
+ #: counter-options.php:362
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "bis Benutzerlevel"
532
 
533
+ #: counter-core.php:730
534
  #@ default
535
  msgid "Plugin"
536
  msgstr ""
537
 
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
 
541
  #@ cpd
542
  msgid "Notes"
543
  msgstr "Notizen"
544
 
545
+ #: notes.php:77
546
  #@ default
547
  msgid "Action"
548
  msgstr ""
549
 
550
+ #: notes.php:82
551
  #@ cpd
552
  msgid "add"
553
  msgstr "hinzuf&uuml;gen"
554
 
555
+ #: notes.php:98
556
  #@ cpd
557
  msgid "save"
558
  msgstr "speichern"
559
 
560
+ #: notes.php:99
561
  #@ cpd
562
  msgid "delete"
563
  msgstr "l&ouml;schen"
564
 
565
+ #: notes.php:110
566
  #@ cpd
567
  msgid "edit"
568
  msgstr "&auml;ndern"
569
 
570
+ #: counter-options.php:514
 
 
 
 
 
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
574
 
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Seitenaufrufe gesamt"
580
 
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Seitenaufrufe heute"
586
 
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Seitenaufrufe gestern"
592
 
593
+ #: counter.php:353
594
+ #: counter.php:1041
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Weltkarte"
598
 
599
+ #: counter-options.php:381
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "Anonyme IP-Adresse"
603
 
604
+ #: counter-options.php:385
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
+ #: counter-options.php:386
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
613
 
614
+ #: counter-options.php:465
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
618
 
619
+ #: counter-core.php:739
620
  #@ cpd
621
  msgid "Visitors per Country"
622
  msgstr "Besucher pro Land"
623
 
624
+ #: counter-options.php:554
625
  #@ cpd
626
  msgid "Debug mode"
627
  msgstr "Debug Modus"
628
 
629
+ #: counter-options.php:556
630
  #@ cpd
631
  msgid "Show debug informations at the bottom of all pages."
632
  msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
633
 
634
+ #: userperspan.php:38
635
  #@ cpd
636
  msgid "Start"
637
  msgstr "Start"
638
 
639
+ #: userperspan.php:40
640
  #@ cpd
641
  msgid "End"
642
  msgstr "Ende"
643
 
644
+ #: userperspan.php:42
645
  #@ cpd
646
  msgid "PostID"
647
  msgstr "Artikel-ID"
648
 
649
+ #: userperspan.php:50
650
  #@ cpd
651
  msgid "no data found"
652
  msgstr "keine passenden Daten gefunden"
653
 
654
+ #: counter-options.php:739
655
  #@ cpd
656
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
  msgstr "Du kannst zu allen Zählerdaten das Herkunftsland speichern. Dazu wird die IP mit der GeoIP Datenbank abgeglichen. Das kann je nach Anzahl der Daten eine ganze Weile dauern."
658
 
659
+ #: counter-options.php:351
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Z&auml;hler"
663
 
664
+ #: counter-options.php:476
665
  #@ cpd
666
  msgid "Local URLs"
667
  msgstr "Lokale URLs"
668
 
669
+ #: counter-options.php:477
670
  #@ cpd
671
  msgid "Show local referrers too."
672
  msgstr "Zeige auch lokale Referrer."
673
 
674
+ #: counter-options.php:485
675
  #@ default
676
  msgid "Posts"
677
  msgstr ""
678
 
679
+ #: counter-options.php:485
680
  #@ default
681
  msgid "Pages"
682
  msgstr ""
683
 
684
+ #: counter.php:985
685
  #@ default
686
  msgid "Category"
687
  msgstr ""
688
 
689
+ #: counter.php:988
690
  #@ default
691
  msgid "Tag"
692
  msgstr ""
693
 
694
+ #: counter-core.php:692
695
  #@ default
696
  msgid "License"
697
  msgstr ""
698
 
699
+ #: counter-core.php:734
700
  #@ cpd
701
  msgid "Referrer"
702
  msgstr "Herkunft"
703
 
704
+ #: counter.php:1220
705
  #@ default
706
  msgid "Title"
707
  msgstr ""
708
 
709
+ #: counter-options.php:392
710
  #@ cpd
711
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
712
  msgstr "Browser und Herkunft speichern und anzeigen.<br />Diese Daten brauchen mit Abstand den meisten Platz in der Datenbank, liefern aber auch detailliertere Informationen über die Besucher."
713
 
714
+ #: counter-options.php:389
715
  #@ cpd
716
  msgid "Clients and referrers"
717
  msgstr "Browser und Herkunft"
718
 
719
+ #: counter.php:158
720
+ #: counter.php:1200
721
  #@ cpd
722
  msgid "Reads last week"
723
  msgstr "Seitenaufrufe letzte Woche"
724
 
725
+ #: counter-core.php:726
726
+ #: counter.php:1201
727
  #@ cpd
728
  msgid "Reads per month"
729
  msgstr "Seitenaufrufe pro Monat"
730
 
731
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Herkunft - Einträge"
735
 
736
+ #: counter-options.php:469
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
740
 
741
+ #: counter-options.php:472
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Herkunft - Tage"
745
 
746
+ #: counter.php:845
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
751
 
752
+ #: counter-core.php:724
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Besucher online"
756
 
757
+ #: counter-options.php:522
758
+ #@ cpd
759
  msgid "Stylesheet"
760
+ msgstr "Stylesheet"
761
 
762
+ #: counter-options.php:525
763
  #@ cpd
764
  msgid "NO Stylesheet in Frontend"
765
  msgstr "KEIN Stylesheet im Frontend"
766
 
767
+ #: counter-options.php:526
768
  #@ cpd
769
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
770
  msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
771
 
772
+ #: counter-options.php:419
773
+ #@ cpd
774
+ msgid "Who can see it"
775
+ msgstr "Wer darf es sehen"
776
+
777
+ #: counter-options.php:428
778
+ #@ cpd
779
+ msgid "custom"
780
+ msgstr "benutzerdefiniert"
781
+
782
+ #: counter-options.php:430
783
+ #@ cpd
784
+ msgid "and higher are allowed to see the statistics page."
785
+ msgstr "und höher haben Zugriff auf die Statistikseite."
786
+
787
+ #: counter-options.php:432
788
+ #, php-format
789
+ #@ cpd
790
+ msgid "Set the %s capability %s a user need:"
791
+ msgstr "Gibt die benötigte %s Rolle %s ein."
792
+
793
+ #: counter-core.php:186
794
+ #, php-format
795
+ #@ cpd
796
+ msgid "\"Count per Day\" updated to version %s."
797
+ msgstr "&quot;Count per Day&quot; aktualisiert auf Version %s."
798
+
799
+ #: counter-core.php:899
800
+ #@ cpd
801
+ msgid "Backup failed! Cannot open file"
802
+ msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
803
+
804
+ #: counter-core.php:922
805
+ #, php-format
806
+ #@ cpd
807
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
808
+ msgstr "Sicherung von %s Einträge. Jeder Punkt entspricht %s Einträgen."
809
+
810
+ #: counter-core.php:1009
811
+ #@ cpd
812
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
813
+ msgstr "Dein wp-content-Verzeichnis ist nicht beschreibbar. Aber du kannst den Inhalt dieser Box in einer Textdatei kopieren."
814
+
815
+ #: counter-core.php:1015
816
+ #, php-format
817
+ #@ cpd
818
+ msgid "Backup of counter table saved in %s."
819
+ msgstr "Die Zähler-Tabelle wurde in %s gesichert."
820
+
821
+ #: counter-core.php:1017
822
+ #, php-format
823
+ #@ cpd
824
+ msgid "Backup of counter options and collection saved in %s."
825
+ msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
826
+
827
+ #: counter-options.php:170
828
+ #@ cpd
829
+ msgid "Collection in progress..."
830
+ msgstr "Zusammenfassung erfolgt ..."
831
+
832
+ #: counter-options.php:240
833
+ #@ cpd
834
+ msgid "Get Visitors per Post..."
835
+ msgstr "Besucher pro Artikel bearbeiten..."
836
+
837
+ #: counter-options.php:261
838
+ #@ cpd
839
+ msgid "Delete old data..."
840
+ msgstr "L&ouml;schen alter Daten..."
841
+
842
+ #: counter-options.php:285
843
+ #, php-format
844
+ #@ cpd
845
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
846
+ msgstr "Zähler-Eintr&auml;ge bis %s zusammengefasst und Tabelle %s optimiert (Gr&ouml;&szlig;e vorher = %s &gt; Gr&ouml;&szlig;e nachher = %s)."
847
+
848
+ #: counter-options.php:294
849
+ #@ cpd
850
+ msgid "Installation of \"Count per Day\" checked"
851
+ msgstr "Installation von &quot;Count per Day&quot; überpr&uuml;ft"
852
+
853
+ #: counter-options.php:342
854
+ #: counter-options.php:566
855
+ #@ default
856
+ msgid "Tools"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:394
860
+ #@ cpd
861
+ msgid "Save URL only, no query string."
862
+ msgstr "Speichere nur die URL, keinen Query-String."
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:648
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr "Backup"
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr "Einträge pro Durchgang"
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr "Wie viele Eintr&auml;ge sollen pro Durchgang bearbeitet werden? Standard: 10000"
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr "Wenn dein PHP-Speicher-Limit kleiner als 50 MB ist und du nur eine wei&szlig;e Seite oder Fehlermeldungen bekommst versuche einen kleineren Wert."
884
+
885
+ #: counter-options.php:652
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr "Erstelle eine Sicherungskopie der Z&auml;hler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
890
+
891
+ #: counter-options.php:656
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr "Datenbank sichern"
895
+
896
+ #: counter-options.php:683
897
+ #: counter-options.php:715
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr "Alte Daten zusammenfassen"
901
+
902
+ #: counter-options.php:688
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr "Die aktuelle Gr&ouml;&szlig;e der Z&auml;hler-Tabelle %s ist %s."
907
+
908
+ #: counter-options.php:690
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr "Du kannst alte Daten zusammenfassen und die Z&auml;hler-Tabelle bereinigen.<br/>Seitenaufrufe und Besucher werden pro Monat, pro Land und pro Beitrag zusammengefasst.<br/>Browser und Herkunftsdaten werden gel&ouml;scht."
912
+
913
+ #: counter-options.php:695
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr "Momentan enth&auml;lt die Zusammenfassung Daten bis %s."
918
+
919
+ #: counter-options.php:699
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugef&uuml;gt."
923
+
924
+ #: counter-options.php:705
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr "L&ouml;sche die aktuelle Zusammenfassung und erstelle eine neue, die nur die Daten enth&auml;lt, die momentan in der Z&auml;hler-Tabelle sind."
928
+
929
+ #: counter-options.php:706
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr "Alle zusammengefassten Daten bis %s werden gel&ouml;scht."
934
+
935
+ #: counter-options.php:711
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr "Behalte die Eintr&auml;ge der letzten %s vollen Monate plus des aktuellen Monats in der Z&auml;hler-Tabelle."
940
+
941
+ #: counter-options.php:770
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr "ReAktivierung"
945
+
946
+ #: counter-options.php:773
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
950
+
951
+ #: counter-options.php:778
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr "ReAktiviere das Plugin"
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr "Besucher"
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr "meistbesuchter Tag"
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr "per Drag &amp; Drop sortieren"
972
+
locale/cpd-el.mo CHANGED
Binary file
locale/cpd-el.po CHANGED
@@ -19,18 +19,18 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:46
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Οι ρυθμίσεις σας ενημερώθηκαν"
26
 
27
- #: counter-options.php:57
28
  #, php-format
29
  #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Οι χώρες ενημερώθηκαν. <b>%s</b> καταχωρήσεις στις %s δεν έχουν αντιστοιχηθεί με χώρες."
32
 
33
- #: counter-options.php:62
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "ενημέρωση επόμενων"
@@ -41,746 +41,933 @@ msgstr "ενημέρωση επόμενων"
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Καθαρίστηκαν μαζικά bot. %s μετρήσεις σβήστηκαν."
43
 
44
- #: counter-options.php:111
45
  #, php-format
46
  #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Καθαρίστικε η βάση δεδομένων. %s γραμμές σβήστηκαν."
49
 
50
- #: counter-options.php:117
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Μηδενίστηκε ο μετρητής."
54
 
55
- #: counter-options.php:121
56
- #: counter-options.php:496
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "Απεγκατάσταση του Count per Day"
60
 
61
- #: counter-options.php:126
62
- #: counter-options.php:128
63
- #: counter-options.php:130
64
  #, php-format
65
  #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Πίνακες %s διαγράφηκαν"
68
 
69
- #: counter-options.php:132
70
  #@ cpd
71
  msgid "Options deleted"
72
  msgstr "Οι ρυθμίσεις διαγράφηκαν"
73
 
74
- #: counter-options.php:156
75
- #: counter-options.php:481
76
  #@ cpd
77
  msgid "Uninstall"
78
  msgstr "Απεγκατάσταση"
79
 
80
- #: counter-options.php:157
81
  #@ cpd
82
  msgid "Click here"
83
  msgstr "Κάντε κλικ εδώ"
84
 
85
- #: counter-options.php:157
86
  #@ cpd
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "για να ολοκληρώσετε την απεγκατάσταση και να απενεργοποιήσετε το \"Count per Day\"."
89
 
90
- #: counter-options.php:179
91
- #@ cpd
92
- msgid "Options"
93
- msgstr "Ρυθμίσεις"
94
-
95
- #: counter-options.php:190
96
  #@ cpd
97
  msgid "Online time"
98
  msgstr "Χρόνος σε σύνδεση"
99
 
100
- #: counter-options.php:191
101
  #@ cpd
102
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
103
  msgstr "Δευτερόλεπτα για τον μετρητή συνδεδεμένων χρηστών. Χρησιμοποιείται για τους \"Visitors online\" στην κεντρική σελίδα."
104
 
105
- #: counter-options.php:194
106
  #@ cpd
107
  msgid "Logged on Users"
108
  msgstr "Εγγεγραμμένοι-Συνδεδεμένοι Χρήστες"
109
 
110
- #: counter-options.php:196
111
  #@ cpd
112
  msgid "count too"
113
  msgstr "μετρήστε επίσης"
114
 
115
- #: counter-options.php:197
116
  #@ cpd
117
  msgid "until User Level"
118
  msgstr "μέχρι το Επίπεδο Χρήστη"
119
 
120
- #: counter-options.php:208
121
  #@ cpd
122
  msgid "Auto counter"
123
  msgstr "Αυτόματος μετρητής"
124
 
125
- #: counter-options.php:209
126
  #@ cpd
127
  msgid "Counts automatically single-posts and pages, no changes on template needed."
128
  msgstr "Μετρά αυτόματα μονά-άρθρα και σελίδες, δεν χρειάζεται αλλαγή στο πρότυπο (template)."
129
 
130
- #: counter-options.php:212
131
  #@ cpd
132
  msgid "Bots to ignore"
133
  msgstr "Bots που θα αγνοηθούν"
134
 
135
- #: counter-options.php:216
136
  #@ cpd
137
  msgid "Anonymous IP"
138
  msgstr "Ανώνυμος IP"
139
 
140
- #: counter-options.php:220
141
  #@ cpd
142
  msgid "Cache"
143
  msgstr "Αποθυκευμένη μνήμη (Cache)"
144
 
145
- #: counter-options.php:221
146
  #@ cpd
147
  msgid "I use a cache plugin. Count these visits with ajax."
148
  msgstr "Χρησιμοποιώ ένα cache-πρόσθετο. Μετρήστε αυτές τις επισκέψεις με ajax."
149
 
150
- #: counter-options.php:331
151
  #@ cpd
152
  msgid "Update options"
153
  msgstr "Ενημέρωση ρυθμίσεων"
154
 
155
- #: counter-options.php:233
156
  #@ default
157
  msgid "Dashboard"
158
  msgstr "Κεντρικός πίνακας"
159
 
160
- #: counter-options.php:236
161
- #: counter.php:1754
162
  #@ cpd
163
  msgid "Visitors per post"
164
  msgstr "Επισκέπτες ανά άρθρο"
165
 
166
- #: counter-options.php:237
167
- #: counter-options.php:241
168
  #@ cpd
169
  msgid "How many posts do you want to see on dashboard page?"
170
  msgstr "Πόσα άρθρα επιθυμείτε να βλέπετε στη κεντρική σελίδα σας;"
171
 
172
- #: counter-options.php:240
173
  #@ cpd
174
  msgid "Latest Counts - Posts"
175
  msgstr "Τελευταίες Μετρήσεις - Άρθρα"
176
 
177
- #: counter-options.php:244
178
  #@ cpd
179
  msgid "Latest Counts - Days"
180
  msgstr "Τελευταίες Μετρήσεις - Ημέρες"
181
 
182
- #: counter-options.php:245
183
- #: counter-options.php:249
184
- #: counter-options.php:275
185
  #@ cpd
186
  msgid "How many days do you want look back?"
187
  msgstr "Μέχρι πόσες ημέρες επιθυμείτε να βλέπετε στο παρελθόν;"
188
 
189
- #: counter-options.php:248
190
  #@ cpd
191
  msgid "Chart - Days"
192
  msgstr "Διάγραμμα - Ημερών"
193
 
194
- #: counter-options.php:252
195
  #@ cpd
196
  msgid "Chart - Height"
197
  msgstr "Διάγραμμα - Ύψος"
198
 
199
- #: counter-options.php:253
200
  #@ cpd
201
  msgid "Height of the biggest bar"
202
  msgstr "Ύψος της μεγαλύτερης μπάρας"
203
 
204
- #: counter-options.php:261
205
  #@ cpd
206
  msgid "Countries"
207
  msgstr "Χώρες"
208
 
209
- #: counter-options.php:262
210
  #@ cpd
211
  msgid "How many countries do you want to see on dashboard page?"
212
  msgstr "Πόσες χώρες επιθυμείτε να βλέπετε στην κεντρική σελίδα;"
213
 
214
- #: counter-options.php:266
215
- #: counter.php:1760
216
  #@ cpd
217
  msgid "Browsers"
218
  msgstr "Περιηγητές"
219
 
220
- #: counter-options.php:267
221
  #@ cpd
222
  msgid "Substring of the user agent, separated by comma"
223
  msgstr "Υπορουτίνα του οδηγού χρήστη, χωρισμένες με κόμμα"
224
 
225
- #: counter-options.php:290
226
  #@ cpd
227
  msgid "Show in lists"
228
  msgstr "Εμφάνιση στις λίστες"
229
 
230
- #: counter-options.php:291
231
  #@ cpd
232
  msgid "Show \"Reads per Post\" in a new column in post management views."
233
  msgstr "Εμφάνιση \"Reads per Post\" σε νέα στήλη στις απεικονίσεις των άρθρων."
234
 
235
- #: counter-options.php:299
236
  #@ cpd
237
  msgid "Start Values"
238
  msgstr "Αρχικές Τιμές"
239
 
240
- #: counter-options.php:303
241
  #@ cpd
242
  msgid "Here you can change the date of first count and add a start count."
243
  msgstr "Εδώ μπορείτε να αλλάξετε την ημερομηνία της πρώτης μέτρησης και να προσθέσετε μια νέα μέτρηση"
244
 
245
- #: counter-options.php:307
246
  #@ cpd
247
  msgid "Start date"
248
  msgstr "Αρχική ημερομηνία"
249
 
250
- #: counter-options.php:308
251
  #@ cpd
252
  msgid "Your old Counter starts at?"
253
  msgstr "Πότε ξεκινά ο παλαιότερος σας Μετρητής;"
254
 
255
- #: counter-options.php:311
256
- #: counter-options.php:315
257
  #@ cpd
258
  msgid "Start count"
259
  msgstr "Έναρξη μέτρησης"
260
 
261
- #: counter-options.php:312
262
  #@ cpd
263
  msgid "Add this value to \"Total visitors\"."
264
  msgstr "Προσθήκη αυτής της τιμής στους \"Total visitors\"."
265
 
266
- #: counter-options.php:316
267
  #@ cpd
268
  msgid "Add this value to \"Total reads\"."
269
  msgstr "Προσθήκη αυτής της τιμής στους \"Total reads\"."
270
 
271
- #: counter-options.php:324
272
  #@ cpd
273
  msgid "Debug mode"
274
  msgstr "Λειτουργία εξακρίβωσης λαθών (Debug)"
275
 
276
- #: counter-options.php:326
277
  #@ cpd
278
  msgid "Show debug informations at the bottom of all pages."
279
  msgstr "Εμφάνιση πληροφοριών (debug) στο κάτω μέρος όλων των σελίδων."
280
 
281
- #: counter-options.php:340
282
  #@ cpd
283
  msgid "GeoIP - Countries"
284
  msgstr "Γαίο-ΙΡ - Χώρες"
285
 
286
- #: counter-options.php:349
287
  #@ cpd
288
  msgid "Update old counter data"
289
  msgstr "Ενημέρωση παλαιότερων δεδομένων μετρητή"
290
 
291
- #: counter-options.php:362
292
  #@ cpd
293
  msgid "Update GeoIP database"
294
  msgstr "Ενημέρωση Γαίο-ΙΡ βάσης δεδομένων"
295
 
296
- #: counter-options.php:365
297
  #@ cpd
298
  msgid "Download a new version of GeoIP.dat file."
299
  msgstr "Κατεβάστε νέα έκδοση του αρχείου GeoIP.dat."
300
 
301
- #: counter-options.php:371
302
  #@ cpd
303
  msgid "More informations about GeoIP"
304
  msgstr "Περισσότερες πληροφορίες για το Γαίο-ΙΡ"
305
 
306
- #: counter-options.php:386
307
- #: massbots.php:33
308
  #@ cpd
309
  msgid "Mass Bots"
310
  msgstr "Μαζικά bots"
311
 
312
- #: counter-options.php:390
313
  #, php-format
314
  #@ cpd
315
  msgid "Show all IPs with more than %s page views per day"
316
  msgstr "Εμφάνιση όλων των ΙΡ με περισσότερες από %s σελίδες ανά ημέρα"
317
 
318
- #: counter-options.php:391
319
- #: notes.php:76
320
- #: userperspan.php:43
321
  #@ cpd
322
  msgid "show"
323
  msgstr "εμφάνιση"
324
 
325
- #: counter-options.php:399
326
  #@ cpd
327
  msgid "IP"
328
  msgstr "IP"
329
 
330
- #: counter-options.php:400
331
- #: notes.php:80
332
  #@ cpd
333
  #@ default
334
  msgid "Date"
335
  msgstr "Ημερομηνία"
336
 
337
- #: counter-options.php:401
338
  #@ cpd
339
  msgid "Client"
340
  msgstr "Πελάτης"
341
 
342
- #: counter-options.php:402
343
  #@ cpd
344
  msgid "Views"
345
  msgstr "Αναγνώσεις"
346
 
347
- #: counter-options.php:413
348
- #: counter-options.php:435
349
  #, php-format
350
  #@ cpd
351
  msgid "Delete these %s counts"
352
  msgstr "Διαγράψτε αυτές τις %s μετρήσεις"
353
 
354
- #: counter-options.php:445
355
- #: counter-options.php:454
356
  #@ cpd
357
  msgid "Clean the database"
358
  msgstr "Εκκαθάριση βάσης δεδομένων"
359
 
360
- #: counter-options.php:448
361
  #@ cpd
362
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
363
  msgstr "Μπορείτε να καθαρίσετε το πίνακα μετρήσεων με τη διαγραφή των \"spam data\".<br />Άμα προσθέσετε νέα bots πάνω στα παλαιά \"spam data\" θα κρατηθούν στην βάση δεδομένων.<br />Εδώ μπορείτε να τρέξετε το φίλτρο bot ξανά και να σβήσετε τις επισκέψεις των bot."
364
 
365
- #: counter-options.php:463
366
- #: counter-options.php:472
367
  #@ cpd
368
  msgid "Reset the counter"
369
  msgstr "΄Μηδενισμός μετρητή"
370
 
371
- #: counter-options.php:466
372
  #@ cpd
373
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
374
  msgstr "Μπορείτε να μηδενίσετε τον μετρητή με την εκκαθάριση του πίνακα. ΟΛΑ ΣΕ 0!<br />Κάντε εφεδρικά αντίγραφα άμα χρειάζεστε τα τωρινά δεδομένα!"
375
 
376
- #: counter-options.php:484
377
  #@ cpd
378
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
379
  msgstr "Άμα το \"Count per Day\" είναι μόνο απενεργοποιημένο οι πίνακες στην βάση δεδομένων θα διατηρηθούν."
380
 
381
- #: counter-options.php:485
382
  #@ cpd
383
  msgid "Here you can delete the tables and disable \"Count per Day\"."
384
  msgstr "Εδώ μπορείτε να διαγράψετε τους πίνακες και να απενεργοποιήσετε το \"Count per Day\"."
385
 
386
- #: counter-options.php:488
387
  #@ cpd
388
  msgid "WARNING"
389
  msgstr "ΠΡΟΣΟΧΗ"
390
 
391
- #: counter-options.php:489
392
  #@ cpd
393
  msgid "These tables (with ALL counter data) will be deleted."
394
  msgstr "Αυτοί οι πίνακες (μαζί με ΌΛΑ τα δεδομένα των μετρήσεων) θα διαγραφούν."
395
 
396
- #: counter-options.php:491
397
  #@ cpd
398
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
399
  msgstr "Άμα το \"Count per Day\" επανεγκατασταθεί, ο μετρητής θα ξεκινήσει από το 0."
400
 
401
- #: counter-options.php:495
 
402
  #@ cpd
403
  msgid "Yes"
404
  msgstr "Ναι"
405
 
406
- #: counter-options.php:496
407
  #@ cpd
408
  msgid "You are sure to disable Count per Day and delete all data?"
409
  msgstr "Θέλετε σίγουρα να απενεργοποιήσετε το \"Count per Day\" και να σβήσετε όλα τα δεδομένα;"
410
 
411
- #: counter-options.php:504
412
  #@ cpd
413
  msgid "Support"
414
  msgstr "Υποστήριξη"
415
 
416
- #: counter.php:1716
417
  #, php-format
418
  #@ cpd
419
  msgid "Time for Count per Day: <code>%s</code>."
420
  msgstr "Χρόνος για το Count per Day: <code>%s</code>."
421
 
422
- #: counter.php:1717
423
  #@ cpd
424
  msgid "Bug? Problem? Question? Hint? Praise?"
425
  msgstr "Λάθη; Προβλήματα; Ερωτήσεις; Προτάσεις; Έπαινοι;"
426
 
427
- #: counter.php:1718
428
  #, php-format
429
  #@ cpd
430
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
431
  msgstr "Γράψτε ένα σχόλιο στη <a href=\"%s\">σελίδα του πρόσθετου</a>."
432
 
433
- #: counter.php:524
434
- #: counter.php:2219
435
  #@ cpd
436
  msgid "Total reads"
437
  msgstr "Συνολικές αναγνώσεις"
438
 
439
- #: counter.php:525
440
- #: counter.php:2220
441
  #@ cpd
442
  msgid "Reads today"
443
  msgstr "Αναγνώσεις σήμερα"
444
 
445
- #: counter.php:526
446
- #: counter.php:2221
447
  #@ cpd
448
  msgid "Reads yesterday"
449
  msgstr "Αναγνώσεις χτες"
450
 
451
- #: counter.php:529
452
- #: counter.php:534
453
- #: counter.php:1604
454
- #: counter.php:1750
455
- #: counter.php:2224
456
  #@ cpd
457
  msgid "Total visitors"
458
  msgstr "Συνολικοί επισκέπτες"
459
 
460
- #: counter.php:530
461
- #: counter.php:2230
462
  #@ cpd
463
  msgid "Visitors currently online"
464
  msgstr "Επισκέπτες αυτή την στιγμή"
465
 
466
- #: counter.php:531
467
- #: counter.php:2225
468
  #@ cpd
469
  msgid "Visitors today"
470
  msgstr "Επισκέπτες σήμερα"
471
 
472
- #: counter.php:532
473
- #: counter.php:2226
474
  #@ cpd
475
  msgid "Visitors yesterday"
476
  msgstr "Επισκέπτες χτες"
477
 
478
- #: counter.php:533
479
- #: counter.php:2227
480
  #@ cpd
481
  msgid "Visitors last week"
482
  msgstr "Επισκέπτες την προηγούμενη εβδομάδα"
483
 
484
- #: counter.php:535
485
- #: counter.php:636
486
- #: counter.php:1606
487
- #: counter.php:1756
488
- #: counter.php:1765
489
- #: counter.php:2229
490
- #: userperspan.php:33
491
  #@ cpd
492
  msgid "Visitors per day"
493
  msgstr "Επισκέπτες ανά ημέρα"
494
 
495
- #: counter.php:536
496
- #: counter.php:2231
 
497
  #@ cpd
498
  msgid "Counter starts on"
499
  msgstr "Ο μετρητής αρχίζει από"
500
 
501
- #: counter.php:819
502
- #@ cpd
503
- msgid "days"
504
- msgstr "ημέρες"
505
-
506
- #: counter.php:822
507
- #: counter.php:1376
508
- #: notes.php:47
509
- #: notes.php:81
510
  #@ cpd
511
  msgid "Notes"
512
  msgstr "Σημειώσεις"
513
 
514
- #: counter.php:845
515
- #@ cpd
516
- msgid "no reads at this time"
517
- msgstr "άνευ αναγνώσεων τη παρούσα στιγμή."
518
-
519
- #: counter.php:1257
520
  #, php-format
521
  #@ cpd
522
  msgid "The %s most visited posts in last %s days:"
523
  msgstr "Τα %s πιο αναγνωσμένα άρθρα τις τελευταίες %s ημέρες:"
524
 
525
- #: counter.php:1374
526
  #@ default
527
  msgid "Show"
528
  msgstr "Εμφάνιση"
529
 
530
- #: counter.php:1421
531
  #@ cpd
532
  msgid "Other"
533
  msgstr "Άλλα"
534
 
535
- #: counter.php:1505
536
  #@ default
537
  msgid "Edit Post"
538
  msgstr "Επεξεργασία Άρθρου"
539
 
540
- #: counter.php:1520
541
- #: massbots.php:50
542
  #: userperspan.php:63
543
  #@ default
544
  msgid "Front page displays"
545
  msgstr "Η πρώτη σελίδα εμφανίζει"
546
 
547
- #: counter.php:1591
 
 
548
  #@ default
549
  msgid "Settings"
550
  msgstr "Ρυθμίσεις"
551
 
552
  # tjekkes
553
- #: counter-options.php:225
554
- #: counter.php:528
555
- #: counter.php:1661
 
556
  #@ cpd
557
  msgid "Reads"
558
  msgstr "Αναγνώσεις"
559
 
560
- #: counter.php:2218
561
  #@ cpd
562
  msgid "This post"
563
  msgstr "Αυτό το άρθρο"
564
 
565
- #: counter.php:635
566
- #: counter.php:1766
567
  #@ cpd
568
  msgid "Reads per day"
569
  msgstr "Αναγνώσεις ανά ημέρα"
570
 
571
- #: counter.php:1752
572
- #: counter.php:2228
573
  #@ cpd
574
  msgid "Visitors per month"
575
  msgstr "Επισκέπτες ανά μήνα"
576
 
577
- #: counter.php:1755
578
  #@ cpd
579
  msgid "Latest Counts"
580
  msgstr "Τελευταίες μετρήσεις"
581
 
582
- #: counter.php:1757
583
  #@ default
584
  msgid "Plugin"
585
  msgstr "Πρόσθετο"
586
 
587
- #: counter.php:1770
588
  #@ cpd
589
  msgid "Reads per Country"
590
  msgstr "Αναγνώσεις ανά χώρα"
591
 
592
- #: counter.php:1771
593
  #@ cpd
594
  msgid "Visitors per Country"
595
  msgstr "Επισκέψεις ανά χώρα"
596
 
597
- #: counter.php:1786
598
- #: counter.php:2147
599
  #@ cpd
600
  msgid "Statistics"
601
  msgstr "Στατιστικά"
602
 
603
- #: counter.php:900
604
- #: counter.php:1856
605
  #@ cpd
606
  msgid "Map"
607
  msgstr "Χάρτης"
608
 
609
- #: notes.php:81
610
- #@ cpd
611
- msgid "(1 per day)"
612
- msgstr "(1 ανά ημέρα)"
613
-
614
- #: notes.php:82
615
  #@ default
616
  msgid "Action"
617
  msgstr "Δράση"
618
 
619
- #: notes.php:87
620
  #@ cpd
621
  msgid "add"
622
  msgstr "προσθήκη"
623
 
624
- #: notes.php:102
625
  #@ cpd
626
  msgid "save"
627
  msgstr "αποθήκευση"
628
 
629
- #: notes.php:103
630
  #@ cpd
631
  msgid "delete"
632
  msgstr "διαγραφή"
633
 
634
- #: notes.php:114
635
  #@ cpd
636
  msgid "edit"
637
  msgstr "επεξεργασία"
638
 
639
- #: userperspan.php:37
640
  #@ cpd
641
  msgid "Start"
642
  msgstr "Έναρξη"
643
 
644
- #: userperspan.php:39
645
  #@ cpd
646
  msgid "End"
647
  msgstr "Λήξη"
648
 
649
- #: userperspan.php:41
650
  #@ cpd
651
  msgid "PostID"
652
  msgstr "Κωδικός άρθρου (PostID)"
653
 
654
- #: userperspan.php:49
655
  #@ cpd
656
  msgid "no data found"
657
  msgstr "δεν βρέθηκαν δεδομένα"
658
 
659
- #: geoip/geoip.php:108
660
  #@ cpd
661
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
662
  msgstr "Συγνώμη αλλά αναγκαίες λειτουργίες (zlib) δεν βρέθηκαν ή δεν έχουν ενεργοποιηθεί στο php.ini."
663
 
664
- #: geoip/geoip.php:132
665
  #@ cpd
666
  msgid "New GeoIP database installed."
667
  msgstr "Νέα Γαίο-ΙΡ βάση δεδομένων εγκαταστάθηκε."
668
 
669
- #: geoip/geoip.php:134
670
  #@ cpd
671
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
672
  msgstr "Συγνώμη αλλά συναίβει λάθος. Δοκιμάστε ξανά ή ελέγξτε άμα τα δικαιώματα του φακέλου \"geoip\" είναι 777."
673
 
674
- #: counter-options.php:352
675
  #@ cpd
676
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
677
  msgstr "Μπορείτε να ενημερώσετε τα δεδομένα των χωρών για όλες τις καταχωρήσεις στην βάση δεδομένων με το να τις διασταυρώσετε με τις διευθύνσεις ΙΡ της βάσης δεδομένων της Γαίο-ΙΡ. Αυτό παίρνει πολύ ώρα!"
678
 
679
- #: counter-options.php:186
680
  #@ cpd
681
  msgid "Counter"
682
  msgstr "Μετρητής"
683
 
684
- #: counter-options.php:224
685
  #@ cpd
686
  msgid "Clients and referrers"
687
  msgstr "Πελάτες και εισερχόμενοι σύνδεσμοι (referrers)"
688
 
689
- #: counter-options.php:225
690
  #@ cpd
691
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
692
  msgstr "Αποθήκευση και απεικόνιση πελατών και εισερχόμενων συνδέσμων.<br />Απαιτεί μεγάλο χώρο στην βάση δεδομένων αλλά παρέχει ακριβέστερες πληροφορίες για τους επισκέπτες σας."
693
 
694
- #: counter-options.php:278
695
  #@ cpd
696
  msgid "Local URLs"
697
  msgstr "Τοπικές ιστοδιευθύνσεις"
698
 
699
- #: counter-options.php:279
700
  #@ cpd
701
  msgid "Show local referrers too."
702
  msgstr "Απεικόνιση και των τοπικών εισερχόμενων συνδέσμων (referrers)."
703
 
704
- #: counter-options.php:287
705
  #@ default
706
  msgid "Posts"
707
  msgstr "Άρθρα"
708
 
709
- #: counter-options.php:287
710
  #@ default
711
  msgid "Pages"
712
  msgstr "Σελίδες"
713
 
714
- #: counter.php:527
715
- #: counter.php:2222
716
  #@ cpd
717
  msgid "Reads last week"
718
  msgstr "Αναγνώσεις προηγούμενης εβδομάδας"
719
 
720
- #: counter.php:1514
721
  #@ default
722
  msgid "Category"
723
  msgstr "Κατηγορία"
724
 
725
- #: counter.php:1517
726
  #@ default
727
  msgid "Tag"
728
  msgstr "Πινακίδιο"
729
 
730
- #: counter.php:1719
731
  #@ default
732
  msgid "License"
733
  msgstr "Άδεια"
734
 
735
- #: counter.php:1753
736
- #: counter.php:2223
737
  #@ cpd
738
  msgid "Reads per month"
739
  msgstr "Αναγνώσεις ανά μήνα"
740
 
741
- #: counter.php:1761
742
  #@ cpd
743
  msgid "Referrer"
744
  msgstr "Εισερχόμενοι σύνδεσμοι(referrers)"
745
 
746
- #: counter.php:2242
747
  #@ default
748
  msgid "Title"
749
  msgstr "Τίτλος"
750
 
751
- #: counter-options.php:256
752
- #@ cpd
753
- msgid "Old Charts"
754
- msgstr "Παλαιά Διαγράμματα"
755
-
756
- #: counter-options.php:257
757
- #@ cpd
758
- msgid "Show old bar charts."
759
- msgstr "Εμφάνιση παλαιών Διαγραμμάτων."
760
-
761
- #: counter-options.php:270
762
  #@ cpd
763
  msgid "Referrers - Entries"
764
  msgstr "Εισερχόμενοι σύνδεσμοι - Καταχωρήσεις"
765
 
766
- #: counter-options.php:271
767
  #@ cpd
768
  msgid "How many referrers do you want to see on dashboard page?"
769
  msgstr "Πόσοι εισερχόμενοι σύνδεσμοι επιθυμείτε να εμφανίζονται στην κεντρική σελίδα;"
770
 
771
- #: counter-options.php:274
772
  #@ cpd
773
  msgid "Referrers - Days"
774
  msgstr "Εισερχόμενοι σύνδεσμοι - Ημέρες"
775
 
776
- #: counter.php:1449
777
  #, php-format
778
  #@ cpd
779
  msgid "The %s referrers in last %s days:"
780
  msgstr "Οι πρόσφατοι %s εισερχόμενοι σύνδεσμοι των τελευταίων %s ημερών:"
781
 
782
- #: counter.php:1751
783
  #@ cpd
784
  msgid "Visitors online"
785
  msgstr "Επισκέπτες σε σύνδεση"
786
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:50
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Οι ρυθμίσεις σας ενημερώθηκαν"
26
 
27
+ #: counter-options.php:61
28
  #, php-format
29
  #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Οι χώρες ενημερώθηκαν. <b>%s</b> καταχωρήσεις στις %s δεν έχουν αντιστοιχηθεί με χώρες."
32
 
33
+ #: counter-options.php:64
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "ενημέρωση επόμενων"
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Καθαρίστηκαν μαζικά bot. %s μετρήσεις σβήστηκαν."
43
 
44
+ #: counter-options.php:114
45
  #, php-format
46
  #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Καθαρίστικε η βάση δεδομένων. %s γραμμές σβήστηκαν."
49
 
50
+ #: counter-options.php:124
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Μηδενίστηκε ο μετρητής."
54
 
55
+ #: counter-options.php:129
56
+ #: counter-options.php:817
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "Απεγκατάσταση του Count per Day"
60
 
61
+ #: counter-options.php:134
62
+ #: counter-options.php:135
63
+ #: counter-options.php:136
64
  #, php-format
65
  #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Πίνακες %s διαγράφηκαν"
68
 
69
+ #: counter-options.php:137
70
  #@ cpd
71
  msgid "Options deleted"
72
  msgstr "Οι ρυθμίσεις διαγράφηκαν"
73
 
74
+ #: counter-options.php:318
75
+ #: counter-options.php:803
76
  #@ cpd
77
  msgid "Uninstall"
78
  msgstr "Απεγκατάσταση"
79
 
80
+ #: counter-options.php:319
81
  #@ cpd
82
  msgid "Click here"
83
  msgstr "Κάντε κλικ εδώ"
84
 
85
+ #: counter-options.php:319
86
  #@ cpd
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "για να ολοκληρώσετε την απεγκατάσταση και να απενεργοποιήσετε το \"Count per Day\"."
89
 
90
+ #: counter-options.php:356
 
 
 
 
 
91
  #@ cpd
92
  msgid "Online time"
93
  msgstr "Χρόνος σε σύνδεση"
94
 
95
+ #: counter-options.php:357
96
  #@ cpd
97
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
  msgstr "Δευτερόλεπτα για τον μετρητή συνδεδεμένων χρηστών. Χρησιμοποιείται για τους \"Visitors online\" στην κεντρική σελίδα."
99
 
100
+ #: counter-options.php:360
101
  #@ cpd
102
  msgid "Logged on Users"
103
  msgstr "Εγγεγραμμένοι-Συνδεδεμένοι Χρήστες"
104
 
105
+ #: counter-options.php:362
106
  #@ cpd
107
  msgid "count too"
108
  msgstr "μετρήστε επίσης"
109
 
110
+ #: counter-options.php:363
111
  #@ cpd
112
  msgid "until User Level"
113
  msgstr "μέχρι το Επίπεδο Χρήστη"
114
 
115
+ #: counter-options.php:374
116
  #@ cpd
117
  msgid "Auto counter"
118
  msgstr "Αυτόματος μετρητής"
119
 
120
+ #: counter-options.php:375
121
  #@ cpd
122
  msgid "Counts automatically single-posts and pages, no changes on template needed."
123
  msgstr "Μετρά αυτόματα μονά-άρθρα και σελίδες, δεν χρειάζεται αλλαγή στο πρότυπο (template)."
124
 
125
+ #: counter-options.php:378
126
  #@ cpd
127
  msgid "Bots to ignore"
128
  msgstr "Bots που θα αγνοηθούν"
129
 
130
+ #: counter-options.php:382
131
  #@ cpd
132
  msgid "Anonymous IP"
133
  msgstr "Ανώνυμος IP"
134
 
135
+ #: counter-options.php:386
136
  #@ cpd
137
  msgid "Cache"
138
  msgstr "Αποθυκευμένη μνήμη (Cache)"
139
 
140
+ #: counter-options.php:387
141
  #@ cpd
142
  msgid "I use a cache plugin. Count these visits with ajax."
143
  msgstr "Χρησιμοποιώ ένα cache-πρόσθετο. Μετρήστε αυτές τις επισκέψεις με ajax."
144
 
145
+ #: counter-options.php:556
146
  #@ cpd
147
  msgid "Update options"
148
  msgstr "Ενημέρωση ρυθμίσεων"
149
 
150
+ #: counter-options.php:403
151
  #@ default
152
  msgid "Dashboard"
153
  msgstr "Κεντρικός πίνακας"
154
 
155
+ #: counter-core.php:735
156
+ #: counter-options.php:438
157
  #@ cpd
158
  msgid "Visitors per post"
159
  msgstr "Επισκέπτες ανά άρθρο"
160
 
161
+ #: counter-options.php:439
162
+ #: counter-options.php:443
163
  #@ cpd
164
  msgid "How many posts do you want to see on dashboard page?"
165
  msgstr "Πόσα άρθρα επιθυμείτε να βλέπετε στη κεντρική σελίδα σας;"
166
 
167
+ #: counter-options.php:442
168
  #@ cpd
169
  msgid "Latest Counts - Posts"
170
  msgstr "Τελευταίες Μετρήσεις - Άρθρα"
171
 
172
+ #: counter-options.php:446
173
  #@ cpd
174
  msgid "Latest Counts - Days"
175
  msgstr "Τελευταίες Μετρήσεις - Ημέρες"
176
 
177
+ #: counter-options.php:447
178
+ #: counter-options.php:451
179
+ #: counter-options.php:473
180
  #@ cpd
181
  msgid "How many days do you want look back?"
182
  msgstr "Μέχρι πόσες ημέρες επιθυμείτε να βλέπετε στο παρελθόν;"
183
 
184
+ #: counter-options.php:450
185
  #@ cpd
186
  msgid "Chart - Days"
187
  msgstr "Διάγραμμα - Ημερών"
188
 
189
+ #: counter-options.php:454
190
  #@ cpd
191
  msgid "Chart - Height"
192
  msgstr "Διάγραμμα - Ύψος"
193
 
194
+ #: counter-options.php:455
195
  #@ cpd
196
  msgid "Height of the biggest bar"
197
  msgstr "Ύψος της μεγαλύτερης μπάρας"
198
 
199
+ #: counter-options.php:459
200
  #@ cpd
201
  msgid "Countries"
202
  msgstr "Χώρες"
203
 
204
+ #: counter-options.php:460
205
  #@ cpd
206
  msgid "How many countries do you want to see on dashboard page?"
207
  msgstr "Πόσες χώρες επιθυμείτε να βλέπετε στην κεντρική σελίδα;"
208
 
209
+ #: counter-core.php:741
210
+ #: counter-options.php:464
211
  #@ cpd
212
  msgid "Browsers"
213
  msgstr "Περιηγητές"
214
 
215
+ #: counter-options.php:465
216
  #@ cpd
217
  msgid "Substring of the user agent, separated by comma"
218
  msgstr "Υπορουτίνα του οδηγού χρήστη, χωρισμένες με κόμμα"
219
 
220
+ #: counter-options.php:487
221
  #@ cpd
222
  msgid "Show in lists"
223
  msgstr "Εμφάνιση στις λίστες"
224
 
225
+ #: counter-options.php:488
226
  #@ cpd
227
  msgid "Show \"Reads per Post\" in a new column in post management views."
228
  msgstr "Εμφάνιση \"Reads per Post\" σε νέα στήλη στις απεικονίσεις των άρθρων."
229
 
230
+ #: counter-options.php:495
231
  #@ cpd
232
  msgid "Start Values"
233
  msgstr "Αρχικές Τιμές"
234
 
235
+ #: counter-options.php:499
236
  #@ cpd
237
  msgid "Here you can change the date of first count and add a start count."
238
  msgstr "Εδώ μπορείτε να αλλάξετε την ημερομηνία της πρώτης μέτρησης και να προσθέσετε μια νέα μέτρηση"
239
 
240
+ #: counter-options.php:503
241
  #@ cpd
242
  msgid "Start date"
243
  msgstr "Αρχική ημερομηνία"
244
 
245
+ #: counter-options.php:504
246
  #@ cpd
247
  msgid "Your old Counter starts at?"
248
  msgstr "Πότε ξεκινά ο παλαιότερος σας Μετρητής;"
249
 
250
+ #: counter-options.php:507
251
+ #: counter-options.php:511
252
  #@ cpd
253
  msgid "Start count"
254
  msgstr "Έναρξη μέτρησης"
255
 
256
+ #: counter-options.php:508
257
  #@ cpd
258
  msgid "Add this value to \"Total visitors\"."
259
  msgstr "Προσθήκη αυτής της τιμής στους \"Total visitors\"."
260
 
261
+ #: counter-options.php:512
262
  #@ cpd
263
  msgid "Add this value to \"Total reads\"."
264
  msgstr "Προσθήκη αυτής της τιμής στους \"Total reads\"."
265
 
266
+ #: counter-options.php:549
267
  #@ cpd
268
  msgid "Debug mode"
269
  msgstr "Λειτουργία εξακρίβωσης λαθών (Debug)"
270
 
271
+ #: counter-options.php:551
272
  #@ cpd
273
  msgid "Show debug informations at the bottom of all pages."
274
  msgstr "Εμφάνιση πληροφοριών (debug) στο κάτω μέρος όλων των σελίδων."
275
 
276
+ #: counter-options.php:734
277
  #@ cpd
278
  msgid "GeoIP - Countries"
279
  msgstr "Γαίο-ΙΡ - Χώρες"
280
 
281
+ #: counter-options.php:743
282
  #@ cpd
283
  msgid "Update old counter data"
284
  msgstr "Ενημέρωση παλαιότερων δεδομένων μετρητή"
285
 
286
+ #: counter-options.php:755
287
  #@ cpd
288
  msgid "Update GeoIP database"
289
  msgstr "Ενημέρωση Γαίο-ΙΡ βάσης δεδομένων"
290
 
291
+ #: counter-options.php:750
292
  #@ cpd
293
  msgid "Download a new version of GeoIP.dat file."
294
  msgstr "Κατεβάστε νέα έκδοση του αρχείου GeoIP.dat."
295
 
296
+ #: counter-options.php:760
297
  #@ cpd
298
  msgid "More informations about GeoIP"
299
  msgstr "Περισσότερες πληροφορίες για το Γαίο-ΙΡ"
300
 
301
+ #: counter-options.php:575
302
+ #: massbots.php:35
303
  #@ cpd
304
  msgid "Mass Bots"
305
  msgstr "Μαζικά bots"
306
 
307
+ #: counter-options.php:579
308
  #, php-format
309
  #@ cpd
310
  msgid "Show all IPs with more than %s page views per day"
311
  msgstr "Εμφάνιση όλων των ΙΡ με περισσότερες από %s σελίδες ανά ημέρα"
312
 
313
+ #: counter-options.php:580
314
+ #: notes.php:71
315
+ #: userperspan.php:44
316
  #@ cpd
317
  msgid "show"
318
  msgstr "εμφάνιση"
319
 
320
+ #: counter-options.php:588
321
  #@ cpd
322
  msgid "IP"
323
  msgstr "IP"
324
 
325
+ #: counter-options.php:589
326
+ #: notes.php:75
327
  #@ cpd
328
  #@ default
329
  msgid "Date"
330
  msgstr "Ημερομηνία"
331
 
332
+ #: counter-options.php:590
333
  #@ cpd
334
  msgid "Client"
335
  msgstr "Πελάτης"
336
 
337
+ #: counter-options.php:591
338
  #@ cpd
339
  msgid "Views"
340
  msgstr "Αναγνώσεις"
341
 
342
+ #: counter-options.php:606
343
+ #: counter-options.php:622
344
  #, php-format
345
  #@ cpd
346
  msgid "Delete these %s counts"
347
  msgstr "Διαγράψτε αυτές τις %s μετρήσεις"
348
 
349
+ #: counter-options.php:663
350
+ #: counter-options.php:672
351
  #@ cpd
352
  msgid "Clean the database"
353
  msgstr "Εκκαθάριση βάσης δεδομένων"
354
 
355
+ #: counter-options.php:666
356
  #@ cpd
357
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
  msgstr "Μπορείτε να καθαρίσετε το πίνακα μετρήσεων με τη διαγραφή των \"spam data\".<br />Άμα προσθέσετε νέα bots πάνω στα παλαιά \"spam data\" θα κρατηθούν στην βάση δεδομένων.<br />Εδώ μπορείτε να τρέξετε το φίλτρο bot ξανά και να σβήσετε τις επισκέψεις των bot."
359
 
360
+ #: counter-options.php:784
361
+ #: counter-options.php:794
362
  #@ cpd
363
  msgid "Reset the counter"
364
  msgstr "΄Μηδενισμός μετρητή"
365
 
366
+ #: counter-options.php:787
367
  #@ cpd
368
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
  msgstr "Μπορείτε να μηδενίσετε τον μετρητή με την εκκαθάριση του πίνακα. ΟΛΑ ΣΕ 0!<br />Κάντε εφεδρικά αντίγραφα άμα χρειάζεστε τα τωρινά δεδομένα!"
370
 
371
+ #: counter-options.php:806
372
  #@ cpd
373
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
  msgstr "Άμα το \"Count per Day\" είναι μόνο απενεργοποιημένο οι πίνακες στην βάση δεδομένων θα διατηρηθούν."
375
 
376
+ #: counter-options.php:807
377
  #@ cpd
378
  msgid "Here you can delete the tables and disable \"Count per Day\"."
379
  msgstr "Εδώ μπορείτε να διαγράψετε τους πίνακες και να απενεργοποιήσετε το \"Count per Day\"."
380
 
381
+ #: counter-options.php:810
382
  #@ cpd
383
  msgid "WARNING"
384
  msgstr "ΠΡΟΣΟΧΗ"
385
 
386
+ #: counter-options.php:811
387
  #@ cpd
388
  msgid "These tables (with ALL counter data) will be deleted."
389
  msgstr "Αυτοί οι πίνακες (μαζί με ΌΛΑ τα δεδομένα των μετρήσεων) θα διαγραφούν."
390
 
391
+ #: counter-options.php:813
392
  #@ cpd
393
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
  msgstr "Άμα το \"Count per Day\" επανεγκατασταθεί, ο μετρητής θα ξεκινήσει από το 0."
395
 
396
+ #: counter-options.php:793
397
+ #: counter-options.php:816
398
  #@ cpd
399
  msgid "Yes"
400
  msgstr "Ναι"
401
 
402
+ #: counter-options.php:817
403
  #@ cpd
404
  msgid "You are sure to disable Count per Day and delete all data?"
405
  msgstr "Θέλετε σίγουρα να απενεργοποιήσετε το \"Count per Day\" και να σβήσετε όλα τα δεδομένα;"
406
 
407
+ #: counter-options.php:721
408
  #@ cpd
409
  msgid "Support"
410
  msgstr "Υποστήριξη"
411
 
412
+ #: counter-core.php:697
413
  #, php-format
414
  #@ cpd
415
  msgid "Time for Count per Day: <code>%s</code>."
416
  msgstr "Χρόνος για το Count per Day: <code>%s</code>."
417
 
418
+ #: counter-core.php:698
419
  #@ cpd
420
  msgid "Bug? Problem? Question? Hint? Praise?"
421
  msgstr "Λάθη; Προβλήματα; Ερωτήσεις; Προτάσεις; Έπαινοι;"
422
 
423
+ #: counter-core.php:699
424
  #, php-format
425
  #@ cpd
426
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
  msgstr "Γράψτε ένα σχόλιο στη <a href=\"%s\">σελίδα του πρόσθετου</a>."
428
 
429
+ #: counter.php:155
430
+ #: counter.php:1197
431
  #@ cpd
432
  msgid "Total reads"
433
  msgstr "Συνολικές αναγνώσεις"
434
 
435
+ #: counter.php:156
436
+ #: counter.php:1198
437
  #@ cpd
438
  msgid "Reads today"
439
  msgstr "Αναγνώσεις σήμερα"
440
 
441
+ #: counter.php:157
442
+ #: counter.php:1199
443
  #@ cpd
444
  msgid "Reads yesterday"
445
  msgstr "Αναγνώσεις χτες"
446
 
447
+ #: counter-core.php:731
448
+ #: counter.php:160
449
+ #: counter.php:1010
450
+ #: counter.php:1202
 
451
  #@ cpd
452
  msgid "Total visitors"
453
  msgstr "Συνολικοί επισκέπτες"
454
 
455
+ #: counter.php:161
456
+ #: counter.php:1208
457
  #@ cpd
458
  msgid "Visitors currently online"
459
  msgstr "Επισκέπτες αυτή την στιγμή"
460
 
461
+ #: counter.php:162
462
+ #: counter.php:1203
463
  #@ cpd
464
  msgid "Visitors today"
465
  msgstr "Επισκέπτες σήμερα"
466
 
467
+ #: counter.php:163
468
+ #: counter.php:1204
469
  #@ cpd
470
  msgid "Visitors yesterday"
471
  msgstr "Επισκέπτες χτες"
472
 
473
+ #: counter.php:164
474
+ #: counter.php:1205
475
  #@ cpd
476
  msgid "Visitors last week"
477
  msgstr "Επισκέπτες την προηγούμενη εβδομάδα"
478
 
479
+ #: counter-core.php:737
480
+ #: counter.php:166
481
+ #: counter.php:263
482
+ #: counter.php:1012
483
+ #: counter.php:1207
484
+ #: userperspan.php:34
 
485
  #@ cpd
486
  msgid "Visitors per day"
487
  msgstr "Επισκέπτες ανά ημέρα"
488
 
489
+ #: counter.php:167
490
+ #: counter.php:825
491
+ #: counter.php:1209
492
  #@ cpd
493
  msgid "Counter starts on"
494
  msgstr "Ο μετρητής αρχίζει από"
495
 
496
+ #: counter.php:788
497
+ #: notes.php:42
498
+ #: notes.php:76
 
 
 
 
 
 
499
  #@ cpd
500
  msgid "Notes"
501
  msgstr "Σημειώσεις"
502
 
503
+ #: counter.php:672
 
 
 
 
 
504
  #, php-format
505
  #@ cpd
506
  msgid "The %s most visited posts in last %s days:"
507
  msgstr "Τα %s πιο αναγνωσμένα άρθρα τις τελευταίες %s ημέρες:"
508
 
509
+ #: counter.php:786
510
  #@ default
511
  msgid "Show"
512
  msgstr "Εμφάνιση"
513
 
514
+ #: counter.php:821
515
  #@ cpd
516
  msgid "Other"
517
  msgstr "Άλλα"
518
 
519
+ #: counter.php:976
520
  #@ default
521
  msgid "Edit Post"
522
  msgstr "Επεξεργασία Άρθρου"
523
 
524
+ #: counter.php:991
525
+ #: massbots.php:52
526
  #: userperspan.php:63
527
  #@ default
528
  msgid "Front page displays"
529
  msgstr "Η πρώτη σελίδα εμφανίζει"
530
 
531
+ #: counter-core.php:583
532
+ #: counter-options.php:343
533
+ #: counter-options.php:560
534
  #@ default
535
  msgid "Settings"
536
  msgstr "Ρυθμίσεις"
537
 
538
  # tjekkes
539
+ #: counter-core.php:647
540
+ #: counter-options.php:393
541
+ #: counter.php:159
542
+ #: counter.php:875
543
  #@ cpd
544
  msgid "Reads"
545
  msgstr "Αναγνώσεις"
546
 
547
+ #: counter.php:1196
548
  #@ cpd
549
  msgid "This post"
550
  msgstr "Αυτό το άρθρο"
551
 
552
+ #: counter.php:262
 
553
  #@ cpd
554
  msgid "Reads per day"
555
  msgstr "Αναγνώσεις ανά ημέρα"
556
 
557
+ #: counter-core.php:733
558
+ #: counter.php:1206
559
  #@ cpd
560
  msgid "Visitors per month"
561
  msgstr "Επισκέπτες ανά μήνα"
562
 
563
+ #: counter-core.php:736
564
  #@ cpd
565
  msgid "Latest Counts"
566
  msgstr "Τελευταίες μετρήσεις"
567
 
568
+ #: counter-core.php:738
569
  #@ default
570
  msgid "Plugin"
571
  msgstr "Πρόσθετο"
572
 
573
+ #: counter-core.php:746
574
  #@ cpd
575
  msgid "Reads per Country"
576
  msgstr "Αναγνώσεις ανά χώρα"
577
 
578
+ #: counter-core.php:747
579
  #@ cpd
580
  msgid "Visitors per Country"
581
  msgstr "Επισκέψεις ανά χώρα"
582
 
583
+ #: counter-core.php:762
584
+ #: counter.php:1124
585
  #@ cpd
586
  msgid "Statistics"
587
  msgstr "Στατιστικά"
588
 
589
+ #: counter.php:353
590
+ #: counter.php:1041
591
  #@ cpd
592
  msgid "Map"
593
  msgstr "Χάρτης"
594
 
595
+ #: notes.php:77
 
 
 
 
 
596
  #@ default
597
  msgid "Action"
598
  msgstr "Δράση"
599
 
600
+ #: notes.php:82
601
  #@ cpd
602
  msgid "add"
603
  msgstr "προσθήκη"
604
 
605
+ #: notes.php:98
606
  #@ cpd
607
  msgid "save"
608
  msgstr "αποθήκευση"
609
 
610
+ #: notes.php:99
611
  #@ cpd
612
  msgid "delete"
613
  msgstr "διαγραφή"
614
 
615
+ #: notes.php:110
616
  #@ cpd
617
  msgid "edit"
618
  msgstr "επεξεργασία"
619
 
620
+ #: userperspan.php:38
621
  #@ cpd
622
  msgid "Start"
623
  msgstr "Έναρξη"
624
 
625
+ #: userperspan.php:40
626
  #@ cpd
627
  msgid "End"
628
  msgstr "Λήξη"
629
 
630
+ #: userperspan.php:42
631
  #@ cpd
632
  msgid "PostID"
633
  msgstr "Κωδικός άρθρου (PostID)"
634
 
635
+ #: userperspan.php:50
636
  #@ cpd
637
  msgid "no data found"
638
  msgstr "δεν βρέθηκαν δεδομένα"
639
 
640
+ #: geoip/geoip.php:93
641
  #@ cpd
642
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
  msgstr "Συγνώμη αλλά αναγκαίες λειτουργίες (zlib) δεν βρέθηκαν ή δεν έχουν ενεργοποιηθεί στο php.ini."
644
 
645
+ #: geoip/geoip.php:117
646
  #@ cpd
647
  msgid "New GeoIP database installed."
648
  msgstr "Νέα Γαίο-ΙΡ βάση δεδομένων εγκαταστάθηκε."
649
 
650
+ #: geoip/geoip.php:119
651
  #@ cpd
652
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
  msgstr "Συγνώμη αλλά συναίβει λάθος. Δοκιμάστε ξανά ή ελέγξτε άμα τα δικαιώματα του φακέλου \"geoip\" είναι 777."
654
 
655
+ #: counter-options.php:737
656
  #@ cpd
657
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
  msgstr "Μπορείτε να ενημερώσετε τα δεδομένα των χωρών για όλες τις καταχωρήσεις στην βάση δεδομένων με το να τις διασταυρώσετε με τις διευθύνσεις ΙΡ της βάσης δεδομένων της Γαίο-ΙΡ. Αυτό παίρνει πολύ ώρα!"
659
 
660
+ #: counter-options.php:352
661
  #@ cpd
662
  msgid "Counter"
663
  msgstr "Μετρητής"
664
 
665
+ #: counter-options.php:390
666
  #@ cpd
667
  msgid "Clients and referrers"
668
  msgstr "Πελάτες και εισερχόμενοι σύνδεσμοι (referrers)"
669
 
670
+ #: counter-options.php:393
671
  #@ cpd
672
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
  msgstr "Αποθήκευση και απεικόνιση πελατών και εισερχόμενων συνδέσμων.<br />Απαιτεί μεγάλο χώρο στην βάση δεδομένων αλλά παρέχει ακριβέστερες πληροφορίες για τους επισκέπτες σας."
674
 
675
+ #: counter-options.php:476
676
  #@ cpd
677
  msgid "Local URLs"
678
  msgstr "Τοπικές ιστοδιευθύνσεις"
679
 
680
+ #: counter-options.php:477
681
  #@ cpd
682
  msgid "Show local referrers too."
683
  msgstr "Απεικόνιση και των τοπικών εισερχόμενων συνδέσμων (referrers)."
684
 
685
+ #: counter-options.php:484
686
  #@ default
687
  msgid "Posts"
688
  msgstr "Άρθρα"
689
 
690
+ #: counter-options.php:484
691
  #@ default
692
  msgid "Pages"
693
  msgstr "Σελίδες"
694
 
695
+ #: counter.php:158
696
+ #: counter.php:1200
697
  #@ cpd
698
  msgid "Reads last week"
699
  msgstr "Αναγνώσεις προηγούμενης εβδομάδας"
700
 
701
+ #: counter.php:985
702
  #@ default
703
  msgid "Category"
704
  msgstr "Κατηγορία"
705
 
706
+ #: counter.php:988
707
  #@ default
708
  msgid "Tag"
709
  msgstr "Πινακίδιο"
710
 
711
+ #: counter-core.php:700
712
  #@ default
713
  msgid "License"
714
  msgstr "Άδεια"
715
 
716
+ #: counter-core.php:734
717
+ #: counter.php:1201
718
  #@ cpd
719
  msgid "Reads per month"
720
  msgstr "Αναγνώσεις ανά μήνα"
721
 
722
+ #: counter-core.php:742
723
  #@ cpd
724
  msgid "Referrer"
725
  msgstr "Εισερχόμενοι σύνδεσμοι(referrers)"
726
 
727
+ #: counter.php:1220
728
  #@ default
729
  msgid "Title"
730
  msgstr "Τίτλος"
731
 
732
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
733
  #@ cpd
734
  msgid "Referrers - Entries"
735
  msgstr "Εισερχόμενοι σύνδεσμοι - Καταχωρήσεις"
736
 
737
+ #: counter-options.php:469
738
  #@ cpd
739
  msgid "How many referrers do you want to see on dashboard page?"
740
  msgstr "Πόσοι εισερχόμενοι σύνδεσμοι επιθυμείτε να εμφανίζονται στην κεντρική σελίδα;"
741
 
742
+ #: counter-options.php:472
743
  #@ cpd
744
  msgid "Referrers - Days"
745
  msgstr "Εισερχόμενοι σύνδεσμοι - Ημέρες"
746
 
747
+ #: counter.php:845
748
  #, php-format
749
  #@ cpd
750
  msgid "The %s referrers in last %s days:"
751
  msgstr "Οι πρόσφατοι %s εισερχόμενοι σύνδεσμοι των τελευταίων %s ημερών:"
752
 
753
+ #: counter-core.php:732
754
  #@ cpd
755
  msgid "Visitors online"
756
  msgstr "Επισκέπτες σε σύνδεση"
757
 
758
+ #: counter-core.php:194
759
+ #, php-format
760
+ #@ cpd
761
+ msgid "\"Count per Day\" updated to version %s."
762
+ msgstr ""
763
+
764
+ #: counter-core.php:925
765
+ #@ cpd
766
+ msgid "Backup failed! Cannot open file"
767
+ msgstr ""
768
+
769
+ #: counter-core.php:948
770
+ #, php-format
771
+ #@ cpd
772
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
773
+ msgstr ""
774
+
775
+ #: counter-core.php:1035
776
+ #@ cpd
777
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
+ msgstr ""
779
+
780
+ #: counter-core.php:1041
781
+ #, php-format
782
+ #@ cpd
783
+ msgid "Backup of counter table saved in %s."
784
+ msgstr ""
785
+
786
+ #: counter-core.php:1043
787
+ #, php-format
788
+ #@ cpd
789
+ msgid "Backup of counter options and collection saved in %s."
790
+ msgstr ""
791
+
792
+ #: counter-options.php:172
793
+ #@ cpd
794
+ msgid "Collection in progress..."
795
+ msgstr ""
796
+
797
+ #: counter-options.php:242
798
+ #@ cpd
799
+ msgid "Get Visitors per Post..."
800
+ msgstr ""
801
+
802
+ #: counter-options.php:263
803
+ #@ cpd
804
+ msgid "Delete old data..."
805
+ msgstr ""
806
+
807
+ #: counter-options.php:287
808
+ #, php-format
809
+ #@ cpd
810
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
+ msgstr ""
812
+
813
+ #: counter-options.php:296
814
+ #@ cpd
815
+ msgid "Installation of \"Count per Day\" checked"
816
+ msgstr ""
817
+
818
+ #: counter-options.php:344
819
+ #: counter-options.php:561
820
+ #@ default
821
+ msgid "Tools"
822
+ msgstr ""
823
+
824
+ #: counter-options.php:395
825
+ #@ cpd
826
+ msgid "Save URL only, no query string."
827
+ msgstr ""
828
+
829
+ #: counter-options.php:419
830
+ #@ cpd
831
+ msgid "Who can see it"
832
+ msgstr ""
833
+
834
+ #: counter-options.php:428
835
+ #@ cpd
836
+ msgid "custom"
837
+ msgstr ""
838
+
839
+ #: counter-options.php:430
840
+ #@ cpd
841
+ msgid "and higher are allowed to see the statistics page."
842
+ msgstr ""
843
+
844
+ #: counter-options.php:432
845
+ #, php-format
846
+ #@ cpd
847
+ msgid "Set the %s capability %s a user need:"
848
+ msgstr ""
849
+
850
+ #: counter-options.php:519
851
+ #@ cpd
852
+ msgid "Stylesheet"
853
+ msgstr ""
854
+
855
+ #: counter-options.php:522
856
+ #@ cpd
857
+ msgid "NO Stylesheet in Frontend"
858
+ msgstr ""
859
+
860
+ #: counter-options.php:523
861
+ #@ cpd
862
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
+ msgstr ""
864
+
865
+ #: counter-options.php:530
866
+ #: counter-options.php:634
867
+ #@ cpd
868
+ msgid "Backup"
869
+ msgstr ""
870
+
871
+ #: counter-options.php:533
872
+ #@ cpd
873
+ msgid "Entries per pass"
874
+ msgstr ""
875
+
876
+ #: counter-options.php:536
877
+ #@ cpd
878
+ msgid "How many entries should be saved per pass? Default: 10000"
879
+ msgstr ""
880
+
881
+ #: counter-options.php:541
882
+ #@ cpd
883
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
+ msgstr ""
885
+
886
+ #: counter-options.php:638
887
+ #, php-format
888
+ #@ cpd
889
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
+ msgstr ""
891
+
892
+ #: counter-options.php:642
893
+ #@ cpd
894
+ msgid "Backup the database"
895
+ msgstr ""
896
+
897
+ #: counter-options.php:681
898
+ #: counter-options.php:713
899
+ #@ cpd
900
+ msgid "Collect old data"
901
+ msgstr ""
902
+
903
+ #: counter-options.php:686
904
+ #, php-format
905
+ #@ cpd
906
+ msgid "Current size of your counter table %s is %s."
907
+ msgstr ""
908
+
909
+ #: counter-options.php:688
910
+ #@ cpd
911
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
+ msgstr ""
913
+
914
+ #: counter-options.php:693
915
+ #, php-format
916
+ #@ cpd
917
+ msgid "Currently your collection contains data until %s."
918
+ msgstr ""
919
+
920
+ #: counter-options.php:697
921
+ #@ cpd
922
+ msgid "Normally new data will be added to the collection."
923
+ msgstr ""
924
+
925
+ #: counter-options.php:703
926
+ #@ cpd
927
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
+ msgstr ""
929
+
930
+ #: counter-options.php:704
931
+ #, php-format
932
+ #@ cpd
933
+ msgid "All collected data until %s will deleted."
934
+ msgstr ""
935
+
936
+ #: counter-options.php:709
937
+ #, php-format
938
+ #@ cpd
939
+ msgid "Keep entries of last %s full months + current month in counter table."
940
+ msgstr ""
941
+
942
+ #: counter-options.php:768
943
+ #@ cpd
944
+ msgid "ReActivation"
945
+ msgstr ""
946
+
947
+ #: counter-options.php:771
948
+ #@ cpd
949
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
+ msgstr ""
951
+
952
+ #: counter-options.php:776
953
+ #@ cpd
954
+ msgid "ReActivate the plugin"
955
+ msgstr ""
956
+
957
+ #: counter.php:165
958
+ #: counter.php:899
959
+ #@ cpd
960
+ msgid "Visitors"
961
+ msgstr ""
962
+
963
+ #: counter.php:168
964
+ #: counter.php:169
965
+ #@ cpd
966
+ msgid "Most visited day"
967
+ msgstr ""
968
+
969
+ #: counter.php:1239
970
+ #@ cpd
971
+ msgid "drag and drop to sort"
972
+ msgstr ""
973
+
locale/cpd-es_ES.mo CHANGED
Binary file
locale/cpd-es_ES.po CHANGED
@@ -19,767 +19,954 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:46
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Las opciones han sido guardadas"
26
 
27
- #: counter-options.php:111
28
  #, php-format
29
  #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Base de datos borrada. %s filas borradas."
32
 
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DESINSTALA Count per Day"
38
 
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "La tabla %s ha sido borrada"
46
 
47
- #: counter-options.php:132
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Las opciones han sido canceladas"
51
 
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Desinstala"
57
 
58
- #: counter-options.php:157
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Hacer click aquí"
62
 
63
- #: counter-options.php:157
64
  #@ cpd
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
67
 
68
- #: counter-options.php:179
69
- #@ cpd
70
- msgid "Options"
71
- msgstr "Opciones"
72
-
73
- #: counter-options.php:190
74
  #@ cpd
75
  msgid "Online time"
76
  msgstr "Tiempo online"
77
 
78
- #: counter-options.php:191
79
  #@ cpd
80
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
81
  msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
82
 
83
- #: counter-options.php:194
84
  #@ cpd
85
  msgid "Logged on Users"
86
  msgstr "Usuarios conectados"
87
 
88
- #: counter-options.php:196
89
  #@ cpd
90
  msgid "count too"
91
  msgstr "contar también"
92
 
93
- #: counter-options.php:208
94
  #@ cpd
95
  msgid "Auto counter"
96
  msgstr "Auto contador"
97
 
98
- #: counter-options.php:209
99
  #@ cpd
100
  msgid "Counts automatically single-posts and pages, no changes on template needed."
101
  msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
102
 
103
- #: counter-options.php:212
104
  #@ cpd
105
  msgid "Bots to ignore"
106
  msgstr "Bots a ignorar"
107
 
108
- #: counter-options.php:331
109
  #@ cpd
110
  msgid "Update options"
111
  msgstr "Actualiza las opciones"
112
 
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
  #@ cpd
116
  msgid "Clean the database"
117
  msgstr "Borrar la base de datos"
118
 
119
- #: counter-options.php:448
120
  #@ cpd
121
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
122
  msgstr "Puedes borrar la tabla del contador para eliminar el \"spam\". <br /> Agregando nuevos bots encima del viejo \"spam\" se mantendrán en la base de datos. <br /> A continuación puedes activar el filtro de nuevo y eliminar las visitas de los robots."
123
 
124
- #: counter-options.php:484
125
  #@ cpd
126
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
127
  msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
128
 
129
- #: counter-options.php:485
130
  #@ cpd
131
  msgid "Here you can delete the tables and disable \"Count per Day\"."
132
  msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
133
 
134
- #: counter-options.php:488
135
  #@ cpd
136
  msgid "WARNING"
137
  msgstr "ATENCIÓN"
138
 
139
- #: counter-options.php:489
140
  #@ cpd
141
  msgid "These tables (with ALL counter data) will be deleted."
142
  msgstr "Estas tablas (con TODOS los datos) serán borradas."
143
 
144
- #: counter-options.php:491
145
  #@ cpd
146
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
147
  msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
148
 
149
- #: counter-options.php:495
 
150
  #@ cpd
151
  msgid "Yes"
152
  msgstr "Sí"
153
 
154
- #: counter-options.php:496
155
  #@ cpd
156
  msgid "You are sure to disable Count per Day and delete all data?"
157
  msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
158
 
159
- #: counter.php:1786
160
- #: counter.php:2147
161
  #@ cpd
162
  msgid "Statistics"
163
  msgstr "Estadísticas"
164
 
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
  #@ cpd
171
  msgid "Total visitors"
172
  msgstr "Total de visitas"
173
 
174
- #: counter.php:530
175
- #: counter.php:2230
176
  #@ cpd
177
  msgid "Visitors currently online"
178
  msgstr "Visitantes conectados"
179
 
180
- #: counter.php:531
181
- #: counter.php:2225
182
  #@ cpd
183
  msgid "Visitors today"
184
  msgstr "Hoy"
185
 
186
- #: counter.php:532
187
- #: counter.php:2226
188
  #@ cpd
189
  msgid "Visitors yesterday"
190
  msgstr "Ayer"
191
 
192
- #: counter.php:533
193
- #: counter.php:2227
194
  #@ cpd
195
  msgid "Visitors last week"
196
  msgstr "La semana anterior"
197
 
198
- #: counter.php:536
199
- #: counter.php:2231
 
200
  #@ cpd
201
  msgid "Counter starts on"
202
  msgstr "El contador comenzó el"
203
 
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
  #@ cpd
212
  msgid "Visitors per day"
213
  msgstr "Visitantes por día"
214
 
215
- #: counter.php:1752
216
- #: counter.php:2228
217
  #@ cpd
218
  msgid "Visitors per month"
219
  msgstr "Visitantes por mes"
220
 
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
  #@ cpd
224
  msgid "Visitors per post"
225
  msgstr "Visitantes por entrada"
226
 
227
- #: counter-options.php:117
228
  #@ cpd
229
  msgid "Counter reseted."
230
  msgstr "El contador ha sido reinicializado."
231
 
232
- #: counter-options.php:237
233
- #: counter-options.php:241
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Número de entradas que quieres ver en el escritorio"
237
 
238
- #: counter-options.php:240
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Últimos conteos - Entradas"
242
 
243
- #: counter-options.php:244
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Últimos conteos - Días"
247
 
248
- #: counter-options.php:245
249
- #: counter-options.php:249
250
- #: counter-options.php:275
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "¿Cuántos días hacia atrás quieres ver?"
254
 
255
- #: counter-options.php:290
256
  #@ cpd
257
  msgid "Show in lists"
258
  msgstr "Mostrar en las listas"
259
 
260
- #: counter-options.php:291
261
  #@ cpd
262
  msgid "Show \"Reads per Post\" in a new column in post management views."
263
  msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
264
 
265
- #: counter-options.php:463
266
- #: counter-options.php:472
267
  #@ cpd
268
  msgid "Reset the counter"
269
  msgstr "Reinicia el contador"
270
 
271
- #: counter-options.php:466
272
  #@ cpd
273
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
274
  msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
275
 
276
- #: counter.php:1257
277
  #, php-format
278
  #@ cpd
279
  msgid "The %s most visited posts in last %s days:"
280
  msgstr "Las %s entradas más visitadas en los últimos %s días:"
281
 
282
- #: counter.php:1591
 
 
283
  #@ default
284
  msgid "Settings"
285
  msgstr "Configuración"
286
 
287
- #: counter-options.php:225
288
- #: counter.php:528
289
- #: counter.php:1661
 
290
  #@ cpd
291
  msgid "Reads"
292
  msgstr "Visitas"
293
 
294
- #: counter.php:1755
295
  #@ cpd
296
  msgid "Latest Counts"
297
  msgstr "Últimos conteos"
298
 
299
- #: counter-options.php:248
300
  #@ cpd
301
  msgid "Chart - Days"
302
  msgstr "Gráfica - Días"
303
 
304
- #: counter-options.php:252
305
  #@ cpd
306
  msgid "Chart - Height"
307
  msgstr "Gráfica - Altura"
308
 
309
- #: counter-options.php:253
310
  #@ cpd
311
  msgid "Height of the biggest bar"
312
  msgstr "Altura de la categoría mayor"
313
 
314
- #: counter.php:845
315
- #@ cpd
316
- msgid "no reads at this time"
317
- msgstr "sin lecturas en este momento"
318
-
319
- #: counter.php:819
320
- #@ cpd
321
- msgid "days"
322
- msgstr "días"
323
-
324
- #: counter.php:2218
325
  #@ cpd
326
  msgid "This post"
327
  msgstr "Este artículo"
328
 
329
- #: counter-options.php:233
330
  #@ default
331
  msgid "Dashboard"
332
  msgstr "Escritorio"
333
 
334
- #: counter.php:635
335
- #: counter.php:1766
336
  #@ cpd
337
  msgid "Reads per day"
338
  msgstr "Lecturas por día"
339
 
340
- #: counter-options.php:57
341
  #, php-format
342
  #@ cpd
343
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
344
  msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
345
 
346
- #: counter-options.php:62
347
  #@ cpd
348
  msgid "update next"
349
  msgstr "actualiza el próximo"
350
 
351
- #: counter-options.php:340
352
  #@ cpd
353
  msgid "GeoIP - Countries"
354
  msgstr "GeoIP - Países"
355
 
356
- #: counter-options.php:349
357
  #@ cpd
358
  msgid "Update old counter data"
359
  msgstr "Actualiza los datos antiguos"
360
 
361
- #: counter-options.php:362
362
  #@ cpd
363
  msgid "Update GeoIP database"
364
  msgstr "Actualiza la base de datos de GeoIP"
365
 
366
- #: counter-options.php:365
367
  #@ cpd
368
  msgid "Download a new version of GeoIP.dat file."
369
  msgstr "Decarga la nueva versión del archivo GeoIP.dat."
370
 
371
- #: counter-options.php:371
372
  #@ cpd
373
  msgid "More informations about GeoIP"
374
  msgstr "Más información sobre GeoIP"
375
 
376
- #: counter.php:1770
377
  #@ cpd
378
  msgid "Reads per Country"
379
  msgstr "Lecturas por país"
380
 
381
- #: geoip/geoip.php:132
382
  #@ cpd
383
  msgid "New GeoIP database installed."
384
  msgstr "La nueva base de datos de GeoIP ha sido instalada."
385
 
386
- #: geoip/geoip.php:134
387
  #@ cpd
388
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
389
  msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos de la carpeta \"geoip\" están como 777."
390
 
391
- #: geoip/geoip.php:108
392
  #@ cpd
393
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
394
  msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
395
 
396
- #: counter-options.php:261
397
  #@ cpd
398
  msgid "Countries"
399
  msgstr "Países"
400
 
401
- #: counter-options.php:262
402
  #@ cpd
403
  msgid "How many countries do you want to see on dashboard page?"
404
  msgstr "¿Cuántos países desea ver en el escritorio?"
405
 
406
- #: counter-options.php:104
407
  #, php-format
408
  #@ cpd
409
  msgid "Mass Bots cleaned. %s counts deleted."
410
  msgstr "Robots borrados. %s conteos borrados."
411
 
412
- #: counter-options.php:386
413
- #: massbots.php:33
414
  #@ cpd
415
  msgid "Mass Bots"
416
  msgstr "Robots"
417
 
418
- #: counter-options.php:390
419
  #, php-format
420
  #@ cpd
421
  msgid "Show all IPs with more than %s page views per day"
422
  msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
423
 
424
- #: counter-options.php:391
425
- #: notes.php:76
426
- #: userperspan.php:43
427
  #@ cpd
428
  msgid "show"
429
  msgstr "muestra"
430
 
431
- #: counter-options.php:413
432
- #: counter-options.php:435
433
  #, php-format
434
  #@ cpd
435
  msgid "Delete these %s counts"
436
  msgstr "Borra estos %s conteos"
437
 
438
- #: counter.php:1421
439
  #@ cpd
440
  msgid "Other"
441
  msgstr "Otro"
442
 
443
- #: counter.php:1520
444
- #: massbots.php:50
445
  #: userperspan.php:63
446
  #@ default
447
  msgid "Front page displays"
448
  msgstr "Página inicial mostradas"
449
 
450
- #: counter-options.php:266
451
- #: counter.php:1760
452
  #@ cpd
453
  msgid "Browsers"
454
  msgstr "Navegador"
455
 
456
- #: counter-options.php:399
457
  #@ cpd
458
  msgid "IP"
459
  msgstr "IP"
460
 
461
- #: counter-options.php:400
462
- #: notes.php:80
463
  #@ cpd
464
  #@ default
465
  msgid "Date"
466
  msgstr "Fecha"
467
 
468
- #: counter-options.php:401
469
  #@ cpd
470
  msgid "Client"
471
  msgstr "Cliente"
472
 
473
- #: counter-options.php:402
474
  #@ cpd
475
  msgid "Views"
476
  msgstr "Vistas"
477
 
478
- #: counter-options.php:299
479
  #@ cpd
480
  msgid "Start Values"
481
  msgstr "Valores de inicio"
482
 
483
- #: counter-options.php:303
484
  #@ cpd
485
  msgid "Here you can change the date of first count and add a start count."
486
  msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
487
 
488
- #: counter-options.php:307
489
  #@ cpd
490
  msgid "Start date"
491
  msgstr "Fecha de inicio"
492
 
493
- #: counter-options.php:308
494
  #@ cpd
495
  msgid "Your old Counter starts at?"
496
  msgstr "Su antiguo contador comienza el"
497
 
498
- #: counter-options.php:311
499
- #: counter-options.php:315
500
  #@ cpd
501
  msgid "Start count"
502
  msgstr "Iniciar el conteo"
503
 
504
- #: counter-options.php:312
505
  #@ cpd
506
  msgid "Add this value to \"Total visitors\"."
507
  msgstr "Añadir este valor al \"Total de visitas\"."
508
 
509
- #: counter-options.php:504
510
  #@ cpd
511
  msgid "Support"
512
  msgstr "Soporte"
513
 
514
- #: counter.php:1717
515
  #@ cpd
516
  msgid "Bug? Problem? Question? Hint? Praise?"
517
  msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
518
 
519
- #: counter.php:1718
520
  #, php-format
521
  #@ cpd
522
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
523
  msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
524
 
525
- #: counter.php:1374
526
  #@ default
527
  msgid "Show"
528
  msgstr "Muestra"
529
 
530
- #: counter.php:1505
531
  #@ default
532
  msgid "Edit Post"
533
  msgstr "Modifica entrada"
534
 
535
- #: counter.php:1716
536
  #, php-format
537
  #@ cpd
538
  msgid "Time for Count per Day: <code>%s</code>."
539
  msgstr "Huso horario para Count per Day: <code>%s</code>."
540
 
541
- #: counter-options.php:197
542
  #@ cpd
543
  msgid "until User Level"
544
  msgstr "hasta el Nivel de Usuario"
545
 
546
- #: counter.php:1757
547
  #@ default
548
  msgid "Plugin"
549
  msgstr "Plugin"
550
 
551
- #: counter.php:822
552
- #: counter.php:1376
553
- #: notes.php:47
554
- #: notes.php:81
555
  #@ cpd
556
  msgid "Notes"
557
  msgstr "Notas"
558
 
559
- #: notes.php:82
560
  #@ default
561
  msgid "Action"
562
  msgstr "Acción"
563
 
564
- #: notes.php:87
565
  #@ cpd
566
  msgid "add"
567
  msgstr "añade"
568
 
569
- #: notes.php:102
570
  #@ cpd
571
  msgid "save"
572
  msgstr "salva"
573
 
574
- #: notes.php:103
575
  #@ cpd
576
  msgid "delete"
577
  msgstr "borra"
578
 
579
- #: notes.php:114
580
  #@ cpd
581
  msgid "edit"
582
  msgstr "modifica"
583
 
584
- #: notes.php:81
585
- #@ cpd
586
- msgid "(1 per day)"
587
- msgstr "(1 por día)"
588
-
589
- #: counter-options.php:316
590
  #@ cpd
591
  msgid "Add this value to \"Total reads\"."
592
  msgstr "Añade este valor a \"Total de lecturas\"."
593
 
594
- #: counter.php:524
595
- #: counter.php:2219
596
  #@ cpd
597
  msgid "Total reads"
598
  msgstr "Total de lecturas"
599
 
600
- #: counter.php:525
601
- #: counter.php:2220
602
  #@ cpd
603
  msgid "Reads today"
604
  msgstr "Lecturas hoy"
605
 
606
- #: counter.php:526
607
- #: counter.php:2221
608
  #@ cpd
609
  msgid "Reads yesterday"
610
  msgstr "Lecturas ayer"
611
 
612
- #: counter.php:900
613
- #: counter.php:1856
614
  #@ cpd
615
  msgid "Map"
616
  msgstr "Mapa"
617
 
618
- #: counter-options.php:216
619
  #@ cpd
620
  msgid "Anonymous IP"
621
  msgstr "IP anónimo"
622
 
623
- #: counter-options.php:220
624
  #@ cpd
625
  msgid "Cache"
626
  msgstr "Cache"
627
 
628
- #: counter-options.php:221
629
  #@ cpd
630
  msgid "I use a cache plugin. Count these visits with ajax."
631
  msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
632
 
633
- #: counter-options.php:267
634
  #@ cpd
635
  msgid "Substring of the user agent, separated by comma"
636
  msgstr "Subcadena del user agent, separados por comas"
637
 
638
- #: counter-options.php:324
639
  #@ cpd
640
  msgid "Debug mode"
641
  msgstr "Modo debug"
642
 
643
- #: counter-options.php:326
644
  #@ cpd
645
  msgid "Show debug informations at the bottom of all pages."
646
  msgstr "Muestra información de debug al final de todas las páginas."
647
 
648
- #: counter.php:1771
649
  #@ cpd
650
  msgid "Visitors per Country"
651
  msgstr "Visitas por país"
652
 
653
- #: userperspan.php:37
654
  #@ cpd
655
  msgid "Start"
656
  msgstr "Inicio"
657
 
658
- #: userperspan.php:39
659
  #@ cpd
660
  msgid "End"
661
  msgstr "Fin"
662
 
663
- #: userperspan.php:41
664
  #@ cpd
665
  msgid "PostID"
666
  msgstr "ID entrada"
667
 
668
- #: userperspan.php:49
669
  #@ cpd
670
  msgid "no data found"
671
  msgstr "no se han encontrado datos"
672
 
673
- #: counter-options.php:352
674
  #@ cpd
675
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
676
  msgstr "Puede obtener los datos de países de todas las entradas verificando de nuevo la dirección IP en la base de datos de GeoIP. ¡Esto tomará un tiempo!"
677
 
678
- #: counter-options.php:186
679
  #@ cpd
680
  msgid "Counter"
681
  msgstr ""
682
 
683
- #: counter-options.php:224
684
  #@ cpd
685
  msgid "Clients and referrers"
686
  msgstr ""
687
 
688
- #: counter-options.php:225
689
  #@ cpd
690
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
691
  msgstr ""
692
 
693
- #: counter-options.php:278
694
  #@ cpd
695
  msgid "Local URLs"
696
  msgstr ""
697
 
698
- #: counter-options.php:279
699
  #@ cpd
700
  msgid "Show local referrers too."
701
  msgstr ""
702
 
703
- #: counter-options.php:287
704
  #@ default
705
  msgid "Posts"
706
  msgstr ""
707
 
708
- #: counter-options.php:287
709
  #@ default
710
  msgid "Pages"
711
  msgstr ""
712
 
713
- #: counter.php:527
714
- #: counter.php:2222
715
  #@ cpd
716
  msgid "Reads last week"
717
  msgstr ""
718
 
719
- #: counter.php:1514
720
  #@ default
721
  msgid "Category"
722
  msgstr ""
723
 
724
- #: counter.php:1517
725
  #@ default
726
  msgid "Tag"
727
  msgstr ""
728
 
729
- #: counter.php:1719
730
  #@ default
731
  msgid "License"
732
  msgstr ""
733
 
734
- #: counter.php:1753
735
- #: counter.php:2223
736
  #@ cpd
737
  msgid "Reads per month"
738
  msgstr ""
739
 
740
- #: counter.php:1761
741
  #@ cpd
742
  msgid "Referrer"
743
  msgstr ""
744
 
745
- #: counter.php:2242
746
  #@ default
747
  msgid "Title"
748
  msgstr ""
749
 
750
- #: counter-options.php:256
751
  #@ cpd
752
- msgid "Old Charts"
753
  msgstr ""
754
 
755
- #: counter-options.php:257
756
  #@ cpd
757
- msgid "Show old bar charts."
758
  msgstr ""
759
 
760
- #: counter-options.php:270
761
  #@ cpd
762
- msgid "Referrers - Entries"
763
  msgstr ""
764
 
765
- #: counter-options.php:271
 
766
  #@ cpd
767
- msgid "How many referrers do you want to see on dashboard page?"
768
  msgstr ""
769
 
770
- #: counter-options.php:274
771
  #@ cpd
772
- msgid "Referrers - Days"
773
  msgstr ""
774
 
775
- #: counter.php:1449
776
  #, php-format
777
  #@ cpd
778
- msgid "The %s referrers in last %s days:"
779
  msgstr ""
780
 
781
- #: counter.php:1751
782
  #@ cpd
783
- msgid "Visitors online"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784
  msgstr ""
785
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:49
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Las opciones han sido guardadas"
26
 
27
+ #: counter-options.php:112
28
  #, php-format
29
  #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Base de datos borrada. %s filas borradas."
32
 
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DESINSTALA Count per Day"
38
 
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "La tabla %s ha sido borrada"
46
 
47
+ #: counter-options.php:135
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Las opciones han sido canceladas"
51
 
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Desinstala"
57
 
58
+ #: counter-options.php:317
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Hacer click aquí"
62
 
63
+ #: counter-options.php:317
64
  #@ cpd
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
67
 
68
+ #: counter-options.php:355
 
 
 
 
 
69
  #@ cpd
70
  msgid "Online time"
71
  msgstr "Tiempo online"
72
 
73
+ #: counter-options.php:356
74
  #@ cpd
75
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
  msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
77
 
78
+ #: counter-options.php:359
79
  #@ cpd
80
  msgid "Logged on Users"
81
  msgstr "Usuarios conectados"
82
 
83
+ #: counter-options.php:361
84
  #@ cpd
85
  msgid "count too"
86
  msgstr "contar también"
87
 
88
+ #: counter-options.php:373
89
  #@ cpd
90
  msgid "Auto counter"
91
  msgstr "Auto contador"
92
 
93
+ #: counter-options.php:374
94
  #@ cpd
95
  msgid "Counts automatically single-posts and pages, no changes on template needed."
96
  msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
97
 
98
+ #: counter-options.php:377
99
  #@ cpd
100
  msgid "Bots to ignore"
101
  msgstr "Bots a ignorar"
102
 
103
+ #: counter-options.php:561
104
  #@ cpd
105
  msgid "Update options"
106
  msgstr "Actualiza las opciones"
107
 
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
  #@ cpd
111
  msgid "Clean the database"
112
  msgstr "Borrar la base de datos"
113
 
114
+ #: counter-options.php:659
115
  #@ cpd
116
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
  msgstr "Puedes borrar la tabla del contador para eliminar el \"spam\". <br /> Agregando nuevos bots encima del viejo \"spam\" se mantendrán en la base de datos. <br /> A continuación puedes activar el filtro de nuevo y eliminar las visitas de los robots."
118
 
119
+ #: counter-options.php:799
120
  #@ cpd
121
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
  msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
123
 
124
+ #: counter-options.php:800
125
  #@ cpd
126
  msgid "Here you can delete the tables and disable \"Count per Day\"."
127
  msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
128
 
129
+ #: counter-options.php:803
130
  #@ cpd
131
  msgid "WARNING"
132
  msgstr "ATENCIÓN"
133
 
134
+ #: counter-options.php:804
135
  #@ cpd
136
  msgid "These tables (with ALL counter data) will be deleted."
137
  msgstr "Estas tablas (con TODOS los datos) serán borradas."
138
 
139
+ #: counter-options.php:806
140
  #@ cpd
141
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
  msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
143
 
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
  #@ cpd
147
  msgid "Yes"
148
  msgstr "Sí"
149
 
150
+ #: counter-options.php:810
151
  #@ cpd
152
  msgid "You are sure to disable Count per Day and delete all data?"
153
  msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
154
 
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  #@ cpd
158
  msgid "Statistics"
159
  msgstr "Estadísticas"
160
 
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
 
165
  #@ cpd
166
  msgid "Total visitors"
167
  msgstr "Total de visitas"
168
 
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  #@ cpd
172
  msgid "Visitors currently online"
173
  msgstr "Visitantes conectados"
174
 
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  #@ cpd
178
  msgid "Visitors today"
179
  msgstr "Hoy"
180
 
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  #@ cpd
184
  msgid "Visitors yesterday"
185
  msgstr "Ayer"
186
 
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  #@ cpd
190
  msgid "Visitors last week"
191
  msgstr "La semana anterior"
192
 
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "El contador comenzó el"
199
 
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
 
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visitantes por día"
209
 
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitantes por mes"
215
 
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitantes por entrada"
221
 
222
+ #: counter-options.php:122
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "El contador ha sido reinicializado."
226
 
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Número de entradas que quieres ver en el escritorio"
232
 
233
+ #: counter-options.php:442
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Últimos conteos - Entradas"
237
 
238
+ #: counter-options.php:446
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Últimos conteos - Días"
242
 
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "¿Cuántos días hacia atrás quieres ver?"
249
 
250
+ #: counter-options.php:488
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Mostrar en las listas"
254
 
255
+ #: counter-options.php:489
256
  #@ cpd
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
259
 
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Reinicia el contador"
265
 
266
+ #: counter-options.php:780
267
  #@ cpd
268
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
269
  msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
270
 
271
+ #: counter.php:672
272
  #, php-format
273
  #@ cpd
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "Las %s entradas más visitadas en los últimos %s días:"
276
 
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
  #@ default
281
  msgid "Settings"
282
  msgstr "Configuración"
283
 
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Visitas"
291
 
292
+ #: counter-core.php:728
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Últimos conteos"
296
 
297
+ #: counter-options.php:450
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Gráfica - Días"
301
 
302
+ #: counter-options.php:454
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Gráfica - Altura"
306
 
307
+ #: counter-options.php:455
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "Altura de la categoría mayor"
311
 
312
+ #: counter.php:1196
 
 
 
 
 
 
 
 
 
 
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Este artículo"
316
 
317
+ #: counter-options.php:403
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr "Escritorio"
321
 
322
+ #: counter.php:262
 
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Lecturas por día"
326
 
327
+ #: counter-options.php:60
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
332
 
333
+ #: counter-options.php:65
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "actualiza el próximo"
337
 
338
+ #: counter-options.php:727
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - Países"
342
 
343
+ #: counter-options.php:736
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Actualiza los datos antiguos"
347
 
348
+ #: counter-options.php:748
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Actualiza la base de datos de GeoIP"
352
 
353
+ #: counter-options.php:743
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Decarga la nueva versión del archivo GeoIP.dat."
357
 
358
+ #: counter-options.php:753
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Más información sobre GeoIP"
362
 
363
+ #: counter-core.php:738
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Lecturas por país"
367
 
368
+ #: geoip/geoip.php:117
369
  #@ cpd
370
  msgid "New GeoIP database installed."
371
  msgstr "La nueva base de datos de GeoIP ha sido instalada."
372
 
373
+ #: geoip/geoip.php:119
374
  #@ cpd
375
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
376
  msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos de la carpeta \"geoip\" están como 777."
377
 
378
+ #: geoip/geoip.php:93
379
  #@ cpd
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
382
 
383
+ #: counter-options.php:459
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "Países"
387
 
388
+ #: counter-options.php:460
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "¿Cuántos países desea ver en el escritorio?"
392
 
393
+ #: counter-options.php:102
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Robots borrados. %s conteos borrados."
398
 
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Robots"
404
 
405
+ #: counter-options.php:584
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
410
 
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
  #@ cpd
415
  msgid "show"
416
  msgstr "muestra"
417
 
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
  #, php-format
421
  #@ cpd
422
  msgid "Delete these %s counts"
423
  msgstr "Borra estos %s conteos"
424
 
425
+ #: counter.php:821
426
  #@ cpd
427
  msgid "Other"
428
  msgstr "Otro"
429
 
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
  #: userperspan.php:63
433
  #@ default
434
  msgid "Front page displays"
435
  msgstr "Página inicial mostradas"
436
 
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Navegador"
442
 
443
+ #: counter-options.php:593
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
+ #: counter-options.php:594
449
+ #: notes.php:75
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Fecha"
454
 
455
+ #: counter-options.php:595
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Cliente"
459
 
460
+ #: counter-options.php:596
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Vistas"
464
 
465
+ #: counter-options.php:497
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Valores de inicio"
469
 
470
+ #: counter-options.php:501
471
  #@ cpd
472
  msgid "Here you can change the date of first count and add a start count."
473
  msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
474
 
475
+ #: counter-options.php:505
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Fecha de inicio"
479
 
480
+ #: counter-options.php:506
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Su antiguo contador comienza el"
484
 
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Iniciar el conteo"
490
 
491
+ #: counter-options.php:510
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Añadir este valor al \"Total de visitas\"."
495
 
496
+ #: counter-options.php:714
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Soporte"
500
 
501
+ #: counter-core.php:690
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
505
 
506
+ #: counter-core.php:691
507
  #, php-format
508
  #@ cpd
509
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
  msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
511
 
512
+ #: counter.php:786
513
  #@ default
514
  msgid "Show"
515
  msgstr "Muestra"
516
 
517
+ #: counter.php:976
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr "Modifica entrada"
521
 
522
+ #: counter-core.php:689
523
  #, php-format
524
  #@ cpd
525
  msgid "Time for Count per Day: <code>%s</code>."
526
  msgstr "Huso horario para Count per Day: <code>%s</code>."
527
 
528
+ #: counter-options.php:362
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "hasta el Nivel de Usuario"
532
 
533
+ #: counter-core.php:730
534
  #@ default
535
  msgid "Plugin"
536
  msgstr "Plugin"
537
 
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
 
541
  #@ cpd
542
  msgid "Notes"
543
  msgstr "Notas"
544
 
545
+ #: notes.php:77
546
  #@ default
547
  msgid "Action"
548
  msgstr "Acción"
549
 
550
+ #: notes.php:82
551
  #@ cpd
552
  msgid "add"
553
  msgstr "añade"
554
 
555
+ #: notes.php:98
556
  #@ cpd
557
  msgid "save"
558
  msgstr "salva"
559
 
560
+ #: notes.php:99
561
  #@ cpd
562
  msgid "delete"
563
  msgstr "borra"
564
 
565
+ #: notes.php:110
566
  #@ cpd
567
  msgid "edit"
568
  msgstr "modifica"
569
 
570
+ #: counter-options.php:514
 
 
 
 
 
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Añade este valor a \"Total de lecturas\"."
574
 
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Total de lecturas"
580
 
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Lecturas hoy"
586
 
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Lecturas ayer"
592
 
593
+ #: counter.php:353
594
+ #: counter.php:1041
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Mapa"
598
 
599
+ #: counter-options.php:381
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "IP anónimo"
603
 
604
+ #: counter-options.php:385
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
+ #: counter-options.php:386
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
613
 
614
+ #: counter-options.php:465
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Subcadena del user agent, separados por comas"
618
 
619
+ #: counter-options.php:554
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Modo debug"
623
 
624
+ #: counter-options.php:556
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Muestra información de debug al final de todas las páginas."
628
 
629
+ #: counter-core.php:739
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Visitas por país"
633
 
634
+ #: userperspan.php:38
635
  #@ cpd
636
  msgid "Start"
637
  msgstr "Inicio"
638
 
639
+ #: userperspan.php:40
640
  #@ cpd
641
  msgid "End"
642
  msgstr "Fin"
643
 
644
+ #: userperspan.php:42
645
  #@ cpd
646
  msgid "PostID"
647
  msgstr "ID entrada"
648
 
649
+ #: userperspan.php:50
650
  #@ cpd
651
  msgid "no data found"
652
  msgstr "no se han encontrado datos"
653
 
654
+ #: counter-options.php:730
655
  #@ cpd
656
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
  msgstr "Puede obtener los datos de países de todas las entradas verificando de nuevo la dirección IP en la base de datos de GeoIP. ¡Esto tomará un tiempo!"
658
 
659
+ #: counter-options.php:351
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr ""
663
 
664
+ #: counter-options.php:389
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr ""
668
 
669
+ #: counter-options.php:392
670
  #@ cpd
671
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
  msgstr ""
673
 
674
+ #: counter-options.php:476
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr ""
678
 
679
+ #: counter-options.php:477
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr ""
683
 
684
+ #: counter-options.php:485
685
  #@ default
686
  msgid "Posts"
687
  msgstr ""
688
 
689
+ #: counter-options.php:485
690
  #@ default
691
  msgid "Pages"
692
  msgstr ""
693
 
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr ""
699
 
700
+ #: counter.php:985
701
  #@ default
702
  msgid "Category"
703
  msgstr ""
704
 
705
+ #: counter.php:988
706
  #@ default
707
  msgid "Tag"
708
  msgstr ""
709
 
710
+ #: counter-core.php:692
711
  #@ default
712
  msgid "License"
713
  msgstr ""
714
 
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr ""
720
 
721
+ #: counter-core.php:734
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr ""
725
 
726
+ #: counter.php:1220
727
  #@ default
728
  msgid "Title"
729
  msgstr ""
730
 
731
+ #: counter-options.php:468
732
  #@ cpd
733
+ msgid "Referrers - Entries"
734
  msgstr ""
735
 
736
+ #: counter-options.php:469
737
  #@ cpd
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr ""
740
 
741
+ #: counter-options.php:472
742
  #@ cpd
743
+ msgid "Referrers - Days"
744
  msgstr ""
745
 
746
+ #: counter.php:845
747
+ #, php-format
748
  #@ cpd
749
+ msgid "The %s referrers in last %s days:"
750
  msgstr ""
751
 
752
+ #: counter-core.php:724
753
  #@ cpd
754
+ msgid "Visitors online"
755
  msgstr ""
756
 
757
+ #: counter-core.php:186
758
  #, php-format
759
  #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
+ #: counter-core.php:917
764
  #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
  msgstr ""
972
 
locale/cpd-fr_FR.mo CHANGED
Binary file
locale/cpd-fr_FR.po CHANGED
@@ -19,766 +19,953 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
- #: counter-options.php:46
23
  msgid "Options updated"
24
  msgstr "Paramètres mis à jour"
25
 
26
  #@ cpd
27
- #: counter-options.php:111
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Base de données nettoyée. %s lignes supprimées."
31
 
32
  #@ cpd
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "Désinstaller Count per Day"
37
 
38
  #@ cpd
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "Table %s supprimée"
45
 
46
  #@ cpd
47
- #: counter-options.php:132
48
  msgid "Options deleted"
49
  msgstr "Paramètres supprimés"
50
 
51
  #@ cpd
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
  msgid "Uninstall"
55
  msgstr "Désinstaller"
56
 
57
  #@ cpd
58
- #: counter-options.php:157
59
  msgid "Click here"
60
  msgstr "Cliquez ici"
61
 
62
  #@ cpd
63
- #: counter-options.php:157
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "pour terminer de désinstaller et désactiver \"Count per Day\"."
66
 
67
  #@ cpd
68
- #: counter-options.php:179
69
- msgid "Options"
70
- msgstr "Options"
71
-
72
- #@ cpd
73
- #: counter-options.php:190
74
  msgid "Online time"
75
  msgstr "Temps en ligne"
76
 
77
  #@ cpd
78
- #: counter-options.php:191
79
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
  msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
81
 
82
  #@ cpd
83
- #: counter-options.php:194
84
  msgid "Logged on Users"
85
  msgstr "Utilisateurs Connectés"
86
 
87
  #@ cpd
88
- #: counter-options.php:196
89
  msgid "count too"
90
  msgstr "compter aussi"
91
 
92
  #@ cpd
93
- #: counter-options.php:208
94
  msgid "Auto counter"
95
  msgstr "Compteur automatique"
96
 
97
  #@ cpd
98
- #: counter-options.php:209
99
  msgid "Counts automatically single-posts and pages, no changes on template needed."
100
  msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
101
 
102
  #@ cpd
103
- #: counter-options.php:212
104
  msgid "Bots to ignore"
105
  msgstr "Robots à ignorer"
106
 
107
  #@ cpd
108
- #: counter-options.php:331
109
  msgid "Update options"
110
  msgstr "Mettre à jour les options"
111
 
112
  #@ cpd
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
  msgid "Clean the database"
116
  msgstr "Nettoyer la base de données"
117
 
118
  #@ cpd
119
- #: counter-options.php:448
120
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
  msgstr "Vous pouvez nettoyer la table du compteur en supprimant le \"spam\".<br />Si vous ajoutez de nouveaux robots au dessus les anciens \"spams\" restent dans la base de données.<br />Ici, vous pouvez exécuter le filtre robot de nouveau et supprimer les visites des robots."
122
 
123
  #@ cpd
124
- #: counter-options.php:484
125
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
  msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
127
 
128
  #@ cpd
129
- #: counter-options.php:485
130
  msgid "Here you can delete the tables and disable \"Count per Day\"."
131
  msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
132
 
133
  #@ cpd
134
- #: counter-options.php:488
135
  msgid "WARNING"
136
  msgstr "ATTENTION"
137
 
138
  #@ cpd
139
- #: counter-options.php:489
140
  msgid "These tables (with ALL counter data) will be deleted."
141
  msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
142
 
143
  #@ cpd
144
- #: counter-options.php:491
145
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
  msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
147
 
148
  #@ cpd
149
- #: counter-options.php:495
 
150
  msgid "Yes"
151
  msgstr "Oui"
152
 
153
  #@ cpd
154
- #: counter-options.php:496
155
  msgid "You are sure to disable Count per Day and delete all data?"
156
  msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
157
 
158
  #@ cpd
159
- #: counter.php:1786
160
- #: counter.php:2147
161
  msgid "Statistics"
162
  msgstr "Statistiques"
163
 
164
  #@ cpd
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
  msgid "Total visitors"
171
  msgstr "Visiteurs Total"
172
 
173
  #@ cpd
174
- #: counter.php:530
175
- #: counter.php:2230
176
  msgid "Visitors currently online"
177
  msgstr "Visiteur actuellement en ligne"
178
 
179
  #@ cpd
180
- #: counter.php:531
181
- #: counter.php:2225
182
  msgid "Visitors today"
183
  msgstr "Visiteurs aujourd'hui"
184
 
185
  #@ cpd
186
- #: counter.php:532
187
- #: counter.php:2226
188
  msgid "Visitors yesterday"
189
  msgstr "Visiteurs hier"
190
 
191
  #@ cpd
192
- #: counter.php:533
193
- #: counter.php:2227
194
  msgid "Visitors last week"
195
  msgstr "Visiteurs la semaine dernière"
196
 
197
  #@ cpd
198
- #: counter.php:536
199
- #: counter.php:2231
 
200
  msgid "Counter starts on"
201
  msgstr "Compteur activé le "
202
 
203
  #@ cpd
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
  msgid "Visitors per day"
212
  msgstr "Visiteurs par jour"
213
 
214
  #@ cpd
215
- #: counter.php:1752
216
- #: counter.php:2228
217
  msgid "Visitors per month"
218
  msgstr "Visiteurs par mois"
219
 
220
  #@ cpd
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
  msgid "Visitors per post"
224
  msgstr "Visiteurs par articles"
225
 
226
  #@ cpd
227
- #: counter-options.php:117
228
  msgid "Counter reseted."
229
  msgstr "Compteur remis à zéro."
230
 
231
  #@ cpd
232
- #: counter-options.php:237
233
- #: counter-options.php:241
234
  msgid "How many posts do you want to see on dashboard page?"
235
  msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
236
 
237
  #@ cpd
238
- #: counter-options.php:240
239
  msgid "Latest Counts - Posts"
240
  msgstr "Dernier Comptes - Articles"
241
 
242
  #@ cpd
243
- #: counter-options.php:244
244
  msgid "Latest Counts - Days"
245
  msgstr "Dernier Compte - Jours"
246
 
247
  #@ cpd
248
- #: counter-options.php:245
249
- #: counter-options.php:249
250
- #: counter-options.php:275
251
  msgid "How many days do you want look back?"
252
  msgstr "Combien de jours vous voulez regarder en arrière?"
253
 
254
  #@ cpd
255
- #: counter-options.php:290
256
  msgid "Show in lists"
257
  msgstr "Montrer dans la liste"
258
 
259
  #@ cpd
260
- #: counter-options.php:291
261
  msgid "Show \"Reads per Post\" in a new column in post management views."
262
  msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
263
 
264
  #@ cpd
265
- #: counter-options.php:463
266
- #: counter-options.php:472
267
  msgid "Reset the counter"
268
  msgstr "Remise à zéro du compteur"
269
 
270
  #@ cpd
271
- #: counter-options.php:466
272
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
273
  msgstr "Vous pouvez réinitialiser le compteur en vidant la table. TOUT à 0!<br />Faites un Backup si vous avez besoin des données actuelles!"
274
 
275
  #@ cpd
276
- #: counter.php:1257
277
  #, php-format
278
  msgid "The %s most visited posts in last %s days:"
279
  msgstr "Les %s articles les plus visités dans les derniers %s jours:"
280
 
281
  #@ default
282
- #: counter.php:1591
 
 
283
  msgid "Settings"
284
  msgstr "Options"
285
 
286
  #@ cpd
287
- #: counter-options.php:225
288
- #: counter.php:528
289
- #: counter.php:1661
 
290
  msgid "Reads"
291
  msgstr "Lectures"
292
 
293
  #@ cpd
294
- #: counter.php:1755
295
  msgid "Latest Counts"
296
  msgstr "Dernier Comptes"
297
 
298
  #@ cpd
299
- #: counter-options.php:248
300
  msgid "Chart - Days"
301
  msgstr "Graphique - Jours"
302
 
303
  #@ cpd
304
- #: counter-options.php:252
305
  msgid "Chart - Height"
306
  msgstr "Graphique - Hauteur"
307
 
308
  #@ cpd
309
- #: counter-options.php:253
310
  msgid "Height of the biggest bar"
311
  msgstr "Hauteur de la plus grande barre"
312
 
313
  #@ cpd
314
- #: counter.php:845
315
- msgid "no reads at this time"
316
- msgstr "Aucune lectures pour le moment"
317
-
318
- #@ cpd
319
- #: counter.php:819
320
- msgid "days"
321
- msgstr "jours"
322
-
323
- #@ cpd
324
- #: counter.php:2218
325
  msgid "This post"
326
  msgstr "Cet article"
327
 
328
  #@ default
329
- #: counter-options.php:233
330
  msgid "Dashboard"
331
  msgstr "Tableau de bord"
332
 
333
  #@ cpd
334
- #: counter.php:635
335
- #: counter.php:1766
336
  msgid "Reads per day"
337
  msgstr "Lectures par jour"
338
 
339
  #@ cpd
340
- #: counter-options.php:57
341
  #, php-format
342
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
343
  msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
344
 
345
  #@ cpd
346
- #: counter-options.php:62
347
  msgid "update next"
348
  msgstr "mettre à jour le prochain"
349
 
350
  #@ cpd
351
- #: counter-options.php:340
352
  msgid "GeoIP - Countries"
353
  msgstr "GeoIP - Pays"
354
 
355
  #@ cpd
356
- #: counter-options.php:349
357
  msgid "Update old counter data"
358
  msgstr "Mettre à jour les données du vieux compteur"
359
 
360
  #@ cpd
361
- #: counter-options.php:362
362
  msgid "Update GeoIP database"
363
  msgstr "Mettre à jour les données de GeoIP"
364
 
365
  #@ cpd
366
- #: counter-options.php:365
367
  msgid "Download a new version of GeoIP.dat file."
368
  msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
369
 
370
  #@ cpd
371
- #: counter-options.php:371
372
  msgid "More informations about GeoIP"
373
  msgstr "Plus d'infos sur GeoIP"
374
 
375
  #@ cpd
376
- #: counter.php:1770
377
  msgid "Reads per Country"
378
  msgstr "Lectures par Pays"
379
 
380
  #@ cpd
381
- #: geoip/geoip.php:132
382
  msgid "New GeoIP database installed."
383
  msgstr "Nouvelle base de données de GeoIp installée."
384
 
385
  #@ cpd
386
- #: geoip/geoip.php:134
387
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
388
  msgstr "Désolé,une erreur est survenue. Merci de réessayer ou de vérifier que les droit d'accès du dossier\"geoip\" sont mis sur 777."
389
 
390
  #@ cpd
391
- #: geoip/geoip.php:108
392
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
393
  msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
394
 
395
  #@ cpd
396
- #: counter-options.php:261
397
  msgid "Countries"
398
  msgstr "Pays"
399
 
400
  #@ cpd
401
- #: counter-options.php:262
402
  msgid "How many countries do you want to see on dashboard page?"
403
  msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
404
 
405
  #@ cpd
406
- #: counter-options.php:104
407
  #, php-format
408
  msgid "Mass Bots cleaned. %s counts deleted."
409
  msgstr "Robots nettoyés en masse. %s comptes supprimés."
410
 
411
  #@ cpd
412
- #: counter-options.php:386
413
- #: massbots.php:33
414
  msgid "Mass Bots"
415
  msgstr "Robots en masse"
416
 
417
  #@ cpd
418
- #: counter-options.php:390
419
  #, php-format
420
  msgid "Show all IPs with more than %s page views per day"
421
  msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
422
 
423
  #@ cpd
424
- #: counter-options.php:391
425
- #: notes.php:76
426
- #: userperspan.php:43
427
  msgid "show"
428
  msgstr "montrer"
429
 
430
  #@ cpd
431
- #: counter-options.php:413
432
- #: counter-options.php:435
433
  #, php-format
434
  msgid "Delete these %s counts"
435
  msgstr "Supprimer ces %s comptes"
436
 
437
  #@ cpd
438
- #: counter.php:1421
439
  msgid "Other"
440
  msgstr "Autre"
441
 
442
  #@ default
443
- #: counter.php:1520
444
- #: massbots.php:50
445
  #: userperspan.php:63
446
  msgid "Front page displays"
447
  msgstr "Page d'accueil affiche"
448
 
449
  #@ cpd
450
- #: counter-options.php:266
451
- #: counter.php:1760
452
  msgid "Browsers"
453
  msgstr "Navigateurs"
454
 
455
  #@ cpd
456
- #: counter-options.php:399
457
  msgid "IP"
458
  msgstr "IP"
459
 
460
  #@ cpd
461
  #@ default
462
- #: counter-options.php:400
463
- #: notes.php:80
464
  msgid "Date"
465
  msgstr "Date"
466
 
467
  #@ cpd
468
- #: counter-options.php:401
469
  msgid "Client"
470
  msgstr "Client"
471
 
472
  #@ cpd
473
- #: counter-options.php:402
474
  msgid "Views"
475
  msgstr "Vues"
476
 
477
  #@ cpd
478
- #: counter-options.php:299
479
  msgid "Start Values"
480
  msgstr "Valeurs de départ"
481
 
482
  #@ cpd
483
- #: counter-options.php:303
484
  msgid "Here you can change the date of first count and add a start count."
485
  msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
486
 
487
  #@ cpd
488
- #: counter-options.php:307
489
  msgid "Start date"
490
  msgstr "Date de départ"
491
 
492
  #@ cpd
493
- #: counter-options.php:308
494
  msgid "Your old Counter starts at?"
495
  msgstr "Votre vieux compteur commence à?"
496
 
497
  #@ cpd
498
- #: counter-options.php:311
499
- #: counter-options.php:315
500
  msgid "Start count"
501
  msgstr "Commencer le compte"
502
 
503
  #@ cpd
504
- #: counter-options.php:312
505
  msgid "Add this value to \"Total visitors\"."
506
  msgstr "Ajouter cette valeur à \"visiteurs totals\"."
507
 
508
  #@ cpd
509
- #: counter-options.php:504
510
  msgid "Support"
511
  msgstr "Support"
512
 
513
  #@ cpd
514
- #: counter.php:1717
515
  msgid "Bug? Problem? Question? Hint? Praise?"
516
  msgstr "Bug? Problème? Question? Allusion? Hommage?"
517
 
518
  #@ cpd
519
- #: counter.php:1718
520
  #, php-format
521
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
522
  msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
523
 
524
  #@ default
525
- #: counter.php:1374
526
  msgid "Show"
527
  msgstr "Montrer"
528
 
529
  #@ default
530
- #: counter.php:1505
531
  msgid "Edit Post"
532
  msgstr "Editer"
533
 
534
  #@ cpd
535
- #: counter.php:1716
536
  #, php-format
537
  msgid "Time for Count per Day: <code>%s</code>."
538
  msgstr "Temps pour Count Per Day: <code>%s</code>."
539
 
540
  #@ cpd
541
- #: counter-options.php:197
542
  msgid "until User Level"
543
  msgstr "jusqu'au niveau de l'utilisateur"
544
 
545
  #@ default
546
- #: counter.php:1757
547
  msgid "Plugin"
548
  msgstr "Plugin"
549
 
550
  #@ cpd
551
- #: counter.php:822
552
- #: counter.php:1376
553
- #: notes.php:47
554
- #: notes.php:81
555
  msgid "Notes"
556
  msgstr "Notes"
557
 
558
  #@ default
559
- #: notes.php:82
560
  msgid "Action"
561
  msgstr "Action"
562
 
563
  #@ cpd
564
- #: notes.php:87
565
  msgid "add"
566
  msgstr "ajouter"
567
 
568
  #@ cpd
569
- #: notes.php:102
570
  msgid "save"
571
  msgstr "sauvegarder"
572
 
573
  #@ cpd
574
- #: notes.php:103
575
  msgid "delete"
576
  msgstr "supprimer"
577
 
578
  #@ cpd
579
- #: notes.php:114
580
  msgid "edit"
581
  msgstr "éditer"
582
 
583
  #@ cpd
584
- #: notes.php:81
585
- msgid "(1 per day)"
586
- msgstr "(1 par jour)"
587
-
588
- #@ cpd
589
- #: counter-options.php:316
590
  msgid "Add this value to \"Total reads\"."
591
  msgstr "Ajouter cette valeur à \"Lectures totales\"."
592
 
593
  #@ cpd
594
- #: counter.php:524
595
- #: counter.php:2219
596
  msgid "Total reads"
597
  msgstr "Lectures totales"
598
 
599
  #@ cpd
600
- #: counter.php:525
601
- #: counter.php:2220
602
  msgid "Reads today"
603
  msgstr "Lectures aujourd'hui"
604
 
605
  #@ cpd
606
- #: counter.php:526
607
- #: counter.php:2221
608
  msgid "Reads yesterday"
609
  msgstr "Lectures hier"
610
 
611
  #@ cpd
612
- #: counter-options.php:216
613
  msgid "Anonymous IP"
614
  msgstr "Adresse IP Anonyme"
615
 
616
  #@ cpd
617
- #: counter-options.php:220
618
  msgid "Cache"
619
  msgstr "Cache"
620
 
621
  #@ cpd
622
- #: counter-options.php:221
623
  msgid "I use a cache plugin. Count these visits with ajax."
624
  msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
625
 
626
  #@ cpd
627
- #: counter-options.php:267
628
  msgid "Substring of the user agent, separated by comma"
629
  msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
630
 
631
  #@ cpd
632
- #: counter-options.php:324
633
  msgid "Debug mode"
634
  msgstr "Mode Debug"
635
 
636
  #@ cpd
637
- #: counter-options.php:326
638
  msgid "Show debug informations at the bottom of all pages."
639
  msgstr "Afficher les informations de débogage au bas de toutes les pages."
640
 
641
  #@ cpd
642
- #: counter.php:1771
643
  msgid "Visitors per Country"
644
  msgstr "Visiteurs par Pays"
645
 
646
  #@ cpd
647
- #: counter.php:900
648
- #: counter.php:1856
649
  msgid "Map"
650
  msgstr "Carte"
651
 
652
  #@ cpd
653
- #: userperspan.php:37
654
  msgid "Start"
655
  msgstr "Début"
656
 
657
  #@ cpd
658
- #: userperspan.php:39
659
  msgid "End"
660
  msgstr "Fin"
661
 
662
  #@ cpd
663
- #: userperspan.php:41
664
  msgid "PostID"
665
  msgstr "PostID"
666
 
667
  #@ cpd
668
- #: userperspan.php:49
669
  msgid "no data found"
670
  msgstr "aucune donnée trouvée"
671
 
672
  #@ cpd
673
- #: counter-options.php:352
674
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
675
  msgstr "Vous pouvez obtenir les données par pays pour toutes les entrées dans la base de données bei vérifier l'adresse IP à nouveau GeoIP base de données. Ceci peut prendre un certain temps!"
676
 
677
  #@ cpd
678
- #: counter-options.php:186
679
  msgid "Counter"
680
  msgstr "Compteur"
681
 
682
  #@ cpd
683
- #: counter-options.php:224
684
  msgid "Clients and referrers"
685
  msgstr "Clients et Référents"
686
 
687
  #@ cpd
688
- #: counter-options.php:225
689
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
  msgstr "Enregistrer et afficher les clients et les référents.<br />Besoin de beaucoup d'espace dans la base de données, mais vous donne des informations plus détaillées de vos visiteurs."
691
 
692
  #@ cpd
693
- #: counter-options.php:278
694
  msgid "Local URLs"
695
  msgstr "Liens Locals"
696
 
697
  #@ cpd
698
- #: counter-options.php:279
699
  msgid "Show local referrers too."
700
  msgstr "Montrer les référents locals également."
701
 
702
  #@ default
703
- #: counter-options.php:287
704
  msgid "Posts"
705
  msgstr "Articles"
706
 
707
  #@ default
708
- #: counter-options.php:287
709
  msgid "Pages"
710
  msgstr "Pages"
711
 
712
  #@ cpd
713
- #: counter.php:527
714
- #: counter.php:2222
715
  msgid "Reads last week"
716
  msgstr "Lectures - Semaine Dernière"
717
 
718
  #@ default
719
- #: counter.php:1514
720
  msgid "Category"
721
  msgstr "Catégorie"
722
 
723
  #@ default
724
- #: counter.php:1517
725
  msgid "Tag"
726
  msgstr "Tag"
727
 
728
  #@ default
729
- #: counter.php:1719
730
  msgid "License"
731
  msgstr "License"
732
 
733
  #@ cpd
734
- #: counter.php:1753
735
- #: counter.php:2223
736
  msgid "Reads per month"
737
  msgstr "Lectures par mois"
738
 
739
  #@ cpd
740
- #: counter.php:1761
741
  msgid "Referrer"
742
  msgstr "Référent"
743
 
744
  #@ default
745
- #: counter.php:2242
746
  msgid "Title"
747
  msgstr "Titre"
748
 
749
  #@ cpd
750
- #: counter-options.php:256
751
- msgid "Old Charts"
752
- msgstr "Anciennes Charts"
753
-
754
- #@ cpd
755
- #: counter-options.php:257
756
- msgid "Show old bar charts."
757
- msgstr "Afficher l'ancienne barre cartes"
758
-
759
- #@ cpd
760
- #: counter-options.php:270
761
  msgid "Referrers - Entries"
762
  msgstr "Référents - Entrées"
763
 
764
  #@ cpd
765
- #: counter-options.php:271
766
  msgid "How many referrers do you want to see on dashboard page?"
767
  msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
768
 
769
  #@ cpd
770
- #: counter-options.php:274
771
  msgid "Referrers - Days"
772
  msgstr "Référents - Jours"
773
 
774
  #@ cpd
775
- #: counter.php:1449
776
  #, php-format
777
  msgid "The %s referrers in last %s days:"
778
  msgstr "Les %s référents des %s derniers jours:"
779
 
780
  #@ cpd
781
- #: counter.php:1751
782
  msgid "Visitors online"
783
  msgstr "Visiteurs en ligne"
784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
+ #: counter-options.php:49
23
  msgid "Options updated"
24
  msgstr "Paramètres mis à jour"
25
 
26
  #@ cpd
27
+ #: counter-options.php:112
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Base de données nettoyée. %s lignes supprimées."
31
 
32
  #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "Désinstaller Count per Day"
37
 
38
  #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "Table %s supprimée"
45
 
46
  #@ cpd
47
+ #: counter-options.php:135
48
  msgid "Options deleted"
49
  msgstr "Paramètres supprimés"
50
 
51
  #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
  msgid "Uninstall"
55
  msgstr "Désinstaller"
56
 
57
  #@ cpd
58
+ #: counter-options.php:317
59
  msgid "Click here"
60
  msgstr "Cliquez ici"
61
 
62
  #@ cpd
63
+ #: counter-options.php:317
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "pour terminer de désinstaller et désactiver \"Count per Day\"."
66
 
67
  #@ cpd
68
+ #: counter-options.php:355
 
 
 
 
 
69
  msgid "Online time"
70
  msgstr "Temps en ligne"
71
 
72
  #@ cpd
73
+ #: counter-options.php:356
74
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
  msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
76
 
77
  #@ cpd
78
+ #: counter-options.php:359
79
  msgid "Logged on Users"
80
  msgstr "Utilisateurs Connectés"
81
 
82
  #@ cpd
83
+ #: counter-options.php:361
84
  msgid "count too"
85
  msgstr "compter aussi"
86
 
87
  #@ cpd
88
+ #: counter-options.php:373
89
  msgid "Auto counter"
90
  msgstr "Compteur automatique"
91
 
92
  #@ cpd
93
+ #: counter-options.php:374
94
  msgid "Counts automatically single-posts and pages, no changes on template needed."
95
  msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
96
 
97
  #@ cpd
98
+ #: counter-options.php:377
99
  msgid "Bots to ignore"
100
  msgstr "Robots à ignorer"
101
 
102
  #@ cpd
103
+ #: counter-options.php:561
104
  msgid "Update options"
105
  msgstr "Mettre à jour les options"
106
 
107
  #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
  msgid "Clean the database"
111
  msgstr "Nettoyer la base de données"
112
 
113
  #@ cpd
114
+ #: counter-options.php:659
115
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
  msgstr "Vous pouvez nettoyer la table du compteur en supprimant le \"spam\".<br />Si vous ajoutez de nouveaux robots au dessus les anciens \"spams\" restent dans la base de données.<br />Ici, vous pouvez exécuter le filtre robot de nouveau et supprimer les visites des robots."
117
 
118
  #@ cpd
119
+ #: counter-options.php:799
120
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
  msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
122
 
123
  #@ cpd
124
+ #: counter-options.php:800
125
  msgid "Here you can delete the tables and disable \"Count per Day\"."
126
  msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
127
 
128
  #@ cpd
129
+ #: counter-options.php:803
130
  msgid "WARNING"
131
  msgstr "ATTENTION"
132
 
133
  #@ cpd
134
+ #: counter-options.php:804
135
  msgid "These tables (with ALL counter data) will be deleted."
136
  msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
137
 
138
  #@ cpd
139
+ #: counter-options.php:806
140
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
  msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
142
 
143
  #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
  msgid "Yes"
147
  msgstr "Oui"
148
 
149
  #@ cpd
150
+ #: counter-options.php:810
151
  msgid "You are sure to disable Count per Day and delete all data?"
152
  msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
153
 
154
  #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  msgid "Statistics"
158
  msgstr "Statistiques"
159
 
160
  #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
 
165
  msgid "Total visitors"
166
  msgstr "Visiteurs Total"
167
 
168
  #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  msgid "Visitors currently online"
172
  msgstr "Visiteur actuellement en ligne"
173
 
174
  #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  msgid "Visitors today"
178
  msgstr "Visiteurs aujourd'hui"
179
 
180
  #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  msgid "Visitors yesterday"
184
  msgstr "Visiteurs hier"
185
 
186
  #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  msgid "Visitors last week"
190
  msgstr "Visiteurs la semaine dernière"
191
 
192
  #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  msgid "Counter starts on"
197
  msgstr "Compteur activé le "
198
 
199
  #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
 
206
  msgid "Visitors per day"
207
  msgstr "Visiteurs par jour"
208
 
209
  #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  msgid "Visitors per month"
213
  msgstr "Visiteurs par mois"
214
 
215
  #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  msgid "Visitors per post"
219
  msgstr "Visiteurs par articles"
220
 
221
  #@ cpd
222
+ #: counter-options.php:122
223
  msgid "Counter reseted."
224
  msgstr "Compteur remis à zéro."
225
 
226
  #@ cpd
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
  msgid "How many posts do you want to see on dashboard page?"
230
  msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
231
 
232
  #@ cpd
233
+ #: counter-options.php:442
234
  msgid "Latest Counts - Posts"
235
  msgstr "Dernier Comptes - Articles"
236
 
237
  #@ cpd
238
+ #: counter-options.php:446
239
  msgid "Latest Counts - Days"
240
  msgstr "Dernier Compte - Jours"
241
 
242
  #@ cpd
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
  msgid "How many days do you want look back?"
247
  msgstr "Combien de jours vous voulez regarder en arrière?"
248
 
249
  #@ cpd
250
+ #: counter-options.php:488
251
  msgid "Show in lists"
252
  msgstr "Montrer dans la liste"
253
 
254
  #@ cpd
255
+ #: counter-options.php:489
256
  msgid "Show \"Reads per Post\" in a new column in post management views."
257
  msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
258
 
259
  #@ cpd
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
  msgid "Reset the counter"
263
  msgstr "Remise à zéro du compteur"
264
 
265
  #@ cpd
266
+ #: counter-options.php:780
267
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
  msgstr "Vous pouvez réinitialiser le compteur en vidant la table. TOUT à 0!<br />Faites un Backup si vous avez besoin des données actuelles!"
269
 
270
  #@ cpd
271
+ #: counter.php:672
272
  #, php-format
273
  msgid "The %s most visited posts in last %s days:"
274
  msgstr "Les %s articles les plus visités dans les derniers %s jours:"
275
 
276
  #@ default
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
  msgid "Settings"
281
  msgstr "Options"
282
 
283
  #@ cpd
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
  msgid "Reads"
289
  msgstr "Lectures"
290
 
291
  #@ cpd
292
+ #: counter-core.php:728
293
  msgid "Latest Counts"
294
  msgstr "Dernier Comptes"
295
 
296
  #@ cpd
297
+ #: counter-options.php:450
298
  msgid "Chart - Days"
299
  msgstr "Graphique - Jours"
300
 
301
  #@ cpd
302
+ #: counter-options.php:454
303
  msgid "Chart - Height"
304
  msgstr "Graphique - Hauteur"
305
 
306
  #@ cpd
307
+ #: counter-options.php:455
308
  msgid "Height of the biggest bar"
309
  msgstr "Hauteur de la plus grande barre"
310
 
311
  #@ cpd
312
+ #: counter.php:1196
 
 
 
 
 
 
 
 
 
 
313
  msgid "This post"
314
  msgstr "Cet article"
315
 
316
  #@ default
317
+ #: counter-options.php:403
318
  msgid "Dashboard"
319
  msgstr "Tableau de bord"
320
 
321
  #@ cpd
322
+ #: counter.php:262
 
323
  msgid "Reads per day"
324
  msgstr "Lectures par jour"
325
 
326
  #@ cpd
327
+ #: counter-options.php:60
328
  #, php-format
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
331
 
332
  #@ cpd
333
+ #: counter-options.php:65
334
  msgid "update next"
335
  msgstr "mettre à jour le prochain"
336
 
337
  #@ cpd
338
+ #: counter-options.php:727
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Pays"
341
 
342
  #@ cpd
343
+ #: counter-options.php:736
344
  msgid "Update old counter data"
345
  msgstr "Mettre à jour les données du vieux compteur"
346
 
347
  #@ cpd
348
+ #: counter-options.php:748
349
  msgid "Update GeoIP database"
350
  msgstr "Mettre à jour les données de GeoIP"
351
 
352
  #@ cpd
353
+ #: counter-options.php:743
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
356
 
357
  #@ cpd
358
+ #: counter-options.php:753
359
  msgid "More informations about GeoIP"
360
  msgstr "Plus d'infos sur GeoIP"
361
 
362
  #@ cpd
363
+ #: counter-core.php:738
364
  msgid "Reads per Country"
365
  msgstr "Lectures par Pays"
366
 
367
  #@ cpd
368
+ #: geoip/geoip.php:117
369
  msgid "New GeoIP database installed."
370
  msgstr "Nouvelle base de données de GeoIp installée."
371
 
372
  #@ cpd
373
+ #: geoip/geoip.php:119
374
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
  msgstr "Désolé,une erreur est survenue. Merci de réessayer ou de vérifier que les droit d'accès du dossier\"geoip\" sont mis sur 777."
376
 
377
  #@ cpd
378
+ #: geoip/geoip.php:93
379
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
  msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
381
 
382
  #@ cpd
383
+ #: counter-options.php:459
384
  msgid "Countries"
385
  msgstr "Pays"
386
 
387
  #@ cpd
388
+ #: counter-options.php:460
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
391
 
392
  #@ cpd
393
+ #: counter-options.php:102
394
  #, php-format
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Robots nettoyés en masse. %s comptes supprimés."
397
 
398
  #@ cpd
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
  msgid "Mass Bots"
402
  msgstr "Robots en masse"
403
 
404
  #@ cpd
405
+ #: counter-options.php:584
406
  #, php-format
407
  msgid "Show all IPs with more than %s page views per day"
408
  msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
409
 
410
  #@ cpd
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
  msgid "show"
415
  msgstr "montrer"
416
 
417
  #@ cpd
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
  #, php-format
421
  msgid "Delete these %s counts"
422
  msgstr "Supprimer ces %s comptes"
423
 
424
  #@ cpd
425
+ #: counter.php:821
426
  msgid "Other"
427
  msgstr "Autre"
428
 
429
  #@ default
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
  #: userperspan.php:63
433
  msgid "Front page displays"
434
  msgstr "Page d'accueil affiche"
435
 
436
  #@ cpd
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
  msgid "Browsers"
440
  msgstr "Navigateurs"
441
 
442
  #@ cpd
443
+ #: counter-options.php:593
444
  msgid "IP"
445
  msgstr "IP"
446
 
447
  #@ cpd
448
  #@ default
449
+ #: counter-options.php:594
450
+ #: notes.php:75
451
  msgid "Date"
452
  msgstr "Date"
453
 
454
  #@ cpd
455
+ #: counter-options.php:595
456
  msgid "Client"
457
  msgstr "Client"
458
 
459
  #@ cpd
460
+ #: counter-options.php:596
461
  msgid "Views"
462
  msgstr "Vues"
463
 
464
  #@ cpd
465
+ #: counter-options.php:497
466
  msgid "Start Values"
467
  msgstr "Valeurs de départ"
468
 
469
  #@ cpd
470
+ #: counter-options.php:501
471
  msgid "Here you can change the date of first count and add a start count."
472
  msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
473
 
474
  #@ cpd
475
+ #: counter-options.php:505
476
  msgid "Start date"
477
  msgstr "Date de départ"
478
 
479
  #@ cpd
480
+ #: counter-options.php:506
481
  msgid "Your old Counter starts at?"
482
  msgstr "Votre vieux compteur commence à?"
483
 
484
  #@ cpd
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
  msgid "Start count"
488
  msgstr "Commencer le compte"
489
 
490
  #@ cpd
491
+ #: counter-options.php:510
492
  msgid "Add this value to \"Total visitors\"."
493
  msgstr "Ajouter cette valeur à \"visiteurs totals\"."
494
 
495
  #@ cpd
496
+ #: counter-options.php:714
497
  msgid "Support"
498
  msgstr "Support"
499
 
500
  #@ cpd
501
+ #: counter-core.php:690
502
  msgid "Bug? Problem? Question? Hint? Praise?"
503
  msgstr "Bug? Problème? Question? Allusion? Hommage?"
504
 
505
  #@ cpd
506
+ #: counter-core.php:691
507
  #, php-format
508
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
  msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
510
 
511
  #@ default
512
+ #: counter.php:786
513
  msgid "Show"
514
  msgstr "Montrer"
515
 
516
  #@ default
517
+ #: counter.php:976
518
  msgid "Edit Post"
519
  msgstr "Editer"
520
 
521
  #@ cpd
522
+ #: counter-core.php:689
523
  #, php-format
524
  msgid "Time for Count per Day: <code>%s</code>."
525
  msgstr "Temps pour Count Per Day: <code>%s</code>."
526
 
527
  #@ cpd
528
+ #: counter-options.php:362
529
  msgid "until User Level"
530
  msgstr "jusqu'au niveau de l'utilisateur"
531
 
532
  #@ default
533
+ #: counter-core.php:730
534
  msgid "Plugin"
535
  msgstr "Plugin"
536
 
537
  #@ cpd
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
 
541
  msgid "Notes"
542
  msgstr "Notes"
543
 
544
  #@ default
545
+ #: notes.php:77
546
  msgid "Action"
547
  msgstr "Action"
548
 
549
  #@ cpd
550
+ #: notes.php:82
551
  msgid "add"
552
  msgstr "ajouter"
553
 
554
  #@ cpd
555
+ #: notes.php:98
556
  msgid "save"
557
  msgstr "sauvegarder"
558
 
559
  #@ cpd
560
+ #: notes.php:99
561
  msgid "delete"
562
  msgstr "supprimer"
563
 
564
  #@ cpd
565
+ #: notes.php:110
566
  msgid "edit"
567
  msgstr "éditer"
568
 
569
  #@ cpd
570
+ #: counter-options.php:514
 
 
 
 
 
571
  msgid "Add this value to \"Total reads\"."
572
  msgstr "Ajouter cette valeur à \"Lectures totales\"."
573
 
574
  #@ cpd
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
  msgid "Total reads"
578
  msgstr "Lectures totales"
579
 
580
  #@ cpd
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
  msgid "Reads today"
584
  msgstr "Lectures aujourd'hui"
585
 
586
  #@ cpd
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
  msgid "Reads yesterday"
590
  msgstr "Lectures hier"
591
 
592
  #@ cpd
593
+ #: counter-options.php:381
594
  msgid "Anonymous IP"
595
  msgstr "Adresse IP Anonyme"
596
 
597
  #@ cpd
598
+ #: counter-options.php:385
599
  msgid "Cache"
600
  msgstr "Cache"
601
 
602
  #@ cpd
603
+ #: counter-options.php:386
604
  msgid "I use a cache plugin. Count these visits with ajax."
605
  msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
606
 
607
  #@ cpd
608
+ #: counter-options.php:465
609
  msgid "Substring of the user agent, separated by comma"
610
  msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
611
 
612
  #@ cpd
613
+ #: counter-options.php:554
614
  msgid "Debug mode"
615
  msgstr "Mode Debug"
616
 
617
  #@ cpd
618
+ #: counter-options.php:556
619
  msgid "Show debug informations at the bottom of all pages."
620
  msgstr "Afficher les informations de débogage au bas de toutes les pages."
621
 
622
  #@ cpd
623
+ #: counter-core.php:739
624
  msgid "Visitors per Country"
625
  msgstr "Visiteurs par Pays"
626
 
627
  #@ cpd
628
+ #: counter.php:353
629
+ #: counter.php:1041
630
  msgid "Map"
631
  msgstr "Carte"
632
 
633
  #@ cpd
634
+ #: userperspan.php:38
635
  msgid "Start"
636
  msgstr "Début"
637
 
638
  #@ cpd
639
+ #: userperspan.php:40
640
  msgid "End"
641
  msgstr "Fin"
642
 
643
  #@ cpd
644
+ #: userperspan.php:42
645
  msgid "PostID"
646
  msgstr "PostID"
647
 
648
  #@ cpd
649
+ #: userperspan.php:50
650
  msgid "no data found"
651
  msgstr "aucune donnée trouvée"
652
 
653
  #@ cpd
654
+ #: counter-options.php:730
655
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
  msgstr "Vous pouvez obtenir les données par pays pour toutes les entrées dans la base de données bei vérifier l'adresse IP à nouveau GeoIP base de données. Ceci peut prendre un certain temps!"
657
 
658
  #@ cpd
659
+ #: counter-options.php:351
660
  msgid "Counter"
661
  msgstr "Compteur"
662
 
663
  #@ cpd
664
+ #: counter-options.php:389
665
  msgid "Clients and referrers"
666
  msgstr "Clients et Référents"
667
 
668
  #@ cpd
669
+ #: counter-options.php:392
670
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
  msgstr "Enregistrer et afficher les clients et les référents.<br />Besoin de beaucoup d'espace dans la base de données, mais vous donne des informations plus détaillées de vos visiteurs."
672
 
673
  #@ cpd
674
+ #: counter-options.php:476
675
  msgid "Local URLs"
676
  msgstr "Liens Locals"
677
 
678
  #@ cpd
679
+ #: counter-options.php:477
680
  msgid "Show local referrers too."
681
  msgstr "Montrer les référents locals également."
682
 
683
  #@ default
684
+ #: counter-options.php:485
685
  msgid "Posts"
686
  msgstr "Articles"
687
 
688
  #@ default
689
+ #: counter-options.php:485
690
  msgid "Pages"
691
  msgstr "Pages"
692
 
693
  #@ cpd
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
  msgid "Reads last week"
697
  msgstr "Lectures - Semaine Dernière"
698
 
699
  #@ default
700
+ #: counter.php:985
701
  msgid "Category"
702
  msgstr "Catégorie"
703
 
704
  #@ default
705
+ #: counter.php:988
706
  msgid "Tag"
707
  msgstr "Tag"
708
 
709
  #@ default
710
+ #: counter-core.php:692
711
  msgid "License"
712
  msgstr "License"
713
 
714
  #@ cpd
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
  msgid "Reads per month"
718
  msgstr "Lectures par mois"
719
 
720
  #@ cpd
721
+ #: counter-core.php:734
722
  msgid "Referrer"
723
  msgstr "Référent"
724
 
725
  #@ default
726
+ #: counter.php:1220
727
  msgid "Title"
728
  msgstr "Titre"
729
 
730
  #@ cpd
731
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
732
  msgid "Referrers - Entries"
733
  msgstr "Référents - Entrées"
734
 
735
  #@ cpd
736
+ #: counter-options.php:469
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
739
 
740
  #@ cpd
741
+ #: counter-options.php:472
742
  msgid "Referrers - Days"
743
  msgstr "Référents - Jours"
744
 
745
  #@ cpd
746
+ #: counter.php:845
747
  #, php-format
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "Les %s référents des %s derniers jours:"
750
 
751
  #@ cpd
752
+ #: counter-core.php:724
753
  msgid "Visitors online"
754
  msgstr "Visiteurs en ligne"
755
 
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" mis à jour en version %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Sauvegarde échouée! Impossible d'ouvrir le fichier"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Sauvegarde de %s entrées en cours. Chaque point compile %s entrées"
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Votre dossier wp-content est protégé en écriture. Mais vous pouvez copier le contenu ce cadre dans un bloc note."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "ASAuve"
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Sauvegarde des entrées du compteur et collectes enregistrés dans %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Collecte en cours..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Voir Visiteurs par Article..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Supprimer les anciennes données..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s &gt; taille après = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Installation de \"Count per Day\" cochée"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Outils"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Enregistrer le lien seulement, pas de chaine de requête."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Qui peut le voir?"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "personnalisée"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "et plus sont autorisés à voir la page de statistiques."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Set the %s capability %s a user need:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Stylesheet"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "PAS de Stylesheet en Frontend"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Ne pas charger le fichier de style \"counter.css\" en frontend."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Sauvegarde"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Entrées par passe"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Combien d'entrées doivent être enregistrées par passe? Par défaut: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Si votre mémoire PHP limite de moins de 50 Mo et vous obtenez une page blanche ou des messages d'erreur essayez une valeur inférieure."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Créer une sauvegarde du compteur %s dans le dossier wp-content (si possible en écriture)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Sauvegarde de la base de données"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Collecter les vieilles données"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "La taille actuelle de la table compteur %s est de %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Vous pouvez collecter des données anciennes et nettoyer la table compteur. <br/>Lectures et visiteurs seront sauvegardés par mois, par pays et par article.<br/> Clients et référenceurs seront supprimés."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "Actuellement, votre collection contient des données jusqu'à %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Normalement les nouvelles données seront ajoutées à la collection."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Supprimer une collection ancienne et en créer un nouveau qui ne contient que les données actuellement dans le tableau du compteur."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Toutes les collectes jusqu'à %s seront supprimées"
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Garder les entrées des dernièrs %s mois + mois actuel dans la table compteur."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Ré-Activation"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Ici vous pouvez lancer les fonctions d'installation manuellement.<br/> La même chose pour désactiver et réactiver le plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Ré-Activer le Plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Visiteurs"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Le jours le plus visité"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "drag et drop pour trier"
971
+
locale/cpd-it_IT.mo CHANGED
Binary file
locale/cpd-it_IT.po CHANGED
@@ -19,766 +19,953 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
- #: counter-options.php:46
23
  msgid "Options updated"
24
  msgstr "Le opzioni sono state aggiornate"
25
 
26
  #@ cpd
27
- #: counter-options.php:111
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Database svuotato. %s record cancellato."
31
 
32
  #@ cpd
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DISINSTALLA Count per Day"
37
 
38
  #@ cpd
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "La tabella %s é stata cancellata"
45
 
46
  #@ cpd
47
- #: counter-options.php:132
48
  msgid "Options deleted"
49
  msgstr "Le opzioni sono state cancellate"
50
 
51
  #@ cpd
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
  msgid "Uninstall"
55
  msgstr "Disinstalla"
56
 
57
  #@ cpd
58
- #: counter-options.php:157
59
  msgid "Click here"
60
  msgstr "Clicca qui"
61
 
62
  #@ cpd
63
- #: counter-options.php:157
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
66
 
67
  #@ cpd
68
- #: counter-options.php:179
69
- msgid "Options"
70
- msgstr "Opzioni"
71
-
72
- #@ cpd
73
- #: counter-options.php:190
74
  msgid "Online time"
75
  msgstr "Durata del collegamento"
76
 
77
  #@ cpd
78
- #: counter-options.php:191
79
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
  msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
81
 
82
  #@ cpd
83
- #: counter-options.php:194
84
  msgid "Logged on Users"
85
  msgstr "Utenti accreditati"
86
 
87
  #@ cpd
88
- #: counter-options.php:196
89
  msgid "count too"
90
  msgstr "conteggia anche loro"
91
 
92
  #@ cpd
93
- #: counter-options.php:208
94
  msgid "Auto counter"
95
  msgstr "Contatore-automatico"
96
 
97
  #@ cpd
98
- #: counter-options.php:209
99
  msgid "Counts automatically single-posts and pages, no changes on template needed."
100
  msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
101
 
102
  #@ cpd
103
- #: counter-options.php:212
104
  msgid "Bots to ignore"
105
  msgstr "Bots da ignorare"
106
 
107
  #@ cpd
108
- #: counter-options.php:331
109
  msgid "Update options"
110
  msgstr "Aggiorna le opzioni"
111
 
112
  #@ cpd
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
  msgid "Clean the database"
116
  msgstr "Svuota il database"
117
 
118
  #@ cpd
119
- #: counter-options.php:448
120
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
  msgstr "Puoi svuotare la tabella del contatore dai \"dati spam\".<br />Aggiungendo dei nuovi bots sopra ai vecchi \"dati spam\" conservati nel database.<br />Qui tu puoi avviare nuovamente il filtro per i bot e cancellare le visite dei bots."
122
 
123
  #@ cpd
124
- #: counter-options.php:484
125
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
  msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
127
 
128
  #@ cpd
129
- #: counter-options.php:485
130
  msgid "Here you can delete the tables and disable \"Count per Day\"."
131
  msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
132
 
133
  #@ cpd
134
- #: counter-options.php:488
135
  msgid "WARNING"
136
  msgstr "ATTENZIONE"
137
 
138
  #@ cpd
139
- #: counter-options.php:489
140
  msgid "These tables (with ALL counter data) will be deleted."
141
  msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
142
 
143
  #@ cpd
144
- #: counter-options.php:491
145
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
  msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
147
 
148
  #@ cpd
149
- #: counter-options.php:495
 
150
  msgid "Yes"
151
  msgstr "Sì"
152
 
153
  #@ cpd
154
- #: counter-options.php:496
155
  msgid "You are sure to disable Count per Day and delete all data?"
156
  msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
157
 
158
  #@ cpd
159
- #: counter.php:1786
160
- #: counter.php:2147
161
  msgid "Statistics"
162
  msgstr "Satistiche"
163
 
164
  #@ cpd
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
  msgid "Total visitors"
171
  msgstr "Totale visitatori"
172
 
173
  #@ cpd
174
- #: counter.php:530
175
- #: counter.php:2230
176
  msgid "Visitors currently online"
177
  msgstr "Utenti attualmente in linea"
178
 
179
  #@ cpd
180
- #: counter.php:531
181
- #: counter.php:2225
182
  msgid "Visitors today"
183
  msgstr "Oggi"
184
 
185
  #@ cpd
186
- #: counter.php:532
187
- #: counter.php:2226
188
  msgid "Visitors yesterday"
189
  msgstr "Ieri"
190
 
191
  #@ cpd
192
- #: counter.php:533
193
- #: counter.php:2227
194
  msgid "Visitors last week"
195
  msgstr "La scorsa settimana"
196
 
197
  #@ cpd
198
- #: counter.php:536
199
- #: counter.php:2231
 
200
  msgid "Counter starts on"
201
  msgstr "Il contatore parte dal"
202
 
203
  #@ cpd
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
  msgid "Visitors per day"
212
  msgstr "Visitatori per giorno"
213
 
214
  #@ cpd
215
- #: counter.php:1752
216
- #: counter.php:2228
217
  msgid "Visitors per month"
218
  msgstr "Visitatori per mese"
219
 
220
  #@ cpd
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
  msgid "Visitors per post"
224
  msgstr "Visitatori per articolo"
225
 
226
  #@ cpd
227
- #: counter-options.php:117
228
  msgid "Counter reseted."
229
  msgstr "Il contatore é stato azzerato."
230
 
231
  #@ cpd
232
- #: counter-options.php:237
233
- #: counter-options.php:241
234
  msgid "How many posts do you want to see on dashboard page?"
235
  msgstr "Quanti articoli desideri siano visibili nella bacheca?"
236
 
237
  #@ cpd
238
- #: counter-options.php:240
239
  msgid "Latest Counts - Posts"
240
  msgstr "Totale corrente - Articoli"
241
 
242
  #@ cpd
243
- #: counter-options.php:244
244
  msgid "Latest Counts - Days"
245
  msgstr "Totale corrente - pagine"
246
 
247
  #@ cpd
248
- #: counter-options.php:245
249
- #: counter-options.php:249
250
- #: counter-options.php:275
251
  msgid "How many days do you want look back?"
252
  msgstr "Quanti giorni desideri visionare a ritroso?"
253
 
254
  #@ cpd
255
- #: counter-options.php:290
256
  msgid "Show in lists"
257
  msgstr "Mostra nelle liste"
258
 
259
  #@ cpd
260
- #: counter-options.php:291
261
  msgid "Show \"Reads per Post\" in a new column in post management views."
262
  msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
263
 
264
  #@ cpd
265
- #: counter-options.php:463
266
- #: counter-options.php:472
267
  msgid "Reset the counter"
268
  msgstr "Azzera il contatore"
269
 
270
  #@ cpd
271
- #: counter-options.php:466
272
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
273
  msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
274
 
275
  #@ cpd
276
- #: counter.php:1257
277
  #, php-format
278
  msgid "The %s most visited posts in last %s days:"
279
  msgstr "I %s articoli più letti negli ultimi %s giorni:"
280
 
281
  #@ default
282
- #: counter.php:1591
 
 
283
  msgid "Settings"
284
  msgstr "Impostazioni"
285
 
286
  #@ cpd
287
- #: counter-options.php:225
288
- #: counter.php:528
289
- #: counter.php:1661
 
290
  msgid "Reads"
291
  msgstr "Visitatori"
292
 
293
  #@ cpd
294
- #: counter.php:1755
295
  msgid "Latest Counts"
296
  msgstr "Totale corrente"
297
 
298
  #@ cpd
299
- #: counter-options.php:248
300
  msgid "Chart - Days"
301
  msgstr "Diagramma - Giorni"
302
 
303
  #@ cpd
304
- #: counter-options.php:252
305
  msgid "Chart - Height"
306
  msgstr "Diagramma - Altezza"
307
 
308
  #@ cpd
309
- #: counter-options.php:253
310
  msgid "Height of the biggest bar"
311
  msgstr "Altezza della categoria maggiore"
312
 
313
  #@ cpd
314
- #: counter.php:845
315
- msgid "no reads at this time"
316
- msgstr "nessun lettura in questo momento"
317
-
318
- #@ cpd
319
- #: counter.php:819
320
- msgid "days"
321
- msgstr "giorni"
322
-
323
- #@ cpd
324
- #: counter.php:2218
325
  msgid "This post"
326
  msgstr "Questo articolo"
327
 
328
  #@ default
329
- #: counter-options.php:233
330
  msgid "Dashboard"
331
  msgstr "Bacheca"
332
 
333
  #@ cpd
334
- #: counter.php:635
335
- #: counter.php:1766
336
  msgid "Reads per day"
337
  msgstr "Letture per giorno"
338
 
339
  #@ cpd
340
- #: counter-options.php:57
341
  #, php-format
342
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
343
  msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
344
 
345
  #@ cpd
346
- #: counter-options.php:62
347
  msgid "update next"
348
  msgstr "aggiorna il prossimo"
349
 
350
  #@ cpd
351
- #: counter-options.php:340
352
  msgid "GeoIP - Countries"
353
  msgstr "GeoIP - Stati"
354
 
355
  #@ cpd
356
- #: counter-options.php:349
357
  msgid "Update old counter data"
358
  msgstr "Aggiorna i vecchi dati per gli stati"
359
 
360
  #@ cpd
361
- #: counter-options.php:362
362
  msgid "Update GeoIP database"
363
  msgstr "Aggiorna database GeoIP"
364
 
365
  #@ cpd
366
- #: counter-options.php:365
367
  msgid "Download a new version of GeoIP.dat file."
368
  msgstr "Scarica la nuova versione del file GeoIP.dat."
369
 
370
  #@ cpd
371
- #: counter-options.php:371
372
  msgid "More informations about GeoIP"
373
  msgstr "Informazioni su GeoIP"
374
 
375
  #@ cpd
376
- #: counter.php:1770
377
  msgid "Reads per Country"
378
  msgstr "Letture per stato"
379
 
380
  #@ cpd
381
- #: geoip/geoip.php:132
382
  msgid "New GeoIP database installed."
383
  msgstr "Il nuovo database GeoIP é stato installato."
384
 
385
  #@ cpd
386
- #: geoip/geoip.php:134
387
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
388
  msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
389
 
390
  #@ cpd
391
- #: geoip/geoip.php:108
392
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
393
  msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
394
 
395
  #@ cpd
396
- #: counter-options.php:261
397
  msgid "Countries"
398
  msgstr "Stati"
399
 
400
  #@ cpd
401
- #: counter-options.php:262
402
  msgid "How many countries do you want to see on dashboard page?"
403
  msgstr "Quanti stati desideri siano visibili nella bacheca?"
404
 
405
  #@ cpd
406
- #: counter-options.php:104
407
  #, php-format
408
  msgid "Mass Bots cleaned. %s counts deleted."
409
  msgstr "Mass Bots svuotato. %s totali cancellati."
410
 
411
  #@ cpd
412
- #: counter-options.php:386
413
- #: massbots.php:33
414
  msgid "Mass Bots"
415
  msgstr "Mass Bots"
416
 
417
  #@ cpd
418
- #: counter-options.php:390
419
  #, php-format
420
  msgid "Show all IPs with more than %s page views per day"
421
  msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
422
 
423
  #@ cpd
424
- #: counter-options.php:391
425
- #: notes.php:76
426
- #: userperspan.php:43
427
  msgid "show"
428
  msgstr "mostra"
429
 
430
  #@ cpd
431
- #: counter-options.php:413
432
- #: counter-options.php:435
433
  #, php-format
434
  msgid "Delete these %s counts"
435
  msgstr "Cancella questi %s totali"
436
 
437
  #@ cpd
438
- #: counter.php:1421
439
  msgid "Other"
440
  msgstr "Altro"
441
 
442
  #@ default
443
- #: counter.php:1520
444
- #: massbots.php:50
445
  #: userperspan.php:63
446
  msgid "Front page displays"
447
  msgstr "Mostra nella front page"
448
 
449
  #@ cpd
450
- #: counter-options.php:266
451
- #: counter.php:1760
452
  msgid "Browsers"
453
  msgstr "Browser"
454
 
455
  #@ cpd
456
- #: counter-options.php:399
457
  msgid "IP"
458
  msgstr "IP"
459
 
460
  #@ cpd
461
  #@ default
462
- #: counter-options.php:400
463
- #: notes.php:80
464
  msgid "Date"
465
  msgstr "Data"
466
 
467
  #@ cpd
468
- #: counter-options.php:401
469
  msgid "Client"
470
  msgstr "Client"
471
 
472
  #@ cpd
473
- #: counter-options.php:402
474
  msgid "Views"
475
  msgstr "Visualizzazioni"
476
 
477
  #@ cpd
478
- #: counter-options.php:299
479
  msgid "Start Values"
480
  msgstr "Valori di partenza"
481
 
482
  #@ cpd
483
- #: counter-options.php:303
484
  msgid "Here you can change the date of first count and add a start count."
485
  msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
486
 
487
  #@ cpd
488
- #: counter-options.php:307
489
  msgid "Start date"
490
  msgstr "Data di inizio"
491
 
492
  #@ cpd
493
- #: counter-options.php:308
494
  msgid "Your old Counter starts at?"
495
  msgstr "Il vecchio contatore parte da?"
496
 
497
  #@ cpd
498
- #: counter-options.php:311
499
- #: counter-options.php:315
500
  msgid "Start count"
501
  msgstr "Avvia conteggio"
502
 
503
  #@ cpd
504
- #: counter-options.php:312
505
  msgid "Add this value to \"Total visitors\"."
506
  msgstr "Aggiungi questo valore a \"Totale visitatori\"."
507
 
508
  #@ cpd
509
- #: counter-options.php:504
510
  msgid "Support"
511
  msgstr "Supporto"
512
 
513
  #@ cpd
514
- #: counter.php:1717
515
  msgid "Bug? Problem? Question? Hint? Praise?"
516
  msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
517
 
518
  #@ cpd
519
- #: counter.php:1718
520
  #, php-format
521
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
522
  msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
523
 
524
  #@ default
525
- #: counter.php:1374
526
  msgid "Show"
527
  msgstr "Mostra"
528
 
529
  #@ default
530
- #: counter.php:1505
531
  msgid "Edit Post"
532
  msgstr "modifica articolo"
533
 
534
  #@ cpd
535
- #: counter.php:1716
536
  #, php-format
537
  msgid "Time for Count per Day: <code>%s</code>."
538
  msgstr "Fuso orario Count per Day: <code>%s</code>."
539
 
540
  #@ cpd
541
- #: counter-options.php:197
542
  msgid "until User Level"
543
  msgstr "sino a livello utente"
544
 
545
  #@ default
546
- #: counter.php:1757
547
  msgid "Plugin"
548
  msgstr "Plugin"
549
 
550
  #@ cpd
551
- #: counter.php:822
552
- #: counter.php:1376
553
- #: notes.php:47
554
- #: notes.php:81
555
  msgid "Notes"
556
  msgstr "Note"
557
 
558
  #@ default
559
- #: notes.php:82
560
  msgid "Action"
561
  msgstr "Azione"
562
 
563
  #@ cpd
564
- #: notes.php:87
565
  msgid "add"
566
  msgstr "aggiungi"
567
 
568
  #@ cpd
569
- #: notes.php:102
570
  msgid "save"
571
  msgstr "salva"
572
 
573
  #@ cpd
574
- #: notes.php:103
575
  msgid "delete"
576
  msgstr "cancella"
577
 
578
  #@ cpd
579
- #: notes.php:114
580
  msgid "edit"
581
  msgstr "modifica"
582
 
583
  #@ cpd
584
- #: notes.php:81
585
- msgid "(1 per day)"
586
- msgstr "(1 al giorno)"
587
-
588
- #@ cpd
589
- #: counter-options.php:316
590
  msgid "Add this value to \"Total reads\"."
591
  msgstr "Aggiungi questo valore a \"Totale letture\"."
592
 
593
  #@ cpd
594
- #: counter.php:524
595
- #: counter.php:2219
596
  msgid "Total reads"
597
  msgstr "Totale letture"
598
 
599
  #@ cpd
600
- #: counter.php:525
601
- #: counter.php:2220
602
  msgid "Reads today"
603
  msgstr "Letture odierne"
604
 
605
  #@ cpd
606
- #: counter.php:526
607
- #: counter.php:2221
608
  msgid "Reads yesterday"
609
  msgstr "Letture di ieri"
610
 
611
  #@ cpd
612
- #: counter.php:900
613
- #: counter.php:1856
614
  msgid "Map"
615
  msgstr "Mappa"
616
 
617
  #@ cpd
618
- #: counter-options.php:216
619
  msgid "Anonymous IP"
620
  msgstr "IP anonimo"
621
 
622
  #@ cpd
623
- #: counter-options.php:220
624
  msgid "Cache"
625
  msgstr "Cache"
626
 
627
  #@ cpd
628
- #: counter-options.php:221
629
  msgid "I use a cache plugin. Count these visits with ajax."
630
  msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
631
 
632
  #@ cpd
633
- #: counter-options.php:267
634
  msgid "Substring of the user agent, separated by comma"
635
  msgstr "Sub-stringa user agent, separa con una virgola"
636
 
637
  #@ cpd
638
- #: counter.php:1771
639
  msgid "Visitors per Country"
640
  msgstr "Visitatori per paese"
641
 
642
  #@ cpd
643
- #: counter-options.php:324
644
  msgid "Debug mode"
645
  msgstr "Modalità debug"
646
 
647
  #@ cpd
648
- #: counter-options.php:326
649
  msgid "Show debug informations at the bottom of all pages."
650
  msgstr "Mostra info debug al fondo di tutte le pagine."
651
 
652
  #@ cpd
653
- #: userperspan.php:37
654
  msgid "Start"
655
  msgstr "Inizio"
656
 
657
  #@ cpd
658
- #: userperspan.php:39
659
  msgid "End"
660
  msgstr "Termine"
661
 
662
  #@ cpd
663
- #: userperspan.php:41
664
  msgid "PostID"
665
  msgstr "ID articolo"
666
 
667
  #@ cpd
668
- #: userperspan.php:49
669
  msgid "no data found"
670
  msgstr "nessun dato trovato"
671
 
672
  #@ cpd
673
- #: counter-options.php:352
674
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
675
  msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
676
 
677
  #@ cpd
678
- #: counter-options.php:186
679
  msgid "Counter"
680
  msgstr "Contatore"
681
 
682
  #@ cpd
683
- #: counter-options.php:278
684
  msgid "Local URLs"
685
  msgstr "URL locali"
686
 
687
  #@ cpd
688
- #: counter-options.php:279
689
  msgid "Show local referrers too."
690
  msgstr "Mostra anche i referenti locali."
691
 
692
  #@ default
693
- #: counter-options.php:287
694
  msgid "Posts"
695
  msgstr "Articoli"
696
 
697
  #@ default
698
- #: counter-options.php:287
699
  msgid "Pages"
700
  msgstr "Pagine"
701
 
702
  #@ default
703
- #: counter.php:1514
704
  msgid "Category"
705
  msgstr "Categoria"
706
 
707
  #@ default
708
- #: counter.php:1517
709
  msgid "Tag"
710
  msgstr "Tag"
711
 
712
  #@ default
713
- #: counter.php:1719
714
  msgid "License"
715
  msgstr "Licenza"
716
 
717
  #@ cpd
718
- #: counter.php:1761
719
  msgid "Referrer"
720
  msgstr "Referente"
721
 
722
  #@ default
723
- #: counter.php:2242
724
  msgid "Title"
725
  msgstr "Titolo"
726
 
727
  #@ cpd
728
- #: counter-options.php:225
729
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
730
  msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
731
 
732
  #@ cpd
733
- #: counter-options.php:224
734
  msgid "Clients and referrers"
735
  msgstr "Client e referenti"
736
 
737
  #@ cpd
738
- #: counter.php:527
739
- #: counter.php:2222
740
  msgid "Reads last week"
741
  msgstr "Letture scorsa settimana"
742
 
743
  #@ cpd
744
- #: counter.php:1753
745
- #: counter.php:2223
746
  msgid "Reads per month"
747
  msgstr "Letture scorso mese"
748
 
749
  #@ cpd
750
- #: counter-options.php:256
751
- msgid "Old Charts"
752
- msgstr "Diagrammi datati"
753
-
754
- #@ cpd
755
- #: counter-options.php:257
756
- msgid "Show old bar charts."
757
- msgstr "Mostra barra diagrammi datati."
758
-
759
- #@ cpd
760
- #: counter-options.php:270
761
  msgid "Referrers - Entries"
762
  msgstr "Referenti - Pubblicazioni"
763
 
764
  #@ cpd
765
- #: counter-options.php:271
766
  msgid "How many referrers do you want to see on dashboard page?"
767
  msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
768
 
769
  #@ cpd
770
- #: counter-options.php:274
771
  msgid "Referrers - Days"
772
  msgstr "Referenti - Giorni"
773
 
774
  #@ cpd
775
- #: counter.php:1449
776
  #, php-format
777
  msgid "The %s referrers in last %s days:"
778
  msgstr "I %s referenti degli ultimi %s giorni:"
779
 
780
  #@ cpd
781
- #: counter.php:1751
782
  msgid "Visitors online"
783
  msgstr "Visitatori online"
784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
+ #: counter-options.php:49
23
  msgid "Options updated"
24
  msgstr "Le opzioni sono state aggiornate"
25
 
26
  #@ cpd
27
+ #: counter-options.php:112
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Database svuotato. %s record cancellato."
31
 
32
  #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DISINSTALLA Count per Day"
37
 
38
  #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "La tabella %s é stata cancellata"
45
 
46
  #@ cpd
47
+ #: counter-options.php:135
48
  msgid "Options deleted"
49
  msgstr "Le opzioni sono state cancellate"
50
 
51
  #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
  msgid "Uninstall"
55
  msgstr "Disinstalla"
56
 
57
  #@ cpd
58
+ #: counter-options.php:317
59
  msgid "Click here"
60
  msgstr "Clicca qui"
61
 
62
  #@ cpd
63
+ #: counter-options.php:317
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
66
 
67
  #@ cpd
68
+ #: counter-options.php:355
 
 
 
 
 
69
  msgid "Online time"
70
  msgstr "Durata del collegamento"
71
 
72
  #@ cpd
73
+ #: counter-options.php:356
74
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
  msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
76
 
77
  #@ cpd
78
+ #: counter-options.php:359
79
  msgid "Logged on Users"
80
  msgstr "Utenti accreditati"
81
 
82
  #@ cpd
83
+ #: counter-options.php:361
84
  msgid "count too"
85
  msgstr "conteggia anche loro"
86
 
87
  #@ cpd
88
+ #: counter-options.php:373
89
  msgid "Auto counter"
90
  msgstr "Contatore-automatico"
91
 
92
  #@ cpd
93
+ #: counter-options.php:374
94
  msgid "Counts automatically single-posts and pages, no changes on template needed."
95
  msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
96
 
97
  #@ cpd
98
+ #: counter-options.php:377
99
  msgid "Bots to ignore"
100
  msgstr "Bots da ignorare"
101
 
102
  #@ cpd
103
+ #: counter-options.php:561
104
  msgid "Update options"
105
  msgstr "Aggiorna le opzioni"
106
 
107
  #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
  msgid "Clean the database"
111
  msgstr "Svuota il database"
112
 
113
  #@ cpd
114
+ #: counter-options.php:659
115
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
  msgstr "Puoi svuotare la tabella del contatore dai \"dati spam\".<br />Aggiungendo dei nuovi bots sopra ai vecchi \"dati spam\" conservati nel database.<br />Qui tu puoi avviare nuovamente il filtro per i bot e cancellare le visite dei bots."
117
 
118
  #@ cpd
119
+ #: counter-options.php:799
120
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
  msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
122
 
123
  #@ cpd
124
+ #: counter-options.php:800
125
  msgid "Here you can delete the tables and disable \"Count per Day\"."
126
  msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
127
 
128
  #@ cpd
129
+ #: counter-options.php:803
130
  msgid "WARNING"
131
  msgstr "ATTENZIONE"
132
 
133
  #@ cpd
134
+ #: counter-options.php:804
135
  msgid "These tables (with ALL counter data) will be deleted."
136
  msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
137
 
138
  #@ cpd
139
+ #: counter-options.php:806
140
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
  msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
142
 
143
  #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
  msgid "Yes"
147
  msgstr "Sì"
148
 
149
  #@ cpd
150
+ #: counter-options.php:810
151
  msgid "You are sure to disable Count per Day and delete all data?"
152
  msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
153
 
154
  #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  msgid "Statistics"
158
  msgstr "Satistiche"
159
 
160
  #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
 
165
  msgid "Total visitors"
166
  msgstr "Totale visitatori"
167
 
168
  #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  msgid "Visitors currently online"
172
  msgstr "Utenti attualmente in linea"
173
 
174
  #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  msgid "Visitors today"
178
  msgstr "Oggi"
179
 
180
  #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  msgid "Visitors yesterday"
184
  msgstr "Ieri"
185
 
186
  #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  msgid "Visitors last week"
190
  msgstr "La scorsa settimana"
191
 
192
  #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  msgid "Counter starts on"
197
  msgstr "Il contatore parte dal"
198
 
199
  #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
 
206
  msgid "Visitors per day"
207
  msgstr "Visitatori per giorno"
208
 
209
  #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  msgid "Visitors per month"
213
  msgstr "Visitatori per mese"
214
 
215
  #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  msgid "Visitors per post"
219
  msgstr "Visitatori per articolo"
220
 
221
  #@ cpd
222
+ #: counter-options.php:122
223
  msgid "Counter reseted."
224
  msgstr "Il contatore é stato azzerato."
225
 
226
  #@ cpd
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
  msgid "How many posts do you want to see on dashboard page?"
230
  msgstr "Quanti articoli desideri siano visibili nella bacheca?"
231
 
232
  #@ cpd
233
+ #: counter-options.php:442
234
  msgid "Latest Counts - Posts"
235
  msgstr "Totale corrente - Articoli"
236
 
237
  #@ cpd
238
+ #: counter-options.php:446
239
  msgid "Latest Counts - Days"
240
  msgstr "Totale corrente - pagine"
241
 
242
  #@ cpd
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
  msgid "How many days do you want look back?"
247
  msgstr "Quanti giorni desideri visionare a ritroso?"
248
 
249
  #@ cpd
250
+ #: counter-options.php:488
251
  msgid "Show in lists"
252
  msgstr "Mostra nelle liste"
253
 
254
  #@ cpd
255
+ #: counter-options.php:489
256
  msgid "Show \"Reads per Post\" in a new column in post management views."
257
  msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
258
 
259
  #@ cpd
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
  msgid "Reset the counter"
263
  msgstr "Azzera il contatore"
264
 
265
  #@ cpd
266
+ #: counter-options.php:780
267
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
  msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
269
 
270
  #@ cpd
271
+ #: counter.php:672
272
  #, php-format
273
  msgid "The %s most visited posts in last %s days:"
274
  msgstr "I %s articoli più letti negli ultimi %s giorni:"
275
 
276
  #@ default
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
  msgid "Settings"
281
  msgstr "Impostazioni"
282
 
283
  #@ cpd
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
  msgid "Reads"
289
  msgstr "Visitatori"
290
 
291
  #@ cpd
292
+ #: counter-core.php:728
293
  msgid "Latest Counts"
294
  msgstr "Totale corrente"
295
 
296
  #@ cpd
297
+ #: counter-options.php:450
298
  msgid "Chart - Days"
299
  msgstr "Diagramma - Giorni"
300
 
301
  #@ cpd
302
+ #: counter-options.php:454
303
  msgid "Chart - Height"
304
  msgstr "Diagramma - Altezza"
305
 
306
  #@ cpd
307
+ #: counter-options.php:455
308
  msgid "Height of the biggest bar"
309
  msgstr "Altezza della categoria maggiore"
310
 
311
  #@ cpd
312
+ #: counter.php:1196
 
 
 
 
 
 
 
 
 
 
313
  msgid "This post"
314
  msgstr "Questo articolo"
315
 
316
  #@ default
317
+ #: counter-options.php:403
318
  msgid "Dashboard"
319
  msgstr "Bacheca"
320
 
321
  #@ cpd
322
+ #: counter.php:262
 
323
  msgid "Reads per day"
324
  msgstr "Letture per giorno"
325
 
326
  #@ cpd
327
+ #: counter-options.php:60
328
  #, php-format
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
331
 
332
  #@ cpd
333
+ #: counter-options.php:65
334
  msgid "update next"
335
  msgstr "aggiorna il prossimo"
336
 
337
  #@ cpd
338
+ #: counter-options.php:727
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Stati"
341
 
342
  #@ cpd
343
+ #: counter-options.php:736
344
  msgid "Update old counter data"
345
  msgstr "Aggiorna i vecchi dati per gli stati"
346
 
347
  #@ cpd
348
+ #: counter-options.php:748
349
  msgid "Update GeoIP database"
350
  msgstr "Aggiorna database GeoIP"
351
 
352
  #@ cpd
353
+ #: counter-options.php:743
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Scarica la nuova versione del file GeoIP.dat."
356
 
357
  #@ cpd
358
+ #: counter-options.php:753
359
  msgid "More informations about GeoIP"
360
  msgstr "Informazioni su GeoIP"
361
 
362
  #@ cpd
363
+ #: counter-core.php:738
364
  msgid "Reads per Country"
365
  msgstr "Letture per stato"
366
 
367
  #@ cpd
368
+ #: geoip/geoip.php:117
369
  msgid "New GeoIP database installed."
370
  msgstr "Il nuovo database GeoIP é stato installato."
371
 
372
  #@ cpd
373
+ #: geoip/geoip.php:119
374
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
  msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
376
 
377
  #@ cpd
378
+ #: geoip/geoip.php:93
379
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
  msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
381
 
382
  #@ cpd
383
+ #: counter-options.php:459
384
  msgid "Countries"
385
  msgstr "Stati"
386
 
387
  #@ cpd
388
+ #: counter-options.php:460
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Quanti stati desideri siano visibili nella bacheca?"
391
 
392
  #@ cpd
393
+ #: counter-options.php:102
394
  #, php-format
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Mass Bots svuotato. %s totali cancellati."
397
 
398
  #@ cpd
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
  msgid "Mass Bots"
402
  msgstr "Mass Bots"
403
 
404
  #@ cpd
405
+ #: counter-options.php:584
406
  #, php-format
407
  msgid "Show all IPs with more than %s page views per day"
408
  msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
409
 
410
  #@ cpd
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
  msgid "show"
415
  msgstr "mostra"
416
 
417
  #@ cpd
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
  #, php-format
421
  msgid "Delete these %s counts"
422
  msgstr "Cancella questi %s totali"
423
 
424
  #@ cpd
425
+ #: counter.php:821
426
  msgid "Other"
427
  msgstr "Altro"
428
 
429
  #@ default
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
  #: userperspan.php:63
433
  msgid "Front page displays"
434
  msgstr "Mostra nella front page"
435
 
436
  #@ cpd
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
  msgid "Browsers"
440
  msgstr "Browser"
441
 
442
  #@ cpd
443
+ #: counter-options.php:593
444
  msgid "IP"
445
  msgstr "IP"
446
 
447
  #@ cpd
448
  #@ default
449
+ #: counter-options.php:594
450
+ #: notes.php:75
451
  msgid "Date"
452
  msgstr "Data"
453
 
454
  #@ cpd
455
+ #: counter-options.php:595
456
  msgid "Client"
457
  msgstr "Client"
458
 
459
  #@ cpd
460
+ #: counter-options.php:596
461
  msgid "Views"
462
  msgstr "Visualizzazioni"
463
 
464
  #@ cpd
465
+ #: counter-options.php:497
466
  msgid "Start Values"
467
  msgstr "Valori di partenza"
468
 
469
  #@ cpd
470
+ #: counter-options.php:501
471
  msgid "Here you can change the date of first count and add a start count."
472
  msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
473
 
474
  #@ cpd
475
+ #: counter-options.php:505
476
  msgid "Start date"
477
  msgstr "Data di inizio"
478
 
479
  #@ cpd
480
+ #: counter-options.php:506
481
  msgid "Your old Counter starts at?"
482
  msgstr "Il vecchio contatore parte da?"
483
 
484
  #@ cpd
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
  msgid "Start count"
488
  msgstr "Avvia conteggio"
489
 
490
  #@ cpd
491
+ #: counter-options.php:510
492
  msgid "Add this value to \"Total visitors\"."
493
  msgstr "Aggiungi questo valore a \"Totale visitatori\"."
494
 
495
  #@ cpd
496
+ #: counter-options.php:714
497
  msgid "Support"
498
  msgstr "Supporto"
499
 
500
  #@ cpd
501
+ #: counter-core.php:690
502
  msgid "Bug? Problem? Question? Hint? Praise?"
503
  msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
504
 
505
  #@ cpd
506
+ #: counter-core.php:691
507
  #, php-format
508
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
  msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
510
 
511
  #@ default
512
+ #: counter.php:786
513
  msgid "Show"
514
  msgstr "Mostra"
515
 
516
  #@ default
517
+ #: counter.php:976
518
  msgid "Edit Post"
519
  msgstr "modifica articolo"
520
 
521
  #@ cpd
522
+ #: counter-core.php:689
523
  #, php-format
524
  msgid "Time for Count per Day: <code>%s</code>."
525
  msgstr "Fuso orario Count per Day: <code>%s</code>."
526
 
527
  #@ cpd
528
+ #: counter-options.php:362
529
  msgid "until User Level"
530
  msgstr "sino a livello utente"
531
 
532
  #@ default
533
+ #: counter-core.php:730
534
  msgid "Plugin"
535
  msgstr "Plugin"
536
 
537
  #@ cpd
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
 
541
  msgid "Notes"
542
  msgstr "Note"
543
 
544
  #@ default
545
+ #: notes.php:77
546
  msgid "Action"
547
  msgstr "Azione"
548
 
549
  #@ cpd
550
+ #: notes.php:82
551
  msgid "add"
552
  msgstr "aggiungi"
553
 
554
  #@ cpd
555
+ #: notes.php:98
556
  msgid "save"
557
  msgstr "salva"
558
 
559
  #@ cpd
560
+ #: notes.php:99
561
  msgid "delete"
562
  msgstr "cancella"
563
 
564
  #@ cpd
565
+ #: notes.php:110
566
  msgid "edit"
567
  msgstr "modifica"
568
 
569
  #@ cpd
570
+ #: counter-options.php:514
 
 
 
 
 
571
  msgid "Add this value to \"Total reads\"."
572
  msgstr "Aggiungi questo valore a \"Totale letture\"."
573
 
574
  #@ cpd
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
  msgid "Total reads"
578
  msgstr "Totale letture"
579
 
580
  #@ cpd
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
  msgid "Reads today"
584
  msgstr "Letture odierne"
585
 
586
  #@ cpd
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
  msgid "Reads yesterday"
590
  msgstr "Letture di ieri"
591
 
592
  #@ cpd
593
+ #: counter.php:353
594
+ #: counter.php:1041
595
  msgid "Map"
596
  msgstr "Mappa"
597
 
598
  #@ cpd
599
+ #: counter-options.php:381
600
  msgid "Anonymous IP"
601
  msgstr "IP anonimo"
602
 
603
  #@ cpd
604
+ #: counter-options.php:385
605
  msgid "Cache"
606
  msgstr "Cache"
607
 
608
  #@ cpd
609
+ #: counter-options.php:386
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
612
 
613
  #@ cpd
614
+ #: counter-options.php:465
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Sub-stringa user agent, separa con una virgola"
617
 
618
  #@ cpd
619
+ #: counter-core.php:739
620
  msgid "Visitors per Country"
621
  msgstr "Visitatori per paese"
622
 
623
  #@ cpd
624
+ #: counter-options.php:554
625
  msgid "Debug mode"
626
  msgstr "Modalità debug"
627
 
628
  #@ cpd
629
+ #: counter-options.php:556
630
  msgid "Show debug informations at the bottom of all pages."
631
  msgstr "Mostra info debug al fondo di tutte le pagine."
632
 
633
  #@ cpd
634
+ #: userperspan.php:38
635
  msgid "Start"
636
  msgstr "Inizio"
637
 
638
  #@ cpd
639
+ #: userperspan.php:40
640
  msgid "End"
641
  msgstr "Termine"
642
 
643
  #@ cpd
644
+ #: userperspan.php:42
645
  msgid "PostID"
646
  msgstr "ID articolo"
647
 
648
  #@ cpd
649
+ #: userperspan.php:50
650
  msgid "no data found"
651
  msgstr "nessun dato trovato"
652
 
653
  #@ cpd
654
+ #: counter-options.php:730
655
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
  msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
657
 
658
  #@ cpd
659
+ #: counter-options.php:351
660
  msgid "Counter"
661
  msgstr "Contatore"
662
 
663
  #@ cpd
664
+ #: counter-options.php:476
665
  msgid "Local URLs"
666
  msgstr "URL locali"
667
 
668
  #@ cpd
669
+ #: counter-options.php:477
670
  msgid "Show local referrers too."
671
  msgstr "Mostra anche i referenti locali."
672
 
673
  #@ default
674
+ #: counter-options.php:485
675
  msgid "Posts"
676
  msgstr "Articoli"
677
 
678
  #@ default
679
+ #: counter-options.php:485
680
  msgid "Pages"
681
  msgstr "Pagine"
682
 
683
  #@ default
684
+ #: counter.php:985
685
  msgid "Category"
686
  msgstr "Categoria"
687
 
688
  #@ default
689
+ #: counter.php:988
690
  msgid "Tag"
691
  msgstr "Tag"
692
 
693
  #@ default
694
+ #: counter-core.php:692
695
  msgid "License"
696
  msgstr "Licenza"
697
 
698
  #@ cpd
699
+ #: counter-core.php:734
700
  msgid "Referrer"
701
  msgstr "Referente"
702
 
703
  #@ default
704
+ #: counter.php:1220
705
  msgid "Title"
706
  msgstr "Titolo"
707
 
708
  #@ cpd
709
+ #: counter-options.php:392
710
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
711
  msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
712
 
713
  #@ cpd
714
+ #: counter-options.php:389
715
  msgid "Clients and referrers"
716
  msgstr "Client e referenti"
717
 
718
  #@ cpd
719
+ #: counter.php:158
720
+ #: counter.php:1200
721
  msgid "Reads last week"
722
  msgstr "Letture scorsa settimana"
723
 
724
  #@ cpd
725
+ #: counter-core.php:726
726
+ #: counter.php:1201
727
  msgid "Reads per month"
728
  msgstr "Letture scorso mese"
729
 
730
  #@ cpd
731
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
732
  msgid "Referrers - Entries"
733
  msgstr "Referenti - Pubblicazioni"
734
 
735
  #@ cpd
736
+ #: counter-options.php:469
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
739
 
740
  #@ cpd
741
+ #: counter-options.php:472
742
  msgid "Referrers - Days"
743
  msgstr "Referenti - Giorni"
744
 
745
  #@ cpd
746
+ #: counter.php:845
747
  #, php-format
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "I %s referenti degli ultimi %s giorni:"
750
 
751
  #@ cpd
752
+ #: counter-core.php:724
753
  msgid "Visitors online"
754
  msgstr "Visitatori online"
755
 
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" é stato aggiornato alla versione %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Il backup é fallito! Non é possibile aprire il file"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Backup in corso per %s elementi. Ogni punto provvede a %s elementi."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "La tua cartella wp-content non é scrivibile. Puoi copiare il contenuto di questo box in un file di testo."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Backup della tabella salvato in %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Backup delle opzioni e raccolta dati salvato in %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Raccolta in corso..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Visitatori per post..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Cancellazione vecchi dati..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Computo dati collezionati sino al %s e tabella %s ottimizzati (dimensione precedente = %s &gt; attuale = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Installazione di \"Count per Day\" selezionata"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Strumenti"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Salva solo gli URL, no query string."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Chi può vedere"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "personalizzato"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "e superiore hanno il permesso per potere vedere le stat."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Imposta %s ruolo %s necessario per l'utente:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Foglio di stile"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "NO foglio di stile nel Frontend"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Non caricare il foglio di stile \"counter.css\" nel frontend."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Backup"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Elementi per pass"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Quanti elementi salvare per pass? Predefinito: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Se il tuo limite di memoria PHP fosse inferiore a 50 MB ed ottenessi una pagina bianca o un messagigo di errore, inserisci un valore più piccolo."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Crea un backup della tabella %s nella cartella wp-content (se scrivibile)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Backup del database"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Raccogli i vecchi dati"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "La dimensione attuale della tabella %s é %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Puoi raccogliere i vecchi dati e svuotare la tabella.<br/>Le letture ed i visitatori saranno salvati per mese, per paese e per articolo.<br/>Client e referrer saranno cancellati."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your colletion contains data until %s."
916
+ msgstr "Al mopmento, la tua collezione contiene dei dati sino al %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Generalmente, i nuovi dati saranno aggiunti alla collezione."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Cancella la vecchia raccolta e creane una nuova che contenga solamente i dati attuali della tabella."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Tutti i dati raccolti sino al %s saranno cancellati."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Conserva nella tabella i dati per gli ultimi %s mesi completi + mese corrente."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Riattivazione"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Qui puoi iniziare l'installazione manuale delle funzioni.<br/>Come attivare e riattivare il plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Riattiva il plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Visitatori"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Giorno maggiori visite"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "drag and drop per ordinare"
971
+
locale/cpd-ja.mo ADDED
Binary file
locale/cpd-ja.po ADDED
@@ -0,0 +1,972 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.00\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-07-30 09:39+0900\n"
6
+ "PO-Revision-Date: 2011-07-30 09:49+0900\n"
7
+ "Last-Translator: Juno Hayami <juno.hayami@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Japanese\n"
14
+ "X-Poedit-Country: JAPAN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-core.php:194
23
+ #, php-format
24
+ #@ cpd
25
+ msgid "\"Count per Day\" updated to version %s."
26
+ msgstr "\"Count per Day\" がバージョン %s にアップデートされました。"
27
+
28
+ #: counter-core.php:583
29
+ #: counter-options.php:343
30
+ #: counter-options.php:560
31
+ #@ default
32
+ msgid "Settings"
33
+ msgstr "設定"
34
+
35
+ #: counter-core.php:647
36
+ #: counter-options.php:393
37
+ #: counter.php:159
38
+ #: counter.php:875
39
+ #@ cpd
40
+ msgid "Reads"
41
+ msgstr "総購読数"
42
+
43
+ #: counter-core.php:697
44
+ #, php-format
45
+ #@ cpd
46
+ msgid "Time for Count per Day: <code>%s</code>."
47
+ msgstr "Count per Dayでの日時: <code>%s</code>."
48
+
49
+ #: counter-core.php:698
50
+ #@ cpd
51
+ msgid "Bug? Problem? Question? Hint? Praise?"
52
+ msgstr "バグ?問題?質問?ヒント?評価?"
53
+
54
+ #: counter-core.php:699
55
+ #, php-format
56
+ #@ cpd
57
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
58
+ msgstr "<a href=\"%s\">plugin page</a> にコメントする。"
59
+
60
+ #: counter-core.php:700
61
+ #@ default
62
+ msgid "License"
63
+ msgstr "ライセンス"
64
+
65
+ #: counter-core.php:731
66
+ #: counter.php:160
67
+ #: counter.php:1010
68
+ #: counter.php:1202
69
+ #@ cpd
70
+ msgid "Total visitors"
71
+ msgstr "総訪問者数"
72
+
73
+ #: counter-core.php:732
74
+ #@ cpd
75
+ msgid "Visitors online"
76
+ msgstr "オンライン中の訪問者数"
77
+
78
+ #: counter-core.php:733
79
+ #: counter.php:1206
80
+ #@ cpd
81
+ msgid "Visitors per month"
82
+ msgstr "月別訪問者数"
83
+
84
+ #: counter-core.php:734
85
+ #: counter.php:1201
86
+ #@ cpd
87
+ msgid "Reads per month"
88
+ msgstr "月別閲覧数"
89
+
90
+ #: counter-core.php:735
91
+ #: counter-options.php:438
92
+ #@ cpd
93
+ msgid "Visitors per post"
94
+ msgstr "記事別の訪問者数"
95
+
96
+ #: counter-core.php:736
97
+ #@ cpd
98
+ msgid "Latest Counts"
99
+ msgstr "最近のカウント"
100
+
101
+ #: counter-core.php:737
102
+ #: counter.php:166
103
+ #: counter.php:263
104
+ #: counter.php:1012
105
+ #: counter.php:1207
106
+ #: userperspan.php:34
107
+ #@ cpd
108
+ msgid "Visitors per day"
109
+ msgstr "一日あたりの訪問者数"
110
+
111
+ #: counter-core.php:738
112
+ #@ default
113
+ msgid "Plugin"
114
+ msgstr "プラグイン"
115
+
116
+ #: counter-core.php:741
117
+ #: counter-options.php:464
118
+ #@ cpd
119
+ msgid "Browsers"
120
+ msgstr "ブラウザ"
121
+
122
+ #: counter-core.php:742
123
+ #@ cpd
124
+ msgid "Referrer"
125
+ msgstr "リファラ"
126
+
127
+ #: counter-core.php:746
128
+ #@ cpd
129
+ msgid "Reads per Country"
130
+ msgstr "国ごとの閲覧数"
131
+
132
+ #: counter-core.php:747
133
+ #@ cpd
134
+ msgid "Visitors per Country"
135
+ msgstr "国ごとの訪問者数"
136
+
137
+ #: counter-core.php:762
138
+ #: counter.php:1124
139
+ #@ cpd
140
+ msgid "Statistics"
141
+ msgstr "統計"
142
+
143
+ #: counter-core.php:925
144
+ #@ cpd
145
+ msgid "Backup failed! Cannot open file"
146
+ msgstr "バックアップに失敗しました! ファイルが開けません。"
147
+
148
+ #: counter-core.php:948
149
+ #, php-format
150
+ #@ cpd
151
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
152
+ msgstr "%s 件の記録をバックアップ処理中。 %s 件の記録が完了しています。"
153
+
154
+ #: counter-core.php:1035
155
+ #@ cpd
156
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
157
+ msgstr "wp-contentディレクトリに書き込みできません。しかしこのボックスからプレーンテキスト形式でコンテンツをコピーできます。"
158
+
159
+ #: counter-core.php:1041
160
+ #, php-format
161
+ #@ cpd
162
+ msgid "Backup of counter table saved in %s."
163
+ msgstr "カウンターテーブルのバックアップを %s に保存しました。"
164
+
165
+ #: counter-core.php:1043
166
+ #, php-format
167
+ #@ cpd
168
+ msgid "Backup of counter options and collection saved in %s."
169
+ msgstr "カウンターオプションのバックアップと記録は %s に保存されました。"
170
+
171
+ #: counter-options.php:50
172
+ #@ cpd
173
+ msgid "Options updated"
174
+ msgstr "オプションを更新しました"
175
+
176
+ #: counter-options.php:61
177
+ #, php-format
178
+ #@ cpd
179
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
180
+ msgstr "訪問者の国情報を更新。%s 上の <b>%s</b> 件がまだ国と関連付けられていません。"
181
+
182
+ #: counter-options.php:64
183
+ #@ cpd
184
+ msgid "update next"
185
+ msgstr "次を更新"
186
+
187
+ #: counter-options.php:104
188
+ #, php-format
189
+ #@ cpd
190
+ msgid "Mass Bots cleaned. %s counts deleted."
191
+ msgstr "Botをクリーンアップしました。 %s 件が削除されました。"
192
+
193
+ #: counter-options.php:114
194
+ #, php-format
195
+ #@ cpd
196
+ msgid "Database cleaned. %s rows deleted."
197
+ msgstr "データベースをクリーンアップしました。 %s 行削除されました。"
198
+
199
+ #: counter-options.php:124
200
+ #@ cpd
201
+ msgid "Counter reseted."
202
+ msgstr "カウンターがリセットされました。"
203
+
204
+ #: counter-options.php:129
205
+ #: counter-options.php:817
206
+ #@ cpd
207
+ msgid "UNINSTALL Count per Day"
208
+ msgstr "Count per Day のアンインストール"
209
+
210
+ #: counter-options.php:134
211
+ #: counter-options.php:135
212
+ #: counter-options.php:136
213
+ #, php-format
214
+ #@ cpd
215
+ msgid "Table %s deleted"
216
+ msgstr "%s テーブルが削除されました"
217
+
218
+ #: counter-options.php:137
219
+ #@ cpd
220
+ msgid "Options deleted"
221
+ msgstr "オプションを削除しました"
222
+
223
+ #: counter-options.php:172
224
+ #@ cpd
225
+ msgid "Collection in progress..."
226
+ msgstr "整理中です…"
227
+
228
+ #: counter-options.php:242
229
+ #@ cpd
230
+ msgid "Get Visitors per Post..."
231
+ msgstr "記事別の訪問者数を取得…"
232
+
233
+ #: counter-options.php:263
234
+ #@ cpd
235
+ msgid "Delete old data..."
236
+ msgstr "古いデータを削除します…"
237
+
238
+ #: counter-options.php:287
239
+ #, php-format
240
+ #@ cpd
241
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
242
+ msgstr "%s までのカウンター記録を整理し、カウンターテーブル %s を最適化しました (最適化前のサイズ = %s &gt; 最適化後のサイズ = %s)。"
243
+
244
+ #: counter-options.php:296
245
+ #@ cpd
246
+ msgid "Installation of \"Count per Day\" checked"
247
+ msgstr "\"Count per Day\" のインストールが完了しました。"
248
+
249
+ #: counter-options.php:318
250
+ #: counter-options.php:803
251
+ #@ cpd
252
+ msgid "Uninstall"
253
+ msgstr "アンインストール"
254
+
255
+ #: counter-options.php:319
256
+ #@ cpd
257
+ msgid "Click here"
258
+ msgstr "Click here"
259
+
260
+ #: counter-options.php:319
261
+ #@ cpd
262
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
263
+ msgstr "\"Count per Day\" を無効化してアンインストール"
264
+
265
+ #: counter-options.php:344
266
+ #: counter-options.php:561
267
+ #@ default
268
+ msgid "Tools"
269
+ msgstr "ツール"
270
+
271
+ #: counter-options.php:352
272
+ #@ cpd
273
+ msgid "Counter"
274
+ msgstr "カウンター"
275
+
276
+ #: counter-options.php:356
277
+ #@ cpd
278
+ msgid "Online time"
279
+ msgstr "オンライン判定時間(秒)"
280
+
281
+ #: counter-options.php:357
282
+ #@ cpd
283
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
284
+ msgstr "オンラインの数をカウントする秒数。 ダッシュボード上の\"オンライン中の訪問者数\"で使用。"
285
+
286
+ #: counter-options.php:360
287
+ #@ cpd
288
+ msgid "Logged on Users"
289
+ msgstr "ログインユーザー"
290
+
291
+ #: counter-options.php:362
292
+ #@ cpd
293
+ msgid "count too"
294
+ msgstr "カウントに含む"
295
+
296
+ #: counter-options.php:363
297
+ #@ cpd
298
+ msgid "until User Level"
299
+ msgstr "次のユーザーレベルまで"
300
+
301
+ #: counter-options.php:374
302
+ #@ cpd
303
+ msgid "Auto counter"
304
+ msgstr "自動でカウントする"
305
+
306
+ #: counter-options.php:375
307
+ #@ cpd
308
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
309
+ msgstr "テンプレートの変更なしで自動的に個別記事や固定ページもカウントする"
310
+
311
+ #: counter-options.php:378
312
+ #@ cpd
313
+ msgid "Bots to ignore"
314
+ msgstr "無視するBot"
315
+
316
+ #: counter-options.php:382
317
+ #@ cpd
318
+ msgid "Anonymous IP"
319
+ msgstr "匿名IP"
320
+
321
+ #: counter-options.php:386
322
+ #@ cpd
323
+ msgid "Cache"
324
+ msgstr "キャッシュ"
325
+
326
+ #: counter-options.php:387
327
+ #@ cpd
328
+ msgid "I use a cache plugin. Count these visits with ajax."
329
+ msgstr "キャッシュプラグインを使用しています。ajaxでこれらの訪問者もカウントします。"
330
+
331
+ #: counter-options.php:390
332
+ #@ cpd
333
+ msgid "Clients and referrers"
334
+ msgstr "クライアントとリファラ"
335
+
336
+ #: counter-options.php:393
337
+ #@ cpd
338
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
339
+ msgstr "クライアントとリファラを表示・保存します。<br />多くのデータベース容量を必要としますがあなたのサイトへの訪問者情報をより細かく把握できます。"
340
+
341
+ #: counter-options.php:395
342
+ #@ cpd
343
+ msgid "Save URL only, no query string."
344
+ msgstr "URLのみ保存し、クエリ部分は含まない。"
345
+
346
+ #: counter-options.php:403
347
+ #@ default
348
+ msgid "Dashboard"
349
+ msgstr "ダッシュボード"
350
+
351
+ #: counter-options.php:419
352
+ #@ cpd
353
+ msgid "Who can see it"
354
+ msgstr "閲覧を許可する人"
355
+
356
+ #: counter-options.php:428
357
+ #@ cpd
358
+ msgid "custom"
359
+ msgstr "カスタム"
360
+
361
+ #: counter-options.php:430
362
+ #@ cpd
363
+ msgid "and higher are allowed to see the statistics page."
364
+ msgstr "これ以上の権限なら統計ページの閲覧を許可します。"
365
+
366
+ #: counter-options.php:432
367
+ #, php-format
368
+ #@ cpd
369
+ msgid "Set the %s capability %s a user need:"
370
+ msgstr "ユーザに必要な %s 権限 %s の設定:"
371
+
372
+ #: counter-options.php:439
373
+ #: counter-options.php:443
374
+ #@ cpd
375
+ msgid "How many posts do you want to see on dashboard page?"
376
+ msgstr "ダッシュボードで何件まで閲覧しますか?"
377
+
378
+ #: counter-options.php:442
379
+ #@ cpd
380
+ msgid "Latest Counts - Posts"
381
+ msgstr "最近のカウント - 記事"
382
+
383
+ #: counter-options.php:446
384
+ #@ cpd
385
+ msgid "Latest Counts - Days"
386
+ msgstr "最近のカウント - 日別"
387
+
388
+ #: counter-options.php:447
389
+ #: counter-options.php:451
390
+ #: counter-options.php:473
391
+ #@ cpd
392
+ msgid "How many days do you want look back?"
393
+ msgstr "本日から何日前まで表示しますか?"
394
+
395
+ #: counter-options.php:450
396
+ #@ cpd
397
+ msgid "Chart - Days"
398
+ msgstr "チャート(グラフ) - 日別"
399
+
400
+ #: counter-options.php:454
401
+ #@ cpd
402
+ msgid "Chart - Height"
403
+ msgstr "チャート(グラフ) - 高さ"
404
+
405
+ #: counter-options.php:455
406
+ #@ cpd
407
+ msgid "Height of the biggest bar"
408
+ msgstr "最大値のときの高さ"
409
+
410
+ #: counter-options.php:459
411
+ #@ cpd
412
+ msgid "Countries"
413
+ msgstr "国情報"
414
+
415
+ #: counter-options.php:460
416
+ #@ cpd
417
+ msgid "How many countries do you want to see on dashboard page?"
418
+ msgstr "ダッシュボード上で何ヶ国まで閲覧しますか?"
419
+
420
+ #: counter-options.php:465
421
+ #@ cpd
422
+ msgid "Substring of the user agent, separated by comma"
423
+ msgstr "ユーザーエージェントは種類ごとにカンマで区切ってください"
424
+
425
+ #: counter-options.php:468
426
+ #@ cpd
427
+ msgid "Referrers - Entries"
428
+ msgstr "リファラ - 投稿別"
429
+
430
+ #: counter-options.php:469
431
+ #@ cpd
432
+ msgid "How many referrers do you want to see on dashboard page?"
433
+ msgstr "ダッシュボード上で何件のリファラを表示しますか?"
434
+
435
+ #: counter-options.php:472
436
+ #@ cpd
437
+ msgid "Referrers - Days"
438
+ msgstr "リファラ - 日数"
439
+
440
+ #: counter-options.php:476
441
+ #@ cpd
442
+ msgid "Local URLs"
443
+ msgstr "ローカルURLの扱い"
444
+
445
+ #: counter-options.php:477
446
+ #@ cpd
447
+ msgid "Show local referrers too."
448
+ msgstr "ローカルのリファラも表示する"
449
+
450
+ #: counter-options.php:484
451
+ #@ default
452
+ msgid "Posts"
453
+ msgstr "記事"
454
+
455
+ #: counter-options.php:484
456
+ #@ default
457
+ msgid "Pages"
458
+ msgstr "固定ページ"
459
+
460
+ #: counter-options.php:487
461
+ #@ cpd
462
+ msgid "Show in lists"
463
+ msgstr "リスト表示"
464
+
465
+ #: counter-options.php:488
466
+ #@ cpd
467
+ msgid "Show \"Reads per Post\" in a new column in post management views."
468
+ msgstr "投稿管理画面に新しいカラムを追加して\"記事別閲覧数\"を表示します。"
469
+
470
+ #: counter-options.php:495
471
+ #@ cpd
472
+ msgid "Start Values"
473
+ msgstr "スタートする値"
474
+
475
+ #: counter-options.php:499
476
+ #@ cpd
477
+ msgid "Here you can change the date of first count and add a start count."
478
+ msgstr "ここでカウントを開始した日とカウントに加算する値を変更できます。"
479
+
480
+ #: counter-options.php:503
481
+ #@ cpd
482
+ msgid "Start date"
483
+ msgstr "開始日"
484
+
485
+ #: counter-options.php:504
486
+ #@ cpd
487
+ msgid "Your old Counter starts at?"
488
+ msgstr "前に使っていたカウンターはいつからカウントを開始しましたか?"
489
+
490
+ #: counter-options.php:507
491
+ #: counter-options.php:511
492
+ #@ cpd
493
+ msgid "Start count"
494
+ msgstr "カウントスタート"
495
+
496
+ #: counter-options.php:508
497
+ #@ cpd
498
+ msgid "Add this value to \"Total visitors\"."
499
+ msgstr "この値を\"総訪問者数\"に追加します。"
500
+
501
+ #: counter-options.php:512
502
+ #@ cpd
503
+ msgid "Add this value to \"Total reads\"."
504
+ msgstr "この値を\"総閲覧数\"に追加します。"
505
+
506
+ #: counter-options.php:519
507
+ #@ cpd
508
+ msgid "Stylesheet"
509
+ msgstr "スタイルシート"
510
+
511
+ #: counter-options.php:522
512
+ #@ cpd
513
+ msgid "NO Stylesheet in Frontend"
514
+ msgstr "トップページにスタイルシートを使わない"
515
+
516
+ #: counter-options.php:523
517
+ #@ cpd
518
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
519
+ msgstr "トップページに\"counter.css\"を読み込みません。"
520
+
521
+ #: counter-options.php:530
522
+ #: counter-options.php:634
523
+ #@ cpd
524
+ msgid "Backup"
525
+ msgstr "バックアップ"
526
+
527
+ #: counter-options.php:533
528
+ #@ cpd
529
+ msgid "Entries per pass"
530
+ msgstr "許可するエントリ"
531
+
532
+ #: counter-options.php:536
533
+ #@ cpd
534
+ msgid "How many entries should be saved per pass? Default: 10000"
535
+ msgstr "何件のエントリを保存しますか? デフォルト: 10000"
536
+
537
+ #: counter-options.php:541
538
+ #@ cpd
539
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
540
+ msgstr "PHPのメモリ上限が 50 MB よりも少ない場合、真っ白なページかもっと小さい値にするようエラーメッセージが表示されます。"
541
+
542
+ #: counter-options.php:549
543
+ #@ cpd
544
+ msgid "Debug mode"
545
+ msgstr "デバッグモード"
546
+
547
+ #: counter-options.php:551
548
+ #@ cpd
549
+ msgid "Show debug informations at the bottom of all pages."
550
+ msgstr "全てのページの最下部にデバッグ情報を表示します。"
551
+
552
+ #: counter-options.php:556
553
+ #@ cpd
554
+ msgid "Update options"
555
+ msgstr "オプションの更新"
556
+
557
+ #: counter-options.php:575
558
+ #: massbots.php:35
559
+ #@ cpd
560
+ msgid "Mass Bots"
561
+ msgstr "Bot"
562
+
563
+ #: counter-options.php:579
564
+ #, php-format
565
+ #@ cpd
566
+ msgid "Show all IPs with more than %s page views per day"
567
+ msgstr "一日あたり %s ページ以上閲覧のIPを表示"
568
+
569
+ #: counter-options.php:580
570
+ #: notes.php:71
571
+ #: userperspan.php:44
572
+ #@ cpd
573
+ msgid "show"
574
+ msgstr "表示"
575
+
576
+ #: counter-options.php:588
577
+ #@ cpd
578
+ msgid "IP"
579
+ msgstr "IP"
580
+
581
+ #: counter-options.php:589
582
+ #: notes.php:75
583
+ #@ cpd
584
+ #@ default
585
+ msgid "Date"
586
+ msgstr "日付"
587
+
588
+ #: counter-options.php:590
589
+ #@ cpd
590
+ msgid "Client"
591
+ msgstr "クライアント"
592
+
593
+ #: counter-options.php:591
594
+ #@ cpd
595
+ msgid "Views"
596
+ msgstr "閲覧数"
597
+
598
+ #: counter-options.php:606
599
+ #: counter-options.php:622
600
+ #, php-format
601
+ #@ cpd
602
+ msgid "Delete these %s counts"
603
+ msgstr "これら %s 件を削除"
604
+
605
+ #: counter-options.php:638
606
+ #, php-format
607
+ #@ cpd
608
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
609
+ msgstr "カウンターテーブル %s のバックアップをwp-contentディレクトリに作成します(書き込み可能な場合)。"
610
+
611
+ #: counter-options.php:642
612
+ #@ cpd
613
+ msgid "Backup the database"
614
+ msgstr "データベースのバックアップ"
615
+
616
+ #: counter-options.php:663
617
+ #: counter-options.php:672
618
+ #@ cpd
619
+ msgid "Clean the database"
620
+ msgstr "データベースのクリーンアップ"
621
+
622
+ #: counter-options.php:666
623
+ #@ cpd
624
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
625
+ msgstr "\"スパムデータ\"を削除してカウンターテーブルをクリーンアップできます。<br />以前の\"スパムデータ\"に新規でBotを追加するとデータベースは保護されます。<br />ここではBotフィルターを再度実行したりBotの訪問データを削除できます。"
626
+
627
+ #: counter-options.php:681
628
+ #: counter-options.php:713
629
+ #@ cpd
630
+ msgid "Collect old data"
631
+ msgstr "古いデータの整理"
632
+
633
+ #: counter-options.php:686
634
+ #, php-format
635
+ #@ cpd
636
+ msgid "Current size of your counter table %s is %s."
637
+ msgstr "カウンターテーブル %s のサイズは %s です。"
638
+
639
+ #: counter-options.php:688
640
+ #@ cpd
641
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
642
+ msgstr "古いデータを整理し、カウンターテーブルをクリーンアップできます。<br/>月別・国別・記事別の購読数と訪問者数は保存されます。<br/>クライアントとリファラは削除されます。"
643
+
644
+ #: counter-options.php:693
645
+ #, php-format
646
+ #@ cpd
647
+ msgid "Currently your collection contains data until %s."
648
+ msgstr "現在、%s までのデータが整理するデータに含まれています。"
649
+
650
+ #: counter-options.php:697
651
+ #@ cpd
652
+ msgid "Normally new data will be added to the collection."
653
+ msgstr "通常、新しいデータは整理したデータに追加されます。"
654
+
655
+ #: counter-options.php:703
656
+ #@ cpd
657
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
658
+ msgstr "古いデータを消して、現在の内容のみの新しいデータをカウンターテーブルに作成する。"
659
+
660
+ #: counter-options.php:704
661
+ #, php-format
662
+ #@ cpd
663
+ msgid "All collected data until %s will deleted."
664
+ msgstr "%s までの全てのデータは削除されます。"
665
+
666
+ #: counter-options.php:709
667
+ #, php-format
668
+ #@ cpd
669
+ msgid "Keep entries of last %s full months + current month in counter table."
670
+ msgstr "過去 %s ヶ月間 + 今月 の記録をカウンターテーブルに保存する。"
671
+
672
+ #: counter-options.php:721
673
+ #@ cpd
674
+ msgid "Support"
675
+ msgstr "サポート"
676
+
677
+ #: counter-options.php:734
678
+ #@ cpd
679
+ msgid "GeoIP - Countries"
680
+ msgstr "GeoIP - 国別統計"
681
+
682
+ #: counter-options.php:737
683
+ #@ cpd
684
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
685
+ msgstr "IPアドレスをチェックしてGeoIPデータベースと照合することにより全ての記事で国データを取得できます。これにはしばらく時間がかかります。"
686
+
687
+ #: counter-options.php:743
688
+ #@ cpd
689
+ msgid "Update old counter data"
690
+ msgstr "過去のカウンターデータを更新"
691
+
692
+ #: counter-options.php:750
693
+ #@ cpd
694
+ msgid "Download a new version of GeoIP.dat file."
695
+ msgstr "GeoIP.datファイルの新しいバージョンをダウンロードする。"
696
+
697
+ #: counter-options.php:755
698
+ #@ cpd
699
+ msgid "Update GeoIP database"
700
+ msgstr "GeoIPデータベースの更新"
701
+
702
+ #: counter-options.php:760
703
+ #@ cpd
704
+ msgid "More informations about GeoIP"
705
+ msgstr "GeoIPの詳しい情報"
706
+
707
+ #: counter-options.php:768
708
+ #@ cpd
709
+ msgid "ReActivation"
710
+ msgstr "プラグインを再度有効にする"
711
+
712
+ #: counter-options.php:771
713
+ #@ cpd
714
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
715
+ msgstr "ここから手動で機能を開始できます。<br/>プラグインを無効にしてもう一度有効にするのと同じ効果です。"
716
+
717
+ #: counter-options.php:776
718
+ #@ cpd
719
+ msgid "ReActivate the plugin"
720
+ msgstr "プラグインを再度有効にする"
721
+
722
+ #: counter-options.php:784
723
+ #: counter-options.php:794
724
+ #@ cpd
725
+ msgid "Reset the counter"
726
+ msgstr "カウンターのリセット"
727
+
728
+ #: counter-options.php:787
729
+ #@ cpd
730
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
731
+ msgstr "テーブルを全て空にしてリセットできます。全てが0になります!<br />最新のデータが必要な場合はバックアップを作成してください!"
732
+
733
+ #: counter-options.php:793
734
+ #: counter-options.php:816
735
+ #@ cpd
736
+ msgid "Yes"
737
+ msgstr "はい"
738
+
739
+ #: counter-options.php:806
740
+ #@ cpd
741
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
742
+ msgstr "もしも\"Count per Day\"を無効にするだけであれば使用しているデータベース上のテーブルは保存され続けます。"
743
+
744
+ #: counter-options.php:807
745
+ #@ cpd
746
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
747
+ msgstr "ここから\"Count per Day\"が使用しているテーブルを削除し無効にすることができます。"
748
+
749
+ #: counter-options.php:810
750
+ #@ cpd
751
+ msgid "WARNING"
752
+ msgstr "警告"
753
+
754
+ #: counter-options.php:811
755
+ #@ cpd
756
+ msgid "These tables (with ALL counter data) will be deleted."
757
+ msgstr "データベース上にある以下のテーブル(全てのカウンターデータ)が削除されます。"
758
+
759
+ #: counter-options.php:813
760
+ #@ cpd
761
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
762
+ msgstr "\"Count per Day\"を再インストールした場合もカウントは0から始まります。"
763
+
764
+ #: counter-options.php:817
765
+ #@ cpd
766
+ msgid "You are sure to disable Count per Day and delete all data?"
767
+ msgstr "本当にCount per Dayを無効にして全てのデータを削除しますか?"
768
+
769
+ #: counter.php:155
770
+ #: counter.php:1197
771
+ #@ cpd
772
+ msgid "Total reads"
773
+ msgstr "総閲覧数"
774
+
775
+ #: counter.php:156
776
+ #: counter.php:1198
777
+ #@ cpd
778
+ msgid "Reads today"
779
+ msgstr "今日の閲覧数"
780
+
781
+ #: counter.php:157
782
+ #: counter.php:1199
783
+ #@ cpd
784
+ msgid "Reads yesterday"
785
+ msgstr "昨日の閲覧数"
786
+
787
+ #: counter.php:158
788
+ #: counter.php:1200
789
+ #@ cpd
790
+ msgid "Reads last week"
791
+ msgstr "先週の閲覧数"
792
+
793
+ #: counter.php:161
794
+ #: counter.php:1208
795
+ #@ cpd
796
+ msgid "Visitors currently online"
797
+ msgstr "現在オンライン中の人数"
798
+
799
+ #: counter.php:162
800
+ #: counter.php:1203
801
+ #@ cpd
802
+ msgid "Visitors today"
803
+ msgstr "今日の訪問者数"
804
+
805
+ #: counter.php:163
806
+ #: counter.php:1204
807
+ #@ cpd
808
+ msgid "Visitors yesterday"
809
+ msgstr "昨日の訪問者数"
810
+
811
+ #: counter.php:164
812
+ #: counter.php:1205
813
+ #@ cpd
814
+ msgid "Visitors last week"
815
+ msgstr "先週の訪問者数"
816
+
817
+ #: counter.php:165
818
+ #: counter.php:899
819
+ #@ cpd
820
+ msgid "Visitors"
821
+ msgstr "訪問者数"
822
+
823
+ #: counter.php:167
824
+ #: counter.php:825
825
+ #: counter.php:1209
826
+ #@ cpd
827
+ msgid "Counter starts on"
828
+ msgstr "カウント開始日"
829
+
830
+ #: counter.php:168
831
+ #: counter.php:169
832
+ #@ cpd
833
+ msgid "Most visited day"
834
+ msgstr "最も多かった日"
835
+
836
+ #: counter.php:262
837
+ #@ cpd
838
+ msgid "Reads per day"
839
+ msgstr "一日あたりの閲覧数"
840
+
841
+ #: counter.php:353
842
+ #: counter.php:1041
843
+ #@ cpd
844
+ msgid "Map"
845
+ msgstr "マップ"
846
+
847
+ #: counter.php:672
848
+ #, php-format
849
+ #@ cpd
850
+ msgid "The %s most visited posts in last %s days:"
851
+ msgstr "最も訪問者が多かった記事 %s 件 (過去 %s 日間)"
852
+
853
+ #: counter.php:786
854
+ #@ default
855
+ msgid "Show"
856
+ msgstr "表示"
857
+
858
+ #: counter.php:788
859
+ #: notes.php:42
860
+ #: notes.php:76
861
+ #@ cpd
862
+ msgid "Notes"
863
+ msgstr "メモ"
864
+
865
+ #: counter.php:821
866
+ #@ cpd
867
+ msgid "Other"
868
+ msgstr "その他"
869
+
870
+ #: counter.php:845
871
+ #, php-format
872
+ #@ cpd
873
+ msgid "The %s referrers in last %s days:"
874
+ msgstr " %s 件のリファラ (過去 %s 日間)"
875
+
876
+ #: counter.php:976
877
+ #@ default
878
+ msgid "Edit Post"
879
+ msgstr "記事編集"
880
+
881
+ #: counter.php:985
882
+ #@ default
883
+ msgid "Category"
884
+ msgstr "カテゴリ"
885
+
886
+ #: counter.php:988
887
+ #@ default
888
+ msgid "Tag"
889
+ msgstr "タグ"
890
+
891
+ #: counter.php:991
892
+ #: massbots.php:52
893
+ #: userperspan.php:63
894
+ #@ default
895
+ msgid "Front page displays"
896
+ msgstr "トップページの表示"
897
+
898
+ #: counter.php:1196
899
+ #@ cpd
900
+ msgid "This post"
901
+ msgstr "現在の記事"
902
+
903
+ #: counter.php:1220
904
+ #@ default
905
+ msgid "Title"
906
+ msgstr "タイトル"
907
+
908
+ #: counter.php:1239
909
+ #@ cpd
910
+ msgid "drag and drop to sort"
911
+ msgstr "ドラッグ アンド ドロップ で並び替え"
912
+
913
+ #: notes.php:77
914
+ #@ default
915
+ msgid "Action"
916
+ msgstr "アクション"
917
+
918
+ #: notes.php:82
919
+ #@ cpd
920
+ msgid "add"
921
+ msgstr "追加"
922
+
923
+ #: notes.php:98
924
+ #@ cpd
925
+ msgid "save"
926
+ msgstr "保存"
927
+
928
+ #: notes.php:99
929
+ #@ cpd
930
+ msgid "delete"
931
+ msgstr "削除"
932
+
933
+ #: notes.php:110
934
+ #@ cpd
935
+ msgid "edit"
936
+ msgstr "編集"
937
+
938
+ #: userperspan.php:38
939
+ #@ cpd
940
+ msgid "Start"
941
+ msgstr "開始"
942
+
943
+ #: userperspan.php:40
944
+ #@ cpd
945
+ msgid "End"
946
+ msgstr "終了"
947
+
948
+ #: userperspan.php:42
949
+ #@ cpd
950
+ msgid "PostID"
951
+ msgstr "記事ID"
952
+
953
+ #: userperspan.php:50
954
+ #@ cpd
955
+ msgid "no data found"
956
+ msgstr "データが見つかりません"
957
+
958
+ #: geoip/geoip.php:93
959
+ #@ cpd
960
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
961
+ msgstr "申し訳ありません、 php.ini が無効になっているか必要な機能(zlib)がインストールされていません。"
962
+
963
+ #: geoip/geoip.php:117
964
+ #@ cpd
965
+ msgid "New GeoIP database installed."
966
+ msgstr "新しいGeoIPデータベースがインストールされました。"
967
+
968
+ #: geoip/geoip.php:119
969
+ #@ cpd
970
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
971
+ msgstr "申し訳ありません、エラーが発生しました。 再度トライするか \"geoip\" のディレクトリ権限が777であることを確認してください。"
972
+
locale/cpd-lt_LT.mo ADDED
Binary file
locale/cpd-lt_LT.po ADDED
@@ -0,0 +1,784 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Natalija Strazdauskienė <ciuvir@mail.ru>\n"
8
+ "Language-Team: Nata Strazda <nata@epastas.lt>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Lithuanian\n"
14
+ "X-Poedit-Country: LITHUANIA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:46
23
+ msgid "Options updated"
24
+ msgstr "Parinktys atnaujintos"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:111
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Duomenų bazė išvalyta. Ištrinta eilučių %s."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:121
34
+ #: counter-options.php:496
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "PAŠALINTI dienos skaičių"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:126
40
+ #: counter-options.php:128
41
+ #: counter-options.php:130
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Lentelė %s pašalinta"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:132
48
+ msgid "Options deleted"
49
+ msgstr "Parinktys ištrintos"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:156
53
+ #: counter-options.php:481
54
+ msgid "Uninstall"
55
+ msgstr "Pašalinti"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:157
59
+ msgid "Click here"
60
+ msgstr "Spauskite čia"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:157
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "baigti pašalinimą ir išjungti \"Skaičius per dieną\"."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:179
69
+ msgid "Options"
70
+ msgstr "Parinktys"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:190
74
+ msgid "Online time"
75
+ msgstr "Online laikas"
76
+
77
+ #@ cpd
78
+ #: counter-options.php:191
79
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
+ msgstr "Online skaičius sekundėse. Panaudota iš \"Lankytojų online\" puslapio prietaisų skydelio."
81
+
82
+ #@ cpd
83
+ #: counter-options.php:194
84
+ msgid "Logged on Users"
85
+ msgstr "Prisijungę vartotojai"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:196
89
+ msgid "count too"
90
+ msgstr "taipogi skaičiuoti"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:208
94
+ msgid "Auto counter"
95
+ msgstr "Automatinis skaičiuotuvas"
96
+
97
+ #@ cpd
98
+ #: counter-options.php:209
99
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
100
+ msgstr "Automatiškas vienos žinutės ir puslapių skaičiavimas, nereikalauja pakeitimų šablone."
101
+
102
+ #@ cpd
103
+ #: counter-options.php:212
104
+ msgid "Bots to ignore"
105
+ msgstr "Botus ignoruoti"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:331
109
+ msgid "Update options"
110
+ msgstr "Atnaujinti parinktis"
111
+
112
+ #@ cpd
113
+ #: counter-options.php:445
114
+ #: counter-options.php:454
115
+ msgid "Clean the database"
116
+ msgstr "Išvalyti duomenų bazę"
117
+
118
+ #@ cpd
119
+ #: counter-options.php:448
120
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
+ msgstr "Jūs galite išvalyti skaičiavimo lentelę ištrinus \"spam duomenis\". <br /> Jei pridėsite naujų botų virš senųjų \"spam duomenų\", tai liks duomenų bazėje. <br /> Čia vėl galite paleisti boto filtrą ir ištrinti botų apsilankymus."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:484
125
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
+ msgstr "Jeigu \"Kasdienis skaičiavimas\" tik atjungia duomenų bazės lenteles, tai bus užšaldytas."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:485
130
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
131
+ msgstr "Čia galite ištrinti lenteles ir išjungti \"Kasdienį skaičiavimą\"."
132
+
133
+ #@ cpd
134
+ #: counter-options.php:488
135
+ msgid "WARNING"
136
+ msgstr "DĖMESIO"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:489
140
+ msgid "These tables (with ALL counter data) will be deleted."
141
+ msgstr "Šios lentelės (su VISOM skaičiavimo duomenim) bus ištrintos."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:491
145
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
+ msgstr "Jeigu \"Kasdienis skaičiavimas\" įdiegtas iš naujo, skaitiklis prasideda 0."
147
+
148
+ #@ cpd
149
+ #: counter-options.php:495
150
+ msgid "Yes"
151
+ msgstr "Taip"
152
+
153
+ #@ cpd
154
+ #: counter-options.php:496
155
+ msgid "You are sure to disable Count per Day and delete all data?"
156
+ msgstr "Jūs esate tikras, kad norite išjungti Kasdienį Skaičiavimą ir ištrinti visus duomenis?"
157
+
158
+ #@ cpd
159
+ #: counter.php:1786
160
+ #: counter.php:2147
161
+ msgid "Statistics"
162
+ msgstr "Statistika"
163
+
164
+ #@ cpd
165
+ #: counter.php:529
166
+ #: counter.php:534
167
+ #: counter.php:1604
168
+ #: counter.php:1750
169
+ #: counter.php:2224
170
+ msgid "Total visitors"
171
+ msgstr "Viso lankytojų"
172
+
173
+ #@ cpd
174
+ #: counter.php:530
175
+ #: counter.php:2230
176
+ msgid "Visitors currently online"
177
+ msgstr "Šiuo metu lankytojų svetainėje"
178
+
179
+ #@ cpd
180
+ #: counter.php:531
181
+ #: counter.php:2225
182
+ msgid "Visitors today"
183
+ msgstr "Lankytojų šiandien"
184
+
185
+ #@ cpd
186
+ #: counter.php:532
187
+ #: counter.php:2226
188
+ msgid "Visitors yesterday"
189
+ msgstr "Lankytojų vakar"
190
+
191
+ #@ cpd
192
+ #: counter.php:533
193
+ #: counter.php:2227
194
+ msgid "Visitors last week"
195
+ msgstr "Lankytojų praeitą savaitę"
196
+
197
+ #@ cpd
198
+ #: counter.php:536
199
+ #: counter.php:2231
200
+ msgid "Counter starts on"
201
+ msgstr "Skaitiklis prasideda nuo"
202
+
203
+ #@ cpd
204
+ #: counter.php:535
205
+ #: counter.php:636
206
+ #: counter.php:1606
207
+ #: counter.php:1756
208
+ #: counter.php:1765
209
+ #: counter.php:2229
210
+ #: userperspan.php:33
211
+ msgid "Visitors per day"
212
+ msgstr "Lankytojų per dieną"
213
+
214
+ #@ cpd
215
+ #: counter.php:1752
216
+ #: counter.php:2228
217
+ msgid "Visitors per month"
218
+ msgstr "Lankytojų per mėnesį"
219
+
220
+ #@ cpd
221
+ #: counter-options.php:236
222
+ #: counter.php:1754
223
+ msgid "Visitors per post"
224
+ msgstr "Žinutės lankytojai"
225
+
226
+ #@ cpd
227
+ #: counter-options.php:117
228
+ msgid "Counter reseted."
229
+ msgstr "Skaitliukas išvalytas."
230
+
231
+ #@ default
232
+ #: counter-options.php:233
233
+ msgid "Dashboard"
234
+ msgstr "Konsolė"
235
+
236
+ #@ cpd
237
+ #: counter-options.php:237
238
+ #: counter-options.php:241
239
+ msgid "How many posts do you want to see on dashboard page?"
240
+ msgstr "Kiek žinučių jūs norite pamatyti ant prietaisų skydelio puslapyje?"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:240
244
+ msgid "Latest Counts - Posts"
245
+ msgstr "Paskutiniai skaitliukai - žinutės"
246
+
247
+ #@ cpd
248
+ #: counter-options.php:244
249
+ msgid "Latest Counts - Days"
250
+ msgstr "Paskutiniai skaitliukai - Dienos"
251
+
252
+ #@ cpd
253
+ #: counter-options.php:245
254
+ #: counter-options.php:249
255
+ #: counter-options.php:275
256
+ msgid "How many days do you want look back?"
257
+ msgstr "Kiek dienų atgal jūs norite peržiūrėti?"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:248
261
+ msgid "Chart - Days"
262
+ msgstr "Diagrama - dienos"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:252
266
+ msgid "Chart - Height"
267
+ msgstr "Diagrama - Aukštis"
268
+
269
+ #@ cpd
270
+ #: counter-options.php:253
271
+ msgid "Height of the biggest bar"
272
+ msgstr "Didžiausio baro aukštis"
273
+
274
+ #@ cpd
275
+ #: counter-options.php:290
276
+ msgid "Show in lists"
277
+ msgstr "Rodyti sąrašuose"
278
+
279
+ #@ cpd
280
+ #: counter-options.php:291
281
+ msgid "Show \"Reads per Post\" in a new column in post management views."
282
+ msgstr "Rodyti \"Žinutės skaitymai \" naujame stulpelyje žinutės peržiūrų valdyme."
283
+
284
+ #@ cpd
285
+ #: counter-options.php:463
286
+ #: counter-options.php:472
287
+ msgid "Reset the counter"
288
+ msgstr "Atstatyti skaitliuką"
289
+
290
+ #@ cpd
291
+ #: counter-options.php:466
292
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
293
+ msgstr "Skaitiklį galite atkurti tuščia lentele. VISOS su 0! <br /> Padarykite atsarginę kopiją, jei jums reikia dabartinių duomenų!"
294
+
295
+ #@ cpd
296
+ #: counter.php:845
297
+ msgid "no reads at this time"
298
+ msgstr "nėra skaitymų šiuo metu"
299
+
300
+ #@ cpd
301
+ #: counter.php:819
302
+ msgid "days"
303
+ msgstr "dienų"
304
+
305
+ #@ cpd
306
+ #: counter.php:1257
307
+ #, php-format
308
+ msgid "The %s most visited posts in last %s days:"
309
+ msgstr "Paskutinių %s dienų labiausiai %s lankomų žinučių:"
310
+
311
+ #@ default
312
+ #: counter.php:1591
313
+ msgid "Settings"
314
+ msgstr "Nustatymai"
315
+
316
+ #@ cpd
317
+ #: counter.php:635
318
+ #: counter.php:1766
319
+ msgid "Reads per day"
320
+ msgstr "Skaitymų per dieną"
321
+
322
+ #@ cpd
323
+ #: counter-options.php:225
324
+ #: counter.php:528
325
+ #: counter.php:1661
326
+ msgid "Reads"
327
+ msgstr "Skaitymų"
328
+
329
+ #@ cpd
330
+ #: counter.php:2218
331
+ msgid "This post"
332
+ msgstr "Ši žinutė"
333
+
334
+ #@ cpd
335
+ #: counter-options.php:57
336
+ #, php-format
337
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
+ msgstr "Šalys atnaujintos. <b>%s</b> įrašų %s liko be šalies"
339
+
340
+ #@ cpd
341
+ #: counter-options.php:62
342
+ msgid "update next"
343
+ msgstr "Atnaujinti sekantį"
344
+
345
+ #@ cpd
346
+ #: counter-options.php:104
347
+ #, php-format
348
+ msgid "Mass Bots cleaned. %s counts deleted."
349
+ msgstr "Botų lentelė išvalyta. %s išbraukta."
350
+
351
+ #@ cpd
352
+ #: counter-options.php:197
353
+ msgid "until User Level"
354
+ msgstr "iki vartotojo lygmens"
355
+
356
+ #@ cpd
357
+ #: counter-options.php:216
358
+ msgid "Anonymous IP"
359
+ msgstr "Anoniminis IP"
360
+
361
+ #@ cpd
362
+ #: counter-options.php:261
363
+ msgid "Countries"
364
+ msgstr "Šalys"
365
+
366
+ #@ cpd
367
+ #: counter-options.php:262
368
+ msgid "How many countries do you want to see on dashboard page?"
369
+ msgstr "Kiek šalių tu nori matyti puslapyje prietaisų skydelyje?"
370
+
371
+ #@ cpd
372
+ #: counter-options.php:299
373
+ msgid "Start Values"
374
+ msgstr "Pradėti reikšmes"
375
+
376
+ #@ cpd
377
+ #: counter-options.php:303
378
+ msgid "Here you can change the date of first count and add a start count."
379
+ msgstr "Čia galite pakeisti pirmo skaičiavimo datą ir pradėti skaičiavimą."
380
+
381
+ #@ cpd
382
+ #: counter-options.php:307
383
+ msgid "Start date"
384
+ msgstr "Pradėti datą"
385
+
386
+ #@ cpd
387
+ #: counter-options.php:308
388
+ msgid "Your old Counter starts at?"
389
+ msgstr "Jūsų senas skaitliukas prasideda nuo?"
390
+
391
+ #@ cpd
392
+ #: counter-options.php:311
393
+ #: counter-options.php:315
394
+ msgid "Start count"
395
+ msgstr "Pradėti skaičiavimą"
396
+
397
+ #@ cpd
398
+ #: counter-options.php:312
399
+ msgid "Add this value to \"Total visitors\"."
400
+ msgstr "Pridėti šią reikšmę \"Iš viso apsilankė\"."
401
+
402
+ #@ cpd
403
+ #: counter-options.php:340
404
+ msgid "GeoIP - Countries"
405
+ msgstr "GeoIP - Šalys"
406
+
407
+ #@ cpd
408
+ #: counter-options.php:349
409
+ msgid "Update old counter data"
410
+ msgstr "Atnaujinti senus skaitliuko duomenis"
411
+
412
+ #@ cpd
413
+ #: counter-options.php:362
414
+ msgid "Update GeoIP database"
415
+ msgstr "Atnaujinti GeoIP duomenų bazę"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:365
419
+ msgid "Download a new version of GeoIP.dat file."
420
+ msgstr "Atsisiųsti naują GeoIP.dat failo versiją."
421
+
422
+ #@ cpd
423
+ #: counter-options.php:371
424
+ msgid "More informations about GeoIP"
425
+ msgstr "Daugiau informacijos apie GeoIP"
426
+
427
+ #@ cpd
428
+ #: counter-options.php:386
429
+ #: massbots.php:33
430
+ msgid "Mass Bots"
431
+ msgstr "Botai"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:390
435
+ #, php-format
436
+ msgid "Show all IPs with more than %s page views per day"
437
+ msgstr "Rodyti visus IP su daugiau nei %s peržiūrų per parą"
438
+
439
+ #@ cpd
440
+ #: counter-options.php:391
441
+ #: notes.php:76
442
+ #: userperspan.php:43
443
+ msgid "show"
444
+ msgstr "parodyti"
445
+
446
+ #@ cpd
447
+ #: counter-options.php:399
448
+ msgid "IP"
449
+ msgstr "IP"
450
+
451
+ #@ cpd
452
+ #@ default
453
+ #: counter-options.php:400
454
+ #: notes.php:80
455
+ msgid "Date"
456
+ msgstr "Data"
457
+
458
+ #@ cpd
459
+ #: counter-options.php:401
460
+ msgid "Client"
461
+ msgstr "Klientas"
462
+
463
+ #@ cpd
464
+ #: counter-options.php:402
465
+ msgid "Views"
466
+ msgstr "Peržiūrų"
467
+
468
+ #@ cpd
469
+ #: counter-options.php:413
470
+ #: counter-options.php:435
471
+ #, php-format
472
+ msgid "Delete these %s counts"
473
+ msgstr "Pašalinti šiuos %s skaitliukų"
474
+
475
+ #@ cpd
476
+ #: counter-options.php:504
477
+ msgid "Support"
478
+ msgstr "Palaikymas"
479
+
480
+ #@ cpd
481
+ #: counter.php:1716
482
+ #, php-format
483
+ msgid "Time for Count per Day: <code>%s</code>."
484
+ msgstr "Laikas skaičiaus per dieną: <code>%s</code>"
485
+
486
+ #@ cpd
487
+ #: counter.php:1717
488
+ msgid "Bug? Problem? Question? Hint? Praise?"
489
+ msgstr "Klaida? Problema? Klausimas? Patarimas? Pagirimas?"
490
+
491
+ #@ cpd
492
+ #: counter.php:1718
493
+ #, php-format
494
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
495
+ msgstr "Rašyti komentarą <a href=\"%s\">įskiepio puslapyje</a> ."
496
+
497
+ #@ cpd
498
+ #: counter.php:524
499
+ #: counter.php:2219
500
+ msgid "Total reads"
501
+ msgstr "Viso skaityta"
502
+
503
+ #@ cpd
504
+ #: counter.php:525
505
+ #: counter.php:2220
506
+ msgid "Reads today"
507
+ msgstr "Skaityta šiandien"
508
+
509
+ #@ cpd
510
+ #: counter.php:526
511
+ #: counter.php:2221
512
+ msgid "Reads yesterday"
513
+ msgstr "Vakar skaityta"
514
+
515
+ #@ cpd
516
+ #: counter.php:822
517
+ #: counter.php:1376
518
+ #: notes.php:47
519
+ #: notes.php:81
520
+ msgid "Notes"
521
+ msgstr "Pastabos"
522
+
523
+ #@ default
524
+ #: counter.php:1374
525
+ msgid "Show"
526
+ msgstr "Parodyti"
527
+
528
+ #@ cpd
529
+ #: counter.php:1421
530
+ msgid "Other"
531
+ msgstr "Kiti"
532
+
533
+ #@ default
534
+ #: counter.php:1505
535
+ msgid "Edit Post"
536
+ msgstr "Redaguoti žinutę"
537
+
538
+ #@ default
539
+ #: counter.php:1520
540
+ #: massbots.php:50
541
+ #: userperspan.php:63
542
+ msgid "Front page displays"
543
+ msgstr "Pirminio puslapio rodymas"
544
+
545
+ #@ cpd
546
+ #: counter-options.php:266
547
+ #: counter.php:1760
548
+ msgid "Browsers"
549
+ msgstr "Naršyklės"
550
+
551
+ #@ cpd
552
+ #: counter.php:1755
553
+ msgid "Latest Counts"
554
+ msgstr "Paskutinieji skaičiavimai"
555
+
556
+ #@ default
557
+ #: counter.php:1757
558
+ msgid "Plugin"
559
+ msgstr "Įskiepis"
560
+
561
+ #@ cpd
562
+ #: counter.php:1770
563
+ msgid "Reads per Country"
564
+ msgstr "Peržiūrų per šalis"
565
+
566
+ #@ cpd
567
+ #: counter.php:900
568
+ #: counter.php:1856
569
+ msgid "Map"
570
+ msgstr "Žemėlapis"
571
+
572
+ #@ cpd
573
+ #: geoip/geoip.php:108
574
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
575
+ msgstr "Atsiprašome, būtinos funkcijos (zlib) neįdiegtos arba įjungtas php.ini."
576
+
577
+ #@ cpd
578
+ #: geoip/geoip.php:132
579
+ msgid "New GeoIP database installed."
580
+ msgstr "Įdiegta nauja GeoIP duomenų bazė."
581
+
582
+ #@ cpd
583
+ #: geoip/geoip.php:134
584
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
585
+ msgstr "Atsiprašome, įvyko klaida. Bandykite dar kartą arba patikrinkite prieigos teises kataloge \"GeoIP\", turi būti 777."
586
+
587
+ #@ cpd
588
+ #: notes.php:81
589
+ msgid "(1 per day)"
590
+ msgstr "(1 per parą)"
591
+
592
+ #@ default
593
+ #: notes.php:82
594
+ msgid "Action"
595
+ msgstr "Veiksmas"
596
+
597
+ #@ cpd
598
+ #: notes.php:87
599
+ msgid "add"
600
+ msgstr "pridėti"
601
+
602
+ #@ cpd
603
+ #: notes.php:102
604
+ msgid "save"
605
+ msgstr "išsaugoti"
606
+
607
+ #@ cpd
608
+ #: notes.php:103
609
+ msgid "delete"
610
+ msgstr "pašalinti"
611
+
612
+ #@ cpd
613
+ #: notes.php:114
614
+ msgid "edit"
615
+ msgstr "redaguoti"
616
+
617
+ #@ cpd
618
+ #: counter-options.php:220
619
+ msgid "Cache"
620
+ msgstr "Talpykla"
621
+
622
+ #@ cpd
623
+ #: counter-options.php:221
624
+ msgid "I use a cache plugin. Count these visits with ajax."
625
+ msgstr "Aš naudojutalpinamą įskiepį. Skaičiuoti šiuos apsilankymus ajax pagalba."
626
+
627
+ #@ cpd
628
+ #: counter-options.php:267
629
+ msgid "Substring of the user agent, separated by comma"
630
+ msgstr "Vartotojo agento fragmentas, atskirtas kableliais"
631
+
632
+ #@ cpd
633
+ #: counter-options.php:324
634
+ msgid "Debug mode"
635
+ msgstr "Derinimo režimu"
636
+
637
+ #@ cpd
638
+ #: counter-options.php:326
639
+ msgid "Show debug informations at the bottom of all pages."
640
+ msgstr "Rodyti derinimo informacijas visų puslapių apačioje."
641
+
642
+ #@ cpd
643
+ #: counter.php:1771
644
+ msgid "Visitors per Country"
645
+ msgstr "Vartotojai pagal šalis"
646
+
647
+ #@ cpd
648
+ #: userperspan.php:37
649
+ msgid "Start"
650
+ msgstr "Pradžia"
651
+
652
+ #@ cpd
653
+ #: userperspan.php:39
654
+ msgid "End"
655
+ msgstr "Pabaiga"
656
+
657
+ #@ cpd
658
+ #: userperspan.php:41
659
+ msgid "PostID"
660
+ msgstr "ŽinutėsID"
661
+
662
+ #@ cpd
663
+ #: counter-options.php:316
664
+ msgid "Add this value to \"Total reads\"."
665
+ msgstr "Pridėti šią reikšmę, \"Viso skaityta\"."
666
+
667
+ #@ cpd
668
+ #: counter-options.php:352
669
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
670
+ msgstr "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrinti IP adresą prieš GeoIP duomenų bazę. Tai gali užtrukti!"
671
+
672
+ #@ cpd
673
+ #: userperspan.php:49
674
+ msgid "no data found"
675
+ msgstr "Nėra duomenų"
676
+
677
+ #@ cpd
678
+ #: counter-options.php:186
679
+ msgid "Counter"
680
+ msgstr "Skaitliukas"
681
+
682
+ #@ cpd
683
+ #: counter-options.php:224
684
+ msgid "Clients and referrers"
685
+ msgstr "Klientai ir referalai"
686
+
687
+ #@ cpd
688
+ #: counter-options.php:225
689
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
+ msgstr "Išsaugoti ir parodyti klientus bei referalus. <br /> Reikia daug vietos duomenų bazėje, tačiau suteikia jums daugiau išsamios informacijos apie jūsų lankytojus."
691
+
692
+ #@ cpd
693
+ #: counter-options.php:278
694
+ msgid "Local URLs"
695
+ msgstr "Vietiniai URL"
696
+
697
+ #@ cpd
698
+ #: counter-options.php:279
699
+ msgid "Show local referrers too."
700
+ msgstr "Taipat rodyti vietinisu referalus."
701
+
702
+ #@ default
703
+ #: counter-options.php:287
704
+ msgid "Posts"
705
+ msgstr "Žinutės"
706
+
707
+ #@ default
708
+ #: counter-options.php:287
709
+ msgid "Pages"
710
+ msgstr "Puslapiai"
711
+
712
+ #@ cpd
713
+ #: counter.php:527
714
+ #: counter.php:2222
715
+ msgid "Reads last week"
716
+ msgstr "Skaitymų praeitą savaitę"
717
+
718
+ #@ default
719
+ #: counter.php:1514
720
+ msgid "Category"
721
+ msgstr "Kategorija"
722
+
723
+ #@ default
724
+ #: counter.php:1517
725
+ msgid "Tag"
726
+ msgstr "Žyma"
727
+
728
+ #@ default
729
+ #: counter.php:1719
730
+ msgid "License"
731
+ msgstr "Licenzija"
732
+
733
+ #@ cpd
734
+ #: counter.php:1753
735
+ #: counter.php:2223
736
+ msgid "Reads per month"
737
+ msgstr "Skaitymų per mėnesį"
738
+
739
+ #@ cpd
740
+ #: counter.php:1761
741
+ msgid "Referrer"
742
+ msgstr "Referalas"
743
+
744
+ #@ cpd
745
+ #: counter-options.php:256
746
+ msgid "Old Charts"
747
+ msgstr "Seni grafikai"
748
+
749
+ #@ cpd
750
+ #: counter-options.php:257
751
+ msgid "Show old bar charts."
752
+ msgstr "Rodyti senus grafikus stulpeliais"
753
+
754
+ #@ cpd
755
+ #: counter-options.php:270
756
+ msgid "Referrers - Entries"
757
+ msgstr "Referalai - Įrašai"
758
+
759
+ #@ cpd
760
+ #: counter-options.php:271
761
+ msgid "How many referrers do you want to see on dashboard page?"
762
+ msgstr "Kiek referalų jūs norite pamatyti puslapio prietaisų skydelyje?"
763
+
764
+ #@ cpd
765
+ #: counter-options.php:274
766
+ msgid "Referrers - Days"
767
+ msgstr "Referalai - Dienos"
768
+
769
+ #@ cpd
770
+ #: counter.php:1449
771
+ #, php-format
772
+ msgid "The %s referrers in last %s days:"
773
+ msgstr "%s referalų paskutinius %s dienų:"
774
+
775
+ #@ cpd
776
+ #: counter.php:1751
777
+ msgid "Visitors online"
778
+ msgstr "Lankytojų svetainėje"
779
+
780
+ #@ default
781
+ #: counter.php:2242
782
+ msgid "Title"
783
+ msgstr "Pavadinimas"
784
+
locale/cpd-nb_NO.mo ADDED
Binary file
locale/cpd-nb_NO.po ADDED
@@ -0,0 +1,972 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Stein Ivar Johnsen <sijo@dyg.no>\n"
8
+ "Language-Team: Punktlig IKT <oversetter@punktlig-ikt.no>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Norwegian bokmal\n"
14
+ "X-Poedit-Country: Norway\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: f:/wordpress/plugins/count-per-day\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Innstillingene er oppdatert"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:60
28
+ #, php-format
29
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
+ msgstr "Land oppdatert. <strong>%s</strong> poster i %s har stadig ingen angivelse av land."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:65
34
+ msgid "update next"
35
+ msgstr "oppdater neste"
36
+
37
+ #@ cpd
38
+ #: counter-options.php:102
39
+ #, php-format
40
+ msgid "Mass Bots cleaned. %s counts deleted."
41
+ msgstr "Massebotter renset. %s rader slettet."
42
+
43
+ #@ cpd
44
+ #: counter-options.php:112
45
+ #, php-format
46
+ msgid "Database cleaned. %s rows deleted."
47
+ msgstr "Databasen renset. %s rader slettet."
48
+
49
+ #@ cpd
50
+ #: counter-options.php:122
51
+ msgid "Counter reseted."
52
+ msgstr "Teller nullstilt."
53
+
54
+ #@ cpd
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
+ msgid "UNINSTALL Count per Day"
58
+ msgstr "AVINSTALLER Count per Day"
59
+
60
+ #@ cpd
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
+ #, php-format
65
+ msgid "Table %s deleted"
66
+ msgstr "Tabellen %s ble slettet"
67
+
68
+ #@ cpd
69
+ #: counter-options.php:135
70
+ msgid "Options deleted"
71
+ msgstr "Innstillinger slettet"
72
+
73
+ #@ cpd
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
+ msgid "Uninstall"
77
+ msgstr "Avinstaller"
78
+
79
+ #@ cpd
80
+ #: counter-options.php:317
81
+ msgid "Click here"
82
+ msgstr "Klikk her"
83
+
84
+ #@ cpd
85
+ #: counter-options.php:317
86
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
+ msgstr "for å fullføre avinstalleringen og deaktivere \"Count per Day\"."
88
+
89
+ #@ cpd
90
+ #: counter-options.php:355
91
+ msgid "Online time"
92
+ msgstr "Tid online"
93
+
94
+ #@ cpd
95
+ #: counter-options.php:356
96
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
97
+ msgstr "Sekunder for online-teller. Brukes om \"Besøkende online\" i kontrollpanelet."
98
+
99
+ #@ cpd
100
+ #: counter-options.php:359
101
+ msgid "Logged on Users"
102
+ msgstr "Innloggede brukere"
103
+
104
+ #@ cpd
105
+ #: counter-options.php:361
106
+ msgid "count too"
107
+ msgstr "tell også"
108
+
109
+ #@ cpd
110
+ #: counter-options.php:362
111
+ msgid "until User Level"
112
+ msgstr "til og med brukernivå"
113
+
114
+ #@ cpd
115
+ #: counter-options.php:373
116
+ msgid "Auto counter"
117
+ msgstr "Auto-teller"
118
+
119
+ #@ cpd
120
+ #: counter-options.php:374
121
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
122
+ msgstr "Teller automatisk enkelt-innlegg og -sider; ingen endringer i maler er nødvendig."
123
+
124
+ #@ cpd
125
+ #: counter-options.php:377
126
+ msgid "Bots to ignore"
127
+ msgstr "Ignorer følgende botter"
128
+
129
+ #@ cpd
130
+ #: counter-options.php:381
131
+ msgid "Anonymous IP"
132
+ msgstr "Anonym IP"
133
+
134
+ #@ cpd
135
+ #: counter-options.php:385
136
+ msgid "Cache"
137
+ msgstr "Buffer"
138
+
139
+ #@ cpd
140
+ #: counter-options.php:386
141
+ msgid "I use a cache plugin. Count these visits with ajax."
142
+ msgstr "Jeg bruker et buffer-innstikk. Tell disse besøkene med Ajax."
143
+
144
+ #@ cpd
145
+ #: counter-options.php:561
146
+ msgid "Update options"
147
+ msgstr "Oppdater innstillinger"
148
+
149
+ #@ default
150
+ #: counter-options.php:403
151
+ msgid "Dashboard"
152
+ msgstr "Kontrollpanel"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:727
156
+ #: counter-options.php:438
157
+ msgid "Visitors per post"
158
+ msgstr "Besøkende pr innlegg"
159
+
160
+ #@ cpd
161
+ #: counter-options.php:439
162
+ #: counter-options.php:443
163
+ msgid "How many posts do you want to see on dashboard page?"
164
+ msgstr "Hvor mange innlegg vil du se på kontrollpanelet?"
165
+
166
+ #@ cpd
167
+ #: counter-options.php:442
168
+ msgid "Latest Counts - Posts"
169
+ msgstr "Sist leste - innlegg"
170
+
171
+ #@ cpd
172
+ #: counter-options.php:446
173
+ msgid "Latest Counts - Days"
174
+ msgstr "Sist leste - dager"
175
+
176
+ #@ cpd
177
+ #: counter-options.php:447
178
+ #: counter-options.php:451
179
+ #: counter-options.php:473
180
+ msgid "How many days do you want look back?"
181
+ msgstr "Hvor mange dager vil du se tilbake?"
182
+
183
+ #@ cpd
184
+ #: counter-options.php:450
185
+ msgid "Chart - Days"
186
+ msgstr "Diagram - dager"
187
+
188
+ #@ cpd
189
+ #: counter-options.php:454
190
+ msgid "Chart - Height"
191
+ msgstr "Diagram - høyde"
192
+
193
+ #@ cpd
194
+ #: counter-options.php:455
195
+ msgid "Height of the biggest bar"
196
+ msgstr "Høyde på den største søylen"
197
+
198
+ #@ cpd
199
+ #: counter-options.php:459
200
+ msgid "Countries"
201
+ msgstr "Land"
202
+
203
+ #@ cpd
204
+ #: counter-options.php:460
205
+ msgid "How many countries do you want to see on dashboard page?"
206
+ msgstr "Hvor mange land vil du se på innstikkets side i kontrollpanelet?"
207
+
208
+ #@ cpd
209
+ #: counter-core.php:733
210
+ #: counter-options.php:464
211
+ msgid "Browsers"
212
+ msgstr "Nettlesere"
213
+
214
+ #@ cpd
215
+ #: counter-options.php:465
216
+ msgid "Substring of the user agent, separated by comma"
217
+ msgstr "Delstrenger som identifiserer en nettleser, kommaseparert"
218
+
219
+ #@ cpd
220
+ #: counter-options.php:488
221
+ msgid "Show in lists"
222
+ msgstr "Vis som liste"
223
+
224
+ #@ cpd
225
+ #: counter-options.php:489
226
+ msgid "Show \"Reads per Post\" in a new column in post management views."
227
+ msgstr "Vis \"Lest pr innlegg\" i en ny kolonne siden for innleggsadministrasjon."
228
+
229
+ #@ cpd
230
+ #: counter-options.php:497
231
+ msgid "Start Values"
232
+ msgstr "Startverdier"
233
+
234
+ #@ cpd
235
+ #: counter-options.php:501
236
+ msgid "Here you can change the date of first count and add a start count."
237
+ msgstr "Her kan du endre datoen på første treff og tilføye et tall som telleren skal starte på."
238
+
239
+ #@ cpd
240
+ #: counter-options.php:505
241
+ msgid "Start date"
242
+ msgstr "Startdato"
243
+
244
+ #@ cpd
245
+ #: counter-options.php:506
246
+ msgid "Your old Counter starts at?"
247
+ msgstr "Din gamle teller starter når?"
248
+
249
+ #@ cpd
250
+ #: counter-options.php:509
251
+ #: counter-options.php:513
252
+ msgid "Start count"
253
+ msgstr "Start på antall treff"
254
+
255
+ #@ cpd
256
+ #: counter-options.php:510
257
+ msgid "Add this value to \"Total visitors\"."
258
+ msgstr "Tilføy denne verdien til \"Besøkende i alt\"."
259
+
260
+ #@ cpd
261
+ #: counter-options.php:514
262
+ msgid "Add this value to \"Total reads\"."
263
+ msgstr "Tilføy denne verdi til \"Lest i alt\"."
264
+
265
+ #@ cpd
266
+ #: counter-options.php:554
267
+ msgid "Debug mode"
268
+ msgstr "Feilsøkingsmodus"
269
+
270
+ #@ cpd
271
+ #: counter-options.php:556
272
+ msgid "Show debug informations at the bottom of all pages."
273
+ msgstr "Vis feilsøkingsinformasjon nederst på alle sider."
274
+
275
+ #@ cpd
276
+ #: counter-options.php:727
277
+ msgid "GeoIP - Countries"
278
+ msgstr "GeoIP - Land"
279
+
280
+ #@ cpd
281
+ #: counter-options.php:736
282
+ msgid "Update old counter data"
283
+ msgstr "Oppdater gamle tellerdata"
284
+
285
+ #@ cpd
286
+ #: counter-options.php:748
287
+ msgid "Update GeoIP database"
288
+ msgstr "Oppdater GeoIP-database"
289
+
290
+ #@ cpd
291
+ #: counter-options.php:743
292
+ msgid "Download a new version of GeoIP.dat file."
293
+ msgstr "Last ned en ny versjon av GeoIP.dat-filen."
294
+
295
+ #@ cpd
296
+ #: counter-options.php:753
297
+ msgid "More informations about GeoIP"
298
+ msgstr "Flere opplysninger om GeoIP"
299
+
300
+ #@ cpd
301
+ #: counter-options.php:580
302
+ #: massbots.php:35
303
+ msgid "Mass Bots"
304
+ msgstr "Massebotter"
305
+
306
+ #@ cpd
307
+ #: counter-options.php:584
308
+ #, php-format
309
+ msgid "Show all IPs with more than %s page views per day"
310
+ msgstr "Vis alle IP-adresser med mer enn %s sidevisninger pr dag"
311
+
312
+ #@ cpd
313
+ #: counter-options.php:585
314
+ #: notes.php:71
315
+ #: userperspan.php:44
316
+ msgid "show"
317
+ msgstr "vis"
318
+
319
+ #@ cpd
320
+ #: counter-options.php:593
321
+ msgid "IP"
322
+ msgstr "IP"
323
+
324
+ #@ cpd
325
+ #@ default
326
+ #: counter-options.php:594
327
+ #: notes.php:75
328
+ msgid "Date"
329
+ msgstr "Dato"
330
+
331
+ #@ cpd
332
+ #: counter-options.php:595
333
+ msgid "Client"
334
+ msgstr "Klient"
335
+
336
+ #@ cpd
337
+ #: counter-options.php:596
338
+ msgid "Views"
339
+ msgstr "Visninger"
340
+
341
+ #@ cpd
342
+ #: counter-options.php:611
343
+ #: counter-options.php:627
344
+ #, php-format
345
+ msgid "Delete these %s counts"
346
+ msgstr "Slett disse %s treffene"
347
+
348
+ #@ cpd
349
+ #: counter-options.php:656
350
+ #: counter-options.php:665
351
+ msgid "Clean the database"
352
+ msgstr "Rens databasen"
353
+
354
+ #@ cpd
355
+ #: counter-options.php:659
356
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
357
+ msgstr "Du kan rense tellertabellen for \"spam-data\".<br />Når du tilføyer nye botter ovenfor, forblir de gamle \"spam-data\" i databasen.<br />Her kan du kjøre bot-filteret igjen og slette bot-besøkene."
358
+
359
+ #@ cpd
360
+ #: counter-options.php:777
361
+ #: counter-options.php:787
362
+ msgid "Reset the counter"
363
+ msgstr "Nullstill telleren"
364
+
365
+ #@ cpd
366
+ #: counter-options.php:780
367
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
368
+ msgstr "Du kan nullstille telleren ved å tømme tabellen. Alt blir nullstilt.<br />Ta sikkerhetskopi hvis du har bruk for nåværende data."
369
+
370
+ #@ cpd
371
+ #: counter-options.php:799
372
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
373
+ msgstr "Hvis \"Count per Day\" bare deaktiveres, blir tabellene i databasen bevart."
374
+
375
+ #@ cpd
376
+ #: counter-options.php:800
377
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
378
+ msgstr "Her kan du slette tabellene og deaktivere \"Count per Day\"."
379
+
380
+ #@ cpd
381
+ #: counter-options.php:803
382
+ msgid "WARNING"
383
+ msgstr "ADVARSEL"
384
+
385
+ #@ cpd
386
+ #: counter-options.php:804
387
+ msgid "These tables (with ALL counter data) will be deleted."
388
+ msgstr "Disse tabellene (med ALLE teller-data) vil bli slettet."
389
+
390
+ #@ cpd
391
+ #: counter-options.php:806
392
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
393
+ msgstr "Hvis \"Count per Day\" re-installeres, vil telleren starte på 0."
394
+
395
+ #@ cpd
396
+ #: counter-options.php:786
397
+ #: counter-options.php:809
398
+ msgid "Yes"
399
+ msgstr "Ja"
400
+
401
+ #@ cpd
402
+ #: counter-options.php:810
403
+ msgid "You are sure to disable Count per Day and delete all data?"
404
+ msgstr "Er du sikker på at du vil deaktivere \"Count per Day\" og slette alle data?"
405
+
406
+ #@ cpd
407
+ #: counter-options.php:714
408
+ msgid "Support"
409
+ msgstr "Støtte"
410
+
411
+ #@ cpd
412
+ #: counter-core.php:689
413
+ #, php-format
414
+ msgid "Time for Count per Day: <code>%s</code>."
415
+ msgstr "Tidspunkt for Count per Day: <code>%s</code>."
416
+
417
+ #@ cpd
418
+ #: counter-core.php:690
419
+ msgid "Bug? Problem? Question? Hint? Praise?"
420
+ msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
421
+
422
+ #@ cpd
423
+ #: counter-core.php:691
424
+ #, php-format
425
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
426
+ msgstr "Skriv en kommentar på <a href=\"%s\">innstikksiden</a>."
427
+
428
+ #@ cpd
429
+ #: counter.php:155
430
+ #: counter.php:1197
431
+ msgid "Total reads"
432
+ msgstr "Visninger i alt"
433
+
434
+ #@ cpd
435
+ #: counter.php:156
436
+ #: counter.php:1198
437
+ msgid "Reads today"
438
+ msgstr "Visninger i dag"
439
+
440
+ #@ cpd
441
+ #: counter.php:157
442
+ #: counter.php:1199
443
+ msgid "Reads yesterday"
444
+ msgstr "Visninger i går"
445
+
446
+ #@ cpd
447
+ #: counter-core.php:723
448
+ #: counter.php:160
449
+ #: counter.php:1010
450
+ #: counter.php:1202
451
+ msgid "Total visitors"
452
+ msgstr "Antall besøkende i alt"
453
+
454
+ #@ cpd
455
+ #: counter.php:161
456
+ #: counter.php:1208
457
+ msgid "Visitors currently online"
458
+ msgstr "besøkende online akkurat nå"
459
+
460
+ #@ cpd
461
+ #: counter.php:162
462
+ #: counter.php:1203
463
+ msgid "Visitors today"
464
+ msgstr "besøkende i dag"
465
+
466
+ #@ cpd
467
+ #: counter.php:163
468
+ #: counter.php:1204
469
+ msgid "Visitors yesterday"
470
+ msgstr "besøkende i går"
471
+
472
+ #@ cpd
473
+ #: counter.php:164
474
+ #: counter.php:1205
475
+ msgid "Visitors last week"
476
+ msgstr "besøkende siste uke"
477
+
478
+ #@ cpd
479
+ #: counter-core.php:729
480
+ #: counter.php:166
481
+ #: counter.php:263
482
+ #: counter.php:1012
483
+ #: counter.php:1207
484
+ #: userperspan.php:34
485
+ msgid "Visitors per day"
486
+ msgstr "besøkende pr dag"
487
+
488
+ #@ cpd
489
+ #: counter.php:167
490
+ #: counter.php:825
491
+ #: counter.php:1209
492
+ msgid "Counter starts on"
493
+ msgstr "Teller starter på"
494
+
495
+ #@ cpd
496
+ #: counter.php:788
497
+ #: notes.php:42
498
+ #: notes.php:76
499
+ msgid "Notes"
500
+ msgstr "Merknader"
501
+
502
+ #@ cpd
503
+ #: counter.php:672
504
+ #, php-format
505
+ msgid "The %s most visited posts in last %s days:"
506
+ msgstr "De %s mest viste innleggene de siste %s dagene:"
507
+
508
+ #@ default
509
+ #: counter.php:786
510
+ msgid "Show"
511
+ msgstr "Vis"
512
+
513
+ #@ cpd
514
+ #: counter.php:821
515
+ msgid "Other"
516
+ msgstr "Andre"
517
+
518
+ #@ default
519
+ #: counter.php:976
520
+ msgid "Edit Post"
521
+ msgstr "Rediger innlegg"
522
+
523
+ #@ default
524
+ #: counter.php:991
525
+ #: massbots.php:52
526
+ #: userperspan.php:63
527
+ msgid "Front page displays"
528
+ msgstr "Visninger av forsiden"
529
+
530
+ #@ default
531
+ #: counter-core.php:575
532
+ #: counter-options.php:341
533
+ #: counter-options.php:565
534
+ msgid "Settings"
535
+ msgstr "Innstillinger"
536
+
537
+ # tjekkes
538
+ #@ cpd
539
+ #: counter-core.php:639
540
+ #: counter-options.php:392
541
+ #: counter.php:159
542
+ #: counter.php:875
543
+ msgid "Reads"
544
+ msgstr "Visninger"
545
+
546
+ #@ cpd
547
+ #: counter.php:1196
548
+ msgid "This post"
549
+ msgstr "Dette innlegget"
550
+
551
+ #@ cpd
552
+ #: counter.php:262
553
+ msgid "Reads per day"
554
+ msgstr "Visninger pr dag"
555
+
556
+ #@ cpd
557
+ #: counter-core.php:725
558
+ #: counter.php:1206
559
+ msgid "Visitors per month"
560
+ msgstr "besøkende pr måned"
561
+
562
+ #@ cpd
563
+ #: counter-core.php:728
564
+ msgid "Latest Counts"
565
+ msgstr "Siste treff"
566
+
567
+ #@ default
568
+ #: counter-core.php:730
569
+ msgid "Plugin"
570
+ msgstr "Innstikk"
571
+
572
+ #@ cpd
573
+ #: counter-core.php:738
574
+ msgid "Reads per Country"
575
+ msgstr "Visninger pr land"
576
+
577
+ #@ cpd
578
+ #: counter-core.php:739
579
+ msgid "Visitors per Country"
580
+ msgstr "besøkende pr land"
581
+
582
+ #@ cpd
583
+ #: counter-core.php:754
584
+ #: counter.php:1124
585
+ msgid "Statistics"
586
+ msgstr "Statistikk"
587
+
588
+ #@ cpd
589
+ #: counter.php:353
590
+ #: counter.php:1041
591
+ msgid "Map"
592
+ msgstr "Kart"
593
+
594
+ #@ default
595
+ #: notes.php:77
596
+ msgid "Action"
597
+ msgstr "Handling"
598
+
599
+ #@ cpd
600
+ #: notes.php:82
601
+ msgid "add"
602
+ msgstr "legg til"
603
+
604
+ #@ cpd
605
+ #: notes.php:98
606
+ msgid "save"
607
+ msgstr "lagre"
608
+
609
+ #@ cpd
610
+ #: notes.php:99
611
+ msgid "delete"
612
+ msgstr "slett"
613
+
614
+ #@ cpd
615
+ #: notes.php:110
616
+ msgid "edit"
617
+ msgstr "rediger"
618
+
619
+ #@ cpd
620
+ #: userperspan.php:38
621
+ msgid "Start"
622
+ msgstr "Start"
623
+
624
+ #@ cpd
625
+ #: userperspan.php:40
626
+ msgid "End"
627
+ msgstr "Slutt"
628
+
629
+ #@ cpd
630
+ #: userperspan.php:42
631
+ msgid "PostID"
632
+ msgstr "Innleggs-ID"
633
+
634
+ #@ cpd
635
+ #: userperspan.php:50
636
+ msgid "no data found"
637
+ msgstr "ingen data funnet"
638
+
639
+ #@ cpd
640
+ #: geoip/geoip.php:93
641
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
642
+ msgstr "Beklager, nødvendige funksjoner (zlib) er ikke installert eller ikke aktivert i php.ini."
643
+
644
+ #@ cpd
645
+ #: geoip/geoip.php:117
646
+ msgid "New GeoIP database installed."
647
+ msgstr "Ny GeoIP-database installert."
648
+
649
+ #@ cpd
650
+ #: geoip/geoip.php:119
651
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
652
+ msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
653
+
654
+ #@ cpd
655
+ #: counter-options.php:730
656
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
+ msgstr "Du kan få land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
658
+
659
+ #@ cpd
660
+ #: counter-options.php:351
661
+ msgid "Counter"
662
+ msgstr "Teller"
663
+
664
+ #@ cpd
665
+ #: counter-options.php:389
666
+ msgid "Clients and referrers"
667
+ msgstr "Klienter og henvisere"
668
+
669
+ #@ cpd
670
+ #: counter-options.php:392
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
673
+
674
+ #@ cpd
675
+ #: counter-options.php:476
676
+ msgid "Local URLs"
677
+ msgstr "Lokale URL-er"
678
+
679
+ #@ cpd
680
+ #: counter-options.php:477
681
+ msgid "Show local referrers too."
682
+ msgstr "Vis også lokale henvisere."
683
+
684
+ #@ default
685
+ #: counter-options.php:485
686
+ msgid "Posts"
687
+ msgstr "Innlegg"
688
+
689
+ #@ default
690
+ #: counter-options.php:485
691
+ msgid "Pages"
692
+ msgstr "Sider"
693
+
694
+ #@ cpd
695
+ #: counter.php:158
696
+ #: counter.php:1200
697
+ msgid "Reads last week"
698
+ msgstr "Visninger siste uke"
699
+
700
+ #@ default
701
+ #: counter.php:985
702
+ msgid "Category"
703
+ msgstr "Kategori"
704
+
705
+ #@ default
706
+ #: counter.php:988
707
+ msgid "Tag"
708
+ msgstr "Stikkord"
709
+
710
+ #@ default
711
+ #: counter-core.php:692
712
+ msgid "License"
713
+ msgstr "Lisens"
714
+
715
+ #@ cpd
716
+ #: counter-core.php:726
717
+ #: counter.php:1201
718
+ msgid "Reads per month"
719
+ msgstr "Visninger pr måned"
720
+
721
+ #@ cpd
722
+ #: counter-core.php:734
723
+ msgid "Referrer"
724
+ msgstr "Henviser"
725
+
726
+ #@ default
727
+ #: counter.php:1220
728
+ msgid "Title"
729
+ msgstr "Tittel"
730
+
731
+ #@ cpd
732
+ #: counter-options.php:468
733
+ msgid "Referrers - Entries"
734
+ msgstr "Henvisere - Oppføringer"
735
+
736
+ #@ cpd
737
+ #: counter-options.php:469
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
+ msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
740
+
741
+ #@ cpd
742
+ #: counter-options.php:472
743
+ msgid "Referrers - Days"
744
+ msgstr "Henvisere - Dager"
745
+
746
+ #@ cpd
747
+ #: counter.php:845
748
+ #, php-format
749
+ msgid "The %s referrers in last %s days:"
750
+ msgstr "De %s henviserne de siste %s dager:"
751
+
752
+ #@ cpd
753
+ #: counter-core.php:724
754
+ msgid "Visitors online"
755
+ msgstr "Gjester online"
756
+
757
+ #@ cpd
758
+ #: counter-core.php:186
759
+ #, php-format
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr "\"Count per Day\" oppdatert til versjon %s."
762
+
763
+ #@ cpd
764
+ #: counter-core.php:917
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
767
+
768
+ #@ cpd
769
+ #: counter-core.php:940
770
+ #, php-format
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr "Sikkerhetskopiering av %s oppføringer i gang. Hvert punkt oppfyller %s oppføringer."
773
+
774
+ #@ cpd
775
+ #: counter-core.php:1027
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr "Din wp-content katalog er ikke skrivbar. Men du kan kopiere innholdet i denne boksen til en ren tekstfil."
778
+
779
+ #@ cpd
780
+ #: counter-core.php:1033
781
+ #, php-format
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
784
+
785
+ #@ cpd
786
+ #: counter-core.php:1035
787
+ #, php-format
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
790
+
791
+ #@ cpd
792
+ #: counter-options.php:170
793
+ msgid "Collection in progress..."
794
+ msgstr "Innsamling pågår ..:"
795
+
796
+ #@ cpd
797
+ #: counter-options.php:240
798
+ msgid "Get Visitors per Post..."
799
+ msgstr "Hent besøkende per innlegg ..."
800
+
801
+ #@ cpd
802
+ #: counter-options.php:261
803
+ msgid "Delete old data..."
804
+ msgstr "Slett gammel data..."
805
+
806
+ #@ cpd
807
+ #: counter-options.php:285
808
+ #, php-format
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s &gt; størrelse etter = %s)."
811
+
812
+ #@ cpd
813
+ #: counter-options.php:294
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr "Installasjon av \"Count per day\" sjekket"
816
+
817
+ #@ default
818
+ #: counter-options.php:342
819
+ #: counter-options.php:566
820
+ msgid "Tools"
821
+ msgstr "Verktøy"
822
+
823
+ #@ cpd
824
+ #: counter-options.php:394
825
+ msgid "Save URL only, no query string."
826
+ msgstr "Lagre kun URL, ingen søkestreng."
827
+
828
+ #@ cpd
829
+ #: counter-options.php:419
830
+ msgid "Who can see it"
831
+ msgstr "Hvem kan se det"
832
+
833
+ #@ cpd
834
+ #: counter-options.php:428
835
+ msgid "custom"
836
+ msgstr "tilpasset"
837
+
838
+ #@ cpd
839
+ #: counter-options.php:430
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr "og høyere får lov til å se statistikk side."
842
+
843
+ #@ cpd
844
+ #: counter-options.php:432
845
+ #, php-format
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr "Sett %s evne %s en bruker trenger:"
848
+
849
+ #@ cpd
850
+ #: counter-options.php:522
851
+ msgid "Stylesheet"
852
+ msgstr "Stilark"
853
+
854
+ #@ cpd
855
+ #: counter-options.php:525
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr "INGEN stilark i Frontend"
858
+
859
+ #@ cpd
860
+ #: counter-options.php:526
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
863
+
864
+ #@ cpd
865
+ #: counter-options.php:534
866
+ #: counter-options.php:639
867
+ msgid "Backup"
868
+ msgstr "Sikkerhetskopi"
869
+
870
+ #@ cpd
871
+ #: counter-options.php:537
872
+ msgid "Entries per pass"
873
+ msgstr "Oppføringer per hendelse"
874
+
875
+ #@ cpd
876
+ #: counter-options.php:540
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
879
+
880
+ #@ cpd
881
+ #: counter-options.php:545
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr "Hvis ditt PHP minne grense er mindre enn 50 MB, og du får en hvit side eller feilmeldinger prøv en mindre verdi."
884
+
885
+ #@ cpd
886
+ #: counter-options.php:643
887
+ #, php-format
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
890
+
891
+ #@ cpd
892
+ #: counter-options.php:647
893
+ msgid "Backup the database"
894
+ msgstr "Sikkerhetskopier databasen"
895
+
896
+ #@ cpd
897
+ #: counter-options.php:674
898
+ #: counter-options.php:706
899
+ msgid "Collect old data"
900
+ msgstr "Samle inn gamle data"
901
+
902
+ #@ cpd
903
+ #: counter-options.php:679
904
+ #, php-format
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr "Nåværende størrelse på teller tabellen %s er %s."
907
+
908
+ #@ cpd
909
+ #: counter-options.php:681
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr "Du kan samle gamle data og rydde opp teller tabellen. <br/> Leser og besøkende vil bli lagret per måned, per land og per post. <br/> Kunder og henvisere slettes."
912
+
913
+ #@ cpd
914
+ #: counter-options.php:686
915
+ #, php-format
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr "Foreløpig din innsamling inneholder data inntil %s."
918
+
919
+ #@ cpd
920
+ #: counter-options.php:690
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr "Normalt vil nye data bli lagt til i samlingen."
923
+
924
+ #@ cpd
925
+ #: counter-options.php:696
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
928
+
929
+ #@ cpd
930
+ #: counter-options.php:697
931
+ #, php-format
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr "Alle innsamlede data inntil %s slettes."
934
+
935
+ #@ cpd
936
+ #: counter-options.php:702
937
+ #, php-format
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
940
+
941
+ #@ cpd
942
+ #: counter-options.php:761
943
+ msgid "ReActivation"
944
+ msgstr "ReAktivering"
945
+
946
+ #@ cpd
947
+ #: counter-options.php:764
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
950
+
951
+ #@ cpd
952
+ #: counter-options.php:769
953
+ msgid "ReActivate the plugin"
954
+ msgstr "ReAktiver innstikket"
955
+
956
+ #@ cpd
957
+ #: counter.php:165
958
+ #: counter.php:899
959
+ msgid "Visitors"
960
+ msgstr "Besøkende"
961
+
962
+ #@ cpd
963
+ #: counter.php:168
964
+ #: counter.php:169
965
+ msgid "Most visited day"
966
+ msgstr "Mest besøkt dag"
967
+
968
+ #@ cpd
969
+ #: counter.php:1239
970
+ msgid "drag and drop to sort"
971
+ msgstr "dra og slipp for å sortere"
972
+
locale/cpd-nl_NL.mo CHANGED
Binary file
locale/cpd-nl_NL.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count per Day v2.16\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Rene <info@wpwebshop.com>\n"
8
- "Language-Team: WPwebshop.com <info@wppg.me>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -19,766 +19,953 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
- #: counter-options.php:46
23
  msgid "Options updated"
24
  msgstr "Instellingen bijgewerkt"
25
 
26
  #@ cpd
27
- #: counter-options.php:111
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Database schoongemaakt. %s rijen verwijderd."
31
 
32
  #@ cpd
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DEÏNSTALLEREN Count per Day"
37
 
38
  #@ cpd
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "eTabel %s verwijderd"
45
 
46
  #@ cpd
47
- #: counter-options.php:132
48
  msgid "Options deleted"
49
  msgstr "Opties verwijderd"
50
 
51
  #@ cpd
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
  msgid "Uninstall"
55
  msgstr "Deinstallatie"
56
 
57
  #@ cpd
58
- #: counter-options.php:157
59
  msgid "Click here"
60
  msgstr "Klik hier"
61
 
62
  #@ cpd
63
- #: counter-options.php:157
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "om de deinstallatie te beeindigen en \"Count per Day\" te deactiveren."
66
 
67
  #@ cpd
68
- #: counter-options.php:179
69
- msgid "Options"
70
- msgstr "Opties"
71
-
72
- #@ cpd
73
- #: counter-options.php:190
74
  msgid "Online time"
75
  msgstr "Tijd online"
76
 
77
  #@ cpd
78
- #: counter-options.php:191
79
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
  msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
81
 
82
  #@ cpd
83
- #: counter-options.php:194
84
  msgid "Logged on Users"
85
  msgstr "Aangemelde Gebruikers"
86
 
87
  #@ cpd
88
- #: counter-options.php:196
89
  msgid "count too"
90
  msgstr "ook tellen"
91
 
92
  #@ cpd
93
- #: counter-options.php:208
94
  msgid "Auto counter"
95
  msgstr "Automatisch tellen"
96
 
97
  #@ cpd
98
- #: counter-options.php:209
99
  msgid "Counts automatically single-posts and pages, no changes on template needed."
100
  msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
101
 
102
  #@ cpd
103
- #: counter-options.php:212
104
  msgid "Bots to ignore"
105
  msgstr "Bots te negeren"
106
 
107
  #@ cpd
108
- #: counter-options.php:331
109
  msgid "Update options"
110
  msgstr "Aktualiseren opties"
111
 
112
  #@ cpd
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
  msgid "Clean the database"
116
  msgstr "Database schoonmaken"
117
 
118
  #@ cpd
119
- #: counter-options.php:448
120
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
  msgstr "Je kan de teller tabel schoonmaken door de \"spam data\" te verwijderen.<br />Als je nieuwe bots toevoegt bovenop de oude blijft de \"spam data\" in de database.<br />Hier kun je het bot filter opnieuw starten en bezoeken van bots verwijderen."
122
 
123
  #@ cpd
124
- #: counter-options.php:484
125
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
  msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
127
 
128
  #@ cpd
129
- #: counter-options.php:485
130
  msgid "Here you can delete the tables and disable \"Count per Day\"."
131
  msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
132
 
133
  #@ cpd
134
- #: counter-options.php:488
135
  msgid "WARNING"
136
  msgstr "WAARSCHUWING"
137
 
138
  #@ cpd
139
- #: counter-options.php:489
140
  msgid "These tables (with ALL counter data) will be deleted."
141
  msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
142
 
143
  #@ cpd
144
- #: counter-options.php:491
145
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
  msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
147
 
148
  #@ cpd
149
- #: counter-options.php:495
 
150
  msgid "Yes"
151
  msgstr "Ja"
152
 
153
  #@ cpd
154
- #: counter-options.php:496
155
  msgid "You are sure to disable Count per Day and delete all data?"
156
  msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
157
 
158
  #@ cpd
159
- #: counter.php:1786
160
- #: counter.php:2147
161
  msgid "Statistics"
162
  msgstr "Statistieken"
163
 
164
  #@ cpd
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
  msgid "Total visitors"
171
  msgstr "Totaal aantal bezoekers"
172
 
173
  #@ cpd
174
- #: counter.php:530
175
- #: counter.php:2230
176
  msgid "Visitors currently online"
177
  msgstr "Bezoekers op dit moment online"
178
 
179
  #@ cpd
180
- #: counter.php:531
181
- #: counter.php:2225
182
  msgid "Visitors today"
183
  msgstr "Bezoekers vandaag"
184
 
185
  #@ cpd
186
- #: counter.php:532
187
- #: counter.php:2226
188
  msgid "Visitors yesterday"
189
  msgstr "Bezoekers gisteren"
190
 
191
  #@ cpd
192
- #: counter.php:533
193
- #: counter.php:2227
194
  msgid "Visitors last week"
195
  msgstr "Bezoekers vorige week"
196
 
197
  #@ cpd
198
- #: counter.php:536
199
- #: counter.php:2231
 
200
  msgid "Counter starts on"
201
  msgstr "Teller start bij"
202
 
203
  #@ cpd
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
  msgid "Visitors per day"
212
  msgstr "Bezoekers per dag"
213
 
214
  #@ cpd
215
- #: counter.php:1752
216
- #: counter.php:2228
217
  msgid "Visitors per month"
218
  msgstr "Bezoekers per maand"
219
 
220
  #@ cpd
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
  msgid "Visitors per post"
224
  msgstr "Bezoekers per bericht"
225
 
226
  #@ cpd
227
- #: counter-options.php:117
228
  msgid "Counter reseted."
229
  msgstr "Teller gereset"
230
 
231
  #@ cpd
232
- #: counter-options.php:237
233
- #: counter-options.php:241
234
  msgid "How many posts do you want to see on dashboard page?"
235
  msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
236
 
237
  #@ cpd
238
- #: counter-options.php:240
239
  msgid "Latest Counts - Posts"
240
  msgstr "Laatste Tellingen - Berichten"
241
 
242
  #@ cpd
243
- #: counter-options.php:244
244
  msgid "Latest Counts - Days"
245
  msgstr "Laatste Tellingen - Dagen"
246
 
247
  #@ cpd
248
- #: counter-options.php:245
249
- #: counter-options.php:249
250
- #: counter-options.php:275
251
  msgid "How many days do you want look back?"
252
  msgstr "Hoeveel dagen wil je terugkijken?"
253
 
254
  #@ cpd
255
- #: counter-options.php:290
256
  msgid "Show in lists"
257
  msgstr "Laat in lijsten zien"
258
 
259
  #@ cpd
260
- #: counter-options.php:291
261
  msgid "Show \"Reads per Post\" in a new column in post management views."
262
- msgstr "Toon \"Leest per post\" in een nieuwe kolom in bericht impressies management."
263
 
264
  #@ cpd
265
- #: counter-options.php:463
266
- #: counter-options.php:472
267
  msgid "Reset the counter"
268
  msgstr "Reset de teller"
269
 
270
  #@ cpd
271
- #: counter-options.php:466
272
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
273
  msgstr "Je kan de teller resetten door de tabel leeg te maken. ALLES OP 0!<br/>Maak een backup als je de huidige data nodig hebt!"
274
 
275
  #@ cpd
276
- #: counter.php:1257
277
  #, php-format
278
  msgid "The %s most visited posts in last %s days:"
279
  msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
280
 
281
  #@ default
282
- #: counter.php:1591
 
 
283
  msgid "Settings"
284
  msgstr "Instellingen"
285
 
286
  #@ cpd
287
- #: counter-options.php:225
288
- #: counter.php:528
289
- #: counter.php:1661
 
290
  msgid "Reads"
291
- msgstr "Hits"
292
 
293
  #@ cpd
294
- #: counter.php:1755
295
  msgid "Latest Counts"
296
  msgstr "Laatste Tellingen"
297
 
298
  #@ cpd
299
- #: counter-options.php:248
300
  msgid "Chart - Days"
301
  msgstr "Grafiek - Dagen"
302
 
303
  #@ cpd
304
- #: counter-options.php:252
305
  msgid "Chart - Height"
306
  msgstr "Grafiek - Hoogte"
307
 
308
  #@ cpd
309
- #: counter-options.php:253
310
  msgid "Height of the biggest bar"
311
  msgstr "Hoogte van de grootste staaf"
312
 
313
  #@ cpd
314
- #: counter.php:845
315
- msgid "no reads at this time"
316
- msgstr "momenteel geen hits"
317
-
318
- #@ cpd
319
- #: counter.php:819
320
- msgid "days"
321
- msgstr "dagen"
322
-
323
- #@ cpd
324
- #: counter.php:2218
325
  msgid "This post"
326
  msgstr "Dit bericht"
327
 
328
  #@ default
329
- #: counter-options.php:233
330
  msgid "Dashboard"
331
  msgstr "Dashboard"
332
 
333
  #@ cpd
334
- #: counter.php:635
335
- #: counter.php:1766
336
  msgid "Reads per day"
337
  msgstr "Hits per dag"
338
 
339
  #@ cpd
340
- #: counter-options.php:57
341
  #, php-format
342
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
343
  msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
344
 
345
  #@ cpd
346
- #: counter-options.php:62
347
  msgid "update next"
348
  msgstr "volgende aktualiseren"
349
 
350
  #@ cpd
351
- #: counter-options.php:340
352
  msgid "GeoIP - Countries"
353
  msgstr "GeoIP - Landen"
354
 
355
  #@ cpd
356
- #: counter-options.php:349
357
  msgid "Update old counter data"
358
  msgstr "Aktualiseren data van oude tellingen"
359
 
360
  #@ cpd
361
- #: counter-options.php:362
362
  msgid "Update GeoIP database"
363
  msgstr "Aktualiseren GeoIP databank"
364
 
365
  #@ cpd
366
- #: counter-options.php:365
367
  msgid "Download a new version of GeoIP.dat file."
368
  msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
369
 
370
  #@ cpd
371
- #: counter-options.php:371
372
  msgid "More informations about GeoIP"
373
  msgstr "Meer informatie over GeoIP"
374
 
375
  #@ cpd
376
- #: counter.php:1770
377
  msgid "Reads per Country"
378
- msgstr "Hits per Land"
379
 
380
  #@ cpd
381
- #: geoip/geoip.php:132
382
  msgid "New GeoIP database installed."
383
  msgstr "Nieuwe GeoIP database geïnstalleerd."
384
 
385
  #@ cpd
386
- #: geoip/geoip.php:134
387
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
388
  msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of de toegangsrechten van de map \"geoip\" op 777 staan."
389
 
390
  #@ cpd
391
- #: geoip/geoip.php:108
392
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
393
  msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
394
 
395
  #@ cpd
396
- #: counter-options.php:261
397
  msgid "Countries"
398
  msgstr "Landen"
399
 
400
  #@ cpd
401
- #: counter-options.php:262
402
  msgid "How many countries do you want to see on dashboard page?"
403
  msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
404
 
405
  #@ cpd
406
- #: counter-options.php:104
407
  #, php-format
408
  msgid "Mass Bots cleaned. %s counts deleted."
409
  msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
410
 
411
  #@ cpd
412
- #: counter-options.php:386
413
- #: massbots.php:33
414
  msgid "Mass Bots"
415
  msgstr "Massa Bots"
416
 
417
  #@ cpd
418
- #: counter-options.php:390
419
  #, php-format
420
  msgid "Show all IPs with more than %s page views per day"
421
  msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
422
 
423
  #@ cpd
424
- #: counter-options.php:391
425
- #: notes.php:76
426
- #: userperspan.php:43
427
  msgid "show"
428
  msgstr "laat zien"
429
 
430
  #@ cpd
431
- #: counter-options.php:413
432
- #: counter-options.php:435
433
  #, php-format
434
  msgid "Delete these %s counts"
435
  msgstr "Verwijder deze %s tellingen"
436
 
437
  #@ cpd
438
- #: counter.php:1421
439
  msgid "Other"
440
  msgstr "Andere"
441
 
442
  #@ default
443
- #: counter.php:1520
444
- #: massbots.php:50
445
  #: userperspan.php:63
446
  msgid "Front page displays"
447
  msgstr "Voorpagina weergaves"
448
 
449
  #@ cpd
450
- #: counter-options.php:266
451
- #: counter.php:1760
452
  msgid "Browsers"
453
  msgstr "Browser"
454
 
455
  #@ cpd
456
- #: counter-options.php:399
457
  msgid "IP"
458
  msgstr "IP"
459
 
460
  #@ cpd
461
  #@ default
462
- #: counter-options.php:400
463
- #: notes.php:80
464
  msgid "Date"
465
  msgstr "Datum"
466
 
467
  #@ cpd
468
- #: counter-options.php:401
469
  msgid "Client"
470
  msgstr "Browser"
471
 
472
  #@ cpd
473
- #: counter-options.php:402
474
  msgid "Views"
475
  msgstr "Hits"
476
 
477
  #@ cpd
478
- #: counter-options.php:299
479
  msgid "Start Values"
480
  msgstr "Beginwaarden"
481
 
482
  #@ cpd
483
- #: counter-options.php:303
484
  msgid "Here you can change the date of first count and add a start count."
485
  msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
486
 
487
  #@ cpd
488
- #: counter-options.php:307
489
  msgid "Start date"
490
  msgstr "Startdatum"
491
 
492
  #@ cpd
493
- #: counter-options.php:308
494
  msgid "Your old Counter starts at?"
495
  msgstr "Je oude teller start op?"
496
 
497
  #@ cpd
498
- #: counter-options.php:311
499
- #: counter-options.php:315
500
  msgid "Start count"
501
  msgstr "Beginwaarde van de telling"
502
 
503
  #@ cpd
504
- #: counter-options.php:312
505
  msgid "Add this value to \"Total visitors\"."
506
  msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
507
 
508
  #@ cpd
509
- #: counter-options.php:504
510
  msgid "Support"
511
  msgstr "Ondersteuning"
512
 
513
  #@ cpd
514
- #: counter.php:1717
515
  msgid "Bug? Problem? Question? Hint? Praise?"
516
  msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
517
 
518
  #@ cpd
519
- #: counter.php:1718
520
  #, php-format
521
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
522
  msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
523
 
524
  #@ default
525
- #: counter.php:1374
526
  msgid "Show"
527
  msgstr "Vertonen"
528
 
529
  #@ default
530
- #: counter.php:1505
531
  msgid "Edit Post"
532
  msgstr "Bericht Bewerken"
533
 
534
  #@ cpd
535
- #: counter.php:1716
536
  #, php-format
537
  msgid "Time for Count per Day: <code>%s</code>."
538
  msgstr "Tijd voor Count per Day: <code>%s</code>."
539
 
540
  #@ cpd
541
- #: counter-options.php:197
542
  msgid "until User Level"
543
  msgstr "Tot Gebruikers Niveau"
544
 
545
  #@ default
546
- #: counter.php:1757
547
  msgid "Plugin"
548
  msgstr "Plugin"
549
 
550
  #@ cpd
551
- #: counter.php:822
552
- #: counter.php:1376
553
- #: notes.php:47
554
- #: notes.php:81
555
  msgid "Notes"
556
  msgstr "Opmerkingen"
557
 
558
  #@ default
559
- #: notes.php:82
560
  msgid "Action"
561
  msgstr "Actie"
562
 
563
  #@ cpd
564
- #: notes.php:87
565
  msgid "add"
566
  msgstr "toevoegen"
567
 
568
  #@ cpd
569
- #: notes.php:102
570
  msgid "save"
571
  msgstr "bewaren"
572
 
573
  #@ cpd
574
- #: notes.php:103
575
  msgid "delete"
576
  msgstr "verwijderen"
577
 
578
  #@ cpd
579
- #: notes.php:114
580
  msgid "edit"
581
  msgstr "bewerken"
582
 
583
  #@ cpd
584
- #: notes.php:81
585
- msgid "(1 per day)"
586
- msgstr "(1 per dag)"
587
-
588
- #@ cpd
589
- #: counter-options.php:316
590
  msgid "Add this value to \"Total reads\"."
591
- msgstr "Voeg deze waarde toe aan \"Totale Hits\"."
592
 
593
  #@ cpd
594
- #: counter.php:524
595
- #: counter.php:2219
596
  msgid "Total reads"
597
- msgstr "Totale Hits"
598
 
599
  #@ cpd
600
- #: counter.php:525
601
- #: counter.php:2220
602
  msgid "Reads today"
603
- msgstr "Hits vandaag"
604
 
605
  #@ cpd
606
- #: counter.php:526
607
- #: counter.php:2221
608
  msgid "Reads yesterday"
609
- msgstr "Hits gisteren"
610
 
611
  #@ cpd
612
- #: counter-options.php:216
613
  msgid "Anonymous IP"
614
  msgstr "Anonieme IP"
615
 
616
  #@ cpd
617
- #: counter-options.php:220
618
  msgid "Cache"
619
  msgstr "Cache"
620
 
621
  #@ cpd
622
- #: counter-options.php:221
623
  msgid "I use a cache plugin. Count these visits with ajax."
624
  msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
625
 
626
  #@ cpd
627
- #: counter-options.php:267
628
  msgid "Substring of the user agent, separated by comma"
629
  msgstr "Substring van de user agent, gescheiden door een comma"
630
 
631
  #@ cpd
632
- #: counter-options.php:324
633
  msgid "Debug mode"
634
  msgstr "Debugmodus"
635
 
636
  #@ cpd
637
- #: counter-options.php:326
638
  msgid "Show debug informations at the bottom of all pages."
639
  msgstr "Geef debug informatie weer op de bodem van elke pagina."
640
 
641
  #@ cpd
642
- #: counter.php:1771
643
  msgid "Visitors per Country"
644
  msgstr "Bezoekers per Land"
645
 
646
  #@ cpd
647
- #: counter.php:900
648
- #: counter.php:1856
649
  msgid "Map"
650
  msgstr "Kaart"
651
 
652
  #@ cpd
653
- #: userperspan.php:37
654
  msgid "Start"
655
  msgstr "Start"
656
 
657
  #@ cpd
658
- #: userperspan.php:39
659
  msgid "End"
660
  msgstr "Einde"
661
 
662
  #@ cpd
663
- #: userperspan.php:41
664
  msgid "PostID"
665
  msgstr "PostID"
666
 
667
  #@ cpd
668
- #: userperspan.php:49
669
  msgid "no data found"
670
  msgstr "geen data gevonden"
671
 
672
  #@ cpd
673
- #: counter-options.php:352
674
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
675
  msgstr "Je kunt de land gegevens voor alle items in de database verkrijgen door het IP adres te controleren t.o.v. de GeoIP database. Dit kan even duren!"
676
 
677
  #@ cpd
678
- #: counter-options.php:186
679
  msgid "Counter"
680
  msgstr "Teller"
681
 
682
  #@ cpd
683
- #: counter-options.php:224
684
  msgid "Clients and referrers"
685
  msgstr "Clients en verwijzingen"
686
 
687
  #@ cpd
688
- #: counter-options.php:225
689
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
  msgstr "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
691
 
692
  #@ cpd
693
- #: counter-options.php:278
694
  msgid "Local URLs"
695
  msgstr "Lokale URLs"
696
 
697
  #@ cpd
698
- #: counter-options.php:279
699
  msgid "Show local referrers too."
700
  msgstr "Geef lokale verwijzingen ook weer."
701
 
702
  #@ default
703
- #: counter-options.php:287
704
  msgid "Posts"
705
  msgstr "Berichten"
706
 
707
  #@ default
708
- #: counter-options.php:287
709
  msgid "Pages"
710
  msgstr "Pagina's"
711
 
712
  #@ cpd
713
- #: counter.php:527
714
- #: counter.php:2222
715
  msgid "Reads last week"
716
- msgstr "Weergaves vorige week"
717
 
718
  #@ default
719
- #: counter.php:1514
720
  msgid "Category"
721
  msgstr "Categorie"
722
 
723
  #@ default
724
- #: counter.php:1517
725
  msgid "Tag"
726
  msgstr "Tag"
727
 
728
  #@ default
729
- #: counter.php:1719
730
  msgid "License"
731
  msgstr "Licentie"
732
 
733
  #@ cpd
734
- #: counter.php:1753
735
- #: counter.php:2223
736
  msgid "Reads per month"
737
- msgstr "Weergaves per maand"
738
 
739
  #@ cpd
740
- #: counter.php:1761
741
  msgid "Referrer"
742
  msgstr "Verwijzing"
743
 
744
  #@ default
745
- #: counter.php:2242
746
  msgid "Title"
747
  msgstr "Titel"
748
 
749
  #@ cpd
750
- #: counter-options.php:256
751
- msgid "Old Charts"
752
- msgstr "Oude Grafieken"
753
-
754
- #@ cpd
755
- #: counter-options.php:257
756
- msgid "Show old bar charts."
757
- msgstr "Geef oude staafdiagrammen weer."
758
-
759
- #@ cpd
760
- #: counter-options.php:270
761
  msgid "Referrers - Entries"
762
  msgstr "Verwijzingen - Entries"
763
 
764
  #@ cpd
765
- #: counter-options.php:271
766
  msgid "How many referrers do you want to see on dashboard page?"
767
  msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
768
 
769
  #@ cpd
770
- #: counter-options.php:274
771
  msgid "Referrers - Days"
772
  msgstr "Verwijzingen - Dagen"
773
 
774
  #@ cpd
775
- #: counter.php:1449
776
  #, php-format
777
  msgid "The %s referrers in last %s days:"
778
  msgstr "De %s verwijzingen in de laatste %s dagen:"
779
 
780
  #@ cpd
781
- #: counter.php:1751
782
  msgid "Visitors online"
783
  msgstr "Bezoekers online"
784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count per Day v3.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: translation by WordPressWebshop.com <info@wppg.me>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
+ #: counter-options.php:49
23
  msgid "Options updated"
24
  msgstr "Instellingen bijgewerkt"
25
 
26
  #@ cpd
27
+ #: counter-options.php:112
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Database schoongemaakt. %s rijen verwijderd."
31
 
32
  #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DEÏNSTALLEREN Count per Day"
37
 
38
  #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "eTabel %s verwijderd"
45
 
46
  #@ cpd
47
+ #: counter-options.php:135
48
  msgid "Options deleted"
49
  msgstr "Opties verwijderd"
50
 
51
  #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
  msgid "Uninstall"
55
  msgstr "Deinstallatie"
56
 
57
  #@ cpd
58
+ #: counter-options.php:317
59
  msgid "Click here"
60
  msgstr "Klik hier"
61
 
62
  #@ cpd
63
+ #: counter-options.php:317
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "om de deinstallatie te beeindigen en \"Count per Day\" te deactiveren."
66
 
67
  #@ cpd
68
+ #: counter-options.php:355
 
 
 
 
 
69
  msgid "Online time"
70
  msgstr "Tijd online"
71
 
72
  #@ cpd
73
+ #: counter-options.php:356
74
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
  msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
76
 
77
  #@ cpd
78
+ #: counter-options.php:359
79
  msgid "Logged on Users"
80
  msgstr "Aangemelde Gebruikers"
81
 
82
  #@ cpd
83
+ #: counter-options.php:361
84
  msgid "count too"
85
  msgstr "ook tellen"
86
 
87
  #@ cpd
88
+ #: counter-options.php:373
89
  msgid "Auto counter"
90
  msgstr "Automatisch tellen"
91
 
92
  #@ cpd
93
+ #: counter-options.php:374
94
  msgid "Counts automatically single-posts and pages, no changes on template needed."
95
  msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
96
 
97
  #@ cpd
98
+ #: counter-options.php:377
99
  msgid "Bots to ignore"
100
  msgstr "Bots te negeren"
101
 
102
  #@ cpd
103
+ #: counter-options.php:561
104
  msgid "Update options"
105
  msgstr "Aktualiseren opties"
106
 
107
  #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
  msgid "Clean the database"
111
  msgstr "Database schoonmaken"
112
 
113
  #@ cpd
114
+ #: counter-options.php:659
115
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
  msgstr "Je kan de teller tabel schoonmaken door de \"spam data\" te verwijderen.<br />Als je nieuwe bots toevoegt bovenop de oude blijft de \"spam data\" in de database.<br />Hier kun je het bot filter opnieuw starten en bezoeken van bots verwijderen."
117
 
118
  #@ cpd
119
+ #: counter-options.php:799
120
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
  msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
122
 
123
  #@ cpd
124
+ #: counter-options.php:800
125
  msgid "Here you can delete the tables and disable \"Count per Day\"."
126
  msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
127
 
128
  #@ cpd
129
+ #: counter-options.php:803
130
  msgid "WARNING"
131
  msgstr "WAARSCHUWING"
132
 
133
  #@ cpd
134
+ #: counter-options.php:804
135
  msgid "These tables (with ALL counter data) will be deleted."
136
  msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
137
 
138
  #@ cpd
139
+ #: counter-options.php:806
140
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
  msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
142
 
143
  #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
  msgid "Yes"
147
  msgstr "Ja"
148
 
149
  #@ cpd
150
+ #: counter-options.php:810
151
  msgid "You are sure to disable Count per Day and delete all data?"
152
  msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
153
 
154
  #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  msgid "Statistics"
158
  msgstr "Statistieken"
159
 
160
  #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
 
165
  msgid "Total visitors"
166
  msgstr "Totaal aantal bezoekers"
167
 
168
  #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  msgid "Visitors currently online"
172
  msgstr "Bezoekers op dit moment online"
173
 
174
  #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  msgid "Visitors today"
178
  msgstr "Bezoekers vandaag"
179
 
180
  #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  msgid "Visitors yesterday"
184
  msgstr "Bezoekers gisteren"
185
 
186
  #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  msgid "Visitors last week"
190
  msgstr "Bezoekers vorige week"
191
 
192
  #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  msgid "Counter starts on"
197
  msgstr "Teller start bij"
198
 
199
  #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
 
206
  msgid "Visitors per day"
207
  msgstr "Bezoekers per dag"
208
 
209
  #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  msgid "Visitors per month"
213
  msgstr "Bezoekers per maand"
214
 
215
  #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  msgid "Visitors per post"
219
  msgstr "Bezoekers per bericht"
220
 
221
  #@ cpd
222
+ #: counter-options.php:122
223
  msgid "Counter reseted."
224
  msgstr "Teller gereset"
225
 
226
  #@ cpd
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
  msgid "How many posts do you want to see on dashboard page?"
230
  msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
231
 
232
  #@ cpd
233
+ #: counter-options.php:442
234
  msgid "Latest Counts - Posts"
235
  msgstr "Laatste Tellingen - Berichten"
236
 
237
  #@ cpd
238
+ #: counter-options.php:446
239
  msgid "Latest Counts - Days"
240
  msgstr "Laatste Tellingen - Dagen"
241
 
242
  #@ cpd
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
  msgid "How many days do you want look back?"
247
  msgstr "Hoeveel dagen wil je terugkijken?"
248
 
249
  #@ cpd
250
+ #: counter-options.php:488
251
  msgid "Show in lists"
252
  msgstr "Laat in lijsten zien"
253
 
254
  #@ cpd
255
+ #: counter-options.php:489
256
  msgid "Show \"Reads per Post\" in a new column in post management views."
257
+ msgstr "Toon \"Lezingen per post\" in een nieuwe kolom in bericht impressies management."
258
 
259
  #@ cpd
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
  msgid "Reset the counter"
263
  msgstr "Reset de teller"
264
 
265
  #@ cpd
266
+ #: counter-options.php:780
267
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
  msgstr "Je kan de teller resetten door de tabel leeg te maken. ALLES OP 0!<br/>Maak een backup als je de huidige data nodig hebt!"
269
 
270
  #@ cpd
271
+ #: counter.php:672
272
  #, php-format
273
  msgid "The %s most visited posts in last %s days:"
274
  msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
275
 
276
  #@ default
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
  msgid "Settings"
281
  msgstr "Instellingen"
282
 
283
  #@ cpd
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
  msgid "Reads"
289
+ msgstr "Vertoningen"
290
 
291
  #@ cpd
292
+ #: counter-core.php:728
293
  msgid "Latest Counts"
294
  msgstr "Laatste Tellingen"
295
 
296
  #@ cpd
297
+ #: counter-options.php:450
298
  msgid "Chart - Days"
299
  msgstr "Grafiek - Dagen"
300
 
301
  #@ cpd
302
+ #: counter-options.php:454
303
  msgid "Chart - Height"
304
  msgstr "Grafiek - Hoogte"
305
 
306
  #@ cpd
307
+ #: counter-options.php:455
308
  msgid "Height of the biggest bar"
309
  msgstr "Hoogte van de grootste staaf"
310
 
311
  #@ cpd
312
+ #: counter.php:1196
 
 
 
 
 
 
 
 
 
 
313
  msgid "This post"
314
  msgstr "Dit bericht"
315
 
316
  #@ default
317
+ #: counter-options.php:403
318
  msgid "Dashboard"
319
  msgstr "Dashboard"
320
 
321
  #@ cpd
322
+ #: counter.php:262
 
323
  msgid "Reads per day"
324
  msgstr "Hits per dag"
325
 
326
  #@ cpd
327
+ #: counter-options.php:60
328
  #, php-format
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
331
 
332
  #@ cpd
333
+ #: counter-options.php:65
334
  msgid "update next"
335
  msgstr "volgende aktualiseren"
336
 
337
  #@ cpd
338
+ #: counter-options.php:727
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Landen"
341
 
342
  #@ cpd
343
+ #: counter-options.php:736
344
  msgid "Update old counter data"
345
  msgstr "Aktualiseren data van oude tellingen"
346
 
347
  #@ cpd
348
+ #: counter-options.php:748
349
  msgid "Update GeoIP database"
350
  msgstr "Aktualiseren GeoIP databank"
351
 
352
  #@ cpd
353
+ #: counter-options.php:743
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
356
 
357
  #@ cpd
358
+ #: counter-options.php:753
359
  msgid "More informations about GeoIP"
360
  msgstr "Meer informatie over GeoIP"
361
 
362
  #@ cpd
363
+ #: counter-core.php:738
364
  msgid "Reads per Country"
365
+ msgstr "vertoningen per Land"
366
 
367
  #@ cpd
368
+ #: geoip/geoip.php:117
369
  msgid "New GeoIP database installed."
370
  msgstr "Nieuwe GeoIP database geïnstalleerd."
371
 
372
  #@ cpd
373
+ #: geoip/geoip.php:119
374
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
  msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of de toegangsrechten van de map \"geoip\" op 777 staan."
376
 
377
  #@ cpd
378
+ #: geoip/geoip.php:93
379
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
  msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
381
 
382
  #@ cpd
383
+ #: counter-options.php:459
384
  msgid "Countries"
385
  msgstr "Landen"
386
 
387
  #@ cpd
388
+ #: counter-options.php:460
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
391
 
392
  #@ cpd
393
+ #: counter-options.php:102
394
  #, php-format
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
397
 
398
  #@ cpd
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
  msgid "Mass Bots"
402
  msgstr "Massa Bots"
403
 
404
  #@ cpd
405
+ #: counter-options.php:584
406
  #, php-format
407
  msgid "Show all IPs with more than %s page views per day"
408
  msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
409
 
410
  #@ cpd
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
  msgid "show"
415
  msgstr "laat zien"
416
 
417
  #@ cpd
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
  #, php-format
421
  msgid "Delete these %s counts"
422
  msgstr "Verwijder deze %s tellingen"
423
 
424
  #@ cpd
425
+ #: counter.php:821
426
  msgid "Other"
427
  msgstr "Andere"
428
 
429
  #@ default
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
  #: userperspan.php:63
433
  msgid "Front page displays"
434
  msgstr "Voorpagina weergaves"
435
 
436
  #@ cpd
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
  msgid "Browsers"
440
  msgstr "Browser"
441
 
442
  #@ cpd
443
+ #: counter-options.php:593
444
  msgid "IP"
445
  msgstr "IP"
446
 
447
  #@ cpd
448
  #@ default
449
+ #: counter-options.php:594
450
+ #: notes.php:75
451
  msgid "Date"
452
  msgstr "Datum"
453
 
454
  #@ cpd
455
+ #: counter-options.php:595
456
  msgid "Client"
457
  msgstr "Browser"
458
 
459
  #@ cpd
460
+ #: counter-options.php:596
461
  msgid "Views"
462
  msgstr "Hits"
463
 
464
  #@ cpd
465
+ #: counter-options.php:497
466
  msgid "Start Values"
467
  msgstr "Beginwaarden"
468
 
469
  #@ cpd
470
+ #: counter-options.php:501
471
  msgid "Here you can change the date of first count and add a start count."
472
  msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
473
 
474
  #@ cpd
475
+ #: counter-options.php:505
476
  msgid "Start date"
477
  msgstr "Startdatum"
478
 
479
  #@ cpd
480
+ #: counter-options.php:506
481
  msgid "Your old Counter starts at?"
482
  msgstr "Je oude teller start op?"
483
 
484
  #@ cpd
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
  msgid "Start count"
488
  msgstr "Beginwaarde van de telling"
489
 
490
  #@ cpd
491
+ #: counter-options.php:510
492
  msgid "Add this value to \"Total visitors\"."
493
  msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
494
 
495
  #@ cpd
496
+ #: counter-options.php:714
497
  msgid "Support"
498
  msgstr "Ondersteuning"
499
 
500
  #@ cpd
501
+ #: counter-core.php:690
502
  msgid "Bug? Problem? Question? Hint? Praise?"
503
  msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
504
 
505
  #@ cpd
506
+ #: counter-core.php:691
507
  #, php-format
508
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
  msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
510
 
511
  #@ default
512
+ #: counter.php:786
513
  msgid "Show"
514
  msgstr "Vertonen"
515
 
516
  #@ default
517
+ #: counter.php:976
518
  msgid "Edit Post"
519
  msgstr "Bericht Bewerken"
520
 
521
  #@ cpd
522
+ #: counter-core.php:689
523
  #, php-format
524
  msgid "Time for Count per Day: <code>%s</code>."
525
  msgstr "Tijd voor Count per Day: <code>%s</code>."
526
 
527
  #@ cpd
528
+ #: counter-options.php:362
529
  msgid "until User Level"
530
  msgstr "Tot Gebruikers Niveau"
531
 
532
  #@ default
533
+ #: counter-core.php:730
534
  msgid "Plugin"
535
  msgstr "Plugin"
536
 
537
  #@ cpd
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
 
541
  msgid "Notes"
542
  msgstr "Opmerkingen"
543
 
544
  #@ default
545
+ #: notes.php:77
546
  msgid "Action"
547
  msgstr "Actie"
548
 
549
  #@ cpd
550
+ #: notes.php:82
551
  msgid "add"
552
  msgstr "toevoegen"
553
 
554
  #@ cpd
555
+ #: notes.php:98
556
  msgid "save"
557
  msgstr "bewaren"
558
 
559
  #@ cpd
560
+ #: notes.php:99
561
  msgid "delete"
562
  msgstr "verwijderen"
563
 
564
  #@ cpd
565
+ #: notes.php:110
566
  msgid "edit"
567
  msgstr "bewerken"
568
 
569
  #@ cpd
570
+ #: counter-options.php:514
 
 
 
 
 
571
  msgid "Add this value to \"Total reads\"."
572
+ msgstr "Voeg deze waarde toe aan \"Totale vertoningen\"."
573
 
574
  #@ cpd
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
  msgid "Total reads"
578
+ msgstr "Totale vertoningen"
579
 
580
  #@ cpd
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
  msgid "Reads today"
584
+ msgstr "vertoningen vandaag"
585
 
586
  #@ cpd
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
  msgid "Reads yesterday"
590
+ msgstr "vertoningen gisteren"
591
 
592
  #@ cpd
593
+ #: counter-options.php:381
594
  msgid "Anonymous IP"
595
  msgstr "Anonieme IP"
596
 
597
  #@ cpd
598
+ #: counter-options.php:385
599
  msgid "Cache"
600
  msgstr "Cache"
601
 
602
  #@ cpd
603
+ #: counter-options.php:386
604
  msgid "I use a cache plugin. Count these visits with ajax."
605
  msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
606
 
607
  #@ cpd
608
+ #: counter-options.php:465
609
  msgid "Substring of the user agent, separated by comma"
610
  msgstr "Substring van de user agent, gescheiden door een comma"
611
 
612
  #@ cpd
613
+ #: counter-options.php:554
614
  msgid "Debug mode"
615
  msgstr "Debugmodus"
616
 
617
  #@ cpd
618
+ #: counter-options.php:556
619
  msgid "Show debug informations at the bottom of all pages."
620
  msgstr "Geef debug informatie weer op de bodem van elke pagina."
621
 
622
  #@ cpd
623
+ #: counter-core.php:739
624
  msgid "Visitors per Country"
625
  msgstr "Bezoekers per Land"
626
 
627
  #@ cpd
628
+ #: counter.php:353
629
+ #: counter.php:1041
630
  msgid "Map"
631
  msgstr "Kaart"
632
 
633
  #@ cpd
634
+ #: userperspan.php:38
635
  msgid "Start"
636
  msgstr "Start"
637
 
638
  #@ cpd
639
+ #: userperspan.php:40
640
  msgid "End"
641
  msgstr "Einde"
642
 
643
  #@ cpd
644
+ #: userperspan.php:42
645
  msgid "PostID"
646
  msgstr "PostID"
647
 
648
  #@ cpd
649
+ #: userperspan.php:50
650
  msgid "no data found"
651
  msgstr "geen data gevonden"
652
 
653
  #@ cpd
654
+ #: counter-options.php:730
655
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
  msgstr "Je kunt de land gegevens voor alle items in de database verkrijgen door het IP adres te controleren t.o.v. de GeoIP database. Dit kan even duren!"
657
 
658
  #@ cpd
659
+ #: counter-options.php:351
660
  msgid "Counter"
661
  msgstr "Teller"
662
 
663
  #@ cpd
664
+ #: counter-options.php:389
665
  msgid "Clients and referrers"
666
  msgstr "Clients en verwijzingen"
667
 
668
  #@ cpd
669
+ #: counter-options.php:392
670
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
  msgstr "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
672
 
673
  #@ cpd
674
+ #: counter-options.php:476
675
  msgid "Local URLs"
676
  msgstr "Lokale URLs"
677
 
678
  #@ cpd
679
+ #: counter-options.php:477
680
  msgid "Show local referrers too."
681
  msgstr "Geef lokale verwijzingen ook weer."
682
 
683
  #@ default
684
+ #: counter-options.php:485
685
  msgid "Posts"
686
  msgstr "Berichten"
687
 
688
  #@ default
689
+ #: counter-options.php:485
690
  msgid "Pages"
691
  msgstr "Pagina's"
692
 
693
  #@ cpd
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
  msgid "Reads last week"
697
+ msgstr "vertoningen vorige week"
698
 
699
  #@ default
700
+ #: counter.php:985
701
  msgid "Category"
702
  msgstr "Categorie"
703
 
704
  #@ default
705
+ #: counter.php:988
706
  msgid "Tag"
707
  msgstr "Tag"
708
 
709
  #@ default
710
+ #: counter-core.php:692
711
  msgid "License"
712
  msgstr "Licentie"
713
 
714
  #@ cpd
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
  msgid "Reads per month"
718
+ msgstr "vertoningen per maand"
719
 
720
  #@ cpd
721
+ #: counter-core.php:734
722
  msgid "Referrer"
723
  msgstr "Verwijzing"
724
 
725
  #@ default
726
+ #: counter.php:1220
727
  msgid "Title"
728
  msgstr "Titel"
729
 
730
  #@ cpd
731
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
732
  msgid "Referrers - Entries"
733
  msgstr "Verwijzingen - Entries"
734
 
735
  #@ cpd
736
+ #: counter-options.php:469
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
739
 
740
  #@ cpd
741
+ #: counter-options.php:472
742
  msgid "Referrers - Days"
743
  msgstr "Verwijzingen - Dagen"
744
 
745
  #@ cpd
746
+ #: counter.php:845
747
  #, php-format
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "De %s verwijzingen in de laatste %s dagen:"
750
 
751
  #@ cpd
752
+ #: counter-core.php:724
753
  msgid "Visitors online"
754
  msgstr "Bezoekers online"
755
 
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" bijgewerkt naar versie %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Backup mislukt! Kan bestand niet openen"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Bezig met backup van %s registraties. Elk punt komt overeen met %s registraties."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Je wp-content folder is niet beschrijfbaar. Je kan de content van dit venster kopiëren naar een tekst bestand."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Backup van teller tabel opgeslagen in %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Backup van teller opties en verzameling opgeslagen in %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Bezig met verzamelen..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Verkrijg Bezoekers per Bericht..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Verwijder oude data..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Teller registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s &gt; grootte na = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Installatie van \"Count per Day\" gecontroleerd"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Hulpmiddelen"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Bewaar alleen de URL, geen query string."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Wie het kan zien"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "aangepast"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "en hoger kunnen de statistieken pagina zien."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Stylesheet"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "Geen Stylesheet in Frontend"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Backup"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Registraties per keer"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Als je PHP geheugen limiet minder is dan 50 MB en je krijgt een witte pagina of een foutmelding probeer dan een lagere waarde."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Maak een backup van de database"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Verzamel oude data"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "Huidige grootte van je teller tabel %s is %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Je kan oude data verzamelen en de teller tabel schoonmaken.<br/>Vertoningen en bezoekers worden opgeslagen per maand, per land en per bericht.<br/>Clients en verwijzingen worden verwijderd."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "Je verzameling bevat data tot %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Alle verzamelde data tot %s wordt verwijderd."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "ReActivatie"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "ReActiveer de plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Bezoekers"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Meest bezochte dag"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "slepen en neerzetten om te sorteren"
971
+
locale/cpd-pl_PL.mo CHANGED
Binary file
locale/cpd-pl_PL.po CHANGED
@@ -19,767 +19,954 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:46
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Opcje zaktualizowane"
26
 
27
- #: counter-options.php:57
28
  #, php-format
29
  #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Kraje zaktualizowane. <b>%s</b> wpisów w %s bez kraju"
32
 
33
- #: counter-options.php:62
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "Następna aktualizacja"
37
 
38
- #: counter-options.php:104
39
  #, php-format
40
  #@ cpd
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Masowe boty wymazane. %s wpisów usuniętych."
43
 
44
- #: counter-options.php:111
45
  #, php-format
46
  #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Baza danych wyczyszczona. %s wpisów usuniętych."
49
 
50
- #: counter-options.php:117
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Licznik skasowany"
54
 
55
- #: counter-options.php:121
56
- #: counter-options.php:496
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "USUŃ Count per Day"
60
 
61
- #: counter-options.php:126
62
- #: counter-options.php:128
63
- #: counter-options.php:130
64
  #, php-format
65
  #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Tabela %s usunięta"
68
 
69
- #: counter-options.php:132
70
  #@ cpd
71
  msgid "Options deleted"
72
  msgstr "Opcje usunięte"
73
 
74
- #: counter-options.php:156
75
- #: counter-options.php:481
76
  #@ cpd
77
  msgid "Uninstall"
78
  msgstr "Odinstalowanie"
79
 
80
- #: counter-options.php:157
81
  #@ cpd
82
  msgid "Click here"
83
  msgstr "Kliknij tutaj"
84
 
85
- #: counter-options.php:157
86
  #@ cpd
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
89
 
90
- #: counter-options.php:179
91
- #@ cpd
92
- msgid "Options"
93
- msgstr "Opcje"
94
-
95
- #: counter-options.php:190
96
  #@ cpd
97
  msgid "Online time"
98
  msgstr "Czas bycia online"
99
 
100
- #: counter-options.php:191
101
  #@ cpd
102
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
103
  msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
104
 
105
- #: counter-options.php:194
106
  #@ cpd
107
  msgid "Logged on Users"
108
  msgstr "Zalogowani użytkownicy"
109
 
110
- #: counter-options.php:196
111
  #@ cpd
112
  msgid "count too"
113
  msgstr "również liczyć"
114
 
115
- #: counter-options.php:197
116
  #@ cpd
117
  msgid "until User Level"
118
  msgstr "do poziomu użytkownika"
119
 
120
- #: counter-options.php:208
121
  #@ cpd
122
  msgid "Auto counter"
123
  msgstr "Licznik"
124
 
125
- #: counter-options.php:209
126
  #@ cpd
127
  msgid "Counts automatically single-posts and pages, no changes on template needed."
128
  msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
129
 
130
- #: counter-options.php:212
131
  #@ cpd
132
  msgid "Bots to ignore"
133
  msgstr "Boty do ignorowania"
134
 
135
- #: counter-options.php:233
136
  #@ default
137
  msgid "Dashboard"
138
  msgstr ""
139
 
140
- #: counter-options.php:236
141
- #: counter.php:1754
142
  #@ cpd
143
  msgid "Visitors per post"
144
  msgstr "Gości na wpisie"
145
 
146
- #: counter-options.php:237
147
- #: counter-options.php:241
148
  #@ cpd
149
  msgid "How many posts do you want to see on dashboard page?"
150
  msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
151
 
152
- #: counter-options.php:240
153
  #@ cpd
154
  msgid "Latest Counts - Posts"
155
  msgstr "Ostatnie Odsłony - Wpisy"
156
 
157
- #: counter-options.php:244
158
  #@ cpd
159
  msgid "Latest Counts - Days"
160
  msgstr "Ostatnie Odsłony - Dni"
161
 
162
- #: counter-options.php:245
163
- #: counter-options.php:249
164
- #: counter-options.php:275
165
  #@ cpd
166
  msgid "How many days do you want look back?"
167
  msgstr "Ile dni chcesz patrzeć wstecz?"
168
 
169
- #: counter-options.php:248
170
  #@ cpd
171
  msgid "Chart - Days"
172
  msgstr "Wykres - Dni"
173
 
174
- #: counter-options.php:252
175
  #@ cpd
176
  msgid "Chart - Height"
177
  msgstr "Wykres - Wysokość"
178
 
179
- #: counter-options.php:253
180
  #@ cpd
181
  msgid "Height of the biggest bar"
182
  msgstr "Wysokość najwyższego słupka"
183
 
184
- #: counter-options.php:261
185
  #@ cpd
186
  msgid "Countries"
187
  msgstr "Państwa"
188
 
189
- #: counter-options.php:262
190
  #@ cpd
191
  msgid "How many countries do you want to see on dashboard page?"
192
  msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
193
 
194
- #: counter-options.php:290
195
  #@ cpd
196
  msgid "Show in lists"
197
  msgstr "Pokaż na listach"
198
 
199
- #: counter-options.php:291
200
  #@ cpd
201
  msgid "Show \"Reads per Post\" in a new column in post management views."
202
  msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
203
 
204
- #: counter-options.php:299
205
  #@ cpd
206
  msgid "Start Values"
207
  msgstr "Startowe Wartości"
208
 
209
- #: counter-options.php:303
210
  #@ cpd
211
  msgid "Here you can change the date of first count and add a start count."
212
  msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
213
 
214
- #: counter-options.php:307
215
  #@ cpd
216
  msgid "Start date"
217
  msgstr "Data rozpoczęcia"
218
 
219
- #: counter-options.php:308
220
  #@ cpd
221
  msgid "Your old Counter starts at?"
222
  msgstr "Stary licznik zaczął w?"
223
 
224
- #: counter-options.php:311
225
- #: counter-options.php:315
226
  #@ cpd
227
  msgid "Start count"
228
  msgstr "Stan początkowy licznika"
229
 
230
- #: counter-options.php:312
231
  #@ cpd
232
  msgid "Add this value to \"Total visitors\"."
233
  msgstr "Dodaj tą wartość do \"Gości razem\"."
234
 
235
- #: counter-options.php:316
236
  #@ cpd
237
  msgid "Add this value to \"Total reads\"."
238
  msgstr "Dodaj tą wartość do \"Odsłon razem\"."
239
 
240
- #: counter-options.php:331
241
  #@ cpd
242
  msgid "Update options"
243
  msgstr "Aktualizuj opcje"
244
 
245
- #: counter-options.php:340
246
  #@ cpd
247
  msgid "GeoIP - Countries"
248
  msgstr "GeoIP - Państwa"
249
 
250
- #: counter-options.php:349
251
  #@ cpd
252
  msgid "Update old counter data"
253
  msgstr "Aktualizuj stare dane licznika"
254
 
255
- #: counter-options.php:362
256
  #@ cpd
257
  msgid "Update GeoIP database"
258
  msgstr "Aktualizuj bazę danych GeoIP"
259
 
260
- #: counter-options.php:365
261
  #@ cpd
262
  msgid "Download a new version of GeoIP.dat file."
263
  msgstr "Pobierz nową wersję pliku GeoIP.dat."
264
 
265
- #: counter-options.php:371
266
  #@ cpd
267
  msgid "More informations about GeoIP"
268
  msgstr "Więcej informacji o GeoIP"
269
 
270
- #: counter-options.php:386
271
- #: massbots.php:33
272
  #@ cpd
273
  msgid "Mass Bots"
274
  msgstr "Masowe boty"
275
 
276
- #: counter-options.php:390
277
  #, php-format
278
  #@ cpd
279
  msgid "Show all IPs with more than %s page views per day"
280
  msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
281
 
282
- #: counter-options.php:391
283
- #: notes.php:76
284
- #: userperspan.php:43
285
  #@ cpd
286
  msgid "show"
287
  msgstr "pokaż"
288
 
289
- #: counter-options.php:399
290
  #@ cpd
291
  msgid "IP"
292
  msgstr "IP"
293
 
294
- #: counter-options.php:400
295
- #: notes.php:80
296
  #@ cpd
297
  #@ default
298
  msgid "Date"
299
  msgstr "Data"
300
 
301
- #: counter-options.php:401
302
  #@ cpd
303
  msgid "Client"
304
  msgstr "Klient"
305
 
306
- #: counter-options.php:402
307
  #@ cpd
308
  msgid "Views"
309
  msgstr "Wyświetlenia"
310
 
311
- #: counter-options.php:413
312
- #: counter-options.php:435
313
  #, php-format
314
  #@ cpd
315
  msgid "Delete these %s counts"
316
  msgstr "Usuń te s% dane"
317
 
318
- #: counter-options.php:445
319
- #: counter-options.php:454
320
  #@ cpd
321
  msgid "Clean the database"
322
  msgstr "Wyczyść bazę danych"
323
 
324
- #: counter-options.php:448
325
  #@ cpd
326
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
327
  msgstr "Możesz wyczyścić tabelę licznika przez usunięcie spamu.<br />Jeśli dodasz nowe boty do powyższej listy, to spam pozostanie w bazie danych. <br />Wtedy możesz uruchomić filter i ponownie usunąć wizyty botów."
328
 
329
- #: counter-options.php:463
330
- #: counter-options.php:472
331
  #@ cpd
332
  msgid "Reset the counter"
333
  msgstr "Skasuj licznik"
334
 
335
- #: counter-options.php:466
336
  #@ cpd
337
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
338
  msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
339
 
340
- #: counter-options.php:484
341
  #@ cpd
342
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
343
  msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
344
 
345
- #: counter-options.php:485
346
  #@ cpd
347
  msgid "Here you can delete the tables and disable \"Count per Day\"."
348
  msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
349
 
350
- #: counter-options.php:488
351
  #@ cpd
352
  msgid "WARNING"
353
  msgstr "UWAGA"
354
 
355
- #: counter-options.php:489
356
  #@ cpd
357
  msgid "These tables (with ALL counter data) will be deleted."
358
  msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
359
 
360
- #: counter-options.php:491
361
  #@ cpd
362
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
363
  msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
364
 
365
- #: counter-options.php:495
 
366
  #@ cpd
367
  msgid "Yes"
368
  msgstr "Tak"
369
 
370
- #: counter-options.php:496
371
  #@ cpd
372
  msgid "You are sure to disable Count per Day and delete all data?"
373
  msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
374
 
375
- #: counter-options.php:504
376
  #@ cpd
377
  msgid "Support"
378
  msgstr "Wsparcie"
379
 
380
- #: counter.php:1716
381
  #, php-format
382
  #@ cpd
383
  msgid "Time for Count per Day: <code>%s</code>."
384
  msgstr "Czas u Count per Day: <code>%s</code>."
385
 
386
- #: counter.php:1717
387
  #@ cpd
388
  msgid "Bug? Problem? Question? Hint? Praise?"
389
  msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
390
 
391
- #: counter.php:1718
392
  #, php-format
393
  #@ cpd
394
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
395
  msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
396
 
397
- #: counter.php:524
398
- #: counter.php:2219
399
  #@ cpd
400
  msgid "Total reads"
401
  msgstr "Odsłon razem"
402
 
403
- #: counter.php:525
404
- #: counter.php:2220
405
  #@ cpd
406
  msgid "Reads today"
407
  msgstr "Odsłon dzisiaj"
408
 
409
- #: counter.php:526
410
- #: counter.php:2221
411
  #@ cpd
412
  msgid "Reads yesterday"
413
  msgstr "Odsłon wczoraj"
414
 
415
- #: counter.php:529
416
- #: counter.php:534
417
- #: counter.php:1604
418
- #: counter.php:1750
419
- #: counter.php:2224
420
  #@ cpd
421
  msgid "Total visitors"
422
  msgstr "Gości razem"
423
 
424
- #: counter.php:530
425
- #: counter.php:2230
426
  #@ cpd
427
  msgid "Visitors currently online"
428
  msgstr "Goście obecnie online"
429
 
430
- #: counter.php:531
431
- #: counter.php:2225
432
  #@ cpd
433
  msgid "Visitors today"
434
  msgstr "Gości dzisiaj"
435
 
436
- #: counter.php:532
437
- #: counter.php:2226
438
  #@ cpd
439
  msgid "Visitors yesterday"
440
  msgstr "Gości wczoraj"
441
 
442
- #: counter.php:533
443
- #: counter.php:2227
444
  #@ cpd
445
  msgid "Visitors last week"
446
  msgstr "Gości w preszłym tygodniu"
447
 
448
- #: counter.php:535
449
- #: counter.php:636
450
- #: counter.php:1606
451
- #: counter.php:1756
452
- #: counter.php:1765
453
- #: counter.php:2229
454
- #: userperspan.php:33
455
  #@ cpd
456
  msgid "Visitors per day"
457
  msgstr "Gości dziennie"
458
 
459
- #: counter.php:536
460
- #: counter.php:2231
 
461
  #@ cpd
462
  msgid "Counter starts on"
463
  msgstr "Licznone od"
464
 
465
- #: counter.php:819
466
- #@ cpd
467
- msgid "days"
468
- msgstr "dni"
469
-
470
- #: counter.php:822
471
- #: counter.php:1376
472
- #: notes.php:47
473
- #: notes.php:81
474
  #@ cpd
475
  msgid "Notes"
476
  msgstr "Notatka"
477
 
478
- #: counter.php:845
479
- #@ cpd
480
- msgid "no reads at this time"
481
- msgstr "bez odczytów w tym czasie"
482
-
483
- #: counter.php:1257
484
  #, php-format
485
  #@ cpd
486
  msgid "The %s most visited posts in last %s days:"
487
  msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
488
 
489
- #: counter.php:1374
490
  #@ default
491
  msgid "Show"
492
  msgstr ""
493
 
494
- #: counter.php:1421
495
  #@ cpd
496
  msgid "Other"
497
  msgstr "Inne"
498
 
499
- #: counter.php:1505
500
  #@ default
501
  msgid "Edit Post"
502
  msgstr ""
503
 
504
- #: counter.php:1520
505
- #: massbots.php:50
506
  #: userperspan.php:63
507
  #@ default
508
  msgid "Front page displays"
509
  msgstr ""
510
 
511
- #: counter.php:1591
 
 
512
  #@ default
513
  msgid "Settings"
514
  msgstr ""
515
 
516
- #: counter-options.php:225
517
- #: counter.php:528
518
- #: counter.php:1661
 
519
  #@ cpd
520
  msgid "Reads"
521
  msgstr "Odsłon"
522
 
523
- #: counter.php:2218
524
  #@ cpd
525
  msgid "This post"
526
  msgstr "Ten wpis"
527
 
528
- #: counter.php:635
529
- #: counter.php:1766
530
  #@ cpd
531
  msgid "Reads per day"
532
  msgstr "Odsłon dziennie"
533
 
534
- #: counter.php:1752
535
- #: counter.php:2228
536
  #@ cpd
537
  msgid "Visitors per month"
538
  msgstr "Gości miesięcznie"
539
 
540
- #: counter-options.php:266
541
- #: counter.php:1760
542
  #@ cpd
543
  msgid "Browsers"
544
  msgstr "Przeglądarki"
545
 
546
- #: counter.php:1755
547
  #@ cpd
548
  msgid "Latest Counts"
549
  msgstr "Ostatnie Odsłony"
550
 
551
- #: counter.php:1757
552
  #@ default
553
  msgid "Plugin"
554
  msgstr ""
555
 
556
- #: counter.php:1770
557
  #@ cpd
558
  msgid "Reads per Country"
559
  msgstr "Odsłon na państwo"
560
 
561
- #: counter.php:1786
562
- #: counter.php:2147
563
  #@ cpd
564
  msgid "Statistics"
565
  msgstr "Statystyki"
566
 
567
- #: counter.php:900
568
- #: counter.php:1856
569
  #@ cpd
570
  msgid "Map"
571
  msgstr "Mapa"
572
 
573
- #: geoip/geoip.php:108
574
  #@ cpd
575
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
576
  msgstr "Przepraszamy, niezbędne funkcje (zlib) nie są zainstalowane lub włączone w php.ini."
577
 
578
- #: geoip/geoip.php:132
579
  #@ cpd
580
  msgid "New GeoIP database installed."
581
  msgstr "Nowa GeoIP baza danych zainstalowana."
582
 
583
- #: geoip/geoip.php:134
584
  #@ cpd
585
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
586
  msgstr "Przepraszamy, wystąpił błąd. Spróbuj ponownie lub sprawdzić prawa dostępu do katalogu \"geoip\", jest 777."
587
 
588
- #: notes.php:81
589
- #@ cpd
590
- msgid "(1 per day)"
591
- msgstr "(1 na dzień)"
592
-
593
- #: notes.php:82
594
  #@ default
595
  msgid "Action"
596
  msgstr ""
597
 
598
- #: notes.php:87
599
  #@ cpd
600
  msgid "add"
601
  msgstr "dodać"
602
 
603
- #: notes.php:102
604
  #@ cpd
605
  msgid "save"
606
  msgstr "zapisać"
607
 
608
- #: notes.php:103
609
  #@ cpd
610
  msgid "delete"
611
  msgstr "usunąć"
612
 
613
- #: notes.php:114
614
  #@ cpd
615
  msgid "edit"
616
  msgstr "edytować"
617
 
618
- #: counter-options.php:216
619
  #@ cpd
620
  msgid "Anonymous IP"
621
  msgstr "Anonimowy IP"
622
 
623
- #: counter-options.php:220
624
  #@ cpd
625
  msgid "Cache"
626
  msgstr "Cache"
627
 
628
- #: counter-options.php:221
629
  #@ cpd
630
  msgid "I use a cache plugin. Count these visits with ajax."
631
  msgstr "Używam cache plugin. Licz wizyty z AJAX."
632
 
633
- #: counter-options.php:267
634
  #@ cpd
635
  msgid "Substring of the user agent, separated by comma"
636
  msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
637
 
638
- #: counter-options.php:324
639
  #@ cpd
640
  msgid "Debug mode"
641
  msgstr "Tryb debugowania"
642
 
643
- #: counter-options.php:326
644
  #@ cpd
645
  msgid "Show debug informations at the bottom of all pages."
646
  msgstr "Pokaż debug analizę na dole wszystkich stron."
647
 
648
- #: counter.php:1771
649
  #@ cpd
650
  msgid "Visitors per Country"
651
  msgstr "Gości na państwo"
652
 
653
- #: userperspan.php:37
654
  #@ cpd
655
  msgid "Start"
656
  msgstr "Start"
657
 
658
- #: userperspan.php:39
659
  #@ cpd
660
  msgid "End"
661
  msgstr "Koniec"
662
 
663
- #: userperspan.php:41
664
  #@ cpd
665
  msgid "PostID"
666
  msgstr "ID wpisu"
667
 
668
- #: userperspan.php:49
669
  #@ cpd
670
  msgid "no data found"
671
  msgstr "Nie znaleziono danych"
672
 
673
- #: counter-options.php:352
674
  #@ cpd
675
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
676
  msgstr "Możesz do wszystkich danych zapisać państwo. W tym celu IP będzie porównane z bazą danych GeoIP. To może trochę potrwać!"
677
 
678
- #: counter-options.php:186
679
  #@ cpd
680
  msgid "Counter"
681
  msgstr "Licznik"
682
 
683
- #: counter-options.php:224
684
  #@ cpd
685
  msgid "Clients and referrers"
686
  msgstr "Przeglądarka i referrer"
687
 
688
- #: counter-options.php:225
689
  #@ cpd
690
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
691
  msgstr "Zapisz i pokazuj przeglądarki i referrer. <br /> Potrzebuje dużo miejsca w bazie danych, ale daje więcej szczegółowych informacji użytkowników."
692
 
693
- #: counter-options.php:278
694
  #@ cpd
695
  msgid "Local URLs"
696
  msgstr "Lokalne adresy URL"
697
 
698
- #: counter-options.php:279
699
  #@ cpd
700
  msgid "Show local referrers too."
701
  msgstr "Pokaż też lokalny referrer."
702
 
703
- #: counter-options.php:287
704
  #@ default
705
  msgid "Posts"
706
  msgstr ""
707
 
708
- #: counter-options.php:287
709
  #@ default
710
  msgid "Pages"
711
  msgstr ""
712
 
713
- #: counter.php:527
714
- #: counter.php:2222
715
  #@ cpd
716
  msgid "Reads last week"
717
  msgstr "Odsłon w zeszłym tygodniu"
718
 
719
- #: counter.php:1514
720
  #@ default
721
  msgid "Category"
722
  msgstr ""
723
 
724
- #: counter.php:1517
725
  #@ default
726
  msgid "Tag"
727
  msgstr ""
728
 
729
- #: counter.php:1719
730
  #@ default
731
  msgid "License"
732
  msgstr ""
733
 
734
- #: counter.php:1753
735
- #: counter.php:2223
736
  #@ cpd
737
  msgid "Reads per month"
738
  msgstr "Odsłon miesięcznie"
739
 
740
- #: counter.php:1761
741
  #@ cpd
742
  msgid "Referrer"
743
  msgstr "Referrer"
744
 
745
- #: counter.php:2242
746
  #@ default
747
  msgid "Title"
748
  msgstr ""
749
 
750
- #: counter-options.php:256
751
  #@ cpd
752
- msgid "Old Charts"
753
  msgstr ""
754
 
755
- #: counter-options.php:257
756
  #@ cpd
757
- msgid "Show old bar charts."
758
  msgstr ""
759
 
760
- #: counter-options.php:270
761
  #@ cpd
762
- msgid "Referrers - Entries"
763
  msgstr ""
764
 
765
- #: counter-options.php:271
 
766
  #@ cpd
767
- msgid "How many referrers do you want to see on dashboard page?"
768
  msgstr ""
769
 
770
- #: counter-options.php:274
771
  #@ cpd
772
- msgid "Referrers - Days"
773
  msgstr ""
774
 
775
- #: counter.php:1449
776
  #, php-format
777
  #@ cpd
778
- msgid "The %s referrers in last %s days:"
779
  msgstr ""
780
 
781
- #: counter.php:1751
782
  #@ cpd
783
- msgid "Visitors online"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784
  msgstr ""
785
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:49
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Opcje zaktualizowane"
26
 
27
+ #: counter-options.php:60
28
  #, php-format
29
  #@ cpd
30
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
  msgstr "Kraje zaktualizowane. <b>%s</b> wpisów w %s bez kraju"
32
 
33
+ #: counter-options.php:65
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "Następna aktualizacja"
37
 
38
+ #: counter-options.php:102
39
  #, php-format
40
  #@ cpd
41
  msgid "Mass Bots cleaned. %s counts deleted."
42
  msgstr "Masowe boty wymazane. %s wpisów usuniętych."
43
 
44
+ #: counter-options.php:112
45
  #, php-format
46
  #@ cpd
47
  msgid "Database cleaned. %s rows deleted."
48
  msgstr "Baza danych wyczyszczona. %s wpisów usuniętych."
49
 
50
+ #: counter-options.php:122
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Licznik skasowany"
54
 
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "USUŃ Count per Day"
60
 
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
  #, php-format
65
  #@ cpd
66
  msgid "Table %s deleted"
67
  msgstr "Tabela %s usunięta"
68
 
69
+ #: counter-options.php:135
70
  #@ cpd
71
  msgid "Options deleted"
72
  msgstr "Opcje usunięte"
73
 
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
  #@ cpd
77
  msgid "Uninstall"
78
  msgstr "Odinstalowanie"
79
 
80
+ #: counter-options.php:317
81
  #@ cpd
82
  msgid "Click here"
83
  msgstr "Kliknij tutaj"
84
 
85
+ #: counter-options.php:317
86
  #@ cpd
87
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
  msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
89
 
90
+ #: counter-options.php:355
 
 
 
 
 
91
  #@ cpd
92
  msgid "Online time"
93
  msgstr "Czas bycia online"
94
 
95
+ #: counter-options.php:356
96
  #@ cpd
97
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
  msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
99
 
100
+ #: counter-options.php:359
101
  #@ cpd
102
  msgid "Logged on Users"
103
  msgstr "Zalogowani użytkownicy"
104
 
105
+ #: counter-options.php:361
106
  #@ cpd
107
  msgid "count too"
108
  msgstr "również liczyć"
109
 
110
+ #: counter-options.php:362
111
  #@ cpd
112
  msgid "until User Level"
113
  msgstr "do poziomu użytkownika"
114
 
115
+ #: counter-options.php:373
116
  #@ cpd
117
  msgid "Auto counter"
118
  msgstr "Licznik"
119
 
120
+ #: counter-options.php:374
121
  #@ cpd
122
  msgid "Counts automatically single-posts and pages, no changes on template needed."
123
  msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
124
 
125
+ #: counter-options.php:377
126
  #@ cpd
127
  msgid "Bots to ignore"
128
  msgstr "Boty do ignorowania"
129
 
130
+ #: counter-options.php:403
131
  #@ default
132
  msgid "Dashboard"
133
  msgstr ""
134
 
135
+ #: counter-core.php:727
136
+ #: counter-options.php:438
137
  #@ cpd
138
  msgid "Visitors per post"
139
  msgstr "Gości na wpisie"
140
 
141
+ #: counter-options.php:439
142
+ #: counter-options.php:443
143
  #@ cpd
144
  msgid "How many posts do you want to see on dashboard page?"
145
  msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
146
 
147
+ #: counter-options.php:442
148
  #@ cpd
149
  msgid "Latest Counts - Posts"
150
  msgstr "Ostatnie Odsłony - Wpisy"
151
 
152
+ #: counter-options.php:446
153
  #@ cpd
154
  msgid "Latest Counts - Days"
155
  msgstr "Ostatnie Odsłony - Dni"
156
 
157
+ #: counter-options.php:447
158
+ #: counter-options.php:451
159
+ #: counter-options.php:473
160
  #@ cpd
161
  msgid "How many days do you want look back?"
162
  msgstr "Ile dni chcesz patrzeć wstecz?"
163
 
164
+ #: counter-options.php:450
165
  #@ cpd
166
  msgid "Chart - Days"
167
  msgstr "Wykres - Dni"
168
 
169
+ #: counter-options.php:454
170
  #@ cpd
171
  msgid "Chart - Height"
172
  msgstr "Wykres - Wysokość"
173
 
174
+ #: counter-options.php:455
175
  #@ cpd
176
  msgid "Height of the biggest bar"
177
  msgstr "Wysokość najwyższego słupka"
178
 
179
+ #: counter-options.php:459
180
  #@ cpd
181
  msgid "Countries"
182
  msgstr "Państwa"
183
 
184
+ #: counter-options.php:460
185
  #@ cpd
186
  msgid "How many countries do you want to see on dashboard page?"
187
  msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
188
 
189
+ #: counter-options.php:488
190
  #@ cpd
191
  msgid "Show in lists"
192
  msgstr "Pokaż na listach"
193
 
194
+ #: counter-options.php:489
195
  #@ cpd
196
  msgid "Show \"Reads per Post\" in a new column in post management views."
197
  msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
198
 
199
+ #: counter-options.php:497
200
  #@ cpd
201
  msgid "Start Values"
202
  msgstr "Startowe Wartości"
203
 
204
+ #: counter-options.php:501
205
  #@ cpd
206
  msgid "Here you can change the date of first count and add a start count."
207
  msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
208
 
209
+ #: counter-options.php:505
210
  #@ cpd
211
  msgid "Start date"
212
  msgstr "Data rozpoczęcia"
213
 
214
+ #: counter-options.php:506
215
  #@ cpd
216
  msgid "Your old Counter starts at?"
217
  msgstr "Stary licznik zaczął w?"
218
 
219
+ #: counter-options.php:509
220
+ #: counter-options.php:513
221
  #@ cpd
222
  msgid "Start count"
223
  msgstr "Stan początkowy licznika"
224
 
225
+ #: counter-options.php:510
226
  #@ cpd
227
  msgid "Add this value to \"Total visitors\"."
228
  msgstr "Dodaj tą wartość do \"Gości razem\"."
229
 
230
+ #: counter-options.php:514
231
  #@ cpd
232
  msgid "Add this value to \"Total reads\"."
233
  msgstr "Dodaj tą wartość do \"Odsłon razem\"."
234
 
235
+ #: counter-options.php:561
236
  #@ cpd
237
  msgid "Update options"
238
  msgstr "Aktualizuj opcje"
239
 
240
+ #: counter-options.php:727
241
  #@ cpd
242
  msgid "GeoIP - Countries"
243
  msgstr "GeoIP - Państwa"
244
 
245
+ #: counter-options.php:736
246
  #@ cpd
247
  msgid "Update old counter data"
248
  msgstr "Aktualizuj stare dane licznika"
249
 
250
+ #: counter-options.php:748
251
  #@ cpd
252
  msgid "Update GeoIP database"
253
  msgstr "Aktualizuj bazę danych GeoIP"
254
 
255
+ #: counter-options.php:743
256
  #@ cpd
257
  msgid "Download a new version of GeoIP.dat file."
258
  msgstr "Pobierz nową wersję pliku GeoIP.dat."
259
 
260
+ #: counter-options.php:753
261
  #@ cpd
262
  msgid "More informations about GeoIP"
263
  msgstr "Więcej informacji o GeoIP"
264
 
265
+ #: counter-options.php:580
266
+ #: massbots.php:35
267
  #@ cpd
268
  msgid "Mass Bots"
269
  msgstr "Masowe boty"
270
 
271
+ #: counter-options.php:584
272
  #, php-format
273
  #@ cpd
274
  msgid "Show all IPs with more than %s page views per day"
275
  msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
276
 
277
+ #: counter-options.php:585
278
+ #: notes.php:71
279
+ #: userperspan.php:44
280
  #@ cpd
281
  msgid "show"
282
  msgstr "pokaż"
283
 
284
+ #: counter-options.php:593
285
  #@ cpd
286
  msgid "IP"
287
  msgstr "IP"
288
 
289
+ #: counter-options.php:594
290
+ #: notes.php:75
291
  #@ cpd
292
  #@ default
293
  msgid "Date"
294
  msgstr "Data"
295
 
296
+ #: counter-options.php:595
297
  #@ cpd
298
  msgid "Client"
299
  msgstr "Klient"
300
 
301
+ #: counter-options.php:596
302
  #@ cpd
303
  msgid "Views"
304
  msgstr "Wyświetlenia"
305
 
306
+ #: counter-options.php:611
307
+ #: counter-options.php:627
308
  #, php-format
309
  #@ cpd
310
  msgid "Delete these %s counts"
311
  msgstr "Usuń te s% dane"
312
 
313
+ #: counter-options.php:656
314
+ #: counter-options.php:665
315
  #@ cpd
316
  msgid "Clean the database"
317
  msgstr "Wyczyść bazę danych"
318
 
319
+ #: counter-options.php:659
320
  #@ cpd
321
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
322
  msgstr "Możesz wyczyścić tabelę licznika przez usunięcie spamu.<br />Jeśli dodasz nowe boty do powyższej listy, to spam pozostanie w bazie danych. <br />Wtedy możesz uruchomić filter i ponownie usunąć wizyty botów."
323
 
324
+ #: counter-options.php:777
325
+ #: counter-options.php:787
326
  #@ cpd
327
  msgid "Reset the counter"
328
  msgstr "Skasuj licznik"
329
 
330
+ #: counter-options.php:780
331
  #@ cpd
332
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
333
  msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
334
 
335
+ #: counter-options.php:799
336
  #@ cpd
337
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
338
  msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
339
 
340
+ #: counter-options.php:800
341
  #@ cpd
342
  msgid "Here you can delete the tables and disable \"Count per Day\"."
343
  msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
344
 
345
+ #: counter-options.php:803
346
  #@ cpd
347
  msgid "WARNING"
348
  msgstr "UWAGA"
349
 
350
+ #: counter-options.php:804
351
  #@ cpd
352
  msgid "These tables (with ALL counter data) will be deleted."
353
  msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
354
 
355
+ #: counter-options.php:806
356
  #@ cpd
357
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
358
  msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
359
 
360
+ #: counter-options.php:786
361
+ #: counter-options.php:809
362
  #@ cpd
363
  msgid "Yes"
364
  msgstr "Tak"
365
 
366
+ #: counter-options.php:810
367
  #@ cpd
368
  msgid "You are sure to disable Count per Day and delete all data?"
369
  msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
370
 
371
+ #: counter-options.php:714
372
  #@ cpd
373
  msgid "Support"
374
  msgstr "Wsparcie"
375
 
376
+ #: counter-core.php:689
377
  #, php-format
378
  #@ cpd
379
  msgid "Time for Count per Day: <code>%s</code>."
380
  msgstr "Czas u Count per Day: <code>%s</code>."
381
 
382
+ #: counter-core.php:690
383
  #@ cpd
384
  msgid "Bug? Problem? Question? Hint? Praise?"
385
  msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
386
 
387
+ #: counter-core.php:691
388
  #, php-format
389
  #@ cpd
390
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
391
  msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
392
 
393
+ #: counter.php:155
394
+ #: counter.php:1197
395
  #@ cpd
396
  msgid "Total reads"
397
  msgstr "Odsłon razem"
398
 
399
+ #: counter.php:156
400
+ #: counter.php:1198
401
  #@ cpd
402
  msgid "Reads today"
403
  msgstr "Odsłon dzisiaj"
404
 
405
+ #: counter.php:157
406
+ #: counter.php:1199
407
  #@ cpd
408
  msgid "Reads yesterday"
409
  msgstr "Odsłon wczoraj"
410
 
411
+ #: counter-core.php:723
412
+ #: counter.php:160
413
+ #: counter.php:1010
414
+ #: counter.php:1202
 
415
  #@ cpd
416
  msgid "Total visitors"
417
  msgstr "Gości razem"
418
 
419
+ #: counter.php:161
420
+ #: counter.php:1208
421
  #@ cpd
422
  msgid "Visitors currently online"
423
  msgstr "Goście obecnie online"
424
 
425
+ #: counter.php:162
426
+ #: counter.php:1203
427
  #@ cpd
428
  msgid "Visitors today"
429
  msgstr "Gości dzisiaj"
430
 
431
+ #: counter.php:163
432
+ #: counter.php:1204
433
  #@ cpd
434
  msgid "Visitors yesterday"
435
  msgstr "Gości wczoraj"
436
 
437
+ #: counter.php:164
438
+ #: counter.php:1205
439
  #@ cpd
440
  msgid "Visitors last week"
441
  msgstr "Gości w preszłym tygodniu"
442
 
443
+ #: counter-core.php:729
444
+ #: counter.php:166
445
+ #: counter.php:263
446
+ #: counter.php:1012
447
+ #: counter.php:1207
448
+ #: userperspan.php:34
 
449
  #@ cpd
450
  msgid "Visitors per day"
451
  msgstr "Gości dziennie"
452
 
453
+ #: counter.php:167
454
+ #: counter.php:825
455
+ #: counter.php:1209
456
  #@ cpd
457
  msgid "Counter starts on"
458
  msgstr "Licznone od"
459
 
460
+ #: counter.php:788
461
+ #: notes.php:42
462
+ #: notes.php:76
 
 
 
 
 
 
463
  #@ cpd
464
  msgid "Notes"
465
  msgstr "Notatka"
466
 
467
+ #: counter.php:672
 
 
 
 
 
468
  #, php-format
469
  #@ cpd
470
  msgid "The %s most visited posts in last %s days:"
471
  msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
472
 
473
+ #: counter.php:786
474
  #@ default
475
  msgid "Show"
476
  msgstr ""
477
 
478
+ #: counter.php:821
479
  #@ cpd
480
  msgid "Other"
481
  msgstr "Inne"
482
 
483
+ #: counter.php:976
484
  #@ default
485
  msgid "Edit Post"
486
  msgstr ""
487
 
488
+ #: counter.php:991
489
+ #: massbots.php:52
490
  #: userperspan.php:63
491
  #@ default
492
  msgid "Front page displays"
493
  msgstr ""
494
 
495
+ #: counter-core.php:575
496
+ #: counter-options.php:341
497
+ #: counter-options.php:565
498
  #@ default
499
  msgid "Settings"
500
  msgstr ""
501
 
502
+ #: counter-core.php:639
503
+ #: counter-options.php:392
504
+ #: counter.php:159
505
+ #: counter.php:875
506
  #@ cpd
507
  msgid "Reads"
508
  msgstr "Odsłon"
509
 
510
+ #: counter.php:1196
511
  #@ cpd
512
  msgid "This post"
513
  msgstr "Ten wpis"
514
 
515
+ #: counter.php:262
 
516
  #@ cpd
517
  msgid "Reads per day"
518
  msgstr "Odsłon dziennie"
519
 
520
+ #: counter-core.php:725
521
+ #: counter.php:1206
522
  #@ cpd
523
  msgid "Visitors per month"
524
  msgstr "Gości miesięcznie"
525
 
526
+ #: counter-core.php:733
527
+ #: counter-options.php:464
528
  #@ cpd
529
  msgid "Browsers"
530
  msgstr "Przeglądarki"
531
 
532
+ #: counter-core.php:728
533
  #@ cpd
534
  msgid "Latest Counts"
535
  msgstr "Ostatnie Odsłony"
536
 
537
+ #: counter-core.php:730
538
  #@ default
539
  msgid "Plugin"
540
  msgstr ""
541
 
542
+ #: counter-core.php:738
543
  #@ cpd
544
  msgid "Reads per Country"
545
  msgstr "Odsłon na państwo"
546
 
547
+ #: counter-core.php:754
548
+ #: counter.php:1124
549
  #@ cpd
550
  msgid "Statistics"
551
  msgstr "Statystyki"
552
 
553
+ #: counter.php:353
554
+ #: counter.php:1041
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Mapa"
558
 
559
+ #: geoip/geoip.php:93
560
  #@ cpd
561
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
  msgstr "Przepraszamy, niezbędne funkcje (zlib) nie są zainstalowane lub włączone w php.ini."
563
 
564
+ #: geoip/geoip.php:117
565
  #@ cpd
566
  msgid "New GeoIP database installed."
567
  msgstr "Nowa GeoIP baza danych zainstalowana."
568
 
569
+ #: geoip/geoip.php:119
570
  #@ cpd
571
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
  msgstr "Przepraszamy, wystąpił błąd. Spróbuj ponownie lub sprawdzić prawa dostępu do katalogu \"geoip\", jest 777."
573
 
574
+ #: notes.php:77
 
 
 
 
 
575
  #@ default
576
  msgid "Action"
577
  msgstr ""
578
 
579
+ #: notes.php:82
580
  #@ cpd
581
  msgid "add"
582
  msgstr "dodać"
583
 
584
+ #: notes.php:98
585
  #@ cpd
586
  msgid "save"
587
  msgstr "zapisać"
588
 
589
+ #: notes.php:99
590
  #@ cpd
591
  msgid "delete"
592
  msgstr "usunąć"
593
 
594
+ #: notes.php:110
595
  #@ cpd
596
  msgid "edit"
597
  msgstr "edytować"
598
 
599
+ #: counter-options.php:381
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "Anonimowy IP"
603
 
604
+ #: counter-options.php:385
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
+ #: counter-options.php:386
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Używam cache plugin. Licz wizyty z AJAX."
613
 
614
+ #: counter-options.php:465
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
618
 
619
+ #: counter-options.php:554
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Tryb debugowania"
623
 
624
+ #: counter-options.php:556
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Pokaż debug analizę na dole wszystkich stron."
628
 
629
+ #: counter-core.php:739
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Gości na państwo"
633
 
634
+ #: userperspan.php:38
635
  #@ cpd
636
  msgid "Start"
637
  msgstr "Start"
638
 
639
+ #: userperspan.php:40
640
  #@ cpd
641
  msgid "End"
642
  msgstr "Koniec"
643
 
644
+ #: userperspan.php:42
645
  #@ cpd
646
  msgid "PostID"
647
  msgstr "ID wpisu"
648
 
649
+ #: userperspan.php:50
650
  #@ cpd
651
  msgid "no data found"
652
  msgstr "Nie znaleziono danych"
653
 
654
+ #: counter-options.php:730
655
  #@ cpd
656
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
  msgstr "Możesz do wszystkich danych zapisać państwo. W tym celu IP będzie porównane z bazą danych GeoIP. To może trochę potrwać!"
658
 
659
+ #: counter-options.php:351
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Licznik"
663
 
664
+ #: counter-options.php:389
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Przeglądarka i referrer"
668
 
669
+ #: counter-options.php:392
670
  #@ cpd
671
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
  msgstr "Zapisz i pokazuj przeglądarki i referrer. <br /> Potrzebuje dużo miejsca w bazie danych, ale daje więcej szczegółowych informacji użytkowników."
673
 
674
+ #: counter-options.php:476
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Lokalne adresy URL"
678
 
679
+ #: counter-options.php:477
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Pokaż też lokalny referrer."
683
 
684
+ #: counter-options.php:485
685
  #@ default
686
  msgid "Posts"
687
  msgstr ""
688
 
689
+ #: counter-options.php:485
690
  #@ default
691
  msgid "Pages"
692
  msgstr ""
693
 
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Odsłon w zeszłym tygodniu"
699
 
700
+ #: counter.php:985
701
  #@ default
702
  msgid "Category"
703
  msgstr ""
704
 
705
+ #: counter.php:988
706
  #@ default
707
  msgid "Tag"
708
  msgstr ""
709
 
710
+ #: counter-core.php:692
711
  #@ default
712
  msgid "License"
713
  msgstr ""
714
 
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Odsłon miesięcznie"
720
 
721
+ #: counter-core.php:734
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Referrer"
725
 
726
+ #: counter.php:1220
727
  #@ default
728
  msgid "Title"
729
  msgstr ""
730
 
731
+ #: counter-options.php:468
732
  #@ cpd
733
+ msgid "Referrers - Entries"
734
  msgstr ""
735
 
736
+ #: counter-options.php:469
737
  #@ cpd
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr ""
740
 
741
+ #: counter-options.php:472
742
  #@ cpd
743
+ msgid "Referrers - Days"
744
  msgstr ""
745
 
746
+ #: counter.php:845
747
+ #, php-format
748
  #@ cpd
749
+ msgid "The %s referrers in last %s days:"
750
  msgstr ""
751
 
752
+ #: counter-core.php:724
753
  #@ cpd
754
+ msgid "Visitors online"
755
  msgstr ""
756
 
757
+ #: counter-core.php:186
758
  #, php-format
759
  #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
+ #: counter-core.php:917
764
  #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
  msgstr ""
972
 
locale/cpd-pt_BR.mo CHANGED
Binary file
locale/cpd-pt_BR.po CHANGED
@@ -13,773 +13,959 @@ msgstr ""
13
  "X-Poedit-Language: Portuguese\n"
14
  "X-Poedit-Country: BRAZIL\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:46
23
  #@ cpd
 
24
  msgid "Options updated"
25
  msgstr "Op&ccedil;&otilde;es atualizadas"
26
 
27
- #: counter-options.php:111
28
- #, php-format
29
  #@ cpd
 
 
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Banco de dados limpo. %s linhas apagadas."
32
 
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
  #@ cpd
 
 
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DESINSTALAR o Count per Day"
38
 
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
- #, php-format
43
  #@ cpd
 
 
 
 
44
  msgid "Table %s deleted"
45
  msgstr "Tabela %s apagada"
46
 
47
- #: counter-options.php:132
48
  #@ cpd
 
49
  msgid "Options deleted"
50
  msgstr "Op&ccedil;&otilde;es apagadas"
51
 
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
  #@ cpd
 
 
55
  msgid "Uninstall"
56
  msgstr "Desinstalar"
57
 
58
- #: counter-options.php:157
59
  #@ cpd
 
60
  msgid "Click here"
61
  msgstr "Clique aqui"
62
 
63
- #: counter-options.php:157
64
  #@ cpd
 
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
67
 
68
- #: counter-options.php:179
69
- #@ cpd
70
- msgid "Options"
71
- msgstr "Op&ccedil;&otilde;es"
72
-
73
- #: counter-options.php:190
74
  #@ cpd
 
75
  msgid "Online time"
76
  msgstr "Per&iacute;odo online"
77
 
78
- #: counter-options.php:191
79
  #@ cpd
 
80
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
81
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
82
 
83
- #: counter-options.php:194
84
  #@ cpd
 
85
  msgid "Logged on Users"
86
  msgstr "Usu&aacute;rios logados"
87
 
88
- #: counter-options.php:196
89
  #@ cpd
 
90
  msgid "count too"
91
  msgstr "contar tamb&eacute;m"
92
 
93
- #: counter-options.php:208
94
  #@ cpd
 
95
  msgid "Auto counter"
96
  msgstr "Autocontador"
97
 
98
- #: counter-options.php:209
99
  #@ cpd
 
100
  msgid "Counts automatically single-posts and pages, no changes on template needed."
101
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
102
 
103
- #: counter-options.php:212
104
  #@ cpd
 
105
  msgid "Bots to ignore"
106
  msgstr "Bots a serem ignorados"
107
 
108
- #: counter-options.php:331
109
  #@ cpd
 
110
  msgid "Update options"
111
  msgstr "Atualizar op&ccedil;&otilde;es"
112
 
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
  #@ cpd
 
 
116
  msgid "Clean the database"
117
  msgstr "Limpar o banco de dados"
118
 
119
- #: counter-options.php:448
120
  #@ cpd
 
121
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
122
  msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
123
 
124
- #: counter-options.php:484
125
  #@ cpd
 
126
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
127
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
128
 
129
- #: counter-options.php:485
130
  #@ cpd
 
131
  msgid "Here you can delete the tables and disable \"Count per Day\"."
132
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
133
 
134
- #: counter-options.php:488
135
  #@ cpd
 
136
  msgid "WARNING"
137
  msgstr "ATEN&Ccedil;&Atilde;O"
138
 
139
- #: counter-options.php:489
140
  #@ cpd
 
141
  msgid "These tables (with ALL counter data) will be deleted."
142
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
143
 
144
- #: counter-options.php:491
145
  #@ cpd
 
146
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
147
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
148
 
149
- #: counter-options.php:495
150
  #@ cpd
 
 
151
  msgid "Yes"
152
  msgstr "Sim, quero"
153
 
154
- #: counter-options.php:496
155
  #@ cpd
 
156
  msgid "You are sure to disable Count per Day and delete all data?"
157
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
158
 
159
- #: counter.php:1786
160
- #: counter.php:2147
161
  #@ cpd
 
 
162
  msgid "Statistics"
163
  msgstr "Estat&iacute;sticas"
164
 
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
  #@ cpd
 
 
 
 
171
  msgid "Total visitors"
172
  msgstr "Total de visitas"
173
 
174
- #: counter.php:530
175
- #: counter.php:2230
176
  #@ cpd
 
 
177
  msgid "Visitors currently online"
178
  msgstr "Visitantes online"
179
 
180
- #: counter.php:531
181
- #: counter.php:2225
182
  #@ cpd
 
 
183
  msgid "Visitors today"
184
  msgstr "Visitas hoje"
185
 
186
- #: counter.php:532
187
- #: counter.php:2226
188
  #@ cpd
 
 
189
  msgid "Visitors yesterday"
190
  msgstr "Visitas ontem"
191
 
192
- #: counter.php:533
193
- #: counter.php:2227
194
  #@ cpd
 
 
195
  msgid "Visitors last week"
196
  msgstr "Visitas semana passada"
197
 
198
- #: counter.php:536
199
- #: counter.php:2231
200
  #@ cpd
 
 
 
201
  msgid "Counter starts on"
202
  msgstr "In&iacute;cio da contagem"
203
 
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
  #@ cpd
 
 
 
 
 
 
212
  msgid "Visitors per day"
213
  msgstr "(m&eacute;dia) de visitas por dia"
214
 
215
- #: counter.php:1752
216
- #: counter.php:2228
217
  #@ cpd
 
 
218
  msgid "Visitors per month"
219
  msgstr "Visitas por m&ecirc;s"
220
 
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
  #@ cpd
 
 
224
  msgid "Visitors per post"
225
  msgstr "Visitas por post"
226
 
227
- #: counter-options.php:57
228
- #, php-format
229
  #@ cpd
 
 
230
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
231
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
232
 
233
- #: counter-options.php:62
234
  #@ cpd
 
235
  msgid "update next"
236
  msgstr "Atualizar proximo"
237
 
238
- #: counter-options.php:104
239
- #, php-format
240
  #@ cpd
 
 
241
  msgid "Mass Bots cleaned. %s counts deleted."
242
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
243
 
244
- #: counter-options.php:117
245
  #@ cpd
 
246
  msgid "Counter reseted."
247
  msgstr "Contador reiniciado."
248
 
249
- #: counter-options.php:233
250
  #@ default
 
251
  msgid "Dashboard"
252
  msgstr "Painel"
253
 
254
- #: counter-options.php:237
255
- #: counter-options.php:241
256
  #@ cpd
 
 
257
  msgid "How many posts do you want to see on dashboard page?"
258
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
259
 
260
- #: counter-options.php:240
261
  #@ cpd
 
262
  msgid "Latest Counts - Posts"
263
  msgstr "Contagens Recentes - Posts"
264
 
265
- #: counter-options.php:244
266
  #@ cpd
 
267
  msgid "Latest Counts - Days"
268
  msgstr "Contagens Recentes - Dias"
269
 
270
- #: counter-options.php:245
271
- #: counter-options.php:249
272
- #: counter-options.php:275
273
  #@ cpd
 
 
 
274
  msgid "How many days do you want look back?"
275
  msgstr "Quantos dias atr&aacute;s você quer ver?"
276
 
277
- #: counter-options.php:248
278
  #@ cpd
 
279
  msgid "Chart - Days"
280
  msgstr "Gr&aacute;fico - Dias"
281
 
282
- #: counter-options.php:252
283
  #@ cpd
 
284
  msgid "Chart - Height"
285
  msgstr "Gr&aacute;fico - Altura"
286
 
287
- #: counter-options.php:253
288
  #@ cpd
 
289
  msgid "Height of the biggest bar"
290
  msgstr "Altura da barra maior"
291
 
292
- #: counter-options.php:261
293
  #@ cpd
 
294
  msgid "Countries"
295
  msgstr "Pa&iacute;ses"
296
 
297
- #: counter-options.php:262
298
  #@ cpd
 
299
  msgid "How many countries do you want to see on dashboard page?"
300
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
301
 
302
- #: counter-options.php:290
303
  #@ cpd
 
304
  msgid "Show in lists"
305
  msgstr "Exibir em listas"
306
 
307
- #: counter-options.php:291
308
  #@ cpd
 
309
  msgid "Show \"Reads per Post\" in a new column in post management views."
310
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
311
 
312
- #: counter-options.php:340
313
  #@ cpd
 
314
  msgid "GeoIP - Countries"
315
  msgstr "GeoIP - Pa&iacute;ses"
316
 
317
- #: counter-options.php:349
318
  #@ cpd
 
319
  msgid "Update old counter data"
320
  msgstr "Atualizar dados de contadores antigos"
321
 
322
- #: counter-options.php:362
323
  #@ cpd
 
324
  msgid "Update GeoIP database"
325
  msgstr "Atualizar Base de Dados GeoIP"
326
 
327
- #: counter-options.php:365
328
  #@ cpd
 
329
  msgid "Download a new version of GeoIP.dat file."
330
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
331
 
332
- #: counter-options.php:371
333
  #@ cpd
 
334
  msgid "More informations about GeoIP"
335
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
336
 
337
- #: counter-options.php:386
338
- #: massbots.php:33
339
  #@ cpd
 
 
340
  msgid "Mass Bots"
341
  msgstr "Mass Bots"
342
 
343
- #: counter-options.php:390
344
- #, php-format
345
  #@ cpd
 
 
346
  msgid "Show all IPs with more than %s page views per day"
347
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
348
 
349
- #: counter-options.php:391
350
- #: notes.php:76
351
- #: userperspan.php:43
352
  #@ cpd
 
 
 
353
  msgid "show"
354
  msgstr "exibir"
355
 
356
- #: counter-options.php:399
357
  #@ cpd
 
358
  msgid "IP"
359
  msgstr "IP"
360
 
361
- #: counter-options.php:400
362
- #: notes.php:80
363
  #@ cpd
364
  #@ default
 
 
365
  msgid "Date"
366
  msgstr "Data"
367
 
368
- #: counter-options.php:401
369
  #@ cpd
 
370
  msgid "Client"
371
  msgstr "Cliente"
372
 
373
- #: counter-options.php:402
374
  #@ cpd
 
375
  msgid "Views"
376
  msgstr "Exibi&ccedil;&otilde;es"
377
 
378
- #: counter-options.php:413
379
- #: counter-options.php:435
380
- #, php-format
381
  #@ cpd
 
 
 
382
  msgid "Delete these %s counts"
383
  msgstr "Deletar estes %s contadores"
384
 
385
- #: counter-options.php:463
386
- #: counter-options.php:472
387
  #@ cpd
 
 
388
  msgid "Reset the counter"
389
  msgstr "Reiniciar o contador"
390
 
391
- #: counter-options.php:466
392
  #@ cpd
 
393
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
394
  msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
395
 
396
- #: counter.php:845
397
- #@ cpd
398
- msgid "no reads at this time"
399
- msgstr "nenhuma leitura nesse momento"
400
-
401
- #: counter.php:819
402
  #@ cpd
403
- msgid "days"
404
- msgstr "dias"
405
-
406
- #: counter.php:1257
407
  #, php-format
408
- #@ cpd
409
  msgid "The %s most visited posts in last %s days:"
410
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
411
 
412
- #: counter.php:1421
413
  #@ cpd
 
414
  msgid "Other"
415
  msgstr "Outro"
416
 
417
- #: counter.php:1520
418
- #: massbots.php:50
419
- #: userperspan.php:63
420
  #@ default
 
 
 
421
  msgid "Front page displays"
422
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
423
 
424
- #: counter.php:1591
425
  #@ default
 
 
 
426
  msgid "Settings"
427
  msgstr "Configura&ccedil;&otilde;es"
428
 
429
- #: counter-options.php:225
430
- #: counter.php:528
431
- #: counter.php:1661
432
  #@ cpd
 
 
 
 
433
  msgid "Reads"
434
  msgstr "Leituras"
435
 
436
- #: counter.php:2218
437
  #@ cpd
 
438
  msgid "This post"
439
  msgstr "Este post"
440
 
441
- #: counter.php:635
442
- #: counter.php:1766
443
  #@ cpd
 
444
  msgid "Reads per day"
445
  msgstr "Leituras por dia"
446
 
447
- #: counter-options.php:266
448
- #: counter.php:1760
449
  #@ cpd
 
 
450
  msgid "Browsers"
451
  msgstr "Navegadores"
452
 
453
- #: counter.php:1755
454
  #@ cpd
 
455
  msgid "Latest Counts"
456
  msgstr "Contagens Recentes"
457
 
458
- #: counter.php:1770
459
  #@ cpd
 
460
  msgid "Reads per Country"
461
  msgstr "Leituras por Pa&iacute;s"
462
 
463
- #: geoip/geoip.php:108
464
  #@ cpd
 
465
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
466
  msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
467
 
468
- #: geoip/geoip.php:132
469
  #@ cpd
 
470
  msgid "New GeoIP database installed."
471
  msgstr "Nova base de dados GeoIP instalada."
472
 
473
- #: geoip/geoip.php:134
474
  #@ cpd
 
475
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
476
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
477
 
478
- #: counter-options.php:197
479
  #@ cpd
 
480
  msgid "until User Level"
481
  msgstr "usuários do nível"
482
 
483
- #: counter-options.php:299
484
  #@ cpd
 
485
  msgid "Start Values"
486
  msgstr "Valor inicial"
487
 
488
- #: counter-options.php:303
489
  #@ cpd
 
490
  msgid "Here you can change the date of first count and add a start count."
491
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
492
 
493
- #: counter-options.php:307
494
  #@ cpd
 
495
  msgid "Start date"
496
  msgstr "Data inicial"
497
 
498
- #: counter-options.php:308
499
  #@ cpd
 
500
  msgid "Your old Counter starts at?"
501
  msgstr "Sua contagem antiga começa em?"
502
 
503
- #: counter-options.php:311
504
- #: counter-options.php:315
505
  #@ cpd
 
 
506
  msgid "Start count"
507
  msgstr "Contagem inicial"
508
 
509
- #: counter-options.php:312
510
  #@ cpd
 
511
  msgid "Add this value to \"Total visitors\"."
512
  msgstr "Adicione este valor para \"Total visitors\"."
513
 
514
- #: counter-options.php:504
515
  #@ cpd
 
516
  msgid "Support"
517
  msgstr "Suporte"
518
 
519
- #: counter.php:1717
520
  #@ cpd
 
521
  msgid "Bug? Problem? Question? Hint? Praise?"
522
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
523
 
524
- #: counter.php:1718
525
- #, php-format
526
  #@ cpd
 
 
527
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
528
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
529
 
530
- #: counter.php:1374
531
  #@ default
 
532
  msgid "Show"
533
  msgstr "Mostrar"
534
 
535
- #: counter.php:822
536
- #: counter.php:1376
537
- #: notes.php:47
538
- #: notes.php:81
539
  #@ cpd
 
 
 
540
  msgid "Notes"
541
  msgstr "Notas"
542
 
543
- #: counter.php:1505
544
  #@ default
 
545
  msgid "Edit Post"
546
  msgstr "Editar Post"
547
 
548
- #: counter.php:1757
549
  #@ default
 
550
  msgid "Plugin"
551
  msgstr "Plugin"
552
 
553
- #: counter.php:1716
554
- #, php-format
555
  #@ cpd
 
 
556
  msgid "Time for Count per Day: <code>%s</code>."
557
  msgstr "Tempo para Contagem por Dia: <code>%s</code>."
558
 
559
- #: notes.php:81
560
- #@ cpd
561
- msgid "(1 per day)"
562
- msgstr "(1 por dia)"
563
-
564
- #: notes.php:82
565
  #@ default
 
566
  msgid "Action"
567
  msgstr "A&ccedil;&atilde;o"
568
 
569
- #: notes.php:87
570
  #@ cpd
 
571
  msgid "add"
572
  msgstr "Adicionar"
573
 
574
- #: notes.php:102
575
  #@ cpd
 
576
  msgid "save"
577
  msgstr "Salvar"
578
 
579
- #: notes.php:103
580
  #@ cpd
 
581
  msgid "delete"
582
  msgstr "Apagar"
583
 
584
- #: notes.php:114
585
  #@ cpd
 
586
  msgid "edit"
587
  msgstr "Editar"
588
 
589
- #: counter-options.php:216
590
  #@ cpd
 
591
  msgid "Anonymous IP"
592
  msgstr "IP An&ocirc;nimo"
593
 
594
- #: counter-options.php:220
595
  #@ cpd
 
596
  msgid "Cache"
597
  msgstr "Cache"
598
 
599
- #: counter-options.php:221
600
  #@ cpd
 
601
  msgid "I use a cache plugin. Count these visits with ajax."
602
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
603
 
604
- #: counter-options.php:267
605
  #@ cpd
 
606
  msgid "Substring of the user agent, separated by comma"
607
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
608
 
609
- #: counter-options.php:316
610
  #@ cpd
 
611
  msgid "Add this value to \"Total reads\"."
612
  msgstr "Adicione este valor ao \"Total de Leituras\"."
613
 
614
- #: counter-options.php:324
615
  #@ cpd
 
616
  msgid "Debug mode"
617
  msgstr "Modo de depura&ccedil;&atilde;o"
618
 
619
- #: counter-options.php:326
620
  #@ cpd
 
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
623
 
624
- #: counter.php:524
625
- #: counter.php:2219
626
  #@ cpd
 
 
627
  msgid "Total reads"
628
  msgstr "Total de Leituras"
629
 
630
- #: counter.php:525
631
- #: counter.php:2220
632
  #@ cpd
 
 
633
  msgid "Reads today"
634
  msgstr "Leituras Hoje"
635
 
636
- #: counter.php:526
637
- #: counter.php:2221
638
  #@ cpd
 
 
639
  msgid "Reads yesterday"
640
  msgstr "Leituras Ontem"
641
 
642
- #: counter.php:1771
643
  #@ cpd
 
644
  msgid "Visitors per Country"
645
  msgstr "Visitantes por Pa&iacute;is"
646
 
647
- #: counter.php:900
648
- #: counter.php:1856
649
  #@ cpd
 
 
650
  msgid "Map"
651
  msgstr "Mapa"
652
 
653
- #: userperspan.php:37
654
  #@ cpd
 
655
  msgid "Start"
656
  msgstr "Iniciar"
657
 
658
- #: userperspan.php:39
659
  #@ cpd
 
660
  msgid "End"
661
  msgstr "Fim"
662
 
663
- #: userperspan.php:41
664
  #@ cpd
 
665
  msgid "PostID"
666
  msgstr "PostID"
667
 
668
- #: userperspan.php:49
669
  #@ cpd
 
670
  msgid "no data found"
671
  msgstr "N&atilde;o foram encontrados dados"
672
 
673
- #: counter-options.php:352
674
  #@ cpd
 
675
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
676
  msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
677
 
678
- #: counter-options.php:186
679
  #@ cpd
 
680
  msgid "Counter"
681
- msgstr ""
682
 
683
- #: counter-options.php:224
684
  #@ cpd
 
685
  msgid "Clients and referrers"
686
- msgstr ""
687
 
688
- #: counter-options.php:225
689
  #@ cpd
 
690
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
691
- msgstr ""
692
 
693
- #: counter-options.php:278
694
  #@ cpd
 
695
  msgid "Local URLs"
696
- msgstr ""
697
 
698
- #: counter-options.php:279
699
  #@ cpd
 
700
  msgid "Show local referrers too."
701
- msgstr ""
702
 
703
- #: counter-options.php:287
704
  #@ default
 
705
  msgid "Posts"
706
- msgstr ""
707
 
708
- #: counter-options.php:287
709
  #@ default
 
710
  msgid "Pages"
711
- msgstr ""
712
 
713
- #: counter.php:527
714
- #: counter.php:2222
715
  #@ cpd
 
 
716
  msgid "Reads last week"
717
- msgstr ""
718
 
719
- #: counter.php:1514
720
  #@ default
 
721
  msgid "Category"
722
- msgstr ""
723
 
724
- #: counter.php:1517
725
  #@ default
 
726
  msgid "Tag"
727
- msgstr ""
728
 
729
- #: counter.php:1719
730
  #@ default
 
731
  msgid "License"
732
- msgstr ""
733
 
734
- #: counter.php:1753
735
- #: counter.php:2223
736
  #@ cpd
 
 
737
  msgid "Reads per month"
738
- msgstr ""
739
 
740
- #: counter.php:1761
741
  #@ cpd
 
742
  msgid "Referrer"
743
- msgstr ""
744
 
745
- #: counter.php:2242
746
  #@ default
 
747
  msgid "Title"
748
- msgstr ""
749
 
750
- #: counter-options.php:256
751
- #@ cpd
752
- msgid "Old Charts"
753
- msgstr ""
754
-
755
- #: counter-options.php:257
756
- #@ cpd
757
- msgid "Show old bar charts."
758
- msgstr ""
759
-
760
- #: counter-options.php:270
761
  #@ cpd
 
762
  msgid "Referrers - Entries"
763
- msgstr ""
764
 
765
- #: counter-options.php:271
766
  #@ cpd
 
767
  msgid "How many referrers do you want to see on dashboard page?"
768
- msgstr ""
769
 
770
- #: counter-options.php:274
771
  #@ cpd
 
772
  msgid "Referrers - Days"
773
- msgstr ""
774
 
775
- #: counter.php:1449
776
- #, php-format
777
  #@ cpd
 
 
778
  msgid "The %s referrers in last %s days:"
779
- msgstr ""
780
 
781
- #: counter.php:1751
782
  #@ cpd
 
783
  msgid "Visitors online"
784
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
785
 
13
  "X-Poedit-Language: Portuguese\n"
14
  "X-Poedit-Country: BRAZIL\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
 
21
  #@ cpd
22
+ #: counter-options.php:49
23
  msgid "Options updated"
24
  msgstr "Op&ccedil;&otilde;es atualizadas"
25
 
 
 
26
  #@ cpd
27
+ #: counter-options.php:112
28
+ #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Banco de dados limpo. %s linhas apagadas."
31
 
 
 
32
  #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DESINSTALAR o Count per Day"
37
 
 
 
 
 
38
  #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "Tabela %s apagada"
45
 
 
46
  #@ cpd
47
+ #: counter-options.php:135
48
  msgid "Options deleted"
49
  msgstr "Op&ccedil;&otilde;es apagadas"
50
 
 
 
51
  #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
  msgid "Uninstall"
55
  msgstr "Desinstalar"
56
 
 
57
  #@ cpd
58
+ #: counter-options.php:317
59
  msgid "Click here"
60
  msgstr "Clique aqui"
61
 
 
62
  #@ cpd
63
+ #: counter-options.php:317
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
66
 
 
 
 
 
 
 
67
  #@ cpd
68
+ #: counter-options.php:355
69
  msgid "Online time"
70
  msgstr "Per&iacute;odo online"
71
 
 
72
  #@ cpd
73
+ #: counter-options.php:356
74
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
76
 
 
77
  #@ cpd
78
+ #: counter-options.php:359
79
  msgid "Logged on Users"
80
  msgstr "Usu&aacute;rios logados"
81
 
 
82
  #@ cpd
83
+ #: counter-options.php:361
84
  msgid "count too"
85
  msgstr "contar tamb&eacute;m"
86
 
 
87
  #@ cpd
88
+ #: counter-options.php:373
89
  msgid "Auto counter"
90
  msgstr "Autocontador"
91
 
 
92
  #@ cpd
93
+ #: counter-options.php:374
94
  msgid "Counts automatically single-posts and pages, no changes on template needed."
95
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
96
 
 
97
  #@ cpd
98
+ #: counter-options.php:377
99
  msgid "Bots to ignore"
100
  msgstr "Bots a serem ignorados"
101
 
 
102
  #@ cpd
103
+ #: counter-options.php:561
104
  msgid "Update options"
105
  msgstr "Atualizar op&ccedil;&otilde;es"
106
 
 
 
107
  #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
  msgid "Clean the database"
111
  msgstr "Limpar o banco de dados"
112
 
 
113
  #@ cpd
114
+ #: counter-options.php:659
115
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
  msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
117
 
 
118
  #@ cpd
119
+ #: counter-options.php:799
120
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
122
 
 
123
  #@ cpd
124
+ #: counter-options.php:800
125
  msgid "Here you can delete the tables and disable \"Count per Day\"."
126
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
127
 
 
128
  #@ cpd
129
+ #: counter-options.php:803
130
  msgid "WARNING"
131
  msgstr "ATEN&Ccedil;&Atilde;O"
132
 
 
133
  #@ cpd
134
+ #: counter-options.php:804
135
  msgid "These tables (with ALL counter data) will be deleted."
136
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
137
 
 
138
  #@ cpd
139
+ #: counter-options.php:806
140
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
142
 
 
143
  #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
  msgid "Yes"
147
  msgstr "Sim, quero"
148
 
 
149
  #@ cpd
150
+ #: counter-options.php:810
151
  msgid "You are sure to disable Count per Day and delete all data?"
152
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
153
 
 
 
154
  #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  msgid "Statistics"
158
  msgstr "Estat&iacute;sticas"
159
 
 
 
 
 
 
160
  #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
  msgid "Total visitors"
166
  msgstr "Total de visitas"
167
 
 
 
168
  #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  msgid "Visitors currently online"
172
  msgstr "Visitantes online"
173
 
 
 
174
  #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  msgid "Visitors today"
178
  msgstr "Visitas hoje"
179
 
 
 
180
  #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  msgid "Visitors yesterday"
184
  msgstr "Visitas ontem"
185
 
 
 
186
  #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  msgid "Visitors last week"
190
  msgstr "Visitas semana passada"
191
 
 
 
192
  #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  msgid "Counter starts on"
197
  msgstr "In&iacute;cio da contagem"
198
 
 
 
 
 
 
 
 
199
  #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
  msgid "Visitors per day"
207
  msgstr "(m&eacute;dia) de visitas por dia"
208
 
 
 
209
  #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  msgid "Visitors per month"
213
  msgstr "Visitas por m&ecirc;s"
214
 
 
 
215
  #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  msgid "Visitors per post"
219
  msgstr "Visitas por post"
220
 
 
 
221
  #@ cpd
222
+ #: counter-options.php:60
223
+ #, php-format
224
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
225
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
226
 
 
227
  #@ cpd
228
+ #: counter-options.php:65
229
  msgid "update next"
230
  msgstr "Atualizar proximo"
231
 
 
 
232
  #@ cpd
233
+ #: counter-options.php:102
234
+ #, php-format
235
  msgid "Mass Bots cleaned. %s counts deleted."
236
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
237
 
 
238
  #@ cpd
239
+ #: counter-options.php:122
240
  msgid "Counter reseted."
241
  msgstr "Contador reiniciado."
242
 
 
243
  #@ default
244
+ #: counter-options.php:403
245
  msgid "Dashboard"
246
  msgstr "Painel"
247
 
 
 
248
  #@ cpd
249
+ #: counter-options.php:439
250
+ #: counter-options.php:443
251
  msgid "How many posts do you want to see on dashboard page?"
252
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
253
 
 
254
  #@ cpd
255
+ #: counter-options.php:442
256
  msgid "Latest Counts - Posts"
257
  msgstr "Contagens Recentes - Posts"
258
 
 
259
  #@ cpd
260
+ #: counter-options.php:446
261
  msgid "Latest Counts - Days"
262
  msgstr "Contagens Recentes - Dias"
263
 
 
 
 
264
  #@ cpd
265
+ #: counter-options.php:447
266
+ #: counter-options.php:451
267
+ #: counter-options.php:473
268
  msgid "How many days do you want look back?"
269
  msgstr "Quantos dias atr&aacute;s você quer ver?"
270
 
 
271
  #@ cpd
272
+ #: counter-options.php:450
273
  msgid "Chart - Days"
274
  msgstr "Gr&aacute;fico - Dias"
275
 
 
276
  #@ cpd
277
+ #: counter-options.php:454
278
  msgid "Chart - Height"
279
  msgstr "Gr&aacute;fico - Altura"
280
 
 
281
  #@ cpd
282
+ #: counter-options.php:455
283
  msgid "Height of the biggest bar"
284
  msgstr "Altura da barra maior"
285
 
 
286
  #@ cpd
287
+ #: counter-options.php:459
288
  msgid "Countries"
289
  msgstr "Pa&iacute;ses"
290
 
 
291
  #@ cpd
292
+ #: counter-options.php:460
293
  msgid "How many countries do you want to see on dashboard page?"
294
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
295
 
 
296
  #@ cpd
297
+ #: counter-options.php:488
298
  msgid "Show in lists"
299
  msgstr "Exibir em listas"
300
 
 
301
  #@ cpd
302
+ #: counter-options.php:489
303
  msgid "Show \"Reads per Post\" in a new column in post management views."
304
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
305
 
 
306
  #@ cpd
307
+ #: counter-options.php:727
308
  msgid "GeoIP - Countries"
309
  msgstr "GeoIP - Pa&iacute;ses"
310
 
 
311
  #@ cpd
312
+ #: counter-options.php:736
313
  msgid "Update old counter data"
314
  msgstr "Atualizar dados de contadores antigos"
315
 
 
316
  #@ cpd
317
+ #: counter-options.php:748
318
  msgid "Update GeoIP database"
319
  msgstr "Atualizar Base de Dados GeoIP"
320
 
 
321
  #@ cpd
322
+ #: counter-options.php:743
323
  msgid "Download a new version of GeoIP.dat file."
324
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
325
 
 
326
  #@ cpd
327
+ #: counter-options.php:753
328
  msgid "More informations about GeoIP"
329
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
330
 
 
 
331
  #@ cpd
332
+ #: counter-options.php:580
333
+ #: massbots.php:35
334
  msgid "Mass Bots"
335
  msgstr "Mass Bots"
336
 
 
 
337
  #@ cpd
338
+ #: counter-options.php:584
339
+ #, php-format
340
  msgid "Show all IPs with more than %s page views per day"
341
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
342
 
 
 
 
343
  #@ cpd
344
+ #: counter-options.php:585
345
+ #: notes.php:71
346
+ #: userperspan.php:44
347
  msgid "show"
348
  msgstr "exibir"
349
 
 
350
  #@ cpd
351
+ #: counter-options.php:593
352
  msgid "IP"
353
  msgstr "IP"
354
 
 
 
355
  #@ cpd
356
  #@ default
357
+ #: counter-options.php:594
358
+ #: notes.php:75
359
  msgid "Date"
360
  msgstr "Data"
361
 
 
362
  #@ cpd
363
+ #: counter-options.php:595
364
  msgid "Client"
365
  msgstr "Cliente"
366
 
 
367
  #@ cpd
368
+ #: counter-options.php:596
369
  msgid "Views"
370
  msgstr "Exibi&ccedil;&otilde;es"
371
 
 
 
 
372
  #@ cpd
373
+ #: counter-options.php:611
374
+ #: counter-options.php:627
375
+ #, php-format
376
  msgid "Delete these %s counts"
377
  msgstr "Deletar estes %s contadores"
378
 
 
 
379
  #@ cpd
380
+ #: counter-options.php:777
381
+ #: counter-options.php:787
382
  msgid "Reset the counter"
383
  msgstr "Reiniciar o contador"
384
 
 
385
  #@ cpd
386
+ #: counter-options.php:780
387
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
388
  msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
389
 
 
 
 
 
 
 
390
  #@ cpd
391
+ #: counter.php:672
 
 
 
392
  #, php-format
 
393
  msgid "The %s most visited posts in last %s days:"
394
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
395
 
 
396
  #@ cpd
397
+ #: counter.php:821
398
  msgid "Other"
399
  msgstr "Outro"
400
 
 
 
 
401
  #@ default
402
+ #: counter.php:991
403
+ #: massbots.php:52
404
+ #: userperspan.php:63
405
  msgid "Front page displays"
406
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
407
 
 
408
  #@ default
409
+ #: counter-core.php:575
410
+ #: counter-options.php:341
411
+ #: counter-options.php:565
412
  msgid "Settings"
413
  msgstr "Configura&ccedil;&otilde;es"
414
 
 
 
 
415
  #@ cpd
416
+ #: counter-core.php:639
417
+ #: counter-options.php:392
418
+ #: counter.php:159
419
+ #: counter.php:875
420
  msgid "Reads"
421
  msgstr "Leituras"
422
 
 
423
  #@ cpd
424
+ #: counter.php:1196
425
  msgid "This post"
426
  msgstr "Este post"
427
 
 
 
428
  #@ cpd
429
+ #: counter.php:262
430
  msgid "Reads per day"
431
  msgstr "Leituras por dia"
432
 
 
 
433
  #@ cpd
434
+ #: counter-core.php:733
435
+ #: counter-options.php:464
436
  msgid "Browsers"
437
  msgstr "Navegadores"
438
 
 
439
  #@ cpd
440
+ #: counter-core.php:728
441
  msgid "Latest Counts"
442
  msgstr "Contagens Recentes"
443
 
 
444
  #@ cpd
445
+ #: counter-core.php:738
446
  msgid "Reads per Country"
447
  msgstr "Leituras por Pa&iacute;s"
448
 
 
449
  #@ cpd
450
+ #: geoip/geoip.php:93
451
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
452
  msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
453
 
 
454
  #@ cpd
455
+ #: geoip/geoip.php:117
456
  msgid "New GeoIP database installed."
457
  msgstr "Nova base de dados GeoIP instalada."
458
 
 
459
  #@ cpd
460
+ #: geoip/geoip.php:119
461
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
462
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
463
 
 
464
  #@ cpd
465
+ #: counter-options.php:362
466
  msgid "until User Level"
467
  msgstr "usuários do nível"
468
 
 
469
  #@ cpd
470
+ #: counter-options.php:497
471
  msgid "Start Values"
472
  msgstr "Valor inicial"
473
 
 
474
  #@ cpd
475
+ #: counter-options.php:501
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
478
 
 
479
  #@ cpd
480
+ #: counter-options.php:505
481
  msgid "Start date"
482
  msgstr "Data inicial"
483
 
 
484
  #@ cpd
485
+ #: counter-options.php:506
486
  msgid "Your old Counter starts at?"
487
  msgstr "Sua contagem antiga começa em?"
488
 
 
 
489
  #@ cpd
490
+ #: counter-options.php:509
491
+ #: counter-options.php:513
492
  msgid "Start count"
493
  msgstr "Contagem inicial"
494
 
 
495
  #@ cpd
496
+ #: counter-options.php:510
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Adicione este valor para \"Total visitors\"."
499
 
 
500
  #@ cpd
501
+ #: counter-options.php:714
502
  msgid "Support"
503
  msgstr "Suporte"
504
 
 
505
  #@ cpd
506
+ #: counter-core.php:690
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
509
 
 
 
510
  #@ cpd
511
+ #: counter-core.php:691
512
+ #, php-format
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
515
 
 
516
  #@ default
517
+ #: counter.php:786
518
  msgid "Show"
519
  msgstr "Mostrar"
520
 
 
 
 
 
521
  #@ cpd
522
+ #: counter.php:788
523
+ #: notes.php:42
524
+ #: notes.php:76
525
  msgid "Notes"
526
  msgstr "Notas"
527
 
 
528
  #@ default
529
+ #: counter.php:976
530
  msgid "Edit Post"
531
  msgstr "Editar Post"
532
 
 
533
  #@ default
534
+ #: counter-core.php:730
535
  msgid "Plugin"
536
  msgstr "Plugin"
537
 
 
 
538
  #@ cpd
539
+ #: counter-core.php:689
540
+ #, php-format
541
  msgid "Time for Count per Day: <code>%s</code>."
542
  msgstr "Tempo para Contagem por Dia: <code>%s</code>."
543
 
 
 
 
 
 
 
544
  #@ default
545
+ #: notes.php:77
546
  msgid "Action"
547
  msgstr "A&ccedil;&atilde;o"
548
 
 
549
  #@ cpd
550
+ #: notes.php:82
551
  msgid "add"
552
  msgstr "Adicionar"
553
 
 
554
  #@ cpd
555
+ #: notes.php:98
556
  msgid "save"
557
  msgstr "Salvar"
558
 
 
559
  #@ cpd
560
+ #: notes.php:99
561
  msgid "delete"
562
  msgstr "Apagar"
563
 
 
564
  #@ cpd
565
+ #: notes.php:110
566
  msgid "edit"
567
  msgstr "Editar"
568
 
 
569
  #@ cpd
570
+ #: counter-options.php:381
571
  msgid "Anonymous IP"
572
  msgstr "IP An&ocirc;nimo"
573
 
 
574
  #@ cpd
575
+ #: counter-options.php:385
576
  msgid "Cache"
577
  msgstr "Cache"
578
 
 
579
  #@ cpd
580
+ #: counter-options.php:386
581
  msgid "I use a cache plugin. Count these visits with ajax."
582
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
583
 
 
584
  #@ cpd
585
+ #: counter-options.php:465
586
  msgid "Substring of the user agent, separated by comma"
587
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
588
 
 
589
  #@ cpd
590
+ #: counter-options.php:514
591
  msgid "Add this value to \"Total reads\"."
592
  msgstr "Adicione este valor ao \"Total de Leituras\"."
593
 
 
594
  #@ cpd
595
+ #: counter-options.php:554
596
  msgid "Debug mode"
597
  msgstr "Modo de depura&ccedil;&atilde;o"
598
 
 
599
  #@ cpd
600
+ #: counter-options.php:556
601
  msgid "Show debug informations at the bottom of all pages."
602
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
603
 
 
 
604
  #@ cpd
605
+ #: counter.php:155
606
+ #: counter.php:1197
607
  msgid "Total reads"
608
  msgstr "Total de Leituras"
609
 
 
 
610
  #@ cpd
611
+ #: counter.php:156
612
+ #: counter.php:1198
613
  msgid "Reads today"
614
  msgstr "Leituras Hoje"
615
 
 
 
616
  #@ cpd
617
+ #: counter.php:157
618
+ #: counter.php:1199
619
  msgid "Reads yesterday"
620
  msgstr "Leituras Ontem"
621
 
 
622
  #@ cpd
623
+ #: counter-core.php:739
624
  msgid "Visitors per Country"
625
  msgstr "Visitantes por Pa&iacute;is"
626
 
 
 
627
  #@ cpd
628
+ #: counter.php:353
629
+ #: counter.php:1041
630
  msgid "Map"
631
  msgstr "Mapa"
632
 
 
633
  #@ cpd
634
+ #: userperspan.php:38
635
  msgid "Start"
636
  msgstr "Iniciar"
637
 
 
638
  #@ cpd
639
+ #: userperspan.php:40
640
  msgid "End"
641
  msgstr "Fim"
642
 
 
643
  #@ cpd
644
+ #: userperspan.php:42
645
  msgid "PostID"
646
  msgstr "PostID"
647
 
 
648
  #@ cpd
649
+ #: userperspan.php:50
650
  msgid "no data found"
651
  msgstr "N&atilde;o foram encontrados dados"
652
 
 
653
  #@ cpd
654
+ #: counter-options.php:730
655
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
  msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
657
 
 
658
  #@ cpd
659
+ #: counter-options.php:351
660
  msgid "Counter"
661
+ msgstr "contador"
662
 
 
663
  #@ cpd
664
+ #: counter-options.php:389
665
  msgid "Clients and referrers"
666
+ msgstr "Clientes e Referências"
667
 
 
668
  #@ cpd
669
+ #: counter-options.php:392
670
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
+ msgstr "Salvar e Exibir Clientes e Referências"
672
 
 
673
  #@ cpd
674
+ #: counter-options.php:476
675
  msgid "Local URLs"
676
+ msgstr "URLs Locais"
677
 
 
678
  #@ cpd
679
+ #: counter-options.php:477
680
  msgid "Show local referrers too."
681
+ msgstr "Também exibir referência local."
682
 
 
683
  #@ default
684
+ #: counter-options.php:485
685
  msgid "Posts"
686
+ msgstr "Posts"
687
 
 
688
  #@ default
689
+ #: counter-options.php:485
690
  msgid "Pages"
691
+ msgstr "Páginas"
692
 
 
 
693
  #@ cpd
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
  msgid "Reads last week"
697
+ msgstr "Leituras na semana passada"
698
 
 
699
  #@ default
700
+ #: counter.php:985
701
  msgid "Category"
702
+ msgstr "Categoria"
703
 
 
704
  #@ default
705
+ #: counter.php:988
706
  msgid "Tag"
707
+ msgstr "Teg"
708
 
 
709
  #@ default
710
+ #: counter-core.php:692
711
  msgid "License"
712
+ msgstr "License"
713
 
 
 
714
  #@ cpd
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
  msgid "Reads per month"
718
+ msgstr "Leituras por mês"
719
 
 
720
  #@ cpd
721
+ #: counter-core.php:734
722
  msgid "Referrer"
723
+ msgstr "Referência"
724
 
 
725
  #@ default
726
+ #: counter.php:1220
727
  msgid "Title"
728
+ msgstr "Título"
729
 
 
 
 
 
 
 
 
 
 
 
 
730
  #@ cpd
731
+ #: counter-options.php:468
732
  msgid "Referrers - Entries"
733
+ msgstr "Referência - entradas"
734
 
 
735
  #@ cpd
736
+ #: counter-options.php:469
737
  msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Quantas referência você quer ver no painel?"
739
 
 
740
  #@ cpd
741
+ #: counter-options.php:472
742
  msgid "Referrers - Days"
743
+ msgstr "Referência - Dias"
744
 
 
 
745
  #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
  msgid "The %s referrers in last %s days:"
749
+ msgstr "AA %s referências nos últimos %s dias:"
750
 
 
751
  #@ cpd
752
+ #: counter-core.php:724
753
  msgid "Visitors online"
754
+ msgstr "Visitantes online"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "Atualizar \"Count per Day\" para a versão %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Backup falhou. O arquivo não abriu"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Seu diretório wp-content não é gravável. Contudo você pode copiar o conteúdo desta caixa para um arquivo de texto."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Backup da tabela do contador salvo em %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Backup das opções de contador e acumuladores salvas em %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Acumulador em progresso..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Obter visitas por Post..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Deletar dados antigos..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Instalação do \"Count per Day\" checada"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Ferramentas"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Salvar somente URL, sem sequencia de caracteres"
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Quem pode ver isto"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "Customizar"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "e superior têm permissão para ver a página de estatísticas."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Estilo"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "SEM Estilo na interface pública"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Não carregue o estilo \"counter.css\" na interface pública"
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Backup"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Entradas por passagem"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Backup da base de dados"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Coletar dados antigos"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "O tamanho atual da sua tabela de contador %s é %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "Atualmente sua coleção contém dados até %s"
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Dados novos são adicionados normalmente à coleção."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Todos os dados coletados até %s serão excluidos."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Reativação"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Reativar o plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Visitantes"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Dia mais visitado"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "arrastar e soltar para classificar"
971
 
locale/cpd-pt_PT.mo ADDED
Binary file
locale/cpd-pt_PT.po ADDED
@@ -0,0 +1,971 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Portuguese\n"
14
+ "X-Poedit-Country: BRAZIL\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Op&ccedil;&otilde;es atualizadas"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Banco de dados limpo. %s linhas apagadas."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "DESINSTALAR o Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Tabela %s apagada"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:135
48
+ msgid "Options deleted"
49
+ msgstr "Op&ccedil;&otilde;es apagadas"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ msgid "Uninstall"
55
+ msgstr "Desinstalar"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:317
59
+ msgid "Click here"
60
+ msgstr "Clique aqui"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:317
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
66
+
67
+ #@ cpd
68
+ #: counter-options.php:355
69
+ msgid "Online time"
70
+ msgstr "Per&iacute;odo online"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:356
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:359
79
+ msgid "Logged on Users"
80
+ msgstr "Usu&aacute;rios logados"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:361
84
+ msgid "count too"
85
+ msgstr "contar tamb&eacute;m"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:373
89
+ msgid "Auto counter"
90
+ msgstr "Autocontador"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:374
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:377
99
+ msgid "Bots to ignore"
100
+ msgstr "Bots a serem ignorados"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:561
104
+ msgid "Update options"
105
+ msgstr "Atualizar op&ccedil;&otilde;es"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ msgid "Clean the database"
111
+ msgstr "Limpar o banco de dados"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:659
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:799
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:800
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:803
130
+ msgid "WARNING"
131
+ msgstr "ATEN&Ccedil;&Atilde;O"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:804
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:806
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ msgid "Yes"
147
+ msgstr "Sim, quero"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:810
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ msgid "Statistics"
158
+ msgstr "Estat&iacute;sticas"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ msgid "Total visitors"
166
+ msgstr "Total de visitas"
167
+
168
+ #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ msgid "Visitors currently online"
172
+ msgstr "Visitantes online"
173
+
174
+ #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ msgid "Visitors today"
178
+ msgstr "Visitas hoje"
179
+
180
+ #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ msgid "Visitors yesterday"
184
+ msgstr "Visitas ontem"
185
+
186
+ #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ msgid "Visitors last week"
190
+ msgstr "Visitas semana passada"
191
+
192
+ #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ msgid "Counter starts on"
197
+ msgstr "In&iacute;cio da contagem"
198
+
199
+ #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ msgid "Visitors per day"
207
+ msgstr "(m&eacute;dia) de visitas por dia"
208
+
209
+ #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ msgid "Visitors per month"
213
+ msgstr "Visitas por m&ecirc;s"
214
+
215
+ #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ msgid "Visitors per post"
219
+ msgstr "Visitas por post"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:60
223
+ #, php-format
224
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
225
+ msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
226
+
227
+ #@ cpd
228
+ #: counter-options.php:65
229
+ msgid "update next"
230
+ msgstr "Atualizar proximo"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:102
234
+ #, php-format
235
+ msgid "Mass Bots cleaned. %s counts deleted."
236
+ msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
237
+
238
+ #@ cpd
239
+ #: counter-options.php:122
240
+ msgid "Counter reseted."
241
+ msgstr "Contador reiniciado."
242
+
243
+ #@ default
244
+ #: counter-options.php:403
245
+ msgid "Dashboard"
246
+ msgstr "Painel"
247
+
248
+ #@ cpd
249
+ #: counter-options.php:439
250
+ #: counter-options.php:443
251
+ msgid "How many posts do you want to see on dashboard page?"
252
+ msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
253
+
254
+ #@ cpd
255
+ #: counter-options.php:442
256
+ msgid "Latest Counts - Posts"
257
+ msgstr "Contagens Recentes - Posts"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:446
261
+ msgid "Latest Counts - Days"
262
+ msgstr "Contagens Recentes - Dias"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:447
266
+ #: counter-options.php:451
267
+ #: counter-options.php:473
268
+ msgid "How many days do you want look back?"
269
+ msgstr "Quantos dias atr&aacute;s você quer ver?"
270
+
271
+ #@ cpd
272
+ #: counter-options.php:450
273
+ msgid "Chart - Days"
274
+ msgstr "Gr&aacute;fico - Dias"
275
+
276
+ #@ cpd
277
+ #: counter-options.php:454
278
+ msgid "Chart - Height"
279
+ msgstr "Gr&aacute;fico - Altura"
280
+
281
+ #@ cpd
282
+ #: counter-options.php:455
283
+ msgid "Height of the biggest bar"
284
+ msgstr "Altura da barra maior"
285
+
286
+ #@ cpd
287
+ #: counter-options.php:459
288
+ msgid "Countries"
289
+ msgstr "Pa&iacute;ses"
290
+
291
+ #@ cpd
292
+ #: counter-options.php:460
293
+ msgid "How many countries do you want to see on dashboard page?"
294
+ msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
295
+
296
+ #@ cpd
297
+ #: counter-options.php:488
298
+ msgid "Show in lists"
299
+ msgstr "Exibir em listas"
300
+
301
+ #@ cpd
302
+ #: counter-options.php:489
303
+ msgid "Show \"Reads per Post\" in a new column in post management views."
304
+ msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
305
+
306
+ #@ cpd
307
+ #: counter-options.php:727
308
+ msgid "GeoIP - Countries"
309
+ msgstr "GeoIP - Pa&iacute;ses"
310
+
311
+ #@ cpd
312
+ #: counter-options.php:736
313
+ msgid "Update old counter data"
314
+ msgstr "Atualizar dados de contadores antigos"
315
+
316
+ #@ cpd
317
+ #: counter-options.php:748
318
+ msgid "Update GeoIP database"
319
+ msgstr "Atualizar Base de Dados GeoIP"
320
+
321
+ #@ cpd
322
+ #: counter-options.php:743
323
+ msgid "Download a new version of GeoIP.dat file."
324
+ msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
325
+
326
+ #@ cpd
327
+ #: counter-options.php:753
328
+ msgid "More informations about GeoIP"
329
+ msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
330
+
331
+ #@ cpd
332
+ #: counter-options.php:580
333
+ #: massbots.php:35
334
+ msgid "Mass Bots"
335
+ msgstr "Mass Bots"
336
+
337
+ #@ cpd
338
+ #: counter-options.php:584
339
+ #, php-format
340
+ msgid "Show all IPs with more than %s page views per day"
341
+ msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
342
+
343
+ #@ cpd
344
+ #: counter-options.php:585
345
+ #: notes.php:71
346
+ #: userperspan.php:44
347
+ msgid "show"
348
+ msgstr "exibir"
349
+
350
+ #@ cpd
351
+ #: counter-options.php:593
352
+ msgid "IP"
353
+ msgstr "IP"
354
+
355
+ #@ cpd
356
+ #@ default
357
+ #: counter-options.php:594
358
+ #: notes.php:75
359
+ msgid "Date"
360
+ msgstr "Data"
361
+
362
+ #@ cpd
363
+ #: counter-options.php:595
364
+ msgid "Client"
365
+ msgstr "Cliente"
366
+
367
+ #@ cpd
368
+ #: counter-options.php:596
369
+ msgid "Views"
370
+ msgstr "Exibi&ccedil;&otilde;es"
371
+
372
+ #@ cpd
373
+ #: counter-options.php:611
374
+ #: counter-options.php:627
375
+ #, php-format
376
+ msgid "Delete these %s counts"
377
+ msgstr "Deletar estes %s contadores"
378
+
379
+ #@ cpd
380
+ #: counter-options.php:777
381
+ #: counter-options.php:787
382
+ msgid "Reset the counter"
383
+ msgstr "Reiniciar o contador"
384
+
385
+ #@ cpd
386
+ #: counter-options.php:780
387
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
388
+ msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
389
+
390
+ #@ cpd
391
+ #: counter.php:672
392
+ #, php-format
393
+ msgid "The %s most visited posts in last %s days:"
394
+ msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
395
+
396
+ #@ cpd
397
+ #: counter.php:821
398
+ msgid "Other"
399
+ msgstr "Outro"
400
+
401
+ #@ default
402
+ #: counter.php:991
403
+ #: massbots.php:52
404
+ #: userperspan.php:63
405
+ msgid "Front page displays"
406
+ msgstr "Exibi&ccedil;&otilde;es da primeira página"
407
+
408
+ #@ default
409
+ #: counter-core.php:575
410
+ #: counter-options.php:341
411
+ #: counter-options.php:565
412
+ msgid "Settings"
413
+ msgstr "Configura&ccedil;&otilde;es"
414
+
415
+ #@ cpd
416
+ #: counter-core.php:639
417
+ #: counter-options.php:392
418
+ #: counter.php:159
419
+ #: counter.php:875
420
+ msgid "Reads"
421
+ msgstr "Leituras"
422
+
423
+ #@ cpd
424
+ #: counter.php:1196
425
+ msgid "This post"
426
+ msgstr "Este post"
427
+
428
+ #@ cpd
429
+ #: counter.php:262
430
+ msgid "Reads per day"
431
+ msgstr "Leituras por dia"
432
+
433
+ #@ cpd
434
+ #: counter-core.php:733
435
+ #: counter-options.php:464
436
+ msgid "Browsers"
437
+ msgstr "Navegadores"
438
+
439
+ #@ cpd
440
+ #: counter-core.php:728
441
+ msgid "Latest Counts"
442
+ msgstr "Contagens Recentes"
443
+
444
+ #@ cpd
445
+ #: counter-core.php:738
446
+ msgid "Reads per Country"
447
+ msgstr "Leituras por Pa&iacute;s"
448
+
449
+ #@ cpd
450
+ #: geoip/geoip.php:93
451
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
452
+ msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
453
+
454
+ #@ cpd
455
+ #: geoip/geoip.php:117
456
+ msgid "New GeoIP database installed."
457
+ msgstr "Nova base de dados GeoIP instalada."
458
+
459
+ #@ cpd
460
+ #: geoip/geoip.php:119
461
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
462
+ msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
463
+
464
+ #@ cpd
465
+ #: counter-options.php:362
466
+ msgid "until User Level"
467
+ msgstr "usuários do nível"
468
+
469
+ #@ cpd
470
+ #: counter-options.php:497
471
+ msgid "Start Values"
472
+ msgstr "Valor inicial"
473
+
474
+ #@ cpd
475
+ #: counter-options.php:501
476
+ msgid "Here you can change the date of first count and add a start count."
477
+ msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
478
+
479
+ #@ cpd
480
+ #: counter-options.php:505
481
+ msgid "Start date"
482
+ msgstr "Data inicial"
483
+
484
+ #@ cpd
485
+ #: counter-options.php:506
486
+ msgid "Your old Counter starts at?"
487
+ msgstr "Sua contagem antiga começa em?"
488
+
489
+ #@ cpd
490
+ #: counter-options.php:509
491
+ #: counter-options.php:513
492
+ msgid "Start count"
493
+ msgstr "Contagem inicial"
494
+
495
+ #@ cpd
496
+ #: counter-options.php:510
497
+ msgid "Add this value to \"Total visitors\"."
498
+ msgstr "Adicione este valor para \"Total visitors\"."
499
+
500
+ #@ cpd
501
+ #: counter-options.php:714
502
+ msgid "Support"
503
+ msgstr "Suporte"
504
+
505
+ #@ cpd
506
+ #: counter-core.php:690
507
+ msgid "Bug? Problem? Question? Hint? Praise?"
508
+ msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
509
+
510
+ #@ cpd
511
+ #: counter-core.php:691
512
+ #, php-format
513
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
+ msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
515
+
516
+ #@ default
517
+ #: counter.php:786
518
+ msgid "Show"
519
+ msgstr "Mostrar"
520
+
521
+ #@ cpd
522
+ #: counter.php:788
523
+ #: notes.php:42
524
+ #: notes.php:76
525
+ msgid "Notes"
526
+ msgstr "Notas"
527
+
528
+ #@ default
529
+ #: counter.php:976
530
+ msgid "Edit Post"
531
+ msgstr "Editar Post"
532
+
533
+ #@ default
534
+ #: counter-core.php:730
535
+ msgid "Plugin"
536
+ msgstr "Plugin"
537
+
538
+ #@ cpd
539
+ #: counter-core.php:689
540
+ #, php-format
541
+ msgid "Time for Count per Day: <code>%s</code>."
542
+ msgstr "Tempo para Contagem por Dia: <code>%s</code>."
543
+
544
+ #@ default
545
+ #: notes.php:77
546
+ msgid "Action"
547
+ msgstr "A&ccedil;&atilde;o"
548
+
549
+ #@ cpd
550
+ #: notes.php:82
551
+ msgid "add"
552
+ msgstr "Adicionar"
553
+
554
+ #@ cpd
555
+ #: notes.php:98
556
+ msgid "save"
557
+ msgstr "Salvar"
558
+
559
+ #@ cpd
560
+ #: notes.php:99
561
+ msgid "delete"
562
+ msgstr "Apagar"
563
+
564
+ #@ cpd
565
+ #: notes.php:110
566
+ msgid "edit"
567
+ msgstr "Editar"
568
+
569
+ #@ cpd
570
+ #: counter-options.php:381
571
+ msgid "Anonymous IP"
572
+ msgstr "IP An&ocirc;nimo"
573
+
574
+ #@ cpd
575
+ #: counter-options.php:385
576
+ msgid "Cache"
577
+ msgstr "Cache"
578
+
579
+ #@ cpd
580
+ #: counter-options.php:386
581
+ msgid "I use a cache plugin. Count these visits with ajax."
582
+ msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
583
+
584
+ #@ cpd
585
+ #: counter-options.php:465
586
+ msgid "Substring of the user agent, separated by comma"
587
+ msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
588
+
589
+ #@ cpd
590
+ #: counter-options.php:514
591
+ msgid "Add this value to \"Total reads\"."
592
+ msgstr "Adicione este valor ao \"Total de Leituras\"."
593
+
594
+ #@ cpd
595
+ #: counter-options.php:554
596
+ msgid "Debug mode"
597
+ msgstr "Modo de depura&ccedil;&atilde;o"
598
+
599
+ #@ cpd
600
+ #: counter-options.php:556
601
+ msgid "Show debug informations at the bottom of all pages."
602
+ msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
603
+
604
+ #@ cpd
605
+ #: counter.php:155
606
+ #: counter.php:1197
607
+ msgid "Total reads"
608
+ msgstr "Total de Leituras"
609
+
610
+ #@ cpd
611
+ #: counter.php:156
612
+ #: counter.php:1198
613
+ msgid "Reads today"
614
+ msgstr "Leituras Hoje"
615
+
616
+ #@ cpd
617
+ #: counter.php:157
618
+ #: counter.php:1199
619
+ msgid "Reads yesterday"
620
+ msgstr "Leituras Ontem"
621
+
622
+ #@ cpd
623
+ #: counter-core.php:739
624
+ msgid "Visitors per Country"
625
+ msgstr "Visitantes por Pa&iacute;is"
626
+
627
+ #@ cpd
628
+ #: counter.php:353
629
+ #: counter.php:1041
630
+ msgid "Map"
631
+ msgstr "Mapa"
632
+
633
+ #@ cpd
634
+ #: userperspan.php:38
635
+ msgid "Start"
636
+ msgstr "Iniciar"
637
+
638
+ #@ cpd
639
+ #: userperspan.php:40
640
+ msgid "End"
641
+ msgstr "Fim"
642
+
643
+ #@ cpd
644
+ #: userperspan.php:42
645
+ msgid "PostID"
646
+ msgstr "PostID"
647
+
648
+ #@ cpd
649
+ #: userperspan.php:50
650
+ msgid "no data found"
651
+ msgstr "N&atilde;o foram encontrados dados"
652
+
653
+ #@ cpd
654
+ #: counter-options.php:730
655
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
+ msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
657
+
658
+ #@ cpd
659
+ #: counter-options.php:351
660
+ msgid "Counter"
661
+ msgstr "contador"
662
+
663
+ #@ cpd
664
+ #: counter-options.php:389
665
+ msgid "Clients and referrers"
666
+ msgstr "Clientes e Referências"
667
+
668
+ #@ cpd
669
+ #: counter-options.php:392
670
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
+ msgstr "Salvar e Exibir Clientes e Referências"
672
+
673
+ #@ cpd
674
+ #: counter-options.php:476
675
+ msgid "Local URLs"
676
+ msgstr "URLs Locais"
677
+
678
+ #@ cpd
679
+ #: counter-options.php:477
680
+ msgid "Show local referrers too."
681
+ msgstr "Também exibir referência local."
682
+
683
+ #@ default
684
+ #: counter-options.php:485
685
+ msgid "Posts"
686
+ msgstr "Posts"
687
+
688
+ #@ default
689
+ #: counter-options.php:485
690
+ msgid "Pages"
691
+ msgstr "Páginas"
692
+
693
+ #@ cpd
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ msgid "Reads last week"
697
+ msgstr "Leituras na semana passada"
698
+
699
+ #@ default
700
+ #: counter.php:985
701
+ msgid "Category"
702
+ msgstr "Categoria"
703
+
704
+ #@ default
705
+ #: counter.php:988
706
+ msgid "Tag"
707
+ msgstr "Teg"
708
+
709
+ #@ default
710
+ #: counter-core.php:692
711
+ msgid "License"
712
+ msgstr "License"
713
+
714
+ #@ cpd
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ msgid "Reads per month"
718
+ msgstr "Leituras por mês"
719
+
720
+ #@ cpd
721
+ #: counter-core.php:734
722
+ msgid "Referrer"
723
+ msgstr "Referência"
724
+
725
+ #@ default
726
+ #: counter.php:1220
727
+ msgid "Title"
728
+ msgstr "Título"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:468
732
+ msgid "Referrers - Entries"
733
+ msgstr "Referência - entradas"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:469
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Quantas referência você quer ver no painel?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:472
742
+ msgid "Referrers - Days"
743
+ msgstr "Referência - Dias"
744
+
745
+ #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "AA %s referências nos últimos %s dias:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:724
753
+ msgid "Visitors online"
754
+ msgstr "Visitantes online"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "Atualizar \"Count per Day\" para a versão %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Backup falhou. O arquivo não abriu"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Seu diretório wp-content não é gravável. Contudo você pode copiar o conteúdo desta caixa para um arquivo de texto."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Backup da tabela do contador salvo em %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Backup das opções de contador e acumuladores salvas em %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Acumulador em progresso..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Obter visitas por Post..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Deletar dados antigos..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Instalação do \"Count per Day\" checada"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Ferramentas"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Salvar somente URL, sem sequencia de caracteres"
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Quem pode ver isto"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "Customizar"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "e superior têm permissão para ver a página de estatísticas."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Estilo"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "SEM Estilo na interface pública"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Não carregue o estilo \"counter.css\" na interface pública"
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Backup"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Entradas por passagem"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Backup da base de dados"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Coletar dados antigos"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "O tamanho atual da sua tabela de contador %s é %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "Atualmente sua coleção contém dados até %s"
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Dados novos são adicionados normalmente à coleção."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Todos os dados coletados até %s serão excluidos."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Reativação"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Reativar o plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Visitantes"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Dia mais visitado"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "arrastar e soltar para classificar"
971
+
locale/cpd-ru_RU.mo CHANGED
Binary file
locale/cpd-ru_RU.po CHANGED
@@ -19,766 +19,954 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
- #: counter-options.php:46
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Настройки сохранены"
26
 
27
- #: counter-options.php:111
28
  #, php-format
29
  #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "База данных очищена. %s строчек удалено."
32
 
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
38
 
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "Таблица %s удалена"
46
 
47
- #: counter-options.php:132
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Настройки удалены"
51
 
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Деинсталяция"
57
 
58
- #: counter-options.php:157
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Нажмите сюда"
62
 
63
- #: counter-options.php:157
64
  #@ cpd
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
67
 
68
- #: counter-options.php:179
69
- #@ cpd
70
- msgid "Options"
71
- msgstr "Настройки"
72
-
73
- #: counter-options.php:190
74
  #@ cpd
75
  msgid "Online time"
76
  msgstr "Время онлайн"
77
 
78
- #: counter-options.php:191
79
  #@ cpd
80
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
81
  msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
82
 
83
- #: counter-options.php:194
84
  #@ cpd
85
  msgid "Logged on Users"
86
  msgstr "Вошедших пользователей"
87
 
88
- #: counter-options.php:196
89
  #@ cpd
90
  msgid "count too"
91
  msgstr "также считать"
92
 
93
- #: counter-options.php:208
94
  #@ cpd
95
  msgid "Auto counter"
96
  msgstr "Автоматический счетчик"
97
 
98
- #: counter-options.php:209
99
  #@ cpd
100
  msgid "Counts automatically single-posts and pages, no changes on template needed."
101
  msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
102
 
103
- #: counter-options.php:212
104
  #@ cpd
105
  msgid "Bots to ignore"
106
  msgstr "Игнорировать ботов"
107
 
108
- #: counter-options.php:331
109
  #@ cpd
110
  msgid "Update options"
111
  msgstr "Сохранить настройки"
112
 
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
  #@ cpd
116
  msgid "Clean the database"
117
  msgstr "Очистить базу данных"
118
 
119
- #: counter-options.php:448
120
  #@ cpd
121
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
122
  msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
123
 
124
- #: counter-options.php:484
125
  #@ cpd
126
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
127
  msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
128
 
129
- #: counter-options.php:485
130
  #@ cpd
131
  msgid "Here you can delete the tables and disable \"Count per Day\"."
132
  msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
133
 
134
- #: counter-options.php:488
135
  #@ cpd
136
  msgid "WARNING"
137
  msgstr "ВНИМАНИЕ"
138
 
139
- #: counter-options.php:489
140
  #@ cpd
141
  msgid "These tables (with ALL counter data) will be deleted."
142
  msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
143
 
144
- #: counter-options.php:491
145
  #@ cpd
146
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
147
  msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
148
 
149
- #: counter-options.php:495
 
150
  #@ cpd
151
  msgid "Yes"
152
  msgstr "Да"
153
 
154
- #: counter-options.php:496
155
  #@ cpd
156
  msgid "You are sure to disable Count per Day and delete all data?"
157
  msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
158
 
159
- #: counter.php:1786
160
- #: counter.php:2147
161
  #@ cpd
162
  msgid "Statistics"
163
  msgstr "Статистика"
164
 
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
  #@ cpd
171
  msgid "Total visitors"
172
  msgstr "Всего посетителей"
173
 
174
- #: counter.php:530
175
- #: counter.php:2230
176
  #@ cpd
177
  msgid "Visitors currently online"
178
  msgstr "Посетителей сейчас на сайте"
179
 
180
- #: counter.php:531
181
- #: counter.php:2225
182
  #@ cpd
183
  msgid "Visitors today"
184
  msgstr "Посетителей сегодня"
185
 
186
- #: counter.php:532
187
- #: counter.php:2226
188
  #@ cpd
189
  msgid "Visitors yesterday"
190
  msgstr "Посетителей вчера"
191
 
192
- #: counter.php:533
193
- #: counter.php:2227
194
  #@ cpd
195
  msgid "Visitors last week"
196
  msgstr "Посетителей на прошлой неделе"
197
 
198
- #: counter.php:536
199
- #: counter.php:2231
 
200
  #@ cpd
201
  msgid "Counter starts on"
202
  msgstr "Счетчик начинается с"
203
 
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
  #@ cpd
212
  msgid "Visitors per day"
213
  msgstr "Посетителей в день"
214
 
215
- #: counter.php:1752
216
- #: counter.php:2228
217
  #@ cpd
218
  msgid "Visitors per month"
219
  msgstr "Посетителей в месяц"
220
 
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
  #@ cpd
224
  msgid "Visitors per post"
225
  msgstr "Посетителей записи"
226
 
227
- #: counter-options.php:117
228
  #@ cpd
229
  msgid "Counter reseted."
230
- msgstr "Счетчик обнулен"
231
 
232
- #: counter-options.php:233
233
  #@ default
234
  msgid "Dashboard"
235
  msgstr "Консоль"
236
 
237
- #: counter-options.php:237
238
- #: counter-options.php:241
239
  #@ cpd
240
  msgid "How many posts do you want to see on dashboard page?"
241
  msgstr "Сколько записей вы хотите видеть на странице консоли?"
242
 
243
- #: counter-options.php:240
244
  #@ cpd
245
  msgid "Latest Counts - Posts"
246
  msgstr "Последние счетчики - Записи"
247
 
248
- #: counter-options.php:244
249
  #@ cpd
250
  msgid "Latest Counts - Days"
251
  msgstr "Последние счетчики - Дни"
252
 
253
- #: counter-options.php:245
254
- #: counter-options.php:249
255
- #: counter-options.php:275
256
  #@ cpd
257
  msgid "How many days do you want look back?"
258
  msgstr "Насколько дней назад вы хотите видеть статистику?"
259
 
260
- #: counter-options.php:248
261
  #@ cpd
262
  msgid "Chart - Days"
263
  msgstr "Таблица - Дни"
264
 
265
- #: counter-options.php:252
266
  #@ cpd
267
  msgid "Chart - Height"
268
  msgstr "Таблица - Высота"
269
 
270
- #: counter-options.php:253
271
  #@ cpd
272
  msgid "Height of the biggest bar"
273
  msgstr "Высота самого большого столбика"
274
 
275
- #: counter-options.php:290
276
  #@ cpd
277
  msgid "Show in lists"
278
  msgstr "Показать в списках"
279
 
280
- #: counter-options.php:291
281
  #@ cpd
282
  msgid "Show \"Reads per Post\" in a new column in post management views."
283
  msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
284
 
285
- #: counter-options.php:463
286
- #: counter-options.php:472
287
  #@ cpd
288
  msgid "Reset the counter"
289
  msgstr "Обнулить счетчик"
290
 
291
- #: counter-options.php:466
292
  #@ cpd
293
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
294
  msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
295
 
296
- #: counter.php:845
297
- #@ cpd
298
- msgid "no reads at this time"
299
- msgstr "нет прочтений к этому времени"
300
-
301
- #: counter.php:819
302
- #@ cpd
303
- msgid "days"
304
- msgstr "дней"
305
-
306
- #: counter.php:1257
307
  #, php-format
308
  #@ cpd
309
  msgid "The %s most visited posts in last %s days:"
310
  msgstr "Самое %s посещаемые записи за последние %s дней:"
311
 
312
- #: counter.php:1591
 
 
313
  #@ default
314
  msgid "Settings"
315
  msgstr "Настройки"
316
 
317
- #: counter.php:635
318
- #: counter.php:1766
319
  #@ cpd
320
  msgid "Reads per day"
321
  msgstr "Прочтений в день"
322
 
323
- #: counter-options.php:225
324
- #: counter.php:528
325
- #: counter.php:1661
 
326
  #@ cpd
327
  msgid "Reads"
328
  msgstr "Прочтений"
329
 
330
- #: counter.php:2218
331
  #@ cpd
332
  msgid "This post"
333
  msgstr "Эта запись"
334
 
335
- #: counter-options.php:57
336
  #, php-format
337
  #@ cpd
338
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
339
  msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
340
 
341
- #: counter-options.php:62
342
  #@ cpd
343
  msgid "update next"
344
  msgstr "обновить следующий"
345
 
346
- #: counter-options.php:104
347
  #, php-format
348
  #@ cpd
349
  msgid "Mass Bots cleaned. %s counts deleted."
350
  msgstr "Таблица ботов очищена. %s записей удалено"
351
 
352
- #: counter-options.php:197
353
  #@ cpd
354
  msgid "until User Level"
355
  msgstr "до уровня пользователя"
356
 
357
- #: counter-options.php:216
358
  #@ cpd
359
  msgid "Anonymous IP"
360
  msgstr "Анонимный IP"
361
 
362
- #: counter-options.php:261
363
  #@ cpd
364
  msgid "Countries"
365
  msgstr "Страны"
366
 
367
- #: counter-options.php:262
368
  #@ cpd
369
  msgid "How many countries do you want to see on dashboard page?"
370
  msgstr "Сколько стран вы хотите видеть в списке?"
371
 
372
- #: counter-options.php:299
373
  #@ cpd
374
  msgid "Start Values"
375
  msgstr "Начальные данные"
376
 
377
- #: counter-options.php:303
378
  #@ cpd
379
  msgid "Here you can change the date of first count and add a start count."
380
  msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
381
 
382
- #: counter-options.php:307
383
  #@ cpd
384
  msgid "Start date"
385
  msgstr "Дата начала"
386
 
387
- #: counter-options.php:308
388
  #@ cpd
389
  msgid "Your old Counter starts at?"
390
  msgstr "Ваш старый Счетчик начинался с"
391
 
392
- #: counter-options.php:311
393
- #: counter-options.php:315
394
  #@ cpd
395
  msgid "Start count"
396
  msgstr "Начало отсчета"
397
 
398
- #: counter-options.php:312
399
  #@ cpd
400
  msgid "Add this value to \"Total visitors\"."
401
  msgstr "Добавить значение к \"Всего посетителей\"."
402
 
403
- #: counter-options.php:340
404
  #@ cpd
405
  msgid "GeoIP - Countries"
406
  msgstr "GeoIP - Страны"
407
 
408
- #: counter-options.php:349
409
  #@ cpd
410
  msgid "Update old counter data"
411
  msgstr "Обновить данные старого счетчика"
412
 
413
- #: counter-options.php:362
414
  #@ cpd
415
  msgid "Update GeoIP database"
416
  msgstr "Обновить базу данных GeoIP"
417
 
418
- #: counter-options.php:365
419
  #@ cpd
420
  msgid "Download a new version of GeoIP.dat file."
421
  msgstr "Скачать новую версию файла GeoIP.dat."
422
 
423
- #: counter-options.php:371
424
  #@ cpd
425
  msgid "More informations about GeoIP"
426
  msgstr "Больше информации про GeoIP"
427
 
428
- #: counter-options.php:386
429
- #: massbots.php:33
430
  #@ cpd
431
  msgid "Mass Bots"
432
  msgstr "Вероятные боты"
433
 
434
- #: counter-options.php:390
435
  #, php-format
436
  #@ cpd
437
  msgid "Show all IPs with more than %s page views per day"
438
  msgstr "Показать все IP с более чем %s просмотров в сутки"
439
 
440
- #: counter-options.php:391
441
- #: notes.php:76
442
- #: userperspan.php:43
443
  #@ cpd
444
  msgid "show"
445
  msgstr "показать"
446
 
447
- #: counter-options.php:399
448
  #@ cpd
449
  msgid "IP"
450
  msgstr "IP"
451
 
452
- #: counter-options.php:400
453
- #: notes.php:80
454
  #@ cpd
455
  #@ default
456
  msgid "Date"
457
  msgstr "Дата"
458
 
459
- #: counter-options.php:401
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Клиент"
463
 
464
- #: counter-options.php:402
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Просмотров"
468
 
469
- #: counter-options.php:413
470
- #: counter-options.php:435
471
  #, php-format
472
  #@ cpd
473
  msgid "Delete these %s counts"
474
  msgstr "Удалить эти %s счетчиков"
475
 
476
- #: counter-options.php:504
477
  #@ cpd
478
  msgid "Support"
479
  msgstr "Поддержка"
480
 
481
- #: counter.php:1716
482
  #, php-format
483
  #@ cpd
484
  msgid "Time for Count per Day: <code>%s</code>."
485
  msgstr "Время для Count per Day: <code>%s</code>"
486
 
487
- #: counter.php:1717
488
  #@ cpd
489
  msgid "Bug? Problem? Question? Hint? Praise?"
490
  msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
491
 
492
- #: counter.php:1718
493
  #, php-format
494
  #@ cpd
495
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
496
  msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
497
 
498
- #: counter.php:524
499
- #: counter.php:2219
500
  #@ cpd
501
  msgid "Total reads"
502
  msgstr "Всего прочтений"
503
 
504
- #: counter.php:525
505
- #: counter.php:2220
506
  #@ cpd
507
  msgid "Reads today"
508
  msgstr "Прочтений сегодня"
509
 
510
- #: counter.php:526
511
- #: counter.php:2221
512
  #@ cpd
513
  msgid "Reads yesterday"
514
  msgstr "Прочтений вчера"
515
 
516
- #: counter.php:822
517
- #: counter.php:1376
518
- #: notes.php:47
519
- #: notes.php:81
520
  #@ cpd
521
  msgid "Notes"
522
  msgstr "Заметки"
523
 
524
- #: counter.php:1374
525
  #@ default
526
  msgid "Show"
527
  msgstr "Показать"
528
 
529
- #: counter.php:1421
530
  #@ cpd
531
  msgid "Other"
532
  msgstr "Другие"
533
 
534
- #: counter.php:1505
535
  #@ default
536
  msgid "Edit Post"
537
  msgstr "Редактировать запись"
538
 
539
- #: counter.php:1520
540
- #: massbots.php:50
541
  #: userperspan.php:63
542
  #@ default
543
  msgid "Front page displays"
544
  msgstr "Отображений главной страницы"
545
 
546
- #: counter-options.php:266
547
- #: counter.php:1760
548
  #@ cpd
549
  msgid "Browsers"
550
  msgstr "Браузеры"
551
 
552
- #: counter.php:1755
553
  #@ cpd
554
  msgid "Latest Counts"
555
  msgstr "Недавние подсчеты"
556
 
557
- #: counter.php:1757
558
  #@ default
559
  msgid "Plugin"
560
  msgstr "Плагин"
561
 
562
- #: counter.php:1770
563
  #@ cpd
564
  msgid "Reads per Country"
565
  msgstr "Прочтений по странам"
566
 
567
- #: counter.php:900
568
- #: counter.php:1856
569
  #@ cpd
570
  msgid "Map"
571
  msgstr "Карта"
572
 
573
- #: geoip/geoip.php:108
574
  #@ cpd
575
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
576
  msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
577
 
578
- #: geoip/geoip.php:132
579
  #@ cpd
580
  msgid "New GeoIP database installed."
581
  msgstr "Новая база данных GeoIP установлена."
582
 
583
- #: geoip/geoip.php:134
584
  #@ cpd
585
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
586
  msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
587
 
588
- #: notes.php:81
589
- #@ cpd
590
- msgid "(1 per day)"
591
- msgstr "(1 на сутки)"
592
-
593
- #: notes.php:82
594
  #@ default
595
  msgid "Action"
596
  msgstr "Действие"
597
 
598
- #: notes.php:87
599
  #@ cpd
600
  msgid "add"
601
  msgstr "добавить"
602
 
603
- #: notes.php:102
604
  #@ cpd
605
  msgid "save"
606
  msgstr "сохранить"
607
 
608
- #: notes.php:103
609
  #@ cpd
610
  msgid "delete"
611
  msgstr "удалить"
612
 
613
- #: notes.php:114
614
  #@ cpd
615
  msgid "edit"
616
  msgstr "редактировать"
617
 
618
- #: counter-options.php:220
619
  #@ cpd
620
  msgid "Cache"
621
  msgstr "Кэш"
622
 
623
- #: counter-options.php:221
624
  #@ cpd
625
  msgid "I use a cache plugin. Count these visits with ajax."
626
  msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
627
 
628
- #: counter-options.php:267
629
  #@ cpd
630
  msgid "Substring of the user agent, separated by comma"
631
  msgstr "Подстрока агента пользователя разделенный запятой"
632
 
633
- #: counter-options.php:324
634
  #@ cpd
635
  msgid "Debug mode"
636
  msgstr "Режим отладки"
637
 
638
- #: counter-options.php:326
639
  #@ cpd
640
  msgid "Show debug informations at the bottom of all pages."
641
  msgstr "Добавить отладочную информацию внизу каждой страницы."
642
 
643
- #: counter.php:1771
644
  #@ cpd
645
  msgid "Visitors per Country"
646
  msgstr "Посетителей по странам"
647
 
648
- #: userperspan.php:37
649
  #@ cpd
650
  msgid "Start"
651
  msgstr "Начало"
652
 
653
- #: userperspan.php:39
654
  #@ cpd
655
  msgid "End"
656
  msgstr "Конец"
657
 
658
- #: userperspan.php:41
659
  #@ cpd
660
  msgid "PostID"
661
  msgstr "ID сообщения"
662
 
663
- #: counter-options.php:316
664
  #@ cpd
665
  msgid "Add this value to \"Total reads\"."
666
  msgstr "Добавить значение к \"Всего прочтений\"."
667
 
668
- #: counter-options.php:352
669
  #@ cpd
670
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
671
  msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
672
 
673
- #: userperspan.php:49
674
  #@ cpd
675
  msgid "no data found"
676
  msgstr "ничего не найдено"
677
 
678
- #: counter-options.php:186
679
  #@ cpd
680
  msgid "Counter"
681
  msgstr "Счетчик"
682
 
683
- #: counter-options.php:224
684
  #@ cpd
685
  msgid "Clients and referrers"
686
  msgstr "Клиенты и ссылающиеся сайты"
687
 
688
- #: counter-options.php:225
689
  #@ cpd
690
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
691
  msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
692
 
693
- #: counter-options.php:278
694
  #@ cpd
695
  msgid "Local URLs"
696
  msgstr "Локальные URL"
697
 
698
- #: counter-options.php:279
699
  #@ cpd
700
  msgid "Show local referrers too."
701
  msgstr "Показывать локальные переходы тоже."
702
 
703
- #: counter-options.php:287
704
  #@ default
705
  msgid "Posts"
706
  msgstr "Записи"
707
 
708
- #: counter-options.php:287
709
  #@ default
710
  msgid "Pages"
711
  msgstr "Страницы"
712
 
713
- #: counter.php:527
714
- #: counter.php:2222
715
  #@ cpd
716
  msgid "Reads last week"
717
  msgstr "Прочтений на прошлой неделе"
718
 
719
- #: counter.php:1514
720
  #@ default
721
  msgid "Category"
722
  msgstr "Категория"
723
 
724
- #: counter.php:1517
725
  #@ default
726
  msgid "Tag"
727
  msgstr "Тег"
728
 
729
- #: counter.php:1719
730
  #@ default
731
  msgid "License"
732
  msgstr "Лицензия"
733
 
734
- #: counter.php:1753
735
- #: counter.php:2223
736
  #@ cpd
737
  msgid "Reads per month"
738
  msgstr "Прочтений за месяц"
739
 
740
- #: counter.php:1761
741
  #@ cpd
742
  msgid "Referrer"
743
  msgstr "Ссылающийся сайт"
744
 
745
- #: counter-options.php:256
746
- #@ cpd
747
- msgid "Old Charts"
748
- msgstr "Старые таблицы"
749
-
750
- #: counter-options.php:257
751
- #@ cpd
752
- msgid "Show old bar charts."
753
- msgstr "Отображать в таблицу столбиками"
754
-
755
- #: counter-options.php:270
756
  #@ cpd
757
  msgid "Referrers - Entries"
758
  msgstr "Ссылающиеся сайты - Вхождения"
759
 
760
- #: counter-options.php:271
761
  #@ cpd
762
  msgid "How many referrers do you want to see on dashboard page?"
763
  msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
764
 
765
- #: counter-options.php:274
766
  #@ cpd
767
  msgid "Referrers - Days"
768
  msgstr "Ссылающиеся сайты - Дни"
769
 
770
- #: counter.php:1449
771
  #, php-format
772
  #@ cpd
773
  msgid "The %s referrers in last %s days:"
774
  msgstr "%s ссылающихся сайтов за последние %s дней:"
775
 
776
- #: counter.php:1751
777
  #@ cpd
778
  msgid "Visitors online"
779
  msgstr "Посетителей на сайте"
780
 
781
- #: counter.php:2242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
782
  #@ default
783
  msgid "Title"
784
- msgstr "Заголовок"
 
 
 
 
 
 
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:49
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Настройки сохранены"
26
 
27
+ #: counter-options.php:112
28
  #, php-format
29
  #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "База данных очищена. %s строчек удалено."
32
 
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
38
 
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "Таблица %s удалена"
46
 
47
+ #: counter-options.php:135
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Настройки удалены"
51
 
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Деинсталяция"
57
 
58
+ #: counter-options.php:317
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Нажмите сюда"
62
 
63
+ #: counter-options.php:317
64
  #@ cpd
65
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
  msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
67
 
68
+ #: counter-options.php:355
 
 
 
 
 
69
  #@ cpd
70
  msgid "Online time"
71
  msgstr "Время онлайн"
72
 
73
+ #: counter-options.php:356
74
  #@ cpd
75
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
  msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
77
 
78
+ #: counter-options.php:359
79
  #@ cpd
80
  msgid "Logged on Users"
81
  msgstr "Вошедших пользователей"
82
 
83
+ #: counter-options.php:361
84
  #@ cpd
85
  msgid "count too"
86
  msgstr "также считать"
87
 
88
+ #: counter-options.php:373
89
  #@ cpd
90
  msgid "Auto counter"
91
  msgstr "Автоматический счетчик"
92
 
93
+ #: counter-options.php:374
94
  #@ cpd
95
  msgid "Counts automatically single-posts and pages, no changes on template needed."
96
  msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
97
 
98
+ #: counter-options.php:377
99
  #@ cpd
100
  msgid "Bots to ignore"
101
  msgstr "Игнорировать ботов"
102
 
103
+ #: counter-options.php:561
104
  #@ cpd
105
  msgid "Update options"
106
  msgstr "Сохранить настройки"
107
 
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
  #@ cpd
111
  msgid "Clean the database"
112
  msgstr "Очистить базу данных"
113
 
114
+ #: counter-options.php:659
115
  #@ cpd
116
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
  msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
118
 
119
+ #: counter-options.php:799
120
  #@ cpd
121
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
  msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
123
 
124
+ #: counter-options.php:800
125
  #@ cpd
126
  msgid "Here you can delete the tables and disable \"Count per Day\"."
127
  msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
128
 
129
+ #: counter-options.php:803
130
  #@ cpd
131
  msgid "WARNING"
132
  msgstr "ВНИМАНИЕ"
133
 
134
+ #: counter-options.php:804
135
  #@ cpd
136
  msgid "These tables (with ALL counter data) will be deleted."
137
  msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
138
 
139
+ #: counter-options.php:806
140
  #@ cpd
141
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
  msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
143
 
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
  #@ cpd
147
  msgid "Yes"
148
  msgstr "Да"
149
 
150
+ #: counter-options.php:810
151
  #@ cpd
152
  msgid "You are sure to disable Count per Day and delete all data?"
153
  msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
154
 
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
  #@ cpd
158
  msgid "Statistics"
159
  msgstr "Статистика"
160
 
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
 
165
  #@ cpd
166
  msgid "Total visitors"
167
  msgstr "Всего посетителей"
168
 
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
  #@ cpd
172
  msgid "Visitors currently online"
173
  msgstr "Посетителей сейчас на сайте"
174
 
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
  #@ cpd
178
  msgid "Visitors today"
179
  msgstr "Посетителей сегодня"
180
 
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
  #@ cpd
184
  msgid "Visitors yesterday"
185
  msgstr "Посетителей вчера"
186
 
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
  #@ cpd
190
  msgid "Visitors last week"
191
  msgstr "Посетителей на прошлой неделе"
192
 
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Счетчик начинается с"
199
 
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
 
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Посетителей в день"
209
 
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Посетителей в месяц"
215
 
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Посетителей записи"
221
 
222
+ #: counter-options.php:122
223
  #@ cpd
224
  msgid "Counter reseted."
225
+ msgstr "Счетчик обнулен."
226
 
227
+ #: counter-options.php:403
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Консоль"
231
 
232
+ #: counter-options.php:439
233
+ #: counter-options.php:443
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Сколько записей вы хотите видеть на странице консоли?"
237
 
238
+ #: counter-options.php:442
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Последние счетчики - Записи"
242
 
243
+ #: counter-options.php:446
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Последние счетчики - Дни"
247
 
248
+ #: counter-options.php:447
249
+ #: counter-options.php:451
250
+ #: counter-options.php:473
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Насколько дней назад вы хотите видеть статистику?"
254
 
255
+ #: counter-options.php:450
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Таблица - Дни"
259
 
260
+ #: counter-options.php:454
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Таблица - Высота"
264
 
265
+ #: counter-options.php:455
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Высота самого большого столбика"
269
 
270
+ #: counter-options.php:488
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Показать в списках"
274
 
275
+ #: counter-options.php:489
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
279
 
280
+ #: counter-options.php:777
281
+ #: counter-options.php:787
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Обнулить счетчик"
285
 
286
+ #: counter-options.php:780
287
  #@ cpd
288
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
289
  msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
290
 
291
+ #: counter.php:672
 
 
 
 
 
 
 
 
 
 
292
  #, php-format
293
  #@ cpd
294
  msgid "The %s most visited posts in last %s days:"
295
  msgstr "Самое %s посещаемые записи за последние %s дней:"
296
 
297
+ #: counter-core.php:575
298
+ #: counter-options.php:341
299
+ #: counter-options.php:565
300
  #@ default
301
  msgid "Settings"
302
  msgstr "Настройки"
303
 
304
+ #: counter.php:262
 
305
  #@ cpd
306
  msgid "Reads per day"
307
  msgstr "Прочтений в день"
308
 
309
+ #: counter-core.php:639
310
+ #: counter-options.php:392
311
+ #: counter.php:159
312
+ #: counter.php:875
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "Прочтений"
316
 
317
+ #: counter.php:1196
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "Эта запись"
321
 
322
+ #: counter-options.php:60
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
327
 
328
+ #: counter-options.php:65
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "обновить следующий"
332
 
333
+ #: counter-options.php:102
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "Таблица ботов очищена. %s записей удалено"
338
 
339
+ #: counter-options.php:362
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr "до уровня пользователя"
343
 
344
+ #: counter-options.php:381
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "Анонимный IP"
348
 
349
+ #: counter-options.php:459
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "Страны"
353
 
354
+ #: counter-options.php:460
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "Сколько стран вы хотите видеть в списке?"
358
 
359
+ #: counter-options.php:497
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "Начальные данные"
363
 
364
+ #: counter-options.php:501
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
368
 
369
+ #: counter-options.php:505
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "Дата начала"
373
 
374
+ #: counter-options.php:506
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "Ваш старый Счетчик начинался с"
378
 
379
+ #: counter-options.php:509
380
+ #: counter-options.php:513
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "Начало отсчета"
384
 
385
+ #: counter-options.php:510
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr "Добавить значение к \"Всего посетителей\"."
389
 
390
+ #: counter-options.php:727
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - Страны"
394
 
395
+ #: counter-options.php:736
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "Обновить данные старого счетчика"
399
 
400
+ #: counter-options.php:748
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "Обновить базу данных GeoIP"
404
 
405
+ #: counter-options.php:743
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "Скачать новую версию файла GeoIP.dat."
409
 
410
+ #: counter-options.php:753
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr "Больше информации про GeoIP"
414
 
415
+ #: counter-options.php:580
416
+ #: massbots.php:35
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "Вероятные боты"
420
 
421
+ #: counter-options.php:584
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "Показать все IP с более чем %s просмотров в сутки"
426
 
427
+ #: counter-options.php:585
428
+ #: notes.php:71
429
+ #: userperspan.php:44
430
  #@ cpd
431
  msgid "show"
432
  msgstr "показать"
433
 
434
+ #: counter-options.php:593
435
  #@ cpd
436
  msgid "IP"
437
  msgstr "IP"
438
 
439
+ #: counter-options.php:594
440
+ #: notes.php:75
441
  #@ cpd
442
  #@ default
443
  msgid "Date"
444
  msgstr "Дата"
445
 
446
+ #: counter-options.php:595
447
  #@ cpd
448
  msgid "Client"
449
  msgstr "Клиент"
450
 
451
+ #: counter-options.php:596
452
  #@ cpd
453
  msgid "Views"
454
  msgstr "Просмотров"
455
 
456
+ #: counter-options.php:611
457
+ #: counter-options.php:627
458
  #, php-format
459
  #@ cpd
460
  msgid "Delete these %s counts"
461
  msgstr "Удалить эти %s счетчиков"
462
 
463
+ #: counter-options.php:714
464
  #@ cpd
465
  msgid "Support"
466
  msgstr "Поддержка"
467
 
468
+ #: counter-core.php:689
469
  #, php-format
470
  #@ cpd
471
  msgid "Time for Count per Day: <code>%s</code>."
472
  msgstr "Время для Count per Day: <code>%s</code>"
473
 
474
+ #: counter-core.php:690
475
  #@ cpd
476
  msgid "Bug? Problem? Question? Hint? Praise?"
477
  msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
478
 
479
+ #: counter-core.php:691
480
  #, php-format
481
  #@ cpd
482
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
483
  msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
484
 
485
+ #: counter.php:155
486
+ #: counter.php:1197
487
  #@ cpd
488
  msgid "Total reads"
489
  msgstr "Всего прочтений"
490
 
491
+ #: counter.php:156
492
+ #: counter.php:1198
493
  #@ cpd
494
  msgid "Reads today"
495
  msgstr "Прочтений сегодня"
496
 
497
+ #: counter.php:157
498
+ #: counter.php:1199
499
  #@ cpd
500
  msgid "Reads yesterday"
501
  msgstr "Прочтений вчера"
502
 
503
+ #: counter.php:788
504
+ #: notes.php:42
505
+ #: notes.php:76
 
506
  #@ cpd
507
  msgid "Notes"
508
  msgstr "Заметки"
509
 
510
+ #: counter.php:786
511
  #@ default
512
  msgid "Show"
513
  msgstr "Показать"
514
 
515
+ #: counter.php:821
516
  #@ cpd
517
  msgid "Other"
518
  msgstr "Другие"
519
 
520
+ #: counter.php:976
521
  #@ default
522
  msgid "Edit Post"
523
  msgstr "Редактировать запись"
524
 
525
+ #: counter.php:991
526
+ #: massbots.php:52
527
  #: userperspan.php:63
528
  #@ default
529
  msgid "Front page displays"
530
  msgstr "Отображений главной страницы"
531
 
532
+ #: counter-core.php:733
533
+ #: counter-options.php:464
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "Браузеры"
537
 
538
+ #: counter-core.php:728
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "Недавние подсчеты"
542
 
543
+ #: counter-core.php:730
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "Плагин"
547
 
548
+ #: counter-core.php:738
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "Прочтений по странам"
552
 
553
+ #: counter.php:353
554
+ #: counter.php:1041
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Карта"
558
 
559
+ #: geoip/geoip.php:93
560
  #@ cpd
561
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
  msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
563
 
564
+ #: geoip/geoip.php:117
565
  #@ cpd
566
  msgid "New GeoIP database installed."
567
  msgstr "Новая база данных GeoIP установлена."
568
 
569
+ #: geoip/geoip.php:119
570
  #@ cpd
571
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
  msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
573
 
574
+ #: notes.php:77
 
 
 
 
 
575
  #@ default
576
  msgid "Action"
577
  msgstr "Действие"
578
 
579
+ #: notes.php:82
580
  #@ cpd
581
  msgid "add"
582
  msgstr "добавить"
583
 
584
+ #: notes.php:98
585
  #@ cpd
586
  msgid "save"
587
  msgstr "сохранить"
588
 
589
+ #: notes.php:99
590
  #@ cpd
591
  msgid "delete"
592
  msgstr "удалить"
593
 
594
+ #: notes.php:110
595
  #@ cpd
596
  msgid "edit"
597
  msgstr "редактировать"
598
 
599
+ #: counter-options.php:385
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "Кэш"
603
 
604
+ #: counter-options.php:386
605
  #@ cpd
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
608
 
609
+ #: counter-options.php:465
610
  #@ cpd
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "Подстрока агента пользователя разделенный запятой"
613
 
614
+ #: counter-options.php:554
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "Режим отладки"
618
 
619
+ #: counter-options.php:556
620
  #@ cpd
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "Добавить отладочную информацию внизу каждой страницы."
623
 
624
+ #: counter-core.php:739
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Посетителей по странам"
628
 
629
+ #: userperspan.php:38
630
  #@ cpd
631
  msgid "Start"
632
  msgstr "Начало"
633
 
634
+ #: userperspan.php:40
635
  #@ cpd
636
  msgid "End"
637
  msgstr "Конец"
638
 
639
+ #: userperspan.php:42
640
  #@ cpd
641
  msgid "PostID"
642
  msgstr "ID сообщения"
643
 
644
+ #: counter-options.php:514
645
  #@ cpd
646
  msgid "Add this value to \"Total reads\"."
647
  msgstr "Добавить значение к \"Всего прочтений\"."
648
 
649
+ #: counter-options.php:730
650
  #@ cpd
651
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
652
  msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
653
 
654
+ #: userperspan.php:50
655
  #@ cpd
656
  msgid "no data found"
657
  msgstr "ничего не найдено"
658
 
659
+ #: counter-options.php:351
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Счетчик"
663
 
664
+ #: counter-options.php:389
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Клиенты и ссылающиеся сайты"
668
 
669
+ #: counter-options.php:392
670
  #@ cpd
671
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
  msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
673
 
674
+ #: counter-options.php:476
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Локальные URL"
678
 
679
+ #: counter-options.php:477
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Показывать локальные переходы тоже."
683
 
684
+ #: counter-options.php:485
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Записи"
688
 
689
+ #: counter-options.php:485
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Страницы"
693
 
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Прочтений на прошлой неделе"
699
 
700
+ #: counter.php:985
701
  #@ default
702
  msgid "Category"
703
  msgstr "Категория"
704
 
705
+ #: counter.php:988
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Тег"
709
 
710
+ #: counter-core.php:692
711
  #@ default
712
  msgid "License"
713
  msgstr "Лицензия"
714
 
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Прочтений за месяц"
720
 
721
+ #: counter-core.php:734
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Ссылающийся сайт"
725
 
726
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "Ссылающиеся сайты - Вхождения"
730
 
731
+ #: counter-options.php:469
732
  #@ cpd
733
  msgid "How many referrers do you want to see on dashboard page?"
734
  msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
735
 
736
+ #: counter-options.php:472
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "Ссылающиеся сайты - Дни"
740
 
741
+ #: counter.php:845
742
  #, php-format
743
  #@ cpd
744
  msgid "The %s referrers in last %s days:"
745
  msgstr "%s ссылающихся сайтов за последние %s дней:"
746
 
747
+ #: counter-core.php:724
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "Посетителей на сайте"
751
 
752
+ #: counter-core.php:186
753
+ #, php-format
754
+ #@ cpd
755
+ msgid "\"Count per Day\" updated to version %s."
756
+ msgstr "\"Count per Day\" обновлен до версии %s"
757
+
758
+ #: counter-core.php:917
759
+ #@ cpd
760
+ msgid "Backup failed! Cannot open file"
761
+ msgstr "Обновление не удалось! Не могу открыть файл"
762
+
763
+ #: counter-core.php:940
764
+ #, php-format
765
+ #@ cpd
766
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
767
+ msgstr "Происходит резервное соранение %s записей. Каждой точке соответствует %s записей."
768
+
769
+ #: counter-core.php:1027
770
+ #@ cpd
771
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
772
+ msgstr "Ваша папка wp-content только для чтения, но вы можете скопировать содержимое этого поля в текстовый файл."
773
+
774
+ #: counter-core.php:1033
775
+ #, php-format
776
+ #@ cpd
777
+ msgid "Backup of counter table saved in %s."
778
+ msgstr "Резервная копия таблицы счетчика сохранена в %s"
779
+
780
+ #: counter-core.php:1035
781
+ #, php-format
782
+ #@ cpd
783
+ msgid "Backup of counter options and collection saved in %s."
784
+ msgstr "Резервная копия настроек счетчика и коллекции сохранены в %s"
785
+
786
+ #: counter-options.php:170
787
+ #@ cpd
788
+ msgid "Collection in progress..."
789
+ msgstr "Происходит сбор данных..."
790
+
791
+ #: counter-options.php:240
792
+ #@ cpd
793
+ msgid "Get Visitors per Post..."
794
+ msgstr "Получить посетителей по записям..."
795
+
796
+ #: counter-options.php:261
797
+ #@ cpd
798
+ msgid "Delete old data..."
799
+ msgstr "Удалить старые данные..."
800
+
801
+ #: counter-options.php:285
802
+ #, php-format
803
+ #@ cpd
804
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
805
+ msgstr "Записи счетчика до %s собраны и оптимизирована таблица счетчика %s (размер перед = %s &gt; размер после = %s)."
806
+
807
+ #: counter-options.php:294
808
+ #@ cpd
809
+ msgid "Installation of \"Count per Day\" checked"
810
+ msgstr "Установка \"Count per Day\" проверена"
811
+
812
+ #: counter-options.php:342
813
+ #: counter-options.php:566
814
+ #@ default
815
+ msgid "Tools"
816
+ msgstr "Инструменты"
817
+
818
+ #: counter-options.php:394
819
+ #@ cpd
820
+ msgid "Save URL only, no query string."
821
+ msgstr "Сохранять только URL без строки запроса."
822
+
823
+ #: counter-options.php:419
824
+ #@ cpd
825
+ msgid "Who can see it"
826
+ msgstr "Кто может это видеть"
827
+
828
+ #: counter-options.php:428
829
+ #@ cpd
830
+ msgid "custom"
831
+ msgstr "пользовательский"
832
+
833
+ #: counter-options.php:430
834
+ #@ cpd
835
+ msgid "and higher are allowed to see the statistics page."
836
+ msgstr "и выше могут видеть статистику страницы."
837
+
838
+ #: counter-options.php:432
839
+ #, php-format
840
+ #@ cpd
841
+ msgid "Set the %s capability %s a user need:"
842
+ msgstr "Установить %s права % необходимые пользователю:"
843
+
844
+ #: counter-options.php:522
845
+ #@ cpd
846
+ msgid "Stylesheet"
847
+ msgstr "Стили"
848
+
849
+ #: counter-options.php:525
850
+ #@ cpd
851
+ msgid "NO Stylesheet in Frontend"
852
+ msgstr "НЕ использовать стили в интерфейсе"
853
+
854
+ #: counter-options.php:526
855
+ #@ cpd
856
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
857
+ msgstr "Не загружать файл стилей \"counter.css\" для интерфейса."
858
+
859
+ #: counter-options.php:534
860
+ #: counter-options.php:639
861
+ #@ cpd
862
+ msgid "Backup"
863
+ msgstr "Резервирование"
864
+
865
+ #: counter-options.php:537
866
+ #@ cpd
867
+ msgid "Entries per pass"
868
+ msgstr "Записей за один проход"
869
+
870
+ #: counter-options.php:540
871
+ #@ cpd
872
+ msgid "How many entries should be saved per pass? Default: 10000"
873
+ msgstr "Сколько записей сохранять за один проход? По умолчанию: 10000"
874
+
875
+ #: counter-options.php:545
876
+ #@ cpd
877
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
878
+ msgstr "Если ограничение памяти вашего PHP меньше 50 MB и вы получаете белую страницу или сообщения об ошибках, то попробуйте меньшее значение."
879
+
880
+ #: counter-options.php:643
881
+ #, php-format
882
+ #@ cpd
883
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
884
+ msgstr "Создать резервную копию таблицы счетчика %s в вашей папке wp-content (если она не только для чтения)"
885
+
886
+ #: counter-options.php:647
887
+ #@ cpd
888
+ msgid "Backup the database"
889
+ msgstr "Резервирование базы данных"
890
+
891
+ #: counter-options.php:674
892
+ #: counter-options.php:706
893
+ #@ cpd
894
+ msgid "Collect old data"
895
+ msgstr "Собрать старые данные"
896
+
897
+ #: counter-options.php:679
898
+ #, php-format
899
+ #@ cpd
900
+ msgid "Current size of your counter table %s is %s."
901
+ msgstr "Текущий размер вашей таблицы счетчика %s : %s."
902
+
903
+ #: counter-options.php:681
904
+ #@ cpd
905
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
906
+ msgstr "Вы можете собрать старые данные и очистить таблицу счетчика.<br/>Прочтения и посетители будут сохранены за каждый месяц, по стране и по записям.<br/>Клиенты и ссылающиеся сайты будут удалены."
907
+
908
+ #: counter-options.php:686
909
+ #, php-format
910
+ #@ cpd
911
+ msgid "Currently your collection contains data until %s."
912
+ msgstr "Сейчас ваша коллекция содержит данные до %s."
913
+
914
+ #: counter-options.php:690
915
+ #@ cpd
916
+ msgid "Normally new data will be added to the collection."
917
+ msgstr "Если все пройдет успешно, то новые данные будут добавлены в коллекцию."
918
+
919
+ #: counter-options.php:696
920
+ #@ cpd
921
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
922
+ msgstr "Удалить старую коллекцию и создать новую, которая содержит только данные, которые сейчас в таблице счетчика."
923
+
924
+ #: counter-options.php:697
925
+ #, php-format
926
+ #@ cpd
927
+ msgid "All collected data until %s will deleted."
928
+ msgstr "Все данные до %s будут удалены."
929
+
930
+ #: counter-options.php:702
931
+ #, php-format
932
+ #@ cpd
933
+ msgid "Keep entries of last %s full months + current month in counter table."
934
+ msgstr "Сохранить записи за последние %s полные месяца + текущий месяц в таблице счетчика."
935
+
936
+ #: counter-options.php:761
937
+ #@ cpd
938
+ msgid "ReActivation"
939
+ msgstr "Переактивация"
940
+
941
+ #: counter-options.php:764
942
+ #@ cpd
943
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
944
+ msgstr "Здесь вы можете запустить функции установки вручную.<br/>Точно также, как и деактивация и активация плагина."
945
+
946
+ #: counter-options.php:769
947
+ #@ cpd
948
+ msgid "ReActivate the plugin"
949
+ msgstr "Переактивировать плагин"
950
+
951
+ #: counter.php:165
952
+ #: counter.php:899
953
+ #@ cpd
954
+ msgid "Visitors"
955
+ msgstr "Посетителей"
956
+
957
+ #: counter.php:168
958
+ #: counter.php:169
959
+ #@ cpd
960
+ msgid "Most visited day"
961
+ msgstr "Самый посещаемый день"
962
+
963
+ #: counter.php:1220
964
  #@ default
965
  msgid "Title"
966
+ msgstr "Заголовок"
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr "перетащите для сортировки"
972
+
locale/cpd-sv_SE.mo CHANGED
Binary file
locale/cpd-sv_SE.po CHANGED
@@ -13,772 +13,960 @@ msgstr ""
13
  "X-Poedit-Language: Swedish\n"
14
  "X-Poedit-Country: SWEDEN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
 
20
 
21
- # @ cpd
22
- #: counter.php:524
23
- #: counter.php:2210
24
  msgid "Total reads"
25
  msgstr "Antal läsningar totalt"
26
 
27
- # @ cpd
28
- #: counter.php:525
29
- #: counter.php:2211
30
  msgid "Reads today"
31
  msgstr "Läsningar idag"
32
 
33
- # @ cpd
34
- #: counter.php:526
35
- #: counter.php:2212
36
  msgid "Reads yesterday"
37
  msgstr "Läsningar igår"
38
 
39
- # @ cpd
40
- #: counter.php:527
41
- #: counter.php:2213
42
  msgid "Reads last week"
43
  msgstr "Läsningar förra veckan"
44
 
45
- # @ cpd
46
- #: counter.php:528
47
- #: counter.php:1653
48
- #: counter-options.php:225
 
49
  msgid "Reads"
50
  msgstr "Visningar"
51
 
52
- # @ cpd
53
- #: counter.php:529
54
- #: counter.php:534
55
- #: counter.php:1596
56
- #: counter.php:1741
57
- #: counter.php:2215
58
  msgid "Total visitors"
59
  msgstr "Antal besökare totalt"
60
 
61
- # @ cpd
62
- #: counter.php:530
63
- #: counter.php:2221
64
  msgid "Visitors currently online"
65
  msgstr "Besökare online nu"
66
 
67
- # @ cpd
68
- #: counter.php:531
69
- #: counter.php:2216
70
  msgid "Visitors today"
71
  msgstr "Besökare idag"
72
 
73
- # @ cpd
74
- #: counter.php:532
75
- #: counter.php:2217
76
  msgid "Visitors yesterday"
77
  msgstr "Besökare igår"
78
 
79
- # @ cpd
80
- #: counter.php:533
81
- #: counter.php:2218
82
  msgid "Visitors last week"
83
  msgstr "Besökare förra veckan"
84
 
85
- # @ cpd
86
- #: counter.php:535
87
- #: counter.php:636
88
- #: counter.php:1598
89
- #: counter.php:1747
90
- #: counter.php:1756
91
- #: counter.php:2220
92
- #: userperspan.php:33
93
  msgid "Visitors per day"
94
  msgstr "Besök per dag"
95
 
96
- # @ cpd
97
- #: counter.php:536
98
- #: counter.php:2222
 
99
  msgid "Counter starts on"
100
  msgstr "Räknaren startar den"
101
 
102
- # @ cpd
103
- #: counter.php:635
104
- #: counter.php:1757
105
  msgid "Reads per day"
106
  msgstr "Läsningar per dag"
107
 
108
- # @ cpd
109
- #: counter.php:819
110
- msgid "days"
111
- msgstr "dagar"
112
-
113
- # @ cpd
114
- #: counter.php:822
115
- #: counter.php:1376
116
- #: notes.php:47
117
- #: notes.php:81
118
  msgid "Notes"
119
  msgstr "Anteckningar"
120
 
121
- # @ cpd
122
- #: counter.php:845
123
- msgid "no reads at this time"
124
- msgstr "inga läsningar vid denna tidpunkt"
125
-
126
- # @ cpd
127
- #: counter.php:900
128
- #: counter.php:1846
129
  msgid "Map"
130
  msgstr "Karta"
131
 
132
- # @ cpd
133
- #: counter.php:1257
134
  #, php-format
 
135
  msgid "The %s most visited posts in last %s days:"
136
  msgstr "De %s mest visade inläggen de senaste %s dagarna:"
137
 
138
- # @ default
139
- #: counter.php:1374
140
  msgid "Show"
141
  msgstr "Visa"
142
 
143
- # @ cpd
144
- #: counter.php:1415
145
  msgid "Other"
146
  msgstr "Övriga"
147
 
148
- # @ cpd
149
- #: counter.php:1440
150
  #, php-format
 
151
  msgid "The %s referrers in last %s days:"
152
  msgstr "De %s senaste hänvisningarna de senaste %s dagarna:"
153
 
154
- # @ default
155
- #: counter.php:1497
156
  msgid "Edit Post"
157
  msgstr "Redigera inlägg"
158
 
159
- # @ default
160
- #: counter.php:1506
161
  msgid "Category"
162
  msgstr "Kategori"
163
 
164
- # @ default
165
- #: counter.php:1509
166
  msgid "Tag"
167
  msgstr "Tag"
168
 
169
- # @ default
170
- #: counter.php:1512
171
- #: massbots.php:50
172
  #: userperspan.php:63
 
173
  msgid "Front page displays"
174
  msgstr "Visningar av framsidan"
175
 
176
- # @ default
177
- #: counter.php:1583
 
 
178
  msgid "Settings"
179
  msgstr "Inställningar"
180
 
181
- # @ cpd
182
- #: counter.php:1708
183
  #, php-format
 
184
  msgid "Time for Count per Day: <code>%s</code>."
185
  msgstr "Tid för Count per Day: <code>%s</code>."
186
 
187
- # @ cpd
188
- #: counter.php:1709
189
  msgid "Bug? Problem? Question? Hint? Praise?"
190
  msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
191
 
192
- # @ cpd
193
- #: counter.php:1710
194
  #, php-format
 
195
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
196
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
197
 
198
- # @ default
199
- #: counter.php:1711
200
  msgid "License"
201
  msgstr "Licens"
202
 
203
- # @ cpd
204
- #: counter.php:1742
205
  msgid "Visitors online"
206
  msgstr "Besökare online"
207
 
208
- # @ cpd
209
- #: counter.php:1743
210
- #: counter.php:2219
211
  msgid "Visitors per month"
212
  msgstr "Besökare per månad"
213
 
214
- # @ cpd
215
- #: counter.php:1744
216
- #: counter.php:2214
217
  msgid "Reads per month"
218
  msgstr "Läsningar per månad"
219
 
220
- # @ cpd
221
- #: counter.php:1745
222
- #: counter-options.php:236
223
  msgid "Visitors per post"
224
  msgstr "Besökare per inlägg"
225
 
226
- # @ cpd
227
- #: counter.php:1746
228
  msgid "Latest Counts"
229
  msgstr "Senaste besöken"
230
 
231
- # @ default
232
- #: counter.php:1748
233
  msgid "Plugin"
234
  msgstr "Plugin"
235
 
236
- # @ cpd
237
- #: counter.php:1751
238
- #: counter-options.php:266
239
  msgid "Browsers"
240
  msgstr "Webbläsare"
241
 
242
- # @ cpd
243
- #: counter.php:1752
244
  msgid "Referrer"
245
  msgstr "Hänvisare"
246
 
247
- # @ cpd
248
- #: counter.php:1761
249
  msgid "Reads per Country"
250
  msgstr "Visningar per land"
251
 
252
- # @ cpd
253
- #: counter.php:1762
254
  msgid "Visitors per Country"
255
  msgstr "Besökare per land"
256
 
257
- # @ cpd
258
- #: counter.php:1777
259
- #: counter.php:2138
260
  msgid "Statistics"
261
  msgstr "Statistik"
262
 
263
- # @ cpd
264
- #: counter.php:2209
265
  msgid "This post"
266
  msgstr "Det här inlägget"
267
 
268
- # @ default
269
- #: counter.php:2233
270
  msgid "Title"
271
  msgstr "Titel"
272
 
273
- # @ cpd
274
- #: notes.php:76
275
- #: userperspan.php:43
276
- #: counter-options.php:391
277
  msgid "show"
278
  msgstr "visa"
279
 
280
- # @ cpd
281
- # @ default
282
- #: notes.php:80
283
- #: counter-options.php:400
284
  msgid "Date"
285
  msgstr "Datum"
286
 
287
- # @ cpd
288
- #: notes.php:81
289
- msgid "(1 per day)"
290
- msgstr "(1 per dag)"
291
-
292
- # @ default
293
- #: notes.php:82
294
  msgid "Action"
295
  msgstr "Åtgärd"
296
 
297
- # @ cpd
298
- #: notes.php:87
299
  msgid "add"
300
  msgstr "lägg till"
301
 
302
- # @ cpd
303
- #: notes.php:102
304
  msgid "save"
305
  msgstr "spara"
306
 
307
- # @ cpd
308
- #: notes.php:103
309
  msgid "delete"
310
  msgstr "ta bort"
311
 
312
- # @ cpd
313
- #: notes.php:114
314
  msgid "edit"
315
  msgstr "redigera"
316
 
317
- # @ cpd
318
- #: massbots.php:33
319
- #: counter-options.php:386
320
  msgid "Mass Bots"
321
  msgstr "Massbotar"
322
 
323
- # @ cpd
324
- #: userperspan.php:37
325
  msgid "Start"
326
  msgstr "Start"
327
 
328
- # @ cpd
329
- #: userperspan.php:39
330
  msgid "End"
331
  msgstr "Slut"
332
 
333
- # @ cpd
334
- #: userperspan.php:41
335
  msgid "PostID"
336
  msgstr "PostID"
337
 
338
- # @ cpd
339
- #: userperspan.php:49
340
  msgid "no data found"
341
  msgstr "ingen information hittades"
342
 
343
- # @ cpd
344
- #: counter-options.php:46
345
  msgid "Options updated"
346
  msgstr "Inställningarna är uppdaterade"
347
 
348
- # @ cpd
349
- #: counter-options.php:57
350
  #, php-format
 
351
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
352
  msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
353
 
354
- # @ cpd
355
- #: counter-options.php:62
356
  msgid "update next"
357
  msgstr "uppdatera nästa"
358
 
359
- # @ cpd
360
- #: counter-options.php:104
361
  #, php-format
 
362
  msgid "Mass Bots cleaned. %s counts deleted."
363
  msgstr "Massbotar rensades. %s stycken togs bort."
364
 
365
- # @ cpd
366
- #: counter-options.php:111
367
  #, php-format
 
368
  msgid "Database cleaned. %s rows deleted."
369
  msgstr "Databasen städades. %s rader togs bort."
370
 
371
- # @ cpd
372
- #: counter-options.php:117
373
  msgid "Counter reseted."
374
  msgstr "Räknaren återställdes."
375
 
376
- # @ cpd
377
- #: counter-options.php:121
378
- #: counter-options.php:496
379
  msgid "UNINSTALL Count per Day"
380
  msgstr "AVINSTALLERA Count per Day"
381
 
382
- # @ cpd
383
- #: counter-options.php:126
384
- #: counter-options.php:128
385
- #: counter-options.php:130
386
  #, php-format
 
387
  msgid "Table %s deleted"
388
  msgstr "Tabellen %s raderades"
389
 
390
- # @ cpd
391
- #: counter-options.php:132
392
  msgid "Options deleted"
393
  msgstr "Inställningarna togs bort"
394
 
395
- # @ cpd
396
- #: counter-options.php:156
397
- #: counter-options.php:481
398
  msgid "Uninstall"
399
  msgstr "Avinstallera"
400
 
401
- # @ cpd
402
- #: counter-options.php:157
403
  msgid "Click here"
404
  msgstr "Klicka här"
405
 
406
- # @ cpd
407
- #: counter-options.php:157
408
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
409
  msgstr "för att avinstallera och avaktivera \"Count per Day\"."
410
 
411
- # @ cpd
412
- #: counter-options.php:179
413
- msgid "Options"
414
- msgstr "Inställningar"
415
-
416
- # @ cpd
417
- #: counter-options.php:186
418
  msgid "Counter"
419
  msgstr "Räknare"
420
 
421
- # @ cpd
422
- #: counter-options.php:190
423
  msgid "Online time"
424
  msgstr "Tid online"
425
 
426
- # @ cpd
427
- #: counter-options.php:191
428
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
429
  msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
430
 
431
- # @ cpd
432
- #: counter-options.php:194
433
  msgid "Logged on Users"
434
  msgstr "Inloggade användare"
435
 
436
- # @ cpd
437
- #: counter-options.php:196
438
  msgid "count too"
439
  msgstr "räkna med"
440
 
441
- # @ cpd
442
- #: counter-options.php:197
443
  msgid "until User Level"
444
  msgstr "upp till användarbehörighet"
445
 
446
- # @ cpd
447
- #: counter-options.php:208
448
  msgid "Auto counter"
449
  msgstr "Automatisk räknare"
450
 
451
- # @ cpd
452
- #: counter-options.php:209
453
  msgid "Counts automatically single-posts and pages, no changes on template needed."
454
  msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
455
 
456
- # @ cpd
457
- #: counter-options.php:212
458
  msgid "Bots to ignore"
459
  msgstr "Bots att ignorera"
460
 
461
- # @ cpd
462
- #: counter-options.php:216
463
  msgid "Anonymous IP"
464
  msgstr "Anonym IP-adress"
465
 
466
- # @ cpd
467
- #: counter-options.php:220
468
  msgid "Cache"
469
  msgstr "Cache"
470
 
471
- # @ cpd
472
- #: counter-options.php:221
473
  msgid "I use a cache plugin. Count these visits with ajax."
474
  msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
475
 
476
- # @ cpd
477
- #: counter-options.php:224
478
  msgid "Clients and referrers"
479
  msgstr "Klienter och hänvisare"
480
 
481
- # @ cpd
482
- #: counter-options.php:225
483
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
484
  msgstr "Spara och visa klienter och hänvisare.<br />Kräver stor plats i databasen, men ger dig mer information om dina besökare."
485
 
486
- # @ default
487
- #: counter-options.php:233
488
  msgid "Dashboard"
489
  msgstr "Panel"
490
 
491
- # @ cpd
492
- #: counter-options.php:237
493
- #: counter-options.php:241
494
  msgid "How many posts do you want to see on dashboard page?"
495
  msgstr "Hur många inlägg vill du se på panelsidan?"
496
 
497
- # @ cpd
498
- #: counter-options.php:240
499
  msgid "Latest Counts - Posts"
500
  msgstr "Senaste träffar - Inlägg"
501
 
502
- # @ cpd
503
- #: counter-options.php:244
504
  msgid "Latest Counts - Days"
505
  msgstr "Senaste träffar - Dagar"
506
 
507
- # @ cpd
508
- #: counter-options.php:245
509
- #: counter-options.php:249
510
- #: counter-options.php:275
511
  msgid "How many days do you want look back?"
512
  msgstr "Hur många dagar bakåt vill du se?"
513
 
514
- # @ cpd
515
- #: counter-options.php:248
516
  msgid "Chart - Days"
517
  msgstr "Diagram - Dagar"
518
 
519
- # @ cpd
520
- #: counter-options.php:252
521
  msgid "Chart - Height"
522
  msgstr "Diagram - Höjd"
523
 
524
- # @ cpd
525
- #: counter-options.php:253
526
  msgid "Height of the biggest bar"
527
  msgstr "Den högsta stapelns höjd"
528
 
529
- # @ cpd
530
- #: counter-options.php:256
531
- msgid "Old Charts"
532
- msgstr "Gamla diagram"
533
-
534
- # @ cpd
535
- #: counter-options.php:257
536
- msgid "Show old bar charts."
537
- msgstr "Visa gamla stapeldiagram."
538
-
539
- # @ cpd
540
- #: counter-options.php:261
541
  msgid "Countries"
542
  msgstr "Länder"
543
 
544
- # @ cpd
545
- #: counter-options.php:262
546
  msgid "How many countries do you want to see on dashboard page?"
547
  msgstr "Hur många länder vill du visa på Panelen?"
548
 
549
- # @ cpd
550
- #: counter-options.php:267
551
  msgid "Substring of the user agent, separated by comma"
552
  msgstr "Delsträng av \"user agent\", separerad med kommatecken"
553
 
554
- # @ cpd
555
- #: counter-options.php:270
556
  msgid "Referrers - Entries"
557
  msgstr "Hänvisare - Inlägg"
558
 
559
- # @ cpd
560
- #: counter-options.php:271
561
  msgid "How many referrers do you want to see on dashboard page?"
562
  msgstr "Hur många hänvisare vill du se på panelsidan?"
563
 
564
- # @ cpd
565
- #: counter-options.php:274
566
  msgid "Referrers - Days"
567
  msgstr "Hänvisare - Dagar"
568
 
569
- # @ cpd
570
- #: counter-options.php:278
571
  msgid "Local URLs"
572
  msgstr "Lokala URL:er"
573
 
574
- # @ cpd
575
- #: counter-options.php:279
576
  msgid "Show local referrers too."
577
  msgstr "Visa även lokala hänvisare."
578
 
579
- # @ default
580
- #: counter-options.php:287
581
  msgid "Posts"
582
  msgstr "Inlägg"
583
 
584
- # @ default
585
- #: counter-options.php:287
586
  msgid "Pages"
587
  msgstr "Sidor"
588
 
589
- # @ cpd
590
- #: counter-options.php:290
591
  msgid "Show in lists"
592
  msgstr "Visa i listor"
593
 
594
- # @ cpd
595
- #: counter-options.php:291
596
  msgid "Show \"Reads per Post\" in a new column in post management views."
597
  msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
598
 
599
- # @ cpd
600
- #: counter-options.php:299
601
  msgid "Start Values"
602
  msgstr "Startvärden"
603
 
604
- # @ cpd
605
- #: counter-options.php:303
606
  msgid "Here you can change the date of first count and add a start count."
607
  msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
608
 
609
- # @ cpd
610
- #: counter-options.php:307
611
  msgid "Start date"
612
  msgstr "Startdatum"
613
 
614
- # @ cpd
615
- #: counter-options.php:308
616
  msgid "Your old Counter starts at?"
617
  msgstr "Din gamla räknare startar den?"
618
 
619
- # @ cpd
620
- #: counter-options.php:311
621
- #: counter-options.php:315
622
  msgid "Start count"
623
  msgstr "Starta räknaren"
624
 
625
- # @ cpd
626
- #: counter-options.php:312
627
  msgid "Add this value to \"Total visitors\"."
628
  msgstr "Lägg till det här värdet till \"Besökare totalt\"."
629
 
630
- # @ cpd
631
- #: counter-options.php:316
632
  msgid "Add this value to \"Total reads\"."
633
  msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
634
 
635
- # @ cpd
636
- #: counter-options.php:324
637
  msgid "Debug mode"
638
  msgstr "Felsökningsläge"
639
 
640
- # @ cpd
641
- #: counter-options.php:326
642
  msgid "Show debug informations at the bottom of all pages."
643
  msgstr "Visa felsökningsinformation längst ner på alla sidor."
644
 
645
- # @ cpd
646
- #: counter-options.php:331
647
  msgid "Update options"
648
  msgstr "Uppdatera inställningarna"
649
 
650
- # @ cpd
651
- #: counter-options.php:340
652
  msgid "GeoIP - Countries"
653
  msgstr "GeoIP - Länder"
654
 
655
- # @ cpd
656
- #: counter-options.php:349
657
  msgid "Update old counter data"
658
  msgstr "Uppdatera gammal räknardata"
659
 
660
- # @ cpd
661
- #: counter-options.php:352
662
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
663
  msgstr "Du kan få information om land för alla poster i databasen genom att kolla IP-adresserna mot GeoIP-databasen. Räkna med att det kan ta ett tag!"
664
 
665
- # @ cpd
666
- #: counter-options.php:362
667
  msgid "Update GeoIP database"
668
  msgstr "Uppdatera GeoIP-databasen"
669
 
670
- # @ cpd
671
- #: counter-options.php:365
672
  msgid "Download a new version of GeoIP.dat file."
673
  msgstr "Ladda ner en ny version av filen GeoIP.dat."
674
 
675
- # @ cpd
676
- #: counter-options.php:371
677
  msgid "More informations about GeoIP"
678
  msgstr "Mer information om GeoIP"
679
 
680
- # @ cpd
681
- #: counter-options.php:390
682
  #, php-format
 
683
  msgid "Show all IPs with more than %s page views per day"
684
  msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
685
 
686
- # @ cpd
687
- #: counter-options.php:399
688
  msgid "IP"
689
  msgstr "IP"
690
 
691
- # @ cpd
692
- #: counter-options.php:401
693
  msgid "Client"
694
  msgstr "Klient"
695
 
696
- # @ cpd
697
- #: counter-options.php:402
698
  msgid "Views"
699
  msgstr "Visningar"
700
 
701
- # @ cpd
702
- #: counter-options.php:413
703
- #: counter-options.php:435
704
  #, php-format
 
705
  msgid "Delete these %s counts"
706
  msgstr "Ta bort bort %s stycken"
707
 
708
- # @ cpd
709
- #: counter-options.php:445
710
- #: counter-options.php:454
711
  msgid "Clean the database"
712
  msgstr "Städa databasen"
713
 
714
- # @ cpd
715
- #: counter-options.php:448
716
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
717
  msgstr "Du kan rensa räknartabellen genom att ta bort \"spamdata\".<br />Om du lägger till nya botar ovan, behålls den gamla \"spamdatan\" i databasen.<br />Här kan du köra botfiltret igen och ta bort botarnas besök."
718
 
719
- # @ cpd
720
- #: counter-options.php:463
721
- #: counter-options.php:472
722
  msgid "Reset the counter"
723
  msgstr "Nollställ räknaren"
724
 
725
- # @ cpd
726
- #: counter-options.php:466
727
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
728
  msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
729
 
730
- # @ cpd
731
- #: counter-options.php:484
732
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
733
  msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
734
 
735
- # @ cpd
736
- #: counter-options.php:485
737
  msgid "Here you can delete the tables and disable \"Count per Day\"."
738
  msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
739
 
740
- # @ cpd
741
- #: counter-options.php:488
742
  msgid "WARNING"
743
  msgstr "VARNING"
744
 
745
- # @ cpd
746
- #: counter-options.php:489
747
  msgid "These tables (with ALL counter data) will be deleted."
748
  msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
749
 
750
- # @ cpd
751
- #: counter-options.php:491
752
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
753
  msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
754
 
755
- # @ cpd
756
- #: counter-options.php:495
 
757
  msgid "Yes"
758
  msgstr "Ja"
759
 
760
- # @ cpd
761
- #: counter-options.php:496
762
  msgid "You are sure to disable Count per Day and delete all data?"
763
  msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
764
 
765
- # @ cpd
766
- #: counter-options.php:504
767
  msgid "Support"
768
  msgstr "Support"
769
 
770
- # @ cpd
771
- #: geoip/geoip.php:108
772
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
773
  msgstr "Tyvärr, nödvändiga funktioner (zlib) är inte installerade/aktiverade i php.ini."
774
 
775
- # @ cpd
776
- #: geoip/geoip.php:132
777
  msgid "New GeoIP database installed."
778
  msgstr "Ny GeoIP-databas installerades."
779
 
780
- # @ cpd
781
- #: geoip/geoip.php:134
782
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
783
  msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  "X-Poedit-Language: Swedish\n"
14
  "X-Poedit-Country: SWEDEN\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-Bookmarks: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
 
22
+ #: counter.php:155
23
+ #: counter.php:1197
24
+ #@ cpd
25
  msgid "Total reads"
26
  msgstr "Antal läsningar totalt"
27
 
28
+ #: counter.php:156
29
+ #: counter.php:1198
30
+ #@ cpd
31
  msgid "Reads today"
32
  msgstr "Läsningar idag"
33
 
34
+ #: counter.php:157
35
+ #: counter.php:1199
36
+ #@ cpd
37
  msgid "Reads yesterday"
38
  msgstr "Läsningar igår"
39
 
40
+ #: counter.php:158
41
+ #: counter.php:1200
42
+ #@ cpd
43
  msgid "Reads last week"
44
  msgstr "Läsningar förra veckan"
45
 
46
+ #: counter-core.php:639
47
+ #: counter-options.php:392
48
+ #: counter.php:159
49
+ #: counter.php:875
50
+ #@ cpd
51
  msgid "Reads"
52
  msgstr "Visningar"
53
 
54
+ #: counter-core.php:723
55
+ #: counter.php:160
56
+ #: counter.php:1010
57
+ #: counter.php:1202
58
+ #@ cpd
 
59
  msgid "Total visitors"
60
  msgstr "Antal besökare totalt"
61
 
62
+ #: counter.php:161
63
+ #: counter.php:1208
64
+ #@ cpd
65
  msgid "Visitors currently online"
66
  msgstr "Besökare online nu"
67
 
68
+ #: counter.php:162
69
+ #: counter.php:1203
70
+ #@ cpd
71
  msgid "Visitors today"
72
  msgstr "Besökare idag"
73
 
74
+ #: counter.php:163
75
+ #: counter.php:1204
76
+ #@ cpd
77
  msgid "Visitors yesterday"
78
  msgstr "Besökare igår"
79
 
80
+ #: counter.php:164
81
+ #: counter.php:1205
82
+ #@ cpd
83
  msgid "Visitors last week"
84
  msgstr "Besökare förra veckan"
85
 
86
+ #: counter-core.php:729
87
+ #: counter.php:166
88
+ #: counter.php:263
89
+ #: counter.php:1012
90
+ #: counter.php:1207
91
+ #: userperspan.php:34
92
+ #@ cpd
 
93
  msgid "Visitors per day"
94
  msgstr "Besök per dag"
95
 
96
+ #: counter.php:167
97
+ #: counter.php:825
98
+ #: counter.php:1209
99
+ #@ cpd
100
  msgid "Counter starts on"
101
  msgstr "Räknaren startar den"
102
 
103
+ #: counter.php:262
104
+ #@ cpd
 
105
  msgid "Reads per day"
106
  msgstr "Läsningar per dag"
107
 
108
+ #: counter.php:788
109
+ #: notes.php:42
110
+ #: notes.php:76
111
+ #@ cpd
 
 
 
 
 
 
112
  msgid "Notes"
113
  msgstr "Anteckningar"
114
 
115
+ #: counter.php:353
116
+ #: counter.php:1041
117
+ #@ cpd
 
 
 
 
 
118
  msgid "Map"
119
  msgstr "Karta"
120
 
121
+ #: counter.php:672
 
122
  #, php-format
123
+ #@ cpd
124
  msgid "The %s most visited posts in last %s days:"
125
  msgstr "De %s mest visade inläggen de senaste %s dagarna:"
126
 
127
+ #: counter.php:786
128
+ #@ default
129
  msgid "Show"
130
  msgstr "Visa"
131
 
132
+ #: counter.php:821
133
+ #@ cpd
134
  msgid "Other"
135
  msgstr "Övriga"
136
 
137
+ #: counter.php:845
 
138
  #, php-format
139
+ #@ cpd
140
  msgid "The %s referrers in last %s days:"
141
  msgstr "De %s senaste hänvisningarna de senaste %s dagarna:"
142
 
143
+ #: counter.php:976
144
+ #@ default
145
  msgid "Edit Post"
146
  msgstr "Redigera inlägg"
147
 
148
+ #: counter.php:985
149
+ #@ default
150
  msgid "Category"
151
  msgstr "Kategori"
152
 
153
+ #: counter.php:988
154
+ #@ default
155
  msgid "Tag"
156
  msgstr "Tag"
157
 
158
+ #: counter.php:991
159
+ #: massbots.php:52
 
160
  #: userperspan.php:63
161
+ #@ default
162
  msgid "Front page displays"
163
  msgstr "Visningar av framsidan"
164
 
165
+ #: counter-core.php:575
166
+ #: counter-options.php:341
167
+ #: counter-options.php:565
168
+ #@ default
169
  msgid "Settings"
170
  msgstr "Inställningar"
171
 
172
+ #: counter-core.php:689
 
173
  #, php-format
174
+ #@ cpd
175
  msgid "Time for Count per Day: <code>%s</code>."
176
  msgstr "Tid för Count per Day: <code>%s</code>."
177
 
178
+ #: counter-core.php:690
179
+ #@ cpd
180
  msgid "Bug? Problem? Question? Hint? Praise?"
181
  msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
182
 
183
+ #: counter-core.php:691
 
184
  #, php-format
185
+ #@ cpd
186
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
187
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
188
 
189
+ #: counter-core.php:692
190
+ #@ default
191
  msgid "License"
192
  msgstr "Licens"
193
 
194
+ #: counter-core.php:724
195
+ #@ cpd
196
  msgid "Visitors online"
197
  msgstr "Besökare online"
198
 
199
+ #: counter-core.php:725
200
+ #: counter.php:1206
201
+ #@ cpd
202
  msgid "Visitors per month"
203
  msgstr "Besökare per månad"
204
 
205
+ #: counter-core.php:726
206
+ #: counter.php:1201
207
+ #@ cpd
208
  msgid "Reads per month"
209
  msgstr "Läsningar per månad"
210
 
211
+ #: counter-core.php:727
212
+ #: counter-options.php:438
213
+ #@ cpd
214
  msgid "Visitors per post"
215
  msgstr "Besökare per inlägg"
216
 
217
+ #: counter-core.php:728
218
+ #@ cpd
219
  msgid "Latest Counts"
220
  msgstr "Senaste besöken"
221
 
222
+ #: counter-core.php:730
223
+ #@ default
224
  msgid "Plugin"
225
  msgstr "Plugin"
226
 
227
+ #: counter-core.php:733
228
+ #: counter-options.php:464
229
+ #@ cpd
230
  msgid "Browsers"
231
  msgstr "Webbläsare"
232
 
233
+ #: counter-core.php:734
234
+ #@ cpd
235
  msgid "Referrer"
236
  msgstr "Hänvisare"
237
 
238
+ #: counter-core.php:738
239
+ #@ cpd
240
  msgid "Reads per Country"
241
  msgstr "Visningar per land"
242
 
243
+ #: counter-core.php:739
244
+ #@ cpd
245
  msgid "Visitors per Country"
246
  msgstr "Besökare per land"
247
 
248
+ #: counter-core.php:754
249
+ #: counter.php:1124
250
+ #@ cpd
251
  msgid "Statistics"
252
  msgstr "Statistik"
253
 
254
+ #: counter.php:1196
255
+ #@ cpd
256
  msgid "This post"
257
  msgstr "Det här inlägget"
258
 
259
+ #: counter.php:1220
260
+ #@ default
261
  msgid "Title"
262
  msgstr "Titel"
263
 
264
+ #: counter-options.php:585
265
+ #: notes.php:71
266
+ #: userperspan.php:44
267
+ #@ cpd
268
  msgid "show"
269
  msgstr "visa"
270
 
271
+ #: counter-options.php:594
272
+ #: notes.php:75
273
+ #@ cpd
274
+ #@ default
275
  msgid "Date"
276
  msgstr "Datum"
277
 
278
+ #: notes.php:77
279
+ #@ default
 
 
 
 
 
280
  msgid "Action"
281
  msgstr "Åtgärd"
282
 
283
+ #: notes.php:82
284
+ #@ cpd
285
  msgid "add"
286
  msgstr "lägg till"
287
 
288
+ #: notes.php:98
289
+ #@ cpd
290
  msgid "save"
291
  msgstr "spara"
292
 
293
+ #: notes.php:99
294
+ #@ cpd
295
  msgid "delete"
296
  msgstr "ta bort"
297
 
298
+ #: notes.php:110
299
+ #@ cpd
300
  msgid "edit"
301
  msgstr "redigera"
302
 
303
+ #: counter-options.php:580
304
+ #: massbots.php:35
305
+ #@ cpd
306
  msgid "Mass Bots"
307
  msgstr "Massbotar"
308
 
309
+ #: userperspan.php:38
310
+ #@ cpd
311
  msgid "Start"
312
  msgstr "Start"
313
 
314
+ #: userperspan.php:40
315
+ #@ cpd
316
  msgid "End"
317
  msgstr "Slut"
318
 
319
+ #: userperspan.php:42
320
+ #@ cpd
321
  msgid "PostID"
322
  msgstr "PostID"
323
 
324
+ #: userperspan.php:50
325
+ #@ cpd
326
  msgid "no data found"
327
  msgstr "ingen information hittades"
328
 
329
+ #: counter-options.php:49
330
+ #@ cpd
331
  msgid "Options updated"
332
  msgstr "Inställningarna är uppdaterade"
333
 
334
+ #: counter-options.php:60
 
335
  #, php-format
336
+ #@ cpd
337
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
  msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
339
 
340
+ #: counter-options.php:65
341
+ #@ cpd
342
  msgid "update next"
343
  msgstr "uppdatera nästa"
344
 
345
+ #: counter-options.php:102
 
346
  #, php-format
347
+ #@ cpd
348
  msgid "Mass Bots cleaned. %s counts deleted."
349
  msgstr "Massbotar rensades. %s stycken togs bort."
350
 
351
+ #: counter-options.php:112
 
352
  #, php-format
353
+ #@ cpd
354
  msgid "Database cleaned. %s rows deleted."
355
  msgstr "Databasen städades. %s rader togs bort."
356
 
357
+ #: counter-options.php:122
358
+ #@ cpd
359
  msgid "Counter reseted."
360
  msgstr "Räknaren återställdes."
361
 
362
+ #: counter-options.php:127
363
+ #: counter-options.php:810
364
+ #@ cpd
365
  msgid "UNINSTALL Count per Day"
366
  msgstr "AVINSTALLERA Count per Day"
367
 
368
+ #: counter-options.php:132
369
+ #: counter-options.php:133
370
+ #: counter-options.php:134
 
371
  #, php-format
372
+ #@ cpd
373
  msgid "Table %s deleted"
374
  msgstr "Tabellen %s raderades"
375
 
376
+ #: counter-options.php:135
377
+ #@ cpd
378
  msgid "Options deleted"
379
  msgstr "Inställningarna togs bort"
380
 
381
+ #: counter-options.php:316
382
+ #: counter-options.php:796
383
+ #@ cpd
384
  msgid "Uninstall"
385
  msgstr "Avinstallera"
386
 
387
+ #: counter-options.php:317
388
+ #@ cpd
389
  msgid "Click here"
390
  msgstr "Klicka här"
391
 
392
+ #: counter-options.php:317
393
+ #@ cpd
394
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
395
  msgstr "för att avinstallera och avaktivera \"Count per Day\"."
396
 
397
+ #: counter-options.php:351
398
+ #@ cpd
 
 
 
 
 
399
  msgid "Counter"
400
  msgstr "Räknare"
401
 
402
+ #: counter-options.php:355
403
+ #@ cpd
404
  msgid "Online time"
405
  msgstr "Tid online"
406
 
407
+ #: counter-options.php:356
408
+ #@ cpd
409
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
410
  msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
411
 
412
+ #: counter-options.php:359
413
+ #@ cpd
414
  msgid "Logged on Users"
415
  msgstr "Inloggade användare"
416
 
417
+ #: counter-options.php:361
418
+ #@ cpd
419
  msgid "count too"
420
  msgstr "räkna med"
421
 
422
+ #: counter-options.php:362
423
+ #@ cpd
424
  msgid "until User Level"
425
  msgstr "upp till användarbehörighet"
426
 
427
+ #: counter-options.php:373
428
+ #@ cpd
429
  msgid "Auto counter"
430
  msgstr "Automatisk räknare"
431
 
432
+ #: counter-options.php:374
433
+ #@ cpd
434
  msgid "Counts automatically single-posts and pages, no changes on template needed."
435
  msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
436
 
437
+ #: counter-options.php:377
438
+ #@ cpd
439
  msgid "Bots to ignore"
440
  msgstr "Bots att ignorera"
441
 
442
+ #: counter-options.php:381
443
+ #@ cpd
444
  msgid "Anonymous IP"
445
  msgstr "Anonym IP-adress"
446
 
447
+ #: counter-options.php:385
448
+ #@ cpd
449
  msgid "Cache"
450
  msgstr "Cache"
451
 
452
+ #: counter-options.php:386
453
+ #@ cpd
454
  msgid "I use a cache plugin. Count these visits with ajax."
455
  msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
456
 
457
+ #: counter-options.php:389
458
+ #@ cpd
459
  msgid "Clients and referrers"
460
  msgstr "Klienter och hänvisare"
461
 
462
+ #: counter-options.php:392
463
+ #@ cpd
464
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
465
  msgstr "Spara och visa klienter och hänvisare.<br />Kräver stor plats i databasen, men ger dig mer information om dina besökare."
466
 
467
+ #: counter-options.php:403
468
+ #@ default
469
  msgid "Dashboard"
470
  msgstr "Panel"
471
 
472
+ #: counter-options.php:439
473
+ #: counter-options.php:443
474
+ #@ cpd
475
  msgid "How many posts do you want to see on dashboard page?"
476
  msgstr "Hur många inlägg vill du se på panelsidan?"
477
 
478
+ #: counter-options.php:442
479
+ #@ cpd
480
  msgid "Latest Counts - Posts"
481
  msgstr "Senaste träffar - Inlägg"
482
 
483
+ #: counter-options.php:446
484
+ #@ cpd
485
  msgid "Latest Counts - Days"
486
  msgstr "Senaste träffar - Dagar"
487
 
488
+ #: counter-options.php:447
489
+ #: counter-options.php:451
490
+ #: counter-options.php:473
491
+ #@ cpd
492
  msgid "How many days do you want look back?"
493
  msgstr "Hur många dagar bakåt vill du se?"
494
 
495
+ #: counter-options.php:450
496
+ #@ cpd
497
  msgid "Chart - Days"
498
  msgstr "Diagram - Dagar"
499
 
500
+ #: counter-options.php:454
501
+ #@ cpd
502
  msgid "Chart - Height"
503
  msgstr "Diagram - Höjd"
504
 
505
+ #: counter-options.php:455
506
+ #@ cpd
507
  msgid "Height of the biggest bar"
508
  msgstr "Den högsta stapelns höjd"
509
 
510
+ #: counter-options.php:459
511
+ #@ cpd
 
 
 
 
 
 
 
 
 
 
512
  msgid "Countries"
513
  msgstr "Länder"
514
 
515
+ #: counter-options.php:460
516
+ #@ cpd
517
  msgid "How many countries do you want to see on dashboard page?"
518
  msgstr "Hur många länder vill du visa på Panelen?"
519
 
520
+ #: counter-options.php:465
521
+ #@ cpd
522
  msgid "Substring of the user agent, separated by comma"
523
  msgstr "Delsträng av \"user agent\", separerad med kommatecken"
524
 
525
+ #: counter-options.php:468
526
+ #@ cpd
527
  msgid "Referrers - Entries"
528
  msgstr "Hänvisare - Inlägg"
529
 
530
+ #: counter-options.php:469
531
+ #@ cpd
532
  msgid "How many referrers do you want to see on dashboard page?"
533
  msgstr "Hur många hänvisare vill du se på panelsidan?"
534
 
535
+ #: counter-options.php:472
536
+ #@ cpd
537
  msgid "Referrers - Days"
538
  msgstr "Hänvisare - Dagar"
539
 
540
+ #: counter-options.php:476
541
+ #@ cpd
542
  msgid "Local URLs"
543
  msgstr "Lokala URL:er"
544
 
545
+ #: counter-options.php:477
546
+ #@ cpd
547
  msgid "Show local referrers too."
548
  msgstr "Visa även lokala hänvisare."
549
 
550
+ #: counter-options.php:485
551
+ #@ default
552
  msgid "Posts"
553
  msgstr "Inlägg"
554
 
555
+ #: counter-options.php:485
556
+ #@ default
557
  msgid "Pages"
558
  msgstr "Sidor"
559
 
560
+ #: counter-options.php:488
561
+ #@ cpd
562
  msgid "Show in lists"
563
  msgstr "Visa i listor"
564
 
565
+ #: counter-options.php:489
566
+ #@ cpd
567
  msgid "Show \"Reads per Post\" in a new column in post management views."
568
  msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
569
 
570
+ #: counter-options.php:497
571
+ #@ cpd
572
  msgid "Start Values"
573
  msgstr "Startvärden"
574
 
575
+ #: counter-options.php:501
576
+ #@ cpd
577
  msgid "Here you can change the date of first count and add a start count."
578
  msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
579
 
580
+ #: counter-options.php:505
581
+ #@ cpd
582
  msgid "Start date"
583
  msgstr "Startdatum"
584
 
585
+ #: counter-options.php:506
586
+ #@ cpd
587
  msgid "Your old Counter starts at?"
588
  msgstr "Din gamla räknare startar den?"
589
 
590
+ #: counter-options.php:509
591
+ #: counter-options.php:513
592
+ #@ cpd
593
  msgid "Start count"
594
  msgstr "Starta räknaren"
595
 
596
+ #: counter-options.php:510
597
+ #@ cpd
598
  msgid "Add this value to \"Total visitors\"."
599
  msgstr "Lägg till det här värdet till \"Besökare totalt\"."
600
 
601
+ #: counter-options.php:514
602
+ #@ cpd
603
  msgid "Add this value to \"Total reads\"."
604
  msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
605
 
606
+ #: counter-options.php:554
607
+ #@ cpd
608
  msgid "Debug mode"
609
  msgstr "Felsökningsläge"
610
 
611
+ #: counter-options.php:556
612
+ #@ cpd
613
  msgid "Show debug informations at the bottom of all pages."
614
  msgstr "Visa felsökningsinformation längst ner på alla sidor."
615
 
616
+ #: counter-options.php:561
617
+ #@ cpd
618
  msgid "Update options"
619
  msgstr "Uppdatera inställningarna"
620
 
621
+ #: counter-options.php:727
622
+ #@ cpd
623
  msgid "GeoIP - Countries"
624
  msgstr "GeoIP - Länder"
625
 
626
+ #: counter-options.php:736
627
+ #@ cpd
628
  msgid "Update old counter data"
629
  msgstr "Uppdatera gammal räknardata"
630
 
631
+ #: counter-options.php:730
632
+ #@ cpd
633
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
634
  msgstr "Du kan få information om land för alla poster i databasen genom att kolla IP-adresserna mot GeoIP-databasen. Räkna med att det kan ta ett tag!"
635
 
636
+ #: counter-options.php:748
637
+ #@ cpd
638
  msgid "Update GeoIP database"
639
  msgstr "Uppdatera GeoIP-databasen"
640
 
641
+ #: counter-options.php:743
642
+ #@ cpd
643
  msgid "Download a new version of GeoIP.dat file."
644
  msgstr "Ladda ner en ny version av filen GeoIP.dat."
645
 
646
+ #: counter-options.php:753
647
+ #@ cpd
648
  msgid "More informations about GeoIP"
649
  msgstr "Mer information om GeoIP"
650
 
651
+ #: counter-options.php:584
 
652
  #, php-format
653
+ #@ cpd
654
  msgid "Show all IPs with more than %s page views per day"
655
  msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
656
 
657
+ #: counter-options.php:593
658
+ #@ cpd
659
  msgid "IP"
660
  msgstr "IP"
661
 
662
+ #: counter-options.php:595
663
+ #@ cpd
664
  msgid "Client"
665
  msgstr "Klient"
666
 
667
+ #: counter-options.php:596
668
+ #@ cpd
669
  msgid "Views"
670
  msgstr "Visningar"
671
 
672
+ #: counter-options.php:611
673
+ #: counter-options.php:627
 
674
  #, php-format
675
+ #@ cpd
676
  msgid "Delete these %s counts"
677
  msgstr "Ta bort bort %s stycken"
678
 
679
+ #: counter-options.php:656
680
+ #: counter-options.php:665
681
+ #@ cpd
682
  msgid "Clean the database"
683
  msgstr "Städa databasen"
684
 
685
+ #: counter-options.php:659
686
+ #@ cpd
687
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
688
  msgstr "Du kan rensa räknartabellen genom att ta bort \"spamdata\".<br />Om du lägger till nya botar ovan, behålls den gamla \"spamdatan\" i databasen.<br />Här kan du köra botfiltret igen och ta bort botarnas besök."
689
 
690
+ #: counter-options.php:777
691
+ #: counter-options.php:787
692
+ #@ cpd
693
  msgid "Reset the counter"
694
  msgstr "Nollställ räknaren"
695
 
696
+ #: counter-options.php:780
697
+ #@ cpd
698
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
699
  msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
700
 
701
+ #: counter-options.php:799
702
+ #@ cpd
703
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
704
  msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
705
 
706
+ #: counter-options.php:800
707
+ #@ cpd
708
  msgid "Here you can delete the tables and disable \"Count per Day\"."
709
  msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
710
 
711
+ #: counter-options.php:803
712
+ #@ cpd
713
  msgid "WARNING"
714
  msgstr "VARNING"
715
 
716
+ #: counter-options.php:804
717
+ #@ cpd
718
  msgid "These tables (with ALL counter data) will be deleted."
719
  msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
720
 
721
+ #: counter-options.php:806
722
+ #@ cpd
723
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
724
  msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
725
 
726
+ #: counter-options.php:786
727
+ #: counter-options.php:809
728
+ #@ cpd
729
  msgid "Yes"
730
  msgstr "Ja"
731
 
732
+ #: counter-options.php:810
733
+ #@ cpd
734
  msgid "You are sure to disable Count per Day and delete all data?"
735
  msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
736
 
737
+ #: counter-options.php:714
738
+ #@ cpd
739
  msgid "Support"
740
  msgstr "Support"
741
 
742
+ #: geoip/geoip.php:93
743
+ #@ cpd
744
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
745
  msgstr "Tyvärr, nödvändiga funktioner (zlib) är inte installerade/aktiverade i php.ini."
746
 
747
+ #: geoip/geoip.php:117
748
+ #@ cpd
749
  msgid "New GeoIP database installed."
750
  msgstr "Ny GeoIP-databas installerades."
751
 
752
+ #: geoip/geoip.php:119
753
+ #@ cpd
754
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
755
  msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
756
 
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:917
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr ""
972
+
locale/cpd-tr_TR.mo CHANGED
Binary file
locale/cpd-tr_TR.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: Count Per Day v2.15\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2011-03-02 22:00+0200\n"
7
- "Last-Translator: Emrullah Tahir Ekmekci <eteete@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,766 +19,953 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
- #: counter-options.php:46
23
  msgid "Options updated"
24
  msgstr "Seçenekler güncellendi."
25
 
26
  #@ cpd
27
- #: counter-options.php:57
28
  #, php-format
29
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
  msgstr "Ülkeler güncellendi."
31
 
32
  #@ cpd
33
- #: counter-options.php:62
34
  msgid "update next"
35
  msgstr "sonraki güncelleme"
36
 
37
  #@ cpd
38
- #: counter-options.php:104
39
  #, php-format
40
  msgid "Mass Bots cleaned. %s counts deleted."
41
  msgstr "Botlar temizlendi. %s adet silindi."
42
 
43
  #@ cpd
44
- #: counter-options.php:111
45
  #, php-format
46
  msgid "Database cleaned. %s rows deleted."
47
  msgstr "Veritabanı temizlendi. %s satır silindi."
48
 
49
  #@ cpd
50
- #: counter-options.php:117
51
  msgid "Counter reseted."
52
  msgstr "Sayaç sıfırlandı."
53
 
54
  #@ cpd
55
- #: counter-options.php:121
56
- #: counter-options.php:496
57
  msgid "UNINSTALL Count per Day"
58
  msgstr "Count per Day'i kaldır."
59
 
60
  #@ cpd
61
- #: counter-options.php:126
62
- #: counter-options.php:128
63
- #: counter-options.php:130
64
  #, php-format
65
  msgid "Table %s deleted"
66
  msgstr "%s tablo silindi."
67
 
68
  #@ cpd
69
- #: counter-options.php:132
70
  msgid "Options deleted"
71
  msgstr "Seçenekler silindi"
72
 
73
  #@ cpd
74
- #: counter-options.php:156
75
- #: counter-options.php:481
76
  msgid "Uninstall"
77
  msgstr "Kaldır"
78
 
79
  #@ cpd
80
- #: counter-options.php:157
81
  msgid "Click here"
82
  msgstr "Burayı tıklayın"
83
 
84
  #@ cpd
85
- #: counter-options.php:157
86
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
  msgstr "\"Count per Day\" kaldırmak ve etkisizleştirmek için."
88
 
89
  #@ cpd
90
- #: counter-options.php:179
91
- msgid "Options"
92
- msgstr "Seçenekler"
93
-
94
- #@ cpd
95
- #: counter-options.php:186
96
  msgid "Counter"
97
  msgstr "Sayaç"
98
 
99
  #@ cpd
100
- #: counter-options.php:190
101
  msgid "Online time"
102
  msgstr "Online süresi"
103
 
104
  #@ cpd
105
- #: counter-options.php:191
106
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
107
  msgstr "Online sayaç için saniye. Kontrol sayfasındaki \"Visitors online\" kullan."
108
 
109
  #@ cpd
110
- #: counter-options.php:194
111
  msgid "Logged on Users"
112
  msgstr "Giriş yapmış kullanıcılar"
113
 
114
  #@ cpd
115
- #: counter-options.php:196
116
  msgid "count too"
117
  msgstr "saymak"
118
 
119
  #@ cpd
120
- #: counter-options.php:197
121
  msgid "until User Level"
122
  msgstr "kullanıcı seviye kadar"
123
 
124
  #@ cpd
125
- #: counter-options.php:208
126
  msgid "Auto counter"
127
  msgstr "Otomatik sayaç"
128
 
129
  #@ cpd
130
- #: counter-options.php:209
131
  msgid "Counts automatically single-posts and pages, no changes on template needed."
132
  msgstr "Otomatik olarak tek-gönderileri ve sayfaları sayar, şablonda değişiklik gerekmez."
133
 
134
  #@ cpd
135
- #: counter-options.php:212
136
  msgid "Bots to ignore"
137
  msgstr "Botları önemseme"
138
 
139
  #@ cpd
140
- #: counter-options.php:216
141
  msgid "Anonymous IP"
142
  msgstr "Anonim IP"
143
 
144
  #@ cpd
145
- #: counter-options.php:220
146
  msgid "Cache"
147
  msgstr "Önbellek"
148
 
149
  #@ cpd
150
- #: counter-options.php:221
151
  msgid "I use a cache plugin. Count these visits with ajax."
152
  msgstr "Önbellek eklentisi kullanıyorum. Ziyaretçileri AJAX ile say."
153
 
154
  #@ cpd
155
- #: counter-options.php:224
156
  msgid "Clients and referrers"
157
  msgstr "Yönlendirmeler ve kullanıcılar"
158
 
159
  #@ cpd
160
- #: counter-options.php:225
161
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
162
  msgstr "Kullanıcıları ve yönlendirmeleri göster ve kaydet. <br /> Veritabanında daha çok yere ihtiyaç duyar fakat ziyaretçiler hakkında detaylı bilgi verir."
163
 
164
  #@ cpd
165
- #: counter-options.php:225
166
- #: counter.php:528
167
- #: counter.php:1661
 
168
  msgid "Reads"
169
  msgstr "Okunma"
170
 
171
  #@ default
172
- #: counter-options.php:233
173
  msgid "Dashboard"
174
  msgstr "Kontrol paneli"
175
 
176
  #@ cpd
177
- #: counter-options.php:236
178
- #: counter.php:1754
179
  msgid "Visitors per post"
180
  msgstr "Gönderi başına ziyaretçi"
181
 
182
  #@ cpd
183
- #: counter-options.php:237
184
- #: counter-options.php:241
185
  msgid "How many posts do you want to see on dashboard page?"
186
  msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
187
 
188
  #@ cpd
189
- #: counter-options.php:240
190
  msgid "Latest Counts - Posts"
191
  msgstr "Son sayım - Gönderi"
192
 
193
  #@ cpd
194
- #: counter-options.php:244
195
  msgid "Latest Counts - Days"
196
  msgstr "Son sayaç - Gün"
197
 
198
  #@ cpd
199
- #: counter-options.php:245
200
- #: counter-options.php:249
201
- #: counter-options.php:275
202
  msgid "How many days do you want look back?"
203
  msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
204
 
205
  #@ cpd
206
- #: counter-options.php:248
207
  msgid "Chart - Days"
208
  msgstr "Grafik - Gün"
209
 
210
  #@ cpd
211
- #: counter-options.php:252
212
  msgid "Chart - Height"
213
  msgstr "Grafik - Yükseklik"
214
 
215
  #@ cpd
216
- #: counter-options.php:253
217
  msgid "Height of the biggest bar"
218
  msgstr "En büyük bar'ın yüksekliği"
219
 
220
  #@ cpd
221
- #: counter-options.php:261
222
  msgid "Countries"
223
  msgstr "Ülkeler"
224
 
225
  #@ cpd
226
- #: counter-options.php:262
227
  msgid "How many countries do you want to see on dashboard page?"
228
  msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
229
 
230
  #@ cpd
231
- #: counter-options.php:266
232
- #: counter.php:1760
233
  msgid "Browsers"
234
  msgstr "Tarayıcılar"
235
 
236
  #@ cpd
237
- #: counter-options.php:267
238
  msgid "Substring of the user agent, separated by comma"
239
  msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
240
 
241
  #@ cpd
242
- #: counter-options.php:278
243
  msgid "Local URLs"
244
  msgstr "Websitenizdeki URL'ler"
245
 
246
  #@ cpd
247
- #: counter-options.php:279
248
  msgid "Show local referrers too."
249
  msgstr "Websitenizden yönlenenler."
250
 
251
  #@ default
252
- #: counter-options.php:287
253
  msgid "Posts"
254
  msgstr "Gönderiler"
255
 
256
  #@ default
257
- #: counter-options.php:287
258
  msgid "Pages"
259
  msgstr "Sayfalar"
260
 
261
  #@ cpd
262
- #: counter-options.php:290
263
  msgid "Show in lists"
264
  msgstr "Liste içinde göster"
265
 
266
  #@ cpd
267
- #: counter-options.php:291
268
  msgid "Show \"Reads per Post\" in a new column in post management views."
269
  msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
270
 
271
  #@ cpd
272
- #: counter-options.php:299
273
  msgid "Start Values"
274
  msgstr "Başlangıç değeri"
275
 
276
  #@ cpd
277
- #: counter-options.php:303
278
  msgid "Here you can change the date of first count and add a start count."
279
  msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
280
 
281
  #@ cpd
282
- #: counter-options.php:307
283
  msgid "Start date"
284
  msgstr "Başlama tarihi"
285
 
286
  #@ cpd
287
- #: counter-options.php:308
288
  msgid "Your old Counter starts at?"
289
  msgstr "Eski sayacının başlangıç değeri ?"
290
 
291
  #@ cpd
292
- #: counter-options.php:311
293
- #: counter-options.php:315
294
  msgid "Start count"
295
  msgstr "Başlama sayacı"
296
 
297
  #@ cpd
298
- #: counter-options.php:312
299
  msgid "Add this value to \"Total visitors\"."
300
  msgstr "Bu değeri ekle \"Total visitors\"."
301
 
302
  #@ cpd
303
- #: counter-options.php:316
304
  msgid "Add this value to \"Total reads\"."
305
  msgstr "Bu değeri ekle \"Total reads\"."
306
 
307
  #@ cpd
308
- #: counter-options.php:324
309
  msgid "Debug mode"
310
  msgstr "Problem çözme modu"
311
 
312
  #@ cpd
313
- #: counter-options.php:326
314
  msgid "Show debug informations at the bottom of all pages."
315
  msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
316
 
317
  #@ cpd
318
- #: counter-options.php:331
319
  msgid "Update options"
320
  msgstr "Seçenekleri güncelle"
321
 
322
  #@ cpd
323
- #: counter-options.php:340
324
  msgid "GeoIP - Countries"
325
  msgstr "GeoIP - Ülkeler"
326
 
327
  #@ cpd
328
- #: counter-options.php:349
329
  msgid "Update old counter data"
330
  msgstr "Eski sayaç verilerini güncelle"
331
 
332
  #@ cpd
333
- #: counter-options.php:352
334
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
335
  msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
336
 
337
  #@ cpd
338
- #: counter-options.php:362
339
  msgid "Update GeoIP database"
340
  msgstr "GeoIP veritabanını günce.elle."
341
 
342
  #@ cpd
343
- #: counter-options.php:365
344
  msgid "Download a new version of GeoIP.dat file."
345
  msgstr "En son GeoIP.dat dosyasını indir."
346
 
347
  #@ cpd
348
- #: counter-options.php:371
349
  msgid "More informations about GeoIP"
350
  msgstr "GeoIP hakkında daha fazla bilgi"
351
 
352
  #@ cpd
353
- #: counter-options.php:386
354
- #: massbots.php:33
355
  msgid "Mass Bots"
356
  msgstr "Kitle botları"
357
 
358
  #@ cpd
359
- #: counter-options.php:390
360
  #, php-format
361
  msgid "Show all IPs with more than %s page views per day"
362
  msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
363
 
364
  #@ cpd
365
- #: counter-options.php:391
366
- #: notes.php:76
367
- #: userperspan.php:43
368
  msgid "show"
369
  msgstr "göster"
370
 
371
  #@ cpd
372
- #: counter-options.php:399
373
  msgid "IP"
374
  msgstr "IP"
375
 
376
  #@ cpd
377
  #@ default
378
- #: counter-options.php:400
379
- #: notes.php:80
380
  msgid "Date"
381
  msgstr "Tarih"
382
 
383
  #@ cpd
384
- #: counter-options.php:401
385
  msgid "Client"
386
  msgstr "Müşteri/Kullanıcı"
387
 
388
  #@ cpd
389
- #: counter-options.php:402
390
  msgid "Views"
391
  msgstr "Görünümler"
392
 
393
  #@ cpd
394
- #: counter-options.php:413
395
- #: counter-options.php:435
396
  #, php-format
397
  msgid "Delete these %s counts"
398
  msgstr "%s sayaçları sil"
399
 
400
  #@ cpd
401
- #: counter-options.php:445
402
- #: counter-options.php:454
403
  msgid "Clean the database"
404
  msgstr "Veritabanını temizle."
405
 
406
  #@ cpd
407
- #: counter-options.php:448
408
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
409
  msgstr "\"spam data\" ile sayaç tablosunuz temizleyebilirsiniz. .<br /> Eğer yukarıya yeni botlar eklerseniz veritabanında ki eski \"spam data\" tutabilirsiniz. Buradan botlar için filitre çalıştırabilirsiniz ve botların ziyaretlerini silinir."
410
 
411
  #@ cpd
412
- #: counter-options.php:463
413
- #: counter-options.php:472
414
  msgid "Reset the counter"
415
  msgstr "Sayacı resetle"
416
 
417
  #@ cpd
418
- #: counter-options.php:466
419
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
420
  msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
421
 
422
  #@ cpd
423
- #: counter-options.php:484
424
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
425
  msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
426
 
427
  #@ cpd
428
- #: counter-options.php:485
429
  msgid "Here you can delete the tables and disable \"Count per Day\"."
430
  msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
431
 
432
  #@ cpd
433
- #: counter-options.php:488
434
  msgid "WARNING"
435
  msgstr "UYARI"
436
 
437
  #@ cpd
438
- #: counter-options.php:489
439
  msgid "These tables (with ALL counter data) will be deleted."
440
  msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
441
 
442
  #@ cpd
443
- #: counter-options.php:491
444
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
445
  msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
446
 
447
  #@ cpd
448
- #: counter-options.php:495
 
449
  msgid "Yes"
450
  msgstr "Evet"
451
 
452
  #@ cpd
453
- #: counter-options.php:496
454
  msgid "You are sure to disable Count per Day and delete all data?"
455
  msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
456
 
457
  #@ cpd
458
- #: counter-options.php:504
459
  msgid "Support"
460
  msgstr "Destek"
461
 
462
  #@ cpd
463
- #: counter.php:524
464
- #: counter.php:2219
465
  msgid "Total reads"
466
  msgstr "Toplam okunan."
467
 
468
  #@ cpd
469
- #: counter.php:525
470
- #: counter.php:2220
471
  msgid "Reads today"
472
  msgstr "Bugün okunanlar"
473
 
474
  #@ cpd
475
- #: counter.php:526
476
- #: counter.php:2221
477
  msgid "Reads yesterday"
478
  msgstr "Dün okunanlar"
479
 
480
  #@ cpd
481
- #: counter.php:527
482
- #: counter.php:2222
483
  msgid "Reads last week"
484
  msgstr "Geçen hafta okunanlar"
485
 
486
  #@ cpd
487
- #: counter.php:529
488
- #: counter.php:534
489
- #: counter.php:1604
490
- #: counter.php:1750
491
- #: counter.php:2224
492
  msgid "Total visitors"
493
  msgstr "Toplam ziyaretçi"
494
 
495
  #@ cpd
496
- #: counter.php:530
497
- #: counter.php:2230
498
  msgid "Visitors currently online"
499
  msgstr "Şu anda online olan ziyatçiler"
500
 
501
  #@ cpd
502
- #: counter.php:531
503
- #: counter.php:2225
504
  msgid "Visitors today"
505
  msgstr "Bugün kü ziyaretçiler"
506
 
507
  #@ cpd
508
- #: counter.php:532
509
- #: counter.php:2226
510
  msgid "Visitors yesterday"
511
  msgstr "Dünkü ziyaretçiler"
512
 
513
  #@ cpd
514
- #: counter.php:533
515
- #: counter.php:2227
516
  msgid "Visitors last week"
517
  msgstr "Geçen haftaki ziyaretçiler"
518
 
519
  #@ cpd
520
- #: counter.php:535
521
- #: counter.php:636
522
- #: counter.php:1606
523
- #: counter.php:1756
524
- #: counter.php:1765
525
- #: counter.php:2229
526
- #: userperspan.php:33
527
  msgid "Visitors per day"
528
  msgstr "Günlük ziyaretçi"
529
 
530
  #@ cpd
531
- #: counter.php:536
532
- #: counter.php:2231
 
533
  msgid "Counter starts on"
534
  msgstr "Sayaç başlıyacak"
535
 
536
  #@ cpd
537
- #: counter.php:819
538
- msgid "days"
539
- msgstr "günler"
540
-
541
- #@ cpd
542
- #: counter.php:822
543
- #: counter.php:1376
544
- #: notes.php:47
545
- #: notes.php:81
546
  msgid "Notes"
547
  msgstr "Notlar"
548
 
549
  #@ cpd
550
- #: counter.php:845
551
- msgid "no reads at this time"
552
- msgstr "Şu anda okunan yok"
553
-
554
- #@ cpd
555
- #: counter.php:1257
556
  #, php-format
557
  msgid "The %s most visited posts in last %s days:"
558
  msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
559
 
560
  #@ default
561
- #: counter.php:1374
562
  msgid "Show"
563
  msgstr "Göster"
564
 
565
  #@ cpd
566
- #: counter.php:1421
567
  msgid "Other"
568
  msgstr "Diğer"
569
 
570
  #@ default
571
- #: counter.php:1505
572
  msgid "Edit Post"
573
  msgstr "Gönderi düzenle"
574
 
575
  #@ default
576
- #: counter.php:1514
577
  msgid "Category"
578
  msgstr "Katogori"
579
 
580
  #@ default
581
- #: counter.php:1517
582
  msgid "Tag"
583
  msgstr "Таg"
584
 
585
  #@ default
586
- #: counter.php:1520
587
- #: massbots.php:50
588
  #: userperspan.php:63
589
  msgid "Front page displays"
590
  msgstr "Ön sayfa görüntüleri"
591
 
592
  #@ default
593
- #: counter.php:1591
 
 
594
  msgid "Settings"
595
  msgstr "Ayarlar"
596
 
597
  #@ cpd
598
- #: counter.php:1716
599
  #, php-format
600
  msgid "Time for Count per Day: <code>%s</code>."
601
  msgstr "Günlük sayım için zaman: <code>%s</code>."
602
 
603
  #@ cpd
604
- #: counter.php:1717
605
  msgid "Bug? Problem? Question? Hint? Praise?"
606
  msgstr "Problem? Soru? Fikir? Övgü?"
607
 
608
  #@ cpd
609
- #: counter.php:1718
610
  #, php-format
611
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
612
  msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
613
 
614
  #@ default
615
- #: counter.php:1719
616
  msgid "License"
617
  msgstr "Lisans"
618
 
619
  #@ cpd
620
- #: counter.php:635
621
- #: counter.php:1766
622
  msgid "Reads per day"
623
  msgstr "Günlük ortalama okunma"
624
 
625
  #@ cpd
626
- #: counter.php:1752
627
- #: counter.php:2228
628
  msgid "Visitors per month"
629
  msgstr "Aylık ziyaretçi"
630
 
631
  #@ cpd
632
- #: counter.php:1753
633
- #: counter.php:2223
634
  msgid "Reads per month"
635
  msgstr "Aylık okunma"
636
 
637
  #@ cpd
638
- #: counter.php:1755
639
  msgid "Latest Counts"
640
  msgstr "Son sayım"
641
 
642
  #@ default
643
- #: counter.php:1757
644
  msgid "Plugin"
645
  msgstr "Eklenti"
646
 
647
  #@ cpd
648
- #: counter.php:1761
649
  msgid "Referrer"
650
  msgstr "Yönlendirme"
651
 
652
  #@ cpd
653
- #: counter.php:1770
654
  msgid "Reads per Country"
655
  msgstr "Ülke bazında okuma"
656
 
657
  #@ cpd
658
- #: counter.php:1771
659
  msgid "Visitors per Country"
660
  msgstr "Ülke bazında ziyaretçi"
661
 
662
  #@ cpd
663
- #: counter.php:1786
664
- #: counter.php:2147
665
  msgid "Statistics"
666
  msgstr "İstatislikler"
667
 
668
  #@ cpd
669
- #: counter.php:900
670
- #: counter.php:1856
671
  msgid "Map"
672
  msgstr "Harita"
673
 
674
  #@ cpd
675
- #: counter.php:2218
676
  msgid "This post"
677
  msgstr "Bu gönderi"
678
 
679
  #@ default
680
- #: counter.php:2242
681
  msgid "Title"
682
  msgstr "Başlık"
683
 
684
  #@ cpd
685
- #: geoip/geoip.php:108
686
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
687
  msgstr "Üzgünüm, gerekli fonksiyonlar yüklü değil (zlib) yada php.ini içinde kapalı."
688
 
689
  #@ cpd
690
- #: geoip/geoip.php:132
691
  msgid "New GeoIP database installed."
692
  msgstr "Yeni GeoIP veritabanı yüklendi."
693
 
694
  #@ cpd
695
- #: geoip/geoip.php:134
696
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
697
  msgstr "Üzgünüm, hata oluştu, \"geoip\" klasör'ünün 777 erişim hakkını kontrol edip tekrar deneyiniz."
698
 
699
- #@ cpd
700
- #: notes.php:81
701
- msgid "(1 per day)"
702
- msgstr "(Her bir gün)"
703
-
704
  #@ default
705
- #: notes.php:82
706
  msgid "Action"
707
  msgstr "Eylem"
708
 
709
  #@ cpd
710
- #: notes.php:87
711
  msgid "add"
712
  msgstr "ekle"
713
 
714
  #@ cpd
715
- #: notes.php:102
716
  msgid "save"
717
  msgstr "kaydet"
718
 
719
  #@ cpd
720
- #: notes.php:103
721
  msgid "delete"
722
  msgstr "sil"
723
 
724
  #@ cpd
725
- #: notes.php:114
726
  msgid "edit"
727
  msgstr "eüzenle"
728
 
729
  #@ cpd
730
- #: userperspan.php:37
731
  msgid "Start"
732
  msgstr "Başlangıç"
733
 
734
  #@ cpd
735
- #: userperspan.php:39
736
  msgid "End"
737
  msgstr "Son"
738
 
739
  #@ cpd
740
- #: userperspan.php:41
741
  msgid "PostID"
742
  msgstr "Gönderi ID"
743
 
744
  #@ cpd
745
- #: userperspan.php:49
746
  msgid "no data found"
747
  msgstr "veri bulunamadı"
748
 
749
  #@ cpd
750
- #: counter-options.php:256
751
- msgid "Old Charts"
752
- msgstr "Eski grafikler"
753
-
754
- #@ cpd
755
- #: counter-options.php:257
756
- msgid "Show old bar charts."
757
- msgstr "Grafikleri bar olarak göster"
758
-
759
- #@ cpd
760
- #: counter-options.php:270
761
  msgid "Referrers - Entries"
762
  msgstr "Yönlendirmeleri - Girişler"
763
 
764
  #@ cpd
765
- #: counter-options.php:271
766
  msgid "How many referrers do you want to see on dashboard page?"
767
  msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
768
 
769
  #@ cpd
770
- #: counter-options.php:274
771
  msgid "Referrers - Days"
772
  msgstr "Yönlendirmeler - Günler"
773
 
774
  #@ cpd
775
- #: counter.php:1449
776
  #, php-format
777
  msgid "The %s referrers in last %s days:"
778
  msgstr "Son %s günkü yönlendirmeler:"
779
 
780
  #@ cpd
781
- #: counter.php:1751
782
  msgid "Visitors online"
783
  msgstr "Online ziyaretçiler."
784
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "Project-Id-Version: Count Per Day v2.15\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2011-08-01 10:24+0200\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #@ cpd
22
+ #: counter-options.php:49
23
  msgid "Options updated"
24
  msgstr "Seçenekler güncellendi."
25
 
26
  #@ cpd
27
+ #: counter-options.php:60
28
  #, php-format
29
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
  msgstr "Ülkeler güncellendi."
31
 
32
  #@ cpd
33
+ #: counter-options.php:65
34
  msgid "update next"
35
  msgstr "sonraki güncelleme"
36
 
37
  #@ cpd
38
+ #: counter-options.php:102
39
  #, php-format
40
  msgid "Mass Bots cleaned. %s counts deleted."
41
  msgstr "Botlar temizlendi. %s adet silindi."
42
 
43
  #@ cpd
44
+ #: counter-options.php:112
45
  #, php-format
46
  msgid "Database cleaned. %s rows deleted."
47
  msgstr "Veritabanı temizlendi. %s satır silindi."
48
 
49
  #@ cpd
50
+ #: counter-options.php:122
51
  msgid "Counter reseted."
52
  msgstr "Sayaç sıfırlandı."
53
 
54
  #@ cpd
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
  msgid "UNINSTALL Count per Day"
58
  msgstr "Count per Day'i kaldır."
59
 
60
  #@ cpd
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
  #, php-format
65
  msgid "Table %s deleted"
66
  msgstr "%s tablo silindi."
67
 
68
  #@ cpd
69
+ #: counter-options.php:135
70
  msgid "Options deleted"
71
  msgstr "Seçenekler silindi"
72
 
73
  #@ cpd
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
  msgid "Uninstall"
77
  msgstr "Kaldır"
78
 
79
  #@ cpd
80
+ #: counter-options.php:317
81
  msgid "Click here"
82
  msgstr "Burayı tıklayın"
83
 
84
  #@ cpd
85
+ #: counter-options.php:317
86
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
  msgstr "\"Count per Day\" kaldırmak ve etkisizleştirmek için."
88
 
89
  #@ cpd
90
+ #: counter-options.php:351
 
 
 
 
 
91
  msgid "Counter"
92
  msgstr "Sayaç"
93
 
94
  #@ cpd
95
+ #: counter-options.php:355
96
  msgid "Online time"
97
  msgstr "Online süresi"
98
 
99
  #@ cpd
100
+ #: counter-options.php:356
101
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
  msgstr "Online sayaç için saniye. Kontrol sayfasındaki \"Visitors online\" kullan."
103
 
104
  #@ cpd
105
+ #: counter-options.php:359
106
  msgid "Logged on Users"
107
  msgstr "Giriş yapmış kullanıcılar"
108
 
109
  #@ cpd
110
+ #: counter-options.php:361
111
  msgid "count too"
112
  msgstr "saymak"
113
 
114
  #@ cpd
115
+ #: counter-options.php:362
116
  msgid "until User Level"
117
  msgstr "kullanıcı seviye kadar"
118
 
119
  #@ cpd
120
+ #: counter-options.php:373
121
  msgid "Auto counter"
122
  msgstr "Otomatik sayaç"
123
 
124
  #@ cpd
125
+ #: counter-options.php:374
126
  msgid "Counts automatically single-posts and pages, no changes on template needed."
127
  msgstr "Otomatik olarak tek-gönderileri ve sayfaları sayar, şablonda değişiklik gerekmez."
128
 
129
  #@ cpd
130
+ #: counter-options.php:377
131
  msgid "Bots to ignore"
132
  msgstr "Botları önemseme"
133
 
134
  #@ cpd
135
+ #: counter-options.php:381
136
  msgid "Anonymous IP"
137
  msgstr "Anonim IP"
138
 
139
  #@ cpd
140
+ #: counter-options.php:385
141
  msgid "Cache"
142
  msgstr "Önbellek"
143
 
144
  #@ cpd
145
+ #: counter-options.php:386
146
  msgid "I use a cache plugin. Count these visits with ajax."
147
  msgstr "Önbellek eklentisi kullanıyorum. Ziyaretçileri AJAX ile say."
148
 
149
  #@ cpd
150
+ #: counter-options.php:389
151
  msgid "Clients and referrers"
152
  msgstr "Yönlendirmeler ve kullanıcılar"
153
 
154
  #@ cpd
155
+ #: counter-options.php:392
156
  msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
157
  msgstr "Kullanıcıları ve yönlendirmeleri göster ve kaydet. <br /> Veritabanında daha çok yere ihtiyaç duyar fakat ziyaretçiler hakkında detaylı bilgi verir."
158
 
159
  #@ cpd
160
+ #: counter-core.php:639
161
+ #: counter-options.php:392
162
+ #: counter.php:159
163
+ #: counter.php:875
164
  msgid "Reads"
165
  msgstr "Okunma"
166
 
167
  #@ default
168
+ #: counter-options.php:403
169
  msgid "Dashboard"
170
  msgstr "Kontrol paneli"
171
 
172
  #@ cpd
173
+ #: counter-core.php:727
174
+ #: counter-options.php:438
175
  msgid "Visitors per post"
176
  msgstr "Gönderi başına ziyaretçi"
177
 
178
  #@ cpd
179
+ #: counter-options.php:439
180
+ #: counter-options.php:443
181
  msgid "How many posts do you want to see on dashboard page?"
182
  msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
183
 
184
  #@ cpd
185
+ #: counter-options.php:442
186
  msgid "Latest Counts - Posts"
187
  msgstr "Son sayım - Gönderi"
188
 
189
  #@ cpd
190
+ #: counter-options.php:446
191
  msgid "Latest Counts - Days"
192
  msgstr "Son sayaç - Gün"
193
 
194
  #@ cpd
195
+ #: counter-options.php:447
196
+ #: counter-options.php:451
197
+ #: counter-options.php:473
198
  msgid "How many days do you want look back?"
199
  msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
200
 
201
  #@ cpd
202
+ #: counter-options.php:450
203
  msgid "Chart - Days"
204
  msgstr "Grafik - Gün"
205
 
206
  #@ cpd
207
+ #: counter-options.php:454
208
  msgid "Chart - Height"
209
  msgstr "Grafik - Yükseklik"
210
 
211
  #@ cpd
212
+ #: counter-options.php:455
213
  msgid "Height of the biggest bar"
214
  msgstr "En büyük bar'ın yüksekliği"
215
 
216
  #@ cpd
217
+ #: counter-options.php:459
218
  msgid "Countries"
219
  msgstr "Ülkeler"
220
 
221
  #@ cpd
222
+ #: counter-options.php:460
223
  msgid "How many countries do you want to see on dashboard page?"
224
  msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
225
 
226
  #@ cpd
227
+ #: counter-core.php:733
228
+ #: counter-options.php:464
229
  msgid "Browsers"
230
  msgstr "Tarayıcılar"
231
 
232
  #@ cpd
233
+ #: counter-options.php:465
234
  msgid "Substring of the user agent, separated by comma"
235
  msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
236
 
237
  #@ cpd
238
+ #: counter-options.php:476
239
  msgid "Local URLs"
240
  msgstr "Websitenizdeki URL'ler"
241
 
242
  #@ cpd
243
+ #: counter-options.php:477
244
  msgid "Show local referrers too."
245
  msgstr "Websitenizden yönlenenler."
246
 
247
  #@ default
248
+ #: counter-options.php:485
249
  msgid "Posts"
250
  msgstr "Gönderiler"
251
 
252
  #@ default
253
+ #: counter-options.php:485
254
  msgid "Pages"
255
  msgstr "Sayfalar"
256
 
257
  #@ cpd
258
+ #: counter-options.php:488
259
  msgid "Show in lists"
260
  msgstr "Liste içinde göster"
261
 
262
  #@ cpd
263
+ #: counter-options.php:489
264
  msgid "Show \"Reads per Post\" in a new column in post management views."
265
  msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
266
 
267
  #@ cpd
268
+ #: counter-options.php:497
269
  msgid "Start Values"
270
  msgstr "Başlangıç değeri"
271
 
272
  #@ cpd
273
+ #: counter-options.php:501
274
  msgid "Here you can change the date of first count and add a start count."
275
  msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
276
 
277
  #@ cpd
278
+ #: counter-options.php:505
279
  msgid "Start date"
280
  msgstr "Başlama tarihi"
281
 
282
  #@ cpd
283
+ #: counter-options.php:506
284
  msgid "Your old Counter starts at?"
285
  msgstr "Eski sayacının başlangıç değeri ?"
286
 
287
  #@ cpd
288
+ #: counter-options.php:509
289
+ #: counter-options.php:513
290
  msgid "Start count"
291
  msgstr "Başlama sayacı"
292
 
293
  #@ cpd
294
+ #: counter-options.php:510
295
  msgid "Add this value to \"Total visitors\"."
296
  msgstr "Bu değeri ekle \"Total visitors\"."
297
 
298
  #@ cpd
299
+ #: counter-options.php:514
300
  msgid "Add this value to \"Total reads\"."
301
  msgstr "Bu değeri ekle \"Total reads\"."
302
 
303
  #@ cpd
304
+ #: counter-options.php:554
305
  msgid "Debug mode"
306
  msgstr "Problem çözme modu"
307
 
308
  #@ cpd
309
+ #: counter-options.php:556
310
  msgid "Show debug informations at the bottom of all pages."
311
  msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
312
 
313
  #@ cpd
314
+ #: counter-options.php:561
315
  msgid "Update options"
316
  msgstr "Seçenekleri güncelle"
317
 
318
  #@ cpd
319
+ #: counter-options.php:727
320
  msgid "GeoIP - Countries"
321
  msgstr "GeoIP - Ülkeler"
322
 
323
  #@ cpd
324
+ #: counter-options.php:736
325
  msgid "Update old counter data"
326
  msgstr "Eski sayaç verilerini güncelle"
327
 
328
  #@ cpd
329
+ #: counter-options.php:730
330
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
331
  msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
332
 
333
  #@ cpd
334
+ #: counter-options.php:748
335
  msgid "Update GeoIP database"
336
  msgstr "GeoIP veritabanını günce.elle."
337
 
338
  #@ cpd
339
+ #: counter-options.php:743
340
  msgid "Download a new version of GeoIP.dat file."
341
  msgstr "En son GeoIP.dat dosyasını indir."
342
 
343
  #@ cpd
344
+ #: counter-options.php:753
345
  msgid "More informations about GeoIP"
346
  msgstr "GeoIP hakkında daha fazla bilgi"
347
 
348
  #@ cpd
349
+ #: counter-options.php:580
350
+ #: massbots.php:35
351
  msgid "Mass Bots"
352
  msgstr "Kitle botları"
353
 
354
  #@ cpd
355
+ #: counter-options.php:584
356
  #, php-format
357
  msgid "Show all IPs with more than %s page views per day"
358
  msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
359
 
360
  #@ cpd
361
+ #: counter-options.php:585
362
+ #: notes.php:71
363
+ #: userperspan.php:44
364
  msgid "show"
365
  msgstr "göster"
366
 
367
  #@ cpd
368
+ #: counter-options.php:593
369
  msgid "IP"
370
  msgstr "IP"
371
 
372
  #@ cpd
373
  #@ default
374
+ #: counter-options.php:594
375
+ #: notes.php:75
376
  msgid "Date"
377
  msgstr "Tarih"
378
 
379
  #@ cpd
380
+ #: counter-options.php:595
381
  msgid "Client"
382
  msgstr "Müşteri/Kullanıcı"
383
 
384
  #@ cpd
385
+ #: counter-options.php:596
386
  msgid "Views"
387
  msgstr "Görünümler"
388
 
389
  #@ cpd
390
+ #: counter-options.php:611
391
+ #: counter-options.php:627
392
  #, php-format
393
  msgid "Delete these %s counts"
394
  msgstr "%s sayaçları sil"
395
 
396
  #@ cpd
397
+ #: counter-options.php:656
398
+ #: counter-options.php:665
399
  msgid "Clean the database"
400
  msgstr "Veritabanını temizle."
401
 
402
  #@ cpd
403
+ #: counter-options.php:659
404
  msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
405
  msgstr "\"spam data\" ile sayaç tablosunuz temizleyebilirsiniz. .<br /> Eğer yukarıya yeni botlar eklerseniz veritabanında ki eski \"spam data\" tutabilirsiniz. Buradan botlar için filitre çalıştırabilirsiniz ve botların ziyaretlerini silinir."
406
 
407
  #@ cpd
408
+ #: counter-options.php:777
409
+ #: counter-options.php:787
410
  msgid "Reset the counter"
411
  msgstr "Sayacı resetle"
412
 
413
  #@ cpd
414
+ #: counter-options.php:780
415
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
416
  msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
417
 
418
  #@ cpd
419
+ #: counter-options.php:799
420
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
421
  msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
422
 
423
  #@ cpd
424
+ #: counter-options.php:800
425
  msgid "Here you can delete the tables and disable \"Count per Day\"."
426
  msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
427
 
428
  #@ cpd
429
+ #: counter-options.php:803
430
  msgid "WARNING"
431
  msgstr "UYARI"
432
 
433
  #@ cpd
434
+ #: counter-options.php:804
435
  msgid "These tables (with ALL counter data) will be deleted."
436
  msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
437
 
438
  #@ cpd
439
+ #: counter-options.php:806
440
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
441
  msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
442
 
443
  #@ cpd
444
+ #: counter-options.php:786
445
+ #: counter-options.php:809
446
  msgid "Yes"
447
  msgstr "Evet"
448
 
449
  #@ cpd
450
+ #: counter-options.php:810
451
  msgid "You are sure to disable Count per Day and delete all data?"
452
  msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
453
 
454
  #@ cpd
455
+ #: counter-options.php:714
456
  msgid "Support"
457
  msgstr "Destek"
458
 
459
  #@ cpd
460
+ #: counter.php:155
461
+ #: counter.php:1197
462
  msgid "Total reads"
463
  msgstr "Toplam okunan."
464
 
465
  #@ cpd
466
+ #: counter.php:156
467
+ #: counter.php:1198
468
  msgid "Reads today"
469
  msgstr "Bugün okunanlar"
470
 
471
  #@ cpd
472
+ #: counter.php:157
473
+ #: counter.php:1199
474
  msgid "Reads yesterday"
475
  msgstr "Dün okunanlar"
476
 
477
  #@ cpd
478
+ #: counter.php:158
479
+ #: counter.php:1200
480
  msgid "Reads last week"
481
  msgstr "Geçen hafta okunanlar"
482
 
483
  #@ cpd
484
+ #: counter-core.php:723
485
+ #: counter.php:160
486
+ #: counter.php:1010
487
+ #: counter.php:1202
 
488
  msgid "Total visitors"
489
  msgstr "Toplam ziyaretçi"
490
 
491
  #@ cpd
492
+ #: counter.php:161
493
+ #: counter.php:1208
494
  msgid "Visitors currently online"
495
  msgstr "Şu anda online olan ziyatçiler"
496
 
497
  #@ cpd
498
+ #: counter.php:162
499
+ #: counter.php:1203
500
  msgid "Visitors today"
501
  msgstr "Bugün kü ziyaretçiler"
502
 
503
  #@ cpd
504
+ #: counter.php:163
505
+ #: counter.php:1204
506
  msgid "Visitors yesterday"
507
  msgstr "Dünkü ziyaretçiler"
508
 
509
  #@ cpd
510
+ #: counter.php:164
511
+ #: counter.php:1205
512
  msgid "Visitors last week"
513
  msgstr "Geçen haftaki ziyaretçiler"
514
 
515
  #@ cpd
516
+ #: counter-core.php:729
517
+ #: counter.php:166
518
+ #: counter.php:263
519
+ #: counter.php:1012
520
+ #: counter.php:1207
521
+ #: userperspan.php:34
 
522
  msgid "Visitors per day"
523
  msgstr "Günlük ziyaretçi"
524
 
525
  #@ cpd
526
+ #: counter.php:167
527
+ #: counter.php:825
528
+ #: counter.php:1209
529
  msgid "Counter starts on"
530
  msgstr "Sayaç başlıyacak"
531
 
532
  #@ cpd
533
+ #: counter.php:788
534
+ #: notes.php:42
535
+ #: notes.php:76
 
 
 
 
 
 
536
  msgid "Notes"
537
  msgstr "Notlar"
538
 
539
  #@ cpd
540
+ #: counter.php:672
 
 
 
 
 
541
  #, php-format
542
  msgid "The %s most visited posts in last %s days:"
543
  msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
544
 
545
  #@ default
546
+ #: counter.php:786
547
  msgid "Show"
548
  msgstr "Göster"
549
 
550
  #@ cpd
551
+ #: counter.php:821
552
  msgid "Other"
553
  msgstr "Diğer"
554
 
555
  #@ default
556
+ #: counter.php:976
557
  msgid "Edit Post"
558
  msgstr "Gönderi düzenle"
559
 
560
  #@ default
561
+ #: counter.php:985
562
  msgid "Category"
563
  msgstr "Katogori"
564
 
565
  #@ default
566
+ #: counter.php:988
567
  msgid "Tag"
568
  msgstr "Таg"
569
 
570
  #@ default
571
+ #: counter.php:991
572
+ #: massbots.php:52
573
  #: userperspan.php:63
574
  msgid "Front page displays"
575
  msgstr "Ön sayfa görüntüleri"
576
 
577
  #@ default
578
+ #: counter-core.php:575
579
+ #: counter-options.php:341
580
+ #: counter-options.php:565
581
  msgid "Settings"
582
  msgstr "Ayarlar"
583
 
584
  #@ cpd
585
+ #: counter-core.php:689
586
  #, php-format
587
  msgid "Time for Count per Day: <code>%s</code>."
588
  msgstr "Günlük sayım için zaman: <code>%s</code>."
589
 
590
  #@ cpd
591
+ #: counter-core.php:690
592
  msgid "Bug? Problem? Question? Hint? Praise?"
593
  msgstr "Problem? Soru? Fikir? Övgü?"
594
 
595
  #@ cpd
596
+ #: counter-core.php:691
597
  #, php-format
598
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
599
  msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
600
 
601
  #@ default
602
+ #: counter-core.php:692
603
  msgid "License"
604
  msgstr "Lisans"
605
 
606
  #@ cpd
607
+ #: counter.php:262
 
608
  msgid "Reads per day"
609
  msgstr "Günlük ortalama okunma"
610
 
611
  #@ cpd
612
+ #: counter-core.php:725
613
+ #: counter.php:1206
614
  msgid "Visitors per month"
615
  msgstr "Aylık ziyaretçi"
616
 
617
  #@ cpd
618
+ #: counter-core.php:726
619
+ #: counter.php:1201
620
  msgid "Reads per month"
621
  msgstr "Aylık okunma"
622
 
623
  #@ cpd
624
+ #: counter-core.php:728
625
  msgid "Latest Counts"
626
  msgstr "Son sayım"
627
 
628
  #@ default
629
+ #: counter-core.php:730
630
  msgid "Plugin"
631
  msgstr "Eklenti"
632
 
633
  #@ cpd
634
+ #: counter-core.php:734
635
  msgid "Referrer"
636
  msgstr "Yönlendirme"
637
 
638
  #@ cpd
639
+ #: counter-core.php:738
640
  msgid "Reads per Country"
641
  msgstr "Ülke bazında okuma"
642
 
643
  #@ cpd
644
+ #: counter-core.php:739
645
  msgid "Visitors per Country"
646
  msgstr "Ülke bazında ziyaretçi"
647
 
648
  #@ cpd
649
+ #: counter-core.php:754
650
+ #: counter.php:1124
651
  msgid "Statistics"
652
  msgstr "İstatislikler"
653
 
654
  #@ cpd
655
+ #: counter.php:353
656
+ #: counter.php:1041
657
  msgid "Map"
658
  msgstr "Harita"
659
 
660
  #@ cpd
661
+ #: counter.php:1196
662
  msgid "This post"
663
  msgstr "Bu gönderi"
664
 
665
  #@ default
666
+ #: counter.php:1220
667
  msgid "Title"
668
  msgstr "Başlık"
669
 
670
  #@ cpd
671
+ #: geoip/geoip.php:93
672
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
673
  msgstr "Üzgünüm, gerekli fonksiyonlar yüklü değil (zlib) yada php.ini içinde kapalı."
674
 
675
  #@ cpd
676
+ #: geoip/geoip.php:117
677
  msgid "New GeoIP database installed."
678
  msgstr "Yeni GeoIP veritabanı yüklendi."
679
 
680
  #@ cpd
681
+ #: geoip/geoip.php:119
682
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
683
  msgstr "Üzgünüm, hata oluştu, \"geoip\" klasör'ünün 777 erişim hakkını kontrol edip tekrar deneyiniz."
684
 
 
 
 
 
 
685
  #@ default
686
+ #: notes.php:77
687
  msgid "Action"
688
  msgstr "Eylem"
689
 
690
  #@ cpd
691
+ #: notes.php:82
692
  msgid "add"
693
  msgstr "ekle"
694
 
695
  #@ cpd
696
+ #: notes.php:98
697
  msgid "save"
698
  msgstr "kaydet"
699
 
700
  #@ cpd
701
+ #: notes.php:99
702
  msgid "delete"
703
  msgstr "sil"
704
 
705
  #@ cpd
706
+ #: notes.php:110
707
  msgid "edit"
708
  msgstr "eüzenle"
709
 
710
  #@ cpd
711
+ #: userperspan.php:38
712
  msgid "Start"
713
  msgstr "Başlangıç"
714
 
715
  #@ cpd
716
+ #: userperspan.php:40
717
  msgid "End"
718
  msgstr "Son"
719
 
720
  #@ cpd
721
+ #: userperspan.php:42
722
  msgid "PostID"
723
  msgstr "Gönderi ID"
724
 
725
  #@ cpd
726
+ #: userperspan.php:50
727
  msgid "no data found"
728
  msgstr "veri bulunamadı"
729
 
730
  #@ cpd
731
+ #: counter-options.php:468
 
 
 
 
 
 
 
 
 
 
732
  msgid "Referrers - Entries"
733
  msgstr "Yönlendirmeleri - Girişler"
734
 
735
  #@ cpd
736
+ #: counter-options.php:469
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
739
 
740
  #@ cpd
741
+ #: counter-options.php:472
742
  msgid "Referrers - Days"
743
  msgstr "Yönlendirmeler - Günler"
744
 
745
  #@ cpd
746
+ #: counter.php:845
747
  #, php-format
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "Son %s günkü yönlendirmeler:"
750
 
751
  #@ cpd
752
+ #: counter-core.php:724
753
  msgid "Visitors online"
754
  msgstr "Online ziyaretçiler."
755
 
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" %s sürümüne güncellendi."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Yedekleme başarısız ! Dosya açılamadı."
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "%s adet giriş yedeklme işleminde. Her nokta, %s giriş uygundur."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Wp-content klasörünüz yazılabilir değil. Ama bu pencere içindeki kutudaki düz metini kopyalayabilirsin."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "%s süre içerisinde sayaç tablosu yedeklendi."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "%s'de sayaç seçenekleri ve koleksiyon kaydedildi."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Toplama devam ediyor..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Yazı başına ziyaretçi"
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Eski verileri sil..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "%s'den bu yada sayaç girişleri toplandı ve sayaç tablosu optimize edildi."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "\"Count per Day\" yüklemesi kontrol edildi."
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Araçlar"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "URL'yi kaydet, sorgu dizisini değil."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Kimi görebilirsiniz"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "Özel"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "ve yüksek istatistikleri görmek için izin verilir."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "%s kullanıcının ihtiyacı olan %s kapasiteyi ayarlayın:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Stil"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "Önyüzde stil yok"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Önyüze \"counter.css\" stilini yükleme."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Yedek"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "İzin için giriş"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Kaç adet giriş her geçiş için saklanmalıdır ? Normal değeri : 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Eğer PHP hafıza limiti 50 MB'den az ise veboş sayfa veya hata mesajı alıyorsanız, ufak değerleri deneyin."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "(klasör e yazma izni var ise) wp-contect klasörünüzdaki %s sayaç tablosu için yedek oluştur. (klasör e yazma izni var ise)"
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Veritabanını yedekle"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Eski verileri toplama"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "Sayı tablonuzın şu anki büyüklüğü %s 'dir."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Eski verileri toplayabilirsin ve sayaç tablosunu boşaltabilirsin. <br/>Okumalar ve ziyaretçiler her ülke ve her yazı için ay ay saklanacaktır. <br/> Müşteriler ve yönlendirmeler silinir."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your colletion contains data until %s."
916
+ msgstr "Şu anki koleksiyonunuz %s 'dan bu güne kadar ki verileri içermektedir."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Normalde, yeni veriler kolsiyona ekliniyor olacak."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Eski koleksiyonu sil ve yeni bir tane oluştur. Bu yeni koleysiyonun içinde sadece şu anki sayaç tablosundaki veriler olsun."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "%s tarihine kadarki tüm koleksiyon verileri silindi."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "%s ay için son girişleri sakla + sayaç tablosundaki bu ay."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Yeniden etkinleştirme"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Burada el ile yükleme işlevlerine başlayabilirsiniz. <br/> Eklentiyi devre dışı bırakmak ve yeniden aktif etkmek aynıdır."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Eklentiyi tekrar etkinleştirmek."
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Ziyaretçiler"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "En ziyaret edilen gün"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "Sıralamak için sürekle bırak"
971
+
locale/cpd-ua_UA.mo ADDED
Binary file
locale/cpd-ua_UA.po ADDED
@@ -0,0 +1,972 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Alexandr <pixelpwnz@gmail.com>\n"
8
+ "Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Ukrainian\n"
14
+ "X-Poedit-Country: UKRAINE\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:49
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Налаштування збереженні"
26
+
27
+ #: counter-options.php:113
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Database cleaned. %s rows deleted."
31
+ msgstr "База даних очищена. %s строк видалено."
32
+
33
+ #: counter-options.php:128
34
+ #: counter-options.php:811
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "Видалити Count per Day"
38
+
39
+ #: counter-options.php:133
40
+ #: counter-options.php:134
41
+ #: counter-options.php:135
42
+ #, php-format
43
+ #@ cpd
44
+ msgid "Table %s deleted"
45
+ msgstr "Таблиця %s видалена"
46
+
47
+ #: counter-options.php:136
48
+ #@ cpd
49
+ msgid "Options deleted"
50
+ msgstr "Параметри видалено"
51
+
52
+ #: counter-options.php:317
53
+ #: counter-options.php:797
54
+ #@ cpd
55
+ msgid "Uninstall"
56
+ msgstr "Видалити"
57
+
58
+ #: counter-options.php:318
59
+ #@ cpd
60
+ msgid "Click here"
61
+ msgstr "Натисніть тут"
62
+
63
+ #: counter-options.php:318
64
+ #@ cpd
65
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
+ msgstr "Для завершення видалення і відключення \"Count per Day\"."
67
+
68
+ #: counter-options.php:356
69
+ #@ cpd
70
+ msgid "Online time"
71
+ msgstr "Час з'єднання"
72
+
73
+ #: counter-options.php:357
74
+ #@ cpd
75
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
+ msgstr "Секунд для он-лайн лічильника. Використовується для \" Відвідувачей онлайн \" на приладовій панелі сторінки."
77
+
78
+ #: counter-options.php:360
79
+ #@ cpd
80
+ msgid "Logged on Users"
81
+ msgstr "Зареєстрованих користувачів"
82
+
83
+ #: counter-options.php:362
84
+ #@ cpd
85
+ msgid "count too"
86
+ msgstr "Враховувати також"
87
+
88
+ #: counter-options.php:374
89
+ #@ cpd
90
+ msgid "Auto counter"
91
+ msgstr "Авто лічильник"
92
+
93
+ #: counter-options.php:375
94
+ #@ cpd
95
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
96
+ msgstr "Рахує автоматично окремі повідомлення і сторінки, ніяких змін в шаблон не потрібно\"."
97
+
98
+ #: counter-options.php:378
99
+ #@ cpd
100
+ msgid "Bots to ignore"
101
+ msgstr "Ігнорувати пошукові системи"
102
+
103
+ #: counter-options.php:562
104
+ #@ cpd
105
+ msgid "Update options"
106
+ msgstr "Параметри оновлення"
107
+
108
+ #: counter-options.php:657
109
+ #: counter-options.php:666
110
+ #@ cpd
111
+ msgid "Clean the database"
112
+ msgstr "Очистити бази даних"
113
+
114
+ #: counter-options.php:660
115
+ #@ cpd
116
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
+ msgstr "Ви можете очистити лічильник таблиці видаливши \"Спам\". <br />Якщо ви додаєте нових ботів над старими \"Спам\" які є в базі даних. <br />Тут ви можете запустити бот-фільтр знову і видалити візити ботів\"."
118
+
119
+ #: counter-options.php:800
120
+ #@ cpd
121
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
+ msgstr "Якщо \"Count per Day\" активований, таблиці в базі даних будуть збережені."
123
+
124
+ #: counter-options.php:801
125
+ #@ cpd
126
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
127
+ msgstr "Тут можна видалити таблиці і відключити \"Count per Day\"."
128
+
129
+ #: counter-options.php:804
130
+ #@ cpd
131
+ msgid "WARNING"
132
+ msgstr "УВАГА"
133
+
134
+ #: counter-options.php:805
135
+ #@ cpd
136
+ msgid "These tables (with ALL counter data) will be deleted."
137
+ msgstr "Ці таблиці (з усіма даними лічильника), будуть видалені."
138
+
139
+ #: counter-options.php:807
140
+ #@ cpd
141
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
+ msgstr "Якщо \"Count per Day\" було перевстановлено, лічильник починається з 0."
143
+
144
+ #: counter-options.php:787
145
+ #: counter-options.php:810
146
+ #@ cpd
147
+ msgid "Yes"
148
+ msgstr "Так"
149
+
150
+ #: counter-options.php:811
151
+ #@ cpd
152
+ msgid "You are sure to disable Count per Day and delete all data?"
153
+ msgstr "Ви впевнені, що хочете відключити Count per Day і видалити всі дані?"
154
+
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ #@ cpd
158
+ msgid "Statistics"
159
+ msgstr "Статистика"
160
+
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ #@ cpd
166
+ msgid "Total visitors"
167
+ msgstr "Усього користувачів"
168
+
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ #@ cpd
172
+ msgid "Visitors currently online"
173
+ msgstr "Відвідувачі даний час в мережі"
174
+
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ #@ cpd
178
+ msgid "Visitors today"
179
+ msgstr "Відвідувачів сьогодні"
180
+
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ #@ cpd
184
+ msgid "Visitors yesterday"
185
+ msgstr "Відвідувачів вчора"
186
+
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ #@ cpd
190
+ msgid "Visitors last week"
191
+ msgstr "Відвідувачів на минулому тижні"
192
+
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ #@ cpd
197
+ msgid "Counter starts on"
198
+ msgstr "Лічильник починається з"
199
+
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ #@ cpd
207
+ msgid "Visitors per day"
208
+ msgstr "Відвідувачів у день"
209
+
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ #@ cpd
213
+ msgid "Visitors per month"
214
+ msgstr "Відвідувачів за місяць"
215
+
216
+ #: counter-core.php:727
217
+ #: counter-options.php:439
218
+ #@ cpd
219
+ msgid "Visitors per post"
220
+ msgstr "Відвідувачів повідомлення"
221
+
222
+ #: counter-options.php:123
223
+ #@ cpd
224
+ msgid "Counter reseted."
225
+ msgstr "Лічильник оновлено"
226
+
227
+ #: counter-options.php:404
228
+ #@ default
229
+ msgid "Dashboard"
230
+ msgstr "Панель"
231
+
232
+ #: counter-options.php:440
233
+ #: counter-options.php:444
234
+ #@ cpd
235
+ msgid "How many posts do you want to see on dashboard page?"
236
+ msgstr "Скільки повідомлень ви хочете бачити на приладовій панелі сторінки?"
237
+
238
+ #: counter-options.php:443
239
+ #@ cpd
240
+ msgid "Latest Counts - Posts"
241
+ msgstr "Останні рахунки - Повідомлення"
242
+
243
+ #: counter-options.php:447
244
+ #@ cpd
245
+ msgid "Latest Counts - Days"
246
+ msgstr "Останні рахунки - Дні"
247
+
248
+ #: counter-options.php:448
249
+ #: counter-options.php:452
250
+ #: counter-options.php:474
251
+ #@ cpd
252
+ msgid "How many days do you want look back?"
253
+ msgstr "На скільки днів ви хочете озирнутися назад?"
254
+
255
+ #: counter-options.php:451
256
+ #@ cpd
257
+ msgid "Chart - Days"
258
+ msgstr "Графік - Дні"
259
+
260
+ #: counter-options.php:455
261
+ #@ cpd
262
+ msgid "Chart - Height"
263
+ msgstr "Графік - висота"
264
+
265
+ #: counter-options.php:456
266
+ #@ cpd
267
+ msgid "Height of the biggest bar"
268
+ msgstr "Висота найбільшого стовпчика"
269
+
270
+ #: counter-options.php:489
271
+ #@ cpd
272
+ msgid "Show in lists"
273
+ msgstr "Показувати в списках"
274
+
275
+ #: counter-options.php:490
276
+ #@ cpd
277
+ msgid "Show \"Reads per Post\" in a new column in post management views."
278
+ msgstr "Показати \"Читачів на повідомлення\" в новій колонці в управлінні записами."
279
+
280
+ #: counter-options.php:778
281
+ #: counter-options.php:788
282
+ #@ cpd
283
+ msgid "Reset the counter"
284
+ msgstr "Скидання лічильника"
285
+
286
+ #: counter-options.php:781
287
+ #@ cpd
288
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
289
+ msgstr "Ви можете скинути лічильник шляхом очищення таблиці. ВСІ НА 0! <br />Зробіть резервну копію, якщо вам потрібні поточні дані!"
290
+
291
+ #: counter.php:672
292
+ #, php-format
293
+ #@ cpd
294
+ msgid "The %s most visited posts in last %s days:"
295
+ msgstr "%s самих відвідуваних повідомлень за останні %s днів."
296
+
297
+ #: counter-core.php:575
298
+ #: counter-options.php:342
299
+ #: counter-options.php:566
300
+ #@ default
301
+ msgid "Settings"
302
+ msgstr "Настройки"
303
+
304
+ #: counter.php:262
305
+ #@ cpd
306
+ msgid "Reads per day"
307
+ msgstr "Читання в день"
308
+
309
+ #: counter-core.php:639
310
+ #: counter-options.php:393
311
+ #: counter.php:159
312
+ #: counter.php:875
313
+ #@ cpd
314
+ msgid "Reads"
315
+ msgstr "Читання"
316
+
317
+ #: counter.php:1196
318
+ #@ cpd
319
+ msgid "This post"
320
+ msgstr "Це повідомлення"
321
+
322
+ #: counter-options.php:60
323
+ #, php-format
324
+ #@ cpd
325
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
+ msgstr "Країни оновлені. <b>%s</b> записів в %s залишилось без країни"
327
+
328
+ #: counter-options.php:63
329
+ #@ cpd
330
+ msgid "update next"
331
+ msgstr "Оновити наступний"
332
+
333
+ #: counter-options.php:103
334
+ #, php-format
335
+ #@ cpd
336
+ msgid "Mass Bots cleaned. %s counts deleted."
337
+ msgstr "Таблиця Пошукових систем очищена. %s записів видалено."
338
+
339
+ #: counter-options.php:363
340
+ #@ cpd
341
+ msgid "until User Level"
342
+ msgstr "до рівня користувача"
343
+
344
+ #: counter-options.php:382
345
+ #@ cpd
346
+ msgid "Anonymous IP"
347
+ msgstr "Анонімний IP"
348
+
349
+ #: counter-options.php:460
350
+ #@ cpd
351
+ msgid "Countries"
352
+ msgstr "Країни"
353
+
354
+ #: counter-options.php:461
355
+ #@ cpd
356
+ msgid "How many countries do you want to see on dashboard page?"
357
+ msgstr "Скільки країн ви хотіли б бачити на приладовій панелі сторінки?"
358
+
359
+ #: counter-options.php:498
360
+ #@ cpd
361
+ msgid "Start Values"
362
+ msgstr "Початкові дані"
363
+
364
+ #: counter-options.php:502
365
+ #@ cpd
366
+ msgid "Here you can change the date of first count and add a start count."
367
+ msgstr "Тут ви можете змінити дату першого відрахунку і задати початок відрахунку."
368
+
369
+ #: counter-options.php:506
370
+ #@ cpd
371
+ msgid "Start date"
372
+ msgstr "Дата початку"
373
+
374
+ #: counter-options.php:507
375
+ #@ cpd
376
+ msgid "Your old Counter starts at?"
377
+ msgstr "Ваш старий лічильник починався з?"
378
+
379
+ #: counter-options.php:510
380
+ #: counter-options.php:514
381
+ #@ cpd
382
+ msgid "Start count"
383
+ msgstr "Почати рахувати"
384
+
385
+ #: counter-options.php:511
386
+ #@ cpd
387
+ msgid "Add this value to \"Total visitors\"."
388
+ msgstr "Установка цього значення в \"Усього користувачів\"."
389
+
390
+ #: counter-options.php:728
391
+ #@ cpd
392
+ msgid "GeoIP - Countries"
393
+ msgstr "GeoIP - Країни"
394
+
395
+ #: counter-options.php:737
396
+ #@ cpd
397
+ msgid "Update old counter data"
398
+ msgstr "Оновлення старих даних лічильника"
399
+
400
+ #: counter-options.php:749
401
+ #@ cpd
402
+ msgid "Update GeoIP database"
403
+ msgstr "Оновлення бази даних GeoIP"
404
+
405
+ #: counter-options.php:744
406
+ #@ cpd
407
+ msgid "Download a new version of GeoIP.dat file."
408
+ msgstr "Завантажити нову версію файла GeoIP.dat"
409
+
410
+ #: counter-options.php:754
411
+ #@ cpd
412
+ msgid "More informations about GeoIP"
413
+ msgstr "Більш детальна інформація про GeoIP"
414
+
415
+ #: counter-options.php:581
416
+ #: massbots.php:35
417
+ #@ cpd
418
+ msgid "Mass Bots"
419
+ msgstr "Масові Пошукові системи"
420
+
421
+ #: counter-options.php:585
422
+ #, php-format
423
+ #@ cpd
424
+ msgid "Show all IPs with more than %s page views per day"
425
+ msgstr "Показати всі IP-адреси з більш ніж %s переглядів сторінок на день"
426
+
427
+ #: counter-options.php:586
428
+ #: notes.php:71
429
+ #: userperspan.php:44
430
+ #@ cpd
431
+ msgid "show"
432
+ msgstr "показати"
433
+
434
+ #: counter-options.php:594
435
+ #@ cpd
436
+ msgid "IP"
437
+ msgstr "IP"
438
+
439
+ #: counter-options.php:595
440
+ #: notes.php:75
441
+ #@ cpd
442
+ #@ default
443
+ msgid "Date"
444
+ msgstr "Дата"
445
+
446
+ #: counter-options.php:596
447
+ #@ cpd
448
+ msgid "Client"
449
+ msgstr "Клієнт"
450
+
451
+ #: counter-options.php:597
452
+ #@ cpd
453
+ msgid "Views"
454
+ msgstr "Переглядів"
455
+
456
+ #: counter-options.php:612
457
+ #: counter-options.php:628
458
+ #, php-format
459
+ #@ cpd
460
+ msgid "Delete these %s counts"
461
+ msgstr "Видалити ц і%s лічильників"
462
+
463
+ #: counter-options.php:715
464
+ #@ cpd
465
+ msgid "Support"
466
+ msgstr "Підтримка"
467
+
468
+ #: counter-core.php:689
469
+ #, php-format
470
+ #@ cpd
471
+ msgid "Time for Count per Day: <code>%s</code>."
472
+ msgstr "Час для Count per Day: <code>%s</code>."
473
+
474
+ #: counter-core.php:690
475
+ #@ cpd
476
+ msgid "Bug? Problem? Question? Hint? Praise?"
477
+ msgstr "Помилка? Проблема? Питання? Підказка? Хвала?"
478
+
479
+ #: counter-core.php:691
480
+ #, php-format
481
+ #@ cpd
482
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
483
+ msgstr "Написати коментар на <a href=\"%s\">сторінці плагіна</a>."
484
+
485
+ #: counter.php:155
486
+ #: counter.php:1197
487
+ #@ cpd
488
+ msgid "Total reads"
489
+ msgstr "Всього читаннь"
490
+
491
+ #: counter.php:156
492
+ #: counter.php:1198
493
+ #@ cpd
494
+ msgid "Reads today"
495
+ msgstr "Читаннь сьогодні"
496
+
497
+ #: counter.php:157
498
+ #: counter.php:1199
499
+ #@ cpd
500
+ msgid "Reads yesterday"
501
+ msgstr "Читаннь вчора"
502
+
503
+ #: counter.php:788
504
+ #: notes.php:42
505
+ #: notes.php:76
506
+ #@ cpd
507
+ msgid "Notes"
508
+ msgstr "Записки"
509
+
510
+ #: counter.php:786
511
+ #@ default
512
+ msgid "Show"
513
+ msgstr "Показати"
514
+
515
+ #: counter.php:821
516
+ #@ cpd
517
+ msgid "Other"
518
+ msgstr "Інші"
519
+
520
+ #: counter.php:976
521
+ #@ default
522
+ msgid "Edit Post"
523
+ msgstr "Редагувати повідомлення"
524
+
525
+ #: counter.php:991
526
+ #: massbots.php:52
527
+ #: userperspan.php:63
528
+ #@ default
529
+ msgid "Front page displays"
530
+ msgstr "Відображати на першій сторінці"
531
+
532
+ #: counter-core.php:733
533
+ #: counter-options.php:465
534
+ #@ cpd
535
+ msgid "Browsers"
536
+ msgstr "Браузери"
537
+
538
+ #: counter-core.php:728
539
+ #@ cpd
540
+ msgid "Latest Counts"
541
+ msgstr "Останні підрахунки"
542
+
543
+ #: counter-core.php:730
544
+ #@ default
545
+ msgid "Plugin"
546
+ msgstr "Плагін"
547
+
548
+ #: counter-core.php:738
549
+ #@ cpd
550
+ msgid "Reads per Country"
551
+ msgstr "Читання по країнам"
552
+
553
+ #: counter.php:353
554
+ #: counter.php:1041
555
+ #@ cpd
556
+ msgid "Map"
557
+ msgstr "Карта"
558
+
559
+ #: geoip/geoip.php:93
560
+ #@ cpd
561
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
+ msgstr "На жаль, необхідні функції (Zlib) не встановлені або не включені в php.ini."
563
+
564
+ #: geoip/geoip.php:117
565
+ #@ cpd
566
+ msgid "New GeoIP database installed."
567
+ msgstr "Нова база даних GeoIP встановлена."
568
+
569
+ #: geoip/geoip.php:119
570
+ #@ cpd
571
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
+ msgstr "Вибачте, сталася помилка. Спробуйте ще раз або перевірьте права доступу каталогу \"GeoIP\" є 777."
573
+
574
+ #: notes.php:77
575
+ #@ default
576
+ msgid "Action"
577
+ msgstr "Дія"
578
+
579
+ #: notes.php:82
580
+ #@ cpd
581
+ msgid "add"
582
+ msgstr "Додати"
583
+
584
+ #: notes.php:98
585
+ #@ cpd
586
+ msgid "save"
587
+ msgstr "Зберегти"
588
+
589
+ #: notes.php:99
590
+ #@ cpd
591
+ msgid "delete"
592
+ msgstr "Видалити"
593
+
594
+ #: notes.php:110
595
+ #@ cpd
596
+ msgid "edit"
597
+ msgstr "Змінити"
598
+
599
+ #: counter-options.php:386
600
+ #@ cpd
601
+ msgid "Cache"
602
+ msgstr "Кеш"
603
+
604
+ #: counter-options.php:387
605
+ #@ cpd
606
+ msgid "I use a cache plugin. Count these visits with ajax."
607
+ msgstr "Я використовую кеш плагінів. Рахувати ці візити за допомогою Ajax."
608
+
609
+ #: counter-options.php:466
610
+ #@ cpd
611
+ msgid "Substring of the user agent, separated by comma"
612
+ msgstr "Підрядок агента користувача, розділених комою"
613
+
614
+ #: counter-options.php:555
615
+ #@ cpd
616
+ msgid "Debug mode"
617
+ msgstr "Режим відлагодження"
618
+
619
+ #: counter-options.php:557
620
+ #@ cpd
621
+ msgid "Show debug informations at the bottom of all pages."
622
+ msgstr "Показати відлагоджувальну інофрмацію в нижній частині всіх сторінок."
623
+
624
+ #: counter-core.php:739
625
+ #@ cpd
626
+ msgid "Visitors per Country"
627
+ msgstr "Відвідувачів по країнах"
628
+
629
+ #: userperspan.php:38
630
+ #@ cpd
631
+ msgid "Start"
632
+ msgstr "Старт"
633
+
634
+ #: userperspan.php:40
635
+ #@ cpd
636
+ msgid "End"
637
+ msgstr "Кінець"
638
+
639
+ #: userperspan.php:42
640
+ #@ cpd
641
+ msgid "PostID"
642
+ msgstr "ID повідомлення"
643
+
644
+ #: counter-options.php:515
645
+ #@ cpd
646
+ msgid "Add this value to \"Total reads\"."
647
+ msgstr "Установити це значення в \"Всього читаннь\"."
648
+
649
+ #: counter-options.php:731
650
+ #@ cpd
651
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
652
+ msgstr "Ви можете отримати дані по країнах для всіх записів в базі даних, перевіряючи IP-адреси по базі даних GeoIP. Це може зайняти деякий час!"
653
+
654
+ #: userperspan.php:50
655
+ #@ cpd
656
+ msgid "no data found"
657
+ msgstr "Нічого не знайдено"
658
+
659
+ #: counter-options.php:352
660
+ #@ cpd
661
+ msgid "Counter"
662
+ msgstr "Лічильник"
663
+
664
+ #: counter-options.php:390
665
+ #@ cpd
666
+ msgid "Clients and referrers"
667
+ msgstr "Клієнти та джерела"
668
+
669
+ #: counter-options.php:393
670
+ #@ cpd
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr "Зберегти і показати клієнтів і джерела. <br />Потребує багато місця в базі даних, але надає більш детальну інформацію про ваших відвідувачів."
673
+
674
+ #: counter-options.php:477
675
+ #@ cpd
676
+ msgid "Local URLs"
677
+ msgstr "Місцеві URL"
678
+
679
+ #: counter-options.php:478
680
+ #@ cpd
681
+ msgid "Show local referrers too."
682
+ msgstr "Показати місцеві джерела теж."
683
+
684
+ #: counter-options.php:486
685
+ #@ default
686
+ msgid "Posts"
687
+ msgstr "Повідомлення"
688
+
689
+ #: counter-options.php:486
690
+ #@ default
691
+ msgid "Pages"
692
+ msgstr "Сторінки"
693
+
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ #@ cpd
697
+ msgid "Reads last week"
698
+ msgstr "Читаннь минулого тижня"
699
+
700
+ #: counter.php:985
701
+ #@ default
702
+ msgid "Category"
703
+ msgstr "Категорія"
704
+
705
+ #: counter.php:988
706
+ #@ default
707
+ msgid "Tag"
708
+ msgstr "Тег"
709
+
710
+ #: counter-core.php:692
711
+ #@ default
712
+ msgid "License"
713
+ msgstr "Ліцензія"
714
+
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ #@ cpd
718
+ msgid "Reads per month"
719
+ msgstr "Читаннь в місяць"
720
+
721
+ #: counter-core.php:734
722
+ #@ cpd
723
+ msgid "Referrer"
724
+ msgstr "Джерела"
725
+
726
+ #: counter-options.php:469
727
+ #@ cpd
728
+ msgid "Referrers - Entries"
729
+ msgstr "Джерела - Входження"
730
+
731
+ #: counter-options.php:470
732
+ #@ cpd
733
+ msgid "How many referrers do you want to see on dashboard page?"
734
+ msgstr "Скільки джерел ви хочете бачити на приладовій панелі сторінки?"
735
+
736
+ #: counter-options.php:473
737
+ #@ cpd
738
+ msgid "Referrers - Days"
739
+ msgstr "Джерела - Дні"
740
+
741
+ #: counter.php:845
742
+ #, php-format
743
+ #@ cpd
744
+ msgid "The %s referrers in last %s days:"
745
+ msgstr "%s джерел в останні %s днів:"
746
+
747
+ #: counter-core.php:724
748
+ #@ cpd
749
+ msgid "Visitors online"
750
+ msgstr "Відвідувачів онлайн"
751
+
752
+ #: counter.php:1220
753
+ #@ default
754
+ msgid "Title"
755
+ msgstr "Назва"
756
+
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:917
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:171
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:241
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:262
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:286
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:295
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:343
818
+ #: counter-options.php:567
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:395
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:420
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:429
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:431
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:433
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:523
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:526
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:527
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:535
865
+ #: counter-options.php:640
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:538
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:541
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:546
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:644
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:648
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:675
897
+ #: counter-options.php:707
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:680
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:682
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:687
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:691
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:697
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:698
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:703
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:762
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:765
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:770
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr ""
972
+
map/ammap.swf CHANGED
Binary file
map/data.xml.php CHANGED
@@ -1,81 +1,68 @@
1
  <?php
2
  if (!session_id()) session_start();
3
- require_once($_SESSION['cpd_wp'].'wp-load.php');
 
4
  require_once($cpd_path.'/geoip/geoip.php');
5
  $geoip = new GeoIPCpD();
6
  $data = array();
7
 
8
  $what = (empty($_GET['map'])) ? 'reads' : $_GET['map'];
9
 
10
- if ( $what == 'visitors online' )
11
  {
12
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
13
-
14
- $res = $count_per_day->getQuery("SELECT INET_NTOA(ip) AS ip FROM ".CPD_CO_TABLE, 'getUserOnline');
15
- if ( @mysql_num_rows($res) )
16
  {
17
- $vo = array();
18
- while ( $r = mysql_fetch_array($res) )
 
19
  {
20
- $country = cpd_geoip_country_code_by_addr($gi, $r['ip']);
21
- $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country];
22
- if ( !empty($id) )
23
- {
24
- $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
25
- $count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
26
- $vo[$country] = array($name, $count);
27
- }
28
  }
29
- foreach ( $vo as $k => $v )
30
- $data[] = array($v[0], $k ,$v[1]);
31
  }
 
 
32
  }
33
  else
34
  {
35
- if ( $what == 'visitors' )
36
- $res = $count_per_day->getQuery("
37
- SELECT country, COUNT(*) c
38
- FROM ( SELECT country, ip, COUNT(*) c
39
- FROM ".CPD_C_TABLE."
40
- WHERE ip > 0
41
- GROUP BY country, ip ) AS t
42
- GROUP BY country", 'getCountriesMap');
43
- else
44
- $res = $count_per_day->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE country > '' GROUP BY country", 'getCountriesMap');
45
-
46
- while ( $r = mysql_fetch_array($res) )
47
  {
48
- $country = strtoupper($r['country']);
49
- $name = $geoip->GEOIP_COUNTRY_NAMES[ $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country] ];
50
- if ( !empty($name) )
51
- $data[] = array($name, $country ,$r['c']);
 
 
 
52
  }
53
  }
54
 
55
  header("content-type: text/xml; charset=utf-8");
56
  echo '<?xml version="1.0" encoding="UTF-8"?>';
57
  ?>
58
-
59
  <map map_file="world.swf" tl_long="-168.49" tl_lat="83.63" br_long="190.3" br_lat="-55.58" zoom_x="10%" zoom_y="6%" zoom="85%">
60
  <areas>
61
-
62
  <?php
63
  foreach ( $data as $d )
64
  echo '<area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
65
  ';
66
  ?>
67
-
68
  <area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
69
  </areas>
70
-
71
  <labels>
72
  <label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
73
  <text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
74
  </label>
75
  </labels>
76
-
77
  <movies>
78
  <movie long="13" lat="53.4" file="target" width="10" height="10" color="#000000" fixed_size="true" title="Home of your best friend: Tom, the plugin author ;)"></movie>
79
  </movies>
80
-
81
  </map>
1
  <?php
2
  if (!session_id()) session_start();
3
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../../';
4
+ require_once($cpd_wp.'wp-load.php');
5
  require_once($cpd_path.'/geoip/geoip.php');
6
  $geoip = new GeoIPCpD();
7
  $data = array();
8
 
9
  $what = (empty($_GET['map'])) ? 'reads' : $_GET['map'];
10
 
11
+ if ( $what == 'online' )
12
  {
13
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
14
+ $oc = get_option('count_per_day_online', array());
15
+ $vo = array();
16
+ foreach ($oc as $ip => $x)
17
  {
18
+ $country = cpd_geoip_country_code_by_addr($gi, $ip);
19
+ $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country];
20
+ if ( !empty($id) )
21
  {
22
+ $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
23
+ $count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
24
+ $vo[$country] = array($name, $count);
 
 
 
 
 
25
  }
 
 
26
  }
27
+ foreach ( $vo as $k => $v )
28
+ $data[] = array($v[0], $k ,$v[1]);
29
  }
30
  else
31
  {
32
+ $temp = $count_per_day->addCollectionToCountries( ($what == 'visitors') );
33
+
34
+ foreach ($temp as $country => $value)
 
 
 
 
 
 
 
 
 
35
  {
36
+ if ($country != '-')
37
+ {
38
+ $country = strtoupper($country);
39
+ $name = $geoip->GEOIP_COUNTRY_NAMES[ $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country] ];
40
+ if ( !empty($name) )
41
+ $data[] = array($name, $country ,$value);
42
+ }
43
  }
44
  }
45
 
46
  header("content-type: text/xml; charset=utf-8");
47
  echo '<?xml version="1.0" encoding="UTF-8"?>';
48
  ?>
 
49
  <map map_file="world.swf" tl_long="-168.49" tl_lat="83.63" br_long="190.3" br_lat="-55.58" zoom_x="10%" zoom_y="6%" zoom="85%">
50
  <areas>
 
51
  <?php
52
  foreach ( $data as $d )
53
  echo '<area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
54
  ';
55
  ?>
 
56
  <area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
57
  </areas>
58
+ <?php if (empty($_GET['min'])) { ?>
59
  <labels>
60
  <label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
61
  <text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
62
  </label>
63
  </labels>
 
64
  <movies>
65
  <movie long="13" lat="53.4" file="target" width="10" height="10" color="#000000" fixed_size="true" title="Home of your best friend: Tom, the plugin author ;)"></movie>
66
  </movies>
67
+ <?php } ?>
68
  </map>
map/map.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php $what = (empty($_GET['map'])) ? 'reads' : $_GET['map']; ?>
2
 
3
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
- <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE">
5
  <head>
6
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
  <title>CountPerDay</title>
1
  <?php $what = (empty($_GET['map'])) ? 'reads' : $_GET['map']; ?>
2
 
3
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml">
5
  <head>
6
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
  <title>CountPerDay</title>
map/settings.xml.php CHANGED
@@ -1,5 +1,6 @@
1
  <?php
2
  $what = (empty($_GET['map'])) ? 'Reads' : ucfirst($_GET['map']);
 
3
 
4
  header("content-type: text/xml; charset=utf-8");
5
  echo '<?xml version="1.0" encoding="UTF-8"?>';
@@ -38,12 +39,14 @@ echo '<?xml version="1.0" encoding="UTF-8"?>';
38
  </balloon>
39
 
40
  <zoom>
 
41
  <x>5</x>
42
  <y>27</y>
43
  <min>85</min>
44
  </zoom>
45
 
46
  <legend>
 
47
  <x>5</x>
48
  <y>!32</y>
49
  <margins>5</margins>
1
  <?php
2
  $what = (empty($_GET['map'])) ? 'Reads' : ucfirst($_GET['map']);
3
+ $disable = (empty($_GET['min'])) ? '' : '<enabled>false</enabled>';
4
 
5
  header("content-type: text/xml; charset=utf-8");
6
  echo '<?xml version="1.0" encoding="UTF-8"?>';
39
  </balloon>
40
 
41
  <zoom>
42
+ <?php echo $disable ?>
43
  <x>5</x>
44
  <y>27</y>
45
  <min>85</min>
46
  </zoom>
47
 
48
  <legend>
49
+ <?php echo $disable ?>
50
  <x>5</x>
51
  <y>!32</y>
52
  <margins>5</margins>
massbots.php CHANGED
@@ -1,24 +1,27 @@
1
  <?php
2
  if (!session_id()) session_start();
3
- require_once($_SESSION['cpd_wp'].'wp-load.php');
 
4
 
5
  if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
6
  {
7
- $sql = 'SELECT c.page post_id, p.post_title post,
8
- t.name tag_cat_name,
9
- t.slug tag_cat_slug,
10
- x.taxonomy tax
11
- FROM '.CPD_C_TABLE.' c
12
- LEFT JOIN '.$wpdb->posts.' p
13
- ON p.ID = c.page
14
- LEFT JOIN '.$wpdb->terms.' t
15
- ON t.term_id = 0 - c.page
16
- LEFT JOIN '.$wpdb->term_taxonomy.' x
17
- ON x.term_id = t.term_id
18
- WHERE c.ip = '.$_GET['dmbip'].'
19
- AND c.date = \''.$_GET['dmbdate'].'\'
20
- ORDER BY p.ID';
21
- $massbots = $count_per_day->getQuery($sql, 'showMassbotPosts');
 
 
22
  }
23
  ?>
24
 
@@ -33,30 +36,30 @@ if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
33
  <h2><?php _e('Mass Bots', 'cpd') ?></h2>
34
  <ol>
35
  <?php
36
- while ( $row = mysql_fetch_array($massbots) )
37
  {
38
- if ( $row['post_id'] < 0 && $row['tax'] == 'category' )
39
  {
40
- $name = '- '.$row['tag_cat_name'].' -';
41
- $link = get_bloginfo('url').'?cat='.abs($row['post_id']);
42
  }
43
- else if ( $row['post_id'] < 0 )
44
  {
45
- $name = '- '.$row['tag_cat_name'].' -';
46
- $link = get_bloginfo('url').'?tag='.$row['tag_cat_slug'];
47
  }
48
- else if ( $row['post_id'] == 0 )
49
  {
50
  $name = '- '.__('Front page displays').' -';
51
  $link = get_bloginfo('url');
52
  }
53
  else
54
  {
55
- $postname = $row['post'];
56
  if ( empty($postname) )
57
  $postname = '---';
58
  $name = $postname;
59
- $link = get_permalink($row['post_id']);
60
  }
61
  echo '<li><a href="'.$link.'" target="_blank">'.$name.'</a></li>';
62
  }
1
  <?php
2
  if (!session_id()) session_start();
3
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../';
4
+ require_once($cpd_wp.'wp-load.php');
5
 
6
  if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
7
  {
8
+ $sql = $wpdb->prepare("
9
+ SELECT c.page post_id, p.post_title post,
10
+ t.name tag_cat_name,
11
+ t.slug tag_cat_slug,
12
+ x.taxonomy tax
13
+ FROM $wpdb->cpd_counter c
14
+ LEFT JOIN $wpdb->posts p
15
+ ON p.ID = c.page
16
+ LEFT JOIN $wpdb->terms t
17
+ ON t.term_id = 0 - c.page
18
+ LEFT JOIN $wpdb->term_taxonomy x
19
+ ON x.term_id = t.term_id
20
+ WHERE c.ip = %d
21
+ AND c.date = %s
22
+ ORDER BY p.ID",
23
+ $_GET['dmbip'], $_GET['dmbdate'] );
24
+ $massbots = $count_per_day->mysqlQuery('rows', $sql, 'showMassbotPosts');
25
  }
26
  ?>
27
 
36
  <h2><?php _e('Mass Bots', 'cpd') ?></h2>
37
  <ol>
38
  <?php
39
+ foreach ( $massbots as $r )
40
  {
41
+ if ( $r->post_id < 0 && $r->tax == 'category' )
42
  {
43
+ $name = '- '.$row->tag_cat_name.' -';
44
+ $link = get_bloginfo('url').'?cat='.abs($r->post_id);
45
  }
46
+ else if ( $r->post_id < 0 )
47
  {
48
+ $name = '- '.$r->tag_cat_name.' -';
49
+ $link = get_bloginfo('url').'?tag='.$r->tag_cat_slug;
50
  }
51
+ else if ( $r->post_id == 0 )
52
  {
53
  $name = '- '.__('Front page displays').' -';
54
  $link = get_bloginfo('url');
55
  }
56
  else
57
  {
58
+ $postname = $r->post;
59
  if ( empty($postname) )
60
  $postname = '---';
61
  $name = $postname;
62
+ $link = get_permalink($r->post_id);
63
  }
64
  echo '<li><a href="'.$link.'" target="_blank">'.$name.'</a></li>';
65
  }
notes.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
  if (!session_id()) session_start();
3
- require_once($_SESSION['cpd_wp'].'wp-load.php');
 
4
 
5
  // set default values
6
  if ( isset($_POST['month']) )
@@ -16,28 +17,22 @@ else if ( isset($_GET['year']) )
16
  $year = (int) $_GET['year'];
17
  else
18
  $year = date_i18n('Y');
19
-
 
 
 
20
  // save changes
21
  if ( isset($_POST['new']) )
22
- $sql = "INSERT INTO ".$table_prefix."cpd_notes (date, note) VALUES ('".$_POST['date']."', '".$_POST['note']."')";
23
  else if ( isset($_POST['edit']) )
24
- $sql = "UPDATE ".$table_prefix."cpd_notes SET date = '".$_POST['date']."', note = '".$_POST['note']."' WHERE id = ".$_POST['id'];
25
  else if ( isset($_POST['delete']) )
26
- $sql = "DELETE FROM ".$table_prefix."cpd_notes WHERE id = ".$_POST['id'];
27
- if ( !empty($sql) )
28
- $wpdb->query($wpdb->prepare($sql));
29
-
30
- // load notes
31
- $where = '';
32
- if ( $month )
33
- $where .= " AND MONTH(date) = $month ";
34
- if ( $year )
35
- $where .= " AND YEAR(date) = $year ";
36
- $notes = $wpdb->get_results($wpdb->prepare('SELECT * FROM '.$table_prefix.'cpd_notes WHERE 1 '.$where.' ORDER BY date DESC'), ARRAY_A);
37
  ?>
38
 
39
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
40
- <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE">
41
  <head>
42
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
43
  <title>CountPerDay</title>
@@ -78,7 +73,7 @@ $notes = $wpdb->get_results($wpdb->prepare('SELECT * FROM '.$table_prefix.'cpd_n
78
  </tr>
79
  <tr>
80
  <th style="width:15%"><?php _e('Date') ?></th>
81
- <th style="width:75%"><?php _e('Notes', 'cpd') ?> <?php _e('(1 per day)', 'cpd') ?></th>
82
  <th style="width:10%"><?php _e('Action') ?></th>
83
  </tr>
84
  <tr>
@@ -87,18 +82,19 @@ $notes = $wpdb->get_results($wpdb->prepare('SELECT * FROM '.$table_prefix.'cpd_n
87
  <td><input type="submit" name="new" value="+" title="<?php _e('add', 'cpd') ?>" class="green" /></td>
88
  </tr>
89
  <?php
90
- if ( $notes )
91
  {
92
- foreach ( $notes as $row )
 
93
  {
94
- if ( isset($_POST['edit_'.$row['id']]) || isset($_POST['edit_'.$row['id'].'_x']) )
95
  {
96
  ?>
97
  <tr style="background: #ccc">
98
- <td><input name="date" value="<?php echo $row['date'] ?>" /></td>
99
- <td><input name="note" value="<?php echo $row['note'] ?>" maxlength="250" /></td>
100
  <td class="nowrap">
101
- <input type="hidden" name="id" value="<?php echo $row['id'] ?>" />
102
  <input type="submit" name="edit" value="V" title="<?php _e('save', 'cpd') ?>" class="green" style="width:45%;" />
103
  <input type="submit" name="delete" value="X"title="<?php _e('delete', 'cpd') ?>" class="red" style="width:45%;" />
104
  </td>
@@ -109,9 +105,9 @@ if ( $notes )
109
  {
110
  ?>
111
  <tr>
112
- <td><?php echo $row['date'] ?></td>
113
- <td><?php echo $row['note'] ?></td>
114
- <td><input type="image" src="img/cpd_pen.png" name="edit_<?php echo $row['id'] ?>" title="<?php _e('edit', 'cpd') ?>" style="width:auto;" /></td>
115
  </tr>
116
  <?php
117
  }
1
  <?php
2
  if (!session_id()) session_start();
3
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../';
4
+ require_once($cpd_wp.'wp-load.php');
5
 
6
  // set default values
7
  if ( isset($_POST['month']) )
17
  $year = (int) $_GET['year'];
18
  else
19
  $year = date_i18n('Y');
20
+
21
+ // load notes
22
+ $n = get_option('count_per_day_notes', array());
23
+
24
  // save changes
25
  if ( isset($_POST['new']) )
26
+ $n[] = array( $_POST['date'], $_POST['note'] );
27
  else if ( isset($_POST['edit']) )
28
+ $n[$_POST['id']] = array( $_POST['date'], $_POST['note'] );
29
  else if ( isset($_POST['delete']) )
30
+ unset($n[$_POST['id']]);
31
+ update_option('count_per_day_notes', $n);
 
 
 
 
 
 
 
 
 
32
  ?>
33
 
34
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
35
+ <html xmlns="http://www.w3.org/1999/xhtml">
36
  <head>
37
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
38
  <title>CountPerDay</title>
73
  </tr>
74
  <tr>
75
  <th style="width:15%"><?php _e('Date') ?></th>
76
+ <th style="width:75%"><?php _e('Notes', 'cpd') ?></th>
77
  <th style="width:10%"><?php _e('Action') ?></th>
78
  </tr>
79
  <tr>
82
  <td><input type="submit" name="new" value="+" title="<?php _e('add', 'cpd') ?>" class="green" /></td>
83
  </tr>
84
  <?php
85
+ foreach ($n as $id => $v)
86
  {
87
+ if ( (!$month || $month == date('m', strtotime($v[0])))
88
+ && (!$year || $year == date('Y', strtotime($v[0]))) )
89
  {
90
+ if ( isset($_POST['edit_'.$id]) || isset($_POST['edit_'.$id.'_x']) )
91
  {
92
  ?>
93
  <tr style="background: #ccc">
94
+ <td><input name="date" value="<?php echo $v[0] ?>" /></td>
95
+ <td><input name="note" value="<?php echo $v[1] ?>" /></td>
96
  <td class="nowrap">
97
+ <input type="hidden" name="id" value="<?php echo $id ?>" />
98
  <input type="submit" name="edit" value="V" title="<?php _e('save', 'cpd') ?>" class="green" style="width:45%;" />
99
  <input type="submit" name="delete" value="X"title="<?php _e('delete', 'cpd') ?>" class="red" style="width:45%;" />
100
  </td>
105
  {
106
  ?>
107
  <tr>
108
+ <td><?php echo $v[0] ?></td>
109
+ <td><?php echo $v[1] ?></td>
110
+ <td><input type="image" src="img/cpd_pen.png" name="edit_<?php echo $id ?>" title="<?php _e('edit', 'cpd') ?>" style="width:auto;" /></td>
111
  </tr>
112
  <?php
113
  }
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Count per Day ===
2
  Contributors: Tom Braider
3
  Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
4
- Requires at least: 2.7
5
- Tested up to: 3.1
6
- Stable tag: 2.17
7
- License: Postcardware
8
  Donate link: http://www.tomsdimension.de/postcards
9
 
10
  Visit Counter, shows reads per page, visitors today, yesterday, last week, last months and other statistics.
@@ -23,20 +23,29 @@ Visit Counter, shows reads per page, visitors today, yesterday, last week, last
23
 
24
  = Languages, Translators =
25
 
26
- - Dansk - 100% - Jonas Thomsen - http://jonasthomsen.com
27
- - Dutch NL - 100% - Rene - http://wpwebshop.com
28
- - France - 100% - Bjork - http://www.habbzone.fr
29
- - German - 100% - I, Tom - http://www.tomsdimension.de
30
- - Greek - 100% - Essetai_Imar - http://www.elliniki-grothia.com
31
- - Italian - 100% - Gianni Diurno - http://gidibao.net
32
- - Russian - 100% - Ilya Pshenichny - http://iluhis.com
33
- - Swedish - 100% - Magnus Suther - http://www.magnussuther.se
34
- - Turkish - 100% - Emrullah Tahir Ekmek&ccedil;i - http://emrullahekmekci.com.tr
35
-
36
- - Polish - 95% - LeXuS - http://intrakardial.de
37
- - Bulgarian - 90% - joro - http://www.joro711.com
38
- - Espanol - 90% - Juan Carlos del R&iacute;o -
39
- - Portuguese BR - 90% - Beto Ribeiro - http://www.sevenarts.com.br
 
 
 
 
 
 
 
 
 
40
 
41
  == Installation ==
42
 
@@ -44,18 +53,18 @@ Visit Counter, shows reads per page, visitors today, yesterday, last week, last
44
  1. activate the plugin through the 'Plugins' menu in WordPress
45
  1. after every update you have to deactivate and reactivate the plugin to update some settings!
46
 
47
- The activation will create or update 3 tables wp_cpd_counter, wp_cpd_counter_useronline and wp_cpd_notes.
48
 
49
- **Configuration**
50
 
51
- See the Options Page and check the default values. It's easy. :)
52
- Install optional GeoIP database to show countries of your visitors.
53
 
54
- If "Auto counter" is on reads will count without any changes on template.
55
 
56
  == Frequently Asked Questions ==
57
 
58
  = Need Help? Find Bug? =
 
59
  read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
60
 
61
  == Screenshots ==
@@ -68,7 +77,8 @@ read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
68
 
69
  **Shortcodes**
70
 
71
- You can use these shortcodes in the content while writing you posts to show a number or list.
 
72
 
73
  [CPD_READS_THIS]
74
  [CPD_READS_TOTAL]
@@ -77,7 +87,6 @@ You can use these shortcodes in the content while writing you posts to show a nu
77
  [CPD_READS_LAST_WEEK]
78
  [CPD_READS_THIS_MONTH]
79
  [CPD_READS_PER_MONTH]
80
- [CPD_READS_CHART]
81
  [CPD_VISITORS_TOTAL]
82
  [CPD_VISITORS_ONLINE]
83
  [CPD_VISITORS_TODAY]
@@ -87,7 +96,6 @@ You can use these shortcodes in the content while writing you posts to show a nu
87
  [CPD_VISITORS_PER_MONTH]
88
  [CPD_VISITORS_PER_DAY]
89
  [CPD_VISITORS_PER_POST]
90
- [CPD_VISITORS_CHART]
91
  [CPD_FIRST_COUNT]
92
  [CPD_MOST_VISITED_POSTS]
93
  [CPD_POSTS_ON_DAY]
@@ -104,9 +112,13 @@ You can use these shortcodes in the content while writing you posts to show a nu
104
 
105
  **Functions**
106
 
107
- You can place these functions in your template.<br/>
108
- Place functions within post-loop (e.g. in single.php)<br/>
109
- Use '&lt;?php if(method_exists($count_per_day, "show")) $count_per_day->show(); ?&gt;' to check if plugin is activated.
 
 
 
 
110
 
111
  'show( $before, $after, $show, $count, $page )'
112
 
@@ -121,117 +133,124 @@ Use '&lt;?php if(method_exists($count_per_day, "show")) $count_per_day->show();
121
  * only count reads, without any output
122
  * cpdShow call it
123
 
124
- 'getFirstCount( $frontend )'
125
 
126
  * shows date of first count
127
- * $frontend: 0 echo, 1 return output
128
 
129
- 'getUserPerDay( $days, $frontend )'
130
 
131
  * shows average number of visitors per day of the last _$days_ days
132
  * default on dashboard (see it with mouse over number) = "Latest Counts - Days" in options
133
- * $frontend: 0 echo, 1 return output
134
 
135
- 'getReadsAll( $frontend )'
136
 
137
  * shows number of total reads
138
- * $frontend: 0 echo, 1 return output
139
 
140
- 'getReadsToday( $frontend )'
141
 
142
  * shows number of reads today
143
- * $frontend: 0 echo, 1 return output
144
 
145
- 'getReadsYesterday( $frontend )'
146
 
147
  * shows number of reads yesterday
148
- * $frontend: 0 echo, 1 return output
149
 
150
- 'getReadsLastWeek( $frontend )'
151
 
152
  * shows number of reads last week (7 days)
153
- * $frontend: 0 echo, 1 return output
154
 
155
- 'getReadsThisMonth( $frontend )'
156
 
157
  * shows number of reads current month
158
- * $frontend: 0 echo, 1 return output
159
 
160
- 'getReadsPerMonth( $frontend )'
161
 
162
  * lists number of reads per month
163
- * $frontend: 0 echo, 1 return output
164
 
165
- 'getUserAll( $frontend )'
166
 
167
  * shows number of total visitors
168
- * $frontend: 0 echo, 1 return output
169
 
170
- 'getUserOnline( $frontend, $country )'
171
 
172
  * shows number of visitors just online
173
- * $frontend: 0 echo, 1 return output
174
  * $country: 0 number, 1 country list
 
175
 
176
- 'getUserToday( $frontend )'
177
 
178
  * shows number of visitors today
179
- * $frontend: 0 echo, 1 return output
180
 
181
- 'getUserYesterday( $frontend )'
182
 
183
  * shows number of visitors yesterday
184
- * $frontend: 0 echo, 1 return output
185
 
186
- 'getUserLastWeek( $frontend )'
187
 
188
  * shows number of visitors last week (7 days)
189
- * $frontend: 0 echo, 1 return output
190
 
191
- 'getUserThisMonth( $frontend )'
192
 
193
  * shows number of visitors current month
194
- * $frontend: 0 echo, 1 return output
195
 
196
- 'getUserPerMonth( $frontend )'
197
 
198
  * lists number of visitors per month
199
- * $frontend: 0 echo, 1 return output
 
200
 
201
- 'getUserPerPost( $limit, $frontend )'
202
 
203
  * lists _$limit_ number of posts, -1: all, 0: get option from DB, x: number
204
- * $frontend: 0 echo, 1 return output
 
205
 
206
- 'getMostVisitedPosts( $days, $limits, $frontend )'
207
 
208
  * shows a list with the most visited posts in the last days
209
  * $days = days to calc (last days), 0: get option from DB
210
  * $limit = count of posts (last posts), 0: get option from DB
211
- * $frontend: 0 echo, 1 return output
 
 
212
 
213
- 'getVisitedPostsOnDay( $date, $limit, $show_form, $show_notes )'
214
 
215
  * shows visited pages at given day
216
  * $date day in MySQL date format yyyy-mm-dd, 0 today
217
  * $limit count of posts
218
  * $show_form show form for date selection, default on, in frontend set it to 0
219
  * $show_notes show button to add notes in form, default on, in frontend set it to 0
 
 
220
 
221
- 'getClients( $frontend )'
222
 
223
  * shows visits per client/browser in percent
224
- * $frontend: 0 echo, 1 return output
225
 
226
- 'getReferers( $limit, $frontend )'
227
 
228
- * lists top _$limit_ referrers, 0: get option from DB, x: number
229
- * $frontend: 0 echo, 1 return output
230
 
231
  'getMostVisitedPostIDs( $days, $limit, $cats, $return_array )'
232
 
233
- * $days last x days, default = 100
234
- * $limit return max. x posts
235
  * $cats IDs of categories to filter, array or number
236
  * $return_array true returns an array with Post-ID, title and count, false returns comma separated list of Post-IDs
237
 
@@ -243,6 +262,16 @@ Use '&lt;?php if(method_exists($count_per_day, "show")) $count_per_day->show();
243
  * $height size in px
244
  * $min : 1 disable title, legend and zoombar
245
 
 
 
 
 
 
 
 
 
 
 
246
  **GeoIP**
247
 
248
  * With GeoIP you can associate your visitors to an country using the ip address.
@@ -255,6 +284,24 @@ Use '&lt;?php if(method_exists($count_per_day, "show")) $count_per_day->show();
255
 
256
  == Changelog ==
257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  = 2.17 =
259
  + Bugfix: JavaScript error on dashboard page, boxes not movable
260
  + Bugfix: PHP4 compatibility
1
  === Count per Day ===
2
  Contributors: Tom Braider
3
  Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
4
+ Requires at least: 3.0
5
+ Tested up to: 3.3
6
+ Stable tag: 3.0
7
+ License: Postcardware :)
8
  Donate link: http://www.tomsdimension.de/postcards
9
 
10
  Visit Counter, shows reads per page, visitors today, yesterday, last week, last months and other statistics.
23
 
24
  = Languages, Translators =
25
 
26
+ - up to date translations:
27
+ - Dutch NL - Rene - http://wpwebshop.com
28
+ - France - Bjork - http://www.habbzone.fr
29
+ - German - I, Tom - http://www.tomsdimension.de
30
+ - Italian - Gianni Diurno - http://gidibao.net
31
+ - Japanese - Juno Hayami http://juno.main.jp/blog/
32
+ - Norwegian - Stein Ivar Johnsen - http://iDyrøy.no
33
+ - Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
34
+ - Russian - Ilya Pshenichny - http://iluhis.com
35
+ - Turkish - Emrullah Tahir Ekmek&ccedil;i - http://emrullahekmekci.com.tr
36
+
37
+ - older translations:
38
+ - Azerbaijani - Bohdan Zograf - http://wwww.webhostingrating.com
39
+ - Belarusian - Alexander Alexandrov - http://www.designcontest.com
40
+ - Bulgarian - joro - http://www.joro711.com
41
+ - Dansk - Jonas Thomsen - http://jonasthomsen.com
42
+ - Espanol - Juan Carlos del R&iacute;o -
43
+ - Greek - Essetai_Imar - http://www.elliniki-grothia.com
44
+ - Lithuanian - Nata Strazda - http://www.webhostinghub.com
45
+ - Norwegian - Tore Johnny Bråtveit - http://www.braatveit.net/
46
+ - Polish - LeXuS - http://intrakardial.de
47
+ - Swedish - Magnus Suther - http://www.magnussuther.se
48
+ - Ukrainian - Alyona Lompar -
49
 
50
  == Installation ==
51
 
53
  1. activate the plugin through the 'Plugins' menu in WordPress
54
  1. after every update you have to deactivate and reactivate the plugin to update some settings!
55
 
56
+ The activation will create or update a table wp_cpd_counter.
57
 
58
+ The Visitors-per-Day function use 7 days as default. So don't surprise about a wrong value in the first week.
59
 
60
+ **Configuration**
 
61
 
62
+ See the Options Page and check the default values.
63
 
64
  == Frequently Asked Questions ==
65
 
66
  = Need Help? Find Bug? =
67
+
68
  read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
69
 
70
  == Screenshots ==
77
 
78
  **Shortcodes**
79
 
80
+ You can use these shortcodes in the content of your posts to show a number or list
81
+ or in your theme files while adding e.g. '&lt;?php echo do_shortcode("[THE_SHORTCODE]"); ?>'.
82
 
83
  [CPD_READS_THIS]
84
  [CPD_READS_TOTAL]
87
  [CPD_READS_LAST_WEEK]
88
  [CPD_READS_THIS_MONTH]
89
  [CPD_READS_PER_MONTH]
 
90
  [CPD_VISITORS_TOTAL]
91
  [CPD_VISITORS_ONLINE]
92
  [CPD_VISITORS_TODAY]
96
  [CPD_VISITORS_PER_MONTH]
97
  [CPD_VISITORS_PER_DAY]
98
  [CPD_VISITORS_PER_POST]
 
99
  [CPD_FIRST_COUNT]
100
  [CPD_MOST_VISITED_POSTS]
101
  [CPD_POSTS_ON_DAY]
112
 
113
  **Functions**
114
 
115
+ You can place these functions in your template.
116
+ Use
117
+ <code>&lt;?php
118
+ global $count_per_day;
119
+ if(method_exists($count_per_day,"show")) echo $count_per_day->getReadsAll(true);
120
+ ?></code>
121
+ to check if plugin is activated.
122
 
123
  'show( $before, $after, $show, $count, $page )'
124
 
133
  * only count reads, without any output
134
  * cpdShow call it
135
 
136
+ 'getFirstCount( $return )'
137
 
138
  * shows date of first count
139
+ * $return: 0 echo, 1 return output
140
 
141
+ 'getUserPerDay( $days, $return )'
142
 
143
  * shows average number of visitors per day of the last _$days_ days
144
  * default on dashboard (see it with mouse over number) = "Latest Counts - Days" in options
145
+ * $return: 0 echo, 1 return output
146
 
147
+ 'getReadsAll( $return )'
148
 
149
  * shows number of total reads
150
+ * $return: 0 echo, 1 return output
151
 
152
+ 'getReadsToday( $return )'
153
 
154
  * shows number of reads today
155
+ * $return: 0 echo, 1 return output
156
 
157
+ 'getReadsYesterday( $return )'
158
 
159
  * shows number of reads yesterday
160
+ * $return: 0 echo, 1 return output
161
 
162
+ 'getReadsLastWeek( $return )'
163
 
164
  * shows number of reads last week (7 days)
165
+ * $return: 0 echo, 1 return output
166
 
167
+ 'getReadsThisMonth( $return )'
168
 
169
  * shows number of reads current month
170
+ * $return: 0 echo, 1 return output
171
 
172
+ 'getReadsPerMonth( $return )'
173
 
174
  * lists number of reads per month
175
+ * $return: 0 echo, 1 return output
176
 
177
+ 'getUserAll( $return )'
178
 
179
  * shows number of total visitors
180
+ * $return: 0 echo, 1 return output
181
 
182
+ 'getUserOnline( $frontend, $country, $return )'
183
 
184
  * shows number of visitors just online
185
+ * $frontend: 1 no link to map
186
  * $country: 0 number, 1 country list
187
+ * $return: 0 echo, 1 return output
188
 
189
+ 'getUserToday( $return )'
190
 
191
  * shows number of visitors today
192
+ * $return: 0 echo, 1 return output
193
 
194
+ 'getUserYesterday( $return )'
195
 
196
  * shows number of visitors yesterday
197
+ * $return: 0 echo, 1 return output
198
 
199
+ 'getUserLastWeek( $return )'
200
 
201
  * shows number of visitors last week (7 days)
202
+ * $return: 0 echo, 1 return output
203
 
204
+ 'getUserThisMonth( $return )'
205
 
206
  * shows number of visitors current month
207
+ * $return: 0 echo, 1 return output
208
 
209
+ 'getUserPerMonth( $frontend, $return )'
210
 
211
  * lists number of visitors per month
212
+ * $frontend: 1 no links
213
+ * $return: 0 echo, 1 return output
214
 
215
+ 'getUserPerPost( $limit, $frontend, $return )'
216
 
217
  * lists _$limit_ number of posts, -1: all, 0: get option from DB, x: number
218
+ * $frontend: 1 no links
219
+ * $return: 0 echo, 1 return output
220
 
221
+ 'getMostVisitedPosts( $days, $limits, $frontend, $postsonly, $return )'
222
 
223
  * shows a list with the most visited posts in the last days
224
  * $days = days to calc (last days), 0: get option from DB
225
  * $limit = count of posts (last posts), 0: get option from DB
226
+ * $frontend: 1 no links
227
+ * $postsonly: 0 show, 1 don't show categories and taxonomies
228
+ * $return: 0 echo, 1 return output
229
 
230
+ 'getVisitedPostsOnDay( $date, $limit, $show_form, $show_notes, $frontend, $return )'
231
 
232
  * shows visited pages at given day
233
  * $date day in MySQL date format yyyy-mm-dd, 0 today
234
  * $limit count of posts
235
  * $show_form show form for date selection, default on, in frontend set it to 0
236
  * $show_notes show button to add notes in form, default on, in frontend set it to 0
237
+ * $frontend: 1 no links
238
+ * $return: 0 echo, 1 return output
239
 
240
+ 'getClients( $return )'
241
 
242
  * shows visits per client/browser in percent
243
+ * $return: 0 echo, 1 return output
244
 
245
+ 'getReferers( $limit, $return, $days )'
246
 
247
+ * lists top _$limit_ referrers of the last $days days, 0: get option from DB, x: number
248
+ * $return: 0 echo, 1 return output
249
 
250
  'getMostVisitedPostIDs( $days, $limit, $cats, $return_array )'
251
 
252
+ * $days last x days, default = 365
253
+ * $limit return max. x posts, default = 10
254
  * $cats IDs of categories to filter, array or number
255
  * $return_array true returns an array with Post-ID, title and count, false returns comma separated list of Post-IDs
256
 
262
  * $height size in px
263
  * $min : 1 disable title, legend and zoombar
264
 
265
+ 'getDayWithMostReads( $return )'
266
+
267
+ * shows day with most Reads
268
+ * $return: 0 echo, 1 return output
269
+
270
+ 'getDayWithMostVisitors( $return )'
271
+
272
+ * shows day with most Visitors
273
+ * $return: 0 echo, 1 return output
274
+
275
  **GeoIP**
276
 
277
  * With GeoIP you can associate your visitors to an country using the ip address.
284
 
285
  == Changelog ==
286
 
287
+ = 3.0 =
288
+ + New: use now default WordPress database functions to be compatible to e.g. multi-db plugins
289
+ + New: backup your counter data
290
+ + New: collect entries of counter table per month and per post to reduce the database and speed up the statistics
291
+ + New: functions and shortcodes [CPD_DAY_MOST_READS] [CPD_DAY_MOST_USERS] to shows days with most reads/visitors
292
+ + New: option to cut referrer on "?" to not store query strings
293
+ + New: parameter '$postsonly' for 'getMostVisitedPosts' function to list single posts and pages only
294
+ + New: flags for Moldavia and Nepal
295
+ + New language: Norwegian, thanks to Stein Ivar Johnsen and Tore Johnny Bråtveit
296
+ + New language: Azerbaijani, thanks to Bohdan Zograf
297
+ + New language: Japanese, thanks to Juno Hayami
298
+ + Bugfix: visitors per month list
299
+ + Change: some function parameters
300
+ + Change: little memory optimizing
301
+ + Change: visitors currently online and notes will now managed per option, without seperate tables in database
302
+ + Change: design updated
303
+ + Change: old bar charts deleted
304
+
305
  = 2.17 =
306
  + Bugfix: JavaScript error on dashboard page, boxes not movable
307
  + Bugfix: PHP4 compatibility
userperspan.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
  if (!session_id()) session_start();
3
- require_once($_SESSION['cpd_wp'].'wp-load.php');
 
4
 
5
  $cpd_datemin = ( !empty($_REQUEST['datemin']) ) ? $_REQUEST['datemin'] : date_i18n('Y-m-d', time() - 86400 * 14); // 14 days
6
  $cpd_datemax = ( !empty($_REQUEST['datemax']) ) ? $_REQUEST['datemax'] : date_i18n('Y-m-d');
@@ -10,15 +11,15 @@ $sql = "SELECT p.post_title,
10
  COUNT(*) AS count,
11
  c.page,
12
  c.date
13
- FROM ".CPD_C_TABLE." c
14
- LEFT JOIN ".$wpdb->posts." p
15
  ON p.ID = c.page
16
  WHERE c.page = '$cpd_page'
17
  AND c.date >= '$cpd_datemin'
18
  AND c.date <= '$cpd_datemax'
19
  GROUP BY c.date
20
  ORDER BY c.date desc";
21
- $cpd_visits = $count_per_day->getQuery($sql, 'getUserPerPostSpan');
22
  ?>
23
 
24
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
@@ -45,53 +46,52 @@ $cpd_visits = $count_per_day->getQuery($sql, 'getUserPerPostSpan');
45
  </form>
46
 
47
  <?php
48
- if ( @mysql_num_rows($cpd_visits) == 0 )
49
  _e('no data found', 'cpd');
50
  else
51
  {
52
  $cpd_maxcount = 1;
53
- while ( $r = mysql_fetch_array($cpd_visits) )
54
- $cpd_maxcount = max( array( $cpd_maxcount, intval($r['count']) ) );
55
- mysql_data_seek($cpd_visits, 0);
56
  $cpd_faktor = 300 / $cpd_maxcount;
57
 
58
- while ( $r = mysql_fetch_array($cpd_visits) )
59
  {
60
  if ( !isset($cpd_new) )
61
  {
62
  if ( $cpd_page == 0 )
63
  echo '<h2>'.__('Front page displays').'</h2';
64
  else
65
- echo '<h2>'.$r['post_title'].'</h2>';
66
  echo '<ol class="cpd-dashboard" style="padding: 0;">';
67
  }
68
  else
69
  {
70
- if ( $cpd_new < $r['count'] )
71
  $cpd_style = 'style="color:#b00;"';
72
- else if ( $cpd_new > $r['count'] )
73
  $cpd_style = 'style="color:#0a0;"';
74
  else
75
  $cpd_style = '';
76
 
77
  $cpd_bar = $cpd_new * $cpd_faktor;
78
  $cpd_trans = 300 - $cpd_bar;
79
- $cpd_imgbar = '<img src="'.$count_per_day->getResource('cpd_rot.png').'" alt="" style="width:'.$cpd_bar.'px;height:23px;padding-left:10px;" />';
80
- $cpd_imgtrans = '<img src="'.$count_per_day->getResource('cpd_trans.png').'" alt="" style="width:'.$cpd_trans.'px;height:10px;padding-right:10px;" />';
81
 
82
  echo '<li>';
83
  echo '<b>'.$cpd_imgbar.$cpd_imgtrans.'</b>';
84
  echo '<b '.$cpd_style.'>'.$cpd_new.'</b>';
85
  echo $cpd_date_str.'</li>';
86
  }
87
- $cpd_date_str = mysql2date(get_option('date_format'), $r['date']);
88
- $cpd_new = intval($r['count']);
89
  }
90
 
91
  $cpd_bar = $cpd_new * $cpd_faktor;
92
  $cpd_trans = 300 - $cpd_bar;
93
- $cpd_imgbar = '<img src="'.$count_per_day->getResource('cpd_rot.png').'" alt="" style="width:'.$cpd_bar.'px;height:23px;padding-left:10px;" />';
94
- $cpd_imgtrans = '<img src="'.$count_per_day->getResource('cpd_trans.png').'" alt="" style="width:'.$cpd_trans.'px;height:10px;padding-right:10px;" />';
95
 
96
  echo '<li>';
97
  echo '<b>'.$cpd_imgbar.$cpd_imgtrans.'</b>';
1
  <?php
2
  if (!session_id()) session_start();
3
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../';
4
+ require_once($cpd_wp.'wp-load.php');
5
 
6
  $cpd_datemin = ( !empty($_REQUEST['datemin']) ) ? $_REQUEST['datemin'] : date_i18n('Y-m-d', time() - 86400 * 14); // 14 days
7
  $cpd_datemax = ( !empty($_REQUEST['datemax']) ) ? $_REQUEST['datemax'] : date_i18n('Y-m-d');
11
  COUNT(*) AS count,
12
  c.page,
13
  c.date
14
+ FROM $wpdb->cpd_counter c
15
+ LEFT JOIN $wpdb->posts p
16
  ON p.ID = c.page
17
  WHERE c.page = '$cpd_page'
18
  AND c.date >= '$cpd_datemin'
19
  AND c.date <= '$cpd_datemax'
20
  GROUP BY c.date
21
  ORDER BY c.date desc";
22
+ $cpd_visits = $count_per_day->mysqlQuery('rows', $sql, 'getUserPerPostSpan '.__LINE__);
23
  ?>
24
 
25
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
46
  </form>
47
 
48
  <?php
49
+ if ( !count($cpd_visits) )
50
  _e('no data found', 'cpd');
51
  else
52
  {
53
  $cpd_maxcount = 1;
54
+ foreach ($cpd_visits as $r)
55
+ $cpd_maxcount = max( array( $cpd_maxcount, (int) $r->count ) );
 
56
  $cpd_faktor = 300 / $cpd_maxcount;
57
 
58
+ foreach ($cpd_visits as $r)
59
  {
60
  if ( !isset($cpd_new) )
61
  {
62
  if ( $cpd_page == 0 )
63
  echo '<h2>'.__('Front page displays').'</h2';
64
  else
65
+ echo "<h2>$r->post_title</h2>";
66
  echo '<ol class="cpd-dashboard" style="padding: 0;">';
67
  }
68
  else
69
  {
70
+ if ( $cpd_new < $r->count )
71
  $cpd_style = 'style="color:#b00;"';
72
+ else if ( $cpd_new > $r->count )
73
  $cpd_style = 'style="color:#0a0;"';
74
  else
75
  $cpd_style = '';
76
 
77
  $cpd_bar = $cpd_new * $cpd_faktor;
78
  $cpd_trans = 300 - $cpd_bar;
79
+ $cpd_imgbar = '<img src="'.$count_per_day->img('cpd_rot.png').'" alt="" style="width:'.$cpd_bar.'px;height:23px;padding-left:10px;" />';
80
+ $cpd_imgtrans = '<img src="'.$count_per_day->img('cpd_trans.png').'" alt="" style="width:'.$cpd_trans.'px;height:10px;padding-right:10px;" />';
81
 
82
  echo '<li>';
83
  echo '<b>'.$cpd_imgbar.$cpd_imgtrans.'</b>';
84
  echo '<b '.$cpd_style.'>'.$cpd_new.'</b>';
85
  echo $cpd_date_str.'</li>';
86
  }
87
+ $cpd_date_str = mysql2date(get_option('date_format'), $r->date);
88
+ $cpd_new = (int) $r->count;
89
  }
90
 
91
  $cpd_bar = $cpd_new * $cpd_faktor;
92
  $cpd_trans = 300 - $cpd_bar;
93
+ $cpd_imgbar = '<img src="'.$count_per_day->img('cpd_rot.png').'" alt="" style="width:'.$cpd_bar.'px;height:23px;padding-left:10px;" />';
94
+ $cpd_imgtrans = '<img src="'.$count_per_day->img('cpd_trans.png').'" alt="" style="width:'.$cpd_trans.'px;height:10px;padding-right:10px;" />';
95
 
96
  echo '<li>';
97
  echo '<b>'.$cpd_imgbar.$cpd_imgtrans.'</b>';