Count per Day - Version 2.14

Version Description

  • New: multi widget compatible, place the widget several times with individual settings
  • New: WordPress Multisite compatible, networkwide activation creates tables in all blogs
  • New: list reads per month
  • New: functions and shortcodes [CPD_POSTS_ON_DAY] [CPD_READS_PER_MONTH] [CPD_READS_LAST_WEEK]
  • New: show/hide local referers
  • New: optional deactivation of saving clients and referers to save space in the database
  • New: debug mode per URL parameter (?debug=1)
  • Bugfix: GeoIP database update, problem with local IP adresses
  • Bugfix: Userlevel/Capabilities
  • Bugfix: yesterday reads and visitors (timezone)
  • Bugfix: links on mass bots page
  • little cosmetics
Download this release

Release Info

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

Code changes from version 3.0 to 2.14

Files changed (71) hide show
  1. ajax.php +21 -21
  2. counter-core.php +0 -1233
  3. counter-options.php +317 -647
  4. counter.css +137 -239
  5. counter.php +1411 -785
  6. geoip/GeoIP.dat +0 -0
  7. geoip/geoip.inc +91 -91
  8. geoip/geoip.php +47 -32
  9. img/cpd_calendar.png +0 -0
  10. img/cpd_flags.png +0 -0
  11. img/cpd_pen.png +0 -0
  12. img/cpd_sprites.png +0 -0
  13. js/excanvas.min.js +0 -1
  14. js/jquery.flot.min.js +0 -6
  15. locale/cpd-az_AZ.mo +0 -0
  16. locale/cpd-az_AZ.po +0 -972
  17. locale/cpd-be_BY.mo +0 -0
  18. locale/cpd-be_BY.po +0 -784
  19. locale/cpd-bg_BG.mo +0 -0
  20. locale/cpd-bg_BG.po +0 -972
  21. locale/cpd-by_BY.mo +0 -0
  22. locale/cpd-by_BY.po +680 -0
  23. locale/cpd-da_DK-2.mo +0 -0
  24. locale/cpd-da_DK-2.po +681 -0
  25. locale/cpd-da_DK.mo +0 -0
  26. locale/cpd-da_DK.po +204 -496
  27. locale/cpd-de_DE.mo +0 -0
  28. locale/cpd-de_DE.po +200 -430
  29. locale/cpd-el.mo +0 -0
  30. locale/cpd-el.po +0 -973
  31. locale/cpd-es_ES.mo +0 -0
  32. locale/cpd-es_ES.po +206 -499
  33. locale/cpd-fr_FR.mo +0 -0
  34. locale/cpd-fr_FR.po +207 -498
  35. locale/cpd-it_IT.mo +0 -0
  36. locale/cpd-it_IT.po +321 -559
  37. locale/cpd-ja.mo +0 -0
  38. locale/cpd-ja.po +0 -972
  39. locale/cpd-lt_LT.mo +0 -0
  40. locale/cpd-lt_LT.po +0 -784
  41. locale/cpd-nb_NO.mo +0 -0
  42. locale/cpd-nb_NO.po +0 -972
  43. locale/cpd-nl_NL.mo +0 -0
  44. locale/cpd-nl_NL.po +218 -509
  45. locale/cpd-pl_PL.mo +0 -0
  46. locale/cpd-pl_PL.po +205 -497
  47. locale/cpd-pt_BR.mo +0 -0
  48. locale/cpd-pt_BR.po +196 -488
  49. locale/cpd-pt_PT.mo +0 -0
  50. locale/cpd-pt_PT.po +0 -971
  51. locale/cpd-ru_RU.mo +0 -0
  52. locale/cpd-ru_RU.po +201 -493
  53. locale/cpd-sv_SE.mo +0 -0
  54. locale/cpd-sv_SE.po +206 -498
  55. locale/cpd-tr_TR.mo +0 -0
  56. locale/cpd-tr_TR.po +0 -971
  57. locale/cpd-ua_UA.mo +0 -0
  58. locale/cpd-ua_UA.po +0 -972
  59. locale/cpd-uz_UZ.mo +0 -0
  60. locale/cpd-uz_UZ.po +680 -0
  61. map/ammap.swf +0 -0
  62. map/data.xml.php +39 -44
  63. map/map.php +1 -1
  64. map/settings.xml.php +7 -9
  65. massbots.php +33 -30
  66. notes.php +37 -27
  67. readme.txt +85 -192
  68. screenshot-1.png +0 -0
  69. screenshot-2.png +0 -0
  70. screenshot-3.png +0 -0
  71. userperspan.php +26 -20
ajax.php CHANGED
@@ -1,32 +1,32 @@
1
  <?php
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 );
17
- foreach ( $cpd_funcs as $f )
 
18
  {
19
- if ( ($f == 'show' && $page) || $f != 'show' )
20
- {
21
- echo $f.'===';
22
- if ( $f == 'getUserPerDay' )
23
- eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
24
- else if ( $f == 'show' )
25
- eval('echo $count_per_day->show("", "", false, false, '.$page.');');
26
- else
27
- eval('echo $count_per_day->'.$f.'();');
28
- echo '|';
29
- }
30
  }
31
  }
32
  }
 
1
  <?php
2
+ // windows junction patch
3
+ $dir = dirname($_SERVER['DOCUMENT_ROOT'].$_SERVER['SCRIPT_NAME']);
4
+ for ( $x = 1; $x <= 5; $x++ )
5
  {
6
+ $dir = dirname($dir.'x');
7
+ if ( is_file($dir.'/wp-load.php') )
8
+ require_once($dir.'/wp-load.php');
9
+ }
10
 
11
+ if ( $_GET['f'] == 'count' )
12
+ {
13
+ $page = intval($_GET['page']);
 
14
 
 
15
  if ( is_numeric($page) )
16
  {
17
  $count_per_day->count( '', $page );
18
+
19
+ foreach ( $count_per_day->options['widget_functions'] as $f )
20
  {
21
+ $s = explode('|', $f);
22
+ if ( $s[0] == 'getUserPerDay' )
23
+ $count_per_day->getUserPerDay($count_per_day->options['dashboard_last_days']);
24
+ else if ( $s[0] == 'show' )
25
+ $count_per_day->show('','',true,false,$page);
26
+ else
27
+ eval('$count_per_day->'.$s[0].'();');
28
+ echo '==='.$s[0]."|";
 
 
 
29
  }
30
  }
31
  }
32
+ ?>
counter-core.php DELETED
@@ -1,1233 +0,0 @@
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,279 +31,114 @@ 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['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';
44
 
45
  if ( isset($_POST['cpd_countries']) )
46
  $count_per_day->options['countries'] = $_POST['cpd_countries'];
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,8 +156,7 @@ switch($mode) {
321
  break;
322
 
323
  default:
324
-
325
- // show options page
326
 
327
  $o = $count_per_day->options;
328
 
@@ -333,248 +167,210 @@ switch($mode) {
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,35 +384,37 @@ switch($mode) {
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,49 +423,18 @@ switch($mode) {
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,132 +442,28 @@ switch($mode) {
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,21 +472,28 @@ switch($mode) {
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 -->
828
 
829
- <?php } // End switch($mode)
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
 
35
  if (empty($count_per_day->options['clients']))
36
+ $count_per_day->options['clients'] = 'Firefox, MSIE, Chrome, AppleWebKit, Opera';
37
 
38
  if ( isset($_POST['cpd_countries']) )
39
  $count_per_day->options['countries'] = $_POST['cpd_countries'];
40
 
41
  update_option('count_per_day', $count_per_day->options);
42
 
43
+ echo '<div id="message" class="updated fade"><p>'.__('Options updated', 'cpd').'</p></div>';
44
  break;
45
 
46
+ // update countries
47
+ case 'cpd_countries' :
48
+ if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
49
  {
50
+ $count_per_day->queries[] = 'cpd_countries - class "CpdGeoIp" exists';
51
+ $rest = CpdGeoIp::updateDB();
52
+ echo '<div id="message" class="updated fade">
53
+ <form name="cpdcountries" method="post" action="'.$_SERVER['REQUEST_URI'].'">
54
+ <p>'.sprintf(__('Countries updated. <b>%s</b> entries in %s without country left', 'cpd'), $rest, CPD_C_TABLE);
55
+ if ( $rest > 100 )
56
+ {
57
+ // reload page per javascript until less than 100 entries without country
58
+ echo '<input type="hidden" name="do" value="cpd_countries" />
59
+ <input type="submit" name="updcon" value="'.__('update next', 'cpd').'" class="button" />';
60
+ if ( !$count_per_day->options['debug'] )
61
+ echo '<script type="text/javascript">document.cpdcountries.submit();</script>';
62
+ }
63
+ echo '</p>
64
+ </form>
65
+ </div>';
66
+ if ( $rest > 100 )
67
+ while (@ob_end_flush());
68
  }
69
+ else
70
+ $count_per_day->queries[] = '<span style="color:red">cpd_countries - class "CpdGeoIp" NOT exists</span>';
71
+ break;
72
+
73
+ // download new GeoIP database
74
+ case 'cpd_countrydb' :
75
+ if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  {
77
+ $count_per_day->getQuery("SELECT country FROM ".CPD_C_TABLE, 'geoip_select');
78
+ if ((int) mysql_errno() == 1054)
79
+ // add row 'country' to counter db
80
+ $count_per_day->getQuery("ALTER TABLE `".CPD_C_TABLE."` ADD `country` CHAR(2) NOT NULL", 'geoip_alter');
81
+
82
+ $result = CpdGeoIp::updateGeoIpFile();
83
+ echo '<div id="message" class="updated fade"><p>'.$result.'</p></div>';
84
+ if ( file_exists($cpd_path.'geoip/GeoIP.dat') )
85
+ $cpd_geoip = 1;
86
  }
87
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
 
89
+ // delete massbots
90
+ case 'cpd_delete_massbots' :
91
+ if ( isset($_POST['limit']) )
92
+ {
93
+ $bots = $count_per_day->getMassBots($_POST['limit']);
94
+ $sum = 0;
95
+ while ( $row = mysql_fetch_array($bots) )
96
+ {
97
+ $count_per_day->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE ip = INET_ATON('".$row['ip']."') AND date = '".$row['date']."'", 'deleteMassbots');
98
+ $sum += $row['posts'];
99
+ }
100
+ if ( $sum )
101
+ echo '<div id="message" class="updated fade"><p>'.sprintf(__('Mass Bots cleaned. %s counts deleted.', 'cpd'), $sum).'</p></div>';
102
+ }
103
+ break;
104
+
105
+ // clean database
106
+ case 'cpd_clean' :
107
+ $rows = $count_per_day->cleanDB();
108
+ echo '<div id="message" class="updated fade"><p>'.sprintf(__('Database cleaned. %s rows deleted.', 'cpd'), $rows).'</p></div>';
109
+ break;
110
 
111
+ // reset counter
112
+ case 'cpd_reset' :
113
+ $wpdb->query('TRUNCATE TABLE '.CPD_C_TABLE);
114
+ echo '<div id="message" class="updated fade"><p>'.sprintf(__('Counter reseted.', 'cpd'), $rows).'</p></div>';
115
+ break;
 
 
 
 
 
 
 
 
 
116
 
117
+ // uninstall plugin
118
+ case __('UNINSTALL Count per Day', 'cpd') :
119
+ if(trim($_POST['uninstall_cpd_yes']) == 'yes')
120
  {
121
+ count_per_day_uninstall();
122
+ echo '<div id="message" class="updated fade"><p>';
123
+ printf(__('Table %s deleted', 'cpd'), CPD_C_TABLE);
124
+ echo '<br/>';
125
+ printf(__('Table %s deleted', 'cpd'), CPD_CO_TABLE);
126
+ echo '<br/>';
127
+ printf(__('Table %s deleted', 'cpd'), CPD_N_TABLE);
128
+ echo '<br/>';
129
+ echo __('Options deleted', 'cpd').'</p></div>';
130
+ $mode = 'end-UNINSTALL';
131
  }
132
+ break;
133
+
134
+ default:
135
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  }
137
  }
138
 
139
  // delete one massbots per click on X
140
  if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
141
+ $count_per_day->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE ip = '".$_GET['dmbip']."' AND date = '".$_GET['dmbdate']."'", 'deleteMassbot');
142
 
143
  if ( empty($mode) )
144
  $mode = '';
156
  break;
157
 
158
  default:
159
+ // show options page
 
160
 
161
  $o = $count_per_day->options;
162
 
167
  update_option('count_per_day', $o);
168
  }
169
  ?>
170
+ <div class="wrap">
171
+ <h2><img src="<?php echo $count_per_day->getResource('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day</h2>
172
 
173
+ <div id="poststuff">
174
 
175
+ <div class="postbox cpd_settings">
176
+ <h3><?php _e('Options', 'cpd') ?></h3>
177
+ <div class="inside">
178
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
179
+
180
+ <!-- counter -->
181
+
182
+ <fieldset>
183
+ <legend><?php _e('Counter', 'cpd') ?></legend>
184
+
185
+ <table class="form-table">
186
+ <tr>
187
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Online time', 'cpd') ?>:</th>
188
+ <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>
189
+ </tr>
190
+ <tr>
191
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Loged on Users', 'cpd') ?>:</th>
192
+ <td>
193
+ <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>
194
+ - <?php _e('until User Level', 'cpd') ?>
195
+ <select name="cpd_user_level">
196
+ <option value="10" <?php if ($o['user_level'] == 10) echo 'selected="selected"' ?>><?php echo translate_user_role('Administrator') ?> (10)</option>
197
+ <option value="7" <?php if ($o['user_level'] == 7) echo 'selected="selected"' ?>><?php echo translate_user_role('Editor') ?> (7)</option>
198
+ <option value="2" <?php if ($o['user_level'] == 2) echo 'selected="selected"' ?>><?php echo translate_user_role('Author') ?> (2)</option>
199
+ <option value="1" <?php if ($o['user_level'] == 1) echo 'selected="selected"' ?>><?php echo translate_user_role('Contributor') ?> (1)</option>
200
+ <option value="0" <?php if ($o['user_level'] == 0) echo 'selected="selected"' ?>><?php echo translate_user_role('Subscriber') ?> (0)</option>
201
+ </select>
202
+ </td>
203
+ </tr>
204
+ <tr>
205
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Auto counter', 'cpd') ?>:</th>
206
+ <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>
207
+ </tr>
208
+ <tr>
209
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Bots to ignore', 'cpd') ?>:</th>
210
+ <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
211
+ </tr>
212
+ <tr>
213
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Anonymous IP', 'cpd') ?>:</th>
214
+ <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>
215
+ </tr>
216
+ <tr>
217
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Cache', 'cpd') ?> (beta):</th>
218
+ <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>
219
+ </tr>
220
+ <tr>
221
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Clients and referers', 'cpd') ?>:</th>
222
+ <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 referers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors.', 'cpd') ?></label></td>
223
+ </tr>
224
+ </table>
225
+ </fieldset>
226
+
227
+ <!-- dashboard -->
228
+
229
+ <fieldset>
230
+ <legend><?php _e('Dashboard') ?></legend>
231
+ <table class="form-table">
232
+ <tr>
233
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Visitors per post', 'cpd') ?>:</th>
234
+ <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>
235
+ </tr>
236
+ <tr>
237
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Posts', 'cpd') ?>:</th>
238
+ <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>
239
+ </tr>
240
+ <tr>
241
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Days', 'cpd') ?>:</th>
242
+ <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>
243
+ </tr>
244
+ <tr>
245
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Days', 'cpd') ?>:</th>
246
+ <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>
247
+ </tr>
248
+ <tr>
249
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Height', 'cpd') ?>:</th>
250
+ <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>
251
+ </tr>
252
+ <?php if ( $cpd_geoip ) { ?>
253
+ <tr>
254
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Countries', 'cpd') ?>:</th>
255
+ <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>
256
+ </tr>
257
+ <?php } ?>
258
+ <tr>
259
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Browsers', 'cpd') ?>:</th>
260
+ <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>
261
+ </tr>
262
+ <tr>
263
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Local URLs', 'cpd') ?>:</th>
264
+ <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 referers too.', 'cpd') ?> (<?php echo bloginfo('url') ?>/...)</label></td>
265
+ </tr>
266
+ </table>
267
+ </fieldset>
268
+
269
+ <!-- lists -->
270
+
271
+ <fieldset>
272
+ <legend><?php _e('Posts') ?> / <?php _e('Pages') ?></legend>
273
+ <table class="form-table">
274
+ <tr>
275
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Show in lists', 'cpd') ?>:</th>
276
+ <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>
277
+ </tr>
278
+ </table>
279
+ </fieldset>
280
+
281
+ <!-- start values -->
282
+
283
+ <fieldset>
284
+ <legend><?php _e('Start Values', 'cpd') ?></legend>
285
+ <table class="form-table">
286
+ <tr>
287
+ <th colspan="2">
288
+ <?php _e('Here you can change the date of first count and add a start count.', 'cpd')?>
289
+ </th>
290
+ </tr>
291
+ <tr>
292
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start date', 'cpd') ?>:</th>
293
+ <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>
294
+ </tr>
295
+ <tr>
296
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start count', 'cpd') ?>:</th>
297
+ <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>
298
+ </tr>
299
+ <tr>
300
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Start count', 'cpd') ?>:</th>
301
+ <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>
302
+ </tr>
303
+ </table>
304
+ </fieldset>
305
+
306
+ <!-- debug -->
307
+
308
+ <fieldset>
309
+ <legend style="color:red"><?php _e('Debug mode', 'cpd') ?></legend>
310
+ <p style="margin-top:15px;">
311
+ <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>
312
+ </p>
313
+ </fieldset>
314
+
315
+ <input type="hidden" name="do" value="cpd_update" />
316
+ <input type="submit" name="update" value="<?php _e('Update options', 'cpd') ?>" class="button-primary" style="margin-left: 5px;" />
317
+
318
+ </form>
319
+
320
+ </div>
321
  </div>
322
 
323
+ <!-- Countries -->
324
+ <div class="postbox">
325
+ <h3><?php _e('GeoIP - Countries', 'cpd') ?></h3>
326
+ <div class="inside">
327
+
328
+ <table class="form-table">
329
+ <?php if ( $cpd_geoip ) { ?>
330
+ <tr>
331
+ <td>
332
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
333
+ <input type="hidden" name="do" value="cpd_countries" />
334
+ <input type="submit" name="updcon" value="<?php _e('Update old counter data', 'cpd') ?>" class="button" />
335
+ </form>
336
+ </td>
337
+ <td><?php _e('You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!', 'cpd') ?></td>
338
+ </tr>
339
+ <?php } ?>
340
 
341
+ <?php if ( class_exists('CpdGeoIp') && ini_get('allow_url_fopen') && function_exists('gzopen') ) {
342
+ // install or update database ?>
343
+ <tr>
344
+ <td width="10">
345
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
346
+ <input type="hidden" name="do" value="cpd_countrydb" />
347
+ <input type="submit" name="updcondb" value="<?php _e('Update GeoIP database', 'cpd') ?>" class="button" />
348
+ </form>
349
+ </td>
350
+ <td><?php _e('Download a new version of GeoIP.dat file.', 'cpd') ?></td>
351
+ </tr>
352
+ <?php } ?>
353
+ </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
 
355
+ <p>
356
+ <span class="cpd-r"><?php _e('More informations about GeoIP', 'cpd') ?>:
357
+ <a href="http://www.maxmind.com/app/geoip_country">www.maxmind.com</a></span>&nbsp;
 
 
358
  </p>
359
+
360
+ </div>
 
 
 
 
 
 
 
361
  </div>
362
 
363
+ <!-- Mass Bots -->
364
  <div class="postbox">
365
  <?php
366
  $limit = (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25;
367
  $limit = (isset($_POST['limit'])) ? $_POST['limit'] : $limit;
368
  $limit_input = '<input type="text" size="3" name="limit" value="'.$limit.'" />';
369
+ $bots = $count_per_day->getMassBots($limit);
 
 
 
370
  ?>
371
+ <h3><?php _e('Mass Bots', 'cpd') ?></h3>
372
  <div class="inside">
373
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
374
  <p>
375
  <?php printf(__('Show all IPs with more than %s page views per day', 'cpd'), $limit_input) ?>
376
  <input type="submit" name="showmassbots" value="<?php _e('show', 'cpd') ?>" class="button" />
384
  <th><?php _e('IP', 'cpd') ?></th>
385
  <th><?php _e('Date', 'cpd') ?></th>
386
  <th><?php _e('Client', 'cpd') ?></th>
387
+ <th><?php _e('Views', 'cpd') ?></th>
388
  </tr>
389
  </thead>
390
  <?php
391
  $sum = 0;
392
+ if ( !mysql_errno() ) :
393
+ while ( $row = mysql_fetch_assoc($bots) )
 
 
 
394
  {
395
+ $ip = $row['ip'];
396
+ echo '<tr><td style="white-space:nowrap;">';
397
+ echo '<a href="?page=count-per-day/counter-options.php&amp;dmbip='.$row['longip'].'&amp;dmbdate='.$row['date'].'"
398
+ title="'.sprintf(__('Delete these %s counts', 'cpd'), $row['posts']).'"
399
+ style="color:red; font-weight: bold;">X</a> &nbsp;';
400
+ if ( $cpd_geoip )
401
+ {
402
+ $c = CpdGeoIp::getCountry($ip);
403
+ echo $c[1].' ';
404
+ }
405
+ echo '<a href="http://www.easywhois.com/index.php?mode=iplookup&amp;domain='.$ip.'">'.$ip.'</a></td>'
406
+ .'<td style="white-space:nowrap;">'.mysql2date(get_option('date_format'), $row['date'] ).'</td>'
407
+ .'<td>'.$row['client'].'</td>'
408
+ .'<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">'
409
+ .$row['posts'].'</a></td>'
410
+ .'</tr>';
411
+ $sum += $row['posts'];
412
  }
413
+ endif;
 
 
 
 
 
 
 
 
 
 
414
  ?>
415
  </table>
416
  <?php if ( $sum ) { ?>
417
+ <p class="submit">
418
  <input type="hidden" name="do" value="cpd_delete_massbots" />
419
  <input type="hidden" name="limit" value="<?php echo $limit ?>" />
420
  <input type="submit" name="clean" value="<?php printf(__('Delete these %s counts', 'cpd'), $sum) ?>" class="button" />
423
  </form>
424
  </div>
425
  </div>
426
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  <!-- Cleaner -->
428
  <?php if ( $count_per_day->options['referers'] ) : ?>
429
  <div class="postbox">
430
+ <h3><?php _e('Clean the database', 'cpd') ?></h3>
431
  <div class="inside">
432
  <p>
433
  <?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') ?>
434
  </p>
435
 
436
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
437
+ <p class="submit">
438
  <input type="hidden" name="do" value="cpd_clean" />
439
  <input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
440
  </p>
442
  </div>
443
  </div>
444
  <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
446
  <!-- Reset DBs -->
447
  <div class="postbox">
448
+ <h3><?php _e('Reset the counter', 'cpd') ?></h3>
449
  <div class="inside">
450
  <p style="color: red">
451
  <?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') ?>
452
  </p>
453
 
454
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
455
+ <p class="submit">
456
  <input type="hidden" name="do" value="cpd_reset" />
457
+ <input type="submit" name="clean" value="<?php _e('Reset the counter', 'cpd') ?>" class="button" />
 
458
  </p>
459
  </form>
460
  </div>
461
  </div>
462
+
463
  <!-- Uninstall -->
464
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
465
  <div class="postbox">
466
+ <h3><?php _e('Uninstall', 'cpd') ?></h3>
467
  <div class="inside">
468
  <p>
469
  <?php _e('If "Count per Day" only disabled the tables in the database will be preserved.', 'cpd') ?><br/>
472
  <p style="color: red">
473
  <strong><?php _e('WARNING', 'cpd') ?>:</strong><br />
474
  <?php _e('These tables (with ALL counter data) will be deleted.', 'cpd') ?><br />
475
+ <b><?php echo CPD_C_TABLE.', '.CPD_CO_TABLE.', '.CPD_N_TABLE; ?></b><br />
476
  <?php _e('If "Count per Day" re-installed, the counter starts at 0.', 'cpd') ?>
477
  </p>
478
+ <p>&nbsp;</p>
479
+ <p class="submit">
480
+ <input type="checkbox" name="uninstall_cpd_yes" value="yes" />&nbsp;<?php _e('Yes', 'cpd'); ?><br /><br />
481
+ <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') ?>')" />
482
  </p>
483
  </div>
484
  </div>
485
  </form>
486
 
487
+ <!-- Plugin page -->
488
+ <div class="postbox">
489
+ <h3><?php _e('Support', 'cpd') ?></h3>
490
+ <div class="inside">
491
+ <?php $count_per_day->cpdInfo() ?>
492
+ </div>
493
+ </div>
494
+
495
 
496
  </div><!-- poststuff -->
497
  </div><!-- wrap -->
498
 
499
+ <?php } // End switch($mode) ?>
counter.css CHANGED
@@ -9,120 +9,44 @@
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
-
88
- #cpd-flot-choice {
89
- padding: 5px;
90
- text-align: center;
91
- }
92
-
93
- #cpd-flot {
94
- overflow: hidden;
95
- }
96
-
97
- #cpd-tooltip {
98
- position: absolute;
99
- z-index: 10;
100
- display: none;
101
- text-align: center;
102
- padding: 2px 4px;
103
- border: 1px solid #ddd;
104
- border-radius: 4px;
105
- background-color: #fff;
106
- box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
107
- }
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));
114
- }
115
-
116
  .cpd-dashboard .inside {
117
  padding: 5px;
118
  }
119
 
120
- .cpd-dashboard .cpd_front_list {
121
- padding-right: 5px;
122
- max-height: 200px;
123
- overflow-y: auto;
124
- }
125
-
126
  .cpd-dashboard li {
127
  color: #777;
128
  padding-bottom: 2px;
@@ -132,7 +56,6 @@
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,26 +79,6 @@
156
 
157
  .cpd-r {
158
  float: right;
159
- text-align: right;
160
- }
161
-
162
- /* widget */
163
-
164
- .cpd_widget_item {
165
- padding: 2px 5px;
166
- background: #eee;
167
- cursor: move;
168
- border-radius: 4px;
169
- }
170
-
171
- .cpd_widget_title {
172
- cursor:auto;
173
- }
174
-
175
- .cpd_widget_item .widefat {
176
- width: 235px !important;
177
- margin-left: 15px;
178
-
179
  }
180
 
181
  /* thickbox */
@@ -197,8 +100,8 @@
197
  border-top: none;
198
  }
199
 
200
- /* notes thickbox */
201
 
 
202
  .cpd-notes {
203
  width: 100%;
204
  width: auto;
@@ -252,9 +155,9 @@
252
  .cpd-client-opera{background-position:0 -147px;}
253
  .cpd-client-safari{background-position:0 -196px;}
254
 
255
- /*referrers */
256
 
257
- #cpd_referrers li a {
258
  width: 85%;
259
  display: block;
260
  float: left;
@@ -265,133 +168,128 @@
265
  /* flags */
266
 
267
  .cpd-flag {
268
- display: inline-block;
269
- float: left;
270
- width: 23px;
271
  height: 12px;
272
- margin-top: 3px;
273
  background-image: url(img/cpd_flags.png);
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;}
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
  }
33
 
34
  .cpd_settings legend {
35
+ background: #dfdfdf;
36
+ border-radius: 10px;
37
+ -moz-border-radius: 10px;
 
 
38
  margin: 0 10px;
39
+ padding: 5px 10px;
40
  text-shadow: 0 1px 0 #fff;
41
+ font-weight: bold;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  /* dashboard */
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  .cpd-dashboard .inside {
47
  padding: 5px;
48
  }
49
 
 
 
 
 
 
 
50
  .cpd-dashboard li {
51
  color: #777;
52
  padding-bottom: 2px;
56
 
57
  .cpd-dashboard li b {
58
  float: right;
 
59
  font-family: Georgia,"Times New Roman",Times,serif;
60
  font-size: 18px;
61
  color: #2583ad;
79
 
80
  .cpd-r {
81
  float: right;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  }
83
 
84
  /* thickbox */
100
  border-top: none;
101
  }
102
 
 
103
 
104
+ /* notes thickbox */
105
  .cpd-notes {
106
  width: 100%;
107
  width: auto;
155
  .cpd-client-opera{background-position:0 -147px;}
156
  .cpd-client-safari{background-position:0 -196px;}
157
 
158
+ /*referers */
159
 
160
+ #cpd_referers li a {
161
  width: 85%;
162
  display: block;
163
  float: left;
168
  /* flags */
169
 
170
  .cpd-flag {
171
+ width: 18px;
 
 
172
  height: 12px;
173
+ display: inline-block;
174
  background-image: url(img/cpd_flags.png);
175
  background-repeat: no-repeat;
176
  }
177
 
178
+ .cpd-flag-ae {background-position:0 0;}
179
  .cpd-flag-af, .cpd-flag-xh, .cpd-flag-zu {background-position:0 -13px;}
180
+ .cpd-flag-al {background-position:0 -26px;}
181
+ .cpd-flag-am {background-position:0 -39px;}
182
+ .cpd-flag-ar {background-position:0 -52px;}
183
+ .cpd-flag-at {background-position:0 -65px;}
184
+ .cpd-flag-au {background-position:0 -78px;}
185
+ .cpd-flag-az {background-position:0 -91px;}
186
+ .cpd-flag-ba {background-position:0 -104px;}
187
+ .cpd-flag-bd {background-position:0 -117px;}
188
+ .cpd-flag-be {background-position:0 -130px;}
189
+ .cpd-flag-bg {background-position:0 -143px;}
190
+ .cpd-flag-bh {background-position:0 -156px;}
191
+ .cpd-flag-bn {background-position:0 -169px;}
192
+ .cpd-flag-bo {background-position:0 -182px;}
193
+ .cpd-flag-br {background-position:0 -195px;}
194
+ .cpd-flag-by {background-position:0 -208px;}
195
+ .cpd-flag-bz {background-position:0 -221px;}
196
+ .cpd-flag-ca {background-position:0 -234px;}
197
+ .cpd-flag-ch {background-position:0 -247px;}
198
+ .cpd-flag-ci {background-position:0 -260px;}
199
+ .cpd-flag-cl {background-position:0 -273px;}
200
+ .cpd-flag-cn {background-position:0 -286px;}
201
+ .cpd-flag-co {background-position:0 -299px;}
202
+ .cpd-flag-cr {background-position:0 -312px;}
203
+ .cpd-flag-cs {background-position:0 -325px;}
204
  .cpd-flag-cy, .cpd-flag-el, .cpd-flag-gr {background-position:0 -338px;}
205
+ .cpd-flag-cz {background-position:0 -351px;}
206
  .cpd-flag-da, .cpd-flag-dk {background-position:0 -364px;}
207
+ .cpd-flag-de {background-position:0 -377px;}
208
+ .cpd-flag-do {background-position:0 -390px;}
209
+ .cpd-flag-dz {background-position:0 -403px;}
210
+ .cpd-flag-ec {background-position:0 -416px;}
211
+ .cpd-flag-ee {background-position:0 -429px;}
212
+ .cpd-flag-eg {background-position:0 -442px;}
213
  .cpd-flag-en, .cpd-flag-us {background-position:0 -455px;}
214
+ .cpd-flag-eo {background-position:0 -468px;}
215
+ .cpd-flag-es {background-position:0 -481px;}
216
+ .cpd-flag-eu {background-position:0 -494px;}
217
+ .cpd-flag-fi {background-position:0 -507px;}
218
+ .cpd-flag-fo {background-position:0 -520px;}
219
+ .cpd-flag-fr {background-position:0 -533px;}
220
+ .cpd-flag-gb {background-position:0 -546px;}
221
+ .cpd-flag-ge {background-position:0 -559px;}
222
+ .cpd-flag-gt {background-position:0 -572px;}
223
+ .cpd-flag-hk {background-position:0 -585px;}
224
+ .cpd-flag-hn {background-position:0 -598px;}
225
+ .cpd-flag-hr {background-position:0 -611px;}
226
+ .cpd-flag-hu {background-position:0 -624px;}
227
+ .cpd-flag-id {background-position:0 -637px;}
228
+ .cpd-flag-ie {background-position:0 -650px;}
229
+ .cpd-flag-il {background-position:0 -663px;}
230
+ .cpd-flag-in {background-position:0 -676px;}
231
+ .cpd-flag-iq {background-position:0 -689px;}
232
+ .cpd-flag-ir {background-position:0 -702px;}
233
+ .cpd-flag-is {background-position:0 -715px;}
234
+ .cpd-flag-it {background-position:0 -728px;}
235
  .cpd-flag-ja, .cpd-flag-jp {background-position:0 -741px;}
236
+ .cpd-flag-jm {background-position:0 -754px;}
237
+ .cpd-flag-jo {background-position:0 -767px;}
238
+ .cpd-flag-kk {background-position:0 -780px;}
239
+ .cpd-flag-kp {background-position:0 -793px;}
240
+ .cpd-flag-kr {background-position:0 -806px;}
241
+ .cpd-flag-kw {background-position:0 -819px;}
242
+ .cpd-flag-ky {background-position:0 -832px;}
243
+ .cpd-flag-lb {background-position:0 -845px;}
244
+ .cpd-flag-li {background-position:0 -858px;}
245
+ .cpd-flag-lk {background-position:0 -871px;}
246
+ .cpd-flag-ls {background-position:0 -884px;}
247
+ .cpd-flag-lt {background-position:0 -897px;}
248
+ .cpd-flag-lu {background-position:0 -910px;}
249
+ .cpd-flag-lv {background-position:0 -923px;}
250
+ .cpd-flag-ly {background-position:0 -936px;}
251
+ .cpd-flag-ma {background-position:0 -949px;}
252
+ .cpd-flag-mk {background-position:0 -962px;}
253
+ .cpd-flag-mm {background-position:0 -975px;}
254
+ .cpd-flag-mo {background-position:0 -988px;}
255
+ .cpd-flag-mt {background-position:0 -1001px;}
256
+ .cpd-flag-mx {background-position:0 -1014px;}
257
+ .cpd-flag-my {background-position:0 -1027px;}
258
  .cpd-flag-nb, .cpd-flag-nn, .cpd-flag-no {background-position:0 -1040px;}
259
+ .cpd-flag-ni {background-position:0 -1053px;}
260
+ .cpd-flag-nl {background-position:0 -1066px;}
261
+ .cpd-flag-nz {background-position:0 -1079px;}
262
+ .cpd-flag-om {background-position:0 -1092px;}
263
+ .cpd-flag-pa {background-position:0 -1105px;}
264
+ .cpd-flag-pe {background-position:0 -1118px;}
265
+ .cpd-flag-ph {background-position:0 -1131px;}
266
+ .cpd-flag-pk {background-position:0 -1144px;}
267
+ .cpd-flag-pl {background-position:0 -1157px;}
268
+ .cpd-flag-pr {background-position:0 -1170px;}
269
+ .cpd-flag-pt {background-position:0 -1183px;}
270
+ .cpd-flag-py {background-position:0 -1196px;}
271
+ .cpd-flag-qa {background-position:0 -1209px;}
272
+ .cpd-flag-ro {background-position:0 -1222px;}
273
+ .cpd-flag-rs {background-position:0 -1235px;}
274
+ .cpd-flag-ru {background-position:0 -1248px;}
275
+ .cpd-flag-sa {background-position:0 -1261px;}
276
+ .cpd-flag-se {background-position:0 -1274px;}
277
+ .cpd-flag-sg {background-position:0 -1287px;}
278
+ .cpd-flag-si {background-position:0 -1300px;}
279
+ .cpd-flag-sk {background-position:0 -1313px;}
280
+ .cpd-flag-sv {background-position:0 -1326px;}
281
+ .cpd-flag-sy {background-position:0 -1339px;}
282
+ .cpd-flag-th {background-position:0 -1352px;}
283
+ .cpd-flag-tn {background-position:0 -1365px;}
284
+ .cpd-flag-tr {background-position:0 -1378px;}
285
+ .cpd-flag-tt {background-position:0 -1391px;}
286
+ .cpd-flag-tw {background-position:0 -1404px;}
287
+ .cpd-flag-tz {background-position:0 -1417px;}
288
+ .cpd-flag-ua {background-position:0 -1430px;}
289
+ .cpd-flag-unknown, .cpd-flag-a1, .cpd-flag-a2, .cpd-flag-o1 {background-position:0 -1443px;}
290
+ .cpd-flag-uy {background-position:0 -1456px;}
291
+ .cpd-flag-uz {background-position:0 -1469px;}
292
+ .cpd-flag-ve {background-position:0 -1482px;}
293
+ .cpd-flag-vn {background-position:0 -1495px;}
294
+ .cpd-flag-ye {background-position:0 -1508px;}
295
+ .cpd-flag-za {background-position:0 -1521px;}
 
 
 
counter.php CHANGED
@@ -3,30 +3,170 @@
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,15 +187,78 @@ function show( $before='', $after=' reads', $show = true, $count = true, $page =
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,36 +268,42 @@ function show( $before='', $after=' reads', $show = true, $count = true, $page =
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,464 +314,542 @@ function count( $x, $page = 'x' )
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
  /**
150
- * creates dashboard summary metabox content
 
 
 
151
  */
152
- function dashboardReadsAtAll()
153
  {
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
  }
175
 
176
  /**
177
- * creates the big chart with reads and visotors
178
- * @param int $limit last x days
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);
 
 
 
 
 
 
 
 
 
 
 
 
191
 
192
- // first day
193
- $start_time = $end_time - $limit * 86400;
194
- $start_sql = date('Y-m-d', $start_time);
195
- $start_str = mysql2date(get_option('date_format'), $start_sql);
 
 
 
 
 
 
 
 
 
196
 
197
- // buttons
198
- $button_back = date('Y-m-d', $start_time - 86400);
199
- $button_forward = date('Y-m-d', $end_time + 86400 * ($limit + 1));
200
-
201
- // create data array
202
- $data = array();
203
- for ( $day = $start_time; $day < $end_time; $day = $day + 86400 )
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();
235
- $visitors = array();
236
- foreach ( $data as $day => $values )
237
  {
238
- $reads[] = '['.$day.'000,'.$values[0].']';
239
- $visitors[] = '['.$day.'000,'.$values[1].']';
 
240
  }
241
- $reads_line = '['.implode(',', $reads).']';
242
- $visitors_line = '['.implode(',', $visitors).']';
243
- ?>
244
-
245
- <div id="cpd-flot-place">
246
- <div id="cpd-flot-choice">
247
- <div style="float:left">
248
- <a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start=<?php echo $button_back ?>" class="button">&lt;</a>
249
- <?php echo $start_str ?>
250
- </div>
251
- <div style="float:right">
252
- <?php echo $end_str ?>
253
- <a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start=<?php echo $button_forward ?>" class="button">&gt;</a>
254
- </div>
255
- </div>
256
- <div id="cpd-flot" style="height:<?php echo (!empty($this->options['chart_height'])) ? $this->options['chart_height'] : 200; ?>px"></div>
257
- </div>
258
 
259
- <script type="text/javascript">
260
- //<![CDATA[
261
- jQuery(function() {
262
- var placeholder = jQuery("#cpd-flot");
263
- var choiceContainer = jQuery("#cpd-flot-choice");
264
- var colors = ['blue', 'red'];
265
- var datasets = {
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) {
272
- val.color = i;
273
- ++i;
274
- choiceContainer.append(
275
- '<input type="checkbox" name="' + key + '" checked="checked" id="id' + key + '" \/> '
276
- + '<label style="padding-left:3px;margin-right:10px;border-left:14px solid ' + colors[val.color] + '" for="id' + key + '">' + val.label + '<\/label> ');
277
- });
278
- choiceContainer.find("input").click(plotAccordingToChoices);
279
-
280
- function showTooltip(x, y, contents) {
281
- jQuery('<div id="cpd-tooltip">' + contents + '<\/div>').css({ top:y-70, left:x-80 }).appendTo("body").fadeIn(200);
282
- }
 
 
 
 
 
 
283
 
284
- var previousPoint = null;
285
- jQuery(placeholder).bind("plothover", function (event, pos, item) {
286
- if (item) {
287
- if (previousPoint != item.datapoint) {
288
- previousPoint = item.datapoint;
289
- jQuery("#cpd-tooltip").remove();
290
- var dx = new Date(item.datapoint[0]);
291
- var datum = dx.getDate() + '.' + (dx.getMonth() + 1) + '.' + dx.getFullYear();
292
- showTooltip(item.pageX, item.pageY,
293
- datum + '<br\/><b>' + item.datapoint[1] + '<\/b> ' + item.series.label);
294
- }
295
- }
296
- else {
297
- jQuery("#cpd-tooltip").remove();
298
- previousPoint = null;
299
- }
300
- });
 
 
 
 
301
 
302
- function weekendAreas(axes) {
303
- var markings = [];
304
- var d = new Date(axes.xaxis.min);
305
- d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7));
306
- d.setUTCSeconds(0);
307
- d.setUTCMinutes(0);
308
- d.setUTCHours(0);
309
- var i = d.getTime();
310
- do {
311
- markings.push({ xaxis: { from: i, to: i + 2 * 24 * 60 * 60 * 1000 } });
312
- i += 7 * 24 * 60 * 60 * 1000;
313
- } while (i < axes.xaxis.max);
314
- return markings;
315
- }
316
 
317
- function plotAccordingToChoices() {
318
- var data = [];
319
- choiceContainer.find("input:checked").each(function () {
320
- var key = jQuery(this).attr("name");
321
- if (key && datasets[key])
322
- data.push(datasets[key]);
323
- });
324
-
325
- if (data.length > 0)
326
- jQuery.plot(jQuery(placeholder), data , {
327
- xaxis: { mode: 'time', timeformat: '%d.%m.%y' },
328
- legend: { show: false },
329
- colors: colors,
330
- lines: { fill: true },
331
- grid: { borderWidth: 1, borderColor: '#ccc', hoverable: true, markings: weekendAreas }
332
- });
333
- }
334
 
335
- plotAccordingToChoices();
336
- });
337
- //]]>
338
- </script>
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,39 +857,63 @@ function getReadsPerMonth( $frontend = false, $return = false )
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,30 +922,38 @@ function getUserPerDay( $days = 0, $return = false )
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,105 +961,31 @@ function getMostVisitedPosts( $days = 0, $limit = 0, $frontend = false, $postson
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
- /**
686
- * gets Post_IDs of most visited pages in last days with category filter
687
- * @param integer $days days to calc (last days)
688
- * @param integer $limit count of posts (last posts)
689
- * @param array/integer $cats IDs of category to filter
690
- * @param boolean $return_array returns an array with Post-ID and title, otherwise comma separated list of Post-IDs
691
- * @return string/array list of Post-IDs
692
- */
693
- function getMostVisitedPostIDs( $days = 365, $limit = 10, $cats = false, $return_array = false )
694
- {
695
- global $wpdb;
696
- $date = date_i18n('Y-m-d', current_time('timestamp') - 86400 * $days);
697
- if ( is_array($cats) )
698
- {
699
- if ( is_object($cats[0]) )
700
- {
701
- $catIDs = array();
702
- foreach( $cats as $cat )
703
- $catIDs[] = $cat->term_id;
704
- }
705
- else
706
- $catIDs = (array) $cats;
707
- $cats = implode(',', $catIDs);
708
- }
709
- $cat_filter = ($cats) ? 'AND x.term_id IN ('.$cats.')' : '';
710
-
711
- $q1 = ($return_array) ? ', p.post_title' : '';
712
- $q2 = ($return_array) ? ' LEFT JOIN '.$wpdb->posts.' p ON p.ID = c.page ' : '';
713
-
714
  $sql = "
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);
744
  }
745
 
746
  /**
@@ -750,9 +995,9 @@ function getMostVisitedPostIDs( $days = 365, $limit = 10, $cats = false, $return
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,151 +1008,134 @@ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_n
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 )
846
- $limit = $this->options['dashboard_referers'];
847
- if ( $days == 0 )
848
- $days = $this->options['referers_last_days'];
849
 
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,103 +1144,110 @@ function getDayWithMostUsers( $formated = false, $return = false )
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,24 +1260,281 @@ function dashboardWidget()
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
1040
  if ( $cpd_geoip )
1041
  {
1042
- $geoip = new GeoIPCpD();
 
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,92 +1545,257 @@ function getCountries( $limit = 0, $frontend = false, $visitors = false, $return
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
  /**
1081
- * gets a world map
1082
- * @param string $what visitors|reads|online
1083
- * @param int $width size
1084
- * @param int $height size
1085
- * @param int $min : 1 disable title, legend and zoombar
1086
  */
1087
- function getMap( $what = 'visitors', $width = 500, $height = 340, $min = 0 )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1088
  {
1089
- $divid = uniqid('cpdmap_');
1090
- $dir = $this->dir.'/map/';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
 
1111
 
1112
  /**
1113
- widget class
1114
  */
1115
  class CountPerDay_Widget extends WP_Widget
1116
  {
1117
- var $fields = array( 'title', 'order', 'show',
1118
- 'getreadsall', 'getreadstoday', 'getreadsyesterday', 'getreadslastweek', 'getreadsthismonth',
1119
- 'getuserall', 'getusertoday', 'getuseryesterday', 'getuserlastweek', 'getuserthismonth',
1120
  'getuserperday', 'getuseronline', 'getfirstcount',
1121
- 'show_name',
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',
1128
  'getUserPerDay', 'getUserOnline', 'getFirstCount' );
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',
1137
- array('description' => __('Statistics', 'cpd')), array('width' => 270) );
1138
  }
1139
 
1140
  // display widget
1141
- function widget( $args, $instance )
1142
  {
1143
  global $count_per_day;
1144
 
@@ -1147,18 +1804,17 @@ class CountPerDay_Widget extends WP_Widget
1147
  echo $before_widget;
1148
  if ( !empty( $title ) )
1149
  echo $before_title.$title.$after_title;
 
1150
  echo '<ul class="cpd">';
1151
- $order = explode('|', $instance['order']);
1152
- foreach ( $order as $k )
1153
  {
1154
- if ( $k && $instance[$k] == 1 )
1155
  // checked only
1156
  {
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,7 +1822,7 @@ class CountPerDay_Widget extends WP_Widget
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
  }
@@ -1191,17 +1847,13 @@ class CountPerDay_Widget extends WP_Widget
1191
  {
1192
  $default = array(
1193
  'title' => 'Count per Day',
1194
- 'order' => implode('|', $this->funcs),
1195
  'show' => 0,
1196
  'getreadsall' => 0,
1197
  'getreadstoday' => 0,
1198
  'getreadsyesterday' => 0,
1199
- 'getreadslastweek' => 0,
1200
- 'getreadsthismonth' => 0,
1201
  'getuserall' => 0,
1202
  'getusertoday' => 0,
1203
  'getuseryesterday' => 0,
1204
- 'getuserthismonth' => 0,
1205
  'getuserlastweek' => 0,
1206
  'getuserperday' => 0,
1207
  'getuseronline' => 0,
@@ -1210,98 +1862,72 @@ class CountPerDay_Widget extends WP_Widget
1210
  'getreadsall_name' => __('Total reads', 'cpd'),
1211
  'getreadstoday_name' => __('Reads today', 'cpd'),
1212
  'getreadsyesterday_name' => __('Reads yesterday', 'cpd'),
1213
- 'getreadslastweek_name' => __('Reads last week', 'cpd'),
1214
- 'getreadsthismonth_name' => __('Reads per month', 'cpd'),
1215
  'getuserall_name' => __('Total visitors', 'cpd'),
1216
  'getusertoday_name' => __('Visitors today', 'cpd'),
1217
  'getuseryesterday_name' => __('Visitors yesterday', 'cpd'),
1218
  'getuserlastweek_name' => __('Visitors last week', 'cpd'),
1219
- 'getuserthismonth_name' => __('Visitors per month', 'cpd'),
1220
  'getuserperday_name' => __('Visitors per day', 'cpd'),
1221
  'getuseronline_name' => __('Visitors currently online', 'cpd'),
1222
- 'getfirstcount_name' => __('Counter starts on', 'cpd')
1223
  );
1224
  $instance = wp_parse_args( (array) $instance, $default );
1225
-
 
1226
  // title field
1227
  $field_id = $this->get_field_id('title');
1228
  $field_name = $this->get_field_name('title');
1229
-
1230
- echo '
1231
- <ul id="cpdwidgetlist'.$field_id.'">
1232
- <li class="cpd_widget_item cpd_widget_title">
1233
- <label for="'.$field_id.'">'.__('Title').':<label>
1234
- <input type="text" class="widefat" id="'.$field_id.'" name="'.$field_name.'" value="'.esc_attr( $instance['title'] ).'" />
1235
- </li>';
1236
 
1237
- $order = explode('|', $instance['order']);
1238
- foreach ( $order as $f )
1239
  {
1240
- if ( $f )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1241
  {
1242
- $check_id = $this->get_field_id( $f );
1243
- $check_name = $this->get_field_name( $f );
1244
- $check_status = ( !empty($instance[$f]) ) ? 'checked="checked"' : '';
1245
-
1246
- $fl = $f.'_name';
1247
- $label_id = $this->get_field_id( $fl );
1248
- $label_name = $this->get_field_name( $fl );
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.'" />
1256
- </li>';
1257
  }
 
 
 
 
1258
  }
1259
- echo "</ul>\n";
1260
-
1261
- // order
1262
- $of_id = $this->get_field_id('order');
1263
- $of_name = $this->get_field_name('order');
1264
- echo '<input type="hidden" id="'.$of_id.'" name="'.$of_name.'" value="'.esc_attr( $instance['order'] ).'" />';
1265
- ?>
1266
- <script type="text/javascript">
1267
- //<![CDATA[
1268
- jQuery.noConflict();
1269
- jQuery(document).ready(function(){
1270
- jQuery('#cpdwidgetlist<?php echo $field_id ?>').sortable({
1271
- items: 'li:not(.cpd_widget_title)',
1272
- update: function (event, ui) {
1273
- var ul = window.document.getElementById('cpdwidgetlist<?php echo $field_id ?>');
1274
- var items = ul.getElementsByTagName('li');
1275
- var array = new Array();
1276
- for (var i = 1, n = items.length; i < n; i++) {
1277
- var identifier = items[i].getAttribute('itemid');
1278
- array.push(identifier);
1279
- }
1280
- window.document.getElementById('<?php echo $of_id ?>').value = array.join('|');
1281
- }
1282
- });
1283
- });
1284
- //]]>
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();
 
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.14
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.14';
14
 
15
+ /**
16
+ * include GeoIP addon
17
+ */
18
+ //$cpd_path = ABSPATH.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__));
19
+ $cpd_path = ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/';
20
+ $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, $cpd_path);
21
+
22
+ if ( file_exists($cpd_path.'geoip/geoip.php') )
23
+ include_once($cpd_path.'geoip/geoip.php');
24
+ $cpd_geoip = ( class_exists('CpdGeoIp') && file_exists($cpd_path.'geoip/GeoIP.dat') ) ? 1 : 0;
25
 
26
  /**
27
  * Count per Day
28
  */
29
+ class CountPerDay
30
  {
31
+
32
+ var $options; // options array
33
+ var $dir; // this plugin dir
34
+ var $dbcon; // database connection
35
+ var $queries = array(); // queries times for debug
36
+ var $page; // Post/Page-ID
37
+ var $installed = false; // CpD installed in subblogs?
38
 
39
  /**
40
+ * Constructor
41
  */
42
  function CountPerDay()
43
  {
44
+ // variables
45
+ global $table_prefix, $cpd_path, $cpd_dir_name;
46
+ define('CPD_C_TABLE', $table_prefix.'cpd_counter');
47
+ define('CPD_CO_TABLE', $table_prefix.'cpd_counter_useronline');
48
+ define('CPD_N_TABLE', $table_prefix.'cpd_notes');
49
+ define('CPD_METABOX', 'cpd_metaboxes');
50
+
51
+ // use local time not UTC
52
+ get_option('gmt_offset');
53
+
54
+ $this->options = get_option('count_per_day');
55
+
56
+ if ( !empty($_GET['debug']) )
57
+ $this->options['debug'] = 1;
58
+
59
+ $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
60
+ $this->queries[0] = 0;
61
+
62
+ // update online counter
63
+ add_action('wp', array(&$this, 'deleteOnlineCounter'));
64
+
65
+ // admin menu
66
+ if ( is_admin() )
67
+ add_action('admin_menu', array(&$this, 'menu'));
68
+
69
+ // settings link on plugin page
70
+ add_filter('plugin_action_links', array(&$this, 'pluginActions'), 10, 2);
71
+
72
+ // auto counter
73
+ if ( $this->options['autocount'] == 1 )
74
+ add_action('wp', array(&$this,'count'));
75
+
76
+ // javascript to count cached posts
77
+ if ( $this->options['ajax'] == 1 )
78
+ add_action('wp_footer', array(&$this,'addAjaxScript'));
79
+
80
+ // widget on dashboard page
81
+ add_action('wp_dashboard_setup', array(&$this, 'dashboardWidgetSetup'));
82
+
83
+ // CpD dashboard page
84
+ add_filter('screen_layout_columns', array(&$this, 'screenLayoutColumns'), 10, 2);
85
+
86
+ // register callback for admin menu setup
87
+ add_action('admin_menu', array(&$this, 'setAdminMenu'));
88
+
89
+ // column page list
90
+ add_action('manage_pages_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
91
+ add_filter('manage_pages_columns', array(&$this, 'cpdColumn'));
92
+
93
+ // column post list
94
+ add_action('manage_posts_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
95
+ add_filter('manage_posts_columns', array(&$this, 'cpdColumn'));
96
+
97
+ // locale support
98
+ if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
99
+ load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
100
+
101
+ // adds stylesheet
102
+ add_action( 'admin_head', array(&$this, 'addCss') );
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 shorcode support
126
+ $this->addShortcodes();
127
+
128
+ // thickbox in backend only
129
+ if ( strpos($_SERVER['SCRIPT_NAME'], '/wp-admin/') !== false )
130
+ wp_enqueue_script( 'thickbox' );
131
+
132
+ $this->connectDB();
133
+ }
134
+
135
+ /**
136
+ * direct database connection without wordpress functions saves memory
137
+ */
138
+ function connectDB()
139
+ {
140
+ global $wpdb;
141
+
142
+ $this->dbcon = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, true);
143
+ @mysql_select_db(DB_NAME, $this->dbcon);
144
+ $this->getQuery("SET NAMES '".$wpdb->charset."'", 'SET NAMES');
145
+ }
146
+
147
+ /**
148
+ * get results per own connection (shows time for debug)
149
+ * @param string $sql SQL statement
150
+ * @param string $func show this name before time
151
+ * @return MySql result
152
+ */
153
+ function getQuery( $sql, $func = '' )
154
+ {
155
+ global $wpdb;
156
+
157
+ if ( $this->options['debug'] )
158
+ {
159
+ $t = microtime(true);
160
+ $res = mysql_query($sql, $this->dbcon);
161
+ $d = number_format( microtime(true) - $t , 5);
162
+ $error = ($res) ? '' : '<b style="color:red">ERROR:</b> '.mysql_errno($this->dbcon).' - '.mysql_error($this->dbcon);
163
+ $this->queries[] = $func.' : <b>'.$d.'</b><br/><code>'.$sql.'</code><br/>'.$error;
164
+ $this->queries[0] += $d;
165
+ }
166
+ else
167
+ $res = @mysql_query($sql, $this->dbcon);
168
+
169
+ return $res;
170
  }
171
 
172
  /**
187
  $this->count();
188
  if ( $page == 'x' )
189
  $page = get_the_ID();
190
+ $res = $this->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE page='$page'", 'show');
191
+ $row = mysql_fetch_row($res);
192
+ if ( $show )
193
+ echo $before.$row[0].$after;
194
  else
195
+ return $row[0];
196
+ }
197
+
198
+ /**
199
+ * anonymize IP address (last bit) if option is set
200
+ * @param $ip real IP address
201
+ * @return new IP address
202
+ */
203
+ function anonymize_ip( $ip )
204
+ {
205
+ if ( $this->options['debug'] )
206
+ $this->queries[] = 'called Function: <b style="color:blue">anonymize_ip</b> IP: <code>'.$ip.'</code>';
207
+
208
+ if ($this->options['anoip'] == 1)
209
  {
210
+ $i = explode('.', $ip);
211
+ $i[3] += round( array_sum($i) / 4 + date_i18n('d') );
212
+ if ( $i[3] > 255 )
213
+ $i[3] -= 255;
214
+ return implode('.', $i);
215
  }
216
+ else
217
+ return $ip;
218
+ }
219
+
220
+ /**
221
+ * gets PostID
222
+ */
223
+ function getPostID()
224
+ {
225
+ global $wp_query;
226
+
227
+ // find PostID
228
+ if ( !is_404() ) :
229
+ if ( $this->options['autocount'] == 1 && 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
+
245
+ // "index" pages only with autocount
246
+ else if ( is_category() || is_tag() )
247
+ // category or tag => negativ ID in CpD DB
248
+ $p = 0 - $wp_query->get_queried_object_id();
249
+ else
250
+ // index, date, search and other "list" pages will count only once
251
+ $p = 0;
252
+
253
+ $this->page = $p;
254
+
255
+ if ( $this->options['debug'] )
256
+ $this->queries[] = 'called Function: <b style="color:blue">getPostID</b> page ID: <code>'.$p.'</code>';
257
+
258
+ return $p;
259
+ endif;
260
+
261
+ return false;
262
  }
263
 
264
  /**
268
  */
269
  function count( $x, $page = 'x' )
270
  {
271
+ global $wpdb, $wp_query, $cpd_path, $cpd_geoip, $userdata, $table_prefix;
272
 
273
+ if ( $this->options['debug'] )
274
  $this->queries[] = 'called Function: <b style="color:blue">count</b> page: <code>'.$page.'</code>';
275
 
276
+ if ( $page == 'x' )
277
  // normal counter
278
  $page = $this->getPostID();
279
  else
280
  // ajax counter on cached pages
281
+ $page = intval($page);
282
 
283
  // get userlevel from role
284
+ $caps = $table_prefix.'capabilities';
285
+ if ( isset($userdata->$caps) )
286
+ {
287
+ $role = $userdata->$caps;
288
+ if ($role['administrator']) $userlevel = 10;
289
+ else if ($role['editor']) $userlevel = 7;
290
+ else if ($role['author']) $userlevel = 2;
291
+ else if ($role['contributor']) $userlevel = 1;
292
+ else if ($role['subscriber']) $userlevel = 0;
293
+ else $userlevel = -1;
294
+ }
295
+ else $userlevel = -1;
296
+
297
  // count visitor?
298
  $countUser = 1;
299
+ if ( $this->options['user'] == 0 && is_user_logged_in() ) $countUser = 0; // don't count loged user
300
+ if ( $this->options['user'] == 1 && isset($userdata) && $this->options['user_level'] < $userlevel ) $countUser = 0; // loged user, but higher user level
301
 
302
  $isBot = $this->isBot();
303
 
304
+ if ( $this->options['debug'] )
305
  $this->queries[] = 'called Function: <b style="color:blue">count (variables)</b> '
306
+ .'isBot: <code>'.intval($isBot).'</code> '
307
  .'countUser: <code>'.$countUser.'</code> '
308
  .'page: <code>'.$page.'</code> '
309
  .'userlevel: <code>'.$userlevel.'</code>';
314
  $userip = $this->anonymize_ip($_SERVER['REMOTE_ADDR']);
315
  $client = ($this->options['referers']) ? $_SERVER['HTTP_USER_AGENT'] : '';
316
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? $_SERVER['HTTP_REFERER'] : '';
 
 
317
  $date = date_i18n('Y-m-d');
318
 
319
  // new visitor on page?
320
+ $res = $this->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE ip=INET_ATON('$userip') AND date='$date' AND page='$page'", 'count check');
321
+ $row = mysql_fetch_row($res);
322
+ if ( $row[0] == 0 )
323
  {
324
  // save count
325
+ if ( $cpd_geoip )
326
  {
327
  // with GeoIP addon save country
328
+ $gi = geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
329
+ $country = strtolower(geoip_country_code_by_addr($gi, $userip));
330
+ $this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, country, referer)
331
+ VALUES (%s, INET_ATON(%s), %s, %s, %s, %s)", $page, $userip, $client, $date, $country, $referer), 'count insert');
332
  }
333
  else
334
+ {
335
  // without country
336
+ $this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, referer)
337
+ VALUES (%s, INET_ATON(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert');
338
+ }
339
  }
340
+
341
  // online counter
342
+ $timestamp = time();
343
+ $this->getQuery($wpdb->prepare("REPLACE INTO ".CPD_CO_TABLE." (timestamp, ip, page)
344
+ VALUES ( %s, INET_ATON(%s), %s)", $timestamp, $userip, $page), 'count online');
345
  }
346
  }
347
 
348
  /**
349
+ * deletes old online user
350
  */
351
  function deleteOnlineCounter()
352
  {
353
+ $timeout = time() - $this->options['onlinetime'];
354
+ $this->getQuery("DELETE FROM ".CPD_CO_TABLE." WHERE timestamp < $timeout", 'deleteOnlineCounter');
 
 
 
355
  }
356
 
357
  /**
358
+ * bot or human?
359
+ * @param string $client USER_AGENT
360
+ * @param array $bots strings to check
361
+ * @param string $ip IP adress
362
  */
363
+ function isBot( $client = '', $bots = '', $ip = '' )
364
  {
365
+ if ( empty($client) )
366
+ $client = $_SERVER['HTTP_USER_AGENT'];
367
+ if ( empty($ip) )
368
+ $ip = $_SERVER['REMOTE_ADDR'];
369
+
370
+ // empty/short client -> not normal browser -> bot
371
+ if ( empty($client) || strlen($client) < 20 )
372
+ return true;
373
+
374
+ if ( empty($bots) )
375
+ $bots = explode( "\n", $this->options['bots'] );
376
+
377
+ $isBot = false;
378
+ foreach ( $bots as $bot )
379
+ {
380
+ if (!$isBot) // loop until first bot was found only
381
+ {
382
+ $b = trim($bot);
383
+ if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false ) )
384
+ $isBot = true;
385
+ }
386
+ }
387
+ return $isBot;
388
  }
389
 
390
  /**
391
+ * creates tables if not exists
 
392
  */
393
+ function createTables()
394
  {
395
+ global $wpdb, $table_prefix;
396
+
397
+ // for plugin activation, creates $wpdb
398
+ require_once(ABSPATH.'wp-admin/includes/upgrade.php');
399
+
400
+ // variables for subblogs
401
+ $cpd_c = $table_prefix.'cpd_counter';
402
+ $cpd_o = $table_prefix.'cpd_counter_useronline';
403
+ $cpd_n = $table_prefix.'cpd_notes';
404
+
405
+ if (!empty ($wpdb->charset))
406
+ $charset_collate = "DEFAULT CHARACTER SET {$wpdb->charset}";
407
+ if (!empty ($wpdb->collate))
408
+ $charset_collate .= " COLLATE {$wpdb->collate}";
409
+
410
+ // table "counter"
411
+ $sql = "CREATE TABLE IF NOT EXISTS `$cpd_c` (
412
+ `id` int(10) NOT NULL auto_increment,
413
+ `ip` int(10) unsigned NOT NULL,
414
+ `client` varchar(150) NOT NULL,
415
+ `date` date NOT NULL,
416
+ `page` mediumint(9) NOT NULL,
417
+ `referer` varchar(100) NOT NULL,
418
+ PRIMARY KEY (`id`),
419
+ KEY `idx_page` (`page`),
420
+ KEY `idx_dateip` (`date`,`ip`) )
421
+ $charset_collate;";
422
+ $this->getQuery($sql);
423
 
424
+ // update fields in old table
425
+ $field = $this->getQuery( "SHOW FIELDS FROM `$cpd_c` LIKE 'ip'" );
426
+ $row = mysql_fetch_array($field);
427
+ if ( strpos(strtolower($row['Type']), 'int') === false )
428
+ {
429
+ $queries = array (
430
+ "ALTER TABLE `$cpd_c` ADD `ip2` INT(10) UNSIGNED NOT NULL AFTER `ip`",
431
+ "UPDATE `$cpd_c` SET ip2 = INET_ATON(ip)",
432
+ "ALTER TABLE `$cpd_c` DROP `ip`",
433
+ "ALTER TABLE `$cpd_c` CHANGE `ip2` `ip` INT( 10 ) UNSIGNED NOT NULL",
434
+ "ALTER TABLE `$cpd_c` CHANGE `date` `date` date NOT NULL",
435
+ "ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL");
436
+
437
+ foreach ( $queries as $sql)
438
+ $this->getQuery($sql, 'update old fields');
439
+ }
440
 
441
+ // make new keys
442
+ $keys = $this->getQuery( "SHOW KEYS FROM `$cpd_c`" );
443
+ $s = array();
444
+ while ( $row = mysql_fetch_array($keys) )
445
+ if ( $row['Key_name'] != 'PRIMARY' )
446
+ $s[] = 'DROP INDEX `'.$row['Key_name'].'`';
447
+ $s = array_unique($s);
448
+
449
+ $sql = "ALTER TABLE `$cpd_c` ";
450
+ if ( sizeof($s) )
451
+ $sql .= implode(',', $s).', ';
452
+ $sql .= 'ADD KEY `idx_dateip` (`date`,`ip`), ADD KEY `idx_page` (`page`)';
453
+ $this->getQuery($sql);
454
 
455
+ // if GeoIP installed we need row "country"
456
+ if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  {
458
+ $this->getQuery("SELECT country FROM `$cpd_c`");
459
+ if ((int) mysql_errno() == 1054)
460
+ $this->getQuery("ALTER TABLE `$cpd_c` ADD `country` CHAR(2) NOT NULL");
461
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
 
463
+ // referer
464
+ $this->getQuery("SELECT referer FROM `$cpd_c`");
465
+ if ((int) mysql_errno() == 1054)
466
+ $this->getQuery("ALTER TABLE `$cpd_c` ADD `referer` VARCHAR(100) NOT NULL");
467
+
468
+ // table "counter-online"
469
+ $sql = "CREATE TABLE IF NOT EXISTS `$cpd_o` (
470
+ `timestamp` int(15) NOT NULL,
471
+ `ip` int(10) UNSIGNED NOT NULL,
472
+ `page` int(11) NOT NULL,
473
+ PRIMARY KEY (`ip`) )
474
+ $charset_collate;";
475
+ $this->getQuery($sql);
476
+
477
+ // table "notes"
478
+ $sql = "CREATE TABLE IF NOT EXISTS `$cpd_n` (
479
+ `id` int(11) NOT NULL AUTO_INCREMENT,
480
+ `date` date NOT NULL,
481
+ `note` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
482
+ PRIMARY KEY (`id`),
483
+ UNIQUE KEY `date` (`date`) )
484
+ $charset_collate;";
485
+ $this->getQuery($sql);
486
+
487
+ // update options to array
488
+ $this->UpdateOptions();
489
+
490
+ // set directory mode
491
+ @chmod(ABSPATH.PLUGINDIR.'/count-per-day/geoip', 0777);
492
+ }
493
 
494
+ /**
495
+ * creates dashboard summary metabox content
496
+ */
497
+ function dashboardReadsAtAll()
498
+ {
499
+ ?>
500
+ <ul>
501
+ <li><b><span><?php $this->getReadsAll(); ?></span></b><?php _e('Total reads', 'cpd') ?>:</li>
502
+ <li><b><?php $this->getReadsToday(); ?></b><?php _e('Reads today', 'cpd') ?>:</li>
503
+ <li><b><?php $this->getReadsYesterday(); ?></b><?php _e('Reads yesterday', 'cpd') ?>:</li>
504
+ <li><b><?php $this->getReadsLastWeek(); ?></b><?php _e('Reads last week', 'cpd') ?>:</li>
505
+ <li><b><span><?php $this->getUserAll(); ?></span></b><?php _e('Total visitors', 'cpd') ?>:</li>
506
+ <li><b><span><?php $this->getUserOnline(); ?></span></b><?php _e('Visitors currently online', 'cpd') ?>:</li>
507
+ <li><b><?php $this->getUserToday(); ?></b><?php _e('Visitors today', 'cpd') ?>:</li>
508
+ <li><b><?php $this->getUserYesterday(); ?></b><?php _e('Visitors yesterday', 'cpd') ?>:</li>
509
+ <li><b><?php $this->getUserLastWeek(); ?></b><?php _e('Visitors last week', 'cpd') ?>:</li>
510
+ <li><b><?php $this->getUserPerDay($this->options['dashboard_last_days']); ?></b>&Oslash; <?php _e('Visitors per day', 'cpd') ?>:</li>
511
+ <li><b><?php $this->getFirstCount(); ?></b><?php _e('Counter starts on', 'cpd') ?>:</li>
512
+ </ul>
513
+ <?php
514
+ }
515
 
516
+ /**
517
+ * creates dashboard chart metabox content - page visits
518
+ * @param integer $limit days to show
519
+ * @param boolean $frontend limit function on frontend
520
+ * @see dashboardChartDataRequest()
521
+ */
522
+ function dashboardChart( $limit = 0, $frontend = false )
523
+ {
524
+ global $table_prefix;
525
+ if ( $limit == 0 )
526
+ $limit = ( !empty($this->options['chart_days']) )? $this->options['chart_days'] : 30;
527
+ $start = ( isset($_GET['cpd_chart_start']) ) ? $_GET['cpd_chart_start'] : date_i18n('Y-m-d');
 
 
528
 
529
+ $sql = "
530
+ SELECT count(*) count, c.date, n.note
531
+ FROM ".CPD_C_TABLE." AS c
532
+ LEFT JOIN ".$table_prefix."cpd_notes AS n
533
+ ON n.date = c.date
534
+ WHERE c.date <= '".$start."'
535
+ GROUP BY c.date
536
+ ORDER BY c.date DESC
537
+ LIMIT $limit";
538
+ $r = $this->dashboardChartDataRequest($sql, $limit, $frontend);
539
+ if ($frontend)
540
+ return $r;
541
+ else
542
+ echo $r;
543
+ }
 
 
544
 
545
+ /**
546
+ * creates dashboard chart metabox content - visitors
547
+ * @param integer limit days to show
548
+ * @param boolean $frontend limit function on frontend
549
+ * @see dashboardChartDataRequest()
550
+ */
551
+ function dashboardChartVisitors( $limit = 0, $frontend = false )
552
+ {
553
+ global $table_prefix;
554
+ if ( $limit == 0 )
555
+ $limit = ( !empty($this->options['chart_days']) )? $this->options['chart_days'] : 30;
556
+ $start = ( isset($_GET['cpd_chart_start']) ) ? $_GET['cpd_chart_start'] : date_i18n('Y-m-d');
557
+ $sql = "
558
+ SELECT count(*) count, t.date, n.note
559
+ FROM ( SELECT count(*) count, date
560
+ FROM ".CPD_C_TABLE."
561
+ GROUP BY date, ip
562
+ ) AS t
563
+ LEFT JOIN ".$table_prefix."cpd_notes AS n
564
+ ON n.date = t.date
565
+ WHERE t.date <= '".$start."'
566
+ GROUP BY t.date
567
+ ORDER BY t.date DESC
568
+ LIMIT $limit";
569
+ $r = $this->dashboardChartDataRequest($sql, $limit, $frontend);
570
+ if ($frontend)
571
+ return $r;
572
+ else
573
+ echo $r;
574
  }
575
 
576
  /**
577
+ * creates dashboard chart metabox content
578
+ * @param string $sql SQL-Statement visitors or page visits
579
+ * @param boolean $frontend limit function on frontend
580
  */
581
+ function dashboardChartDataRequest( $sql = '', $limit, $frontend = false )
582
  {
583
+ global $wp_locale;
584
+
585
+ // get options
586
+ $max_height = ( !empty($this->options['chart_height']) ) ? $this->options['chart_height'] : 200;
587
+
588
+ $res = $this->getQuery($sql, 'Chart');
589
+ if ( mysql_errno() || !mysql_num_rows($res) )
590
+ return;
591
+
592
+ $res_array = array();
593
+
594
+ // find date end points
595
+ while ( $day = mysql_fetch_assoc($res) )
596
+ {
597
+ $res_array[] = $day;
598
+ if ( empty($end) )
599
+ $end = $day['date'];
600
+ $start = $day['date'];
601
+ }
602
 
603
+ $end_time = strtotime($end);
604
+ $start_time = max( array($end_time - ($limit - 1) * 86400, strtotime($start)) );
605
+ $days = round(max(1, ($end_time - $start_time) / 86400 + 1));
606
+ $bar_width = round(100 / $days, 2); // per cent
607
 
608
+ // find max count
609
+ $max = 1;
610
+ mysql_data_seek($res, 0);
611
+ while ( $day = mysql_fetch_array($res) )
612
  {
613
+ $date = strtotime($day['date']);
614
+ if ( $date >= $start_time && $day['count'] > $max )
615
+ $max = max(1, $day['count']);
616
+ }
617
+
618
+ $height_factor = $max_height / $max;
619
+
620
+ // headline with max count
621
+ $r = '
622
+ <div style="text-align:center;">
623
+ <small style="display:block; float:right;">'.$days.' '.__('days', 'cpd').'</small>
624
+ <small style="display:block; float:left;">Max: '.$max.'</small>';
625
+ if ( !$frontend )
626
+ $r .= '<small><a href="'.$this->dir.'/notes.php?KeepThis=true&amp;TB_iframe=true" title="Count per Day" class="thickbox">'.__('Notes', 'cpd').'</a></small>';
627
+ $r .= '<small>&nbsp;</small></div>';
628
+
629
+ $r .= '<p style="border-bottom:1px black solid; white-space:nowrap;">';
630
+
631
+ $date_old = $start_time;
632
+
633
+ // newest data will show right
634
+ $res_array = array_reverse($res_array);
635
+ foreach ( $res_array as $day )
636
+ {
637
+ $date = strtotime($day['date']);
638
+ $note = ( $day['note'] != '' ) ? ' - '.$day['note'] : '';
639
 
640
+ if ( $date >= $start_time )
 
641
  {
642
+ // show the last $limit days only
643
+ if ( $date - $date_old > 86400 )
 
644
  {
645
+ // show space if no reads today
646
+ $width = (($date - $date_old) / 86400 - 1) * $bar_width;
647
+ if ( $frontend )
648
+ $note = '';
649
+ $r .= '<img src="'.$this->getResource('cpd_trans.png').'" title="'.__('no reads at this time', 'cpd').$note.'"
650
+ style="width:'.$width.'%; height:'.$max_height.'px" />';
651
  }
652
+
653
+ // show normal bar
654
+ $height = max( round($day['count'] * $height_factor, 0), 1 );
655
+ $date_str = mysql2date(get_option('date_format'), $day['date']);
656
+ if ( !$frontend )
657
+ $r .= '<a href="?page=cpd_metaboxes&amp;daytoshow='.$day['date'].'">';
658
+ $r .= '<img src="';
659
+ if ($note && !$frontend)
660
+ $r .= $this->getResource('cpd_blau.png').'" title="'.$date_str.' : '.$day['count'].$note.'"';
661
  else
662
+ $r .= $this->getResource('cpd_rot.png').'" title="'.$date_str.' : '.$day['count'].'"';
663
+ $r .= ' style="width:'.$bar_width.'%; height:'.$height.'px" />';
664
+ if ( !$frontend )
665
+ $r .= '</a>';
666
+
667
+ $date_old = $date;
668
  }
 
 
 
 
 
669
  }
670
+
671
+ // legend
672
+ $end_str = mysql2date(get_option('date_format'), $end);
673
+ $start_str = mysql2date(get_option('date_format'), $start);
674
+ $r .= '</p>
675
+ <div style="height: 10px" class="cpd-l">
676
+ <small>'.$start_str.'</small>
677
+ <small class="cpd-r">'.$end_str.'</small>
678
+ </div>';
679
+
680
+ // buttons
681
+ $date_back = date('Y-m-d', strtotime($start) - 86400);
682
+ $date_forward = date('Y-m-d', strtotime($end) + 86400 * $limit);
683
+ $r .= '<p style="text-align:center;">
684
+ <a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start='.$date_back.'" class="button">&lt;</a>
685
+ <a href="index.php?page=cpd_metaboxes&amp;cpd_chart_start='.$date_forward.'" class="button">&gt;</a>
686
+ </p>';
687
+
688
+ return $r;
689
+ }
690
+
691
+ /**
692
+ * shows current visitors
693
+ */
694
+ function getUserOnline( $frontend = false )
695
+ {
696
+ $res = $this->getQuery("SELECT count(*) FROM ".CPD_CO_TABLE, 'getUserOnline');
697
+ $row = mysql_fetch_row($res);
698
+ if ($frontend)
699
+ return $row[0];
700
  else
701
+ echo $row[0];
 
702
  }
703
 
704
  /**
705
  * shows all visitors
706
  */
707
+ function getUserAll( $frontend = false )
708
  {
709
+ $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." GROUP BY date, ip", 'getUserAll');
710
+ $c = mysql_num_rows($res) + intval($this->options['startcount']);
711
+ if ($frontend)
712
+ return $c;
713
+ else
714
+ echo $c;
715
  }
716
 
717
  /**
718
  * shows all reads
719
  */
720
+ function getReadsAll( $frontend = false )
721
  {
722
+ $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE, 'getReadsAll');
723
+ $row = mysql_fetch_row($res);
724
+ $c = $row[0] + intval($this->options['startreads']);
725
+ if ($frontend)
726
+ return $c;
727
+ else
728
+ echo $c;
729
  }
730
 
731
  /**
732
  * shows today visitors
733
  */
734
+ function getUserToday( $frontend = false )
735
  {
 
736
  $date = date_i18n('Y-m-d');
737
+ $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserToday');
738
+ $c = mysql_num_rows($res);
739
+ if ($frontend)
740
+ return $c;
741
+ else
742
+ echo $c;
743
  }
744
 
745
  /**
746
  * shows today reads
747
  */
748
+ function getReadsToday( $frontend = false )
749
  {
 
750
  $date = date_i18n('Y-m-d');
751
+ $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsToday');
752
+ $row = mysql_fetch_row($res);
753
+ if ($frontend)
754
+ return $row[0];
755
+ else
756
+ echo $row[0];
757
  }
758
 
759
  /**
760
  * shows yesterday visitors
761
  */
762
+ function getUserYesterday( $frontend = false )
763
  {
764
+ $date = date_i18n('Y-m-d', current_time('timestamp')-86400);
765
+ $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserYesterday');
766
+ $c = mysql_num_rows($res);
767
+ if ($frontend)
768
+ return $c;
769
+ else
770
+ echo $c;
771
  }
772
 
773
  /**
774
  * shows yesterday reads
775
  */
776
+ function getReadsYesterday( $frontend = false )
777
  {
778
+ $date = date_i18n('Y-m-d', current_time('timestamp')-86400);
779
+ $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsYesterday');
780
+ $row = mysql_fetch_row($res);
781
+ if ($frontend)
782
+ return $row[0];
783
+ else
784
+ echo $row[0];
785
  }
786
 
787
  /**
788
  * shows last week visitors (last 7 days)
789
  */
790
+ function getUserLastWeek( $frontend = false )
791
  {
792
+ $date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
793
+ $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$date' GROUP BY ip;", 'getUserLastWeek');
794
+ $c = mysql_num_rows($res);
795
+ if ($frontend)
796
+ return $c;
797
+ else
798
+ echo $c;
799
  }
800
 
801
  /**
802
  * shows last week reads (last 7 days)
803
  */
804
+ function getReadsLastWeek( $frontend = false )
 
 
 
 
 
 
 
 
 
 
805
  {
806
+ $date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
807
+ $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$date';", 'getReadsLastWeek');
808
+ $row = mysql_fetch_row($res);
809
+ // $c = mysql_num_rows($res);
810
+ if ($frontend)
811
+ return $row[0];
812
+ else
813
+ echo $row[0];
 
 
 
 
 
 
 
814
  }
815
 
816
  /**
817
  * shows visitors per month
818
  */
819
+ function getUserPerMonth( $frontend = false )
820
  {
821
+ $m = $this->getQuery("SELECT LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getUserPerMonths');
 
 
 
822
  $r = '<ul class="cpd_front_list">';
823
+ while ( $row = mysql_fetch_row($m) )
 
 
824
  {
825
+ $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE LEFT(date,7) = '".$row[0]."' GROUP BY date, ip", 'getUserPerMonth');
826
+ $r .= '<li><b>'.mysql_num_rows($res).'</b> '.$row[0].'</li>'."\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
827
  }
828
  $r .= '</ul>';
829
+
830
+ if ($frontend)
831
+ return $r;
832
+ else
833
+ echo $r;
834
  }
835
 
836
  /**
837
  * shows reads per month
838
  */
839
+ function getReadsPerMonth( $frontend = false )
840
  {
841
+ $res = $this->getQuery("SELECT COUNT(*), LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getReadsPerMonths');
 
 
 
842
  $r = '<ul class="cpd_front_list">';
843
+ while ( $row = mysql_fetch_row($res) )
 
 
844
  {
845
+ $r .= '<li><b>'.$row[0].'</b> '.$row[1].'</li>'."\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
846
  }
847
  $r .= '</ul>';
848
+
849
+ if ($frontend)
850
+ return $r;
851
+ else
852
+ echo $r;
853
  }
854
 
855
  /**
857
  * @param integer $limit number of posts, -1 = all, 0 = get option from db, x = number
858
  * @param boolean $frontend limit function on frontend
859
  */
860
+ function getUserPerPost( $limit = 0, $frontend = false )
861
  {
862
  global $wpdb;
863
  if ( $limit == 0 )
864
  $limit = $this->options['dashboard_posts'];
865
+
866
  $sql = "
867
+ SELECT COUNT(c.id) count,
868
+ c.page post_id,
869
+ p.post_title post,
870
+ t.name tag_cat_name,
871
+ t.slug tag_cat_slug,
872
+ x.taxonomy tax
873
+ FROM ".CPD_C_TABLE." c
874
+ LEFT JOIN ".$wpdb->posts." p
875
+ ON p.id = c.page
876
+ LEFT JOIN ".$wpdb->terms." t
877
+ ON t.term_id = 0 - c.page
878
+ LEFT JOIN ".$wpdb->term_taxonomy." x
879
+ ON x.term_id = t.term_id
880
+ WHERE c.page
881
+ GROUP BY c.page
882
+ ORDER BY count DESC";
883
+ if ( $limit > 0 )
884
+ $sql .= " LIMIT ".$limit;
885
+ $r = $this->getUserPer_SQL( $sql, 'getUserPerPost', $frontend );
886
+ if ($frontend)
887
+ return $r;
888
+ else
889
+ echo $r;
890
  }
891
 
892
  /**
893
  * shows counter start, first day or given value
894
  */
895
+ function getFirstCount( $frontend = false )
896
  {
897
  global $wp_locale;
898
  if (!empty($this->options['startdate']))
899
+ $c = mysql2date(get_option('date_format'), $this->options['startdate'] );
900
+ else
901
+ {
902
+ $res = $this->getQuery("SELECT date FROM ".CPD_C_TABLE." ORDER BY date LIMIT 1", 'getFirstCount');
903
+ $row = mysql_fetch_row($res);
904
+ $c = mysql2date(get_option('date_format'), $row[0] );
905
+ }
906
+ if ($frontend)
907
+ return $c;
908
  else
909
+ echo $c;
 
 
910
  }
911
 
912
  /**
913
  * shows averaged visitors per day
914
  * @param integer $days days to calc
915
  */
916
+ function getUserPerDay( $days = 0, $frontend = false )
917
  {
918
  global $wpdb;
919
  $datemax = date_i18n('Y-m-d');
922
  $datemin = date_i18n('Y-m-d', current_time('timestamp') - ($days + 1) * 86400);
923
  else
924
  {
925
+ $v = $wpdb->get_results('SELECT MIN(date) min, MAX(date) max FROM '.CPD_C_TABLE);
926
+ foreach ($v as $row)
927
+ {
928
+ $min = strtotime($row->min);
929
+ $max = strtotime($row->max);
930
+ $days = (($max - $min) / 86400 + 1);
931
+ $datemin = 0;
932
+ }
933
  }
934
+
935
+ $res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date > '$datemin' AND date < '$datemax' GROUP BY ip, date", 'getUserPerDay');
936
+ $count = @mysql_num_rows($res) / $days;
937
 
938
+ $c = '<abbr title="last '.$days.' days without today">';
939
  if ( $count < 5 )
940
+ $c .= number_format($count, 2);
941
  else
942
+ $c .= number_format($count, 0);
943
+ $c .= '</abbr>';
944
+
945
+ if ($frontend)
946
+ return $c;
947
+ else
948
+ echo $c;
949
  }
950
 
951
  /**
952
  * shows most visited pages in last days
953
  * @param integer $days days to calc (last days)
954
  * @param integer $limit count of posts (last posts)
 
955
  */
956
+ function getMostVisitedPosts( $days = 0, $limit = 0, $frontend = false )
957
  {
958
  global $wpdb;
959
  if ( $days == 0 )
961
  if ( $limit == 0 )
962
  $limit = $this->options['dashboard_last_posts'];
963
  $date = date_i18n('Y-m-d', current_time('timestamp') - 86400 * $days);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
964
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
965
  $sql = "
966
  SELECT COUNT(c.id) count,
967
+ c.page post_id,
968
+ p.post_title post,
969
+ t.name tag_cat_name,
970
+ t.slug tag_cat_slug,
971
+ x.taxonomy tax
972
+ FROM ".CPD_C_TABLE." c
973
+ LEFT JOIN ".$wpdb->posts." p
974
+ ON p.id = c.page
975
+ LEFT JOIN ".$wpdb->terms." t
976
+ ON t.term_id = 0 - c.page
977
+ LEFT JOIN ".$wpdb->term_taxonomy." x
978
+ ON x.term_id = t.term_id
979
  WHERE c.date >= '$date'
 
980
  GROUP BY c.page
981
  ORDER BY count DESC
982
  LIMIT $limit";
983
+ $r = '<small>'.sprintf(__('The %s most visited posts in last %s days:', 'cpd'), $limit, $days).'<br/>&nbsp;</small>';
984
+ $r .= $this->getUserPer_SQL( $sql, 'getMostVisitedPosts', $frontend );
985
+ if ($frontend)
986
+ return $r;
 
 
 
 
 
 
 
 
 
987
  else
988
+ echo $r;
989
  }
990
 
991
  /**
995
  * @param boolean $show_form show form for date selection
996
  * @param boolean $show_notes show button to add notes in form
997
  */
998
+ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_notes = true, $frontend = false )
999
  {
1000
+ global $wpdb, $cpd_path, $table_prefix, $userdata;
1001
  if (!empty($_POST['daytoshow']))
1002
  $date = $_POST['daytoshow'];
1003
  else if (!empty($_GET['daytoshow']))
1008
  $limit = $this->options['dashboard_last_posts'];
1009
 
1010
  // get note
1011
+ $notes = $wpdb->get_results("SELECT * FROM ".$table_prefix."cpd_notes WHERE date = '$date'", ARRAY_A);
1012
+ if ( $notes )
1013
+ $note = $notes[0]['note'];
1014
+
1015
+ $sql = "
1016
+ SELECT COUNT(c.id) count,
1017
+ c.page post_id,
1018
+ p.post_title post,
1019
+ t.name tag_cat_name,
1020
+ t.slug tag_cat_slug,
1021
+ x.taxonomy tax
1022
+ FROM ".CPD_C_TABLE." c
1023
+ LEFT JOIN ".$wpdb->posts." p
1024
+ ON p.id = c.page
1025
+ LEFT JOIN ".$wpdb->terms." t
1026
+ ON t.term_id = 0 - c.page
1027
+ LEFT JOIN ".$wpdb->term_taxonomy." x
1028
+ ON x.term_id = t.term_id
1029
+ WHERE c.date = '$date'
1030
+ GROUP BY c.page
1031
+ ORDER BY count DESC
1032
+ LIMIT $limit";
1033
+
1034
+ if ( $show_form )
 
 
 
1035
  {
1036
  echo '<form action="" method="post">
1037
+ <input name="daytoshow" value="'.$date.'" size="10" />
1038
  <input type="submit" name="showday" value="'.__('Show').'" class="button" />';
1039
  if ( $show_notes )
1040
  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> ';
1041
  echo '</form>';
1042
  }
1043
+
1044
+ if ( isset($note) )
1045
+ echo '<p style="background:#eee; padding:2px;">'.$note.'</p>';
1046
+
1047
  $r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend );
1048
+
1049
+ if ($frontend)
1050
+ return $r;
1051
+ else
1052
+ echo $r;
1053
  }
1054
 
1055
  /**
1056
  * shows little browser statistics
1057
  */
1058
+ function getClients( $frontend = false )
1059
  {
1060
  global $wpdb;
1061
+ // $clients = array('Firefox', 'MSIE', 'Chrome', 'AppleWebKit', 'Opera');
1062
  $c_string = $this->options['clients'];
1063
  $clients = explode(',', $c_string);
1064
 
1065
+ $res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE, 'getClients_all');
1066
+ $row = @mysql_fetch_row($res);
1067
+ $all = max(1, $row[0]);
 
1068
  $rest = 100;
1069
  $r = '<ul id="cpd_clients" class="cpd_front_list">';
1070
  foreach ($clients as $c)
1071
  {
1072
  $c = trim($c);
1073
+ $res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE." WHERE client like '%".$c."%'", 'getClients_'.$c);
1074
+ $row = @mysql_fetch_row($res);
1075
+ $percent = number_format(100 * $row[0] / $all, 0);
1076
  $rest -= $percent;
1077
+ $r .= '<li class="cpd-client-logo cpd-client-'.strtolower($c).'">'.$c.'<b>'.$percent.' %</b></li>';
1078
  }
1079
  if ( $rest > 0 )
1080
+ $r .= '<li>'.__('Other', 'cpd').'<b>'.$rest.' %</b></li>';
1081
  $r .= '</ul>';
1082
+ if ($frontend)
1083
+ return $r;
1084
+ else
1085
+ echo $r;
1086
  }
1087
 
1088
+
1089
  /**
1090
+ * shows top referers
1091
  */
1092
+ function getReferers( $limit = 0, $frontend = false )
1093
  {
1094
  global $wpdb;
1095
  if ( $limit == 0 )
1096
+ $limit = $this->options['dashboard_last_posts'];
 
 
1097
 
1098
  // local url filter
1099
+ $localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%' ";
1100
+ $res = $this->getQuery("SELECT COUNT(*) count, referer FROM ".CPD_C_TABLE." WHERE referer > '' $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers');
1101
+
1102
+ $r = '<ul id="cpd_referers" class="cpd_front_list">';
1103
+ if ( @mysql_num_rows($res) )
1104
+ while ( $row = mysql_fetch_array($res) )
 
 
1105
  {
1106
+ $ref2 = str_replace('http://', '', $row['referer']);
1107
+ $r .= '<li><a href="'.$row['referer'].'">'.$ref2.'</a><b>'.$row['count'].'</b></li>';
 
1108
  }
1109
  $r .= '</ul>';
1110
+
1111
+ if ($frontend)
1112
+ return $r;
1113
+ else
1114
+ echo $r;
1115
  }
1116
 
1117
+ // end of statistic functions
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
 
1119
  /**
1120
+ * gets mass bots
1121
+ * @param int $limit only show IP if more than x page views per day
1122
  */
1123
+ function getMassBots( $limit = 0 )
1124
  {
1125
+ if ( $limit == 0 )
1126
+ $limit = 50;
1127
+
1128
  $sql = "
1129
+ SELECT t.id, t.ip AS longip, INET_NTOA(t.ip) AS ip, t.date, t.posts,
1130
+ c.client
1131
+ FROM ( SELECT id, ip, date, count(*) posts
1132
+ FROM ".CPD_C_TABLE."
1133
+ GROUP BY ip, date
1134
+ ORDER BY posts DESC ) AS t
1135
+ LEFT JOIN ".CPD_C_TABLE." c
1136
+ ON c.id = t.id
1137
+ WHERE posts > $limit";
1138
+ return $this->getQuery($sql, 'getMassBots');
 
 
 
 
 
1139
  }
1140
 
1141
  /**
1144
  * @param string $name function name for debug
1145
  * @param boolean $frontend limit function on frontend
1146
  */
1147
+ function getUserPer_SQL( $sql, $name = '', $frontend = false )
1148
  {
1149
+ global $userdata;
1150
+ $m = $this->getQuery($sql, $name);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1151
  $r = '<ul class="cpd_front_list">';
1152
+ while ( $row = mysql_fetch_assoc($m) )
1153
  {
1154
+ $r .= '<li><b>'.$row['count'].'</b>';
1155
  // link only for editors in backend
1156
+ if ( isset($userdata->user_level) && intval($userdata->user_level) >= 7 && !$frontend)
 
1157
  {
1158
+ if ( $row['post_id'] > 0 )
1159
+ $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> '
1160
+ .'<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> ';
1161
  else
1162
+ $r .= '<img src="'.$this->getResource('cpd_trans.png').'" alt="" style="width:25px;height:12px;" /> ';
1163
  }
1164
 
1165
  $r .= '<a href="'.get_bloginfo('url');
1166
+ if ( $row['post_id'] < 0 && $row['tax'] == 'category' )
1167
  //category
1168
+ $r .= '?cat='.abs($row['post_id']).'">- '.$row['tag_cat_name'].' ('.__('Category').') -';
1169
+ else if ( $row['post_id'] < 0 )
1170
  // tag
1171
+ $r .= '?tag='.$row['tag_cat_slug'].'">- '.$row['tag_cat_name'].' ('.__('Tag').') -';
1172
+ else if ( $row['post_id'] == 0 )
1173
  // homepage
1174
  $r .= '">- '.__('Front page displays').' -';
1175
  else
1176
+ {
1177
  // post/page
1178
+ $postname = $row['post'];
1179
+ if ( empty($postname) )
1180
+ $postname = '---';
1181
+ $r .= '?p='.$row['post_id'].'">'.$postname;
1182
+ }
1183
  $r .= '</a>';
1184
 
1185
+ $r .= '</li>'."\n";
1186
  }
1187
  $r .= '</ul>';
1188
+
1189
  return $r;
1190
  }
1191
 
1192
+ /**
1193
+ * deletes spam in table, if you add new bot pattern you can clean the db
1194
+ */
1195
+ function cleanDB()
1196
+ {
1197
+ global $wpdb;
1198
+
1199
+ // get trimed bot array
1200
+ function trim_value(&$value) { $value = trim($value); }
1201
+ $bots = explode( "\n", $this->options['bots'] );
1202
+ array_walk($bots, 'trim_value');
1203
+
1204
+ $rows_before = $wpdb->get_var('SELECT COUNT(*) FROM '.CPD_C_TABLE);
1205
+
1206
+ // delete by ip
1207
+ foreach( $bots as $ip )
1208
+ if ( ip2long($ip) !== false )
1209
+ $this->getQuery('DELETE FROM '.CPD_C_TABLE.' WHERE INET_NTOA(ip) LIKE \''.$ip.'%\'', 'clenaDB_ip');
1210
+
1211
+ // delete by client
1212
+ foreach ($bots as $bot)
1213
+ $this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE client LIKE '%$bot%'", 'cleanDB_client');
1214
+
1215
+ // delete if a previously countered page was deleted
1216
+ $this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE page NOT IN ( SELECT id FROM ".$wpdb->posts.") AND page > 0", 'cleanDB_delPosts');
1217
+
1218
+ $rows_after = $wpdb->get_var('SELECT COUNT(*) FROM '.CPD_C_TABLE);
1219
+ return $rows_before - $rows_after;
1220
+ }
1221
+
1222
+ /**
1223
+ * adds menu entry to backend
1224
+ * @param string $content WP-"Content"
1225
+ */
1226
+ function menu($content)
1227
+ {
1228
+ global $cpd_dir_name;
1229
+ if (function_exists('add_options_page'))
1230
+ {
1231
+ $menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" style="width:9px;height:12px;" /> Count per Day';
1232
+ add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
1233
+ }
1234
+ }
1235
+
1236
+ /**
1237
+ * adds an "settings" link to the plugins page
1238
+ */
1239
+ function pluginActions($links, $file)
1240
+ {
1241
+ global $cpd_dir_name;
1242
+ if( $file == $cpd_dir_name.'/counter.php'
1243
+ && strpos( $_SERVER['SCRIPT_NAME'], '/network/') === false ) // not on network plugin page
1244
+ {
1245
+ $link = '<a href="options-general.php?page='.$cpd_dir_name.'/counter-options.php">'.__('Settings').'</a>';
1246
+ array_unshift( $links, $link );
1247
+ }
1248
+ return $links;
1249
+ }
1250
+
1251
  /**
1252
  * creates the little widget on dashboard
1253
  */
1260
  echo '</b> '.__('Visitors per day', 'cpd');
1261
  }
1262
 
1263
+ /**
1264
+ * adds widget to dashboard page
1265
+ */
1266
+ function dashboardWidgetSetup()
1267
+ {
1268
+ wp_add_dashboard_widget( 'cpdDashboardWidget', 'Count per Day', array(&$this,'dashboardWidget') );
1269
+ }
1270
+
1271
+ /**
1272
+ * combines the options to one array, update from previous versions
1273
+ */
1274
+ function updateOptions()
1275
+ {
1276
+ global $cpd_version;
1277
+
1278
+ $o = get_option('count_per_day', '');
1279
+ if ( empty($o) )
1280
+ {
1281
+ $onlinetime = get_option('cpd_onlinetime', 300);
1282
+ $user = get_option('cpd_user', 0);
1283
+ $autocount = get_option('cpd_autocount', 1);
1284
+ $bots = get_option('cpd_bots', "bot\nspider\nsearch\ncrawler\nask.com\nvalidator\nsnoopy\nsuchen.de\nsuchbaer.de\nshelob\nsemager\nxenu\nsuch_de\nia_archiver\nMicrosoft URL Control\nnetluchs");
1285
+
1286
+ $o = array(
1287
+ 'version' => $cpd_version,
1288
+ 'onlinetime' => $onlinetime,
1289
+ 'user' => $user,
1290
+ 'autocount' => $autocount,
1291
+ 'bots' => $bots
1292
+ );
1293
+ add_option('count_per_day', $o);
1294
+
1295
+ // delete all old options
1296
+ delete_option('cpd_cdb_version');
1297
+ delete_option('cpd_codb_version');
1298
+ delete_option('cpd_onlinetime');
1299
+ delete_option('cpd_user');
1300
+ delete_option('cpd_autocount');
1301
+ delete_option('cpd_bots');
1302
+ }
1303
+
1304
+ // set all default values, delete old options
1305
+ $onew = array(
1306
+ 'version' => $cpd_version,
1307
+ 'onlinetime' => (isset($o['onlinetime'])) ? $o['onlinetime'] : 300,
1308
+ 'user' => (isset($o['user'])) ? $o['user'] : 0,
1309
+ 'user_level' => (isset($o['user_level'])) ? $o['user_level'] : 0,
1310
+ 'autocount' => (isset($o['autocount'])) ? $o['autocount'] : 1,
1311
+ 'bots' => (isset($o['bots'])) ? $o['bots'] : '',
1312
+ 'dashboard_posts' => (isset($o['dashboard_posts'])) ? $o['dashboard_posts'] : 20,
1313
+ 'dashboard_last_posts' => (isset($o['dashboard_last_posts'])) ? $o['dashboard_last_posts'] : 20,
1314
+ 'dashboard_last_days' => (isset($o['dashboard_last_days'])) ? $o['dashboard_last_days'] : 7,
1315
+ 'show_in_lists' => (isset($o['show_in_lists'])) ? $o['show_in_lists'] : 1,
1316
+ 'chart_days' => (isset($o['chart_days'])) ? $o['chart_days'] : 60,
1317
+ 'chart_height' => (isset($o['chart_height'])) ? $o['chart_height'] : 100,
1318
+ 'countries' => (isset($o['countries'])) ? $o['countries'] : 20,
1319
+ 'startdate' => (isset($o['startdate'])) ? $o['startdate'] : '',
1320
+ 'startcount' => (isset($o['startcount'])) ? $o['startcount'] : '',
1321
+ 'startreads' => (isset($o['startreads'])) ? $o['startreads'] : '',
1322
+ 'anoip' => (isset($o['anoip'])) ? $o['anoip'] : 0,
1323
+ 'massbotlimit' => (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25,
1324
+ 'clients' => (isset($o['clients'])) ? $o['clients'] : 'Firefox, MSIE, Chrome, AppleWebKit, Opera',
1325
+ 'ajax' => (isset($o['ajax'])) ? $o['ajax'] : 0,
1326
+ 'debug' => (isset($o['debug'])) ? $o['debug'] : 0,
1327
+ 'referers' => (isset($o['referers'])) ? $o['referers'] : 1
1328
+ );
1329
+ update_option('count_per_day', $onew);
1330
+ }
1331
+
1332
+ /**
1333
+ * add counter column to page/post lists
1334
+ */
1335
+ function cpdColumn($defaults)
1336
+ {
1337
+ if ( $this->options['show_in_lists'] )
1338
+ $defaults['cpd_reads'] = '<img src="'.$this->GetResource('cpd_menu.gif').'" alt="'.__('Reads', 'cpd').'" title="'.__('Reads', 'cpd').'" style="width:9px;height:12px;" />';
1339
+ return $defaults;
1340
+ }
1341
+
1342
+ /**
1343
+ * adds content to the counter column
1344
+ */
1345
+ function cpdColumnContent($column_name, $id = 0)
1346
+ {
1347
+ global $wpdb;
1348
+ if( $column_name == 'cpd_reads' )
1349
+ {
1350
+ $res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$id'", 'cpdColumn_'.$id);
1351
+ $row = mysql_fetch_row($res);
1352
+ echo (int) $row[0];
1353
+ }
1354
+ }
1355
+
1356
+
1357
+ /**
1358
+ * activation when adding a new blog
1359
+ */
1360
+ //add_action( 'wpmu_new_blog', 'new_blog', 10, 6);
1361
+ //
1362
+ //function new_blog($blog_id, $user_id, $domain, $path, $site_id, $meta ) {
1363
+ // global $wpdb;
1364
+ //
1365
+ // if (is_plugin_active_for_network('shiba-custom-background/shiba-custom-background.php')) {
1366
+ // $old_blog = $wpdb->blogid;
1367
+ // switch_to_blog($blog_id);
1368
+ // $this->_shiba_activate();
1369
+ // switch_to_blog($old_blog);
1370
+ // }
1371
+ //}
1372
+
1373
+
1374
+ /**
1375
+ * gets image recource with given name
1376
+ */
1377
+ function getResource( $r )
1378
+ {
1379
+ return trailingslashit( $this->dir ).'img/'.$r;
1380
+ }
1381
+
1382
+ /**
1383
+ * sets columns on dashboard page
1384
+ */
1385
+ function screenLayoutColumns($columns, $screen)
1386
+ {
1387
+ if ($screen == $this->pagehook)
1388
+ $columns[$this->pagehook] = 4;
1389
+ return $columns;
1390
+ }
1391
+
1392
+ /**
1393
+ * extends the admin menu
1394
+ */
1395
+ function setAdminMenu()
1396
+ {
1397
+ $menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
1398
+ $this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, 1, CPD_METABOX, array(&$this, 'onShowPage'));
1399
+ add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
1400
+ }
1401
+
1402
+ /**
1403
+ * backlink to Plugin homepage
1404
+ */
1405
+ function cpdInfo()
1406
+ {
1407
+ global $cpd_version;
1408
+
1409
+ $t = '<span style="white-space:nowrap">'.date_i18n('Y-m-d H:i').'</span>';
1410
+ echo '<p>Count per Day: <code>'.$cpd_version.'</code><br/>';
1411
+ printf(__('Time for Count per Day: <code>%s</code>.', 'cpd'), $t);
1412
+ echo '<br />'.__('Bug? Problem? Question? Hint? Praise?', 'cpd').' ';
1413
+ printf(__('Write a comment on the <a href="%s">plugin page</a>.', 'cpd'), 'http://www.tomsdimension.de/wp-plugins/count-per-day');
1414
+ echo '<br />'.__('License').': <a href="http://www.tomsdimension.de/postcards">Postcardware :)</a>';
1415
+ 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>';
1416
+ echo '</p>';
1417
+ }
1418
+
1419
+ /**
1420
+ * function calls from metabox default parameters
1421
+ */
1422
+ function getMostVisitedPostsMeta() { $this->getMostVisitedPosts(); }
1423
+ function getUserPerPostMeta() { $this->getUserPerPost(); }
1424
+ function getVisitedPostsOnDayMeta() { $this->getVisitedPostsOnDay( 0, 100); }
1425
+ function dashboardChartMeta() { $this->dashboardChart( 0, false); }
1426
+ function dashboardChartVisitorsMeta() { $this->dashboardChartVisitors( 0, false); }
1427
+ function getCountriesMeta() { $this->getCountries(0, false); }
1428
+ function getCountriesVisitorsMeta() { $this->getCountries(0, false, true); }
1429
+ function getReferersMeta() { $this->getReferers(0, false); }
1430
+
1431
+ /**
1432
+ * will be executed if wordpress core detects this page has to be rendered
1433
+ */
1434
+ function onLoadPage()
1435
+ {
1436
+ global $cpd_geoip;
1437
+ // needed javascripts
1438
+ wp_enqueue_script('common');
1439
+ wp_enqueue_script('wp-lists');
1440
+ wp_enqueue_script('postbox');
1441
+
1442
+ // add the metaboxes
1443
+ add_meta_box('reads_at_all', __('Total visitors', 'cpd'), array(&$this, 'dashboardReadsAtAll'), $this->pagehook, 'cpdrow1', 'core');
1444
+ add_meta_box('chart_visitors', __('Visitors per day', 'cpd'), array(&$this, 'dashboardChartVisitorsMeta'), $this->pagehook, 'cpdrow1', 'default');
1445
+ add_meta_box('chart_reads', __('Reads per day', 'cpd'), array(&$this, 'dashboardChartMeta'), $this->pagehook, 'cpdrow1', 'default');
1446
+ add_meta_box('user_per_month', __('Visitors per month', 'cpd'), array(&$this, 'getUserPerMonth'), $this->pagehook, 'cpdrow2', 'default');
1447
+ add_meta_box('reads_per_month', __('Reads per month', 'cpd'), array(&$this, 'getReadsPerMonth'), $this->pagehook, 'cpdrow3', 'default');
1448
+ add_meta_box('reads_per_post', __('Visitors per post', 'cpd'), array(&$this, 'getUserPerPostMeta'), $this->pagehook, 'cpdrow3', 'default');
1449
+ add_meta_box('last_reads', __('Latest Counts', 'cpd'), array(&$this, 'getMostVisitedPostsMeta'), $this->pagehook, 'cpdrow4', 'default');
1450
+ add_meta_box('day_reads', __('Visitors per day', 'cpd'), array(&$this, 'getVisitedPostsOnDayMeta'), $this->pagehook, 'cpdrow4', 'default');
1451
+ add_meta_box('cpd_info', __('Plugin'), array(&$this, 'cpdInfo'), $this->pagehook, 'cpdrow1', 'low');
1452
+
1453
+ if ( $this->options['referers'] )
1454
+ {
1455
+ add_meta_box('browsers', __('Browsers', 'cpd'), array(&$this, 'getClients'), $this->pagehook, 'cpdrow2', 'default');
1456
+ add_meta_box('referers', __('Referer', 'cpd'), array(&$this, 'getReferersMeta'), $this->pagehook, 'cpdrow3', 'default');
1457
+ }
1458
+
1459
+ // countries with GeoIP addon only
1460
+ if ( $cpd_geoip )
1461
+ {
1462
+ add_meta_box('countries', __('Reads per Country', 'cpd'), array(&$this, 'getCountriesMeta'), $this->pagehook, 'cpdrow2', 'default');
1463
+ add_meta_box('countries2', __('Visitors per Country', 'cpd'), array(&$this, 'getCountriesVisitorsMeta'), $this->pagehook, 'cpdrow2', 'default');
1464
+ }
1465
+ }
1466
+
1467
+ /**
1468
+ * creates dashboard page
1469
+ */
1470
+ function onShowPage()
1471
+ {
1472
+ global $screen_layout_columns, $count_per_day;
1473
+ if ( empty($screen_layout_columns) )
1474
+ $screen_layout_columns = 4;
1475
+ $data = '';
1476
+ ?>
1477
+ <div id="cpd-metaboxes" class="wrap">
1478
+ <h2><img src="<?php echo $this->getResource('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day - <?php _e('Statistics', 'cpd') ?></h2>
1479
+ <?php
1480
+ wp_nonce_field('cpd-metaboxes');
1481
+ wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false );
1482
+ wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false );
1483
+ $css = 'style="width:'.round(98 / $screen_layout_columns, 1).'%;"';
1484
+ ?>
1485
+ <div id="dashboard-widgets" class="metabox-holder cpd-dashboard">
1486
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow1', $data); ?></div>
1487
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow2', $data); ?></div>
1488
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow3', $data); ?></div>
1489
+ <div class="postbox-container" <?php echo $css; ?>><?php do_meta_boxes($this->pagehook, 'cpdrow4', $data); ?></div>
1490
+ <br class="clear"/>
1491
+ </div>
1492
+ </div>
1493
+ <script type="text/javascript">
1494
+ //<![CDATA[
1495
+ jQuery(document).ready( function($) {
1496
+ $('.if-js-closed').removeClass('if-js-closed').addClass('closed');
1497
+ postboxes.add_postbox_toggles('<?php echo $this->pagehook; ?>');
1498
+ });
1499
+ //]]>
1500
+ </script>
1501
+ <?php
1502
+ }
1503
+
1504
  /**
1505
  * gets country flags and page views
1506
  * @param integer $limit count of countries
1507
  * @param boolean $frontend limit function on frontend
1508
  * @param boolean $visitors show visitors insteed of reads
1509
  */
1510
+ function getCountries( $limit = 0, $frontend, $visitors = false )
1511
  {
1512
+ global $cpd_path, $cpd_geoip;
1513
  $c = '';
1514
 
1515
  // with GeoIP addon only
1516
  if ( $cpd_geoip )
1517
  {
1518
+ $gi = geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
1519
+ $geoip = new GeoIP();
1520
  if ( $limit == 0 )
1521
  $limit = max( 0, $this->options['countries'] );
1522
 
1523
+ if ( $visitors )
1524
+ // visitors
1525
+ $res = $this->getQuery("
1526
+ SELECT country, COUNT(*) c
1527
+ FROM ( SELECT country, ip, COUNT(*) c
1528
+ FROM ".CPD_C_TABLE."
1529
+ WHERE ip > 0
1530
+ GROUP BY country, ip ) as t
1531
+ GROUP BY country
1532
+ ORDER BY c desc
1533
+ LIMIT $limit", 'getCountries');
1534
+ else
1535
+ // reads
1536
+ $res = $this->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE ip > 0 GROUP BY country ORDER BY c DESC LIMIT $limit", 'getCountries');
1537
+
1538
  // map link
1539
  if (!$frontend && file_exists($cpd_path.'map/map.php') )
1540
  {
1545
  $c .= 'reads';
1546
  $c .= '&amp;KeepThis=true&amp;TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
1547
  }
 
 
1548
 
1549
+ if ( @mysql_num_rows($res) )
 
 
1550
  {
1551
+ $c .= '<ul class="cpd_front_list">';
1552
+ while ( $r = mysql_fetch_array($res) )
 
 
1553
  {
1554
+ $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($r['country'])];
1555
+ if ( empty($id) )
1556
+ {
1557
+ $name = '???';
1558
+ $r['country'] = 'unknown';
1559
+ }
1560
+ else
1561
+ $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
1562
+ $c .= '<li><b>'.$r['c'].'</b>
1563
+ <div class="cpd-flag cpd-flag-'.$r['country'].'"></div> '
1564
+ .$name.'&nbsp;</li>'."\n";
1565
  }
1566
+ $c .= '</ul>';
 
 
1567
  }
 
1568
  }
1569
+ if ($frontend)
1570
+ return $c;
1571
+ else
1572
+ echo $c;
1573
  }
1574
 
1575
  /**
1576
+ * adds some shortcodes to use functions in frontend
 
 
 
 
1577
  */
1578
+ function addShortcodes()
1579
+ {
1580
+ add_shortcode('CPD_READS_THIS', array( &$this, 'shortShow'));
1581
+ add_shortcode('CPD_READS_TOTAL', array( &$this, 'shortReadsTotal'));
1582
+ add_shortcode('CPD_READS_TODAY', array( &$this, 'shortReadsToday'));
1583
+ add_shortcode('CPD_READS_YESTERDAY', array( &$this, 'shortReadsYesterday'));
1584
+ add_shortcode('CPD_READS_LAST_WEEK', array( &$this, 'shortReadsLastWeek'));
1585
+ add_shortcode('CPD_READS_PER_MONTH', array( &$this, 'shortReadsPerMonth'));
1586
+ add_shortcode('CPD_VISITORS_TOTAL', array( &$this, 'shortUserAll'));
1587
+ add_shortcode('CPD_VISITORS_ONLINE', array( &$this, 'shortUserOnline'));
1588
+ add_shortcode('CPD_VISITORS_TODAY', array( &$this, 'shortUserToday'));
1589
+ add_shortcode('CPD_VISITORS_YESTERDAY', array( &$this, 'shortUserYesterday'));
1590
+ add_shortcode('CPD_VISITORS_LAST_WEEK', array( &$this, 'shortUserLastWeek'));
1591
+ add_shortcode('CPD_VISITORS_PER_DAY', array( &$this, 'shortUserPerDay'));
1592
+ add_shortcode('CPD_FIRST_COUNT', array( &$this, 'shortFirstCount'));
1593
+ add_shortcode('CPD_CLIENTS', array( &$this, 'shortClients'));
1594
+ add_shortcode('CPD_READS_CHART', array( &$this, 'shortChartReads'));
1595
+ add_shortcode('CPD_VISITORS_CHART', array( &$this, 'shortChartVisitors'));
1596
+ add_shortcode('CPD_VISITORS_PER_MONTH', array( &$this, 'shortUserPerMonth'));
1597
+ add_shortcode('CPD_VISITORS_PER_POST', array( &$this, 'shortUserPerPost'));
1598
+ add_shortcode('CPD_COUNTRIES', array( &$this, 'shortCountries'));
1599
+ add_shortcode('CPD_MOST_VISITED_POSTS', array( &$this, 'shortMostVisitedPosts'));
1600
+ add_shortcode('CPD_REFERERS', array( &$this, 'shortReferers'));
1601
+ add_shortcode('CPD_POSTS_ON_DAY', array( &$this, 'shortPostsOnDay'));
1602
+ }
1603
+ function shortShow() { return $this->show('', '', false, false); }
1604
+ function shortReadsTotal() { return $this->getReadsAll(true); }
1605
+ function shortReadsToday() { return $this->getReadsToday(true); }
1606
+ function shortReadsYesterday() { return $this->getReadsYesterday(true); }
1607
+ function shortReadsLastWeek() { return $this->getReadsLastWeek(true); }
1608
+ function shortReadsPerMonth() { return $this->getReadsPerMonth(true); }
1609
+ function shortUserAll() { return $this->getUserAll(true); }
1610
+ function shortUserOnline() { return $this->getUserOnline(true); }
1611
+ function shortUserToday() { return $this->getUserToday(true); }
1612
+ function shortUserYesterday() { return $this->getUserYesterday(true); }
1613
+ function shortUserLastWeek() { return $this->getUserLastWeek(true); }
1614
+ function shortUserPerDay() { return $this->getUserPerDay($this->options['dashboard_last_days'], true); }
1615
+ function shortFirstCount() { return $this->getFirstCount(true); }
1616
+ function shortClients() { return $this->getClients(true); }
1617
+ function shortChartReads() { return '<div class="cpd_front_chart">'.$this->dashboardChart(0, true).'</div>'; }
1618
+ function shortChartVisitors() { return '<div class="cpd_front_chart">'.$this->dashboardChartVisitors(0, true).'</div>'; }
1619
+ function shortUserPerMonth() { return $this->getUserPerMonth(true); }
1620
+ function shortUserPerPost() { return $this->getUserPerPost(0, true); }
1621
+ function shortCountries() { return $this->getCountries(0, true); }
1622
+ function shortMostVisitedPosts(){ return $this->getMostVisitedPosts(0, 0, true); }
1623
+ function shortReferers() { return $this->getReferers(0, true); }
1624
+ function shortPostsOnDay( $atts )
1625
  {
1626
+ extract( shortcode_atts( array(
1627
+ 'date' => 0,
1628
+ 'limit' => 0
1629
+ ), $atts) );
1630
+ return $this->getVisitedPostsOnDay( $date, $limit, false, false, true );
1631
+ }
1632
+
1633
+ /**
1634
+ * adds style sheet to admin header
1635
+ */
1636
+ function addCss()
1637
+ {
1638
+ global $text_direction;
1639
+ echo "\n".'<link rel="stylesheet" href="'.$this->dir.'/counter.css" type="text/css" />'."\n";
1640
+ if ( $text_direction == 'rtl' )
1641
+ echo '<link rel="stylesheet" href="'.$this->dir.'/counter-rtl.css" type="text/css" />'."\n";
1642
+ // thickbox style here because add_thickbox() breaks RTL in he_IL
1643
+ if ( strpos($_SERVER['SCRIPT_NAME'], '/wp-admin/') !== false )
1644
+ echo '<link rel="stylesheet" href="'.get_bloginfo('wpurl').'/wp-includes/js/thickbox/thickbox.css" type="text/css" />'."\n";
1645
+ }
1646
+
1647
+ /**
1648
+ * adds ajax script to count cached posts
1649
+ */
1650
+ function addAjaxScript()
1651
+ {
1652
+ $this->getPostID();
1653
+ echo <<< JSEND
1654
+ <script type="text/javascript">
1655
+ // Count per Day
1656
+ //<![CDATA[
1657
+ jQuery(document).ready( function($)
1658
+ {
1659
+ jQuery.get('{$this->dir}/ajax.php?f=count&page={$this->page}', function(text)
1660
+ {
1661
+ var d = text.split('|');
1662
+ for(var i = 0; i < d.length; i++)
1663
+ {
1664
+ var v = d[i].split('===');
1665
+ document.getElementById('cpd_number_'+v[1]).innerHTML = v[0];
1666
+ }
1667
+ });
1668
+ } );
1669
+ //]]>
1670
+ </script>
1671
+ JSEND;
1672
+ }
1673
+
1674
+ /**
1675
+ * shows time of queries
1676
+ */
1677
+ function showQueries()
1678
+ {
1679
+ global $cpd_path, $cpd_version;
1680
+ echo '<div style="margin:10px; padding-left:30px; border:1px red solid">
1681
+ <b>Count per Day - DEBUG: '.$this->queries[0].' s</b><ol>';
1682
+ echo '<li>'
1683
+ .'<b>Server:</b> '.$_SERVER['SERVER_SOFTWARE'].'<br/>'
1684
+ .'<b>PHP:</b> '.phpversion().'<br/>'
1685
+ .'<b>mySQL Server:</b> '.mysql_get_server_info().'<br/>'
1686
+ .'<b>mySQL Client:</b> '.mysql_get_client_info().'<br/>'
1687
+ .'<b>WordPress:</b> '.get_bloginfo('version').'<br/>'
1688
+ .'<b>Count per Day:</b> '.$cpd_version.'<br/>'
1689
+ .'<b>Time for Count per Day:</b> '.date_i18n('Y-m-d H:i').'<br/>'
1690
+ .'<b>URL:</b> '.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'].'<br/>'
1691
+ .'<b>Referer:</b> '.$_SERVER['HTTP_REFERER']
1692
+ .'</li>';
1693
+ echo '<li><b>POST:</b><br/>';
1694
+ var_dump($_POST);
1695
+ echo '</li>';
1696
+ echo '<li><b>Tables:</b><br><b>'.CPD_C_TABLE.'</b>: ';
1697
+ $res = $this->getQuery( "SHOW FIELDS FROM `".CPD_C_TABLE."`", 'showFields' );
1698
+ while ( $col = mysql_fetch_array($res) )
1699
+ echo '<span style="color:blue">'.$col['Field'].'</span> = '.$col['Type'].' &nbsp; ';
1700
+ echo '<br/><b>'.CPD_CO_TABLE.'</b>: ';
1701
+ $res = $this->getQuery( "SHOW FIELDS FROM `".CPD_CO_TABLE."`", 'showFields' );
1702
+ while ( $col = mysql_fetch_array($res) )
1703
+ echo '<span style="color:blue">'.$col['Field'].'</span> = '.$col['Type'].' &nbsp; ';
1704
+ echo '<br/><b>'.CPD_N_TABLE.'</b>: ';
1705
+ $res = $this->getQuery( "SHOW FIELDS FROM `".CPD_N_TABLE."`", 'showFields' );
1706
+ while ( $col = mysql_fetch_array($res) )
1707
+ echo '<span style="color:blue">'.$col['Field'].'</span> = '.$col['Type'].' &nbsp; ';
1708
+ echo '</li>';
1709
+ echo '<li><b>Options:</b><br /> ';
1710
+ foreach ( $this->options as $k=>$v )
1711
+ if ( $k != 'bots') // hoster restrictions
1712
+ echo $k.' = '.$v.'<br />';
1713
+ echo '</li>';
1714
+ foreach($this->queries as $q)
1715
+ if ($q != $this->queries[0] )
1716
+ echo '<li>'.$q.'</li>';
1717
+ echo '</ol>';
1718
  ?>
1719
+ <p>GeoIP:
1720
+ d_ir=<?php echo substr(decoct(fileperms($cpd_path.'geoip/')), -3) ?>
1721
+ f_ile=<?php echo (is_file($cpd_path.'geoip/GeoIP.dat')) ? substr(decoct(fileperms($cpd_path.'geoip/GeoIP.dat')), -3) : '-'; ?>
1722
+ f_open=<?php echo (function_exists('fopen')) ? 'true' : 'false' ?>
1723
+ g_zopen=<?php echo (function_exists('gzopen')) ? 'true' : 'false' ?>
1724
+ a_llow_url_fopen=<?php echo (ini_get('allow_url_fopen')) ? 'true' : 'false' ?>
1725
+ </p>
 
 
 
 
 
 
1726
  <?php
1727
+ echo '</div>';
1728
  }
1729
 
1730
+
1731
+ /**
1732
+ * checks installation in sub blogs
1733
+ */
1734
+ function checkVersion()
1735
+ {
1736
+ global $wpdb;
1737
+
1738
+ if ( function_exists('is_multisite') && is_multisite() )
1739
+ {
1740
+ // check if it is a network activation
1741
+ if ( isset($_GET['networkwide']) && ($_GET['networkwide'] == 1) )
1742
+ {
1743
+ $old_blog = $wpdb->blogid;
1744
+ $blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs"));
1745
+ foreach ($blogids as $blog_id)
1746
+ {
1747
+ // create tables in all sub blogs
1748
+ switch_to_blog($blog_id);
1749
+ $this->createTables();
1750
+ }
1751
+ switch_to_blog($old_blog);
1752
+ return;
1753
+ }
1754
+ }
1755
+ // create tables in main blog
1756
+ $this->createTables();
1757
+ }
1758
+
1759
+ /**
1760
+ * calls widget class
1761
+ */
1762
+ function register_widgets()
1763
+ {
1764
+ register_widget('CountPerDay_Widget');
1765
+ }
1766
+
1767
+
1768
  } // class end
1769
 
1770
 
1771
 
1772
  /**
1773
+ * widget class
1774
  */
1775
  class CountPerDay_Widget extends WP_Widget
1776
  {
1777
+ var $fields = array( 'title', 'show', 'getreadsall', 'getreadstoday', 'getreadsyesterday',
1778
+ 'getuserall', 'getusertoday', 'getuseryesterday', 'getuserlastweek',
 
1779
  'getuserperday', 'getuseronline', 'getfirstcount',
1780
+ 'show_name', 'getreadsall_name', 'getreadstoday_name', 'getreadsyesterday_name',
1781
+ 'getuserall_name', 'getusertoday_name', 'getuseryesterday_name', 'getuserlastweek_name',
 
1782
  'getuserperday_name', 'getuseronline_name', 'getfirstcount_name' );
1783
+ var $cpd_funcs = array ( 'show', 'getReadsAll', 'getReadsToday', 'getReadsYesterday',
1784
+ 'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek',
 
1785
  'getUserPerDay', 'getUserOnline', 'getFirstCount' );
1786
  var $funcs;
1787
  var $names;
1788
 
1789
  // constructor
1790
  function CountPerDay_Widget() {
1791
+ $this->funcs = array_slice( $this->fields, 1, 11);
1792
+ $this->names = array_slice( $this->fields, 12, 11);
1793
  parent::WP_Widget('countperday_widget', 'Count per Day',
1794
+ array('description' => __('Statistics', 'cpd')), array('width' => 400) );
1795
  }
1796
 
1797
  // display widget
1798
+ function widget( $args, $instance)
1799
  {
1800
  global $count_per_day;
1801
 
1804
  echo $before_widget;
1805
  if ( !empty( $title ) )
1806
  echo $before_title.$title.$after_title;
1807
+
1808
  echo '<ul class="cpd">';
1809
+ foreach ( $instance as $k=>$v )
 
1810
  {
1811
+ if ( $v == 1 )
1812
  // checked only
1813
  {
1814
  if ( ($k == 'show' && is_singular()) || $k != 'show' )
1815
  {
1816
  $f = str_replace( $this->funcs, $this->cpd_funcs, $k );
1817
+ echo '<li class="cpd-l"><span id="cpd_number_'.$k.'" class="cpd-r">';
 
1818
  // parameters only for special functions
1819
  if ( $f == 'getUserPerDay' )
1820
  eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
1822
  eval('echo $count_per_day->show("","",false,false);');
1823
  else
1824
  eval('echo $count_per_day->'.$f.'();');
1825
+ echo '</span>'.$instance[$k.'_name'].':</li>';
1826
  }
1827
  }
1828
  }
1847
  {
1848
  $default = array(
1849
  'title' => 'Count per Day',
 
1850
  'show' => 0,
1851
  'getreadsall' => 0,
1852
  'getreadstoday' => 0,
1853
  'getreadsyesterday' => 0,
 
 
1854
  'getuserall' => 0,
1855
  'getusertoday' => 0,
1856
  'getuseryesterday' => 0,
 
1857
  'getuserlastweek' => 0,
1858
  'getuserperday' => 0,
1859
  'getuseronline' => 0,
1862
  'getreadsall_name' => __('Total reads', 'cpd'),
1863
  'getreadstoday_name' => __('Reads today', 'cpd'),
1864
  'getreadsyesterday_name' => __('Reads yesterday', 'cpd'),
 
 
1865
  'getuserall_name' => __('Total visitors', 'cpd'),
1866
  'getusertoday_name' => __('Visitors today', 'cpd'),
1867
  'getuseryesterday_name' => __('Visitors yesterday', 'cpd'),
1868
  'getuserlastweek_name' => __('Visitors last week', 'cpd'),
 
1869
  'getuserperday_name' => __('Visitors per day', 'cpd'),
1870
  'getuseronline_name' => __('Visitors currently online', 'cpd'),
1871
+ 'getfirstcount_name' => __('Counter starts on', 'cpd')
1872
  );
1873
  $instance = wp_parse_args( (array) $instance, $default );
1874
+
1875
+ echo '<table style="border: 1px #ddd solid;">'."\n";
1876
  // title field
1877
  $field_id = $this->get_field_id('title');
1878
  $field_name = $this->get_field_name('title');
1879
+ echo "<tr>\n";
1880
+ echo '<td colspan="2"><label for="'.$field_id.'">'.__('Title').":<label></td>\n";
1881
+ echo '<td><input type="text" class="widefat" id="'.$field_id.'" name="'.$field_name.'" value="'.attribute_escape( $instance['title'] ).'" /></td>'."\n";
1882
+ echo "</tr>\n";
 
 
 
1883
 
1884
+ $i = 1;
1885
+ foreach ( $this->funcs as $f )
1886
  {
1887
+ $check_id = $this->get_field_id( $f );
1888
+ $check_name = $this->get_field_name( $f );
1889
+ $check_status = ( !empty($instance[$f]) ) ? 'checked="checked"' : '';
1890
+
1891
+ $fl = $f.'_name';
1892
+ $label_id = $this->get_field_id( $fl );
1893
+ $label_name = $this->get_field_name( $fl );
1894
+ $label_value = esc_attr( $instance[$fl] );
1895
+
1896
+ if ( $i )
1897
+ {
1898
+ echo '<tr style="background:#eee">'."\n";
1899
+ $i = 0;
1900
+ }
1901
+ else
1902
  {
1903
+ echo "<tr>\n";
1904
+ $i = 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
1905
  }
1906
+ echo '<td><input type="checkbox" id="'.$check_id.'" name="'.$check_name.'" value="1" '.$check_status.' /></td>'."\n";
1907
+ echo '<td><label for="'.$check_id.'">'.$default[$fl].'</label></td>'."\n";
1908
+ echo '<td><input type="text" class="widefat" id="'.$label_id.'" name="'.$label_name.'" value="'.$label_value.'" style="width:200px" /></td>'."\n";
1909
+ echo "</tr>\n";
1910
  }
1911
+ echo "</table>\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1912
  }
1913
+
1914
  } // widget class
1915
 
1916
+
1917
+
1918
  /**
1919
  * uninstall function, deletes tables and options
1920
  */
1921
  function count_per_day_uninstall()
1922
  {
1923
  global $wpdb;
1924
+ $wpdb->query('DROP TABLE IF EXISTS '.CPD_C_TABLE);
1925
+ $wpdb->query('DROP TABLE IF EXISTS '.CPD_CO_TABLE);
1926
+ $wpdb->query('DROP TABLE IF EXISTS '.CPD_N_TABLE);
1927
  delete_option('count_per_day');
 
 
 
 
 
1928
  }
1929
 
1930
+
1931
+
1932
  $count_per_day = new CountPerDay();
1933
+ ?>
geoip/GeoIP.dat DELETED
Binary file
geoip/geoip.inc CHANGED
@@ -53,7 +53,7 @@ define("GEOIP_DIALUP_SPEED", 1);
53
  define("GEOIP_CABLEDSL_SPEED", 2);
54
  define("GEOIP_CORPORATE_SPEED", 3);
55
 
56
- class GeoIPCpd {
57
  var $flags;
58
  var $filehandle;
59
  var $memory_buffer;
@@ -205,7 +205,7 @@ class GeoIPCpd {
205
  );
206
  }
207
 
208
- function cpd_geoip_load_shared_mem ($file) {
209
 
210
  $fp = fopen($file, "rb");
211
  if (!$fp) {
@@ -223,7 +223,7 @@ function cpd_geoip_load_shared_mem ($file) {
223
  shmop_close ($shmid);
224
  }
225
 
226
- function cpd_setup_segments($gi){
227
  $gi->databaseType = GEOIP_COUNTRY_EDITION;
228
  $gi->record_length = STANDARD_RECORD_LENGTH;
229
  if ($gi->flags & GEOIP_SHARED_MEMORY) {
@@ -306,8 +306,8 @@ function cpd_setup_segments($gi){
306
  return $gi;
307
  }
308
 
309
- function cpd_geoip_open($filename, $flags) {
310
- $gi = new GeoIPCpD;
311
  $gi->flags = $flags;
312
  if ($gi->flags & GEOIP_SHARED_MEMORY) {
313
  $gi->shmid = @shmop_open (GEOIP_SHM_KEY, "a", 0, 0);
@@ -319,11 +319,11 @@ function cpd_geoip_open($filename, $flags) {
319
  }
320
  }
321
 
322
- $gi = cpd_setup_segments($gi);
323
  return $gi;
324
  }
325
 
326
- function cpd_geoip_close($gi) {
327
  if ($gi->flags & GEOIP_SHARED_MEMORY) {
328
  return true;
329
  }
@@ -331,43 +331,43 @@ function cpd_geoip_close($gi) {
331
  return fclose($gi->filehandle);
332
  }
333
 
334
- function cpd_geoip_country_id_by_name($gi, $name) {
335
  $addr = gethostbyname($name);
336
  if (!$addr || $addr == $name) {
337
  return false;
338
  }
339
- return cpd_geoip_country_id_by_addr($gi, $addr);
340
  }
341
 
342
- function cpd_geoip_country_code_by_name($gi, $name) {
343
- $country_id = cpd_geoip_country_id_by_name($gi,$name);
344
  if ($country_id !== false) {
345
  return $gi->GEOIP_COUNTRY_CODES[$country_id];
346
  }
347
  return false;
348
  }
349
 
350
- function cpd_geoip_country_name_by_name($gi, $name) {
351
- $country_id = cpd_geoip_country_id_by_name($gi,$name);
352
  if ($country_id !== false) {
353
  return $gi->GEOIP_COUNTRY_NAMES[$country_id];
354
  }
355
  return false;
356
  }
357
 
358
- function cpd_geoip_country_id_by_addr($gi, $addr) {
359
  $ipnum = ip2long($addr);
360
- return cpd_geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
361
  }
362
 
363
- function cpd_geoip_country_code_by_addr($gi, $addr) {
364
  if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
365
- $record = cpd_geoip_record_by_addr($gi,$addr);
366
  if ( $record !== false ) {
367
  return $record->country_code;
368
  }
369
  } else {
370
- $country_id = cpd_geoip_country_id_by_addr($gi,$addr);
371
  if ($country_id !== false) {
372
  return $gi->GEOIP_COUNTRY_CODES[$country_id];
373
  }
@@ -375,12 +375,12 @@ function cpd_geoip_country_code_by_addr($gi, $addr) {
375
  return false;
376
  }
377
 
378
- function cpd_geoip_country_name_by_addr($gi, $addr) {
379
  if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
380
- $record = cpd_geoip_record_by_addr($gi,$addr);
381
  return $record->country_name;
382
  } else {
383
- $country_id = cpd_geoip_country_id_by_addr($gi,$addr);
384
  if ($country_id !== false) {
385
  return $gi->GEOIP_COUNTRY_NAMES[$country_id];
386
  }
@@ -388,7 +388,7 @@ function cpd_geoip_country_name_by_addr($gi, $addr) {
388
  return false;
389
  }
390
 
391
- function cpd_geoip_seek_country($gi, $ipnum) {
392
  $offset = 0;
393
  for ($depth = 31; $depth >= 0; --$depth) {
394
  if ($gi->flags & GEOIP_MEMORY_CACHE) {
@@ -426,77 +426,77 @@ function cpd_geoip_seek_country($gi, $ipnum) {
426
  return false;
427
  }
428
 
429
- //function cpd_get_org($gi,$ipnum){
430
- // $seek_org = cpd_geoip_seek_country($gi,$ipnum);
431
- // if ($seek_org == $gi->databaseSegments) {
432
- // return NULL;
433
- // }
434
- // $record_pointer = $seek_org + (2 * $gi->record_length - 1) * $gi->databaseSegments;
435
- // if ($gi->flags & GEOIP_SHARED_MEMORY) {
436
- // $org_buf = @shmop_read ($gi->shmid, $record_pointer, MAX_ORG_RECORD_LENGTH);
437
- // } else {
438
- // fseek($gi->filehandle, $record_pointer, SEEK_SET);
439
- // $org_buf = fread($gi->filehandle,MAX_ORG_RECORD_LENGTH);
440
- // }
441
- // $org_buf = substr($org_buf, 0, strpos($org_buf, 0));
442
- // return $org_buf;
443
- //}
444
- //
445
- //function cpd_geoip_org_by_addr ($gi,$addr) {
446
- // if ($addr == NULL) {
447
- // return 0;
448
- // }
449
- // $ipnum = ip2long($addr);
450
- // return cpd_get_org($gi, $ipnum);
451
- //}
452
 
453
- //function cpd_get_region($gi,$ipnum){
454
- // if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
455
- // $seek_region = cpd_geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0;
456
- // if ($seek_region >= 1000){
457
- // $country_code = "US";
458
- // $region = chr(($seek_region - 1000)/26 + 65) . chr(($seek_region - 1000)%26 + 65);
459
- // } else {
460
- // $country_code = $gi->GEOIP_COUNTRY_CODES[$seek_region];
461
- // $region = "";
462
- // }
463
- // return array ($country_code,$region);
464
- // } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1) {
465
- // $seek_region = cpd_geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV1;
466
- // //print $seek_region;
467
- // if ($seek_region < US_OFFSET){
468
- // $country_code = "";
469
- // $region = "";
470
- // } else if ($seek_region < CANADA_OFFSET) {
471
- // $country_code = "US";
472
- // $region = chr(($seek_region - US_OFFSET)/26 + 65) . chr(($seek_region - US_OFFSET)%26 + 65);
473
- // } else if ($seek_region < WORLD_OFFSET) {
474
- // $country_code = "CA";
475
- // $region = chr(($seek_region - CANADA_OFFSET)/26 + 65) . chr(($seek_region - CANADA_OFFSET)%26 + 65);
476
- // } else {
477
- // $country_code = $gi->GEOIP_COUNTRY_CODES[($seek_region - WORLD_OFFSET) / FIPS_RANGE];
478
- // $region = "";
479
- // }
480
- // return array ($country_code,$region);
481
- // }
482
- //}
483
 
484
- //function cpd_geoip_region_by_addr ($gi,$addr) {
485
- // if ($addr == NULL) {
486
- // return 0;
487
- // }
488
- // $ipnum = ip2long($addr);
489
- // return cpd_get_region($gi, $ipnum);
490
- //}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
 
492
- //function cpd_getdnsattributes ($l,$ip){
493
- // $r = new Net_DNS_Resolver();
494
- // $r->nameservers = array("ws1.maxmind.com");
495
- // $p = $r->search($l."." . $ip .".s.maxmind.com","TXT","IN");
496
- // $str = is_object($p->answer[0])?$p->answer[0]->string():'';
497
- // ereg("\"(.*)\"",$str,$regs);
498
- // $str = $regs[1];
499
- // return $str;
500
- //}
 
 
 
 
 
 
 
 
501
 
502
  ?>
53
  define("GEOIP_CABLEDSL_SPEED", 2);
54
  define("GEOIP_CORPORATE_SPEED", 3);
55
 
56
+ class GeoIP {
57
  var $flags;
58
  var $filehandle;
59
  var $memory_buffer;
205
  );
206
  }
207
 
208
+ function geoip_load_shared_mem ($file) {
209
 
210
  $fp = fopen($file, "rb");
211
  if (!$fp) {
223
  shmop_close ($shmid);
224
  }
225
 
226
+ function _setup_segments($gi){
227
  $gi->databaseType = GEOIP_COUNTRY_EDITION;
228
  $gi->record_length = STANDARD_RECORD_LENGTH;
229
  if ($gi->flags & GEOIP_SHARED_MEMORY) {
306
  return $gi;
307
  }
308
 
309
+ function geoip_open($filename, $flags) {
310
+ $gi = new GeoIP;
311
  $gi->flags = $flags;
312
  if ($gi->flags & GEOIP_SHARED_MEMORY) {
313
  $gi->shmid = @shmop_open (GEOIP_SHM_KEY, "a", 0, 0);
319
  }
320
  }
321
 
322
+ $gi = _setup_segments($gi);
323
  return $gi;
324
  }
325
 
326
+ function geoip_close($gi) {
327
  if ($gi->flags & GEOIP_SHARED_MEMORY) {
328
  return true;
329
  }
331
  return fclose($gi->filehandle);
332
  }
333
 
334
+ function geoip_country_id_by_name($gi, $name) {
335
  $addr = gethostbyname($name);
336
  if (!$addr || $addr == $name) {
337
  return false;
338
  }
339
+ return geoip_country_id_by_addr($gi, $addr);
340
  }
341
 
342
+ function geoip_country_code_by_name($gi, $name) {
343
+ $country_id = geoip_country_id_by_name($gi,$name);
344
  if ($country_id !== false) {
345
  return $gi->GEOIP_COUNTRY_CODES[$country_id];
346
  }
347
  return false;
348
  }
349
 
350
+ function geoip_country_name_by_name($gi, $name) {
351
+ $country_id = geoip_country_id_by_name($gi,$name);
352
  if ($country_id !== false) {
353
  return $gi->GEOIP_COUNTRY_NAMES[$country_id];
354
  }
355
  return false;
356
  }
357
 
358
+ function geoip_country_id_by_addr($gi, $addr) {
359
  $ipnum = ip2long($addr);
360
+ return _geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
361
  }
362
 
363
+ function geoip_country_code_by_addr($gi, $addr) {
364
  if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
365
+ $record = geoip_record_by_addr($gi,$addr);
366
  if ( $record !== false ) {
367
  return $record->country_code;
368
  }
369
  } else {
370
+ $country_id = geoip_country_id_by_addr($gi,$addr);
371
  if ($country_id !== false) {
372
  return $gi->GEOIP_COUNTRY_CODES[$country_id];
373
  }
375
  return false;
376
  }
377
 
378
+ function geoip_country_name_by_addr($gi, $addr) {
379
  if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
380
+ $record = geoip_record_by_addr($gi,$addr);
381
  return $record->country_name;
382
  } else {
383
+ $country_id = geoip_country_id_by_addr($gi,$addr);
384
  if ($country_id !== false) {
385
  return $gi->GEOIP_COUNTRY_NAMES[$country_id];
386
  }
388
  return false;
389
  }
390
 
391
+ function _geoip_seek_country($gi, $ipnum) {
392
  $offset = 0;
393
  for ($depth = 31; $depth >= 0; --$depth) {
394
  if ($gi->flags & GEOIP_MEMORY_CACHE) {
426
  return false;
427
  }
428
 
429
+ function _get_org($gi,$ipnum){
430
+ $seek_org = _geoip_seek_country($gi,$ipnum);
431
+ if ($seek_org == $gi->databaseSegments) {
432
+ return NULL;
433
+ }
434
+ $record_pointer = $seek_org + (2 * $gi->record_length - 1) * $gi->databaseSegments;
435
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
436
+ $org_buf = @shmop_read ($gi->shmid, $record_pointer, MAX_ORG_RECORD_LENGTH);
437
+ } else {
438
+ fseek($gi->filehandle, $record_pointer, SEEK_SET);
439
+ $org_buf = fread($gi->filehandle,MAX_ORG_RECORD_LENGTH);
440
+ }
441
+ $org_buf = substr($org_buf, 0, strpos($org_buf, 0));
442
+ return $org_buf;
443
+ }
 
 
 
 
 
 
 
 
444
 
445
+ function geoip_org_by_addr ($gi,$addr) {
446
+ if ($addr == NULL) {
447
+ return 0;
448
+ }
449
+ $ipnum = ip2long($addr);
450
+ return _get_org($gi, $ipnum);
451
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
 
453
+ function _get_region($gi,$ipnum){
454
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
455
+ $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0;
456
+ if ($seek_region >= 1000){
457
+ $country_code = "US";
458
+ $region = chr(($seek_region - 1000)/26 + 65) . chr(($seek_region - 1000)%26 + 65);
459
+ } else {
460
+ $country_code = $gi->GEOIP_COUNTRY_CODES[$seek_region];
461
+ $region = "";
462
+ }
463
+ return array ($country_code,$region);
464
+ } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1) {
465
+ $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV1;
466
+ //print $seek_region;
467
+ if ($seek_region < US_OFFSET){
468
+ $country_code = "";
469
+ $region = "";
470
+ } else if ($seek_region < CANADA_OFFSET) {
471
+ $country_code = "US";
472
+ $region = chr(($seek_region - US_OFFSET)/26 + 65) . chr(($seek_region - US_OFFSET)%26 + 65);
473
+ } else if ($seek_region < WORLD_OFFSET) {
474
+ $country_code = "CA";
475
+ $region = chr(($seek_region - CANADA_OFFSET)/26 + 65) . chr(($seek_region - CANADA_OFFSET)%26 + 65);
476
+ } else {
477
+ $country_code = $gi->GEOIP_COUNTRY_CODES[($seek_region - WORLD_OFFSET) / FIPS_RANGE];
478
+ $region = "";
479
+ }
480
+ return array ($country_code,$region);
481
+ }
482
+ }
483
 
484
+ function geoip_region_by_addr ($gi,$addr) {
485
+ if ($addr == NULL) {
486
+ return 0;
487
+ }
488
+ $ipnum = ip2long($addr);
489
+ return _get_region($gi, $ipnum);
490
+ }
491
+
492
+ function getdnsattributes ($l,$ip){
493
+ $r = new Net_DNS_Resolver();
494
+ $r->nameservers = array("ws1.maxmind.com");
495
+ $p = $r->search($l."." . $ip .".s.maxmind.com","TXT","IN");
496
+ $str = is_object($p->answer[0])?$p->answer[0]->string():'';
497
+ ereg("\"(.*)\"",$str,$regs);
498
+ $str = $regs[1];
499
+ return $str;
500
+ }
501
 
502
  ?>
geoip/geoip.php CHANGED
@@ -6,7 +6,7 @@
6
 
7
  /**
8
  */
9
- if (!class_exists('GeoIpCpD'))
10
  include_once('geoip.inc');
11
 
12
  class CpdGeoIp
@@ -15,65 +15,80 @@ class CpdGeoIp
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
  {
22
  global $cpd_path;
23
 
24
- $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
25
- $c = strtolower(cpd_geoip_country_code_by_addr($gi, $ip));
26
 
27
  if ( empty($c) )
28
  $c = 'unknown';
29
- $cname = cpd_geoip_country_name_by_addr($gi, $ip);
30
  $country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
31
- cpd_geoip_close($gi);
32
 
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
6
 
7
  /**
8
  */
9
+ if (!class_exists('GeoIp'))
10
  include_once('geoip.inc');
11
 
12
  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
  {
22
  global $cpd_path;
23
 
24
+ $gi = geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
25
+ $c = strtolower(geoip_country_code_by_addr($gi, $ip));
26
 
27
  if ( empty($c) )
28
  $c = 'unknown';
29
+ $cname = geoip_country_name_by_addr($gi, $ip);
30
  $country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
31
+ geoip_close($gi);
32
 
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 = 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(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
+ 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
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 DELETED
Binary file
js/excanvas.min.js DELETED
@@ -1 +0,0 @@
1
- if(!document.createElement("canvas").getContext){(function(){var z=Math;var K=z.round;var J=z.sin;var U=z.cos;var b=z.abs;var k=z.sqrt;var D=10;var F=D/2;function T(){return this.context_||(this.context_=new W(this))}var O=Array.prototype.slice;function G(i,j,m){var Z=O.call(arguments,2);return function(){return i.apply(j,Z.concat(O.call(arguments)))}}function AD(Z){return String(Z).replace(/&/g,"&amp;").replace(/"/g,"&quot;")}function r(i){if(!i.namespaces.g_vml_){i.namespaces.add("g_vml_","urn:schemas-microsoft-com:vml","#default#VML")}if(!i.namespaces.g_o_){i.namespaces.add("g_o_","urn:schemas-microsoft-com:office:office","#default#VML")}if(!i.styleSheets.ex_canvas_){var Z=i.createStyleSheet();Z.owningElement.id="ex_canvas_";Z.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}r(document);var E={init:function(Z){if(/MSIE/.test(navigator.userAgent)&&!window.opera){var i=Z||document;i.createElement("canvas");i.attachEvent("onreadystatechange",G(this.init_,this,i))}},init_:function(m){var j=m.getElementsByTagName("canvas");for(var Z=0;Z<j.length;Z++){this.initElement(j[Z])}},initElement:function(i){if(!i.getContext){i.getContext=T;r(i.ownerDocument);i.innerHTML="";i.attachEvent("onpropertychange",S);i.attachEvent("onresize",w);var Z=i.attributes;if(Z.width&&Z.width.specified){i.style.width=Z.width.nodeValue+"px"}else{i.width=i.clientWidth}if(Z.height&&Z.height.specified){i.style.height=Z.height.nodeValue+"px"}else{i.height=i.clientHeight}}return i}};function S(i){var Z=i.srcElement;switch(i.propertyName){case"width":Z.getContext().clearRect();Z.style.width=Z.attributes.width.nodeValue+"px";Z.firstChild.style.width=Z.clientWidth+"px";break;case"height":Z.getContext().clearRect();Z.style.height=Z.attributes.height.nodeValue+"px";Z.firstChild.style.height=Z.clientHeight+"px";break}}function w(i){var Z=i.srcElement;if(Z.firstChild){Z.firstChild.style.width=Z.clientWidth+"px";Z.firstChild.style.height=Z.clientHeight+"px"}}E.init();var I=[];for(var AC=0;AC<16;AC++){for(var AB=0;AB<16;AB++){I[AC*16+AB]=AC.toString(16)+AB.toString(16)}}function V(){return[[1,0,0],[0,1,0],[0,0,1]]}function d(m,j){var i=V();for(var Z=0;Z<3;Z++){for(var AF=0;AF<3;AF++){var p=0;for(var AE=0;AE<3;AE++){p+=m[Z][AE]*j[AE][AF]}i[Z][AF]=p}}return i}function Q(i,Z){Z.fillStyle=i.fillStyle;Z.lineCap=i.lineCap;Z.lineJoin=i.lineJoin;Z.lineWidth=i.lineWidth;Z.miterLimit=i.miterLimit;Z.shadowBlur=i.shadowBlur;Z.shadowColor=i.shadowColor;Z.shadowOffsetX=i.shadowOffsetX;Z.shadowOffsetY=i.shadowOffsetY;Z.strokeStyle=i.strokeStyle;Z.globalAlpha=i.globalAlpha;Z.font=i.font;Z.textAlign=i.textAlign;Z.textBaseline=i.textBaseline;Z.arcScaleX_=i.arcScaleX_;Z.arcScaleY_=i.arcScaleY_;Z.lineScale_=i.lineScale_}var B={aliceblue:"#F0F8FF",antiquewhite:"#FAEBD7",aquamarine:"#7FFFD4",azure:"#F0FFFF",beige:"#F5F5DC",bisque:"#FFE4C4",black:"#000000",blanchedalmond:"#FFEBCD",blueviolet:"#8A2BE2",brown:"#A52A2A",burlywood:"#DEB887",cadetblue:"#5F9EA0",chartreuse:"#7FFF00",chocolate:"#D2691E",coral:"#FF7F50",cornflowerblue:"#6495ED",cornsilk:"#FFF8DC",crimson:"#DC143C",cyan:"#00FFFF",darkblue:"#00008B",darkcyan:"#008B8B",darkgoldenrod:"#B8860B",darkgray:"#A9A9A9",darkgreen:"#006400",darkgrey:"#A9A9A9",darkkhaki:"#BDB76B",darkmagenta:"#8B008B",darkolivegreen:"#556B2F",darkorange:"#FF8C00",darkorchid:"#9932CC",darkred:"#8B0000",darksalmon:"#E9967A",darkseagreen:"#8FBC8F",darkslateblue:"#483D8B",darkslategray:"#2F4F4F",darkslategrey:"#2F4F4F",darkturquoise:"#00CED1",darkviolet:"#9400D3",deeppink:"#FF1493",deepskyblue:"#00BFFF",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1E90FF",firebrick:"#B22222",floralwhite:"#FFFAF0",forestgreen:"#228B22",gainsboro:"#DCDCDC",ghostwhite:"#F8F8FF",gold:"#FFD700",goldenrod:"#DAA520",grey:"#808080",greenyellow:"#ADFF2F",honeydew:"#F0FFF0",hotpink:"#FF69B4",indianred:"#CD5C5C",indigo:"#4B0082",ivory:"#FFFFF0",khaki:"#F0E68C",lavender:"#E6E6FA",lavenderblush:"#FFF0F5",lawngreen:"#7CFC00",lemonchiffon:"#FFFACD",lightblue:"#ADD8E6",lightcoral:"#F08080",lightcyan:"#E0FFFF",lightgoldenrodyellow:"#FAFAD2",lightgreen:"#90EE90",lightgrey:"#D3D3D3",lightpink:"#FFB6C1",lightsalmon:"#FFA07A",lightseagreen:"#20B2AA",lightskyblue:"#87CEFA",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#B0C4DE",lightyellow:"#FFFFE0",limegreen:"#32CD32",linen:"#FAF0E6",magenta:"#FF00FF",mediumaquamarine:"#66CDAA",mediumblue:"#0000CD",mediumorchid:"#BA55D3",mediumpurple:"#9370DB",mediumseagreen:"#3CB371",mediumslateblue:"#7B68EE",mediumspringgreen:"#00FA9A",mediumturquoise:"#48D1CC",mediumvioletred:"#C71585",midnightblue:"#191970",mintcream:"#F5FFFA",mistyrose:"#FFE4E1",moccasin:"#FFE4B5",navajowhite:"#FFDEAD",oldlace:"#FDF5E6",olivedrab:"#6B8E23",orange:"#FFA500",orangered:"#FF4500",orchid:"#DA70D6",palegoldenrod:"#EEE8AA",palegreen:"#98FB98",paleturquoise:"#AFEEEE",palevioletred:"#DB7093",papayawhip:"#FFEFD5",peachpuff:"#FFDAB9",peru:"#CD853F",pink:"#FFC0CB",plum:"#DDA0DD",powderblue:"#B0E0E6",rosybrown:"#BC8F8F",royalblue:"#4169E1",saddlebrown:"#8B4513",salmon:"#FA8072",sandybrown:"#F4A460",seagreen:"#2E8B57",seashell:"#FFF5EE",sienna:"#A0522D",skyblue:"#87CEEB",slateblue:"#6A5ACD",slategray:"#708090",slategrey:"#708090",snow:"#FFFAFA",springgreen:"#00FF7F",steelblue:"#4682B4",tan:"#D2B48C",thistle:"#D8BFD8",tomato:"#FF6347",turquoise:"#40E0D0",violet:"#EE82EE",wheat:"#F5DEB3",whitesmoke:"#F5F5F5",yellowgreen:"#9ACD32"};function g(i){var m=i.indexOf("(",3);var Z=i.indexOf(")",m+1);var j=i.substring(m+1,Z).split(",");if(j.length==4&&i.substr(3,1)=="a"){alpha=Number(j[3])}else{j[3]=1}return j}function C(Z){return parseFloat(Z)/100}function N(i,j,Z){return Math.min(Z,Math.max(j,i))}function c(AF){var j,i,Z;h=parseFloat(AF[0])/360%360;if(h<0){h++}s=N(C(AF[1]),0,1);l=N(C(AF[2]),0,1);if(s==0){j=i=Z=l}else{var m=l<0.5?l*(1+s):l+s-l*s;var AE=2*l-m;j=A(AE,m,h+1/3);i=A(AE,m,h);Z=A(AE,m,h-1/3)}return"#"+I[Math.floor(j*255)]+I[Math.floor(i*255)]+I[Math.floor(Z*255)]}function A(i,Z,j){if(j<0){j++}if(j>1){j--}if(6*j<1){return i+(Z-i)*6*j}else{if(2*j<1){return Z}else{if(3*j<2){return i+(Z-i)*(2/3-j)*6}else{return i}}}}function Y(Z){var AE,p=1;Z=String(Z);if(Z.charAt(0)=="#"){AE=Z}else{if(/^rgb/.test(Z)){var m=g(Z);var AE="#",AF;for(var j=0;j<3;j++){if(m[j].indexOf("%")!=-1){AF=Math.floor(C(m[j])*255)}else{AF=Number(m[j])}AE+=I[N(AF,0,255)]}p=m[3]}else{if(/^hsl/.test(Z)){var m=g(Z);AE=c(m);p=m[3]}else{AE=B[Z]||Z}}}return{color:AE,alpha:p}}var L={style:"normal",variant:"normal",weight:"normal",size:10,family:"sans-serif"};var f={};function X(Z){if(f[Z]){return f[Z]}var m=document.createElement("div");var j=m.style;try{j.font=Z}catch(i){}return f[Z]={style:j.fontStyle||L.style,variant:j.fontVariant||L.variant,weight:j.fontWeight||L.weight,size:j.fontSize||L.size,family:j.fontFamily||L.family}}function P(j,i){var Z={};for(var AF in j){Z[AF]=j[AF]}var AE=parseFloat(i.currentStyle.fontSize),m=parseFloat(j.size);if(typeof j.size=="number"){Z.size=j.size}else{if(j.size.indexOf("px")!=-1){Z.size=m}else{if(j.size.indexOf("em")!=-1){Z.size=AE*m}else{if(j.size.indexOf("%")!=-1){Z.size=(AE/100)*m}else{if(j.size.indexOf("pt")!=-1){Z.size=m/0.75}else{Z.size=AE}}}}}Z.size*=0.981;return Z}function AA(Z){return Z.style+" "+Z.variant+" "+Z.weight+" "+Z.size+"px "+Z.family}function t(Z){switch(Z){case"butt":return"flat";case"round":return"round";case"square":default:return"square"}}function W(i){this.m_=V();this.mStack_=[];this.aStack_=[];this.currentPath_=[];this.strokeStyle="#000";this.fillStyle="#000";this.lineWidth=1;this.lineJoin="miter";this.lineCap="butt";this.miterLimit=D*1;this.globalAlpha=1;this.font="10px sans-serif";this.textAlign="left";this.textBaseline="alphabetic";this.canvas=i;var Z=i.ownerDocument.createElement("div");Z.style.width=i.clientWidth+"px";Z.style.height=i.clientHeight+"px";Z.style.overflow="hidden";Z.style.position="absolute";i.appendChild(Z);this.element_=Z;this.arcScaleX_=1;this.arcScaleY_=1;this.lineScale_=1}var M=W.prototype;M.clearRect=function(){if(this.textMeasureEl_){this.textMeasureEl_.removeNode(true);this.textMeasureEl_=null}this.element_.innerHTML=""};M.beginPath=function(){this.currentPath_=[]};M.moveTo=function(i,Z){var j=this.getCoords_(i,Z);this.currentPath_.push({type:"moveTo",x:j.x,y:j.y});this.currentX_=j.x;this.currentY_=j.y};M.lineTo=function(i,Z){var j=this.getCoords_(i,Z);this.currentPath_.push({type:"lineTo",x:j.x,y:j.y});this.currentX_=j.x;this.currentY_=j.y};M.bezierCurveTo=function(j,i,AI,AH,AG,AE){var Z=this.getCoords_(AG,AE);var AF=this.getCoords_(j,i);var m=this.getCoords_(AI,AH);e(this,AF,m,Z)};function e(Z,m,j,i){Z.currentPath_.push({type:"bezierCurveTo",cp1x:m.x,cp1y:m.y,cp2x:j.x,cp2y:j.y,x:i.x,y:i.y});Z.currentX_=i.x;Z.currentY_=i.y}M.quadraticCurveTo=function(AG,j,i,Z){var AF=this.getCoords_(AG,j);var AE=this.getCoords_(i,Z);var AH={x:this.currentX_+2/3*(AF.x-this.currentX_),y:this.currentY_+2/3*(AF.y-this.currentY_)};var m={x:AH.x+(AE.x-this.currentX_)/3,y:AH.y+(AE.y-this.currentY_)/3};e(this,AH,m,AE)};M.arc=function(AJ,AH,AI,AE,i,j){AI*=D;var AN=j?"at":"wa";var AK=AJ+U(AE)*AI-F;var AM=AH+J(AE)*AI-F;var Z=AJ+U(i)*AI-F;var AL=AH+J(i)*AI-F;if(AK==Z&&!j){AK+=0.125}var m=this.getCoords_(AJ,AH);var AG=this.getCoords_(AK,AM);var AF=this.getCoords_(Z,AL);this.currentPath_.push({type:AN,x:m.x,y:m.y,radius:AI,xStart:AG.x,yStart:AG.y,xEnd:AF.x,yEnd:AF.y})};M.rect=function(j,i,Z,m){this.moveTo(j,i);this.lineTo(j+Z,i);this.lineTo(j+Z,i+m);this.lineTo(j,i+m);this.closePath()};M.strokeRect=function(j,i,Z,m){var p=this.currentPath_;this.beginPath();this.moveTo(j,i);this.lineTo(j+Z,i);this.lineTo(j+Z,i+m);this.lineTo(j,i+m);this.closePath();this.stroke();this.currentPath_=p};M.fillRect=function(j,i,Z,m){var p=this.currentPath_;this.beginPath();this.moveTo(j,i);this.lineTo(j+Z,i);this.lineTo(j+Z,i+m);this.lineTo(j,i+m);this.closePath();this.fill();this.currentPath_=p};M.createLinearGradient=function(i,m,Z,j){var p=new v("gradient");p.x0_=i;p.y0_=m;p.x1_=Z;p.y1_=j;return p};M.createRadialGradient=function(m,AE,j,i,p,Z){var AF=new v("gradientradial");AF.x0_=m;AF.y0_=AE;AF.r0_=j;AF.x1_=i;AF.y1_=p;AF.r1_=Z;return AF};M.drawImage=function(AO,j){var AH,AF,AJ,AV,AM,AK,AQ,AX;var AI=AO.runtimeStyle.width;var AN=AO.runtimeStyle.height;AO.runtimeStyle.width="auto";AO.runtimeStyle.height="auto";var AG=AO.width;var AT=AO.height;AO.runtimeStyle.width=AI;AO.runtimeStyle.height=AN;if(arguments.length==3){AH=arguments[1];AF=arguments[2];AM=AK=0;AQ=AJ=AG;AX=AV=AT}else{if(arguments.length==5){AH=arguments[1];AF=arguments[2];AJ=arguments[3];AV=arguments[4];AM=AK=0;AQ=AG;AX=AT}else{if(arguments.length==9){AM=arguments[1];AK=arguments[2];AQ=arguments[3];AX=arguments[4];AH=arguments[5];AF=arguments[6];AJ=arguments[7];AV=arguments[8]}else{throw Error("Invalid number of arguments")}}}var AW=this.getCoords_(AH,AF);var m=AQ/2;var i=AX/2;var AU=[];var Z=10;var AE=10;AU.push(" <g_vml_:group",' coordsize="',D*Z,",",D*AE,'"',' coordorigin="0,0"',' style="width:',Z,"px;height:",AE,"px;position:absolute;");if(this.m_[0][0]!=1||this.m_[0][1]||this.m_[1][1]!=1||this.m_[1][0]){var p=[];p.push("M11=",this.m_[0][0],",","M12=",this.m_[1][0],",","M21=",this.m_[0][1],",","M22=",this.m_[1][1],",","Dx=",K(AW.x/D),",","Dy=",K(AW.y/D),"");var AS=AW;var AR=this.getCoords_(AH+AJ,AF);var AP=this.getCoords_(AH,AF+AV);var AL=this.getCoords_(AH+AJ,AF+AV);AS.x=z.max(AS.x,AR.x,AP.x,AL.x);AS.y=z.max(AS.y,AR.y,AP.y,AL.y);AU.push("padding:0 ",K(AS.x/D),"px ",K(AS.y/D),"px 0;filter:progid:DXImageTransform.Microsoft.Matrix(",p.join(""),", sizingmethod='clip');")}else{AU.push("top:",K(AW.y/D),"px;left:",K(AW.x/D),"px;")}AU.push(' ">','<g_vml_:image src="',AO.src,'"',' style="width:',D*AJ,"px;"," height:",D*AV,'px"',' cropleft="',AM/AG,'"',' croptop="',AK/AT,'"',' cropright="',(AG-AM-AQ)/AG,'"',' cropbottom="',(AT-AK-AX)/AT,'"'," />","</g_vml_:group>");this.element_.insertAdjacentHTML("BeforeEnd",AU.join(""))};M.stroke=function(AM){var m=10;var AN=10;var AE=5000;var AG={x:null,y:null};var AL={x:null,y:null};for(var AH=0;AH<this.currentPath_.length;AH+=AE){var AK=[];var AF=false;AK.push("<g_vml_:shape",' filled="',!!AM,'"',' style="position:absolute;width:',m,"px;height:",AN,'px;"',' coordorigin="0,0"',' coordsize="',D*m,",",D*AN,'"',' stroked="',!AM,'"',' path="');var AO=false;for(var AI=AH;AI<Math.min(AH+AE,this.currentPath_.length);AI++){if(AI%AE==0&&AI>0){AK.push(" m ",K(this.currentPath_[AI-1].x),",",K(this.currentPath_[AI-1].y))}var Z=this.currentPath_[AI];var AJ;switch(Z.type){case"moveTo":AJ=Z;AK.push(" m ",K(Z.x),",",K(Z.y));break;case"lineTo":AK.push(" l ",K(Z.x),",",K(Z.y));break;case"close":AK.push(" x ");Z=null;break;case"bezierCurveTo":AK.push(" c ",K(Z.cp1x),",",K(Z.cp1y),",",K(Z.cp2x),",",K(Z.cp2y),",",K(Z.x),",",K(Z.y));break;case"at":case"wa":AK.push(" ",Z.type," ",K(Z.x-this.arcScaleX_*Z.radius),",",K(Z.y-this.arcScaleY_*Z.radius)," ",K(Z.x+this.arcScaleX_*Z.radius),",",K(Z.y+this.arcScaleY_*Z.radius)," ",K(Z.xStart),",",K(Z.yStart)," ",K(Z.xEnd),",",K(Z.yEnd));break}if(Z){if(AG.x==null||Z.x<AG.x){AG.x=Z.x}if(AL.x==null||Z.x>AL.x){AL.x=Z.x}if(AG.y==null||Z.y<AG.y){AG.y=Z.y}if(AL.y==null||Z.y>AL.y){AL.y=Z.y}}}AK.push(' ">');if(!AM){R(this,AK)}else{a(this,AK,AG,AL)}AK.push("</g_vml_:shape>");this.element_.insertAdjacentHTML("beforeEnd",AK.join(""))}};function R(j,AE){var i=Y(j.strokeStyle);var m=i.color;var p=i.alpha*j.globalAlpha;var Z=j.lineScale_*j.lineWidth;if(Z<1){p*=Z}AE.push("<g_vml_:stroke",' opacity="',p,'"',' joinstyle="',j.lineJoin,'"',' miterlimit="',j.miterLimit,'"',' endcap="',t(j.lineCap),'"',' weight="',Z,'px"',' color="',m,'" />')}function a(AO,AG,Ah,AP){var AH=AO.fillStyle;var AY=AO.arcScaleX_;var AX=AO.arcScaleY_;var Z=AP.x-Ah.x;var m=AP.y-Ah.y;if(AH instanceof v){var AL=0;var Ac={x:0,y:0};var AU=0;var AK=1;if(AH.type_=="gradient"){var AJ=AH.x0_/AY;var j=AH.y0_/AX;var AI=AH.x1_/AY;var Aj=AH.y1_/AX;var Ag=AO.getCoords_(AJ,j);var Af=AO.getCoords_(AI,Aj);var AE=Af.x-Ag.x;var p=Af.y-Ag.y;AL=Math.atan2(AE,p)*180/Math.PI;if(AL<0){AL+=360}if(AL<0.000001){AL=0}}else{var Ag=AO.getCoords_(AH.x0_,AH.y0_);Ac={x:(Ag.x-Ah.x)/Z,y:(Ag.y-Ah.y)/m};Z/=AY*D;m/=AX*D;var Aa=z.max(Z,m);AU=2*AH.r0_/Aa;AK=2*AH.r1_/Aa-AU}var AS=AH.colors_;AS.sort(function(Ak,i){return Ak.offset-i.offset});var AN=AS.length;var AR=AS[0].color;var AQ=AS[AN-1].color;var AW=AS[0].alpha*AO.globalAlpha;var AV=AS[AN-1].alpha*AO.globalAlpha;var Ab=[];for(var Ae=0;Ae<AN;Ae++){var AM=AS[Ae];Ab.push(AM.offset*AK+AU+" "+AM.color)}AG.push('<g_vml_:fill type="',AH.type_,'"',' method="none" focus="100%"',' color="',AR,'"',' color2="',AQ,'"',' colors="',Ab.join(","),'"',' opacity="',AV,'"',' g_o_:opacity2="',AW,'"',' angle="',AL,'"',' focusposition="',Ac.x,",",Ac.y,'" />')}else{if(AH instanceof u){if(Z&&m){var AF=-Ah.x;var AZ=-Ah.y;AG.push("<g_vml_:fill",' position="',AF/Z*AY*AY,",",AZ/m*AX*AX,'"',' type="tile"',' src="',AH.src_,'" />')}}else{var Ai=Y(AO.fillStyle);var AT=Ai.color;var Ad=Ai.alpha*AO.globalAlpha;AG.push('<g_vml_:fill color="',AT,'" opacity="',Ad,'" />')}}}M.fill=function(){this.stroke(true)};M.closePath=function(){this.currentPath_.push({type:"close"})};M.getCoords_=function(j,i){var Z=this.m_;return{x:D*(j*Z[0][0]+i*Z[1][0]+Z[2][0])-F,y:D*(j*Z[0][1]+i*Z[1][1]+Z[2][1])-F}};M.save=function(){var Z={};Q(this,Z);this.aStack_.push(Z);this.mStack_.push(this.m_);this.m_=d(V(),this.m_)};M.restore=function(){if(this.aStack_.length){Q(this.aStack_.pop(),this);this.m_=this.mStack_.pop()}};function H(Z){return isFinite(Z[0][0])&&isFinite(Z[0][1])&&isFinite(Z[1][0])&&isFinite(Z[1][1])&&isFinite(Z[2][0])&&isFinite(Z[2][1])}function y(i,Z,j){if(!H(Z)){return }i.m_=Z;if(j){var p=Z[0][0]*Z[1][1]-Z[0][1]*Z[1][0];i.lineScale_=k(b(p))}}M.translate=function(j,i){var Z=[[1,0,0],[0,1,0],[j,i,1]];y(this,d(Z,this.m_),false)};M.rotate=function(i){var m=U(i);var j=J(i);var Z=[[m,j,0],[-j,m,0],[0,0,1]];y(this,d(Z,this.m_),false)};M.scale=function(j,i){this.arcScaleX_*=j;this.arcScaleY_*=i;var Z=[[j,0,0],[0,i,0],[0,0,1]];y(this,d(Z,this.m_),true)};M.transform=function(p,m,AF,AE,i,Z){var j=[[p,m,0],[AF,AE,0],[i,Z,1]];y(this,d(j,this.m_),true)};M.setTransform=function(AE,p,AG,AF,j,i){var Z=[[AE,p,0],[AG,AF,0],[j,i,1]];y(this,Z,true)};M.drawText_=function(AK,AI,AH,AN,AG){var AM=this.m_,AQ=1000,i=0,AP=AQ,AF={x:0,y:0},AE=[];var Z=P(X(this.font),this.element_);var j=AA(Z);var AR=this.element_.currentStyle;var p=this.textAlign.toLowerCase();switch(p){case"left":case"center":case"right":break;case"end":p=AR.direction=="ltr"?"right":"left";break;case"start":p=AR.direction=="rtl"?"right":"left";break;default:p="left"}switch(this.textBaseline){case"hanging":case"top":AF.y=Z.size/1.75;break;case"middle":break;default:case null:case"alphabetic":case"ideographic":case"bottom":AF.y=-Z.size/2.25;break}switch(p){case"right":i=AQ;AP=0.05;break;case"center":i=AP=AQ/2;break}var AO=this.getCoords_(AI+AF.x,AH+AF.y);AE.push('<g_vml_:line from="',-i,' 0" to="',AP,' 0.05" ',' coordsize="100 100" coordorigin="0 0"',' filled="',!AG,'" stroked="',!!AG,'" style="position:absolute;width:1px;height:1px;">');if(AG){R(this,AE)}else{a(this,AE,{x:-i,y:0},{x:AP,y:Z.size})}var AL=AM[0][0].toFixed(3)+","+AM[1][0].toFixed(3)+","+AM[0][1].toFixed(3)+","+AM[1][1].toFixed(3)+",0,0";var AJ=K(AO.x/D)+","+K(AO.y/D);AE.push('<g_vml_:skew on="t" matrix="',AL,'" ',' offset="',AJ,'" origin="',i,' 0" />','<g_vml_:path textpathok="true" />','<g_vml_:textpath on="true" string="',AD(AK),'" style="v-text-align:',p,";font:",AD(j),'" /></g_vml_:line>');this.element_.insertAdjacentHTML("beforeEnd",AE.join(""))};M.fillText=function(j,Z,m,i){this.drawText_(j,Z,m,i,false)};M.strokeText=function(j,Z,m,i){this.drawText_(j,Z,m,i,true)};M.measureText=function(j){if(!this.textMeasureEl_){var Z='<span style="position:absolute;top:-20000px;left:0;padding:0;margin:0;border:none;white-space:pre;"></span>';this.element_.insertAdjacentHTML("beforeEnd",Z);this.textMeasureEl_=this.element_.lastChild}var i=this.element_.ownerDocument;this.textMeasureEl_.innerHTML="";this.textMeasureEl_.style.font=this.font;this.textMeasureEl_.appendChild(i.createTextNode(j));return{width:this.textMeasureEl_.offsetWidth}};M.clip=function(){};M.arcTo=function(){};M.createPattern=function(i,Z){return new u(i,Z)};function v(Z){this.type_=Z;this.x0_=0;this.y0_=0;this.r0_=0;this.x1_=0;this.y1_=0;this.r1_=0;this.colors_=[]}v.prototype.addColorStop=function(i,Z){Z=Y(Z);this.colors_.push({offset:i,color:Z.color,alpha:Z.alpha})};function u(i,Z){q(i);switch(Z){case"repeat":case null:case"":this.repetition_="repeat";break;case"repeat-x":case"repeat-y":case"no-repeat":this.repetition_=Z;break;default:n("SYNTAX_ERR")}this.src_=i.src;this.width_=i.width;this.height_=i.height}function n(Z){throw new o(Z)}function q(Z){if(!Z||Z.nodeType!=1||Z.tagName!="IMG"){n("TYPE_MISMATCH_ERR")}if(Z.readyState!="complete"){n("INVALID_STATE_ERR")}}function o(Z){this.code=this[Z];this.message=Z+": DOM Exception "+this.code}var x=o.prototype=new Error;x.INDEX_SIZE_ERR=1;x.DOMSTRING_SIZE_ERR=2;x.HIERARCHY_REQUEST_ERR=3;x.WRONG_DOCUMENT_ERR=4;x.INVALID_CHARACTER_ERR=5;x.NO_DATA_ALLOWED_ERR=6;x.NO_MODIFICATION_ALLOWED_ERR=7;x.NOT_FOUND_ERR=8;x.NOT_SUPPORTED_ERR=9;x.INUSE_ATTRIBUTE_ERR=10;x.INVALID_STATE_ERR=11;x.SYNTAX_ERR=12;x.INVALID_MODIFICATION_ERR=13;x.NAMESPACE_ERR=14;x.INVALID_ACCESS_ERR=15;x.VALIDATION_ERR=16;x.TYPE_MISMATCH_ERR=17;G_vmlCanvasManager=E;CanvasRenderingContext2D=W;CanvasGradient=v;CanvasPattern=u;DOMException=o})()};
 
js/jquery.flot.min.js DELETED
@@ -1,6 +0,0 @@
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 DELETED
Binary file
locale/cpd-az_AZ.po DELETED
@@ -1,972 +0,0 @@
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 DELETED
Binary file
locale/cpd-be_BY.po DELETED
@@ -1,784 +0,0 @@
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 DELETED
Binary file
locale/cpd-bg_BG.po DELETED
@@ -1,972 +0,0 @@
1
- msgid ""
2
- 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: 2010-12-21 10:01+0000\n"
7
- "Last-Translator: joro <joro2007@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: Bulgarian\n"
14
- "X-Poedit-Country: BULGARIA\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-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-by_BY.mo ADDED
Binary file
locale/cpd-by_BY.po ADDED
@@ -0,0 +1,680 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Tom Braider <post@tomsdimension.de>\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: German\n"
14
+ "X-Poedit-Country: GERMANY\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;_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:41
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Налады абноўленыя"
26
+
27
+ #: counter-options.php:101
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Database cleaned. %s rows deleted."
31
+ msgstr "База дадзеных ачышчана. %s радкоў выдалена."
32
+
33
+ #: counter-options.php:111
34
+ #: counter-options.php:460
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "Колькасць дэінсталяцый за дзень. "
38
+
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
41
+ #, php-format
42
+ #@ cpd
43
+ msgid "Table %s deleted"
44
+ msgstr "Табліца %s выдалена"
45
+
46
+ #: counter-options.php:122
47
+ #@ cpd
48
+ msgid "Options deleted"
49
+ msgstr "Налады выдаленыя"
50
+
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
+ #@ cpd
54
+ msgid "Uninstall"
55
+ msgstr "Дэінсталяцыя"
56
+
57
+ #: counter-options.php:147
58
+ #@ cpd
59
+ msgid "Click here"
60
+ msgstr "Націсніце сюды"
61
+
62
+ #: counter-options.php:147
63
+ #@ cpd
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "скончыць дэінсталяцыю і дэактываваць \"Колькасць па днях\". "
66
+
67
+ #: counter-options.php:168
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Налады"
71
+
72
+ #: counter-options.php:173
73
+ #@ cpd
74
+ msgid "Online time"
75
+ msgstr "Час онлайн"
76
+
77
+ #: counter-options.php:174
78
+ #@ cpd
79
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
+ msgstr "Секунд для для падліку онлайн. Выкарыстоўваецца для \"Карыстачоў онлайн \" на староны \"Панэль інструментаў\"."
81
+
82
+ #: counter-options.php:177
83
+ #@ cpd
84
+ msgid "Loged on Users"
85
+ msgstr "Увайшоўшых карыстачоў"
86
+
87
+ #: counter-options.php:179
88
+ #@ cpd
89
+ msgid "count too"
90
+ msgstr "лік таксама"
91
+
92
+ #: counter-options.php:191
93
+ #@ cpd
94
+ msgid "Auto counter"
95
+ msgstr "Аўтападлічванне"
96
+
97
+ #: counter-options.php:192
98
+ #@ cpd
99
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
100
+ msgstr "Лічыльнікі аўтаматычна ў пасты і старонкі, ніякіх змен у шаблон не патрабуецца. "
101
+
102
+ #: counter-options.php:195
103
+ #@ cpd
104
+ msgid "Bots to ignore"
105
+ msgstr "Ботаў ігнаравана"
106
+
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
+ #@ cpd
112
+ msgid "Update options"
113
+ msgstr "Налады абнаўлення"
114
+
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
+ #@ cpd
118
+ msgid "Clean the database"
119
+ msgstr "Чыстка базы дадзеных"
120
+
121
+ #: counter-options.php:413
122
+ #@ cpd
123
+ 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."
124
+ msgstr "Вы можаце пачысціць лічыльнік табліц праз\"Спам \". <br /> Калі вы дададзіце новых ботаў паверх \"Спама \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць візіты ботаў."
125
+
126
+ #: counter-options.php:448
127
+ #@ cpd
128
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
129
+ msgstr "Калі \"Колькасць па днях\"актывавана, табліцы ў базах дадзеных будуць прэзерваваныя :)."
130
+
131
+ #: counter-options.php:449
132
+ #@ cpd
133
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
134
+ msgstr "Тут вы можаце выдаліць табліцы і дэактываваць \"Лік па днях\"."
135
+
136
+ #: counter-options.php:452
137
+ #@ cpd
138
+ msgid "WARNING"
139
+ msgstr "УВАГА"
140
+
141
+ #: counter-options.php:453
142
+ #@ cpd
143
+ msgid "These tables (with ALL counter data) will be deleted."
144
+ msgstr "Гэтыя табліцы (з усімі дадзенымі лічыльнікаў), будць выдаленыя."
145
+
146
+ #: counter-options.php:455
147
+ #@ cpd
148
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
149
+ msgstr "Калі \"Лічыльнік па днях \" рэ-інсталяваны,лічыльнік пачынаецца з 0."
150
+
151
+ #: counter-options.php:459
152
+ #@ cpd
153
+ msgid "Yes"
154
+ msgstr "Так"
155
+
156
+ #: counter-options.php:460
157
+ #@ cpd
158
+ msgid "You are sure to disable Count per Day and delete all data?"
159
+ msgstr "Вы ўпэўніліся, што адключылі падлік па днях і выдалілі ўсе дадзеныя?"
160
+
161
+ #: counter.php:1466
162
+ #@ cpd
163
+ msgid "Statistics"
164
+ msgstr "Статыстыка"
165
+
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
169
+ #@ cpd
170
+ msgid "Total visitors"
171
+ msgstr "Прачытана ўсімі"
172
+
173
+ #: counter.php:440
174
+ #@ cpd
175
+ msgid "Visitors currently online"
176
+ msgstr "Наведвальнікаў зараз онлайн"
177
+
178
+ #: counter.php:441
179
+ #@ cpd
180
+ msgid "Visitors today"
181
+ msgstr "Чытачоў сёння"
182
+
183
+ #: counter.php:442
184
+ #@ cpd
185
+ msgid "Visitors yesterday"
186
+ msgstr "Чытачоў учора"
187
+
188
+ #: counter.php:443
189
+ #@ cpd
190
+ msgid "Visitors last week"
191
+ msgstr "Чытачоў на мінулай нядзелі"
192
+
193
+ #: counter.php:445
194
+ #@ cpd
195
+ msgid "Counter starts on"
196
+ msgstr "Падлік пачаць"
197
+
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
203
+ #@ cpd
204
+ msgid "Visitors per day"
205
+ msgstr "Чытачоў за дзень"
206
+
207
+ #: counter.php:1440
208
+ #@ cpd
209
+ msgid "Visitors per month"
210
+ msgstr "Чытачоў за месяц"
211
+
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
+ #@ cpd
215
+ msgid "Visitors per post"
216
+ msgstr "Чытачоў на пост"
217
+
218
+ #: counter-options.php:107
219
+ #@ cpd
220
+ msgid "Counter reseted."
221
+ msgstr ""
222
+
223
+ #: counter-options.php:212
224
+ msgid "Dashboard"
225
+ msgstr ""
226
+
227
+ #: counter-options.php:216
228
+ #: counter-options.php:220
229
+ #@ cpd
230
+ msgid "How many posts do you want to see on dashboard page?"
231
+ msgstr ""
232
+
233
+ #: counter-options.php:219
234
+ #@ cpd
235
+ msgid "Latest Counts - Posts"
236
+ msgstr ""
237
+
238
+ #: counter-options.php:223
239
+ #@ cpd
240
+ msgid "Latest Counts - Days"
241
+ msgstr ""
242
+
243
+ #: counter-options.php:224
244
+ #: counter-options.php:228
245
+ #@ cpd
246
+ msgid "How many days do you want look back?"
247
+ msgstr ""
248
+
249
+ #: counter-options.php:227
250
+ #@ cpd
251
+ msgid "Chart - Days"
252
+ msgstr ""
253
+
254
+ #: counter-options.php:231
255
+ #@ cpd
256
+ msgid "Chart - Height"
257
+ msgstr ""
258
+
259
+ #: counter-options.php:232
260
+ #@ cpd
261
+ msgid "Height of the biggest bar"
262
+ msgstr ""
263
+
264
+ #: counter-options.php:250
265
+ msgid "Edit Posts"
266
+ msgstr ""
267
+
268
+ #: counter-options.php:250
269
+ msgid "Edit Pages"
270
+ msgstr ""
271
+
272
+ #: counter-options.php:253
273
+ #@ cpd
274
+ msgid "Show in lists"
275
+ msgstr ""
276
+
277
+ #: counter-options.php:254
278
+ #@ cpd
279
+ msgid "Show \"Reads per Post\" in a new column in post management views."
280
+ msgstr ""
281
+
282
+ #: counter-options.php:427
283
+ #: counter-options.php:436
284
+ #@ cpd
285
+ msgid "Reset the counter"
286
+ msgstr ""
287
+
288
+ #: counter-options.php:430
289
+ #@ cpd
290
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
291
+ msgstr ""
292
+
293
+ #: counter.php:587
294
+ #@ cpd
295
+ msgid "no reads at this time"
296
+ msgstr ""
297
+
298
+ #: counter.php:560
299
+ #@ cpd
300
+ msgid "days"
301
+ msgstr ""
302
+
303
+ #: counter.php:886
304
+ #, php-format
305
+ #@ cpd
306
+ msgid "The %s most visited posts in last %s days:"
307
+ msgstr ""
308
+
309
+ #: counter.php:1136
310
+ msgid "Settings"
311
+ msgstr ""
312
+
313
+ #: counter.php:1439
314
+ #@ cpd
315
+ msgid "Reads per day"
316
+ msgstr ""
317
+
318
+ #: counter.php:1245
319
+ #@ cpd
320
+ msgid "Reads"
321
+ msgstr ""
322
+
323
+ #: counter.php:1325
324
+ #@ cpd
325
+ msgid "This post"
326
+ msgstr ""
327
+
328
+ #: counter.php:1373
329
+ #@ cpd
330
+ msgid "Label"
331
+ msgstr ""
332
+
333
+ #: counter.php:1373
334
+ #@ cpd
335
+ msgid "empty = name above"
336
+ msgstr ""
337
+
338
+ #: counter.php:1443
339
+ #@ cpd
340
+ msgid "Latest Counts"
341
+ msgstr ""
342
+
343
+ #: counter-options.php:51
344
+ #, php-format
345
+ #@ cpd
346
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
347
+ msgstr ""
348
+
349
+ #: counter-options.php:56
350
+ #@ cpd
351
+ msgid "update next"
352
+ msgstr ""
353
+
354
+ #: counter-options.php:94
355
+ #, php-format
356
+ #@ cpd
357
+ msgid "Mass Bots cleaned. %s counts deleted."
358
+ msgstr ""
359
+
360
+ #: counter-options.php:180
361
+ #@ cpd
362
+ msgid "until User Level"
363
+ msgstr ""
364
+
365
+ #: counter-options.php:199
366
+ #@ cpd
367
+ msgid "Anonymous IP"
368
+ msgstr ""
369
+
370
+ #: counter-options.php:203
371
+ #@ cpd
372
+ msgid "Cache"
373
+ msgstr ""
374
+
375
+ #: counter-options.php:204
376
+ #@ cpd
377
+ msgid "I use a cache plugin. Count these visits with ajax."
378
+ msgstr ""
379
+
380
+ #: counter-options.php:236
381
+ #@ cpd
382
+ msgid "Countries"
383
+ msgstr ""
384
+
385
+ #: counter-options.php:237
386
+ #@ cpd
387
+ msgid "How many countries do you want to see on dashboard page?"
388
+ msgstr ""
389
+
390
+ #: counter-options.php:241
391
+ #: counter.php:1441
392
+ #@ cpd
393
+ msgid "Browsers"
394
+ msgstr ""
395
+
396
+ #: counter-options.php:242
397
+ #@ cpd
398
+ msgid "Substring of the user agent, separated by comma"
399
+ msgstr ""
400
+
401
+ #: counter-options.php:258
402
+ #@ cpd
403
+ msgid "Start Values"
404
+ msgstr ""
405
+
406
+ #: counter-options.php:259
407
+ #@ cpd
408
+ msgid "Here you can change the date of first count and add a start count."
409
+ msgstr ""
410
+
411
+ #: counter-options.php:263
412
+ #@ cpd
413
+ msgid "Start date"
414
+ msgstr ""
415
+
416
+ #: counter-options.php:264
417
+ #@ cpd
418
+ msgid "Your old Counter starts at?"
419
+ msgstr ""
420
+
421
+ #: counter-options.php:267
422
+ #: counter-options.php:271
423
+ #@ cpd
424
+ msgid "Start count"
425
+ msgstr ""
426
+
427
+ #: counter-options.php:268
428
+ #@ cpd
429
+ msgid "Add this value to \"Total visitors\"."
430
+ msgstr ""
431
+
432
+ #: counter-options.php:272
433
+ #@ cpd
434
+ msgid "Add this value to \"Total reads\"."
435
+ msgstr ""
436
+
437
+ #: counter-options.php:281
438
+ #: counter-options.php:285
439
+ #@ cpd
440
+ msgid "Debug mode"
441
+ msgstr ""
442
+
443
+ #: counter-options.php:286
444
+ #@ cpd
445
+ msgid "Show debug informations at the bottom of all pages."
446
+ msgstr ""
447
+
448
+ #: counter-options.php:301
449
+ #@ cpd
450
+ msgid "GeoIP - Countries"
451
+ msgstr ""
452
+
453
+ #: counter-options.php:310
454
+ #@ cpd
455
+ msgid "Update old counter data"
456
+ msgstr ""
457
+
458
+ #: counter-options.php:323
459
+ #@ cpd
460
+ msgid "Update GeoIP database"
461
+ msgstr ""
462
+
463
+ #: counter-options.php:326
464
+ #@ cpd
465
+ msgid "Download a new version of GeoIP.dat file."
466
+ msgstr ""
467
+
468
+ #: counter-options.php:332
469
+ #@ cpd
470
+ msgid "More informations about GeoIP"
471
+ msgstr ""
472
+
473
+ #: counter-options.php:352
474
+ #: massbots.php:37
475
+ #@ cpd
476
+ msgid "Mass Bots"
477
+ msgstr ""
478
+
479
+ #: counter-options.php:356
480
+ #, php-format
481
+ #@ cpd
482
+ msgid "Show all IPs with more than %s page views per day"
483
+ msgstr ""
484
+
485
+ #: counter-options.php:357
486
+ #: notes.php:80
487
+ #: userperspan.php:47
488
+ #@ cpd
489
+ msgid "show"
490
+ msgstr ""
491
+
492
+ #: counter-options.php:365
493
+ #@ cpd
494
+ msgid "IP"
495
+ msgstr ""
496
+
497
+ #: counter-options.php:366
498
+ #: notes.php:84
499
+ #@ cpd
500
+ msgid "Date"
501
+ msgstr ""
502
+
503
+ #: counter-options.php:367
504
+ #@ cpd
505
+ msgid "Client"
506
+ msgstr ""
507
+
508
+ #: counter-options.php:368
509
+ #@ cpd
510
+ msgid "Views"
511
+ msgstr ""
512
+
513
+ #: counter-options.php:379
514
+ #: counter-options.php:401
515
+ #, php-format
516
+ #@ cpd
517
+ msgid "Delete these %s counts"
518
+ msgstr ""
519
+
520
+ #: counter-options.php:468
521
+ #@ cpd
522
+ msgid "Support"
523
+ msgstr ""
524
+
525
+ #: counter-options.php:473
526
+ #: counter.php:1408
527
+ #: counter.php:1656
528
+ #, php-format
529
+ #@ cpd
530
+ msgid "Time for Count per Day: <code>%s</code>."
531
+ msgstr ""
532
+
533
+ #: counter-options.php:476
534
+ #: counter.php:1409
535
+ #@ cpd
536
+ msgid "Bug? Problem? Question? Hint? Praise?"
537
+ msgstr ""
538
+
539
+ #: counter-options.php:478
540
+ #: counter.php:1410
541
+ #, php-format
542
+ #@ cpd
543
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
544
+ msgstr ""
545
+
546
+ #: counter.php:436
547
+ #@ cpd
548
+ msgid "Total reads"
549
+ msgstr ""
550
+
551
+ #: counter.php:437
552
+ #@ cpd
553
+ msgid "Reads today"
554
+ msgstr ""
555
+
556
+ #: counter.php:438
557
+ #@ cpd
558
+ msgid "Reads yesterday"
559
+ msgstr ""
560
+
561
+ #: counter.php:563
562
+ #: counter.php:938
563
+ #: notes.php:51
564
+ #: notes.php:85
565
+ #@ cpd
566
+ msgid "Notes"
567
+ msgstr ""
568
+
569
+ #: counter.php:937
570
+ msgid "Show"
571
+ msgstr ""
572
+
573
+ #: counter.php:971
574
+ #@ cpd
575
+ msgid "Other"
576
+ msgstr ""
577
+
578
+ #: counter.php:1021
579
+ msgid "Edit Post"
580
+ msgstr ""
581
+
582
+ #: counter.php:1037
583
+ #: counter.php:1058
584
+ #: massbots.php:47
585
+ #: userperspan.php:68
586
+ msgid "Front page displays"
587
+ msgstr ""
588
+
589
+ #: counter.php:1362
590
+ msgid "Title:"
591
+ msgstr ""
592
+
593
+ #: counter.php:1445
594
+ msgid "Plugin"
595
+ msgstr ""
596
+
597
+ #: counter.php:1450
598
+ #@ cpd
599
+ msgid "Reads per Country"
600
+ msgstr ""
601
+
602
+ #: counter.php:1451
603
+ #@ cpd
604
+ msgid "Visitors per Country"
605
+ msgstr ""
606
+
607
+ #: counter.php:1534
608
+ #@ cpd
609
+ msgid "Map"
610
+ msgstr ""
611
+
612
+ #: geoip/geoip.php:91
613
+ #@ cpd
614
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
615
+ msgstr ""
616
+
617
+ #: geoip/geoip.php:115
618
+ #@ cpd
619
+ msgid "New GeoIP database installed."
620
+ msgstr ""
621
+
622
+ #: geoip/geoip.php:117
623
+ #@ cpd
624
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
625
+ msgstr ""
626
+
627
+ #: notes.php:85
628
+ #@ cpd
629
+ msgid "(1 per day)"
630
+ msgstr ""
631
+
632
+ #: notes.php:86
633
+ msgid "Action"
634
+ msgstr ""
635
+
636
+ #: notes.php:91
637
+ #@ cpd
638
+ msgid "add"
639
+ msgstr ""
640
+
641
+ #: notes.php:106
642
+ #@ cpd
643
+ msgid "save"
644
+ msgstr ""
645
+
646
+ #: notes.php:107
647
+ #@ cpd
648
+ msgid "delete"
649
+ msgstr ""
650
+
651
+ #: notes.php:118
652
+ #@ cpd
653
+ msgid "edit"
654
+ msgstr ""
655
+
656
+ #: userperspan.php:41
657
+ #@ cpd
658
+ msgid "Start"
659
+ msgstr ""
660
+
661
+ #: userperspan.php:43
662
+ #@ cpd
663
+ msgid "End"
664
+ msgstr ""
665
+
666
+ #: userperspan.php:45
667
+ #@ cpd
668
+ msgid "PostID"
669
+ msgstr ""
670
+
671
+ #: userperspan.php:54
672
+ #@ cpd
673
+ msgid "no data found"
674
+ msgstr ""
675
+
676
+ #: counter-options.php:313
677
+ #@ cpd
678
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
679
+ msgstr ""
680
+
locale/cpd-da_DK-2.mo ADDED
Binary file
locale/cpd-da_DK-2.po ADDED
@@ -0,0 +1,681 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day 2.6\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-03-01 19:13+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"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\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;_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:41
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Indstillingerne er blevet gemt"
26
+
27
+ #: counter-options.php:51
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:56
34
+ #@ cpd
35
+ msgid "update next"
36
+ msgstr "opdatér næste"
37
+
38
+ #: counter-options.php:94
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:101
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:107
51
+ #@ cpd
52
+ msgid "Counter reseted."
53
+ msgstr "Tæller nulstillet."
54
+
55
+ #: counter-options.php:111
56
+ #: counter-options.php:460
57
+ #@ cpd
58
+ msgid "UNINSTALL Count per Day"
59
+ msgstr "AFINSTALLÉR Count per Day"
60
+
61
+ #: counter-options.php:118
62
+ #: counter-options.php:120
63
+ #, php-format
64
+ #@ cpd
65
+ msgid "Table %s deleted"
66
+ msgstr "Tabellen %s blev slettet"
67
+
68
+ #: counter-options.php:122
69
+ #@ cpd
70
+ msgid "Options deleted"
71
+ msgstr "Indstillinger slettet"
72
+
73
+ #: counter-options.php:146
74
+ #: counter-options.php:445
75
+ #@ cpd
76
+ msgid "Uninstall"
77
+ msgstr "Afinstallér"
78
+
79
+ #: counter-options.php:147
80
+ #@ cpd
81
+ msgid "Click here"
82
+ msgstr "Klik her"
83
+
84
+ #: counter-options.php:147
85
+ #@ cpd
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
+ #: counter-options.php:168
90
+ #@ cpd
91
+ msgid "Options"
92
+ msgstr "Indstillinger"
93
+
94
+ #: counter-options.php:173
95
+ #@ cpd
96
+ msgid "Online time"
97
+ msgstr "Tid online"
98
+
99
+ #: counter-options.php:174
100
+ #@ cpd
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
+ #: counter-options.php:177
105
+ #@ cpd
106
+ msgid "Loged on Users"
107
+ msgstr "Indloggede brugere"
108
+
109
+ #: counter-options.php:179
110
+ #@ cpd
111
+ msgid "count too"
112
+ msgstr "tæl også"
113
+
114
+ #: counter-options.php:180
115
+ #@ cpd
116
+ msgid "until User Level"
117
+ msgstr "indtil rolle"
118
+
119
+ #: counter-options.php:191
120
+ #@ cpd
121
+ msgid "Auto counter"
122
+ msgstr "Auto-tæller"
123
+
124
+ #: counter-options.php:192
125
+ #@ cpd
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
+ #: counter-options.php:195
130
+ #@ cpd
131
+ msgid "Bots to ignore"
132
+ msgstr "Ignorér følgende bots"
133
+
134
+ #: counter-options.php:212
135
+ msgid "Dashboard"
136
+ msgstr "Kontrolpanel"
137
+
138
+ #: counter-options.php:215
139
+ #: counter.php:1442
140
+ #@ cpd
141
+ msgid "Visitors per post"
142
+ msgstr "Besøgende per indlæg"
143
+
144
+ #: counter-options.php:216
145
+ #: counter-options.php:220
146
+ #@ cpd
147
+ msgid "How many posts do you want to see on dashboard page?"
148
+ msgstr "Hvor mange indlæg vil du se på kontrolpanel"
149
+
150
+ #: counter-options.php:219
151
+ #@ cpd
152
+ msgid "Latest Counts - Posts"
153
+ msgstr "Seneste læste - Indlæg"
154
+
155
+ #: counter-options.php:223
156
+ #@ cpd
157
+ msgid "Latest Counts - Days"
158
+ msgstr "Seneste læste - Dage"
159
+
160
+ #: counter-options.php:224
161
+ #: counter-options.php:228
162
+ #@ cpd
163
+ msgid "How many days do you want look back?"
164
+ msgstr "Hvor mange dage vil du se tilbage?"
165
+
166
+ #: counter-options.php:227
167
+ #@ cpd
168
+ msgid "Chart - Days"
169
+ msgstr "Diagram - Dage"
170
+
171
+ #: counter-options.php:231
172
+ #@ cpd
173
+ msgid "Chart - Height"
174
+ msgstr "Diagram - Højde"
175
+
176
+ #: counter-options.php:232
177
+ #@ cpd
178
+ msgid "Height of the biggest bar"
179
+ msgstr "Højde på den største søjle"
180
+
181
+ #: counter-options.php:236
182
+ #@ cpd
183
+ msgid "Countries"
184
+ msgstr "Lande"
185
+
186
+ #: counter-options.php:237
187
+ #@ cpd
188
+ msgid "How many countries do you want to see on dashboard page?"
189
+ msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
190
+
191
+ #: counter-options.php:250
192
+ msgid "Edit Posts"
193
+ msgstr "Redigér indlæg"
194
+
195
+ #: counter-options.php:250
196
+ msgid "Edit Pages"
197
+ msgstr "Redigér sider"
198
+
199
+ #: counter-options.php:253
200
+ #@ cpd
201
+ msgid "Show in lists"
202
+ msgstr "Vis som liste"
203
+
204
+ #: counter-options.php:254
205
+ #@ cpd
206
+ msgid "Show \"Reads per Post\" in a new column in post management views."
207
+ msgstr "Vis \"Læst gange\" i en ny kolonne på Redigér indlæg-siden."
208
+
209
+ #: counter-options.php:258
210
+ #@ cpd
211
+ msgid "Start Values"
212
+ msgstr "Start værdier"
213
+
214
+ #: counter-options.php:259
215
+ #@ cpd
216
+ msgid "Here you can change the date of first count and add a start count."
217
+ msgstr "Her kan du ændre tællerens startdato, og sætte en start værdi."
218
+
219
+ #: counter-options.php:263
220
+ #@ cpd
221
+ msgid "Start date"
222
+ msgstr "Start dato"
223
+
224
+ #: counter-options.php:264
225
+ #@ cpd
226
+ msgid "Your old Counter starts at?"
227
+ msgstr "Din gamle tæller startede D.?"
228
+
229
+ #: counter-options.php:267
230
+ #: counter-options.php:271
231
+ #@ cpd
232
+ msgid "Start count"
233
+ msgstr "Start værdi"
234
+
235
+ #: counter-options.php:268
236
+ #@ cpd
237
+ msgid "Add this value to \"Total visitors\"."
238
+ msgstr "Tilføj denne værdi til \"Antal besøgende i alt\""
239
+
240
+ #: counter-options.php:272
241
+ #@ cpd
242
+ msgid "Add this value to \"Total reads\"."
243
+ msgstr "Tilføj denne værdi til \"Læst gange ialt\""
244
+
245
+ #: counter-options.php:208
246
+ #: counter-options.php:246
247
+ #: counter-options.php:276
248
+ #: counter-options.php:291
249
+ #@ cpd
250
+ msgid "Update options"
251
+ msgstr "Opdatér indstillinger"
252
+
253
+ #: counter-options.php:301
254
+ #@ cpd
255
+ msgid "GeoIP - Countries"
256
+ msgstr "GeoIP - Lande"
257
+
258
+ #: counter-options.php:310
259
+ #@ cpd
260
+ msgid "Update old counter data"
261
+ msgstr "Opdatér gamle tællerdata"
262
+
263
+ #: counter-options.php:323
264
+ #@ cpd
265
+ msgid "Update GeoIP database"
266
+ msgstr "Opdatér GeoIP-database"
267
+
268
+ #: counter-options.php:326
269
+ #@ cpd
270
+ msgid "Download a new version of GeoIP.dat file."
271
+ msgstr "Download en ny version af GeoIP.dat-filen."
272
+
273
+ #: counter-options.php:332
274
+ #@ cpd
275
+ msgid "More informations about GeoIP"
276
+ msgstr "Flere oplysninger om GeoIP"
277
+
278
+ #: counter-options.php:352
279
+ #: massbots.php:37
280
+ #@ cpd
281
+ msgid "Mass Bots"
282
+ msgstr "Massebots"
283
+
284
+ #: counter-options.php:356
285
+ #, php-format
286
+ #@ cpd
287
+ msgid "Show all IPs with more than %s page views per day"
288
+ msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
289
+
290
+ #: counter-options.php:357
291
+ #: notes.php:80
292
+ #: userperspan.php:47
293
+ #@ cpd
294
+ msgid "show"
295
+ msgstr "vis"
296
+
297
+ #: counter-options.php:365
298
+ #@ cpd
299
+ msgid "IP"
300
+ msgstr "IP"
301
+
302
+ #: counter-options.php:366
303
+ #: notes.php:84
304
+ #@ cpd
305
+ msgid "Date"
306
+ msgstr "Dato"
307
+
308
+ #: counter-options.php:367
309
+ #@ cpd
310
+ msgid "Client"
311
+ msgstr "Klient"
312
+
313
+ #: counter-options.php:368
314
+ #@ cpd
315
+ msgid "Views"
316
+ msgstr "Visninger"
317
+
318
+ #: counter-options.php:379
319
+ #: counter-options.php:401
320
+ #, php-format
321
+ #@ cpd
322
+ msgid "Delete these %s counts"
323
+ msgstr "Slet disse %s hits"
324
+
325
+ #: counter-options.php:410
326
+ #: counter-options.php:419
327
+ #@ cpd
328
+ msgid "Clean the database"
329
+ msgstr "Rens databasen"
330
+
331
+ #: counter-options.php:413
332
+ #@ cpd
333
+ 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."
334
+ 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."
335
+
336
+ #: counter-options.php:427
337
+ #: counter-options.php:436
338
+ #@ cpd
339
+ msgid "Reset the counter"
340
+ msgstr "Nulstil tælleren"
341
+
342
+ #: counter-options.php:430
343
+ #@ cpd
344
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
345
+ 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."
346
+
347
+ #: counter-options.php:448
348
+ #@ cpd
349
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
350
+ msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
351
+
352
+ #: counter-options.php:449
353
+ #@ cpd
354
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
355
+ msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
356
+
357
+ #: counter-options.php:452
358
+ #@ cpd
359
+ msgid "WARNING"
360
+ msgstr "ADVARSEL"
361
+
362
+ #: counter-options.php:453
363
+ #@ cpd
364
+ msgid "These tables (with ALL counter data) will be deleted."
365
+ msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
366
+
367
+ #: counter-options.php:455
368
+ #@ cpd
369
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
370
+ msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
371
+
372
+ #: counter-options.php:459
373
+ #@ cpd
374
+ msgid "Yes"
375
+ msgstr "Ja"
376
+
377
+ #: counter-options.php:460
378
+ #@ cpd
379
+ msgid "You are sure to disable Count per Day and delete all data?"
380
+ msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
381
+
382
+ #: counter-options.php:468
383
+ #@ cpd
384
+ msgid "Support"
385
+ msgstr "Support"
386
+
387
+ #: counter-options.php:476
388
+ #: counter.php:1409
389
+ #@ cpd
390
+ msgid "Bug? Problem? Question? Hint? Praise?"
391
+ msgstr "Ris, ros, forslag og kommentarer"
392
+
393
+ #: counter-options.php:478
394
+ #: counter.php:1410
395
+ #, php-format
396
+ #@ cpd
397
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
398
+ msgstr "Skriv en kommentar på <a href=\"%s\">plugin siden</a>."
399
+
400
+ #: counter.php:436
401
+ #@ cpd
402
+ msgid "Total reads"
403
+ msgstr "Læst gange ialt"
404
+
405
+ #: counter.php:437
406
+ #@ cpd
407
+ msgid "Reads today"
408
+ msgstr "Læst gange i dag"
409
+
410
+ #: counter.php:438
411
+ #@ cpd
412
+ msgid "Reads yesterday"
413
+ msgstr "Læst gange igår"
414
+
415
+ #: counter.php:439
416
+ #: counter.php:1149
417
+ #: counter.php:1437
418
+ #@ cpd
419
+ msgid "Total visitors"
420
+ msgstr "Antal besøgende i alt"
421
+
422
+ #: counter.php:440
423
+ #@ cpd
424
+ msgid "Visitors currently online"
425
+ msgstr "Besøgende online lige nu"
426
+
427
+ #: counter.php:441
428
+ #@ cpd
429
+ msgid "Visitors today"
430
+ msgstr "Besøgende i dag"
431
+
432
+ #: counter.php:442
433
+ #@ cpd
434
+ msgid "Visitors yesterday"
435
+ msgstr "Besøgende i går"
436
+
437
+ #: counter.php:443
438
+ #@ cpd
439
+ msgid "Visitors last week"
440
+ msgstr "Besøgende sidste weekend"
441
+
442
+ #: counter.php:444
443
+ #: counter.php:1151
444
+ #: counter.php:1438
445
+ #: counter.php:1444
446
+ #: userperspan.php:37
447
+ #@ cpd
448
+ msgid "Visitors per day"
449
+ msgstr "Besøgende per dag"
450
+
451
+ #: counter.php:445
452
+ #@ cpd
453
+ msgid "Counter starts on"
454
+ msgstr "Tæller starter på"
455
+
456
+ #: counter.php:560
457
+ #@ cpd
458
+ msgid "days"
459
+ msgstr "dage"
460
+
461
+ #: counter.php:563
462
+ #: counter.php:938
463
+ #: notes.php:51
464
+ #: notes.php:85
465
+ #@ cpd
466
+ msgid "Notes"
467
+ msgstr "Noter"
468
+
469
+ #: counter.php:587
470
+ #@ cpd
471
+ msgid "no reads at this time"
472
+ msgstr "Ikke læst pt."
473
+
474
+ #: counter.php:886
475
+ #, php-format
476
+ #@ cpd
477
+ msgid "The %s most visited posts in last %s days:"
478
+ msgstr "De %s mest sete indlæg i de sidste %s dage:"
479
+
480
+ #: counter.php:937
481
+ msgid "Show"
482
+ msgstr "Vis"
483
+
484
+ #: counter.php:971
485
+ #@ cpd
486
+ msgid "Other"
487
+ msgstr "Andre"
488
+
489
+ #: counter.php:1021
490
+ msgid "Edit Post"
491
+ msgstr "Redigér indlæg"
492
+
493
+ #: counter.php:1037
494
+ #: counter.php:1058
495
+ #: massbots.php:47
496
+ #: userperspan.php:68
497
+ msgid "Front page displays"
498
+ msgstr "Visninger af forsiden"
499
+
500
+ #: counter.php:1136
501
+ msgid "Settings"
502
+ msgstr "Indstillinger"
503
+
504
+ # tjekkes
505
+ #: counter.php:1245
506
+ #@ cpd
507
+ msgid "Reads"
508
+ msgstr "Læst gange"
509
+
510
+ #: counter.php:1325
511
+ #@ cpd
512
+ msgid "This post"
513
+ msgstr "Dette indlæg"
514
+
515
+ #: counter.php:1362
516
+ msgid "Title:"
517
+ msgstr "Titel:"
518
+
519
+ #: counter.php:1373
520
+ #@ cpd
521
+ msgid "Label"
522
+ msgstr "Etiket"
523
+
524
+ #: counter.php:1373
525
+ #@ cpd
526
+ msgid "empty = name above"
527
+ msgstr "tom = navn ovenfor"
528
+
529
+ #: counter.php:1439
530
+ #@ cpd
531
+ msgid "Reads per day"
532
+ msgstr "Læst gange per dag"
533
+
534
+ #: counter.php:1440
535
+ #@ cpd
536
+ msgid "Visitors per month"
537
+ msgstr "Besøgende per måned"
538
+
539
+ #: counter-options.php:241
540
+ #: counter.php:1441
541
+ #@ cpd
542
+ msgid "Browsers"
543
+ msgstr "Browsere"
544
+
545
+ #: counter.php:1443
546
+ #@ cpd
547
+ msgid "Latest Counts"
548
+ msgstr "Seneste læste"
549
+
550
+ #: counter.php:1445
551
+ msgid "Plugin"
552
+ msgstr "Plugin"
553
+
554
+ #: counter.php:1450
555
+ #@ cpd
556
+ msgid "Reads per Country"
557
+ msgstr "Læste per land"
558
+
559
+ #: counter.php:1466
560
+ #@ cpd
561
+ msgid "Statistics"
562
+ msgstr "Statistik"
563
+
564
+ #: counter-options.php:473
565
+ #: counter.php:1408
566
+ #: counter.php:1656
567
+ #, php-format
568
+ #@ cpd
569
+ msgid "Time for Count per Day: <code>%s</code>."
570
+ msgstr "Tid for Count per Day: <code>%s</code>."
571
+
572
+ #: notes.php:85
573
+ #@ cpd
574
+ msgid "(1 per day)"
575
+ msgstr "(1 per dag)"
576
+
577
+ #: notes.php:86
578
+ msgid "Action"
579
+ msgstr "Handling"
580
+
581
+ #: notes.php:91
582
+ #@ cpd
583
+ msgid "add"
584
+ msgstr "Tilføj"
585
+
586
+ #: notes.php:106
587
+ #@ cpd
588
+ msgid "save"
589
+ msgstr "Gem"
590
+
591
+ #: notes.php:107
592
+ #@ cpd
593
+ msgid "delete"
594
+ msgstr "Slet"
595
+
596
+ #: notes.php:118
597
+ #@ cpd
598
+ msgid "edit"
599
+ msgstr "Redigér"
600
+
601
+ #: geoip/geoip.php:91
602
+ #@ cpd
603
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
604
+ msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
605
+
606
+ #: geoip/geoip.php:115
607
+ #@ cpd
608
+ msgid "New GeoIP database installed."
609
+ msgstr "Ny GeoIP-database installeret."
610
+
611
+ #: geoip/geoip.php:117
612
+ #@ cpd
613
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
614
+ msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
615
+
616
+ #: counter-options.php:199
617
+ #@ cpd
618
+ msgid "Anonymous IP"
619
+ msgstr "Anonym IP"
620
+
621
+ #: counter-options.php:203
622
+ #@ cpd
623
+ msgid "Cache"
624
+ msgstr "Cache"
625
+
626
+ #: counter-options.php:204
627
+ #@ cpd
628
+ msgid "I use a cache plugin. Count these visits with ajax."
629
+ msgstr "Jeg bruger et cache plugin. tæl disse sider med ajax"
630
+
631
+ #: counter-options.php:242
632
+ #@ cpd
633
+ msgid "Substring of the user agent, separated by comma"
634
+ msgstr "Del streng af user agent, separeret med komma"
635
+
636
+ #: counter-options.php:281
637
+ #: counter-options.php:285
638
+ #@ cpd
639
+ msgid "Debug mode"
640
+ msgstr "Debug mode"
641
+
642
+ #: counter-options.php:286
643
+ #@ cpd
644
+ msgid "Show debug informations at the bottom of all pages."
645
+ msgstr "Vis Debug informationer i bunden af alle sider"
646
+
647
+ #: counter.php:1451
648
+ #@ cpd
649
+ msgid "Visitors per Country"
650
+ msgstr "Besøgende per land"
651
+
652
+ #: counter.php:1534
653
+ #@ cpd
654
+ msgid "Map"
655
+ msgstr "Kort"
656
+
657
+ #: userperspan.php:41
658
+ #@ cpd
659
+ msgid "Start"
660
+ msgstr "Start"
661
+
662
+ #: userperspan.php:43
663
+ #@ cpd
664
+ msgid "End"
665
+ msgstr "Slut"
666
+
667
+ #: userperspan.php:45
668
+ #@ cpd
669
+ msgid "PostID"
670
+ msgstr "Post ID"
671
+
672
+ #: userperspan.php:54
673
+ #@ cpd
674
+ msgid "no data found"
675
+ msgstr "Ingen data fundet"
676
+
677
+ #: counter-options.php:313
678
+ #@ cpd
679
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
680
+ msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
681
+
locale/cpd-da_DK.mo CHANGED
Binary file
locale/cpd-da_DK.po CHANGED
@@ -4,8 +4,8 @@ msgstr ""
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: 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,961 +13,669 @@ msgstr ""
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
-
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: Team Blogos <wordpress@blogos.dk>\n"
8
+ "Language-Team: Team Blogos <wordpress@blogos.dk>\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;_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:41
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Indstillingerne er blevet gemt"
26
 
27
+ #: counter-options.php:51
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:56
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "opdatér næste"
37
 
38
+ #: counter-options.php:94
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:101
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:107
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Tæller nulstillet."
54
 
55
+ #: counter-options.php:111
56
+ #: counter-options.php:460
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "AFINSTALLÉR Count per Day"
60
 
61
+ #: counter-options.php:118
62
+ #: counter-options.php:120
 
63
  #, php-format
64
  #@ cpd
65
  msgid "Table %s deleted"
66
  msgstr "Tabellen %s blev slettet"
67
 
68
+ #: counter-options.php:122
69
  #@ cpd
70
  msgid "Options deleted"
71
  msgstr "Indstillinger slettet"
72
 
73
+ #: counter-options.php:146
74
+ #: counter-options.php:445
75
  #@ cpd
76
  msgid "Uninstall"
77
  msgstr "Afinstallér"
78
 
79
+ #: counter-options.php:147
80
  #@ cpd
81
  msgid "Click here"
82
  msgstr "Klik her"
83
 
84
+ #: counter-options.php:147
85
  #@ cpd
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
+ #: counter-options.php:168
90
+ #@ cpd
91
+ msgid "Options"
92
+ msgstr "Indstillinger"
93
+
94
+ #: counter-options.php:173
95
  #@ cpd
96
  msgid "Online time"
97
  msgstr "Tid online"
98
 
99
+ #: counter-options.php:174
100
  #@ cpd
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
+ #: counter-options.php:177
105
  #@ cpd
106
+ msgid "Loged on Users"
107
  msgstr "Indloggede brugere"
108
 
109
+ #: counter-options.php:179
110
  #@ cpd
111
  msgid "count too"
112
  msgstr "tæl også"
113
 
114
+ #: counter-options.php:180
115
  #@ cpd
116
  msgid "until User Level"
117
  msgstr "til og med brugerniveau"
118
 
119
+ #: counter-options.php:191
120
  #@ cpd
121
  msgid "Auto counter"
122
  msgstr "Auto-tæller"
123
 
124
+ #: counter-options.php:192
125
  #@ cpd
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
+ #: counter-options.php:195
130
  #@ cpd
131
  msgid "Bots to ignore"
132
  msgstr "Ignorér følgende bots"
133
 
134
+ #: counter-options.php:199
135
  #@ cpd
136
  msgid "Anonymous IP"
137
  msgstr "Anonymt IP-nummer"
138
 
139
+ #: counter-options.php:203
140
  #@ cpd
141
  msgid "Cache"
142
  msgstr "Cache"
143
 
144
+ #: counter-options.php:204
145
  #@ cpd
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
+ #: counter-options.php:208
150
+ #: counter-options.php:246
151
+ #: counter-options.php:276
152
+ #: counter-options.php:291
153
  #@ cpd
154
  msgid "Update options"
155
  msgstr "Opdatér indstillinger"
156
 
157
+ #: counter-options.php:212
 
158
  msgid "Dashboard"
159
  msgstr "Kontrolpanel"
160
 
161
+ #: counter-options.php:215
162
+ #: counter.php:1442
163
  #@ cpd
164
  msgid "Visitors per post"
165
  msgstr "Besøgende per indlæg"
166
 
167
+ #: counter-options.php:216
168
+ #: counter-options.php:220
169
  #@ cpd
170
  msgid "How many posts do you want to see on dashboard page?"
171
  msgstr "Hvor mange indlæg vil du se på kontrolpanel"
172
 
173
+ #: counter-options.php:219
174
  #@ cpd
175
  msgid "Latest Counts - Posts"
176
  msgstr "Seneste læste - Indlæg"
177
 
178
+ #: counter-options.php:223
179
  #@ cpd
180
  msgid "Latest Counts - Days"
181
  msgstr "Seneste læste - Dage"
182
 
183
+ #: counter-options.php:224
184
+ #: counter-options.php:228
 
185
  #@ cpd
186
  msgid "How many days do you want look back?"
187
  msgstr "Hvor mange dage vil du se tilbage?"
188
 
189
+ #: counter-options.php:227
190
  #@ cpd
191
  msgid "Chart - Days"
192
  msgstr "Diagram - Dage"
193
 
194
+ #: counter-options.php:231
195
  #@ cpd
196
  msgid "Chart - Height"
197
  msgstr "Diagram - Højde"
198
 
199
+ #: counter-options.php:232
200
  #@ cpd
201
  msgid "Height of the biggest bar"
202
  msgstr "Højde på den største søjle"
203
 
204
+ #: counter-options.php:236
205
  #@ cpd
206
  msgid "Countries"
207
  msgstr "Lande"
208
 
209
+ #: counter-options.php:237
210
  #@ cpd
211
  msgid "How many countries do you want to see on dashboard page?"
212
  msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
213
 
214
+ #: counter-options.php:241
215
+ #: counter.php:1441
216
  #@ cpd
217
  msgid "Browsers"
218
  msgstr "Browsere"
219
 
220
+ #: counter-options.php:242
221
  #@ cpd
222
  msgid "Substring of the user agent, separated by comma"
223
  msgstr "Delstrenge, der identificerer en browser, kommasepareret"
224
 
225
+ #: counter-options.php:250
226
+ msgid "Edit Posts"
227
+ msgstr "Redigér indlæg"
228
+
229
+ #: counter-options.php:250
230
+ msgid "Edit Pages"
231
+ msgstr "Redigér sider"
232
+
233
+ #: counter-options.php:253
234
  #@ cpd
235
  msgid "Show in lists"
236
  msgstr "Vis som liste"
237
 
238
+ #: counter-options.php:254
239
  #@ cpd
240
  msgid "Show \"Reads per Post\" in a new column in post management views."
241
  msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
242
 
243
+ #: counter-options.php:258
244
  #@ cpd
245
  msgid "Start Values"
246
  msgstr "Startværdier"
247
 
248
+ #: counter-options.php:259
249
  #@ cpd
250
  msgid "Here you can change the date of first count and add a start count."
251
  msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
252
 
253
+ #: counter-options.php:263
254
  #@ cpd
255
  msgid "Start date"
256
  msgstr "Startdato"
257
 
258
+ #: counter-options.php:264
259
  #@ cpd
260
  msgid "Your old Counter starts at?"
261
  msgstr "Hvornår starter din gamle tæller?"
262
 
263
+ #: counter-options.php:267
264
+ #: counter-options.php:271
265
  #@ cpd
266
  msgid "Start count"
267
  msgstr "Start-tæller"
268
 
269
+ #: counter-options.php:268
270
  #@ cpd
271
  msgid "Add this value to \"Total visitors\"."
272
  msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
273
 
274
+ #: counter-options.php:272
275
  #@ cpd
276
  msgid "Add this value to \"Total reads\"."
277
  msgstr "Tilføj denne værdi til \"Læst i alt\"."
278
 
279
+ #: counter-options.php:281
280
+ #: counter-options.php:285
281
  #@ cpd
282
  msgid "Debug mode"
283
  msgstr "Debug-modus"
284
 
285
+ #: counter-options.php:286
286
  #@ cpd
287
  msgid "Show debug informations at the bottom of all pages."
288
  msgstr "Vis debug-information i bunden af alle sider."
289
 
290
+ #: counter-options.php:301
291
  #@ cpd
292
  msgid "GeoIP - Countries"
293
  msgstr "GeoIP - Lande"
294
 
295
+ #: counter-options.php:310
296
  #@ cpd
297
  msgid "Update old counter data"
298
  msgstr "Opdatér gamle tællerdata"
299
 
300
+ #: counter-options.php:323
301
  #@ cpd
302
  msgid "Update GeoIP database"
303
  msgstr "Opdatér GeoIP-database"
304
 
305
+ #: counter-options.php:326
306
  #@ cpd
307
  msgid "Download a new version of GeoIP.dat file."
308
  msgstr "Download en ny version af GeoIP.dat-filen."
309
 
310
+ #: counter-options.php:332
311
  #@ cpd
312
  msgid "More informations about GeoIP"
313
  msgstr "Flere oplysninger om GeoIP"
314
 
315
+ #: counter-options.php:352
316
+ #: massbots.php:37
317
  #@ cpd
318
  msgid "Mass Bots"
319
  msgstr "Massebots"
320
 
321
+ #: counter-options.php:356
322
  #, php-format
323
  #@ cpd
324
  msgid "Show all IPs with more than %s page views per day"
325
  msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
326
 
327
+ #: counter-options.php:357
328
+ #: notes.php:80
329
+ #: userperspan.php:47
330
  #@ cpd
331
  msgid "show"
332
  msgstr "vis"
333
 
334
+ #: counter-options.php:365
335
  #@ cpd
336
  msgid "IP"
337
  msgstr "IP"
338
 
339
+ #: counter-options.php:366
340
+ #: notes.php:84
341
  #@ cpd
 
342
  msgid "Date"
343
  msgstr "Dato"
344
 
345
+ #: counter-options.php:367
346
  #@ cpd
347
  msgid "Client"
348
  msgstr "Klient"
349
 
350
+ #: counter-options.php:368
351
  #@ cpd
352
  msgid "Views"
353
  msgstr "Visninger"
354
 
355
+ #: counter-options.php:379
356
+ #: counter-options.php:401
357
  #, php-format
358
  #@ cpd
359
  msgid "Delete these %s counts"
360
  msgstr "Slet disse %s hits"
361
 
362
+ #: counter-options.php:410
363
+ #: counter-options.php:419
364
  #@ cpd
365
  msgid "Clean the database"
366
  msgstr "Rens databasen"
367
 
368
+ #: counter-options.php:413
369
  #@ cpd
370
  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."
371
  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."
372
 
373
+ #: counter-options.php:427
374
+ #: counter-options.php:436
375
  #@ cpd
376
  msgid "Reset the counter"
377
  msgstr "Nulstil tælleren"
378
 
379
+ #: counter-options.php:430
380
  #@ cpd
381
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
382
  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."
383
 
384
+ #: counter-options.php:448
385
  #@ cpd
386
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
387
  msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
388
 
389
+ #: counter-options.php:449
390
  #@ cpd
391
  msgid "Here you can delete the tables and disable \"Count per Day\"."
392
  msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
393
 
394
+ #: counter-options.php:452
395
  #@ cpd
396
  msgid "WARNING"
397
  msgstr "ADVARSEL"
398
 
399
+ #: counter-options.php:453
400
  #@ cpd
401
  msgid "These tables (with ALL counter data) will be deleted."
402
  msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
403
 
404
+ #: counter-options.php:455
405
  #@ cpd
406
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
407
  msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
408
 
409
+ #: counter-options.php:459
 
410
  #@ cpd
411
  msgid "Yes"
412
  msgstr "Ja"
413
 
414
+ #: counter-options.php:460
415
  #@ cpd
416
  msgid "You are sure to disable Count per Day and delete all data?"
417
  msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
418
 
419
+ #: counter-options.php:468
420
  #@ cpd
421
  msgid "Support"
422
  msgstr "Support"
423
 
424
+ #: counter-options.php:473
425
+ #: counter.php:1408
426
+ #: counter.php:1656
427
  #, php-format
428
  #@ cpd
429
  msgid "Time for Count per Day: <code>%s</code>."
430
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
431
 
432
+ #: counter-options.php:476
433
+ #: counter.php:1409
434
  #@ cpd
435
  msgid "Bug? Problem? Question? Hint? Praise?"
436
  msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
437
 
438
+ #: counter-options.php:478
439
+ #: counter.php:1410
440
  #, php-format
441
  #@ cpd
442
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
443
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
444
 
445
+ #: counter.php:436
 
446
  #@ cpd
447
  msgid "Total reads"
448
+ msgstr "Læst i alt"
449
 
450
+ #: counter.php:437
 
451
  #@ cpd
452
  msgid "Reads today"
453
+ msgstr "Læst i dag"
454
 
455
+ #: counter.php:438
 
456
  #@ cpd
457
  msgid "Reads yesterday"
458
+ msgstr "Læst i går"
459
 
460
+ #: counter.php:439
461
+ #: counter.php:1149
462
+ #: counter.php:1437
 
463
  #@ cpd
464
  msgid "Total visitors"
465
  msgstr "Antal besøgende i alt"
466
 
467
+ #: counter.php:440
 
468
  #@ cpd
469
  msgid "Visitors currently online"
470
  msgstr "Besøgende online lige nu"
471
 
472
+ #: counter.php:441
 
473
  #@ cpd
474
  msgid "Visitors today"
475
  msgstr "Besøgende i dag"
476
 
477
+ #: counter.php:442
 
478
  #@ cpd
479
  msgid "Visitors yesterday"
480
  msgstr "Besøgende i går"
481
 
482
+ #: counter.php:443
 
483
  #@ cpd
484
  msgid "Visitors last week"
485
  msgstr "Besøgende sidste weekend"
486
 
487
+ #: counter.php:444
488
+ #: counter.php:1151
489
+ #: counter.php:1438
490
+ #: counter.php:1444
491
+ #: userperspan.php:37
 
492
  #@ cpd
493
  msgid "Visitors per day"
494
  msgstr "Besøgende per dag"
495
 
496
+ #: counter.php:445
 
 
497
  #@ cpd
498
  msgid "Counter starts on"
499
  msgstr "Tæller starter på"
500
 
501
+ #: counter.php:560
502
+ #@ cpd
503
+ msgid "days"
504
+ msgstr "dage"
505
+
506
+ #: counter.php:563
507
+ #: counter.php:938
508
+ #: notes.php:51
509
+ #: notes.php:85
510
  #@ cpd
511
  msgid "Notes"
512
  msgstr "Noter"
513
 
514
+ #: counter.php:587
515
+ #@ cpd
516
+ msgid "no reads at this time"
517
+ msgstr "Ikke læst pt."
518
+
519
+ #: counter.php:886
520
  #, php-format
521
  #@ cpd
522
  msgid "The %s most visited posts in last %s days:"
523
  msgstr "De %s mest sete indlæg i de sidste %s dage:"
524
 
525
+ #: counter.php:937
 
526
  msgid "Show"
527
  msgstr "Vis"
528
 
529
+ #: counter.php:971
530
  #@ cpd
531
  msgid "Other"
532
  msgstr "Andre"
533
 
534
+ #: counter.php:1021
 
535
  msgid "Edit Post"
536
  msgstr "Redigér indlæg"
537
 
538
+ #: counter.php:1037
539
+ #: counter.php:1058
540
+ #: massbots.php:47
541
+ #: userperspan.php:68
542
  msgid "Front page displays"
543
  msgstr "Visninger af forsiden"
544
 
545
+ #: counter.php:1136
 
 
 
546
  msgid "Settings"
547
  msgstr "Indstillinger"
548
 
549
  # tjekkes
550
+ #: counter.php:1245
 
 
 
551
  #@ cpd
552
  msgid "Reads"
553
+ msgstr "Læst"
554
 
555
+ #: counter.php:1325
556
  #@ cpd
557
  msgid "This post"
558
  msgstr "Dette indlæg"
559
 
560
+ #: counter.php:1362
561
+ msgid "Title:"
562
+ msgstr "Titel:"
563
+
564
+ #: counter.php:1373
565
+ #@ cpd
566
+ msgid "Label"
567
+ msgstr "Etiket"
568
+
569
+ #: counter.php:1373
570
+ #@ cpd
571
+ msgid "empty = name above"
572
+ msgstr "tom = navn ovenfor"
573
+
574
+ #: counter.php:1439
575
  #@ cpd
576
  msgid "Reads per day"
577
+ msgstr "Læst per dag"
578
 
579
+ #: counter.php:1440
 
580
  #@ cpd
581
  msgid "Visitors per month"
582
  msgstr "Besøgende per måned"
583
 
584
+ #: counter.php:1443
585
  #@ cpd
586
  msgid "Latest Counts"
587
  msgstr "Seneste læste"
588
 
589
+ #: counter.php:1445
 
590
  msgid "Plugin"
591
  msgstr "Plugin"
592
 
593
+ #: counter.php:1450
594
  #@ cpd
595
  msgid "Reads per Country"
596
+ msgstr "Læst per land"
597
 
598
+ #: counter.php:1451
599
  #@ cpd
600
  msgid "Visitors per Country"
601
  msgstr "Besøgende per land"
602
 
603
+ #: counter.php:1466
 
604
  #@ cpd
605
  msgid "Statistics"
606
  msgstr "Statistik"
607
 
608
+ #: counter.php:1534
 
609
  #@ cpd
610
  msgid "Map"
611
  msgstr "Kort"
612
 
613
+ #: notes.php:85
614
+ #@ cpd
615
+ msgid "(1 per day)"
616
+ msgstr "(1 gang per dag)"
617
+
618
+ #: notes.php:86
619
  msgid "Action"
620
  msgstr "Handling"
621
 
622
+ #: notes.php:91
623
  #@ cpd
624
  msgid "add"
625
  msgstr "tilføj"
626
 
627
+ #: notes.php:106
628
  #@ cpd
629
  msgid "save"
630
  msgstr "gem"
631
 
632
+ #: notes.php:107
633
  #@ cpd
634
  msgid "delete"
635
  msgstr "slet"
636
 
637
+ #: notes.php:118
638
  #@ cpd
639
  msgid "edit"
640
  msgstr "redigér"
641
 
642
+ #: userperspan.php:41
643
  #@ cpd
644
  msgid "Start"
645
  msgstr "Start"
646
 
647
+ #: userperspan.php:43
648
  #@ cpd
649
  msgid "End"
650
  msgstr "Slut"
651
 
652
+ #: userperspan.php:45
653
  #@ cpd
654
  msgid "PostID"
655
  msgstr "Indlægs-id"
656
 
657
+ #: userperspan.php:54
658
  #@ cpd
659
  msgid "no data found"
660
  msgstr "ingen data fundet"
661
 
662
+ #: geoip/geoip.php:91
663
  #@ cpd
664
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
665
  msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
666
 
667
+ #: geoip/geoip.php:115
668
  #@ cpd
669
  msgid "New GeoIP database installed."
670
  msgstr "Ny GeoIP-database installeret."
671
 
672
+ #: geoip/geoip.php:117
673
  #@ cpd
674
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
675
  msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
676
 
677
+ #: counter-options.php:313
678
  #@ cpd
679
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
680
  msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
681
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-de_DE.mo CHANGED
Binary file
locale/cpd-de_DE.po CHANGED
@@ -19,954 +19,724 @@ 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 "Einstellungen aktualisiert"
26
 
27
- #: counter-options.php:112
28
  #, php-format
29
  #@ cpd
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
-
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Textdomain-Support: yes"
21
 
22
+ #: counter-options.php:43
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Einstellungen aktualisiert"
26
 
27
+ #: counter-options.php:108
28
  #, php-format
29
  #@ cpd
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:118
34
+ #: counter-options.php:480
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DEINSTALLIERE Count per Day"
38
 
39
+ #: counter-options.php:123
40
+ #: counter-options.php:125
41
+ #: counter-options.php:127
42
  #, php-format
43
  #@ cpd
44
  msgid "Table %s deleted"
45
  msgstr "Tabelle %s gel&ouml;scht"
46
 
47
+ #: counter-options.php:129
48
  #@ cpd
49
  msgid "Options deleted"
50
  msgstr "Einstellungen gel&ouml;scht"
51
 
52
+ #: counter-options.php:153
53
+ #: counter-options.php:465
54
  #@ cpd
55
  msgid "Uninstall"
56
  msgstr "Deinstallation"
57
 
58
+ #: counter-options.php:154
59
  #@ cpd
60
  msgid "Click here"
61
  msgstr "Klick hier"
62
 
63
+ #: counter-options.php:154
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:175
69
+ #@ cpd
70
+ msgid "Options"
71
+ msgstr "Einstellungen"
72
+
73
+ #: counter-options.php:186
74
  #@ cpd
75
  msgid "Online time"
76
  msgstr "Onlinezeit"
77
 
78
+ #: counter-options.php:187
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:190
84
  #@ cpd
85
+ msgid "Loged on Users"
86
  msgstr "Angemeldete Benutzer"
87
 
88
+ #: counter-options.php:192
89
  #@ cpd
90
  msgid "count too"
91
  msgstr "auch mit z&auml;hlen"
92
 
93
+ #: counter-options.php:204
94
  #@ cpd
95
  msgid "Auto counter"
96
  msgstr "Auto-Counter"
97
 
98
+ #: counter-options.php:205
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:208
104
  #@ cpd
105
  msgid "Bots to ignore"
106
  msgstr "Spam/Suchmaschinen Bots ignorieren"
107
 
108
+ #: counter-options.php:315
109
  #@ cpd
110
  msgid "Update options"
111
  msgstr "Einstellungen aktualisieren"
112
 
113
+ #: counter-options.php:429
114
+ #: counter-options.php:438
115
  #@ cpd
116
  msgid "Clean the database"
117
  msgstr "Datenbank aufr&auml;umen"
118
 
119
+ #: counter-options.php:432
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:468
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:469
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:472
135
  #@ cpd
136
  msgid "WARNING"
137
  msgstr "WARNUNG"
138
 
139
+ #: counter-options.php:473
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:475
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:479
 
150
  #@ cpd
151
  msgid "Yes"
152
  msgstr "Ja, los!"
153
 
154
+ #: counter-options.php:480
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:1576
160
+ #: counter.php:1891
161
  #@ cpd
162
  msgid "Statistics"
163
  msgstr "Statistiken"
164
 
165
+ #: counter.php:570
166
+ #: counter.php:1322
167
+ #: counter.php:1541
168
+ #: counter.php:1962
169
  #@ cpd
170
  msgid "Total visitors"
171
  msgstr "Besucher gesamt"
172
 
173
+ #: counter.php:571
174
+ #: counter.php:1967
175
  #@ cpd
176
  msgid "Visitors currently online"
177
  msgstr "Besucher momentan online"
178
 
179
+ #: counter.php:572
180
+ #: counter.php:1963
181
  #@ cpd
182
  msgid "Visitors today"
183
  msgstr "Besucher heute"
184
 
185
+ #: counter.php:573
186
+ #: counter.php:1964
187
  #@ cpd
188
  msgid "Visitors yesterday"
189
  msgstr "Besucher gestern"
190
 
191
+ #: counter.php:574
192
+ #: counter.php:1965
193
  #@ cpd
194
  msgid "Visitors last week"
195
  msgstr "Besucher letzte Woche"
196
 
197
+ #: counter.php:576
198
+ #: counter.php:1968
 
199
  #@ cpd
200
  msgid "Counter starts on"
201
  msgstr "gez&auml;hlt ab"
202
 
203
+ #: counter.php:575
204
+ #: counter.php:1324
205
+ #: counter.php:1542
206
+ #: counter.php:1548
207
+ #: counter.php:1966
208
+ #: userperspan.php:36
209
  #@ cpd
210
  msgid "Visitors per day"
211
  msgstr "Besucher pro Tag"
212
 
213
+ #: counter.php:1544
 
214
  #@ cpd
215
  msgid "Visitors per month"
216
  msgstr "Besucher pro Monat"
217
 
218
+ #: counter-options.php:232
219
+ #: counter.php:1546
220
  #@ cpd
221
  msgid "Visitors per post"
222
  msgstr "Besucher pro Artikel"
223
 
224
+ #: counter-options.php:114
225
  #@ cpd
226
  msgid "Counter reseted."
227
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
228
 
229
+ #: counter-options.php:233
230
+ #: counter-options.php:237
231
  #@ cpd
232
  msgid "How many posts do you want to see on dashboard page?"
233
  msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
234
 
235
+ #: counter-options.php:236
236
  #@ cpd
237
  msgid "Latest Counts - Posts"
238
  msgstr "Aktuelle Besuche - Artikel"
239
 
240
+ #: counter-options.php:240
241
  #@ cpd
242
  msgid "Latest Counts - Days"
243
  msgstr "Aktuelle Besuche - Tage"
244
 
245
+ #: counter-options.php:241
246
+ #: counter-options.php:245
 
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
250
 
251
+ #: counter-options.php:274
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "In &Uuml;bersichten anzeigen"
255
 
256
+ #: counter-options.php:275
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
260
 
261
+ #: counter-options.php:447
262
+ #: counter-options.php:456
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Z&auml;hler zur&uuml;cksetzen"
266
 
267
+ #: counter-options.php:450
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  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!"
271
 
272
+ #: counter.php:1048
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
277
 
278
+ #: counter.php:1309
 
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr ""
282
 
283
+ #: counter.php:1424
 
 
 
284
  #@ cpd
285
  msgid "Reads"
286
+ msgstr "Besucher"
287
 
288
+ #: counter.php:1547
289
  #@ cpd
290
  msgid "Latest Counts"
291
  msgstr "Letzte Seitenaufrufe"
292
 
293
+ #: counter-options.php:244
294
  #@ cpd
295
  msgid "Chart - Days"
296
  msgstr "Diagramm - Tage"
297
 
298
+ #: counter-options.php:248
299
  #@ cpd
300
  msgid "Chart - Height"
301
  msgstr "Diagramm - H&ouml;he"
302
 
303
+ #: counter-options.php:249
304
  #@ cpd
305
  msgid "Height of the biggest bar"
306
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
307
 
308
+ #: counter.php:714
309
+ #@ cpd
310
+ msgid "no reads at this time"
311
+ msgstr "keine Seitenaufrufe"
312
+
313
+ #: counter.php:688
314
+ #@ cpd
315
+ msgid "days"
316
+ msgstr "Tage"
317
+
318
+ #: counter.php:1958
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "Diese Seite"
322
 
323
+ #: counter-options.php:229
324
  #@ default
325
  msgid "Dashboard"
326
  msgstr ""
327
 
328
+ #: counter.php:1543
329
  #@ cpd
330
  msgid "Reads per day"
331
  msgstr "Seitenaufrufe pro Tag"
332
 
333
+ #: counter-options.php:54
334
  #, php-format
335
  #@ cpd
336
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
337
  msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
338
 
339
+ #: counter-options.php:59
340
  #@ cpd
341
  msgid "update next"
342
  msgstr "weiter aktualisieren"
343
 
344
+ #: counter-options.php:324
345
  #@ cpd
346
  msgid "GeoIP - Countries"
347
  msgstr "GeoIP - L&auml;nder"
348
 
349
+ #: counter-options.php:333
350
  #@ cpd
351
  msgid "Update old counter data"
352
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
353
 
354
+ #: counter-options.php:346
355
  #@ cpd
356
  msgid "Update GeoIP database"
357
  msgstr "Aktualisiere GeoIP Datenbank"
358
 
359
+ #: counter-options.php:349
360
  #@ cpd
361
  msgid "Download a new version of GeoIP.dat file."
362
  msgstr "Neue Version von GeoIP.dat herunterladen."
363
 
364
+ #: counter-options.php:355
365
  #@ cpd
366
  msgid "More informations about GeoIP"
367
  msgstr "Mehr Informationen über GeoIP"
368
 
369
+ #: counter.php:1560
370
  #@ cpd
371
  msgid "Reads per Country"
372
  msgstr "Seitenaufrufe pro Land"
373
 
374
+ #: geoip/-geoip.php:123
375
+ #: geoip/geoip.php:132
376
  #@ cpd
377
  msgid "New GeoIP database installed."
378
  msgstr "Neue GeoIP Datenbank installiert."
379
 
380
+ #: geoip/-geoip.php:125
381
+ #: geoip/geoip.php:134
382
  #@ cpd
383
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
384
  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."
385
 
386
+ #: geoip/-geoip.php:99
387
+ #: geoip/geoip.php:108
388
  #@ cpd
389
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
390
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
391
 
392
+ #: counter-options.php:253
393
  #@ cpd
394
  msgid "Countries"
395
  msgstr "L&auml;nder"
396
 
397
+ #: counter-options.php:254
398
  #@ cpd
399
  msgid "How many countries do you want to see on dashboard page?"
400
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
401
 
402
+ #: counter-options.php:101
403
  #, php-format
404
  #@ cpd
405
  msgid "Mass Bots cleaned. %s counts deleted."
406
  msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
407
 
408
+ #: counter-options.php:370
409
+ #: massbots.php:37
410
  #@ cpd
411
  msgid "Mass Bots"
412
  msgstr "Massen-Bots"
413
 
414
+ #: counter-options.php:374
415
  #, php-format
416
  #@ cpd
417
  msgid "Show all IPs with more than %s page views per day"
418
  msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
419
 
420
+ #: counter-options.php:375
421
+ #: notes.php:80
422
+ #: userperspan.php:46
423
  #@ cpd
424
  msgid "show"
425
  msgstr "anzeigen"
426
 
427
+ #: counter-options.php:397
428
+ #: counter-options.php:419
429
  #, php-format
430
  #@ cpd
431
  msgid "Delete these %s counts"
432
  msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
433
 
434
+ #: counter.php:1144
435
  #@ cpd
436
  msgid "Other"
437
  msgstr "Sonstige"
438
 
439
+ #: counter.php:1239
440
+ #: massbots.php:54
441
+ #: userperspan.php:66
442
  #@ default
443
  msgid "Front page displays"
444
  msgstr ""
445
 
446
+ #: counter-options.php:258
447
+ #: counter.php:1553
448
  #@ cpd
449
  msgid "Browsers"
450
  msgstr "Browser"
451
 
452
+ #: counter-options.php:383
453
  #@ cpd
454
  msgid "IP"
455
  msgstr "IP"
456
 
457
+ #: counter-options.php:384
458
+ #: notes.php:84
459
  #@ cpd
460
  #@ default
461
  msgid "Date"
462
+ msgstr "Datum"
463
 
464
+ #: counter-options.php:385
465
  #@ cpd
466
  msgid "Client"
467
  msgstr "Browser"
468
 
469
+ #: counter-options.php:386
470
  #@ cpd
471
  msgid "Views"
472
  msgstr "Seitenaufrufe"
473
 
474
+ #: counter-options.php:283
475
  #@ cpd
476
  msgid "Start Values"
477
  msgstr "Startwerte"
478
 
479
+ #: counter-options.php:287
480
  #@ cpd
481
  msgid "Here you can change the date of first count and add a start count."
482
  msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
483
 
484
+ #: counter-options.php:291
485
  #@ cpd
486
  msgid "Start date"
487
  msgstr "Startdatum"
488
 
489
+ #: counter-options.php:292
490
  #@ cpd
491
  msgid "Your old Counter starts at?"
492
  msgstr "Dein alter Z&auml;hler begann am?"
493
 
494
+ #: counter-options.php:295
495
+ #: counter-options.php:299
496
  #@ cpd
497
  msgid "Start count"
498
  msgstr "Startz&auml;hlerstand"
499
 
500
+ #: counter-options.php:296
501
  #@ cpd
502
  msgid "Add this value to \"Total visitors\"."
503
  msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
504
 
505
+ #: counter-options.php:488
506
  #@ cpd
507
  msgid "Support"
508
  msgstr "Kontakt"
509
 
510
+ #: counter.php:1511
511
  #@ cpd
512
  msgid "Bug? Problem? Question? Hint? Praise?"
513
  msgstr "Bug? Problem? Frage? Tipp? Lob?"
514
 
515
+ #: counter.php:1512
516
  #, php-format
517
  #@ cpd
518
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
519
  msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
520
 
521
+ #: counter.php:1103
522
  #@ default
523
  msgid "Show"
524
  msgstr ""
525
 
526
+ #: counter.php:1224
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr ""
530
 
531
+ #: counter.php:1510
532
  #, php-format
533
  #@ cpd
534
  msgid "Time for Count per Day: <code>%s</code>."
535
  msgstr "Zeit bei Count per Day: <code>%s</code>"
536
 
537
+ #: counter-options.php:193
538
  #@ cpd
539
  msgid "until User Level"
540
  msgstr "bis Benutzerlevel"
541
 
542
+ #: counter.php:1549
543
  #@ default
544
  msgid "Plugin"
545
  msgstr ""
546
 
547
+ #: counter.php:691
548
+ #: counter.php:1105
549
+ #: notes.php:51
550
+ #: notes.php:85
551
  #@ cpd
552
  msgid "Notes"
553
  msgstr "Notizen"
554
 
555
+ #: notes.php:86
556
  #@ default
557
  msgid "Action"
558
  msgstr ""
559
 
560
+ #: notes.php:91
561
  #@ cpd
562
  msgid "add"
563
  msgstr "hinzuf&uuml;gen"
564
 
565
+ #: notes.php:106
566
  #@ cpd
567
  msgid "save"
568
  msgstr "speichern"
569
 
570
+ #: notes.php:107
571
  #@ cpd
572
  msgid "delete"
573
  msgstr "l&ouml;schen"
574
 
575
+ #: notes.php:118
576
  #@ cpd
577
  msgid "edit"
578
  msgstr "&auml;ndern"
579
 
580
+ #: notes.php:85
581
+ #@ cpd
582
+ msgid "(1 per day)"
583
+ msgstr "(1 pro Tag)"
584
+
585
+ #: counter-options.php:300
586
  #@ cpd
587
  msgid "Add this value to \"Total reads\"."
588
  msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
589
 
590
+ #: counter.php:566
591
+ #: counter.php:1959
592
  #@ cpd
593
  msgid "Total reads"
594
  msgstr "Seitenaufrufe gesamt"
595
 
596
+ #: counter.php:567
597
+ #: counter.php:1960
598
  #@ cpd
599
  msgid "Reads today"
600
  msgstr "Seitenaufrufe heute"
601
 
602
+ #: counter.php:568
603
+ #: counter.php:1961
604
  #@ cpd
605
  msgid "Reads yesterday"
606
  msgstr "Seitenaufrufe gestern"
607
 
608
+ #: counter.php:1644
 
609
  #@ cpd
610
  msgid "Map"
611
  msgstr "Weltkarte"
612
 
613
+ #: counter-options.php:212
614
  #@ cpd
615
  msgid "Anonymous IP"
616
  msgstr "Anonyme IP-Adresse"
617
 
618
+ #: counter-options.php:216
619
  #@ cpd
620
  msgid "Cache"
621
  msgstr "Cache"
622
 
623
+ #: counter-options.php:217
624
  #@ cpd
625
  msgid "I use a cache plugin. Count these visits with ajax."
626
  msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
627
 
628
+ #: counter-options.php:259
629
  #@ cpd
630
  msgid "Substring of the user agent, separated by comma"
631
  msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
632
 
633
+ #: counter.php:1561
634
  #@ cpd
635
  msgid "Visitors per Country"
636
  msgstr "Besucher pro Land"
637
 
638
+ #: counter-options.php:308
639
  #@ cpd
640
  msgid "Debug mode"
641
  msgstr "Debug Modus"
642
 
643
+ #: counter-options.php:310
644
  #@ cpd
645
  msgid "Show debug informations at the bottom of all pages."
646
  msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
647
 
648
+ #: userperspan.php:40
649
  #@ cpd
650
  msgid "Start"
651
  msgstr "Start"
652
 
653
+ #: userperspan.php:42
654
  #@ cpd
655
  msgid "End"
656
  msgstr "Ende"
657
 
658
+ #: userperspan.php:44
659
  #@ cpd
660
  msgid "PostID"
661
  msgstr "Artikel-ID"
662
 
663
+ #: userperspan.php:52
664
  #@ cpd
665
  msgid "no data found"
666
  msgstr "keine passenden Daten gefunden"
667
 
668
+ #: counter-options.php:336
669
  #@ cpd
670
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
671
  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."
672
 
673
+ #: counter-options.php:182
674
  #@ cpd
675
  msgid "Counter"
676
  msgstr "Z&auml;hler"
677
 
678
+ #: counter-options.php:262
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Lokale URLs"
682
 
683
+ #: counter-options.php:263
684
  #@ cpd
685
+ msgid "Show local referers too."
686
+ msgstr "Zeige auch lokale Referer."
687
 
688
+ #: counter-options.php:271
689
  #@ default
690
  msgid "Posts"
691
  msgstr ""
692
 
693
+ #: counter-options.php:271
694
  #@ default
695
  msgid "Pages"
696
  msgstr ""
697
 
698
+ #: counter.php:1233
699
  #@ default
700
  msgid "Category"
701
  msgstr ""
702
 
703
+ #: counter.php:1236
704
  #@ default
705
  msgid "Tag"
706
  msgstr ""
707
 
708
+ #: counter.php:1513
709
  #@ default
710
  msgid "License"
711
  msgstr ""
712
 
713
+ #: counter.php:1554
714
  #@ cpd
715
+ msgid "Referer"
716
  msgstr "Herkunft"
717
 
718
+ #: counter.php:1977
719
  #@ default
720
  msgid "Title"
721
  msgstr ""
722
 
723
+ #: counter-options.php:221
724
  #@ cpd
725
+ msgid "Save and show clients and referers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
726
  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."
727
 
728
+ #: counter-options.php:220
729
  #@ cpd
730
+ msgid "Clients and referers"
731
  msgstr "Browser und Herkunft"
732
 
733
+ #: counter.php:569
 
734
  #@ cpd
735
  msgid "Reads last week"
736
  msgstr "Seitenaufrufe letzte Woche"
737
 
738
+ #: counter.php:1545
 
739
  #@ cpd
740
  msgid "Reads per month"
741
  msgstr "Seitenaufrufe pro Monat"
742
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-el.mo DELETED
Binary file
locale/cpd-el.po DELETED
@@ -1,973 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day Development version\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: Polemos <temp2417@gmail.com>\n"
8
- "Language-Team: Elliniki Grothia <ellgrothia@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: Greek\n"
14
- "X-Poedit-Country: GREECE\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: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 "ενημέρωση επόμενων"
37
-
38
- #: counter-options.php:104
39
- #, php-format
40
- #@ cpd
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
@@ -13,960 +13,667 @@ msgstr ""
13
  "X-Poedit-Language: Spanish\n"
14
  "X-Poedit-Country: SPAIN\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 "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
-
13
  "X-Poedit-Language: Spanish\n"
14
  "X-Poedit-Country: SPAIN\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;_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:41
23
  msgid "Options updated"
24
  msgstr "Las opciones han sido guardadas"
25
 
 
 
26
  #@ cpd
27
+ #: counter-options.php:101
28
+ #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Base de datos borrada. %s filas borradas."
31
 
 
 
32
  #@ cpd
33
+ #: counter-options.php:111
34
+ #: counter-options.php:460
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DESINSTALA Count per Day"
37
 
 
 
 
 
38
  #@ cpd
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
41
+ #, php-format
42
  msgid "Table %s deleted"
43
  msgstr "La tabla %s ha sido borrada"
44
 
 
45
  #@ cpd
46
+ #: counter-options.php:122
47
  msgid "Options deleted"
48
  msgstr "Las opciones han sido canceladas"
49
 
 
 
50
  #@ cpd
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
  msgid "Uninstall"
54
  msgstr "Desinstala"
55
 
 
56
  #@ cpd
57
+ #: counter-options.php:147
58
  msgid "Click here"
59
  msgstr "Hacer click aquí"
60
 
 
61
  #@ cpd
62
+ #: counter-options.php:147
63
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
64
  msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
65
 
 
66
  #@ cpd
67
+ #: counter-options.php:168
68
+ msgid "Options"
69
+ msgstr "Opciones"
70
+
71
+ #@ cpd
72
+ #: counter-options.php:173
73
  msgid "Online time"
74
  msgstr "Tiempo online"
75
 
 
76
  #@ cpd
77
+ #: counter-options.php:174
78
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
79
  msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
80
 
 
81
  #@ cpd
82
+ #: counter-options.php:177
83
+ msgid "Loged on Users"
84
  msgstr "Usuarios conectados"
85
 
 
86
  #@ cpd
87
+ #: counter-options.php:179
88
  msgid "count too"
89
  msgstr "contar también"
90
 
 
91
  #@ cpd
92
+ #: counter-options.php:191
93
  msgid "Auto counter"
94
  msgstr "Auto contador"
95
 
 
96
  #@ cpd
97
+ #: counter-options.php:192
98
  msgid "Counts automatically single-posts and pages, no changes on template needed."
99
  msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
100
 
 
101
  #@ cpd
102
+ #: counter-options.php:195
103
  msgid "Bots to ignore"
104
  msgstr "Bots a ignorar"
105
 
 
106
  #@ cpd
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
  msgid "Update options"
112
  msgstr "Actualiza las opciones"
113
 
 
 
114
  #@ cpd
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
  msgid "Clean the database"
118
  msgstr "Borrar la base de datos"
119
 
 
120
  #@ cpd
121
+ #: counter-options.php:413
122
  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."
123
  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."
124
 
 
125
  #@ cpd
126
+ #: counter-options.php:448
127
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
128
  msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
129
 
 
130
  #@ cpd
131
+ #: counter-options.php:449
132
  msgid "Here you can delete the tables and disable \"Count per Day\"."
133
  msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
134
 
 
135
  #@ cpd
136
+ #: counter-options.php:452
137
  msgid "WARNING"
138
  msgstr "ATENCIÓN"
139
 
 
140
  #@ cpd
141
+ #: counter-options.php:453
142
  msgid "These tables (with ALL counter data) will be deleted."
143
  msgstr "Estas tablas (con TODOS los datos) serán borradas."
144
 
 
145
  #@ cpd
146
+ #: counter-options.php:455
147
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
148
  msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
149
 
 
 
150
  #@ cpd
151
+ #: counter-options.php:459
152
  msgid "Yes"
153
  msgstr "Sí"
154
 
 
155
  #@ cpd
156
+ #: counter-options.php:460
157
  msgid "You are sure to disable Count per Day and delete all data?"
158
  msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
159
 
 
 
160
  #@ cpd
161
+ #: counter.php:1466
162
  msgid "Statistics"
163
  msgstr "Estadísticas"
164
 
 
 
 
 
165
  #@ cpd
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
169
  msgid "Total visitors"
170
  msgstr "Total de visitas"
171
 
 
 
172
  #@ cpd
173
+ #: counter.php:440
174
  msgid "Visitors currently online"
175
  msgstr "Visitantes conectados"
176
 
 
 
177
  #@ cpd
178
+ #: counter.php:441
179
  msgid "Visitors today"
180
  msgstr "Hoy"
181
 
 
 
182
  #@ cpd
183
+ #: counter.php:442
184
  msgid "Visitors yesterday"
185
  msgstr "Ayer"
186
 
 
 
187
  #@ cpd
188
+ #: counter.php:443
189
  msgid "Visitors last week"
190
  msgstr "La semana anterior"
191
 
 
 
 
192
  #@ cpd
193
+ #: counter.php:445
194
  msgid "Counter starts on"
195
  msgstr "El contador comenzó el"
196
 
 
 
 
 
 
 
197
  #@ cpd
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
203
  msgid "Visitors per day"
204
  msgstr "Visitantes por día"
205
 
 
 
206
  #@ cpd
207
+ #: counter.php:1440
208
  msgid "Visitors per month"
209
  msgstr "Visitantes por mes"
210
 
 
 
211
  #@ cpd
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
  msgid "Visitors per post"
215
  msgstr "Visitantes por entrada"
216
 
 
217
  #@ cpd
218
+ #: counter-options.php:107
219
  msgid "Counter reseted."
220
  msgstr "El contador ha sido reinicializado."
221
 
 
 
222
  #@ cpd
223
+ #: counter-options.php:216
224
+ #: counter-options.php:220
225
  msgid "How many posts do you want to see on dashboard page?"
226
  msgstr "Número de entradas que quieres ver en el escritorio"
227
 
 
228
  #@ cpd
229
+ #: counter-options.php:219
230
  msgid "Latest Counts - Posts"
231
  msgstr "Últimos conteos - Entradas"
232
 
 
233
  #@ cpd
234
+ #: counter-options.php:223
235
  msgid "Latest Counts - Days"
236
  msgstr "Últimos conteos - Días"
237
 
 
 
 
238
  #@ cpd
239
+ #: counter-options.php:224
240
+ #: counter-options.php:228
241
  msgid "How many days do you want look back?"
242
  msgstr "¿Cuántos días hacia atrás quieres ver?"
243
 
 
244
  #@ cpd
245
+ #: counter-options.php:253
246
  msgid "Show in lists"
247
  msgstr "Mostrar en las listas"
248
 
 
249
  #@ cpd
250
+ #: counter-options.php:254
251
  msgid "Show \"Reads per Post\" in a new column in post management views."
252
  msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
253
 
 
 
254
  #@ cpd
255
+ #: counter-options.php:427
256
+ #: counter-options.php:436
257
  msgid "Reset the counter"
258
  msgstr "Reinicia el contador"
259
 
 
260
  #@ cpd
261
+ #: counter-options.php:430
262
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
263
  msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
264
 
 
 
265
  #@ cpd
266
+ #: counter.php:886
267
+ #, php-format
268
  msgid "The %s most visited posts in last %s days:"
269
  msgstr "Las %s entradas más visitadas en los últimos %s días:"
270
 
271
+ #: counter.php:1136
 
 
 
272
  msgid "Settings"
273
  msgstr "Configuración"
274
 
 
 
 
 
275
  #@ cpd
276
+ #: counter.php:1245
277
  msgid "Reads"
278
  msgstr "Visitas"
279
 
 
280
  #@ cpd
281
+ #: counter.php:1443
282
  msgid "Latest Counts"
283
  msgstr "Últimos conteos"
284
 
 
285
  #@ cpd
286
+ #: counter-options.php:227
287
  msgid "Chart - Days"
288
  msgstr "Gráfica - Días"
289
 
 
290
  #@ cpd
291
+ #: counter-options.php:231
292
  msgid "Chart - Height"
293
  msgstr "Gráfica - Altura"
294
 
 
295
  #@ cpd
296
+ #: counter-options.php:232
297
  msgid "Height of the biggest bar"
298
  msgstr "Altura de la categoría mayor"
299
 
 
300
  #@ cpd
301
+ #: counter.php:587
302
+ msgid "no reads at this time"
303
+ msgstr "sin lecturas en este momento"
304
+
305
+ #@ cpd
306
+ #: counter.php:560
307
+ msgid "days"
308
+ msgstr "días"
309
+
310
+ #@ cpd
311
+ #: counter.php:1325
312
  msgid "This post"
313
  msgstr "Este artículo"
314
 
315
+ #: counter-options.php:212
 
316
  msgid "Dashboard"
317
  msgstr "Escritorio"
318
 
319
+ #: counter-options.php:250
320
+ msgid "Edit Posts"
321
+ msgstr "Modifica entradas"
322
+
323
+ #: counter-options.php:250
324
+ msgid "Edit Pages"
325
+ msgstr "Modifica páginas"
326
+
327
+ #@ cpd
328
+ #: counter.php:1373
329
+ msgid "Label"
330
+ msgstr "Etiqueta"
331
+
332
  #@ cpd
333
+ #: counter.php:1373
334
+ msgid "empty = name above"
335
+ msgstr "vacío = nombre arriba"
336
+
337
+ #@ cpd
338
+ #: counter.php:1439
339
  msgid "Reads per day"
340
  msgstr "Lecturas por día"
341
 
 
 
342
  #@ cpd
343
+ #: counter-options.php:51
344
+ #, php-format
345
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
346
  msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
347
 
 
348
  #@ cpd
349
+ #: counter-options.php:56
350
  msgid "update next"
351
  msgstr "actualiza el próximo"
352
 
 
353
  #@ cpd
354
+ #: counter-options.php:301
355
  msgid "GeoIP - Countries"
356
  msgstr "GeoIP - Países"
357
 
 
358
  #@ cpd
359
+ #: counter-options.php:310
360
  msgid "Update old counter data"
361
  msgstr "Actualiza los datos antiguos"
362
 
 
363
  #@ cpd
364
+ #: counter-options.php:323
365
  msgid "Update GeoIP database"
366
  msgstr "Actualiza la base de datos de GeoIP"
367
 
 
368
  #@ cpd
369
+ #: counter-options.php:326
370
  msgid "Download a new version of GeoIP.dat file."
371
  msgstr "Decarga la nueva versión del archivo GeoIP.dat."
372
 
 
373
  #@ cpd
374
+ #: counter-options.php:332
375
  msgid "More informations about GeoIP"
376
  msgstr "Más información sobre GeoIP"
377
 
378
+ #: counter.php:1362
379
+ msgid "Title:"
380
+ msgstr "Título:"
381
+
382
  #@ cpd
383
+ #: counter.php:1450
384
  msgid "Reads per Country"
385
  msgstr "Lecturas por país"
386
 
 
387
  #@ cpd
388
+ #: geoip/geoip.php:115
389
  msgid "New GeoIP database installed."
390
  msgstr "La nueva base de datos de GeoIP ha sido instalada."
391
 
 
392
  #@ cpd
393
+ #: geoip/geoip.php:117
394
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
395
  msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos de la carpeta \"geoip\" están como 777."
396
 
 
397
  #@ cpd
398
+ #: geoip/geoip.php:91
399
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
400
  msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
401
 
 
402
  #@ cpd
403
+ #: counter-options.php:236
404
  msgid "Countries"
405
  msgstr "Países"
406
 
 
407
  #@ cpd
408
+ #: counter-options.php:237
409
  msgid "How many countries do you want to see on dashboard page?"
410
  msgstr "¿Cuántos países desea ver en el escritorio?"
411
 
 
 
412
  #@ cpd
413
+ #: counter-options.php:94
414
+ #, php-format
415
  msgid "Mass Bots cleaned. %s counts deleted."
416
  msgstr "Robots borrados. %s conteos borrados."
417
 
 
 
418
  #@ cpd
419
+ #: counter-options.php:352
420
+ #: massbots.php:37
421
  msgid "Mass Bots"
422
  msgstr "Robots"
423
 
 
 
424
  #@ cpd
425
+ #: counter-options.php:356
426
+ #, php-format
427
  msgid "Show all IPs with more than %s page views per day"
428
  msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
429
 
 
 
 
430
  #@ cpd
431
+ #: counter-options.php:357
432
+ #: notes.php:80
433
+ #: userperspan.php:47
434
  msgid "show"
435
  msgstr "muestra"
436
 
 
 
 
437
  #@ cpd
438
+ #: counter-options.php:379
439
+ #: counter-options.php:401
440
+ #, php-format
441
  msgid "Delete these %s counts"
442
  msgstr "Borra estos %s conteos"
443
 
 
444
  #@ cpd
445
+ #: counter.php:971
446
  msgid "Other"
447
  msgstr "Otro"
448
 
449
+ #: counter.php:1037
450
+ #: counter.php:1058
451
+ #: massbots.php:47
452
+ #: userperspan.php:68
453
  msgid "Front page displays"
454
  msgstr "Página inicial mostradas"
455
 
 
 
456
  #@ cpd
457
+ #: counter-options.php:241
458
+ #: counter.php:1441
459
  msgid "Browsers"
460
  msgstr "Navegador"
461
 
 
462
  #@ cpd
463
+ #: counter-options.php:365
464
  msgid "IP"
465
  msgstr "IP"
466
 
 
 
467
  #@ cpd
468
+ #: counter-options.php:366
469
+ #: notes.php:84
470
  msgid "Date"
471
  msgstr "Fecha"
472
 
 
473
  #@ cpd
474
+ #: counter-options.php:367
475
  msgid "Client"
476
  msgstr "Cliente"
477
 
 
478
  #@ cpd
479
+ #: counter-options.php:368
480
  msgid "Views"
481
  msgstr "Vistas"
482
 
 
483
  #@ cpd
484
+ #: counter-options.php:258
485
  msgid "Start Values"
486
  msgstr "Valores de inicio"
487
 
 
488
  #@ cpd
489
+ #: counter-options.php:259
490
  msgid "Here you can change the date of first count and add a start count."
491
  msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
492
 
 
493
  #@ cpd
494
+ #: counter-options.php:263
495
  msgid "Start date"
496
  msgstr "Fecha de inicio"
497
 
 
498
  #@ cpd
499
+ #: counter-options.php:264
500
  msgid "Your old Counter starts at?"
501
  msgstr "Su antiguo contador comienza el"
502
 
 
 
503
  #@ cpd
504
+ #: counter-options.php:267
505
+ #: counter-options.php:271
506
  msgid "Start count"
507
  msgstr "Iniciar el conteo"
508
 
 
509
  #@ cpd
510
+ #: counter-options.php:268
511
  msgid "Add this value to \"Total visitors\"."
512
  msgstr "Añadir este valor al \"Total de visitas\"."
513
 
 
514
  #@ cpd
515
+ #: counter-options.php:468
516
  msgid "Support"
517
  msgstr "Soporte"
518
 
 
519
  #@ cpd
520
+ #: counter-options.php:476
521
+ #: counter.php:1409
522
  msgid "Bug? Problem? Question? Hint? Praise?"
523
  msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
524
 
 
 
525
  #@ cpd
526
+ #: counter-options.php:478
527
+ #: counter.php:1410
528
+ #, php-format
529
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
530
  msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
531
 
532
+ #: counter.php:937
 
533
  msgid "Show"
534
  msgstr "Muestra"
535
 
536
+ #: counter.php:1021
 
537
  msgid "Edit Post"
538
  msgstr "Modifica entrada"
539
 
 
 
540
  #@ cpd
541
+ #: counter-options.php:473
542
+ #: counter.php:1408
543
+ #: counter.php:1656
544
+ #, php-format
545
  msgid "Time for Count per Day: <code>%s</code>."
546
  msgstr "Huso horario para Count per Day: <code>%s</code>."
547
 
 
548
  #@ cpd
549
+ #: counter-options.php:180
550
  msgid "until User Level"
551
  msgstr "hasta el Nivel de Usuario"
552
 
553
+ #: counter.php:1445
 
554
  msgid "Plugin"
555
  msgstr "Plugin"
556
 
 
 
 
557
  #@ cpd
558
+ #: counter.php:563
559
+ #: counter.php:938
560
+ #: notes.php:51
561
+ #: notes.php:85
562
  msgid "Notes"
563
  msgstr "Notas"
564
 
565
+ #: notes.php:86
 
566
  msgid "Action"
567
  msgstr "Acción"
568
 
 
569
  #@ cpd
570
+ #: notes.php:91
571
  msgid "add"
572
  msgstr "añade"
573
 
 
574
  #@ cpd
575
+ #: notes.php:106
576
  msgid "save"
577
  msgstr "salva"
578
 
 
579
  #@ cpd
580
+ #: notes.php:107
581
  msgid "delete"
582
  msgstr "borra"
583
 
 
584
  #@ cpd
585
+ #: notes.php:118
586
  msgid "edit"
587
  msgstr "modifica"
588
 
 
589
  #@ cpd
590
+ #: notes.php:85
591
+ msgid "(1 per day)"
592
+ msgstr "(1 por día)"
593
+
594
+ #@ cpd
595
+ #: counter-options.php:272
596
  msgid "Add this value to \"Total reads\"."
597
  msgstr "Añade este valor a \"Total de lecturas\"."
598
 
 
 
599
  #@ cpd
600
+ #: counter.php:436
601
  msgid "Total reads"
602
  msgstr "Total de lecturas"
603
 
 
 
604
  #@ cpd
605
+ #: counter.php:437
606
  msgid "Reads today"
607
  msgstr "Lecturas hoy"
608
 
 
 
609
  #@ cpd
610
+ #: counter.php:438
611
  msgid "Reads yesterday"
612
  msgstr "Lecturas ayer"
613
 
 
 
614
  #@ cpd
615
+ #: counter.php:1534
616
  msgid "Map"
617
  msgstr "Mapa"
618
 
 
619
  #@ cpd
620
+ #: counter-options.php:199
621
  msgid "Anonymous IP"
622
  msgstr "IP anónimo"
623
 
 
624
  #@ cpd
625
+ #: counter-options.php:203
626
  msgid "Cache"
627
  msgstr "Cache"
628
 
 
629
  #@ cpd
630
+ #: counter-options.php:204
631
  msgid "I use a cache plugin. Count these visits with ajax."
632
  msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
633
 
 
634
  #@ cpd
635
+ #: counter-options.php:242
636
  msgid "Substring of the user agent, separated by comma"
637
  msgstr "Subcadena del user agent, separados por comas"
638
 
 
639
  #@ cpd
640
+ #: counter-options.php:281
641
+ #: counter-options.php:285
642
  msgid "Debug mode"
643
  msgstr "Modo debug"
644
 
 
645
  #@ cpd
646
+ #: counter-options.php:286
647
  msgid "Show debug informations at the bottom of all pages."
648
  msgstr "Muestra información de debug al final de todas las páginas."
649
 
 
650
  #@ cpd
651
+ #: counter.php:1451
652
  msgid "Visitors per Country"
653
  msgstr "Visitas por país"
654
 
 
655
  #@ cpd
656
+ #: userperspan.php:41
657
  msgid "Start"
658
  msgstr "Inicio"
659
 
 
660
  #@ cpd
661
+ #: userperspan.php:43
662
  msgid "End"
663
  msgstr "Fin"
664
 
 
665
  #@ cpd
666
+ #: userperspan.php:45
667
  msgid "PostID"
668
  msgstr "ID entrada"
669
 
 
670
  #@ cpd
671
+ #: userperspan.php:54
672
  msgid "no data found"
673
  msgstr "no se han encontrado datos"
674
 
 
675
  #@ cpd
676
+ #: counter-options.php:313
677
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
678
  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!"
679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-fr_FR.mo CHANGED
Binary file
locale/cpd-fr_FR.po CHANGED
@@ -13,959 +13,668 @@ msgstr ""
13
  "X-Poedit-Language: French\n"
14
  "X-Poedit-Country: FRANCE\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: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
-
13
  "X-Poedit-Language: French\n"
14
  "X-Poedit-Country: FRANCE\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;_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:41
23
  #@ cpd
 
24
  msgid "Options updated"
25
  msgstr "Paramètres mis à jour"
26
 
27
+ #: counter-options.php:101
 
28
  #, php-format
29
+ #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Base de données nettoyée. %s lignes supprimées."
32
 
33
+ #: counter-options.php:111
34
+ #: counter-options.php:460
35
  #@ cpd
 
 
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "Désinstaller Count per Day"
38
 
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
 
 
41
  #, php-format
42
+ #@ cpd
43
  msgid "Table %s deleted"
44
  msgstr "Table %s supprimée"
45
 
46
+ #: counter-options.php:122
47
  #@ cpd
 
48
  msgid "Options deleted"
49
  msgstr "Paramètres supprimés"
50
 
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
  #@ cpd
 
 
54
  msgid "Uninstall"
55
  msgstr "Désinstaller"
56
 
57
+ #: counter-options.php:147
58
  #@ cpd
 
59
  msgid "Click here"
60
  msgstr "Cliquez ici"
61
 
62
+ #: counter-options.php:147
63
  #@ cpd
 
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
+ #: counter-options.php:168
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Options"
71
+
72
+ #: counter-options.php:173
73
  #@ cpd
 
74
  msgid "Online time"
75
  msgstr "Temps en ligne"
76
 
77
+ #: counter-options.php:174
78
  #@ cpd
 
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
+ #: counter-options.php:177
83
  #@ cpd
84
+ msgid "Loged on Users"
 
85
  msgstr "Utilisateurs Connectés"
86
 
87
+ #: counter-options.php:179
88
  #@ cpd
 
89
  msgid "count too"
90
  msgstr "compter aussi"
91
 
92
+ #: counter-options.php:191
93
  #@ cpd
 
94
  msgid "Auto counter"
95
  msgstr "Compteur automatique"
96
 
97
+ #: counter-options.php:192
98
  #@ cpd
 
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
+ #: counter-options.php:195
103
  #@ cpd
 
104
  msgid "Bots to ignore"
105
  msgstr "Robots à ignorer"
106
 
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
  #@ cpd
 
112
  msgid "Update options"
113
  msgstr "Mettre à jour les options"
114
 
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
  #@ cpd
 
 
118
  msgid "Clean the database"
119
  msgstr "Nettoyer la base de données"
120
 
121
+ #: counter-options.php:413
122
  #@ cpd
 
123
  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."
124
  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."
125
 
126
+ #: counter-options.php:448
127
  #@ cpd
 
128
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
129
  msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
130
 
131
+ #: counter-options.php:449
132
  #@ cpd
 
133
  msgid "Here you can delete the tables and disable \"Count per Day\"."
134
  msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
135
 
136
+ #: counter-options.php:452
137
  #@ cpd
 
138
  msgid "WARNING"
139
  msgstr "ATTENTION"
140
 
141
+ #: counter-options.php:453
142
  #@ cpd
 
143
  msgid "These tables (with ALL counter data) will be deleted."
144
  msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
145
 
146
+ #: counter-options.php:455
147
  #@ cpd
 
148
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
149
  msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
150
 
151
+ #: counter-options.php:459
152
  #@ cpd
 
 
153
  msgid "Yes"
154
  msgstr "Oui"
155
 
156
+ #: counter-options.php:460
157
  #@ cpd
 
158
  msgid "You are sure to disable Count per Day and delete all data?"
159
  msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
160
 
161
+ #: counter.php:1466
162
  #@ cpd
 
 
163
  msgid "Statistics"
164
  msgstr "Statistiques"
165
 
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
169
  #@ cpd
 
 
 
 
170
  msgid "Total visitors"
171
  msgstr "Visiteurs Total"
172
 
173
+ #: counter.php:440
174
  #@ cpd
 
 
175
  msgid "Visitors currently online"
176
  msgstr "Visiteur actuellement en ligne"
177
 
178
+ #: counter.php:441
179
  #@ cpd
 
 
180
  msgid "Visitors today"
181
  msgstr "Visiteurs aujourd'hui"
182
 
183
+ #: counter.php:442
184
  #@ cpd
 
 
185
  msgid "Visitors yesterday"
186
  msgstr "Visiteurs hier"
187
 
188
+ #: counter.php:443
189
  #@ cpd
 
 
190
  msgid "Visitors last week"
191
  msgstr "Visiteurs la semaine dernière"
192
 
193
+ #: counter.php:445
194
  #@ cpd
 
 
 
195
  msgid "Counter starts on"
196
  msgstr "Compteur activé le "
197
 
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
203
  #@ cpd
 
 
 
 
 
 
204
  msgid "Visitors per day"
205
  msgstr "Visiteurs par jour"
206
 
207
+ #: counter.php:1440
208
  #@ cpd
 
 
209
  msgid "Visitors per month"
210
  msgstr "Visiteurs par mois"
211
 
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
  #@ cpd
 
 
215
  msgid "Visitors per post"
216
  msgstr "Visiteurs par articles"
217
 
218
+ #: counter-options.php:107
219
  #@ cpd
 
220
  msgid "Counter reseted."
221
  msgstr "Compteur remis à zéro."
222
 
223
+ #: counter-options.php:216
224
+ #: counter-options.php:220
225
  #@ cpd
 
 
226
  msgid "How many posts do you want to see on dashboard page?"
227
  msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
228
 
229
+ #: counter-options.php:219
230
  #@ cpd
 
231
  msgid "Latest Counts - Posts"
232
  msgstr "Dernier Comptes - Articles"
233
 
234
+ #: counter-options.php:223
235
  #@ cpd
 
236
  msgid "Latest Counts - Days"
237
  msgstr "Dernier Compte - Jours"
238
 
239
+ #: counter-options.php:224
240
+ #: counter-options.php:228
241
  #@ cpd
 
 
 
242
  msgid "How many days do you want look back?"
243
  msgstr "Combien de jours vous voulez regarder en arrière?"
244
 
245
+ #: counter-options.php:253
246
  #@ cpd
 
247
  msgid "Show in lists"
248
  msgstr "Montrer dans la liste"
249
 
250
+ #: counter-options.php:254
251
  #@ cpd
 
252
  msgid "Show \"Reads per Post\" in a new column in post management views."
253
  msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
254
 
255
+ #: counter-options.php:427
256
+ #: counter-options.php:436
257
  #@ cpd
 
 
258
  msgid "Reset the counter"
259
  msgstr "Remise à zéro du compteur"
260
 
261
+ #: counter-options.php:430
262
  #@ cpd
 
263
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
264
  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!"
265
 
266
+ #: counter.php:886
 
267
  #, php-format
268
+ #@ cpd
269
  msgid "The %s most visited posts in last %s days:"
270
  msgstr "Les %s articles les plus visités dans les derniers %s jours:"
271
 
272
+ #: counter.php:1136
 
 
 
273
  msgid "Settings"
274
  msgstr "Options"
275
 
276
+ #: counter.php:1245
277
  #@ cpd
 
 
 
 
278
  msgid "Reads"
279
  msgstr "Lectures"
280
 
281
+ #: counter.php:1443
282
  #@ cpd
 
283
  msgid "Latest Counts"
284
  msgstr "Dernier Comptes"
285
 
286
+ #: counter-options.php:227
287
  #@ cpd
 
288
  msgid "Chart - Days"
289
  msgstr "Graphique - Jours"
290
 
291
+ #: counter-options.php:231
292
  #@ cpd
 
293
  msgid "Chart - Height"
294
  msgstr "Graphique - Hauteur"
295
 
296
+ #: counter-options.php:232
297
  #@ cpd
 
298
  msgid "Height of the biggest bar"
299
  msgstr "Hauteur de la plus grande barre"
300
 
301
+ #: counter.php:587
302
+ #@ cpd
303
+ msgid "no reads at this time"
304
+ msgstr "Aucune lectures pour le moment"
305
+
306
+ #: counter.php:560
307
+ #@ cpd
308
+ msgid "days"
309
+ msgstr "jours"
310
+
311
+ #: counter.php:1325
312
  #@ cpd
 
313
  msgid "This post"
314
  msgstr "Cet article"
315
 
316
+ #: counter-options.php:212
 
317
  msgid "Dashboard"
318
  msgstr "Tableau de bord"
319
 
320
+ #: counter-options.php:250
321
+ msgid "Edit Posts"
322
+ msgstr "Modifier Articles"
323
+
324
+ #: counter-options.php:250
325
+ msgid "Edit Pages"
326
+ msgstr "Modifier Pages"
327
+
328
+ #: counter.php:1373
329
+ #@ cpd
330
+ msgid "Label"
331
+ msgstr "Label"
332
+
333
+ #: counter.php:1373
334
+ #@ cpd
335
+ msgid "empty = name above"
336
+ msgstr "vide = nom au-dessus"
337
+
338
+ #: counter.php:1439
339
  #@ cpd
 
340
  msgid "Reads per day"
341
  msgstr "Lectures par jour"
342
 
343
+ #: counter-options.php:51
 
344
  #, php-format
345
+ #@ cpd
346
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
347
  msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
348
 
349
+ #: counter-options.php:56
350
  #@ cpd
 
351
  msgid "update next"
352
  msgstr "mettre à jour le prochain"
353
 
354
+ #: counter-options.php:301
355
  #@ cpd
 
356
  msgid "GeoIP - Countries"
357
  msgstr "GeoIP - Pays"
358
 
359
+ #: counter-options.php:310
360
  #@ cpd
 
361
  msgid "Update old counter data"
362
  msgstr "Mettre à jour les données du vieux compteur"
363
 
364
+ #: counter-options.php:323
365
  #@ cpd
 
366
  msgid "Update GeoIP database"
367
  msgstr "Mettre à jour les données de GeoIP"
368
 
369
+ #: counter-options.php:326
370
  #@ cpd
 
371
  msgid "Download a new version of GeoIP.dat file."
372
  msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
373
 
374
+ #: counter-options.php:332
375
  #@ cpd
 
376
  msgid "More informations about GeoIP"
377
  msgstr "Plus d'infos sur GeoIP"
378
 
379
+ #: counter.php:1362
380
+ msgid "Title:"
381
+ msgstr "Titre:"
382
+
383
+ #: counter.php:1450
384
  #@ cpd
 
385
  msgid "Reads per Country"
386
  msgstr "Lectures par Pays"
387
 
388
+ #: geoip/geoip.php:115
389
  #@ cpd
 
390
  msgid "New GeoIP database installed."
391
  msgstr "Nouvelle base de données de GeoIp installée."
392
 
393
+ #: geoip/geoip.php:117
394
  #@ cpd
 
395
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
396
  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."
397
 
398
+ #: geoip/geoip.php:91
399
  #@ cpd
 
400
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
401
  msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
402
 
403
+ #: counter-options.php:236
404
  #@ cpd
 
405
  msgid "Countries"
406
  msgstr "Pays"
407
 
408
+ #: counter-options.php:237
409
  #@ cpd
 
410
  msgid "How many countries do you want to see on dashboard page?"
411
  msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
412
 
413
+ #: counter-options.php:94
 
414
  #, php-format
415
+ #@ cpd
416
  msgid "Mass Bots cleaned. %s counts deleted."
417
  msgstr "Robots nettoyés en masse. %s comptes supprimés."
418
 
419
+ #: counter-options.php:352
420
+ #: massbots.php:37
421
  #@ cpd
 
 
422
  msgid "Mass Bots"
423
  msgstr "Robots en masse"
424
 
425
+ #: counter-options.php:356
 
426
  #, php-format
427
+ #@ cpd
428
  msgid "Show all IPs with more than %s page views per day"
429
  msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
430
 
431
+ #: counter-options.php:357
432
+ #: notes.php:80
433
+ #: userperspan.php:47
434
  #@ cpd
 
 
 
435
  msgid "show"
436
  msgstr "montrer"
437
 
438
+ #: counter-options.php:379
439
+ #: counter-options.php:401
 
440
  #, php-format
441
+ #@ cpd
442
  msgid "Delete these %s counts"
443
  msgstr "Supprimer ces %s comptes"
444
 
445
+ #: counter.php:971
446
  #@ cpd
 
447
  msgid "Other"
448
  msgstr "Autre"
449
 
450
+ #: counter.php:1037
451
+ #: counter.php:1058
452
+ #: massbots.php:47
453
+ #: userperspan.php:68
454
  msgid "Front page displays"
455
  msgstr "Page d'accueil affiche"
456
 
457
+ #: counter-options.php:241
458
+ #: counter.php:1441
459
  #@ cpd
 
 
460
  msgid "Browsers"
461
  msgstr "Navigateurs"
462
 
463
+ #: counter-options.php:365
464
  #@ cpd
 
465
  msgid "IP"
466
  msgstr "IP"
467
 
468
+ #: counter-options.php:366
469
+ #: notes.php:84
470
  #@ cpd
 
 
 
471
  msgid "Date"
472
  msgstr "Date"
473
 
474
+ #: counter-options.php:367
475
  #@ cpd
 
476
  msgid "Client"
477
  msgstr "Client"
478
 
479
+ #: counter-options.php:368
480
  #@ cpd
 
481
  msgid "Views"
482
  msgstr "Vues"
483
 
484
+ #: counter-options.php:258
485
  #@ cpd
 
486
  msgid "Start Values"
487
  msgstr "Valeurs de départ"
488
 
489
+ #: counter-options.php:259
490
  #@ cpd
 
491
  msgid "Here you can change the date of first count and add a start count."
492
  msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
493
 
494
+ #: counter-options.php:263
495
  #@ cpd
 
496
  msgid "Start date"
497
  msgstr "Date de départ"
498
 
499
+ #: counter-options.php:264
500
  #@ cpd
 
501
  msgid "Your old Counter starts at?"
502
  msgstr "Votre vieux compteur commence à?"
503
 
504
+ #: counter-options.php:267
505
+ #: counter-options.php:271
506
  #@ cpd
 
 
507
  msgid "Start count"
508
  msgstr "Commencer le compte"
509
 
510
+ #: counter-options.php:268
511
  #@ cpd
 
512
  msgid "Add this value to \"Total visitors\"."
513
  msgstr "Ajouter cette valeur à \"visiteurs totals\"."
514
 
515
+ #: counter-options.php:468
516
  #@ cpd
 
517
  msgid "Support"
518
  msgstr "Support"
519
 
520
+ #: counter-options.php:476
521
+ #: counter.php:1409
522
  #@ cpd
 
523
  msgid "Bug? Problem? Question? Hint? Praise?"
524
  msgstr "Bug? Problème? Question? Allusion? Hommage?"
525
 
526
+ #: counter-options.php:478
527
+ #: counter.php:1410
528
  #, php-format
529
+ #@ cpd
530
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
531
  msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
532
 
533
+ #: counter.php:937
 
534
  msgid "Show"
535
  msgstr "Montrer"
536
 
537
+ #: counter.php:1021
 
538
  msgid "Edit Post"
539
  msgstr "Editer"
540
 
541
+ #: counter-options.php:473
542
+ #: counter.php:1408
543
+ #: counter.php:1656
544
  #, php-format
545
+ #@ cpd
546
  msgid "Time for Count per Day: <code>%s</code>."
547
  msgstr "Temps pour Count Per Day: <code>%s</code>."
548
 
549
+ #: counter-options.php:180
550
  #@ cpd
 
551
  msgid "until User Level"
552
  msgstr "jusqu'au niveau de l'utilisateur"
553
 
554
+ #: counter.php:1445
 
555
  msgid "Plugin"
556
  msgstr "Plugin"
557
 
558
+ #: counter.php:563
559
+ #: counter.php:938
560
+ #: notes.php:51
561
+ #: notes.php:85
562
  #@ cpd
 
 
 
563
  msgid "Notes"
564
  msgstr "Notes"
565
 
566
+ #: notes.php:86
 
567
  msgid "Action"
568
  msgstr "Action"
569
 
570
+ #: notes.php:91
571
  #@ cpd
 
572
  msgid "add"
573
  msgstr "ajouter"
574
 
575
+ #: notes.php:106
576
  #@ cpd
 
577
  msgid "save"
578
  msgstr "sauvegarder"
579
 
580
+ #: notes.php:107
581
  #@ cpd
 
582
  msgid "delete"
583
  msgstr "supprimer"
584
 
585
+ #: notes.php:118
586
  #@ cpd
 
587
  msgid "edit"
588
  msgstr "éditer"
589
 
590
+ #: notes.php:85
591
+ #@ cpd
592
+ msgid "(1 per day)"
593
+ msgstr "(1 par jour)"
594
+
595
+ #: counter-options.php:272
596
  #@ cpd
 
597
  msgid "Add this value to \"Total reads\"."
598
  msgstr "Ajouter cette valeur à \"Lectures totales\"."
599
 
600
+ #: counter.php:436
601
  #@ cpd
 
 
602
  msgid "Total reads"
603
  msgstr "Lectures totales"
604
 
605
+ #: counter.php:437
606
  #@ cpd
 
 
607
  msgid "Reads today"
608
  msgstr "Lectures aujourd'hui"
609
 
610
+ #: counter.php:438
611
  #@ cpd
 
 
612
  msgid "Reads yesterday"
613
  msgstr "Lectures hier"
614
 
615
+ #: counter-options.php:199
616
  #@ cpd
 
617
  msgid "Anonymous IP"
618
  msgstr "Adresse IP Anonyme"
619
 
620
+ #: counter-options.php:203
621
  #@ cpd
 
622
  msgid "Cache"
623
  msgstr "Cache"
624
 
625
+ #: counter-options.php:204
626
  #@ cpd
 
627
  msgid "I use a cache plugin. Count these visits with ajax."
628
  msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
629
 
630
+ #: counter-options.php:242
631
  #@ cpd
 
632
  msgid "Substring of the user agent, separated by comma"
633
  msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
634
 
635
+ #: counter-options.php:281
636
+ #: counter-options.php:285
637
  #@ cpd
 
638
  msgid "Debug mode"
639
  msgstr "Mode Debug"
640
 
641
+ #: counter-options.php:286
642
  #@ cpd
 
643
  msgid "Show debug informations at the bottom of all pages."
644
  msgstr "Afficher les informations de débogage au bas de toutes les pages."
645
 
646
+ #: counter.php:1451
647
  #@ cpd
 
648
  msgid "Visitors per Country"
649
  msgstr "Visiteurs par Pays"
650
 
651
+ #: counter.php:1534
652
  #@ cpd
 
 
653
  msgid "Map"
654
  msgstr "Carte"
655
 
656
+ #: userperspan.php:41
657
  #@ cpd
 
658
  msgid "Start"
659
  msgstr "Début"
660
 
661
+ #: userperspan.php:43
662
  #@ cpd
 
663
  msgid "End"
664
  msgstr "Fin"
665
 
666
+ #: userperspan.php:45
667
  #@ cpd
 
668
  msgid "PostID"
669
  msgstr "PostID"
670
 
671
+ #: userperspan.php:54
672
  #@ cpd
 
673
  msgid "no data found"
674
  msgstr "aucune donnée trouvée"
675
 
676
+ #: counter-options.php:313
677
  #@ cpd
678
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
 
679
  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!"
680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-it_IT.mo CHANGED
Binary file
locale/cpd-it_IT.po CHANGED
@@ -13,959 +13,721 @@ msgstr ""
13
  "X-Poedit-Language: Italian\n"
14
  "X-Poedit-Country: ITALY\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: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
-
13
  "X-Poedit-Language: Italian\n"
14
  "X-Poedit-Country: ITALY\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;_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:43
23
  msgid "Options updated"
24
  msgstr "Le opzioni sono state aggiornate"
25
 
26
+ # @ cpd
27
+ #: counter-options.php:108
28
  #, php-format
29
  msgid "Database cleaned. %s rows deleted."
30
  msgstr "Database svuotato. %s record cancellato."
31
 
32
+ # @ cpd
33
+ #: counter-options.php:118
34
+ #: counter-options.php:480
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DISINSTALLA Count per Day"
37
 
38
+ # @ cpd
39
+ #: counter-options.php:123
40
+ #: counter-options.php:125
41
+ #: counter-options.php:127
42
  #, php-format
43
  msgid "Table %s deleted"
44
  msgstr "La tabella %s é stata cancellata"
45
 
46
+ # @ cpd
47
+ #: counter-options.php:129
48
  msgid "Options deleted"
49
  msgstr "Le opzioni sono state cancellate"
50
 
51
+ # @ cpd
52
+ #: counter-options.php:153
53
+ #: counter-options.php:465
54
  msgid "Uninstall"
55
  msgstr "Disinstalla"
56
 
57
+ # @ cpd
58
+ #: counter-options.php:154
59
  msgid "Click here"
60
  msgstr "Clicca qui"
61
 
62
+ # @ cpd
63
+ #: counter-options.php:154
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:175
69
+ msgid "Options"
70
+ msgstr "Opzioni"
71
+
72
+ # @ cpd
73
+ #: counter-options.php:186
74
  msgid "Online time"
75
  msgstr "Durata del collegamento"
76
 
77
+ # @ cpd
78
+ #: counter-options.php:187
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:190
84
+ msgid "Loged on Users"
85
  msgstr "Utenti accreditati"
86
 
87
+ # @ cpd
88
+ #: counter-options.php:192
89
  msgid "count too"
90
  msgstr "conteggia anche loro"
91
 
92
+ # @ cpd
93
+ #: counter-options.php:204
94
  msgid "Auto counter"
95
  msgstr "Contatore-automatico"
96
 
97
+ # @ cpd
98
+ #: counter-options.php:205
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:208
104
  msgid "Bots to ignore"
105
  msgstr "Bots da ignorare"
106
 
107
+ # @ cpd
108
+ #: counter-options.php:315
109
  msgid "Update options"
110
  msgstr "Aggiorna le opzioni"
111
 
112
+ # @ cpd
113
+ #: counter-options.php:429
114
+ #: counter-options.php:438
115
  msgid "Clean the database"
116
  msgstr "Svuota il database"
117
 
118
+ # @ cpd
119
+ #: counter-options.php:432
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:468
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:469
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:472
135
  msgid "WARNING"
136
  msgstr "ATTENZIONE"
137
 
138
+ # @ cpd
139
+ #: counter-options.php:473
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:475
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:479
 
150
  msgid "Yes"
151
  msgstr "Sì"
152
 
153
+ # @ cpd
154
+ #: counter-options.php:480
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:1576
160
+ #: counter.php:1891
161
  msgid "Statistics"
162
  msgstr "Satistiche"
163
 
164
+ # @ cpd
165
+ #: counter.php:570
166
+ #: counter.php:1322
167
+ #: counter.php:1541
168
+ #: counter.php:1962
169
  msgid "Total visitors"
170
  msgstr "Totale visitatori"
171
 
172
+ # @ cpd
173
+ #: counter.php:571
174
+ #: counter.php:1967
175
  msgid "Visitors currently online"
176
  msgstr "Utenti attualmente in linea"
177
 
178
+ # @ cpd
179
+ #: counter.php:572
180
+ #: counter.php:1963
181
  msgid "Visitors today"
182
  msgstr "Oggi"
183
 
184
+ # @ cpd
185
+ #: counter.php:573
186
+ #: counter.php:1964
187
  msgid "Visitors yesterday"
188
  msgstr "Ieri"
189
 
190
+ # @ cpd
191
+ #: counter.php:574
192
+ #: counter.php:1965
193
  msgid "Visitors last week"
194
  msgstr "La scorsa settimana"
195
 
196
+ # @ cpd
197
+ #: counter.php:576
198
+ #: counter.php:1968
 
199
  msgid "Counter starts on"
200
  msgstr "Il contatore parte dal"
201
 
202
+ # @ cpd
203
+ #: counter.php:575
204
+ #: counter.php:1324
205
+ #: counter.php:1542
206
+ #: counter.php:1548
207
+ #: counter.php:1966
208
+ #: userperspan.php:36
209
  msgid "Visitors per day"
210
  msgstr "Visitatori per giorno"
211
 
212
+ # @ cpd
213
+ #: counter.php:1544
 
214
  msgid "Visitors per month"
215
  msgstr "Visitatori per mese"
216
 
217
+ # @ cpd
218
+ #: counter-options.php:232
219
+ #: counter.php:1546
220
  msgid "Visitors per post"
221
  msgstr "Visitatori per articolo"
222
 
223
+ # @ cpd
224
+ #: counter-options.php:114
225
  msgid "Counter reseted."
226
  msgstr "Il contatore é stato azzerato."
227
 
228
+ # @ cpd
229
+ #: counter-options.php:233
230
+ #: counter-options.php:237
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Quanti articoli desideri siano visibili nella bacheca?"
233
 
234
+ # @ cpd
235
+ #: counter-options.php:236
236
  msgid "Latest Counts - Posts"
237
  msgstr "Totale corrente - Articoli"
238
 
239
+ # @ cpd
240
+ #: counter-options.php:240
241
  msgid "Latest Counts - Days"
242
  msgstr "Totale corrente - pagine"
243
 
244
+ # @ cpd
245
+ #: counter-options.php:241
246
+ #: counter-options.php:245
 
247
  msgid "How many days do you want look back?"
248
  msgstr "Quanti giorni desideri visionare a ritroso?"
249
 
250
+ # @ cpd
251
+ #: counter-options.php:274
252
  msgid "Show in lists"
253
  msgstr "Mostra nelle liste"
254
 
255
+ # @ cpd
256
+ #: counter-options.php:275
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
259
 
260
+ # @ cpd
261
+ #: counter-options.php:447
262
+ #: counter-options.php:456
263
  msgid "Reset the counter"
264
  msgstr "Azzera il contatore"
265
 
266
+ # @ cpd
267
+ #: counter-options.php:450
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 "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
270
 
271
+ # @ cpd
272
+ #: counter.php:1048
273
  #, php-format
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "I %s articoli più letti negli ultimi %s giorni:"
276
 
277
+ #: counter.php:1309
 
 
 
278
  msgid "Settings"
279
  msgstr "Impostazioni"
280
 
281
+ # @ cpd
282
+ #: counter.php:1424
 
 
 
283
  msgid "Reads"
284
  msgstr "Visitatori"
285
 
286
+ # @ cpd
287
+ #: counter.php:1547
288
  msgid "Latest Counts"
289
  msgstr "Totale corrente"
290
 
291
+ # @ cpd
292
+ #: counter-options.php:244
293
  msgid "Chart - Days"
294
  msgstr "Diagramma - Giorni"
295
 
296
+ # @ cpd
297
+ #: counter-options.php:248
298
  msgid "Chart - Height"
299
  msgstr "Diagramma - Altezza"
300
 
301
+ # @ cpd
302
+ #: counter-options.php:249
303
  msgid "Height of the biggest bar"
304
  msgstr "Altezza della categoria maggiore"
305
 
306
+ # @ cpd
307
+ #: counter.php:714
308
+ msgid "no reads at this time"
309
+ msgstr "nessun lettura in questo momento"
310
+
311
+ # @ cpd
312
+ #: counter.php:688
313
+ msgid "days"
314
+ msgstr "giorni"
315
+
316
+ # @ cpd
317
+ #: counter.php:1958
318
  msgid "This post"
319
  msgstr "Questo articolo"
320
 
321
+ #: counter-options.php:229
 
322
  msgid "Dashboard"
323
  msgstr "Bacheca"
324
 
325
+ # @ cpd
326
+ #: counter.php:1543
327
  msgid "Reads per day"
328
  msgstr "Letture per giorno"
329
 
330
+ # @ cpd
331
+ #: counter-options.php:54
332
  #, php-format
333
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
334
  msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
335
 
336
+ # @ cpd
337
+ #: counter-options.php:59
338
  msgid "update next"
339
  msgstr "aggiorna il prossimo"
340
 
341
+ # @ cpd
342
+ #: counter-options.php:324
343
  msgid "GeoIP - Countries"
344
  msgstr "GeoIP - Stati"
345
 
346
+ # @ cpd
347
+ #: counter-options.php:333
348
  msgid "Update old counter data"
349
  msgstr "Aggiorna i vecchi dati per gli stati"
350
 
351
+ # @ cpd
352
+ #: counter-options.php:346
353
  msgid "Update GeoIP database"
354
  msgstr "Aggiorna database GeoIP"
355
 
356
+ # @ cpd
357
+ #: counter-options.php:349
358
  msgid "Download a new version of GeoIP.dat file."
359
  msgstr "Scarica la nuova versione del file GeoIP.dat."
360
 
361
+ # @ cpd
362
+ #: counter-options.php:355
363
  msgid "More informations about GeoIP"
364
  msgstr "Informazioni su GeoIP"
365
 
366
+ # @ cpd
367
+ #: counter.php:1560
368
  msgid "Reads per Country"
369
  msgstr "Letture per stato"
370
 
371
+ # @ cpd
372
+ #: geoip/-geoip.php:123
373
+ #: geoip/geoip.php:132
374
  msgid "New GeoIP database installed."
375
  msgstr "Il nuovo database GeoIP é stato installato."
376
 
377
+ # @ cpd
378
+ #: geoip/-geoip.php:125
379
+ #: geoip/geoip.php:134
380
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
381
  msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
382
 
383
+ # @ cpd
384
+ #: geoip/-geoip.php:99
385
+ #: geoip/geoip.php:108
386
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
387
  msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
388
 
389
+ # @ cpd
390
+ #: counter-options.php:253
391
  msgid "Countries"
392
  msgstr "Stati"
393
 
394
+ # @ cpd
395
+ #: counter-options.php:254
396
  msgid "How many countries do you want to see on dashboard page?"
397
  msgstr "Quanti stati desideri siano visibili nella bacheca?"
398
 
399
+ # @ cpd
400
+ #: counter-options.php:101
401
  #, php-format
402
  msgid "Mass Bots cleaned. %s counts deleted."
403
  msgstr "Mass Bots svuotato. %s totali cancellati."
404
 
405
+ # @ cpd
406
+ #: counter-options.php:370
407
+ #: massbots.php:37
408
  msgid "Mass Bots"
409
  msgstr "Mass Bots"
410
 
411
+ # @ cpd
412
+ #: counter-options.php:374
413
  #, php-format
414
  msgid "Show all IPs with more than %s page views per day"
415
  msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
416
 
417
+ # @ cpd
418
+ #: counter-options.php:375
419
+ #: notes.php:80
420
+ #: userperspan.php:46
421
  msgid "show"
422
  msgstr "mostra"
423
 
424
+ # @ cpd
425
+ #: counter-options.php:397
426
+ #: counter-options.php:419
427
  #, php-format
428
  msgid "Delete these %s counts"
429
  msgstr "Cancella questi %s totali"
430
 
431
+ # @ cpd
432
+ #: counter.php:1144
433
  msgid "Other"
434
  msgstr "Altro"
435
 
436
+ #: counter.php:1239
437
+ #: massbots.php:54
438
+ #: userperspan.php:66
 
439
  msgid "Front page displays"
440
  msgstr "Mostra nella front page"
441
 
442
+ # @ cpd
443
+ #: counter-options.php:258
444
+ #: counter.php:1553
445
  msgid "Browsers"
446
  msgstr "Browser"
447
 
448
+ # @ cpd
449
+ #: counter-options.php:383
450
  msgid "IP"
451
  msgstr "IP"
452
 
453
+ # @ cpd
454
+ #: counter-options.php:384
455
+ #: notes.php:84
 
456
  msgid "Date"
457
  msgstr "Data"
458
 
459
+ # @ cpd
460
+ #: counter-options.php:385
461
  msgid "Client"
462
  msgstr "Client"
463
 
464
+ # @ cpd
465
+ #: counter-options.php:386
466
  msgid "Views"
467
  msgstr "Visualizzazioni"
468
 
469
+ # @ cpd
470
+ #: counter-options.php:283
471
  msgid "Start Values"
472
  msgstr "Valori di partenza"
473
 
474
+ # @ cpd
475
+ #: counter-options.php:287
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
478
 
479
+ # @ cpd
480
+ #: counter-options.php:291
481
  msgid "Start date"
482
  msgstr "Data di inizio"
483
 
484
+ # @ cpd
485
+ #: counter-options.php:292
486
  msgid "Your old Counter starts at?"
487
  msgstr "Il vecchio contatore parte da?"
488
 
489
+ # @ cpd
490
+ #: counter-options.php:295
491
+ #: counter-options.php:299
492
  msgid "Start count"
493
  msgstr "Avvia conteggio"
494
 
495
+ # @ cpd
496
+ #: counter-options.php:296
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Aggiungi questo valore a \"Totale visitatori\"."
499
 
500
+ # @ cpd
501
+ #: counter-options.php:488
502
  msgid "Support"
503
  msgstr "Supporto"
504
 
505
+ # @ cpd
506
+ #: counter.php:1511
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
509
 
510
+ # @ cpd
511
+ #: counter.php:1512
512
  #, php-format
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
515
 
516
+ #: counter.php:1103
 
517
  msgid "Show"
518
  msgstr "Mostra"
519
 
520
+ #: counter.php:1224
 
521
  msgid "Edit Post"
522
  msgstr "modifica articolo"
523
 
524
+ # @ cpd
525
+ #: counter.php:1510
526
  #, php-format
527
  msgid "Time for Count per Day: <code>%s</code>."
528
  msgstr "Fuso orario Count per Day: <code>%s</code>."
529
 
530
+ # @ cpd
531
+ #: counter-options.php:193
532
  msgid "until User Level"
533
  msgstr "sino a livello utente"
534
 
535
+ #: counter.php:1549
 
536
  msgid "Plugin"
537
  msgstr "Plugin"
538
 
539
+ # @ cpd
540
+ #: counter.php:691
541
+ #: counter.php:1105
542
+ #: notes.php:51
543
+ #: notes.php:85
544
  msgid "Notes"
545
  msgstr "Note"
546
 
547
+ #: notes.php:86
 
548
  msgid "Action"
549
  msgstr "Azione"
550
 
551
+ # @ cpd
552
+ #: notes.php:91
553
  msgid "add"
554
  msgstr "aggiungi"
555
 
556
+ # @ cpd
557
+ #: notes.php:106
558
  msgid "save"
559
  msgstr "salva"
560
 
561
+ # @ cpd
562
+ #: notes.php:107
563
  msgid "delete"
564
  msgstr "cancella"
565
 
566
+ # @ cpd
567
+ #: notes.php:118
568
  msgid "edit"
569
  msgstr "modifica"
570
 
571
+ # @ cpd
572
+ #: notes.php:85
573
+ msgid "(1 per day)"
574
+ msgstr "(1 al giorno)"
575
+
576
+ # @ cpd
577
+ #: counter-options.php:300
578
  msgid "Add this value to \"Total reads\"."
579
  msgstr "Aggiungi questo valore a \"Totale letture\"."
580
 
581
+ # @ cpd
582
+ #: counter.php:566
583
+ #: counter.php:1959
584
  msgid "Total reads"
585
  msgstr "Totale letture"
586
 
587
+ # @ cpd
588
+ #: counter.php:567
589
+ #: counter.php:1960
590
  msgid "Reads today"
591
  msgstr "Letture odierne"
592
 
593
+ # @ cpd
594
+ #: counter.php:568
595
+ #: counter.php:1961
596
  msgid "Reads yesterday"
597
  msgstr "Letture di ieri"
598
 
599
+ # @ cpd
600
+ #: counter.php:1644
 
601
  msgid "Map"
602
  msgstr "Mappa"
603
 
604
+ # @ cpd
605
+ #: counter-options.php:212
606
  msgid "Anonymous IP"
607
  msgstr "IP anonimo"
608
 
609
+ # @ cpd
610
+ #: counter-options.php:216
611
  msgid "Cache"
612
  msgstr "Cache"
613
 
614
+ # @ cpd
615
+ #: counter-options.php:217
616
  msgid "I use a cache plugin. Count these visits with ajax."
617
  msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
618
 
619
+ # @ cpd
620
+ #: counter-options.php:259
621
  msgid "Substring of the user agent, separated by comma"
622
  msgstr "Sub-stringa user agent, separa con una virgola"
623
 
624
+ # @ cpd
625
+ #: counter.php:1561
626
  msgid "Visitors per Country"
627
  msgstr "Visitatori per paese"
628
 
629
+ # @ cpd
630
+ #: counter-options.php:308
631
  msgid "Debug mode"
632
  msgstr "Modalità debug"
633
 
634
+ # @ cpd
635
+ #: counter-options.php:310
636
  msgid "Show debug informations at the bottom of all pages."
637
  msgstr "Mostra info debug al fondo di tutte le pagine."
638
 
639
+ # @ cpd
640
+ #: userperspan.php:40
641
  msgid "Start"
642
  msgstr "Inizio"
643
 
644
+ # @ cpd
645
+ #: userperspan.php:42
646
  msgid "End"
647
  msgstr "Termine"
648
 
649
+ # @ cpd
650
+ #: userperspan.php:44
651
  msgid "PostID"
652
  msgstr "ID articolo"
653
 
654
+ # @ cpd
655
+ #: userperspan.php:52
656
  msgid "no data found"
657
  msgstr "nessun dato trovato"
658
 
659
+ # @ cpd
660
+ #: counter-options.php:336
661
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
662
  msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
663
 
664
+ # @ cpd
665
+ #: counter-options.php:182
666
  msgid "Counter"
667
  msgstr "Contatore"
668
 
669
+ # @ cpd
670
+ #: counter-options.php:262
671
  msgid "Local URLs"
672
  msgstr "URL locali"
673
 
674
+ # @ cpd
675
+ #: counter-options.php:263
676
+ msgid "Show local referers too."
677
  msgstr "Mostra anche i referenti locali."
678
 
679
+ # @ cpd
680
+ #: counter-options.php:271
681
  msgid "Posts"
682
  msgstr "Articoli"
683
 
684
+ #: counter-options.php:271
 
685
  msgid "Pages"
686
  msgstr "Pagine"
687
 
688
+ # @ default
689
+ #: counter.php:1233
690
  msgid "Category"
691
  msgstr "Categoria"
692
 
693
+ # @ default
694
+ #: counter.php:1236
695
  msgid "Tag"
696
  msgstr "Tag"
697
 
698
+ # @ default
699
+ #: counter.php:1513
700
  msgid "License"
701
  msgstr "Licenza"
702
 
703
+ # @ cpd
704
+ #: counter.php:1554
705
+ msgid "Referer"
706
  msgstr "Referente"
707
 
708
+ #: counter.php:1977
 
709
  msgid "Title"
710
  msgstr "Titolo"
711
 
712
+ # @ cpd
713
+ #: counter-options.php:221
714
+ msgid "Save and show clients and referers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
715
  msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
716
 
717
+ # @ cpd
718
+ #: counter-options.php:220
719
+ msgid "Clients and referers"
720
  msgstr "Client e referenti"
721
 
722
+ # @ cpd
723
+ #: counter.php:569
 
724
  msgid "Reads last week"
725
  msgstr "Letture scorsa settimana"
726
 
727
+ # @ cpd
728
+ #: counter.php:1545
 
729
  msgid "Reads per month"
730
  msgstr "Letture scorso mese"
731
 
732
+ #~ msgid "Edit Posts"
733
+ #~ msgstr "Modifica articoli"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-ja.mo DELETED
Binary file
locale/cpd-ja.po DELETED
@@ -1,972 +0,0 @@
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 DELETED
Binary file
locale/cpd-lt_LT.po DELETED
@@ -1,784 +0,0 @@
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 DELETED
Binary file
locale/cpd-nb_NO.po DELETED
@@ -1,972 +0,0 @@
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 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"
@@ -13,959 +13,668 @@ msgstr ""
13
  "X-Poedit-Language: Dutch\n"
14
  "X-Poedit-Country: NETHERLANDS\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: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
-
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count per Day v2.11\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"
13
  "X-Poedit-Language: Dutch\n"
14
  "X-Poedit-Country: NETHERLANDS\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;_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:41
23
  #@ cpd
 
24
  msgid "Options updated"
25
  msgstr "Instellingen bijgewerkt"
26
 
27
+ #: counter-options.php:101
 
28
  #, php-format
29
+ #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "Database schoongemaakt. %s rijen verwijderd."
32
 
33
+ #: counter-options.php:111
34
+ #: counter-options.php:460
35
  #@ cpd
 
 
36
  msgid "UNINSTALL Count per Day"
37
+ msgstr "DEINSTALLEREN Count per Day"
38
 
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
 
 
41
  #, php-format
42
+ #@ cpd
43
  msgid "Table %s deleted"
44
  msgstr "eTabel %s verwijderd"
45
 
46
+ #: counter-options.php:122
47
  #@ cpd
 
48
  msgid "Options deleted"
49
  msgstr "Opties verwijderd"
50
 
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
  #@ cpd
 
 
54
  msgid "Uninstall"
55
  msgstr "Deinstallatie"
56
 
57
+ #: counter-options.php:147
58
  #@ cpd
 
59
  msgid "Click here"
60
  msgstr "Klik hier"
61
 
62
+ #: counter-options.php:147
63
  #@ cpd
 
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
+ #: counter-options.php:168
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Opties"
71
+
72
+ #: counter-options.php:173
73
  #@ cpd
 
74
  msgid "Online time"
75
  msgstr "Tijd online"
76
 
77
+ #: counter-options.php:174
78
  #@ cpd
 
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
+ #: counter-options.php:177
83
  #@ cpd
84
+ msgid "Loged on Users"
 
85
  msgstr "Aangemelde Gebruikers"
86
 
87
+ #: counter-options.php:179
88
  #@ cpd
 
89
  msgid "count too"
90
  msgstr "ook tellen"
91
 
92
+ #: counter-options.php:191
93
  #@ cpd
 
94
  msgid "Auto counter"
95
  msgstr "Automatisch tellen"
96
 
97
+ #: counter-options.php:192
98
  #@ cpd
 
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
+ #: counter-options.php:195
103
  #@ cpd
 
104
  msgid "Bots to ignore"
105
  msgstr "Bots te negeren"
106
 
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
  #@ cpd
 
112
  msgid "Update options"
113
  msgstr "Aktualiseren opties"
114
 
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
  #@ cpd
 
 
118
  msgid "Clean the database"
119
  msgstr "Database schoonmaken"
120
 
121
+ #: counter-options.php:413
122
  #@ cpd
 
123
  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."
124
  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."
125
 
126
+ #: counter-options.php:448
127
  #@ cpd
 
128
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
129
  msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
130
 
131
+ #: counter-options.php:449
132
  #@ cpd
 
133
  msgid "Here you can delete the tables and disable \"Count per Day\"."
134
  msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
135
 
136
+ #: counter-options.php:452
137
  #@ cpd
 
138
  msgid "WARNING"
139
  msgstr "WAARSCHUWING"
140
 
141
+ #: counter-options.php:453
142
  #@ cpd
 
143
  msgid "These tables (with ALL counter data) will be deleted."
144
  msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
145
 
146
+ #: counter-options.php:455
147
  #@ cpd
 
148
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
149
  msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
150
 
151
+ #: counter-options.php:459
152
  #@ cpd
 
 
153
  msgid "Yes"
154
  msgstr "Ja"
155
 
156
+ #: counter-options.php:460
157
  #@ cpd
 
158
  msgid "You are sure to disable Count per Day and delete all data?"
159
  msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
160
 
161
+ #: counter.php:1466
162
  #@ cpd
 
 
163
  msgid "Statistics"
164
  msgstr "Statistieken"
165
 
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
169
  #@ cpd
 
 
 
 
170
  msgid "Total visitors"
171
  msgstr "Totaal aantal bezoekers"
172
 
173
+ #: counter.php:440
174
  #@ cpd
 
 
175
  msgid "Visitors currently online"
176
  msgstr "Bezoekers op dit moment online"
177
 
178
+ #: counter.php:441
179
  #@ cpd
 
 
180
  msgid "Visitors today"
181
  msgstr "Bezoekers vandaag"
182
 
183
+ #: counter.php:442
184
  #@ cpd
 
 
185
  msgid "Visitors yesterday"
186
  msgstr "Bezoekers gisteren"
187
 
188
+ #: counter.php:443
189
  #@ cpd
 
 
190
  msgid "Visitors last week"
191
  msgstr "Bezoekers vorige week"
192
 
193
+ #: counter.php:445
194
  #@ cpd
 
 
 
195
  msgid "Counter starts on"
196
  msgstr "Teller start bij"
197
 
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
203
  #@ cpd
 
 
 
 
 
 
204
  msgid "Visitors per day"
205
  msgstr "Bezoekers per dag"
206
 
207
+ #: counter.php:1440
208
  #@ cpd
 
 
209
  msgid "Visitors per month"
210
  msgstr "Bezoekers per maand"
211
 
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
  #@ cpd
 
 
215
  msgid "Visitors per post"
216
  msgstr "Bezoekers per bericht"
217
 
218
+ #: counter-options.php:107
219
  #@ cpd
 
220
  msgid "Counter reseted."
221
  msgstr "Teller gereset"
222
 
223
+ #: counter-options.php:216
224
+ #: counter-options.php:220
225
  #@ cpd
 
 
226
  msgid "How many posts do you want to see on dashboard page?"
227
  msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
228
 
229
+ #: counter-options.php:219
230
  #@ cpd
 
231
  msgid "Latest Counts - Posts"
232
  msgstr "Laatste Tellingen - Berichten"
233
 
234
+ #: counter-options.php:223
235
  #@ cpd
 
236
  msgid "Latest Counts - Days"
237
  msgstr "Laatste Tellingen - Dagen"
238
 
239
+ #: counter-options.php:224
240
+ #: counter-options.php:228
241
  #@ cpd
 
 
 
242
  msgid "How many days do you want look back?"
243
  msgstr "Hoeveel dagen wil je terugkijken?"
244
 
245
+ #: counter-options.php:253
246
  #@ cpd
 
247
  msgid "Show in lists"
248
  msgstr "Laat in lijsten zien"
249
 
250
+ #: counter-options.php:254
251
  #@ cpd
 
252
  msgid "Show \"Reads per Post\" in a new column in post management views."
253
+ msgstr "Toon \"Leest per post\" in een nieuwe kolom in bericht impressies management."
254
 
255
+ #: counter-options.php:427
256
+ #: counter-options.php:436
257
  #@ cpd
 
 
258
  msgid "Reset the counter"
259
  msgstr "Reset de teller"
260
 
261
+ #: counter-options.php:430
262
  #@ cpd
 
263
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
264
  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!"
265
 
266
+ #: counter.php:886
 
267
  #, php-format
268
+ #@ cpd
269
  msgid "The %s most visited posts in last %s days:"
270
  msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
271
 
272
+ #: counter.php:1136
 
 
 
273
  msgid "Settings"
274
  msgstr "Instellingen"
275
 
276
+ #: counter.php:1245
277
  #@ cpd
 
 
 
 
278
  msgid "Reads"
279
+ msgstr "Hits"
280
 
281
+ #: counter.php:1443
282
  #@ cpd
 
283
  msgid "Latest Counts"
284
  msgstr "Laatste Tellingen"
285
 
286
+ #: counter-options.php:227
287
  #@ cpd
 
288
  msgid "Chart - Days"
289
  msgstr "Grafiek - Dagen"
290
 
291
+ #: counter-options.php:231
292
  #@ cpd
 
293
  msgid "Chart - Height"
294
  msgstr "Grafiek - Hoogte"
295
 
296
+ #: counter-options.php:232
297
  #@ cpd
 
298
  msgid "Height of the biggest bar"
299
  msgstr "Hoogte van de grootste staaf"
300
 
301
+ #: counter.php:587
302
+ #@ cpd
303
+ msgid "no reads at this time"
304
+ msgstr "momenteel geen hits"
305
+
306
+ #: counter.php:560
307
+ #@ cpd
308
+ msgid "days"
309
+ msgstr "dagen"
310
+
311
+ #: counter.php:1325
312
  #@ cpd
 
313
  msgid "This post"
314
  msgstr "Dit bericht"
315
 
316
+ #: counter-options.php:212
 
317
  msgid "Dashboard"
318
  msgstr "Dashboard"
319
 
320
+ #: counter-options.php:250
321
+ msgid "Edit Posts"
322
+ msgstr "Berichten Bewerken"
323
+
324
+ #: counter-options.php:250
325
+ msgid "Edit Pages"
326
+ msgstr "Pagina's Bewerken"
327
+
328
+ #: counter.php:1373
329
+ #@ cpd
330
+ msgid "Label"
331
+ msgstr "Label"
332
+
333
+ #: counter.php:1373
334
+ #@ cpd
335
+ msgid "empty = name above"
336
+ msgstr "leeg = bovenste naam"
337
+
338
+ #: counter.php:1439
339
  #@ cpd
 
340
  msgid "Reads per day"
341
  msgstr "Hits per dag"
342
 
343
+ #: counter-options.php:51
 
344
  #, php-format
345
+ #@ cpd
346
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
347
  msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
348
 
349
+ #: counter-options.php:56
350
  #@ cpd
 
351
  msgid "update next"
352
  msgstr "volgende aktualiseren"
353
 
354
+ #: counter-options.php:301
355
  #@ cpd
 
356
  msgid "GeoIP - Countries"
357
  msgstr "GeoIP - Landen"
358
 
359
+ #: counter-options.php:310
360
  #@ cpd
 
361
  msgid "Update old counter data"
362
  msgstr "Aktualiseren data van oude tellingen"
363
 
364
+ #: counter-options.php:323
365
  #@ cpd
 
366
  msgid "Update GeoIP database"
367
  msgstr "Aktualiseren GeoIP databank"
368
 
369
+ #: counter-options.php:326
370
  #@ cpd
 
371
  msgid "Download a new version of GeoIP.dat file."
372
  msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
373
 
374
+ #: counter-options.php:332
375
  #@ cpd
 
376
  msgid "More informations about GeoIP"
377
  msgstr "Meer informatie over GeoIP"
378
 
379
+ #: counter.php:1362
380
+ msgid "Title:"
381
+ msgstr "Titel:"
382
+
383
+ #: counter.php:1450
384
  #@ cpd
 
385
  msgid "Reads per Country"
386
+ msgstr "Hits per Land"
387
 
388
+ #: geoip/geoip.php:115
389
  #@ cpd
 
390
  msgid "New GeoIP database installed."
391
  msgstr "Nieuwe GeoIP database geïnstalleerd."
392
 
393
+ #: geoip/geoip.php:117
394
  #@ cpd
 
395
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
396
  msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of de toegangsrechten van de map \"geoip\" op 777 staan."
397
 
398
+ #: geoip/geoip.php:91
399
  #@ cpd
 
400
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
401
  msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
402
 
403
+ #: counter-options.php:236
404
  #@ cpd
 
405
  msgid "Countries"
406
  msgstr "Landen"
407
 
408
+ #: counter-options.php:237
409
  #@ cpd
 
410
  msgid "How many countries do you want to see on dashboard page?"
411
  msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
412
 
413
+ #: counter-options.php:94
 
414
  #, php-format
415
+ #@ cpd
416
  msgid "Mass Bots cleaned. %s counts deleted."
417
  msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
418
 
419
+ #: counter-options.php:352
420
+ #: massbots.php:37
421
  #@ cpd
 
 
422
  msgid "Mass Bots"
423
  msgstr "Massa Bots"
424
 
425
+ #: counter-options.php:356
 
426
  #, php-format
427
+ #@ cpd
428
  msgid "Show all IPs with more than %s page views per day"
429
  msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
430
 
431
+ #: counter-options.php:357
432
+ #: notes.php:80
433
+ #: userperspan.php:47
434
  #@ cpd
 
 
 
435
  msgid "show"
436
  msgstr "laat zien"
437
 
438
+ #: counter-options.php:379
439
+ #: counter-options.php:401
 
440
  #, php-format
441
+ #@ cpd
442
  msgid "Delete these %s counts"
443
  msgstr "Verwijder deze %s tellingen"
444
 
445
+ #: counter.php:971
446
  #@ cpd
 
447
  msgid "Other"
448
  msgstr "Andere"
449
 
450
+ #: counter.php:1037
451
+ #: counter.php:1058
452
+ #: massbots.php:47
453
+ #: userperspan.php:68
454
  msgid "Front page displays"
455
  msgstr "Voorpagina weergaves"
456
 
457
+ #: counter-options.php:241
458
+ #: counter.php:1441
459
  #@ cpd
 
 
460
  msgid "Browsers"
461
  msgstr "Browser"
462
 
463
+ #: counter-options.php:365
464
  #@ cpd
 
465
  msgid "IP"
466
  msgstr "IP"
467
 
468
+ #: counter-options.php:366
469
+ #: notes.php:84
470
  #@ cpd
 
 
 
471
  msgid "Date"
472
  msgstr "Datum"
473
 
474
+ #: counter-options.php:367
475
  #@ cpd
 
476
  msgid "Client"
477
  msgstr "Browser"
478
 
479
+ #: counter-options.php:368
480
  #@ cpd
 
481
  msgid "Views"
482
  msgstr "Hits"
483
 
484
+ #: counter-options.php:258
485
  #@ cpd
 
486
  msgid "Start Values"
487
  msgstr "Beginwaarden"
488
 
489
+ #: counter-options.php:259
490
  #@ cpd
 
491
  msgid "Here you can change the date of first count and add a start count."
492
  msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
493
 
494
+ #: counter-options.php:263
495
  #@ cpd
 
496
  msgid "Start date"
497
  msgstr "Startdatum"
498
 
499
+ #: counter-options.php:264
500
  #@ cpd
 
501
  msgid "Your old Counter starts at?"
502
  msgstr "Je oude teller start op?"
503
 
504
+ #: counter-options.php:267
505
+ #: counter-options.php:271
506
  #@ cpd
 
 
507
  msgid "Start count"
508
  msgstr "Beginwaarde van de telling"
509
 
510
+ #: counter-options.php:268
511
  #@ cpd
 
512
  msgid "Add this value to \"Total visitors\"."
513
  msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
514
 
515
+ #: counter-options.php:468
516
  #@ cpd
 
517
  msgid "Support"
518
  msgstr "Ondersteuning"
519
 
520
+ #: counter-options.php:476
521
+ #: counter.php:1409
522
  #@ cpd
 
523
  msgid "Bug? Problem? Question? Hint? Praise?"
524
  msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
525
 
526
+ #: counter-options.php:478
527
+ #: counter.php:1410
528
  #, php-format
529
+ #@ cpd
530
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
531
  msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
532
 
533
+ #: counter.php:937
 
534
  msgid "Show"
535
  msgstr "Vertonen"
536
 
537
+ #: counter.php:1021
 
538
  msgid "Edit Post"
539
  msgstr "Bericht Bewerken"
540
 
541
+ #: counter-options.php:473
542
+ #: counter.php:1408
543
+ #: counter.php:1656
544
  #, php-format
545
+ #@ cpd
546
  msgid "Time for Count per Day: <code>%s</code>."
547
  msgstr "Tijd voor Count per Day: <code>%s</code>."
548
 
549
+ #: counter-options.php:180
550
  #@ cpd
 
551
  msgid "until User Level"
552
  msgstr "Tot Gebruikers Niveau"
553
 
554
+ #: counter.php:1445
 
555
  msgid "Plugin"
556
  msgstr "Plugin"
557
 
558
+ #: counter.php:563
559
+ #: counter.php:938
560
+ #: notes.php:51
561
+ #: notes.php:85
562
  #@ cpd
 
 
 
563
  msgid "Notes"
564
  msgstr "Opmerkingen"
565
 
566
+ #: notes.php:86
 
567
  msgid "Action"
568
  msgstr "Actie"
569
 
570
+ #: notes.php:91
571
  #@ cpd
 
572
  msgid "add"
573
  msgstr "toevoegen"
574
 
575
+ #: notes.php:106
576
  #@ cpd
 
577
  msgid "save"
578
  msgstr "bewaren"
579
 
580
+ #: notes.php:107
581
  #@ cpd
 
582
  msgid "delete"
583
  msgstr "verwijderen"
584
 
585
+ #: notes.php:118
586
  #@ cpd
 
587
  msgid "edit"
588
  msgstr "bewerken"
589
 
590
+ #: notes.php:85
591
+ #@ cpd
592
+ msgid "(1 per day)"
593
+ msgstr "(1 per dag)"
594
+
595
+ #: counter-options.php:272
596
  #@ cpd
 
597
  msgid "Add this value to \"Total reads\"."
598
+ msgstr "Voeg deze waarde toe aan \"Totale Hits\"."
599
 
600
+ #: counter.php:436
601
  #@ cpd
 
 
602
  msgid "Total reads"
603
+ msgstr "Totale Hits"
604
 
605
+ #: counter.php:437
606
  #@ cpd
 
 
607
  msgid "Reads today"
608
+ msgstr "Hits vandaag"
609
 
610
+ #: counter.php:438
611
  #@ cpd
 
 
612
  msgid "Reads yesterday"
613
+ msgstr "Hits gisteren"
614
 
615
+ #: counter-options.php:199
616
  #@ cpd
 
617
  msgid "Anonymous IP"
618
  msgstr "Anonieme IP"
619
 
620
+ #: counter-options.php:203
621
  #@ cpd
 
622
  msgid "Cache"
623
  msgstr "Cache"
624
 
625
+ #: counter-options.php:204
626
  #@ cpd
 
627
  msgid "I use a cache plugin. Count these visits with ajax."
628
  msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
629
 
630
+ #: counter-options.php:242
631
  #@ cpd
 
632
  msgid "Substring of the user agent, separated by comma"
633
  msgstr "Substring van de user agent, gescheiden door een comma"
634
 
635
+ #: counter-options.php:281
636
+ #: counter-options.php:285
637
  #@ cpd
 
638
  msgid "Debug mode"
639
  msgstr "Debugmodus"
640
 
641
+ #: counter-options.php:286
642
  #@ cpd
 
643
  msgid "Show debug informations at the bottom of all pages."
644
  msgstr "Geef debug informatie weer op de bodem van elke pagina."
645
 
646
+ #: counter.php:1451
647
  #@ cpd
 
648
  msgid "Visitors per Country"
649
  msgstr "Bezoekers per Land"
650
 
651
+ #: counter.php:1534
652
  #@ cpd
 
 
653
  msgid "Map"
654
  msgstr "Kaart"
655
 
656
+ #: userperspan.php:41
657
  #@ cpd
 
658
  msgid "Start"
659
  msgstr "Start"
660
 
661
+ #: userperspan.php:43
662
  #@ cpd
 
663
  msgid "End"
664
  msgstr "Einde"
665
 
666
+ #: userperspan.php:45
667
  #@ cpd
 
668
  msgid "PostID"
669
  msgstr "PostID"
670
 
671
+ #: userperspan.php:54
672
  #@ cpd
 
673
  msgid "no data found"
674
  msgstr "geen data gevonden"
675
 
676
+ #: counter-options.php:313
677
  #@ cpd
678
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
 
679
  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!"
680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-pl_PL.mo CHANGED
Binary file
locale/cpd-pl_PL.po CHANGED
@@ -13,960 +13,668 @@ msgstr ""
13
  "X-Poedit-Language: Polish\n"
14
  "X-Poedit-Country: POLAND\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-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
 
13
  "X-Poedit-Language: Polish\n"
14
  "X-Poedit-Country: POLAND\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;_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-options.php:41
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Opcje zaktualizowane"
26
 
27
+ #: counter-options.php:51
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:56
34
  #@ cpd
35
  msgid "update next"
36
  msgstr "Następna aktualizacja"
37
 
38
+ #: counter-options.php:94
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:101
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:107
51
  #@ cpd
52
  msgid "Counter reseted."
53
  msgstr "Licznik skasowany"
54
 
55
+ #: counter-options.php:111
56
+ #: counter-options.php:460
57
  #@ cpd
58
  msgid "UNINSTALL Count per Day"
59
  msgstr "USUŃ Count per Day"
60
 
61
+ #: counter-options.php:118
62
+ #: counter-options.php:120
 
63
  #, php-format
64
  #@ cpd
65
  msgid "Table %s deleted"
66
  msgstr "Tabela %s usunięta"
67
 
68
+ #: counter-options.php:122
69
  #@ cpd
70
  msgid "Options deleted"
71
  msgstr "Opcje usunięte"
72
 
73
+ #: counter-options.php:146
74
+ #: counter-options.php:445
75
  #@ cpd
76
  msgid "Uninstall"
77
  msgstr "Odinstalowanie"
78
 
79
+ #: counter-options.php:147
80
  #@ cpd
81
  msgid "Click here"
82
  msgstr "Kliknij tutaj"
83
 
84
+ #: counter-options.php:147
85
  #@ cpd
86
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
  msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
88
 
89
+ #: counter-options.php:168
90
+ #@ cpd
91
+ msgid "Options"
92
+ msgstr "Opcje"
93
+
94
+ #: counter-options.php:173
95
  #@ cpd
96
  msgid "Online time"
97
  msgstr "Czas bycia online"
98
 
99
+ #: counter-options.php:174
100
  #@ cpd
101
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
  msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
103
 
104
+ #: counter-options.php:177
105
  #@ cpd
106
+ msgid "Loged on Users"
107
  msgstr "Zalogowani użytkownicy"
108
 
109
+ #: counter-options.php:179
110
  #@ cpd
111
  msgid "count too"
112
  msgstr "również liczyć"
113
 
114
+ #: counter-options.php:180
115
  #@ cpd
116
  msgid "until User Level"
117
  msgstr "do poziomu użytkownika"
118
 
119
+ #: counter-options.php:191
120
  #@ cpd
121
  msgid "Auto counter"
122
  msgstr "Licznik"
123
 
124
+ #: counter-options.php:192
125
  #@ cpd
126
  msgid "Counts automatically single-posts and pages, no changes on template needed."
127
  msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
128
 
129
+ #: counter-options.php:195
130
  #@ cpd
131
  msgid "Bots to ignore"
132
  msgstr "Boty do ignorowania"
133
 
134
+ #: counter-options.php:212
 
135
  msgid "Dashboard"
136
  msgstr ""
137
 
138
+ #: counter-options.php:215
139
+ #: counter.php:1442
140
  #@ cpd
141
  msgid "Visitors per post"
142
  msgstr "Gości na wpisie"
143
 
144
+ #: counter-options.php:216
145
+ #: counter-options.php:220
146
  #@ cpd
147
  msgid "How many posts do you want to see on dashboard page?"
148
  msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
149
 
150
+ #: counter-options.php:219
151
  #@ cpd
152
  msgid "Latest Counts - Posts"
153
  msgstr "Ostatnie Odsłony - Wpisy"
154
 
155
+ #: counter-options.php:223
156
  #@ cpd
157
  msgid "Latest Counts - Days"
158
  msgstr "Ostatnie Odsłony - Dni"
159
 
160
+ #: counter-options.php:224
161
+ #: counter-options.php:228
 
162
  #@ cpd
163
  msgid "How many days do you want look back?"
164
  msgstr "Ile dni chcesz patrzeć wstecz?"
165
 
166
+ #: counter-options.php:227
167
  #@ cpd
168
  msgid "Chart - Days"
169
  msgstr "Wykres - Dni"
170
 
171
+ #: counter-options.php:231
172
  #@ cpd
173
  msgid "Chart - Height"
174
  msgstr "Wykres - Wysokość"
175
 
176
+ #: counter-options.php:232
177
  #@ cpd
178
  msgid "Height of the biggest bar"
179
  msgstr "Wysokość najwyższego słupka"
180
 
181
+ #: counter-options.php:236
182
  #@ cpd
183
  msgid "Countries"
184
  msgstr "Państwa"
185
 
186
+ #: counter-options.php:237
187
  #@ cpd
188
  msgid "How many countries do you want to see on dashboard page?"
189
  msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
190
 
191
+ #: counter-options.php:250
192
+ msgid "Edit Posts"
193
+ msgstr ""
194
+
195
+ #: counter-options.php:250
196
+ msgid "Edit Pages"
197
+ msgstr ""
198
+
199
+ #: counter-options.php:253
200
  #@ cpd
201
  msgid "Show in lists"
202
  msgstr "Pokaż na listach"
203
 
204
+ #: counter-options.php:254
205
  #@ cpd
206
  msgid "Show \"Reads per Post\" in a new column in post management views."
207
  msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
208
 
209
+ #: counter-options.php:258
210
  #@ cpd
211
  msgid "Start Values"
212
  msgstr "Startowe Wartości"
213
 
214
+ #: counter-options.php:259
215
  #@ cpd
216
  msgid "Here you can change the date of first count and add a start count."
217
  msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
218
 
219
+ #: counter-options.php:263
220
  #@ cpd
221
  msgid "Start date"
222
  msgstr "Data rozpoczęcia"
223
 
224
+ #: counter-options.php:264
225
  #@ cpd
226
  msgid "Your old Counter starts at?"
227
  msgstr "Stary licznik zaczął w?"
228
 
229
+ #: counter-options.php:267
230
+ #: counter-options.php:271
231
  #@ cpd
232
  msgid "Start count"
233
  msgstr "Stan początkowy licznika"
234
 
235
+ #: counter-options.php:268
236
  #@ cpd
237
  msgid "Add this value to \"Total visitors\"."
238
  msgstr "Dodaj tą wartość do \"Gości razem\"."
239
 
240
+ #: counter-options.php:272
241
  #@ cpd
242
  msgid "Add this value to \"Total reads\"."
243
  msgstr "Dodaj tą wartość do \"Odsłon razem\"."
244
 
245
+ #: counter-options.php:208
246
+ #: counter-options.php:246
247
+ #: counter-options.php:276
248
+ #: counter-options.php:291
249
  #@ cpd
250
  msgid "Update options"
251
  msgstr "Aktualizuj opcje"
252
 
253
+ #: counter-options.php:301
254
  #@ cpd
255
  msgid "GeoIP - Countries"
256
  msgstr "GeoIP - Państwa"
257
 
258
+ #: counter-options.php:310
259
  #@ cpd
260
  msgid "Update old counter data"
261
  msgstr "Aktualizuj stare dane licznika"
262
 
263
+ #: counter-options.php:323
264
  #@ cpd
265
  msgid "Update GeoIP database"
266
  msgstr "Aktualizuj bazę danych GeoIP"
267
 
268
+ #: counter-options.php:326
269
  #@ cpd
270
  msgid "Download a new version of GeoIP.dat file."
271
  msgstr "Pobierz nową wersję pliku GeoIP.dat."
272
 
273
+ #: counter-options.php:332
274
  #@ cpd
275
  msgid "More informations about GeoIP"
276
  msgstr "Więcej informacji o GeoIP"
277
 
278
+ #: counter-options.php:352
279
+ #: massbots.php:37
280
  #@ cpd
281
  msgid "Mass Bots"
282
  msgstr "Masowe boty"
283
 
284
+ #: counter-options.php:356
285
  #, php-format
286
  #@ cpd
287
  msgid "Show all IPs with more than %s page views per day"
288
  msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
289
 
290
+ #: counter-options.php:357
291
+ #: notes.php:80
292
+ #: userperspan.php:47
293
  #@ cpd
294
  msgid "show"
295
  msgstr "pokaż"
296
 
297
+ #: counter-options.php:365
298
  #@ cpd
299
  msgid "IP"
300
  msgstr "IP"
301
 
302
+ #: counter-options.php:366
303
+ #: notes.php:84
304
  #@ cpd
 
305
  msgid "Date"
306
  msgstr "Data"
307
 
308
+ #: counter-options.php:367
309
  #@ cpd
310
  msgid "Client"
311
  msgstr "Klient"
312
 
313
+ #: counter-options.php:368
314
  #@ cpd
315
  msgid "Views"
316
  msgstr "Wyświetlenia"
317
 
318
+ #: counter-options.php:379
319
+ #: counter-options.php:401
320
  #, php-format
321
  #@ cpd
322
  msgid "Delete these %s counts"
323
  msgstr "Usuń te s% dane"
324
 
325
+ #: counter-options.php:410
326
+ #: counter-options.php:419
327
  #@ cpd
328
  msgid "Clean the database"
329
  msgstr "Wyczyść bazę danych"
330
 
331
+ #: counter-options.php:413
332
  #@ cpd
333
  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."
334
  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."
335
 
336
+ #: counter-options.php:427
337
+ #: counter-options.php:436
338
  #@ cpd
339
  msgid "Reset the counter"
340
  msgstr "Skasuj licznik"
341
 
342
+ #: counter-options.php:430
343
  #@ cpd
344
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
345
  msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
346
 
347
+ #: counter-options.php:448
348
  #@ cpd
349
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
350
  msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
351
 
352
+ #: counter-options.php:449
353
  #@ cpd
354
  msgid "Here you can delete the tables and disable \"Count per Day\"."
355
  msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
356
 
357
+ #: counter-options.php:452
358
  #@ cpd
359
  msgid "WARNING"
360
  msgstr "UWAGA"
361
 
362
+ #: counter-options.php:453
363
  #@ cpd
364
  msgid "These tables (with ALL counter data) will be deleted."
365
  msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
366
 
367
+ #: counter-options.php:455
368
  #@ cpd
369
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
370
  msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
371
 
372
+ #: counter-options.php:459
 
373
  #@ cpd
374
  msgid "Yes"
375
  msgstr "Tak"
376
 
377
+ #: counter-options.php:460
378
  #@ cpd
379
  msgid "You are sure to disable Count per Day and delete all data?"
380
  msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
381
 
382
+ #: counter-options.php:468
383
  #@ cpd
384
  msgid "Support"
385
  msgstr "Wsparcie"
386
 
387
+ #: counter-options.php:473
388
+ #: counter.php:1408
389
+ #: counter.php:1656
390
  #, php-format
391
  #@ cpd
392
  msgid "Time for Count per Day: <code>%s</code>."
393
  msgstr "Czas u Count per Day: <code>%s</code>."
394
 
395
+ #: counter-options.php:476
396
+ #: counter.php:1409
397
  #@ cpd
398
  msgid "Bug? Problem? Question? Hint? Praise?"
399
  msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
400
 
401
+ #: counter-options.php:478
402
+ #: counter.php:1410
403
  #, php-format
404
  #@ cpd
405
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
406
  msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
407
 
408
+ #: counter.php:436
 
409
  #@ cpd
410
  msgid "Total reads"
411
  msgstr "Odsłon razem"
412
 
413
+ #: counter.php:437
 
414
  #@ cpd
415
  msgid "Reads today"
416
  msgstr "Odsłon dzisiaj"
417
 
418
+ #: counter.php:438
 
419
  #@ cpd
420
  msgid "Reads yesterday"
421
  msgstr "Odsłon wczoraj"
422
 
423
+ #: counter.php:439
424
+ #: counter.php:1149
425
+ #: counter.php:1437
 
426
  #@ cpd
427
  msgid "Total visitors"
428
  msgstr "Gości razem"
429
 
430
+ #: counter.php:440
 
431
  #@ cpd
432
  msgid "Visitors currently online"
433
  msgstr "Goście obecnie online"
434
 
435
+ #: counter.php:441
 
436
  #@ cpd
437
  msgid "Visitors today"
438
  msgstr "Gości dzisiaj"
439
 
440
+ #: counter.php:442
 
441
  #@ cpd
442
  msgid "Visitors yesterday"
443
  msgstr "Gości wczoraj"
444
 
445
+ #: counter.php:443
 
446
  #@ cpd
447
  msgid "Visitors last week"
448
  msgstr "Gości w preszłym tygodniu"
449
 
450
+ #: counter.php:444
451
+ #: counter.php:1151
452
+ #: counter.php:1438
453
+ #: counter.php:1444
454
+ #: userperspan.php:37
 
455
  #@ cpd
456
  msgid "Visitors per day"
457
  msgstr "Gości dziennie"
458
 
459
+ #: counter.php:445
 
 
460
  #@ cpd
461
  msgid "Counter starts on"
462
  msgstr "Licznone od"
463
 
464
+ #: counter.php:560
465
+ #@ cpd
466
+ msgid "days"
467
+ msgstr "dni"
468
+
469
+ #: counter.php:563
470
+ #: counter.php:938
471
+ #: notes.php:51
472
+ #: notes.php:85
473
  #@ cpd
474
  msgid "Notes"
475
  msgstr "Notatka"
476
 
477
+ #: counter.php:587
478
+ #@ cpd
479
+ msgid "no reads at this time"
480
+ msgstr "bez odczytów w tym czasie"
481
+
482
+ #: counter.php:886
483
  #, php-format
484
  #@ cpd
485
  msgid "The %s most visited posts in last %s days:"
486
  msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
487
 
488
+ #: counter.php:937
 
489
  msgid "Show"
490
  msgstr ""
491
 
492
+ #: counter.php:971
493
  #@ cpd
494
  msgid "Other"
495
  msgstr "Inne"
496
 
497
+ #: counter.php:1021
 
498
  msgid "Edit Post"
499
  msgstr ""
500
 
501
+ #: counter.php:1037
502
+ #: counter.php:1058
503
+ #: massbots.php:47
504
+ #: userperspan.php:68
505
  msgid "Front page displays"
506
  msgstr ""
507
 
508
+ #: counter.php:1136
 
 
 
509
  msgid "Settings"
510
  msgstr ""
511
 
512
+ #: counter.php:1245
 
 
 
513
  #@ cpd
514
  msgid "Reads"
515
  msgstr "Odsłon"
516
 
517
+ #: counter.php:1325
518
  #@ cpd
519
  msgid "This post"
520
  msgstr "Ten wpis"
521
 
522
+ #: counter.php:1362
523
+ msgid "Title:"
524
+ msgstr ""
525
+
526
+ #: counter.php:1373
527
+ #@ cpd
528
+ msgid "Label"
529
+ msgstr "Etykieta"
530
+
531
+ #: counter.php:1373
532
+ #@ cpd
533
+ msgid "empty = name above"
534
+ msgstr "empty/puste = nazwa powyżej"
535
+
536
+ #: counter.php:1439
537
  #@ cpd
538
  msgid "Reads per day"
539
  msgstr "Odsłon dziennie"
540
 
541
+ #: counter.php:1440
 
542
  #@ cpd
543
  msgid "Visitors per month"
544
  msgstr "Gości miesięcznie"
545
 
546
+ #: counter-options.php:241
547
+ #: counter.php:1441
548
  #@ cpd
549
  msgid "Browsers"
550
  msgstr "Przeglądarki"
551
 
552
+ #: counter.php:1443
553
  #@ cpd
554
  msgid "Latest Counts"
555
  msgstr "Ostatnie Odsłony"
556
 
557
+ #: counter.php:1445
 
558
  msgid "Plugin"
559
  msgstr ""
560
 
561
+ #: counter.php:1450
562
  #@ cpd
563
  msgid "Reads per Country"
564
  msgstr "Odsłon na państwo"
565
 
566
+ #: counter.php:1466
 
567
  #@ cpd
568
  msgid "Statistics"
569
  msgstr "Statystyki"
570
 
571
+ #: counter.php:1534
 
572
  #@ cpd
573
  msgid "Map"
574
  msgstr "Mapa"
575
 
576
+ #: geoip/geoip.php:91
577
  #@ cpd
578
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
579
  msgstr "Przepraszamy, niezbędne funkcje (zlib) nie są zainstalowane lub włączone w php.ini."
580
 
581
+ #: geoip/geoip.php:115
582
  #@ cpd
583
  msgid "New GeoIP database installed."
584
  msgstr "Nowa GeoIP baza danych zainstalowana."
585
 
586
+ #: geoip/geoip.php:117
587
  #@ cpd
588
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
589
  msgstr "Przepraszamy, wystąpił błąd. Spróbuj ponownie lub sprawdzić prawa dostępu do katalogu \"geoip\", jest 777."
590
 
591
+ #: notes.php:85
592
+ #@ cpd
593
+ msgid "(1 per day)"
594
+ msgstr "(1 na dzień)"
595
+
596
+ #: notes.php:86
597
  msgid "Action"
598
  msgstr ""
599
 
600
+ #: notes.php:91
601
  #@ cpd
602
  msgid "add"
603
  msgstr "dodać"
604
 
605
+ #: notes.php:106
606
  #@ cpd
607
  msgid "save"
608
  msgstr "zapisać"
609
 
610
+ #: notes.php:107
611
  #@ cpd
612
  msgid "delete"
613
  msgstr "usunąć"
614
 
615
+ #: notes.php:118
616
  #@ cpd
617
  msgid "edit"
618
  msgstr "edytować"
619
 
620
+ #: counter-options.php:199
621
  #@ cpd
622
  msgid "Anonymous IP"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
623
  msgstr ""
624
 
625
+ #: counter-options.php:203
626
  #@ cpd
627
+ msgid "Cache"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
628
  msgstr ""
629
 
630
+ #: counter-options.php:204
631
  #@ cpd
632
+ msgid "I use a cache plugin. Count these visits with ajax."
633
  msgstr ""
634
 
635
+ #: counter-options.php:242
636
  #@ cpd
637
+ msgid "Substring of the user agent, separated by comma"
638
  msgstr ""
639
 
640
+ #: counter-options.php:281
641
  #: counter-options.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  #@ cpd
643
+ msgid "Debug mode"
 
 
 
 
 
 
644
  msgstr ""
645
 
646
+ #: counter-options.php:286
 
647
  #@ cpd
648
+ msgid "Show debug informations at the bottom of all pages."
649
  msgstr ""
650
 
651
+ #: counter.php:1451
652
  #@ cpd
653
+ msgid "Visitors per Country"
654
  msgstr ""
655
 
656
+ #: userperspan.php:41
657
  #@ cpd
658
+ msgid "Start"
659
  msgstr ""
660
 
661
+ #: userperspan.php:43
662
  #@ cpd
663
+ msgid "End"
664
  msgstr ""
665
 
666
+ #: userperspan.php:45
 
667
  #@ cpd
668
+ msgid "PostID"
669
  msgstr ""
670
 
671
+ #: userperspan.php:54
 
672
  #@ cpd
673
+ msgid "no data found"
674
  msgstr ""
675
 
676
+ #: counter-options.php:313
677
  #@ cpd
678
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
679
  msgstr ""
680
 
locale/cpd-pt_BR.mo CHANGED
Binary file
locale/cpd-pt_BR.po CHANGED
@@ -13,959 +13,667 @@ 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-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
-
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;_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:41
23
  msgid "Options updated"
24
  msgstr "Op&ccedil;&otilde;es atualizadas"
25
 
26
  #@ cpd
27
+ #: counter-options.php:101
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:111
34
+ #: counter-options.php:460
35
  msgid "UNINSTALL Count per Day"
36
  msgstr "DESINSTALAR o Count per Day"
37
 
38
  #@ cpd
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
 
41
  #, php-format
42
  msgid "Table %s deleted"
43
  msgstr "Tabela %s apagada"
44
 
45
  #@ cpd
46
+ #: counter-options.php:122
47
  msgid "Options deleted"
48
  msgstr "Op&ccedil;&otilde;es apagadas"
49
 
50
  #@ cpd
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
  msgid "Uninstall"
54
  msgstr "Desinstalar"
55
 
56
  #@ cpd
57
+ #: counter-options.php:147
58
  msgid "Click here"
59
  msgstr "Clique aqui"
60
 
61
  #@ cpd
62
+ #: counter-options.php:147
63
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
64
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
65
 
66
  #@ cpd
67
+ #: counter-options.php:168
68
+ msgid "Options"
69
+ msgstr "Op&ccedil;&otilde;es"
70
+
71
+ #@ cpd
72
+ #: counter-options.php:173
73
  msgid "Online time"
74
  msgstr "Per&iacute;odo online"
75
 
76
  #@ cpd
77
+ #: counter-options.php:174
78
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
79
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
80
 
81
  #@ cpd
82
+ #: counter-options.php:177
83
+ msgid "Loged on Users"
84
  msgstr "Usu&aacute;rios logados"
85
 
86
  #@ cpd
87
+ #: counter-options.php:179
88
  msgid "count too"
89
  msgstr "contar tamb&eacute;m"
90
 
91
  #@ cpd
92
+ #: counter-options.php:191
93
  msgid "Auto counter"
94
  msgstr "Autocontador"
95
 
96
  #@ cpd
97
+ #: counter-options.php:192
98
  msgid "Counts automatically single-posts and pages, no changes on template needed."
99
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
100
 
101
  #@ cpd
102
+ #: counter-options.php:195
103
  msgid "Bots to ignore"
104
  msgstr "Bots a serem ignorados"
105
 
106
  #@ cpd
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
  msgid "Update options"
112
  msgstr "Atualizar op&ccedil;&otilde;es"
113
 
114
  #@ cpd
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
  msgid "Clean the database"
118
  msgstr "Limpar o banco de dados"
119
 
120
  #@ cpd
121
+ #: counter-options.php:413
122
  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."
123
  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."
124
 
125
  #@ cpd
126
+ #: counter-options.php:448
127
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
128
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
129
 
130
  #@ cpd
131
+ #: counter-options.php:449
132
  msgid "Here you can delete the tables and disable \"Count per Day\"."
133
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
134
 
135
  #@ cpd
136
+ #: counter-options.php:452
137
  msgid "WARNING"
138
  msgstr "ATEN&Ccedil;&Atilde;O"
139
 
140
  #@ cpd
141
+ #: counter-options.php:453
142
  msgid "These tables (with ALL counter data) will be deleted."
143
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
144
 
145
  #@ cpd
146
+ #: counter-options.php:455
147
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
148
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
149
 
150
  #@ cpd
151
+ #: counter-options.php:459
 
152
  msgid "Yes"
153
  msgstr "Sim, quero"
154
 
155
  #@ cpd
156
+ #: counter-options.php:460
157
  msgid "You are sure to disable Count per Day and delete all data?"
158
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
159
 
160
  #@ cpd
161
+ #: counter.php:1466
 
162
  msgid "Statistics"
163
  msgstr "Estat&iacute;sticas"
164
 
165
  #@ cpd
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
 
169
  msgid "Total visitors"
170
  msgstr "Total de visitas"
171
 
172
  #@ cpd
173
+ #: counter.php:440
 
174
  msgid "Visitors currently online"
175
  msgstr "Visitantes online"
176
 
177
  #@ cpd
178
+ #: counter.php:441
 
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
  #@ cpd
183
+ #: counter.php:442
 
184
  msgid "Visitors yesterday"
185
  msgstr "Visitas ontem"
186
 
187
  #@ cpd
188
+ #: counter.php:443
 
189
  msgid "Visitors last week"
190
  msgstr "Visitas semana passada"
191
 
192
  #@ cpd
193
+ #: counter.php:445
 
 
194
  msgid "Counter starts on"
195
  msgstr "In&iacute;cio da contagem"
196
 
197
  #@ cpd
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
 
203
  msgid "Visitors per day"
204
  msgstr "(m&eacute;dia) de visitas por dia"
205
 
206
  #@ cpd
207
+ #: counter.php:1440
 
208
  msgid "Visitors per month"
209
  msgstr "Visitas por m&ecirc;s"
210
 
211
  #@ cpd
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
  msgid "Visitors per post"
215
  msgstr "Visitas por post"
216
 
217
  #@ cpd
218
+ #: counter-options.php:51
219
  #, php-format
220
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
221
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
222
 
223
  #@ cpd
224
+ #: counter-options.php:56
225
  msgid "update next"
226
  msgstr "Atualizar proximo"
227
 
228
  #@ cpd
229
+ #: counter-options.php:94
230
  #, php-format
231
  msgid "Mass Bots cleaned. %s counts deleted."
232
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
233
 
234
  #@ cpd
235
+ #: counter-options.php:107
236
  msgid "Counter reseted."
237
  msgstr "Contador reiniciado."
238
 
239
+ #: counter-options.php:212
 
240
  msgid "Dashboard"
241
  msgstr "Painel"
242
 
243
  #@ cpd
244
+ #: counter-options.php:216
245
+ #: counter-options.php:220
246
  msgid "How many posts do you want to see on dashboard page?"
247
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
248
 
249
  #@ cpd
250
+ #: counter-options.php:219
251
  msgid "Latest Counts - Posts"
252
  msgstr "Contagens Recentes - Posts"
253
 
254
  #@ cpd
255
+ #: counter-options.php:223
256
  msgid "Latest Counts - Days"
257
  msgstr "Contagens Recentes - Dias"
258
 
259
  #@ cpd
260
+ #: counter-options.php:224
261
+ #: counter-options.php:228
 
262
  msgid "How many days do you want look back?"
263
  msgstr "Quantos dias atr&aacute;s você quer ver?"
264
 
265
  #@ cpd
266
+ #: counter-options.php:227
267
  msgid "Chart - Days"
268
  msgstr "Gr&aacute;fico - Dias"
269
 
270
  #@ cpd
271
+ #: counter-options.php:231
272
  msgid "Chart - Height"
273
  msgstr "Gr&aacute;fico - Altura"
274
 
275
  #@ cpd
276
+ #: counter-options.php:232
277
  msgid "Height of the biggest bar"
278
  msgstr "Altura da barra maior"
279
 
280
  #@ cpd
281
+ #: counter-options.php:236
282
  msgid "Countries"
283
  msgstr "Pa&iacute;ses"
284
 
285
  #@ cpd
286
+ #: counter-options.php:237
287
  msgid "How many countries do you want to see on dashboard page?"
288
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
289
 
290
+ #: counter-options.php:250
291
+ msgid "Edit Posts"
292
+ msgstr "Editar Posts"
293
+
294
+ #: counter-options.php:250
295
+ msgid "Edit Pages"
296
+ msgstr "Editar P&aacute;ginas"
297
+
298
  #@ cpd
299
+ #: counter-options.php:253
300
  msgid "Show in lists"
301
  msgstr "Exibir em listas"
302
 
303
  #@ cpd
304
+ #: counter-options.php:254
305
  msgid "Show \"Reads per Post\" in a new column in post management views."
306
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
307
 
308
  #@ cpd
309
+ #: counter-options.php:301
310
  msgid "GeoIP - Countries"
311
  msgstr "GeoIP - Pa&iacute;ses"
312
 
313
  #@ cpd
314
+ #: counter-options.php:310
315
  msgid "Update old counter data"
316
  msgstr "Atualizar dados de contadores antigos"
317
 
318
  #@ cpd
319
+ #: counter-options.php:323
320
  msgid "Update GeoIP database"
321
  msgstr "Atualizar Base de Dados GeoIP"
322
 
323
  #@ cpd
324
+ #: counter-options.php:326
325
  msgid "Download a new version of GeoIP.dat file."
326
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
327
 
328
  #@ cpd
329
+ #: counter-options.php:332
330
  msgid "More informations about GeoIP"
331
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
332
 
333
  #@ cpd
334
+ #: counter-options.php:352
335
+ #: massbots.php:37
336
  msgid "Mass Bots"
337
  msgstr "Mass Bots"
338
 
339
  #@ cpd
340
+ #: counter-options.php:356
341
  #, php-format
342
  msgid "Show all IPs with more than %s page views per day"
343
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
344
 
345
  #@ cpd
346
+ #: counter-options.php:357
347
+ #: notes.php:80
348
+ #: userperspan.php:47
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
  #@ cpd
353
+ #: counter-options.php:365
354
  msgid "IP"
355
  msgstr "IP"
356
 
357
  #@ cpd
358
+ #: counter-options.php:366
359
+ #: notes.php:84
 
360
  msgid "Date"
361
  msgstr "Data"
362
 
363
  #@ cpd
364
+ #: counter-options.php:367
365
  msgid "Client"
366
  msgstr "Cliente"
367
 
368
  #@ cpd
369
+ #: counter-options.php:368
370
  msgid "Views"
371
  msgstr "Exibi&ccedil;&otilde;es"
372
 
373
  #@ cpd
374
+ #: counter-options.php:379
375
+ #: counter-options.php:401
376
  #, php-format
377
  msgid "Delete these %s counts"
378
  msgstr "Deletar estes %s contadores"
379
 
380
  #@ cpd
381
+ #: counter-options.php:427
382
+ #: counter-options.php:436
383
  msgid "Reset the counter"
384
  msgstr "Reiniciar o contador"
385
 
386
  #@ cpd
387
+ #: counter-options.php:430
388
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
389
  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!"
390
 
391
  #@ cpd
392
+ #: counter.php:587
393
+ msgid "no reads at this time"
394
+ msgstr "nenhuma leitura nesse momento"
395
+
396
+ #@ cpd
397
+ #: counter.php:560
398
+ msgid "days"
399
+ msgstr "dias"
400
+
401
+ #@ cpd
402
+ #: counter.php:886
403
  #, php-format
404
  msgid "The %s most visited posts in last %s days:"
405
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
406
 
407
  #@ cpd
408
+ #: counter.php:971
409
  msgid "Other"
410
  msgstr "Outro"
411
 
412
+ #: counter.php:1037
413
+ #: counter.php:1058
414
+ #: massbots.php:47
415
+ #: userperspan.php:68
416
  msgid "Front page displays"
417
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
418
 
419
+ #: counter.php:1136
 
 
 
420
  msgid "Settings"
421
  msgstr "Configura&ccedil;&otilde;es"
422
 
423
  #@ cpd
424
+ #: counter.php:1245
 
 
 
425
  msgid "Reads"
426
  msgstr "Leituras"
427
 
428
  #@ cpd
429
+ #: counter.php:1325
430
  msgid "This post"
431
  msgstr "Este post"
432
 
433
+ #: counter.php:1362
434
+ msgid "Title:"
435
+ msgstr "T&iacute;tulo:"
436
+
437
+ #@ cpd
438
+ #: counter.php:1373
439
+ msgid "Label"
440
+ msgstr "R&oacute;tulo"
441
+
442
+ #@ cpd
443
+ #: counter.php:1373
444
+ msgid "empty = name above"
445
+ msgstr "vazio = nomeie antes"
446
+
447
  #@ cpd
448
+ #: counter.php:1439
449
  msgid "Reads per day"
450
  msgstr "Leituras por dia"
451
 
452
  #@ cpd
453
+ #: counter-options.php:241
454
+ #: counter.php:1441
455
  msgid "Browsers"
456
  msgstr "Navegadores"
457
 
458
  #@ cpd
459
+ #: counter.php:1443
460
  msgid "Latest Counts"
461
  msgstr "Contagens Recentes"
462
 
463
  #@ cpd
464
+ #: counter.php:1450
465
  msgid "Reads per Country"
466
  msgstr "Leituras por Pa&iacute;s"
467
 
468
  #@ cpd
469
+ #: geoip/geoip.php:91
470
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
471
  msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
472
 
473
  #@ cpd
474
+ #: geoip/geoip.php:115
475
  msgid "New GeoIP database installed."
476
  msgstr "Nova base de dados GeoIP instalada."
477
 
478
  #@ cpd
479
+ #: geoip/geoip.php:117
480
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
481
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
482
 
483
  #@ cpd
484
+ #: counter-options.php:180
485
  msgid "until User Level"
486
  msgstr "usuários do nível"
487
 
488
  #@ cpd
489
+ #: counter-options.php:258
490
  msgid "Start Values"
491
  msgstr "Valor inicial"
492
 
493
  #@ cpd
494
+ #: counter-options.php:259
495
  msgid "Here you can change the date of first count and add a start count."
496
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
497
 
498
  #@ cpd
499
+ #: counter-options.php:263
500
  msgid "Start date"
501
  msgstr "Data inicial"
502
 
503
  #@ cpd
504
+ #: counter-options.php:264
505
  msgid "Your old Counter starts at?"
506
  msgstr "Sua contagem antiga começa em?"
507
 
508
  #@ cpd
509
+ #: counter-options.php:267
510
+ #: counter-options.php:271
511
  msgid "Start count"
512
  msgstr "Contagem inicial"
513
 
514
  #@ cpd
515
+ #: counter-options.php:268
516
  msgid "Add this value to \"Total visitors\"."
517
  msgstr "Adicione este valor para \"Total visitors\"."
518
 
519
  #@ cpd
520
+ #: counter-options.php:468
521
  msgid "Support"
522
  msgstr "Suporte"
523
 
524
  #@ cpd
525
+ #: counter-options.php:476
526
+ #: counter.php:1409
527
  msgid "Bug? Problem? Question? Hint? Praise?"
528
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
529
 
530
  #@ cpd
531
+ #: counter-options.php:478
532
+ #: counter.php:1410
533
  #, php-format
534
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
535
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
536
 
537
+ #: counter.php:937
 
538
  msgid "Show"
539
  msgstr "Mostrar"
540
 
541
  #@ cpd
542
+ #: counter.php:563
543
+ #: counter.php:938
544
+ #: notes.php:51
545
+ #: notes.php:85
546
  msgid "Notes"
547
  msgstr "Notas"
548
 
549
+ #: counter.php:1021
 
550
  msgid "Edit Post"
551
  msgstr "Editar Post"
552
 
553
+ #: counter.php:1445
 
554
  msgid "Plugin"
555
  msgstr "Plugin"
556
 
557
  #@ cpd
558
+ #: counter-options.php:473
559
+ #: counter.php:1408
560
+ #: counter.php:1656
561
  #, php-format
562
  msgid "Time for Count per Day: <code>%s</code>."
563
  msgstr "Tempo para Contagem por Dia: <code>%s</code>."
564
 
565
+ #@ cpd
566
+ #: notes.php:85
567
+ msgid "(1 per day)"
568
+ msgstr "(1 por dia)"
569
+
570
+ #: notes.php:86
571
  msgid "Action"
572
  msgstr "A&ccedil;&atilde;o"
573
 
574
  #@ cpd
575
+ #: notes.php:91
576
  msgid "add"
577
  msgstr "Adicionar"
578
 
579
  #@ cpd
580
+ #: notes.php:106
581
  msgid "save"
582
  msgstr "Salvar"
583
 
584
  #@ cpd
585
+ #: notes.php:107
586
  msgid "delete"
587
  msgstr "Apagar"
588
 
589
  #@ cpd
590
+ #: notes.php:118
591
  msgid "edit"
592
  msgstr "Editar"
593
 
594
  #@ cpd
595
+ #: counter-options.php:199
596
  msgid "Anonymous IP"
597
  msgstr "IP An&ocirc;nimo"
598
 
599
  #@ cpd
600
+ #: counter-options.php:203
601
  msgid "Cache"
602
  msgstr "Cache"
603
 
604
  #@ cpd
605
+ #: counter-options.php:204
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
608
 
609
  #@ cpd
610
+ #: counter-options.php:242
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
613
 
614
  #@ cpd
615
+ #: counter-options.php:272
616
  msgid "Add this value to \"Total reads\"."
617
  msgstr "Adicione este valor ao \"Total de Leituras\"."
618
 
619
  #@ cpd
620
+ #: counter-options.php:281
621
+ #: counter-options.php:285
622
  msgid "Debug mode"
623
  msgstr "Modo de depura&ccedil;&atilde;o"
624
 
625
  #@ cpd
626
+ #: counter-options.php:286
627
  msgid "Show debug informations at the bottom of all pages."
628
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
629
 
630
  #@ cpd
631
+ #: counter.php:436
 
632
  msgid "Total reads"
633
  msgstr "Total de Leituras"
634
 
635
  #@ cpd
636
+ #: counter.php:437
 
637
  msgid "Reads today"
638
  msgstr "Leituras Hoje"
639
 
640
  #@ cpd
641
+ #: counter.php:438
 
642
  msgid "Reads yesterday"
643
  msgstr "Leituras Ontem"
644
 
645
  #@ cpd
646
+ #: counter.php:1451
647
  msgid "Visitors per Country"
648
  msgstr "Visitantes por Pa&iacute;is"
649
 
650
  #@ cpd
651
+ #: counter.php:1534
 
652
  msgid "Map"
653
  msgstr "Mapa"
654
 
655
  #@ cpd
656
+ #: userperspan.php:41
657
  msgid "Start"
658
  msgstr "Iniciar"
659
 
660
  #@ cpd
661
+ #: userperspan.php:43
662
  msgid "End"
663
  msgstr "Fim"
664
 
665
  #@ cpd
666
+ #: userperspan.php:45
667
  msgid "PostID"
668
  msgstr "PostID"
669
 
670
  #@ cpd
671
+ #: userperspan.php:54
672
  msgid "no data found"
673
  msgstr "N&atilde;o foram encontrados dados"
674
 
675
  #@ cpd
676
+ #: counter-options.php:313
677
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
678
  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!"
679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-pt_PT.mo DELETED
Binary file
locale/cpd-pt_PT.po DELETED
@@ -1,971 +0,0 @@
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
@@ -4,7 +4,7 @@ msgstr ""
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: Ilya Pshenichny\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,960 +13,668 @@ msgstr ""
13
  "X-Poedit-Language: German\n"
14
  "X-Poedit-Country: GERMANY\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: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
-
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: Tom Braider <post@tomsdimension.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "X-Poedit-Language: German\n"
14
  "X-Poedit-Country: GERMANY\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;_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:41
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Настройки сохранены"
26
 
27
+ #: counter-options.php:101
28
  #, php-format
29
  #@ cpd
30
  msgid "Database cleaned. %s rows deleted."
31
  msgstr "База данных очищена. %s строчек удалено."
32
 
33
+ #: counter-options.php:111
34
+ #: counter-options.php:460
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
38
 
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
 
41
  #, php-format
42
  #@ cpd
43
  msgid "Table %s deleted"
44
  msgstr "Таблица %s удалена"
45
 
46
+ #: counter-options.php:122
47
  #@ cpd
48
  msgid "Options deleted"
49
  msgstr "Настройки удалены"
50
 
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
  #@ cpd
54
  msgid "Uninstall"
55
  msgstr "Деинсталяция"
56
 
57
+ #: counter-options.php:147
58
  #@ cpd
59
  msgid "Click here"
60
  msgstr "Нажмите сюда"
61
 
62
+ #: counter-options.php:147
63
  #@ cpd
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
66
 
67
+ #: counter-options.php:168
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Настройки"
71
+
72
+ #: counter-options.php:173
73
  #@ cpd
74
  msgid "Online time"
75
  msgstr "Время онлайн"
76
 
77
+ #: counter-options.php:174
78
  #@ cpd
79
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
  msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
81
 
82
+ #: counter-options.php:177
83
  #@ cpd
84
+ msgid "Loged on Users"
85
  msgstr "Вошедших пользователей"
86
 
87
+ #: counter-options.php:179
88
  #@ cpd
89
  msgid "count too"
90
  msgstr "также считать"
91
 
92
+ #: counter-options.php:191
93
  #@ cpd
94
  msgid "Auto counter"
95
  msgstr "Автоматический счетчик"
96
 
97
+ #: counter-options.php:192
98
  #@ cpd
99
  msgid "Counts automatically single-posts and pages, no changes on template needed."
100
  msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
101
 
102
+ #: counter-options.php:195
103
  #@ cpd
104
  msgid "Bots to ignore"
105
  msgstr "Игнорировать ботов"
106
 
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
  #@ cpd
112
  msgid "Update options"
113
  msgstr "Сохранить настройки"
114
 
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
  #@ cpd
118
  msgid "Clean the database"
119
  msgstr "Очистить базу данных"
120
 
121
+ #: counter-options.php:413
122
  #@ cpd
123
  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."
124
  msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
125
 
126
+ #: counter-options.php:448
127
  #@ cpd
128
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
129
  msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
130
 
131
+ #: counter-options.php:449
132
  #@ cpd
133
  msgid "Here you can delete the tables and disable \"Count per Day\"."
134
  msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
135
 
136
+ #: counter-options.php:452
137
  #@ cpd
138
  msgid "WARNING"
139
  msgstr "ВНИМАНИЕ"
140
 
141
+ #: counter-options.php:453
142
  #@ cpd
143
  msgid "These tables (with ALL counter data) will be deleted."
144
  msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
145
 
146
+ #: counter-options.php:455
147
  #@ cpd
148
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
149
  msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
150
 
151
+ #: counter-options.php:459
 
152
  #@ cpd
153
  msgid "Yes"
154
  msgstr "Да"
155
 
156
+ #: counter-options.php:460
157
  #@ cpd
158
  msgid "You are sure to disable Count per Day and delete all data?"
159
  msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
160
 
161
+ #: counter.php:1466
 
162
  #@ cpd
163
  msgid "Statistics"
164
  msgstr "Статистика"
165
 
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
 
169
  #@ cpd
170
  msgid "Total visitors"
171
  msgstr "Всего посетителей"
172
 
173
+ #: counter.php:440
 
174
  #@ cpd
175
  msgid "Visitors currently online"
176
  msgstr "Посетителей сейчас на сайте"
177
 
178
+ #: counter.php:441
 
179
  #@ cpd
180
  msgid "Visitors today"
181
  msgstr "Посетителей сегодня"
182
 
183
+ #: counter.php:442
 
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Посетителей вчера"
187
 
188
+ #: counter.php:443
 
189
  #@ cpd
190
  msgid "Visitors last week"
191
  msgstr "Посетителей на прошлой неделе"
192
 
193
+ #: counter.php:445
 
 
194
  #@ cpd
195
  msgid "Counter starts on"
196
  msgstr "Счетчик начинается с"
197
 
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
 
203
  #@ cpd
204
  msgid "Visitors per day"
205
  msgstr "Посетителей в день"
206
 
207
+ #: counter.php:1440
 
208
  #@ cpd
209
  msgid "Visitors per month"
210
  msgstr "Посетителей в месяц"
211
 
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
  #@ cpd
215
  msgid "Visitors per post"
216
  msgstr "Посетителей записи"
217
 
218
+ #: counter-options.php:107
219
  #@ cpd
220
  msgid "Counter reseted."
221
+ msgstr "Счетчик обнулен"
222
 
223
+ #: counter-options.php:212
 
224
  msgid "Dashboard"
225
  msgstr "Консоль"
226
 
227
+ #: counter-options.php:216
228
+ #: counter-options.php:220
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Сколько записей вы хотите видеть на странице консоли?"
232
 
233
+ #: counter-options.php:219
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Последние счетчики - Записи"
237
 
238
+ #: counter-options.php:223
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Последние счетчики - Дни"
242
 
243
+ #: counter-options.php:224
244
+ #: counter-options.php:228
 
245
  #@ cpd
246
  msgid "How many days do you want look back?"
247
  msgstr "Насколько дней назад вы хотите видеть статистику?"
248
 
249
+ #: counter-options.php:227
250
  #@ cpd
251
  msgid "Chart - Days"
252
  msgstr "Таблица - Дни"
253
 
254
+ #: counter-options.php:231
255
  #@ cpd
256
  msgid "Chart - Height"
257
  msgstr "Таблица - Высота"
258
 
259
+ #: counter-options.php:232
260
  #@ cpd
261
  msgid "Height of the biggest bar"
262
  msgstr "Высота самого большого столбика"
263
 
264
+ #: counter-options.php:250
265
+ msgid "Edit Posts"
266
+ msgstr "Редактировать Записи"
267
+
268
+ #: counter-options.php:250
269
+ msgid "Edit Pages"
270
+ msgstr "Редактировать страницы"
271
+
272
+ #: counter-options.php:253
273
  #@ cpd
274
  msgid "Show in lists"
275
  msgstr "Показать в списках"
276
 
277
+ #: counter-options.php:254
278
  #@ cpd
279
  msgid "Show \"Reads per Post\" in a new column in post management views."
280
  msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
281
 
282
+ #: counter-options.php:427
283
+ #: counter-options.php:436
284
  #@ cpd
285
  msgid "Reset the counter"
286
  msgstr "Обнулить счетчик"
287
 
288
+ #: counter-options.php:430
289
  #@ cpd
290
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
291
  msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
292
 
293
+ #: counter.php:587
294
+ #@ cpd
295
+ msgid "no reads at this time"
296
+ msgstr "нет прочтений к этому времени"
297
+
298
+ #: counter.php:560
299
+ #@ cpd
300
+ msgid "days"
301
+ msgstr "дней"
302
+
303
+ #: counter.php:886
304
  #, php-format
305
  #@ cpd
306
  msgid "The %s most visited posts in last %s days:"
307
  msgstr "Самое %s посещаемые записи за последние %s дней:"
308
 
309
+ #: counter.php:1136
 
 
 
310
  msgid "Settings"
311
  msgstr "Настройки"
312
 
313
+ #: counter.php:1439
314
  #@ cpd
315
  msgid "Reads per day"
316
  msgstr "Прочтений в день"
317
 
318
+ #: counter.php:1245
 
 
 
319
  #@ cpd
320
  msgid "Reads"
321
  msgstr "Прочтений"
322
 
323
+ #: counter.php:1325
324
  #@ cpd
325
  msgid "This post"
326
  msgstr "Эта запись"
327
 
328
+ #: counter.php:1373
329
+ #@ cpd
330
+ msgid "Label"
331
+ msgstr "Ярлык"
332
+
333
+ #: counter.php:1373
334
+ #@ cpd
335
+ msgid "empty = name above"
336
+ msgstr "пусто = имя сверху"
337
+
338
+ #: counter-options.php:51
339
  #, php-format
340
  #@ cpd
341
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
342
  msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
343
 
344
+ #: counter-options.php:56
345
  #@ cpd
346
  msgid "update next"
347
  msgstr "обновить следующий"
348
 
349
+ #: counter-options.php:94
350
  #, php-format
351
  #@ cpd
352
  msgid "Mass Bots cleaned. %s counts deleted."
353
  msgstr "Таблица ботов очищена. %s записей удалено"
354
 
355
+ #: counter-options.php:180
356
  #@ cpd
357
  msgid "until User Level"
358
  msgstr "до уровня пользователя"
359
 
360
+ #: counter-options.php:199
361
  #@ cpd
362
  msgid "Anonymous IP"
363
  msgstr "Анонимный IP"
364
 
365
+ #: counter-options.php:236
366
  #@ cpd
367
  msgid "Countries"
368
  msgstr "Страны"
369
 
370
+ #: counter-options.php:237
371
  #@ cpd
372
  msgid "How many countries do you want to see on dashboard page?"
373
  msgstr "Сколько стран вы хотите видеть в списке?"
374
 
375
+ #: counter-options.php:258
376
  #@ cpd
377
  msgid "Start Values"
378
  msgstr "Начальные данные"
379
 
380
+ #: counter-options.php:259
381
  #@ cpd
382
  msgid "Here you can change the date of first count and add a start count."
383
  msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
384
 
385
+ #: counter-options.php:263
386
  #@ cpd
387
  msgid "Start date"
388
  msgstr "Дата начала"
389
 
390
+ #: counter-options.php:264
391
  #@ cpd
392
  msgid "Your old Counter starts at?"
393
  msgstr "Ваш старый Счетчик начинался с"
394
 
395
+ #: counter-options.php:267
396
+ #: counter-options.php:271
397
  #@ cpd
398
  msgid "Start count"
399
  msgstr "Начало отсчета"
400
 
401
+ #: counter-options.php:268
402
  #@ cpd
403
  msgid "Add this value to \"Total visitors\"."
404
  msgstr "Добавить значение к \"Всего посетителей\"."
405
 
406
+ #: counter-options.php:301
407
  #@ cpd
408
  msgid "GeoIP - Countries"
409
  msgstr "GeoIP - Страны"
410
 
411
+ #: counter-options.php:310
412
  #@ cpd
413
  msgid "Update old counter data"
414
  msgstr "Обновить данные старого счетчика"
415
 
416
+ #: counter-options.php:323
417
  #@ cpd
418
  msgid "Update GeoIP database"
419
  msgstr "Обновить базу данных GeoIP"
420
 
421
+ #: counter-options.php:326
422
  #@ cpd
423
  msgid "Download a new version of GeoIP.dat file."
424
  msgstr "Скачать новую версию файла GeoIP.dat."
425
 
426
+ #: counter-options.php:332
427
  #@ cpd
428
  msgid "More informations about GeoIP"
429
  msgstr "Больше информации про GeoIP"
430
 
431
+ #: counter-options.php:352
432
+ #: massbots.php:37
433
  #@ cpd
434
  msgid "Mass Bots"
435
+ msgstr ""
436
 
437
+ #: counter-options.php:356
438
  #, php-format
439
  #@ cpd
440
  msgid "Show all IPs with more than %s page views per day"
441
  msgstr "Показать все IP с более чем %s просмотров в сутки"
442
 
443
+ #: counter-options.php:357
444
+ #: notes.php:80
445
+ #: userperspan.php:47
446
  #@ cpd
447
  msgid "show"
448
  msgstr "показать"
449
 
450
+ #: counter-options.php:365
451
  #@ cpd
452
  msgid "IP"
453
  msgstr "IP"
454
 
455
+ #: counter-options.php:366
456
+ #: notes.php:84
457
  #@ cpd
 
458
  msgid "Date"
459
  msgstr "Дата"
460
 
461
+ #: counter-options.php:367
462
  #@ cpd
463
  msgid "Client"
464
  msgstr "Клиент"
465
 
466
+ #: counter-options.php:368
467
  #@ cpd
468
  msgid "Views"
469
  msgstr "Просмотров"
470
 
471
+ #: counter-options.php:379
472
+ #: counter-options.php:401
473
  #, php-format
474
  #@ cpd
475
  msgid "Delete these %s counts"
476
  msgstr "Удалить эти %s счетчиков"
477
 
478
+ #: counter-options.php:468
479
  #@ cpd
480
  msgid "Support"
481
  msgstr "Поддержка"
482
 
483
+ #: counter-options.php:473
484
+ #: counter.php:1408
485
+ #: counter.php:1656
486
  #, php-format
487
  #@ cpd
488
  msgid "Time for Count per Day: <code>%s</code>."
489
  msgstr "Время для Count per Day: <code>%s</code>"
490
 
491
+ #: counter-options.php:476
492
+ #: counter.php:1409
493
  #@ cpd
494
  msgid "Bug? Problem? Question? Hint? Praise?"
495
  msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
496
 
497
+ #: counter-options.php:478
498
+ #: counter.php:1410
499
  #, php-format
500
  #@ cpd
501
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
502
  msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
503
 
504
+ #: counter.php:436
 
505
  #@ cpd
506
  msgid "Total reads"
507
  msgstr "Всего прочтений"
508
 
509
+ #: counter.php:437
 
510
  #@ cpd
511
  msgid "Reads today"
512
  msgstr "Прочтений сегодня"
513
 
514
+ #: counter.php:438
 
515
  #@ cpd
516
  msgid "Reads yesterday"
517
  msgstr "Прочтений вчера"
518
 
519
+ #: counter.php:563
520
+ #: counter.php:938
521
+ #: notes.php:51
522
+ #: notes.php:85
523
  #@ cpd
524
  msgid "Notes"
525
  msgstr "Заметки"
526
 
527
+ #: counter.php:937
 
528
  msgid "Show"
529
  msgstr "Показать"
530
 
531
+ #: counter.php:971
532
  #@ cpd
533
  msgid "Other"
534
  msgstr "Другие"
535
 
536
+ #: counter.php:1021
 
537
  msgid "Edit Post"
538
  msgstr "Редактировать запись"
539
 
540
+ #: counter.php:1037
541
+ #: counter.php:1058
542
+ #: massbots.php:47
543
+ #: userperspan.php:68
544
  msgid "Front page displays"
545
  msgstr "Отображений главной страницы"
546
 
547
+ #: counter.php:1362
548
+ msgid "Title:"
549
+ msgstr "Заголовок:"
550
+
551
+ #: counter-options.php:241
552
+ #: counter.php:1441
553
  #@ cpd
554
  msgid "Browsers"
555
  msgstr "Браузеры"
556
 
557
+ #: counter.php:1443
558
  #@ cpd
559
  msgid "Latest Counts"
560
  msgstr "Недавние подсчеты"
561
 
562
+ #: counter.php:1445
 
563
  msgid "Plugin"
564
  msgstr "Плагин"
565
 
566
+ #: counter.php:1450
567
  #@ cpd
568
  msgid "Reads per Country"
569
  msgstr "Прочтений по странам"
570
 
571
+ #: counter.php:1534
 
572
  #@ cpd
573
  msgid "Map"
574
  msgstr "Карта"
575
 
576
+ #: geoip/geoip.php:91
577
  #@ cpd
578
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
579
  msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
580
 
581
+ #: geoip/geoip.php:115
582
  #@ cpd
583
  msgid "New GeoIP database installed."
584
  msgstr "Новая база данных GeoIP установлена."
585
 
586
+ #: geoip/geoip.php:117
587
  #@ cpd
588
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
589
  msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
590
 
591
+ #: notes.php:85
592
+ #@ cpd
593
+ msgid "(1 per day)"
594
+ msgstr "1 на сутки"
595
+
596
+ #: notes.php:86
597
  msgid "Action"
598
  msgstr "Действие"
599
 
600
+ #: notes.php:91
601
  #@ cpd
602
  msgid "add"
603
  msgstr "добавить"
604
 
605
+ #: notes.php:106
606
  #@ cpd
607
  msgid "save"
608
  msgstr "сохранить"
609
 
610
+ #: notes.php:107
611
  #@ cpd
612
  msgid "delete"
613
  msgstr "удалить"
614
 
615
+ #: notes.php:118
616
  #@ cpd
617
  msgid "edit"
618
  msgstr "редактировать"
619
 
620
+ #: counter-options.php:203
621
  #@ cpd
622
  msgid "Cache"
623
+ msgstr "Кеш"
624
 
625
+ #: counter-options.php:204
626
  #@ cpd
627
  msgid "I use a cache plugin. Count these visits with ajax."
628
+ msgstr "Я использую кешированый плагин. Считать эти посещения при помощи ajax"
629
 
630
+ #: counter-options.php:242
631
  #@ cpd
632
  msgid "Substring of the user agent, separated by comma"
633
  msgstr "Подстрока агента пользователя разделенный запятой"
634
 
635
+ #: counter-options.php:281
636
+ #: counter-options.php:285
637
  #@ cpd
638
  msgid "Debug mode"
639
  msgstr "Режим отладки"
640
 
641
+ #: counter-options.php:286
642
  #@ cpd
643
  msgid "Show debug informations at the bottom of all pages."
644
  msgstr "Добавить отладочную информацию внизу каждой страницы."
645
 
646
+ #: counter.php:1451
647
  #@ cpd
648
  msgid "Visitors per Country"
649
  msgstr "Посетителей по странам"
650
 
651
+ #: userperspan.php:41
652
  #@ cpd
653
  msgid "Start"
654
  msgstr "Начало"
655
 
656
+ #: userperspan.php:43
657
  #@ cpd
658
  msgid "End"
659
  msgstr "Конец"
660
 
661
+ #: userperspan.php:45
662
  #@ cpd
663
  msgid "PostID"
664
  msgstr "ID сообщения"
665
 
666
+ #: counter-options.php:272
667
  #@ cpd
668
  msgid "Add this value to \"Total reads\"."
669
  msgstr "Добавить значение к \"Всего прочтений\"."
670
 
671
+ #: counter-options.php:313
672
  #@ cpd
673
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
674
  msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
675
 
676
+ #: userperspan.php:54
677
  #@ cpd
678
  msgid "no data found"
679
  msgstr "ничего не найдено"
680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-sv_SE.mo CHANGED
Binary file
locale/cpd-sv_SE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Count per Day på svenska\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-02-20 10:51+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Magnus Suther <magnus.suther@gmail.com>\n"
8
  "Language-Team: http://www.magnussuther.se <magnus.suther@gmail.com>\n"
@@ -13,960 +13,668 @@ 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-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
 
2
  msgstr ""
3
  "Project-Id-Version: Count per Day på svenska\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-10 20:31+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Magnus Suther <magnus.suther@gmail.com>\n"
8
  "Language-Team: http://www.magnussuther.se <magnus.suther@gmail.com>\n"
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;_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:436
 
23
  #@ cpd
24
  msgid "Total reads"
25
  msgstr "Antal läsningar totalt"
26
 
27
+ #: counter.php:437
 
28
  #@ cpd
29
  msgid "Reads today"
30
  msgstr "Läsningar idag"
31
 
32
+ #: counter.php:438
 
33
  #@ cpd
34
  msgid "Reads yesterday"
35
  msgstr "Läsningar igår"
36
 
37
+ #: counter.php:439
38
+ #: counter.php:1149
39
+ #: counter.php:1437
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  #@ cpd
41
  msgid "Total visitors"
42
  msgstr "Antal besökare totalt"
43
 
44
+ #: counter.php:440
 
45
  #@ cpd
46
  msgid "Visitors currently online"
47
  msgstr "Besökare online nu"
48
 
49
+ #: counter.php:441
 
50
  #@ cpd
51
  msgid "Visitors today"
52
  msgstr "Besökare idag"
53
 
54
+ #: counter.php:442
 
55
  #@ cpd
56
  msgid "Visitors yesterday"
57
  msgstr "Besökare igår"
58
 
59
+ #: counter.php:443
 
60
  #@ cpd
61
  msgid "Visitors last week"
62
  msgstr "Besökare förra veckan"
63
 
64
+ #: counter.php:444
65
+ #: counter.php:1151
66
+ #: counter.php:1438
67
+ #: counter.php:1444
68
+ #: userperspan.php:37
 
69
  #@ cpd
70
  msgid "Visitors per day"
71
  msgstr "Besök per dag"
72
 
73
+ #: counter.php:445
 
 
74
  #@ cpd
75
  msgid "Counter starts on"
76
  msgstr "Räknaren startar den"
77
 
78
+ #: counter.php:560
79
  #@ cpd
80
+ msgid "days"
81
+ msgstr "dagar"
82
 
83
+ #: counter.php:563
84
+ #: counter.php:938
85
+ #: notes.php:51
86
+ #: notes.php:85
87
  #@ cpd
88
  msgid "Notes"
89
  msgstr "Anteckningar"
90
 
91
+ #: counter.php:587
 
92
  #@ cpd
93
+ msgid "no reads at this time"
94
+ msgstr "inga läsningar vid denna tidpunkt"
95
 
96
+ #: counter.php:886
97
  #, php-format
98
  #@ cpd
99
  msgid "The %s most visited posts in last %s days:"
100
  msgstr "De %s mest visade inläggen de senaste %s dagarna:"
101
 
102
+ #: counter.php:937
 
103
  msgid "Show"
104
  msgstr "Visa"
105
 
106
+ #: counter.php:971
107
  #@ cpd
108
  msgid "Other"
109
  msgstr "Övriga"
110
 
111
+ #: counter.php:1021
 
 
 
 
 
 
 
112
  msgid "Edit Post"
113
  msgstr "Redigera inlägg"
114
 
115
+ #: counter.php:1037
116
+ #: counter.php:1058
117
+ #: massbots.php:47
118
+ #: userperspan.php:68
 
 
 
 
 
 
 
 
 
 
119
  msgid "Front page displays"
120
  msgstr "Visningar av framsidan"
121
 
122
+ #: counter.php:1136
 
 
 
123
  msgid "Settings"
124
  msgstr "Inställningar"
125
 
126
+ #: counter.php:1245
127
+ #@ cpd
128
+ msgid "Reads"
129
+ msgstr "Visningar"
130
+
131
+ #: counter.php:1325
132
+ #@ cpd
133
+ msgid "This post"
134
+ msgstr "Det här inlägget"
135
+
136
+ #: counter.php:1362
137
+ msgid "Title:"
138
+ msgstr "Titel:"
139
+
140
+ #: counter.php:1373
141
+ #@ cpd
142
+ msgid "Label"
143
+ msgstr "Etikett"
144
+
145
+ #: counter.php:1373
146
+ #@ cpd
147
+ msgid "empty = name above"
148
+ msgstr "tom = namn ovan"
149
+
150
+ #: counter-options.php:473
151
+ #: counter.php:1408
152
+ #: counter.php:1656
153
  #, php-format
154
  #@ cpd
155
  msgid "Time for Count per Day: <code>%s</code>."
156
  msgstr "Tid för Count per Day: <code>%s</code>."
157
 
158
+ #: counter-options.php:476
159
+ #: counter.php:1409
160
  #@ cpd
161
  msgid "Bug? Problem? Question? Hint? Praise?"
162
  msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
163
 
164
+ #: counter-options.php:478
165
+ #: counter.php:1410
166
  #, php-format
167
  #@ cpd
168
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
169
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
170
 
171
+ #: counter.php:1439
 
 
 
 
 
172
  #@ cpd
173
+ msgid "Reads per day"
174
+ msgstr "Läsningar per dag"
175
 
176
+ #: counter.php:1440
 
177
  #@ cpd
178
  msgid "Visitors per month"
179
  msgstr "Besökare per månad"
180
 
181
+ #: counter-options.php:241
182
+ #: counter.php:1441
183
  #@ cpd
184
+ msgid "Browsers"
185
+ msgstr "Webbläsare"
186
 
187
+ #: counter-options.php:215
188
+ #: counter.php:1442
189
  #@ cpd
190
  msgid "Visitors per post"
191
  msgstr "Besökare per inlägg"
192
 
193
+ #: counter.php:1443
194
  #@ cpd
195
  msgid "Latest Counts"
196
  msgstr "Senaste besöken"
197
 
198
+ #: counter.php:1445
 
199
  msgid "Plugin"
200
  msgstr "Plugin"
201
 
202
+ #: counter.php:1450
 
 
 
 
 
 
 
 
 
 
 
203
  #@ cpd
204
  msgid "Reads per Country"
205
  msgstr "Visningar per land"
206
 
207
+ #: counter.php:1451
208
  #@ cpd
209
  msgid "Visitors per Country"
210
  msgstr "Besökare per land"
211
 
212
+ #: counter.php:1466
 
213
  #@ cpd
214
  msgid "Statistics"
215
  msgstr "Statistik"
216
 
217
+ #: counter.php:1534
218
  #@ cpd
219
+ msgid "Map"
220
+ msgstr "Karta"
 
 
 
 
 
221
 
222
+ #: counter-options.php:357
223
+ #: notes.php:80
224
+ #: userperspan.php:47
225
  #@ cpd
226
  msgid "show"
227
  msgstr "visa"
228
 
229
+ #: counter-options.php:366
230
+ #: notes.php:84
231
  #@ cpd
 
232
  msgid "Date"
233
  msgstr "Datum"
234
 
235
+ #: notes.php:85
236
+ #@ cpd
237
+ msgid "(1 per day)"
238
+ msgstr "(1 per dag)"
239
+
240
+ #: notes.php:86
241
  msgid "Action"
242
  msgstr "Åtgärd"
243
 
244
+ #: notes.php:91
245
  #@ cpd
246
  msgid "add"
247
  msgstr "lägg till"
248
 
249
+ #: notes.php:106
250
  #@ cpd
251
  msgid "save"
252
  msgstr "spara"
253
 
254
+ #: notes.php:107
255
  #@ cpd
256
  msgid "delete"
257
  msgstr "ta bort"
258
 
259
+ #: notes.php:118
260
  #@ cpd
261
  msgid "edit"
262
  msgstr "redigera"
263
 
264
+ #: counter-options.php:352
265
+ #: massbots.php:37
266
  #@ cpd
267
  msgid "Mass Bots"
268
  msgstr "Massbotar"
269
 
270
+ #: userperspan.php:41
271
  #@ cpd
272
  msgid "Start"
273
  msgstr "Start"
274
 
275
+ #: userperspan.php:43
276
  #@ cpd
277
  msgid "End"
278
  msgstr "Slut"
279
 
280
+ #: userperspan.php:45
281
  #@ cpd
282
  msgid "PostID"
283
  msgstr "PostID"
284
 
285
+ #: userperspan.php:54
286
  #@ cpd
287
  msgid "no data found"
288
  msgstr "ingen information hittades"
289
 
290
+ #: counter-options.php:41
291
  #@ cpd
292
  msgid "Options updated"
293
  msgstr "Inställningarna är uppdaterade"
294
 
295
+ #: counter-options.php:51
296
  #, php-format
297
  #@ cpd
298
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
299
  msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
300
 
301
+ #: counter-options.php:56
302
  #@ cpd
303
  msgid "update next"
304
  msgstr "uppdatera nästa"
305
 
306
+ #: counter-options.php:94
307
  #, php-format
308
  #@ cpd
309
  msgid "Mass Bots cleaned. %s counts deleted."
310
  msgstr "Massbotar rensades. %s stycken togs bort."
311
 
312
+ #: counter-options.php:101
313
  #, php-format
314
  #@ cpd
315
  msgid "Database cleaned. %s rows deleted."
316
  msgstr "Databasen städades. %s rader togs bort."
317
 
318
+ #: counter-options.php:107
319
  #@ cpd
320
  msgid "Counter reseted."
321
  msgstr "Räknaren återställdes."
322
 
323
+ #: counter-options.php:111
324
+ #: counter-options.php:460
325
  #@ cpd
326
  msgid "UNINSTALL Count per Day"
327
  msgstr "AVINSTALLERA Count per Day"
328
 
329
+ #: counter-options.php:118
330
+ #: counter-options.php:120
 
331
  #, php-format
332
  #@ cpd
333
  msgid "Table %s deleted"
334
  msgstr "Tabellen %s raderades"
335
 
336
+ #: counter-options.php:122
337
  #@ cpd
338
  msgid "Options deleted"
339
  msgstr "Inställningarna togs bort"
340
 
341
+ #: counter-options.php:146
342
+ #: counter-options.php:445
343
  #@ cpd
344
  msgid "Uninstall"
345
  msgstr "Avinstallera"
346
 
347
+ #: counter-options.php:147
348
  #@ cpd
349
  msgid "Click here"
350
  msgstr "Klicka här"
351
 
352
+ #: counter-options.php:147
353
  #@ cpd
354
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
355
  msgstr "för att avinstallera och avaktivera \"Count per Day\"."
356
 
357
+ #: counter-options.php:168
358
  #@ cpd
359
+ msgid "Options"
360
+ msgstr "Inställningar"
361
 
362
+ #: counter-options.php:173
363
  #@ cpd
364
  msgid "Online time"
365
  msgstr "Tid online"
366
 
367
+ #: counter-options.php:174
368
  #@ cpd
369
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
370
  msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
371
 
372
+ #: counter-options.php:177
373
  #@ cpd
374
+ msgid "Loged on Users"
375
  msgstr "Inloggade användare"
376
 
377
+ #: counter-options.php:179
378
  #@ cpd
379
  msgid "count too"
380
  msgstr "räkna med"
381
 
382
+ #: counter-options.php:180
383
  #@ cpd
384
  msgid "until User Level"
385
  msgstr "upp till användarbehörighet"
386
 
387
+ #: counter-options.php:191
388
  #@ cpd
389
  msgid "Auto counter"
390
  msgstr "Automatisk räknare"
391
 
392
+ #: counter-options.php:192
393
  #@ cpd
394
  msgid "Counts automatically single-posts and pages, no changes on template needed."
395
  msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
396
 
397
+ #: counter-options.php:195
398
  #@ cpd
399
  msgid "Bots to ignore"
400
  msgstr "Bots att ignorera"
401
 
402
+ #: counter-options.php:199
403
  #@ cpd
404
  msgid "Anonymous IP"
405
  msgstr "Anonym IP-adress"
406
 
407
+ #: counter-options.php:203
408
  #@ cpd
409
  msgid "Cache"
410
  msgstr "Cache"
411
 
412
+ #: counter-options.php:204
413
  #@ cpd
414
  msgid "I use a cache plugin. Count these visits with ajax."
415
  msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
416
 
417
+ #: counter-options.php:208
418
+ #: counter-options.php:246
419
+ #: counter-options.php:276
420
+ #: counter-options.php:291
421
  #@ cpd
422
+ msgid "Update options"
423
+ msgstr "Uppdatera inställningarna"
 
 
 
 
 
424
 
425
+ #: counter-options.php:212
 
426
  msgid "Dashboard"
427
  msgstr "Panel"
428
 
429
+ #: counter-options.php:216
430
+ #: counter-options.php:220
431
  #@ cpd
432
  msgid "How many posts do you want to see on dashboard page?"
433
  msgstr "Hur många inlägg vill du se på panelsidan?"
434
 
435
+ #: counter-options.php:219
436
  #@ cpd
437
  msgid "Latest Counts - Posts"
438
  msgstr "Senaste träffar - Inlägg"
439
 
440
+ #: counter-options.php:223
441
  #@ cpd
442
  msgid "Latest Counts - Days"
443
  msgstr "Senaste träffar - Dagar"
444
 
445
+ #: counter-options.php:224
446
+ #: counter-options.php:228
 
447
  #@ cpd
448
  msgid "How many days do you want look back?"
449
  msgstr "Hur många dagar bakåt vill du se?"
450
 
451
+ #: counter-options.php:227
452
  #@ cpd
453
  msgid "Chart - Days"
454
  msgstr "Diagram - Dagar"
455
 
456
+ #: counter-options.php:231
457
  #@ cpd
458
  msgid "Chart - Height"
459
  msgstr "Diagram - Höjd"
460
 
461
+ #: counter-options.php:232
462
  #@ cpd
463
  msgid "Height of the biggest bar"
464
  msgstr "Den högsta stapelns höjd"
465
 
466
+ #: counter-options.php:236
467
  #@ cpd
468
  msgid "Countries"
469
  msgstr "Länder"
470
 
471
+ #: counter-options.php:237
472
  #@ cpd
473
  msgid "How many countries do you want to see on dashboard page?"
474
  msgstr "Hur många länder vill du visa på Panelen?"
475
 
476
+ #: counter-options.php:242
477
  #@ cpd
478
  msgid "Substring of the user agent, separated by comma"
479
  msgstr "Delsträng av \"user agent\", separerad med kommatecken"
480
 
481
+ #: counter-options.php:250
482
+ msgid "Edit Posts"
483
+ msgstr "Redigera inlägg"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
 
485
+ #: counter-options.php:250
486
+ msgid "Edit Pages"
487
+ msgstr "Redigera sidor"
 
488
 
489
+ #: counter-options.php:253
490
  #@ cpd
491
  msgid "Show in lists"
492
  msgstr "Visa i listor"
493
 
494
+ #: counter-options.php:254
495
  #@ cpd
496
  msgid "Show \"Reads per Post\" in a new column in post management views."
497
  msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
498
 
499
+ #: counter-options.php:258
500
  #@ cpd
501
  msgid "Start Values"
502
  msgstr "Startvärden"
503
 
504
+ #: counter-options.php:259
505
  #@ cpd
506
  msgid "Here you can change the date of first count and add a start count."
507
  msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
508
 
509
+ #: counter-options.php:263
510
  #@ cpd
511
  msgid "Start date"
512
  msgstr "Startdatum"
513
 
514
+ #: counter-options.php:264
515
  #@ cpd
516
  msgid "Your old Counter starts at?"
517
  msgstr "Din gamla räknare startar den?"
518
 
519
+ #: counter-options.php:267
520
+ #: counter-options.php:271
521
  #@ cpd
522
  msgid "Start count"
523
  msgstr "Starta räknaren"
524
 
525
+ #: counter-options.php:268
526
  #@ cpd
527
  msgid "Add this value to \"Total visitors\"."
528
  msgstr "Lägg till det här värdet till \"Besökare totalt\"."
529
 
530
+ #: counter-options.php:272
531
  #@ cpd
532
  msgid "Add this value to \"Total reads\"."
533
  msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
534
 
535
+ #: counter-options.php:281
536
+ #: counter-options.php:285
537
  #@ cpd
538
  msgid "Debug mode"
539
  msgstr "Felsökningsläge"
540
 
541
+ #: counter-options.php:286
542
  #@ cpd
543
  msgid "Show debug informations at the bottom of all pages."
544
  msgstr "Visa felsökningsinformation längst ner på alla sidor."
545
 
546
+ #: counter-options.php:301
 
 
 
 
 
547
  #@ cpd
548
  msgid "GeoIP - Countries"
549
  msgstr "GeoIP - Länder"
550
 
551
+ #: counter-options.php:310
552
  #@ cpd
553
  msgid "Update old counter data"
554
  msgstr "Uppdatera gammal räknardata"
555
 
556
+ #: counter-options.php:323
 
 
 
 
 
557
  #@ cpd
558
  msgid "Update GeoIP database"
559
  msgstr "Uppdatera GeoIP-databasen"
560
 
561
+ #: counter-options.php:326
562
  #@ cpd
563
  msgid "Download a new version of GeoIP.dat file."
564
  msgstr "Ladda ner en ny version av filen GeoIP.dat."
565
 
566
+ #: counter-options.php:332
567
  #@ cpd
568
  msgid "More informations about GeoIP"
569
  msgstr "Mer information om GeoIP"
570
 
571
+ #: counter-options.php:356
572
  #, php-format
573
  #@ cpd
574
  msgid "Show all IPs with more than %s page views per day"
575
  msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
576
 
577
+ #: counter-options.php:365
578
  #@ cpd
579
  msgid "IP"
580
  msgstr "IP"
581
 
582
+ #: counter-options.php:367
583
  #@ cpd
584
  msgid "Client"
585
  msgstr "Klient"
586
 
587
+ #: counter-options.php:368
588
  #@ cpd
589
  msgid "Views"
590
  msgstr "Visningar"
591
 
592
+ #: counter-options.php:379
593
+ #: counter-options.php:401
594
  #, php-format
595
  #@ cpd
596
  msgid "Delete these %s counts"
597
  msgstr "Ta bort bort %s stycken"
598
 
599
+ #: counter-options.php:410
600
+ #: counter-options.php:419
601
  #@ cpd
602
  msgid "Clean the database"
603
  msgstr "Städa databasen"
604
 
605
+ #: counter-options.php:413
606
  #@ cpd
607
  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."
608
  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."
609
 
610
+ #: counter-options.php:427
611
+ #: counter-options.php:436
612
  #@ cpd
613
  msgid "Reset the counter"
614
  msgstr "Nollställ räknaren"
615
 
616
+ #: counter-options.php:430
617
  #@ cpd
618
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
619
  msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
620
 
621
+ #: counter-options.php:448
622
  #@ cpd
623
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
624
  msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
625
 
626
+ #: counter-options.php:449
627
  #@ cpd
628
  msgid "Here you can delete the tables and disable \"Count per Day\"."
629
  msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
630
 
631
+ #: counter-options.php:452
632
  #@ cpd
633
  msgid "WARNING"
634
  msgstr "VARNING"
635
 
636
+ #: counter-options.php:453
637
  #@ cpd
638
  msgid "These tables (with ALL counter data) will be deleted."
639
  msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
640
 
641
+ #: counter-options.php:455
642
  #@ cpd
643
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
644
  msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
645
 
646
+ #: counter-options.php:459
 
647
  #@ cpd
648
  msgid "Yes"
649
  msgstr "Ja"
650
 
651
+ #: counter-options.php:460
652
  #@ cpd
653
  msgid "You are sure to disable Count per Day and delete all data?"
654
  msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
655
 
656
+ #: counter-options.php:468
657
  #@ cpd
658
  msgid "Support"
659
  msgstr "Support"
660
 
661
+ #: geoip/geoip.php:91
662
  #@ cpd
663
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
664
  msgstr "Tyvärr, nödvändiga funktioner (zlib) är inte installerade/aktiverade i php.ini."
665
 
666
+ #: geoip/geoip.php:115
667
  #@ cpd
668
  msgid "New GeoIP database installed."
669
  msgstr "Ny GeoIP-databas installerades."
670
 
671
+ #: geoip/geoip.php:117
672
  #@ cpd
673
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
674
  msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
675
 
676
+ #: counter-options.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  #@ cpd
678
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
679
+ 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!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680
 
locale/cpd-tr_TR.mo DELETED
Binary file
locale/cpd-tr_TR.po DELETED
@@ -1,971 +0,0 @@
1
- msgid ""
2
- 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-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"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Bulgarian\n"
14
- "X-Poedit-Country: BULGARIA\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-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 DELETED
Binary file
locale/cpd-ua_UA.po DELETED
@@ -1,972 +0,0 @@
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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-uz_UZ.mo ADDED
Binary file
locale/cpd-uz_UZ.po ADDED
@@ -0,0 +1,680 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Tom Braider <post@tomsdimension.de>\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: Uzbek\n"
14
+ "X-Poedit-Country: UZBEKISTAN\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;_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:41
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Sozlanmalar yangilandi"
26
+
27
+ #: counter-options.php:101
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Database cleaned. %s rows deleted."
31
+ msgstr "Ma'lumotlar ombori tozalandi. %s qator o'chirildi."
32
+
33
+ #: counter-options.php:111
34
+ #: counter-options.php:460
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "Kunlik Hisoblarni o'chirib tashlash "
38
+
39
+ #: counter-options.php:118
40
+ #: counter-options.php:120
41
+ #, php-format
42
+ #@ cpd
43
+ msgid "Table %s deleted"
44
+ msgstr "Jadval %s o'chirildi"
45
+
46
+ #: counter-options.php:122
47
+ #@ cpd
48
+ msgid "Options deleted"
49
+ msgstr "Sozlanmalar o'chirildi"
50
+
51
+ #: counter-options.php:146
52
+ #: counter-options.php:445
53
+ #@ cpd
54
+ msgid "Uninstall"
55
+ msgstr "O'chirib tashlash"
56
+
57
+ #: counter-options.php:147
58
+ #@ cpd
59
+ msgid "Click here"
60
+ msgstr "Bu yerni cherting"
61
+
62
+ #: counter-options.php:147
63
+ #@ cpd
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "\"Kunlik hisoblar\"ni o'chirib tashlash va o'chirib qo'yish uchun. "
66
+
67
+ #: counter-options.php:168
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Sozlanmalar"
71
+
72
+ #: counter-options.php:173
73
+ #@ cpd
74
+ msgid "Online time"
75
+ msgstr "Onlayn vaqt"
76
+
77
+ #: counter-options.php:174
78
+ #@ cpd
79
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
+ msgstr "Onlayn hisoblagich uchun soniyalar. \"Onlayn mehmonlar\" uchun asboblar paneli sahifasida ishlatiladi."
81
+
82
+ #: counter-options.php:177
83
+ #@ cpd
84
+ msgid "Loged on Users"
85
+ msgstr "Tizimga kirgan foydalanuvchilar"
86
+
87
+ #: counter-options.php:179
88
+ #@ cpd
89
+ msgid "count too"
90
+ msgstr "hisoblash"
91
+
92
+ #: counter-options.php:191
93
+ #@ cpd
94
+ msgid "Auto counter"
95
+ msgstr "Avtohisoblagich"
96
+
97
+ #: counter-options.php:192
98
+ #@ cpd
99
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
100
+ msgstr "Yakka xabarlar va sahifalarni avtomatik tarzda hisoblaydi, andazani o'zgartirish talab qilinmaydi. "
101
+
102
+ #: counter-options.php:195
103
+ #@ cpd
104
+ msgid "Bots to ignore"
105
+ msgstr "Botlarni rad etish"
106
+
107
+ #: counter-options.php:208
108
+ #: counter-options.php:246
109
+ #: counter-options.php:276
110
+ #: counter-options.php:291
111
+ #@ cpd
112
+ msgid "Update options"
113
+ msgstr "Sozlanmalarni yangilash"
114
+
115
+ #: counter-options.php:410
116
+ #: counter-options.php:419
117
+ #@ cpd
118
+ msgid "Clean the database"
119
+ msgstr "Ma'lumotlar omborini tozalash"
120
+
121
+ #: counter-options.php:413
122
+ #@ cpd
123
+ 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."
124
+ msgstr "\"Spam\"ni o'chirish orqali hisoblagich jadvalini tozalashingiz mumkin.<br /> Agar eski botlar ustidan yangilarini qo'shsangiz \"Spam ma'lumotlar\" ma'lumotlar omborida qoladi. <br /> Bu yerda bot filtrini qayta ishga tushirishingiz va botlarning tashrifini o'chirishingiz mumkin."
125
+
126
+ #: counter-options.php:448
127
+ #@ cpd
128
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
129
+ msgstr "\"Kunlik hisoblar\"shunchaki o'chirib qo'yilsa, jadvallar ma'lumotlar omborida saqlanib qoladi."
130
+
131
+ #: counter-options.php:449
132
+ #@ cpd
133
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
134
+ msgstr "Bu yerda siz jadvallarni o'chirib tashlashingiz va \"Kunlik hisoblar\"ni o'chirib qo'yishingiz mumkin."
135
+
136
+ #: counter-options.php:452
137
+ #@ cpd
138
+ msgid "WARNING"
139
+ msgstr "OGOHLANTIRISH"
140
+
141
+ #: counter-options.php:453
142
+ #@ cpd
143
+ msgid "These tables (with ALL counter data) will be deleted."
144
+ msgstr "Bu jadvallar (barcha hisoblash ma'lumotlari ham) o'chirib tashlanadi."
145
+
146
+ #: counter-options.php:455
147
+ #@ cpd
148
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
149
+ msgstr "\"Kunlik hisoblar\" qayta o'rnatilganda, hisoblagich 0dan boshlanadi."
150
+
151
+ #: counter-options.php:459
152
+ #@ cpd
153
+ msgid "Yes"
154
+ msgstr "Ha"
155
+
156
+ #: counter-options.php:460
157
+ #@ cpd
158
+ msgid "You are sure to disable Count per Day and delete all data?"
159
+ msgstr "Kunlik hisoblarni o'chirib qo'yish va barcha ma'lumotlarni o'chirib tashlashga aminmisiz?"
160
+
161
+ #: counter.php:1466
162
+ #@ cpd
163
+ msgid "Statistics"
164
+ msgstr "Statistika"
165
+
166
+ #: counter.php:439
167
+ #: counter.php:1149
168
+ #: counter.php:1437
169
+ #@ cpd
170
+ msgid "Total visitors"
171
+ msgstr "Mehmonlarning umumiy soni"
172
+
173
+ #: counter.php:440
174
+ #@ cpd
175
+ msgid "Visitors currently online"
176
+ msgstr "Hozir onlayn mehmonlar"
177
+
178
+ #: counter.php:441
179
+ #@ cpd
180
+ msgid "Visitors today"
181
+ msgstr "Bugungi mehmonlar"
182
+
183
+ #: counter.php:442
184
+ #@ cpd
185
+ msgid "Visitors yesterday"
186
+ msgstr "Kechagi mehmonlar"
187
+
188
+ #: counter.php:443
189
+ #@ cpd
190
+ msgid "Visitors last week"
191
+ msgstr "O'tgan haftadagi mehmonlar"
192
+
193
+ #: counter.php:445
194
+ #@ cpd
195
+ msgid "Counter starts on"
196
+ msgstr "Hisoblagich %sdan boshlanadi "
197
+
198
+ #: counter.php:444
199
+ #: counter.php:1151
200
+ #: counter.php:1438
201
+ #: counter.php:1444
202
+ #: userperspan.php:37
203
+ #@ cpd
204
+ msgid "Visitors per day"
205
+ msgstr "Kunlik mehmonlar"
206
+
207
+ #: counter.php:1440
208
+ #@ cpd
209
+ msgid "Visitors per month"
210
+ msgstr "Oylik mehmonlar"
211
+
212
+ #: counter-options.php:215
213
+ #: counter.php:1442
214
+ #@ cpd
215
+ msgid "Visitors per post"
216
+ msgstr "Bir xabarni ko'rgan mehmonlar"
217
+
218
+ #: counter-options.php:107
219
+ #@ cpd
220
+ msgid "Counter reseted."
221
+ msgstr "Hisoblagich nolga qaytarildi."
222
+
223
+ #: counter-options.php:212
224
+ msgid "Dashboard"
225
+ msgstr "Asboblar paneli"
226
+
227
+ #: counter-options.php:216
228
+ #: counter-options.php:220
229
+ #@ cpd
230
+ msgid "How many posts do you want to see on dashboard page?"
231
+ msgstr "Asboblar panelida nechta xabar ko'rsatilsin?"
232
+
233
+ #: counter-options.php:219
234
+ #@ cpd
235
+ msgid "Latest Counts - Posts"
236
+ msgstr "Oxirgi sanoqlar - Xabarlar"
237
+
238
+ #: counter-options.php:223
239
+ #@ cpd
240
+ msgid "Latest Counts - Days"
241
+ msgstr "Oxirgi sanoqlar - Kunlar"
242
+
243
+ #: counter-options.php:224
244
+ #: counter-options.php:228
245
+ #@ cpd
246
+ msgid "How many days do you want look back?"
247
+ msgstr "O'tgan necha kunni ko'rmoqchisiz?"
248
+
249
+ #: counter-options.php:227
250
+ #@ cpd
251
+ msgid "Chart - Days"
252
+ msgstr "Jadval - Kunlar"
253
+
254
+ #: counter-options.php:231
255
+ #@ cpd
256
+ msgid "Chart - Height"
257
+ msgstr "Jadval - Balandlik"
258
+
259
+ #: counter-options.php:232
260
+ #@ cpd
261
+ msgid "Height of the biggest bar"
262
+ msgstr "Eng katta qator (katakcha) balandligi"
263
+
264
+ #: counter-options.php:250
265
+ msgid "Edit Posts"
266
+ msgstr "Xabarlarni tahrir qilish"
267
+
268
+ #: counter-options.php:250
269
+ msgid "Edit Pages"
270
+ msgstr "Sahifalarni tahrir qilish"
271
+
272
+ #: counter-options.php:253
273
+ #@ cpd
274
+ msgid "Show in lists"
275
+ msgstr "Ro'yxatlarda ko'rsatish"
276
+
277
+ #: counter-options.php:254
278
+ #@ cpd
279
+ msgid "Show \"Reads per Post\" in a new column in post management views."
280
+ msgstr "\"Bir xabarni o'qishlar soni\"ni xabar boshqaruvi sahifasida yangi ustunda ko'rsatish."
281
+
282
+ #: counter-options.php:427
283
+ #: counter-options.php:436
284
+ #@ cpd
285
+ msgid "Reset the counter"
286
+ msgstr "Hisoblagichni nolga qaytarish"
287
+
288
+ #: counter-options.php:430
289
+ #@ cpd
290
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
291
+ msgstr "Jadvalni bo'shatish orqali hisoblagichni nolga qaytarishingiz mumkin. HAMMASI 0ga QAYTARILADI<br/>Mavjud ma'lumotlar sizga kerak bo'lsa uning zahira nusxasini yarating!"
292
+
293
+ #: counter.php:587
294
+ #@ cpd
295
+ msgid "no reads at this time"
296
+ msgstr "hozir o'qilganlar yo'q"
297
+
298
+ #: counter.php:560
299
+ #@ cpd
300
+ msgid "days"
301
+ msgstr "kunlar"
302
+
303
+ #: counter.php:886
304
+ #, php-format
305
+ #@ cpd
306
+ msgid "The %s most visited posts in last %s days:"
307
+ msgstr "oxirgi %s kunda %s eng ko'p ko'rilgan xabarlar: "
308
+
309
+ #: counter.php:1136
310
+ msgid "Settings"
311
+ msgstr "Sozlanmalar"
312
+
313
+ #: counter.php:1439
314
+ #@ cpd
315
+ msgid "Reads per day"
316
+ msgstr "Kunlik o'qishlar"
317
+
318
+ #: counter.php:1245
319
+ #@ cpd
320
+ msgid "Reads"
321
+ msgstr "O'qishlar"
322
+
323
+ #: counter.php:1325
324
+ #@ cpd
325
+ msgid "This post"
326
+ msgstr "Bu xabar"
327
+
328
+ #: counter.php:1373
329
+ #@ cpd
330
+ msgid "Label"
331
+ msgstr "Yorliq"
332
+
333
+ #: counter.php:1373
334
+ #@ cpd
335
+ msgid "empty = name above"
336
+ msgstr "bo'shatish = yuqoridagi nom"
337
+
338
+ #: counter.php:1443
339
+ #@ cpd
340
+ msgid "Latest Counts"
341
+ msgstr "Oxirgi hisoblar"
342
+
343
+ #: counter-options.php:51
344
+ #, php-format
345
+ #@ cpd
346
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
347
+ msgstr "Countries updated. <b>%s</b> entries in %s without country left"
348
+
349
+ #: counter-options.php:56
350
+ #@ cpd
351
+ msgid "update next"
352
+ msgstr "update next"
353
+
354
+ #: counter-options.php:236
355
+ #@ cpd
356
+ msgid "Countries"
357
+ msgstr "Countries"
358
+
359
+ #: counter-options.php:237
360
+ #@ cpd
361
+ msgid "How many countries do you want to see on dashboard page?"
362
+ msgstr "How many countries do you want to see on dashboard page?"
363
+
364
+ #: counter-options.php:301
365
+ #@ cpd
366
+ msgid "GeoIP - Countries"
367
+ msgstr "GeoIP - Countries"
368
+
369
+ #: counter-options.php:310
370
+ #@ cpd
371
+ msgid "Update old counter data"
372
+ msgstr "Update old counter data"
373
+
374
+ #: counter-options.php:323
375
+ #@ cpd
376
+ msgid "Update GeoIP database"
377
+ msgstr "Update GeoIP database"
378
+
379
+ #: counter-options.php:326
380
+ #@ cpd
381
+ msgid "Download a new version of GeoIP.dat file."
382
+ msgstr "Download a new version of GeoIP.dat file."
383
+
384
+ #: counter-options.php:332
385
+ #@ cpd
386
+ msgid "More informations about GeoIP"
387
+ msgstr "More informations about GeoIP"
388
+
389
+ #: counter.php:1362
390
+ msgid "Title:"
391
+ msgstr ""
392
+
393
+ #: counter.php:1450
394
+ #@ cpd
395
+ msgid "Reads per Country"
396
+ msgstr "Reads per Country"
397
+
398
+ #: geoip/geoip.php:91
399
+ #@ cpd
400
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
401
+ msgstr "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
402
+
403
+ #: geoip/geoip.php:115
404
+ #@ cpd
405
+ msgid "New GeoIP database installed."
406
+ msgstr "New GeoIP database installed."
407
+
408
+ #: geoip/geoip.php:117
409
+ #@ cpd
410
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
411
+ msgstr "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
412
+
413
+ #: counter-options.php:94
414
+ #, php-format
415
+ #@ cpd
416
+ msgid "Mass Bots cleaned. %s counts deleted."
417
+ msgstr ""
418
+
419
+ #: counter-options.php:180
420
+ #@ cpd
421
+ msgid "until User Level"
422
+ msgstr ""
423
+
424
+ #: counter-options.php:199
425
+ #@ cpd
426
+ msgid "Anonymous IP"
427
+ msgstr ""
428
+
429
+ #: counter-options.php:203
430
+ #@ cpd
431
+ msgid "Cache"
432
+ msgstr ""
433
+
434
+ #: counter-options.php:204
435
+ #@ cpd
436
+ msgid "I use a cache plugin. Count these visits with ajax."
437
+ msgstr ""
438
+
439
+ #: counter-options.php:241
440
+ #: counter.php:1441
441
+ #@ cpd
442
+ msgid "Browsers"
443
+ msgstr ""
444
+
445
+ #: counter-options.php:242
446
+ #@ cpd
447
+ msgid "Substring of the user agent, separated by comma"
448
+ msgstr ""
449
+
450
+ #: counter-options.php:258
451
+ #@ cpd
452
+ msgid "Start Values"
453
+ msgstr ""
454
+
455
+ #: counter-options.php:259
456
+ #@ cpd
457
+ msgid "Here you can change the date of first count and add a start count."
458
+ msgstr ""
459
+
460
+ #: counter-options.php:263
461
+ #@ cpd
462
+ msgid "Start date"
463
+ msgstr ""
464
+
465
+ #: counter-options.php:264
466
+ #@ cpd
467
+ msgid "Your old Counter starts at?"
468
+ msgstr ""
469
+
470
+ #: counter-options.php:267
471
+ #: counter-options.php:271
472
+ #@ cpd
473
+ msgid "Start count"
474
+ msgstr ""
475
+
476
+ #: counter-options.php:268
477
+ #@ cpd
478
+ msgid "Add this value to \"Total visitors\"."
479
+ msgstr ""
480
+
481
+ #: counter-options.php:272
482
+ #@ cpd
483
+ msgid "Add this value to \"Total reads\"."
484
+ msgstr ""
485
+
486
+ #: counter-options.php:281
487
+ #: counter-options.php:285
488
+ #@ cpd
489
+ msgid "Debug mode"
490
+ msgstr ""
491
+
492
+ #: counter-options.php:286
493
+ #@ cpd
494
+ msgid "Show debug informations at the bottom of all pages."
495
+ msgstr ""
496
+
497
+ #: counter-options.php:352
498
+ #: massbots.php:37
499
+ #@ cpd
500
+ msgid "Mass Bots"
501
+ msgstr ""
502
+
503
+ #: counter-options.php:356
504
+ #, php-format
505
+ #@ cpd
506
+ msgid "Show all IPs with more than %s page views per day"
507
+ msgstr ""
508
+
509
+ #: counter-options.php:357
510
+ #: notes.php:80
511
+ #: userperspan.php:47
512
+ #@ cpd
513
+ msgid "show"
514
+ msgstr ""
515
+
516
+ #: counter-options.php:365
517
+ #@ cpd
518
+ msgid "IP"
519
+ msgstr ""
520
+
521
+ #: counter-options.php:366
522
+ #: notes.php:84
523
+ #@ cpd
524
+ msgid "Date"
525
+ msgstr ""
526
+
527
+ #: counter-options.php:367
528
+ #@ cpd
529
+ msgid "Client"
530
+ msgstr ""
531
+
532
+ #: counter-options.php:368
533
+ #@ cpd
534
+ msgid "Views"
535
+ msgstr ""
536
+
537
+ #: counter-options.php:379
538
+ #: counter-options.php:401
539
+ #, php-format
540
+ #@ cpd
541
+ msgid "Delete these %s counts"
542
+ msgstr ""
543
+
544
+ #: counter-options.php:468
545
+ #@ cpd
546
+ msgid "Support"
547
+ msgstr ""
548
+
549
+ #: counter-options.php:473
550
+ #: counter.php:1408
551
+ #: counter.php:1656
552
+ #, php-format
553
+ #@ cpd
554
+ msgid "Time for Count per Day: <code>%s</code>."
555
+ msgstr ""
556
+
557
+ #: counter-options.php:476
558
+ #: counter.php:1409
559
+ #@ cpd
560
+ msgid "Bug? Problem? Question? Hint? Praise?"
561
+ msgstr ""
562
+
563
+ #: counter-options.php:478
564
+ #: counter.php:1410
565
+ #, php-format
566
+ #@ cpd
567
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
568
+ msgstr ""
569
+
570
+ #: counter.php:436
571
+ #@ cpd
572
+ msgid "Total reads"
573
+ msgstr ""
574
+
575
+ #: counter.php:437
576
+ #@ cpd
577
+ msgid "Reads today"
578
+ msgstr ""
579
+
580
+ #: counter.php:438
581
+ #@ cpd
582
+ msgid "Reads yesterday"
583
+ msgstr ""
584
+
585
+ #: counter.php:563
586
+ #: counter.php:938
587
+ #: notes.php:51
588
+ #: notes.php:85
589
+ #@ cpd
590
+ msgid "Notes"
591
+ msgstr ""
592
+
593
+ #: counter.php:937
594
+ msgid "Show"
595
+ msgstr ""
596
+
597
+ #: counter.php:971
598
+ #@ cpd
599
+ msgid "Other"
600
+ msgstr ""
601
+
602
+ #: counter.php:1021
603
+ msgid "Edit Post"
604
+ msgstr ""
605
+
606
+ #: counter.php:1037
607
+ #: counter.php:1058
608
+ #: massbots.php:47
609
+ #: userperspan.php:68
610
+ msgid "Front page displays"
611
+ msgstr ""
612
+
613
+ #: counter.php:1445
614
+ msgid "Plugin"
615
+ msgstr ""
616
+
617
+ #: counter.php:1451
618
+ #@ cpd
619
+ msgid "Visitors per Country"
620
+ msgstr ""
621
+
622
+ #: counter.php:1534
623
+ #@ cpd
624
+ msgid "Map"
625
+ msgstr ""
626
+
627
+ #: notes.php:85
628
+ #@ cpd
629
+ msgid "(1 per day)"
630
+ msgstr ""
631
+
632
+ #: notes.php:86
633
+ msgid "Action"
634
+ msgstr ""
635
+
636
+ #: notes.php:91
637
+ #@ cpd
638
+ msgid "add"
639
+ msgstr ""
640
+
641
+ #: notes.php:106
642
+ #@ cpd
643
+ msgid "save"
644
+ msgstr ""
645
+
646
+ #: notes.php:107
647
+ #@ cpd
648
+ msgid "delete"
649
+ msgstr ""
650
+
651
+ #: notes.php:118
652
+ #@ cpd
653
+ msgid "edit"
654
+ msgstr ""
655
+
656
+ #: userperspan.php:41
657
+ #@ cpd
658
+ msgid "Start"
659
+ msgstr ""
660
+
661
+ #: userperspan.php:43
662
+ #@ cpd
663
+ msgid "End"
664
+ msgstr ""
665
+
666
+ #: userperspan.php:45
667
+ #@ cpd
668
+ msgid "PostID"
669
+ msgstr ""
670
+
671
+ #: userperspan.php:54
672
+ #@ cpd
673
+ msgid "no data found"
674
+ msgstr ""
675
+
676
+ #: counter-options.php:313
677
+ #@ cpd
678
+ msgid "You can get the country data for all entries in database by check the IP adress again GeoIP database. This take a while!"
679
+ msgstr ""
680
+
map/ammap.swf CHANGED
Binary file
map/data.xml.php CHANGED
@@ -1,68 +1,63 @@
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>
 
 
1
  <?php
2
+ // windows junction patch
3
+ $dir = dirname($_SERVER['DOCUMENT_ROOT'].$_SERVER['SCRIPT_NAME']);
4
+ for ( $x = 1; $x <= 5; $x++ )
5
+ {
6
+ $dir = dirname($dir.'x');
7
+ if ( is_file($dir.'/wp-load.php') )
8
+ require_once($dir.'/wp-load.php');
9
+ }
10
+
11
  require_once($cpd_path.'/geoip/geoip.php');
12
+ $geoip = new GeoIP();
 
13
 
14
  $what = (empty($_GET['map'])) ? 'reads' : $_GET['map'];
15
 
16
+ if ( $what == 'visitors' )
17
+ $res = $count_per_day->getQuery("
18
+ SELECT country, COUNT(*) c
19
+ FROM ( SELECT country, ip, COUNT(*) c
20
+ FROM ".CPD_C_TABLE."
21
+ WHERE ip > 0
22
+ GROUP BY country, ip ) as t
23
+ GROUP BY country", 'getCountriesMap');
 
 
 
 
 
 
 
 
 
 
 
24
  else
25
+ $res = $count_per_day->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE country > '' GROUP BY country", 'getCountriesMap');
 
26
 
27
+ $data = array();
28
+ while ( $r = mysql_fetch_array($res) )
29
+ {
30
+ $country = strtoupper($r['country']);
31
+ $name = $geoip->GEOIP_COUNTRY_NAMES[ $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country] ];
32
+ if ( !empty($name) )
33
+ $data[] = array($name, $country ,$r['c']);
 
 
 
34
  }
35
 
36
  header("content-type: text/xml; charset=utf-8");
37
+
38
+ echo '<?xml version="1.0" encoding="UTF-8"?>
39
  <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%">
40
  <areas>
41
+ ';
42
+
43
  foreach ( $data as $d )
44
+ echo ' <area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
45
  ';
46
+
47
+ echo '
48
+ <area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
49
  </areas>
50
+
51
  <labels>
52
  <label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
53
  <text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
54
  </label>
55
  </labels>
56
+
57
  <movies>
58
  <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>
59
  </movies>
60
+
61
  </map>
62
+ ';
63
+ ?>
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">
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" dir="ltr" lang="de-DE">
5
  <head>
6
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
  <title>CountPerDay</title>
map/settings.xml.php CHANGED
@@ -1,11 +1,9 @@
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"?>';
7
- ?>
8
 
 
9
  <settings>
10
  <projection>mercator</projection>
11
  <always_hand>true</always_hand>
@@ -15,7 +13,7 @@ echo '<?xml version="1.0" encoding="UTF-8"?>';
15
  </small_map>
16
 
17
  <area>
18
- <balloon_text><![CDATA[{title}<br/><b>{value}</b> <?php echo $what ?>]]></balloon_text>
19
  <color_solid>#CC0000</color_solid>
20
  <color_light>#FFFFFF</color_light>
21
  <color_hover>#FFFF00</color_hover>
@@ -39,14 +37,12 @@ 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>
@@ -54,10 +50,12 @@ echo '<?xml version="1.0" encoding="UTF-8"?>';
54
  <border_color>#AAAAAA</border_color>
55
  </key>
56
  <entries>
57
- <entry color="#3388EE">no <?php echo $what ?></entry>
58
- <entry color="#FFFFFF">least <?php echo $what ?></entry>
59
- <entry color="#CC0000">most <?php echo $what ?></entry>
60
  </entries>
61
  </legend>
62
 
63
  </settings>
 
 
1
  <?php
2
  $what = (empty($_GET['map'])) ? 'Reads' : ucfirst($_GET['map']);
 
3
 
4
  header("content-type: text/xml; charset=utf-8");
 
 
5
 
6
+ echo '<?xml version="1.0" encoding="UTF-8"?>
7
  <settings>
8
  <projection>mercator</projection>
9
  <always_hand>true</always_hand>
13
  </small_map>
14
 
15
  <area>
16
+ <balloon_text><![CDATA[{title}<br/><b>{value}</b> '.$what.']]></balloon_text>
17
  <color_solid>#CC0000</color_solid>
18
  <color_light>#FFFFFF</color_light>
19
  <color_hover>#FFFF00</color_hover>
37
  </balloon>
38
 
39
  <zoom>
 
40
  <x>5</x>
41
  <y>27</y>
42
  <min>85</min>
43
  </zoom>
44
 
45
  <legend>
 
46
  <x>5</x>
47
  <y>!32</y>
48
  <margins>5</margins>
50
  <border_color>#AAAAAA</border_color>
51
  </key>
52
  <entries>
53
+ <entry color="#3388EE">no '.$what.'</entry>
54
+ <entry color="#FFFFFF">least '.$what.'</entry>
55
+ <entry color="#CC0000">most '.$what.'</entry>
56
  </entries>
57
  </legend>
58
 
59
  </settings>
60
+ ';
61
+ ?>
massbots.php CHANGED
@@ -1,27 +1,30 @@
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,30 +39,30 @@ if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
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
  }
1
  <?php
2
+ // windows junction patch
3
+ $dir = dirname($_SERVER['DOCUMENT_ROOT'].$_SERVER['SCRIPT_NAME']);
4
+ for ( $x = 1; $x <= 5; $x++ )
5
+ {
6
+ $dir = dirname($dir.'x');
7
+ if ( is_file($dir.'/wp-load.php') )
8
+ require_once($dir.'/wp-load.php');
9
+ }
10
 
11
  if ( isset($_GET['dmbip']) && isset($_GET['dmbdate']) )
12
  {
13
+ $sql = 'SELECT c.page post_id, p.post_title post,
14
+ t.name tag_cat_name,
15
+ t.slug tag_cat_slug,
16
+ x.taxonomy tax
17
+ FROM '.CPD_C_TABLE.' c
18
+ LEFT JOIN '.$wpdb->posts.' p
19
+ ON p.ID = c.page
20
+ LEFT JOIN '.$wpdb->terms.' t
21
+ ON t.term_id = 0 - c.page
22
+ LEFT JOIN '.$wpdb->term_taxonomy.' x
23
+ ON x.term_id = t.term_id
24
+ WHERE c.ip = '.$_GET['dmbip'].'
25
+ AND c.date = \''.$_GET['dmbdate'].'\'
26
+ ORDER BY p.ID';
27
+ $massbots = $count_per_day->getQuery($sql, 'showMassbotPosts');
 
 
28
  }
29
  ?>
30
 
39
  <h2><?php _e('Mass Bots', 'cpd') ?></h2>
40
  <ol>
41
  <?php
42
+ while ( $row = mysql_fetch_array($massbots) )
43
  {
44
+ if ( $row['post_id'] < 0 && $row['tax'] == 'category' )
45
  {
46
+ $name = '- '.$row['tag_cat_name'].' -';
47
+ $link = get_bloginfo('url').'?cat='.abs($row['post_id']);
48
  }
49
+ else if ( $row['post_id'] < 0 )
50
  {
51
+ $name = '- '.$row['tag_cat_name'].' -';
52
+ $link = get_bloginfo('url').'?tag='.$row['tag_cat_slug'];
53
  }
54
+ else if ( $row['post_id'] == 0 )
55
  {
56
  $name = '- '.__('Front page displays').' -';
57
  $link = get_bloginfo('url');
58
  }
59
  else
60
  {
61
+ $postname = $row['post'];
62
  if ( empty($postname) )
63
  $postname = '---';
64
  $name = $postname;
65
+ $link = get_permalink($row['post_id']);
66
  }
67
  echo '<li><a href="'.$link.'" target="_blank">'.$name.'</a></li>';
68
  }
notes.php CHANGED
@@ -1,38 +1,49 @@
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']) )
8
- $month = (int) $_POST['month'];
9
  else if ( isset($_GET['month']) )
10
- $month = (int) $_GET['month'];
11
  else
12
  $month = date_i18n('m');
13
 
14
  if ( isset($_POST['month']) )
15
- $year = (int) $_POST['year'];
16
  else if ( isset($_GET['year']) )
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,7 +84,7 @@ update_option('count_per_day_notes', $n);
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,19 +93,18 @@ update_option('count_per_day_notes', $n);
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,9 +115,9 @@ foreach ($n as $id => $v)
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
  }
1
  <?php
2
+ // windows junction patch
3
+ $dir = dirname($_SERVER['DOCUMENT_ROOT'].$_SERVER['SCRIPT_NAME']);
4
+ for ( $x = 1; $x <= 5; $x++ )
5
+ {
6
+ $dir = dirname($dir.'x');
7
+ if ( is_file($dir.'/wp-load.php') )
8
+ require_once($dir.'/wp-load.php');
9
+ }
10
 
11
  // set default values
12
  if ( isset($_POST['month']) )
13
+ $month = $_POST['month'];
14
  else if ( isset($_GET['month']) )
15
+ $month = $_GET['month'];
16
  else
17
  $month = date_i18n('m');
18
 
19
  if ( isset($_POST['month']) )
20
+ $year = $_POST['year'];
21
  else if ( isset($_GET['year']) )
22
+ $year = $_GET['year'];
23
  else
24
  $year = date_i18n('Y');
25
+
 
 
 
26
  // save changes
27
  if ( isset($_POST['new']) )
28
+ $sql = "INSERT INTO ".$table_prefix."cpd_notes (date, note) VALUES ('".$_POST['date']."', '".$_POST['note']."')";
29
  else if ( isset($_POST['edit']) )
30
+ $sql = "UPDATE ".$table_prefix."cpd_notes SET date = '".$_POST['date']."', note = '".$_POST['note']."' WHERE id = ".$_POST['id'];
31
  else if ( isset($_POST['delete']) )
32
+ $sql = "DELETE FROM ".$table_prefix."cpd_notes WHERE id = ".$_POST['id'];
33
+ if ( !empty($sql) )
34
+ $wpdb->query($wpdb->prepare($sql));
35
+
36
+ // load notes
37
+ $where = '';
38
+ if ( $month )
39
+ $where .= " AND MONTH(date) = $month ";
40
+ if ( $year )
41
+ $where .= " AND YEAR(date) = $year ";
42
+ $notes = $wpdb->get_results('SELECT * FROM '.$table_prefix.'cpd_notes WHERE 1 '.$where.' ORDER BY date DESC', ARRAY_A);
43
  ?>
44
 
45
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
46
+ <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE">
47
  <head>
48
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
49
  <title>CountPerDay</title>
84
  </tr>
85
  <tr>
86
  <th style="width:15%"><?php _e('Date') ?></th>
87
+ <th style="width:75%"><?php _e('Notes', 'cpd') ?> <?php _e('(1 per day)', 'cpd') ?></th>
88
  <th style="width:10%"><?php _e('Action') ?></th>
89
  </tr>
90
  <tr>
93
  <td><input type="submit" name="new" value="+" title="<?php _e('add', 'cpd') ?>" class="green" /></td>
94
  </tr>
95
  <?php
96
+ if ( $notes )
97
  {
98
+ foreach ( $notes as $row )
 
99
  {
100
+ if ( isset($_POST['edit_'.$row['id']]) || isset($_POST['edit_'.$row['id'].'_x']) )
101
  {
102
  ?>
103
  <tr style="background: #ccc">
104
+ <td><input name="date" value="<?php echo $row['date'] ?>" /></td>
105
+ <td><input name="note" value="<?php echo $row['note'] ?>" maxlength="250" /></td>
106
  <td class="nowrap">
107
+ <input type="hidden" name="id" value="<?php echo $row['id'] ?>" />
108
  <input type="submit" name="edit" value="V" title="<?php _e('save', 'cpd') ?>" class="green" style="width:45%;" />
109
  <input type="submit" name="delete" value="X"title="<?php _e('delete', 'cpd') ?>" class="red" style="width:45%;" />
110
  </td>
115
  {
116
  ?>
117
  <tr>
118
+ <td><?php echo $row['date'] ?></td>
119
+ <td><?php echo $row['note'] ?></td>
120
+ <td><input type="image" src="cpd_pen.png" name="edit_<?php echo $row['id'] ?>" title="<?php _e('edit', 'cpd') ?>" style="width:auto;" /></td>
121
  </tr>
122
  <?php
123
  }
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: 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.
@@ -15,56 +15,50 @@ Visit Counter, shows reads per page, visitors today, yesterday, last week, last
15
  * shows reads per page
16
  * shows visitors today, yesterday, last week, last months and other statistics on dashboard
17
  * shows country of your visitors
18
- * you can show these statistics on frontend per widget or shortcodes too
 
19
  * Plugin: http://www.tomsdimension.de/wp-plugins/count-per-day
20
  * Donate: http://www.tomsdimension.de/postcards
21
 
22
- "Count per Day" counts 1 visit per IP per day. So any reload of the page do not increment the counter.
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
 
52
  1. unzip plugin directory into the '/wp-content/plugins/' directory
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,25 +71,24 @@ read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
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]
85
  [CPD_READS_TODAY]
86
  [CPD_READS_YESTERDAY]
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]
93
  [CPD_VISITORS_YESTERDAY]
94
  [CPD_VISITORS_LAST_WEEK]
95
- [CPD_VISITORS_THIS_MONTH]
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]
@@ -103,178 +96,127 @@ or in your theme files while adding e.g. '&lt;?php echo do_shortcode("[THE_SHORT
103
  [CPD_COUNTRIES]
104
  [CPD_REFERERS]
105
  [CPD_POSTS_ON_DAY date="2010-10-06" limit="3"]
106
- - date (optional), format: year-month-day, default = today
107
- - limit (optional): max records to show, default = all
108
- [CPD_MAP width="500" height="340" what="reads" min=1]
109
- - width and height: size, default 500x340 px
110
- - what: map content - reads|visitors|online, default reads
111
- - min: 1 (disable title, legend and zoombar), default 0
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
 
125
  * $before = text before number e.g. '&lt;p&gt;' (default "")
126
  * $after = text after number e.g. 'reads&lt;/p&gt;' (default " reads")
127
  * $show = true/false, "echo" complete string or "return" number only (default true)
128
  * $count = true/false, false will not count the reads (default true)
129
- * $page (optional) PostID
130
 
131
  'count()'
132
 
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
-
257
- 'function getMap( $what, $width, $height, $min )'
258
-
259
- * gets a world map
260
- * $what visitors|reads|online
261
- * $width size in px
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.
278
  * In the database a new column 'country' will be insert on plugin activation.
279
  * On options page you can update you current visits. This take a while! The Script checks 100 IP addresses at once an reload itself until less then 100 addresses left. Click the update button to check the rest.
280
  * If the rest remains greater than 0 the IP address is not in GeoIP database (accuracy 99.5%).
@@ -284,68 +226,19 @@ to check if plugin is activated.
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
308
- + New: function and shortcode to show world map in frontend
309
- + New: option - who is allowed to see the statistics page
310
- + New language: Turkish, thanks to Emrullah Tahir Ekmek&ccedil;i
311
-
312
- = 2.16.1 =
313
- + Bugfix: widget was empty
314
-
315
- = 2.16 =
316
- + New: more modern charts (jQuery flot plugin)
317
- + New: widgets now sortable
318
- + New: GeoIP database included, non extra download after plugin update necessary
319
- + New: list "Visitors online" per country
320
- + New: option to limit the referrers list
321
- + New: option to not load stylesheet in frontend
322
- + New: function 'getMostVisitedPostIDs', can create a "related posts" list
323
- + Bugfix: GeoIP functions renamed, conflicts with other plugins
324
- + New Language: Greek, thanks to Essetai_Imar
325
-
326
- = 2.15.1 =
327
- + Bugifx: error in "Visitors per month" counter
328
-
329
- = 2.15 =
330
- + New: functions and shortcodes [CPD_READS_THIS_MONTH] [CPD_VISITORS_THIS_MONTH]
331
- + New: reads last week, reads this month and visitors this month in widget
332
- + Bugfix: Ajax counter for cached pages is now multi widget compatible
333
- + Language updates: Polish, Russia
334
-
335
  = 2.14 =
336
  + New: multi widget compatible, place the widget several times with individual settings
337
  + New: WordPress Multisite compatible, networkwide activation creates tables in all blogs
338
  + New: list reads per month
339
  + New: functions and shortcodes [CPD_POSTS_ON_DAY] [CPD_READS_PER_MONTH] [CPD_READS_LAST_WEEK]
340
- + New: show/hide local referrers
341
- + New: optional deactivation of saving clients and referrers to save space in the database
342
  + New: debug mode per URL parameter (?debug=1)
343
  + Bugfix: GeoIP database update, problem with local IP adresses
344
  + Bugfix: Userlevel/Capabilities
345
  + Bugfix: yesterday reads and visitors (timezone)
346
  + Bugfix: links on mass bots page
347
  + little cosmetics
348
- + Language update: Italian
349
 
350
  = 2.13.1 =
351
  + New Language: Espanol, thanks to Juan Carlos del R&iacute;o
@@ -353,7 +246,7 @@ to check if plugin is activated.
353
  + Bugfix: changed error handling
354
 
355
  = 2.13 =
356
- + New: Top referrers
357
  + Bugfix: Thickbox only in backend needed, RTL on he_IL was broken
358
  + Bugfix: startpage was not counted everywhere
359
  + Language update: Portuguese (Brazil)
@@ -399,7 +292,7 @@ to check if plugin is activated.
399
  + Language update: German
400
 
401
  = 2.8 =
402
- + New: set user level until CpD will count logged users
403
  + New: link to plugin page on Count per Day dashboard
404
  + New: click on a bar in the charts reload the page with given date for 'Visitors per day' metabox
405
  + New language: Swedish, thanks to Magnus
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.0.1
6
+ Stable tag: 2.14
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.
15
  * shows reads per page
16
  * shows visitors today, yesterday, last week, last months and other statistics on dashboard
17
  * shows country of your visitors
18
+ * you can show these statistics on frontend (e.g. on sidebar) too
19
+ * if you use Wordpress < 2.7 please use Count-per-Day v1.4
20
  * Plugin: http://www.tomsdimension.de/wp-plugins/count-per-day
21
  * Donate: http://www.tomsdimension.de/postcards
22
 
23
+ "Count per Day" counts 1 visit per IP per day. So any reload of the page don't increment the counter.
24
 
25
  = Languages, Translators =
26
 
27
+ - German - 100% - Tom Braider, me ;) -
28
+ - Italian - 100% - Gianni Diurno - http://gidibao.net
29
+ - Dansk - 95% - Georg S. Adamsen - http://www.blogos.dk
30
+ - Dansk 2* - 95% - Jonas Thomsen - http://jonasthomsen.com
31
+ - Dutch NL - 95% - Rene - http://wpwebshop.com
32
+ - Espanol - 95% - Juan Carlos del R&iacute;o -
33
+ - France - 95% - Bjork - http://www.habbzone.fr
34
+ - Russian - 95% - Ilya - http://iluhis.com
35
+ - Swedish - 95% - Magnus Suther - http://www.magnussuther.se
36
+ - Portuguese BR - 95% - Beto Ribeiro - http://www.sevenarts.com.br
37
+
38
+ - Polish - 85% - LeXuS - http://intrakardial.de
39
+ - Uzbek - 60% - Alisher -
40
+ - Belarus - 40% - Marcis Gasuns -
41
+
42
+ *) Rename cpd-da_DK-2.mo to cpd-da_DK.mo in "locale" dir to use the second dansk translation.
 
 
 
 
 
 
 
43
 
44
  == Installation ==
45
 
46
  1. unzip plugin directory into the '/wp-content/plugins/' directory
47
  1. activate the plugin through the 'Plugins' menu in WordPress
48
+ 1. on every update you have to deactivate/reactivate the plugin
 
 
49
 
50
+ First activation will create the 3 tables wp_cpd_counter, wp_cpd_counter_useronline and wp_cpd_notes.
51
 
52
  **Configuration**
53
 
54
+ See the Options Page and check the default values. It's easy. :)
55
+ Install optional GeoIP database to show countries of your visitors.
56
+
57
+ If "Auto counter" is on reads on single-posts and pages will count without any changes on template.
58
 
59
  == Frequently Asked Questions ==
60
 
61
  = Need Help? Find Bug? =
 
62
  read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
63
 
64
  == Screenshots ==
71
 
72
  **Shortcodes**
73
 
74
+ You can use these shortcodes in the content while writing you posts.
 
75
 
76
  [CPD_READS_THIS]
77
  [CPD_READS_TOTAL]
78
  [CPD_READS_TODAY]
79
  [CPD_READS_YESTERDAY]
80
  [CPD_READS_LAST_WEEK]
 
81
  [CPD_READS_PER_MONTH]
82
+ [CPD_READS_CHART]
83
  [CPD_VISITORS_TOTAL]
84
  [CPD_VISITORS_ONLINE]
85
  [CPD_VISITORS_TODAY]
86
  [CPD_VISITORS_YESTERDAY]
87
  [CPD_VISITORS_LAST_WEEK]
 
88
  [CPD_VISITORS_PER_MONTH]
89
  [CPD_VISITORS_PER_DAY]
90
  [CPD_VISITORS_PER_POST]
91
+ [CPD_VISITORS_CHART]
92
  [CPD_FIRST_COUNT]
93
  [CPD_MOST_VISITED_POSTS]
94
  [CPD_POSTS_ON_DAY]
96
  [CPD_COUNTRIES]
97
  [CPD_REFERERS]
98
  [CPD_POSTS_ON_DAY date="2010-10-06" limit="3"]
99
+ date (optional), format: year-month-day, default = today
100
+ limit (optional) = max records to show, default = all
 
 
 
 
101
 
102
  **Functions**
103
 
104
+ You can place these functions in your template.<br/>
105
+ Place functions within post-loop (e.g. in single.php)<br/>
106
+ Use '&lt;?php if(method_exists($count_per_day, "show")) $count_per_day->show(); ?&gt;' to check if plugin is activated.
 
 
 
 
107
 
108
+ 'show( $before, $after, $show, $count )'
109
 
110
  * $before = text before number e.g. '&lt;p&gt;' (default "")
111
  * $after = text after number e.g. 'reads&lt;/p&gt;' (default " reads")
112
  * $show = true/false, "echo" complete string or "return" number only (default true)
113
  * $count = true/false, false will not count the reads (default true)
 
114
 
115
  'count()'
116
 
117
  * only count reads, without any output
118
  * cpdShow call it
119
 
120
+ 'getFirstCount( $frontend )'
121
 
122
  * shows date of first count
123
+ * $frontend: 0 echo, 1 return output
124
 
125
+ 'getUserPerDay( $days, $frontend )'
126
 
127
  * shows average number of visitors per day of the last _$days_ days
128
  * default on dashboard (see it with mouse over number) = "Latest Counts - Days" in options
129
+ * $frontend: 0 echo, 1 return output
130
 
131
+ 'getReadsAll( $frontend )'
132
 
133
  * shows number of total reads
134
+ * $frontend: 0 echo, 1 return output
135
 
136
+ 'getReadsToday( $frontend )'
137
 
138
  * shows number of reads today
139
+ * $frontend: 0 echo, 1 return output
140
 
141
+ 'getReadsYesterday( $frontend )'
142
 
143
  * shows number of reads yesterday
144
+ * $frontend: 0 echo, 1 return output
145
 
146
+ 'getReadsLastWeek( $frontend )'
147
 
148
  * shows number of reads last week (7 days)
149
+ * $frontend: 0 echo, 1 return output
150
 
151
+ 'getReadsPerMonth( $frontend )'
 
 
 
 
 
152
 
153
  * lists number of reads per month
154
+ * $frontend: 0 echo, 1 return output
155
 
156
+ 'getUserAll( $frontend )'
157
 
158
  * shows number of total visitors
159
+ * $frontend: 0 echo, 1 return output
160
 
161
+ 'getUserOnline( $frontend )'
162
 
163
  * shows number of visitors just online
164
+ * $frontend: 0 echo, 1 return output
 
 
165
 
166
+ 'getUserToday( $frontend )'
167
 
168
  * shows number of visitors today
169
+ * $frontend: 0 echo, 1 return output
170
 
171
+ 'getUserYesterday( $frontend )'
172
 
173
  * shows number of visitors yesterday
174
+ * $frontend: 0 echo, 1 return output
175
 
176
+ 'getUserLastWeek( $frontend )'
177
 
178
  * shows number of visitors last week (7 days)
179
+ * $frontend: 0 echo, 1 return output
 
 
 
 
 
180
 
181
+ 'getUserPerMonth( $frontend )'
182
 
183
  * lists number of visitors per month
184
+ * $frontend: 0 echo, 1 return output
 
185
 
186
+ 'getUserPerPost( $limit = 0, $frontend )'
187
 
188
  * lists _$limit_ number of posts, -1: all, 0: get option from DB, x: number
189
+ * $frontend: 0 echo, 1 return output
 
190
 
191
+ 'getMostVisitedPosts( $days, $limits, $frontend )'
192
 
193
  * shows a list with the most visited posts in the last days
194
  * $days = days to calc (last days), 0: get option from DB
195
  * $limit = count of posts (last posts), 0: get option from DB
196
+ * $frontend: 0 echo, 1 return output
 
 
197
 
198
+ 'getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form, $show_notes )'
199
 
200
+ * shows visited pages at given day
201
+ * $date day in MySQL date format yyyy-mm-dd, 0 today
202
+ * $limit count of posts
203
+ * $show_form show form for date selection, default on, in frontend set it to 0
204
+ * $show_notes show button to add notes in form, default on, in frontend set it to 0
 
 
205
 
206
+ 'getClients( $frontend )'
207
 
208
  * shows visits per client/browser in percent
209
+ * clients are hardcoded in function but easy to change ;)
210
+ * $frontend: 0 echo, 1 return output
211
 
212
+ 'getReferers( $limit = 0, $frontend )'
213
 
214
+ * lists top _$limit_ referers, 0: get option from DB, x: number
215
+ * $frontend: 0 echo, 1 return output
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
 
217
  **GeoIP**
218
 
219
+ * With the GeoIP addon you can associate your visitors to an country using the ip address.
220
  * In the database a new column 'country' will be insert on plugin activation.
221
  * On options page you can update you current visits. This take a while! The Script checks 100 IP addresses at once an reload itself until less then 100 addresses left. Click the update button to check the rest.
222
  * If the rest remains greater than 0 the IP address is not in GeoIP database (accuracy 99.5%).
226
 
227
  == Changelog ==
228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229
  = 2.14 =
230
  + New: multi widget compatible, place the widget several times with individual settings
231
  + New: WordPress Multisite compatible, networkwide activation creates tables in all blogs
232
  + New: list reads per month
233
  + New: functions and shortcodes [CPD_POSTS_ON_DAY] [CPD_READS_PER_MONTH] [CPD_READS_LAST_WEEK]
234
+ + New: show/hide local referers
235
+ + New: optional deactivation of saving clients and referers to save space in the database
236
  + New: debug mode per URL parameter (?debug=1)
237
  + Bugfix: GeoIP database update, problem with local IP adresses
238
  + Bugfix: Userlevel/Capabilities
239
  + Bugfix: yesterday reads and visitors (timezone)
240
  + Bugfix: links on mass bots page
241
  + little cosmetics
 
242
 
243
  = 2.13.1 =
244
  + New Language: Espanol, thanks to Juan Carlos del R&iacute;o
246
  + Bugfix: changed error handling
247
 
248
  = 2.13 =
249
+ + New: Top referers
250
  + Bugfix: Thickbox only in backend needed, RTL on he_IL was broken
251
  + Bugfix: startpage was not counted everywhere
252
  + Language update: Portuguese (Brazil)
292
  + Language update: German
293
 
294
  = 2.8 =
295
+ + New: set user level until CpD will count loged users
296
  + New: link to plugin page on Count per Day dashboard
297
  + New: click on a bar in the charts reload the page with given date for 'Visitors per day' metabox
298
  + New language: Swedish, thanks to Magnus
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
userperspan.php CHANGED
@@ -1,25 +1,30 @@
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');
8
  $cpd_page = ( isset($_REQUEST['page']) ) ? $_REQUEST['page'] : 0;
9
 
10
  $sql = "SELECT p.post_title,
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,52 +51,53 @@ $cpd_visits = $count_per_day->mysqlQuery('rows', $sql, 'getUserPerPostSpan '.__L
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>';
1
  <?php
2
+ // windows junction patch
3
+ $dir = dirname($_SERVER['DOCUMENT_ROOT'].$_SERVER['SCRIPT_NAME']);
4
+ for ( $x = 1; $x <= 5; $x++ )
5
+ {
6
+ $dir = dirname($dir.'x');
7
+ if ( is_file($dir.'/wp-load.php') )
8
+ require_once($dir.'/wp-load.php');
9
+ }
10
 
11
  $cpd_datemin = ( !empty($_REQUEST['datemin']) ) ? $_REQUEST['datemin'] : date_i18n('Y-m-d', time() - 86400 * 14); // 14 days
12
  $cpd_datemax = ( !empty($_REQUEST['datemax']) ) ? $_REQUEST['datemax'] : date_i18n('Y-m-d');
13
  $cpd_page = ( isset($_REQUEST['page']) ) ? $_REQUEST['page'] : 0;
14
 
15
  $sql = "SELECT p.post_title,
16
+ COUNT(*) as count,
17
  c.page,
18
  c.date
19
+ FROM ".CPD_C_TABLE." c
20
+ LEFT JOIN ".$wpdb->posts." p
21
  ON p.ID = c.page
22
  WHERE c.page = '$cpd_page'
23
  AND c.date >= '$cpd_datemin'
24
  AND c.date <= '$cpd_datemax'
25
  GROUP BY c.date
26
  ORDER BY c.date desc";
27
+ $cpd_visits = $count_per_day->getQuery($sql, 'getUserPerPostSpan');
28
  ?>
29
 
30
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
51
  </form>
52
 
53
  <?php
54
+ if ( @mysql_num_rows($cpd_visits) == 0 )
55
  _e('no data found', 'cpd');
56
  else
57
  {
58
  $cpd_maxcount = 1;
59
+ while ( $r = mysql_fetch_array($cpd_visits) )
60
+ $cpd_maxcount = max( array( $cpd_maxcount, intval($r['count']) ) );
61
+ mysql_data_seek($cpd_visits, 0);
62
  $cpd_faktor = 300 / $cpd_maxcount;
63
 
64
+ while ( $r = mysql_fetch_array($cpd_visits) )
65
  {
66
  if ( !isset($cpd_new) )
67
  {
68
  if ( $cpd_page == 0 )
69
  echo '<h2>'.__('Front page displays').'</h2';
70
  else
71
+ echo '<h2>'.$r['post_title'].'</h2>';
72
  echo '<ol class="cpd-dashboard" style="padding: 0;">';
73
  }
74
  else
75
  {
76
+ if ( $cpd_new < $r['count'] )
77
  $cpd_style = 'style="color:#b00;"';
78
+ else if ( $cpd_new > $r['count'] )
79
  $cpd_style = 'style="color:#0a0;"';
80
  else
81
  $cpd_style = '';
82
 
83
  $cpd_bar = $cpd_new * $cpd_faktor;
84
  $cpd_trans = 300 - $cpd_bar;
85
+ $cpd_imgbar = '<img src="'.$count_per_day->getResource('cpd_rot.png').'" alt="" style="width:'.$cpd_bar.'px;height:23px;padding-left:10px;" />';
86
+ $cpd_imgtrans = '<img src="'.$count_per_day->getResource('cpd_trans.png').'" alt="" style="width:'.$cpd_trans.'px;height:10px;padding-right:10px;" />';
87
 
88
  echo '<li>';
89
  echo '<b>'.$cpd_imgbar.$cpd_imgtrans.'</b>';
90
  echo '<b '.$cpd_style.'>'.$cpd_new.'</b>';
91
  echo $cpd_date_str.'</li>';
92
  }
93
+ $cpd_date_str = mysql2date(get_option('date_format'), $r['date']);
94
+ $cpd_new = intval($r['count']);
95
  }
96
 
97
  $cpd_bar = $cpd_new * $cpd_faktor;
98
  $cpd_trans = 300 - $cpd_bar;
99
+ $cpd_imgbar = '<img src="'.$count_per_day->getResource('cpd_rot.png').'" alt="" style="width:'.$cpd_bar.'px;height:23px;padding-left:10px;" />';
100
+ $cpd_imgtrans = '<img src="'.$count_per_day->getResource('cpd_trans.png').'" alt="" style="width:'.$cpd_trans.'px;height:10px;padding-right:10px;" />';
101
 
102
  echo '<li>';
103
  echo '<b>'.$cpd_imgbar.$cpd_imgtrans.'</b>';