Count per Day - Version 2.3

Version Description

  • New: chart "visitors per day"
  • New: counts index pages: homepage, categories, tags (if autocount is on)
  • New: visits per client/browser in percent
  • added some parameters to functions to overwrite default values
  • New language: Usbek, thanks to Alisher
Download this release

Release Info

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

Code changes from version 3.0 to 2.3

Files changed (77) hide show
  1. ajax.php +0 -32
  2. counter-core.php +0 -1233
  3. counter-options.php +171 -713
  4. counter-rtl.css +0 -20
  5. counter.css +0 -369
  6. counter.php +910 -1008
  7. geoip/GeoIP.dat +0 -0
  8. geoip/geoip.inc +0 -502
  9. geoip/geoip.php +0 -124
  10. img/cpd_blau.png +0 -0
  11. img/cpd_calendar.png +0 -0
  12. img/cpd_clients.png +0 -0
  13. img/cpd_flags.png +0 -0
  14. img/cpd_menu.gif +0 -0
  15. img/cpd_pen.png +0 -0
  16. img/cpd_rot.png +0 -0
  17. img/cpd_sprites.png +0 -0
  18. img/cpd_trans.png +0 -0
  19. js/excanvas.min.js +0 -1
  20. js/jquery.flot.min.js +0 -6
  21. locale/cpd-az_AZ.mo +0 -0
  22. locale/cpd-az_AZ.po +0 -972
  23. locale/cpd-be_BY.mo +0 -0
  24. locale/cpd-be_BY.po +0 -784
  25. locale/cpd-bg_BG.mo +0 -0
  26. locale/cpd-bg_BG.po +0 -972
  27. locale/cpd-by_BY.mo +0 -0
  28. locale/cpd-by_BY.po +284 -0
  29. locale/cpd-da_DK.mo +0 -0
  30. locale/cpd-da_DK.po +0 -973
  31. locale/cpd-de_DE.mo +0 -0
  32. locale/cpd-de_DE.po +125 -686
  33. locale/cpd-el.mo +0 -0
  34. locale/cpd-el.po +0 -973
  35. locale/cpd-es_ES.mo +0 -0
  36. locale/cpd-es_ES.po +0 -972
  37. locale/cpd-fr_FR.mo +0 -0
  38. locale/cpd-fr_FR.po +0 -971
  39. locale/cpd-it_IT.mo +0 -0
  40. locale/cpd-it_IT.po +88 -802
  41. locale/cpd-ja.mo +0 -0
  42. locale/cpd-ja.po +0 -972
  43. locale/cpd-lt_LT.mo +0 -0
  44. locale/cpd-lt_LT.po +0 -784
  45. locale/cpd-nb_NO.mo +0 -0
  46. locale/cpd-nb_NO.po +0 -972
  47. locale/cpd-nl_NL.mo +0 -0
  48. locale/cpd-nl_NL.po +0 -971
  49. locale/cpd-pl_PL.mo +0 -0
  50. locale/cpd-pl_PL.po +0 -972
  51. locale/cpd-pt_BR.mo +0 -0
  52. locale/cpd-pt_BR.po +54 -850
  53. locale/cpd-pt_PT.mo +0 -0
  54. locale/cpd-pt_PT.po +0 -971
  55. locale/cpd-ru_RU.mo +0 -0
  56. locale/cpd-ru_RU.po +0 -972
  57. locale/cpd-sv_SE.mo +0 -0
  58. locale/cpd-sv_SE.po +0 -972
  59. locale/cpd-tr_TR.mo +0 -0
  60. locale/cpd-tr_TR.po +0 -971
  61. locale/cpd-ua_UA.mo +0 -0
  62. locale/cpd-ua_UA.po +0 -972
  63. locale/cpd-uz_UZ.mo +0 -0
  64. locale/cpd-uz_UZ.po +411 -0
  65. map/ammap.swf +0 -0
  66. map/data.xml.php +0 -68
  67. map/map.php +0 -25
  68. map/settings.xml.php +0 -63
  69. map/swfobject.js +0 -8
  70. map/world.swf +0 -0
  71. massbots.php +0 -70
  72. notes.php +0 -121
  73. readme.txt +60 -363
  74. screenshot-1.png +0 -0
  75. screenshot-2.png +0 -0
  76. screenshot-3.png +0 -0
  77. userperspan.php +0 -105
ajax.php DELETED
@@ -1,32 +0,0 @@
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
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@@ -4,6 +4,7 @@
4
  * Count Per Day - Options and Administration
5
  */
6
 
 
7
  // check form
8
  if(!empty($_POST['do']))
9
  {
@@ -13,7 +14,6 @@ if(!empty($_POST['do']))
13
  case 'cpd_update' :
14
  $count_per_day->options['onlinetime'] = $_POST['cpd_onlinetime'];
15
  $count_per_day->options['user'] = empty( $_POST['cpd_user'] ) ? 0 : 1 ;
16
- $count_per_day->options['user_level'] = $_POST['cpd_user_level'];
17
  $count_per_day->options['autocount'] = empty( $_POST['cpd_autocount'] ) ? 0 : 1 ;
18
  $count_per_day->options['bots'] = $_POST['cpd_bots'];
19
  $count_per_day->options['dashboard_posts'] = $_POST['cpd_dashboard_posts'];
@@ -22,298 +22,86 @@ if(!empty($_POST['do']))
22
  $count_per_day->options['show_in_lists'] = empty( $_POST['cpd_show_in_lists'] ) ? 0 : 1 ;
23
  $count_per_day->options['chart_days'] = $_POST['cpd_chart_days'];
24
  $count_per_day->options['chart_height'] = $_POST['cpd_chart_height'];
25
- $count_per_day->options['startdate'] = $_POST['cpd_startdate'];
26
- $count_per_day->options['startcount'] = $_POST['cpd_startcount'];
27
- $count_per_day->options['startreads'] = $_POST['cpd_startreads'];
28
- $count_per_day->options['anoip'] = empty( $_POST['cpd_anoip'] ) ? 0 : 1 ;
29
- $count_per_day->options['clients'] = $_POST['cpd_clients'];
30
- $count_per_day->options['ajax'] = empty( $_POST['cpd_ajax'] ) ? 0 : 1 ;
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 = '';
310
-
311
  switch($mode) {
312
- // deactivation
313
  case 'end-UNINSTALL':
314
- $deactivate_url = 'plugins.php?action=deactivate&amp;plugin='.$cpd_dir_name.'/counter.php';
315
  if ( function_exists('wp_nonce_url') )
316
- $deactivate_url = wp_nonce_url($deactivate_url, 'deactivate-plugin_'.$cpd_dir_name.'/counter.php');
317
  echo '<div class="wrap">';
318
  echo '<h2>'.__('Uninstall', 'cpd').' "Count per Day"</h2>';
319
  echo '<p><strong><a href="'.$deactivate_url.'">'.__('Click here', 'cpd').'</a> '.__('to finish the uninstall and to deactivate "Count per Day".', 'cpd').'</strong></p>';
@@ -321,509 +109,179 @@ switch($mode) {
321
  break;
322
 
323
  default:
324
-
325
- // show options page
326
 
327
  $o = $count_per_day->options;
328
-
329
- // save massbot limit
330
- if(isset($_POST['limit']))
331
- {
332
- $o['massbotlimit'] = $_POST['limit'];
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" />
581
- </p>
582
- </form>
583
-
584
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
585
- <table class="widefat post">
586
- <thead>
587
  <tr>
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" />
623
- </p>
624
  <?php } ?>
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>
674
- </form>
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/>
807
  <?php _e('Here you can delete the tables and disable "Count per Day".', 'cpd') ?>
808
  </p>
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)
4
  * Count Per Day - Options and Administration
5
  */
6
 
7
+
8
  // check form
9
  if(!empty($_POST['do']))
10
  {
14
  case 'cpd_update' :
15
  $count_per_day->options['onlinetime'] = $_POST['cpd_onlinetime'];
16
  $count_per_day->options['user'] = empty( $_POST['cpd_user'] ) ? 0 : 1 ;
 
17
  $count_per_day->options['autocount'] = empty( $_POST['cpd_autocount'] ) ? 0 : 1 ;
18
  $count_per_day->options['bots'] = $_POST['cpd_bots'];
19
  $count_per_day->options['dashboard_posts'] = $_POST['cpd_dashboard_posts'];
22
  $count_per_day->options['show_in_lists'] = empty( $_POST['cpd_show_in_lists'] ) ? 0 : 1 ;
23
  $count_per_day->options['chart_days'] = $_POST['cpd_chart_days'];
24
  $count_per_day->options['chart_height'] = $_POST['cpd_chart_height'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  if ( isset($_POST['cpd_countries']) )
27
  $count_per_day->options['countries'] = $_POST['cpd_countries'];
28
 
29
  update_option('count_per_day', $count_per_day->options);
30
 
31
+ echo '<div id="message" class="updated fade"><p>'.__('Options updated', 'cpd').'</p></div>';
32
  break;
33
 
34
+ // update countries
35
+ case 'cpd_countries' :
36
+ if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
37
  {
38
+ $rest = CpdGeoIp::updateDB();
39
+ echo '<div id="message" class="updated fade">
40
+ <form name="cpdcountries" method="post" action="'.$_SERVER['REQUEST_URI'].'">
41
+ <p>'.sprintf(__('Countries updated. <b>%s</b> entries in %s without country left', 'cpd'), $rest, CPD_C_TABLE);
42
+ if ( $rest > 100 )
43
+ // reload page per javascript until less than 100 entries without country
44
+ // is not optimal...
45
+ echo '<input type="hidden" name="do" value="cpd_countries" />
46
+ <input type="submit" name="updcon" value="'.__('update next', 'cpd').'" class="button" />
47
+ <script type="text/javascript">document.cpdcountries.submit();</script>';
48
+ echo '</p>
49
+ </form>
50
+ </div>';
51
+ if ( $rest > 100 )
52
+ while (@ob_end_flush());
53
  }
54
+ break;
55
+
56
+ // download new GeoIP database
57
+ case 'cpd_countrydb' :
58
+ if ( class_exists('CpdGeoIp') )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  {
60
+ $result = CpdGeoIp::updateGeoIpFile();
61
+ echo '<div id="message" class="updated fade"><p>'.$result.'</p></div>';
62
  }
63
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
+ // clean database
66
+ case 'cpd_clean' :
67
+ $rows = $count_per_day->cleanDB();
68
+ echo '<div id="message" class="updated fade"><p>'.sprintf(__('Database cleaned. %s rows deleted.', 'cpd'), $rows).'</p></div>';
69
+ break;
 
70
 
71
+ // reset counter
72
+ case 'cpd_reset' :
73
+ $wpdb->query('TRUNCATE TABLE '.CPD_C_TABLE);
74
+ echo '<div id="message" class="updated fade"><p>'.sprintf(__('Counter reseted.', 'cpd'), $rows).'</p></div>';
75
+ break;
76
+
77
+ // uninstall plugin
78
+ case __('UNINSTALL Count per Day', 'cpd') :
79
+ if(trim($_POST['uninstall_cpd_yes']) == 'yes')
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  {
81
+ $wpdb->query("DROP TABLE IF EXISTS ".CPD_C_TABLE.";");
82
+ $wpdb->query("DROP TABLE IF EXISTS ".CPD_CO_TABLE.";");
83
+ delete_option('count_per_day');
84
+ echo '<div id="message" class="updated fade"><p>';
85
+ printf(__('Table %s deleted', 'cpd'), CPD_C_TABLE);
86
+ echo '<br/>';
87
+ printf(__('Table %s deleted', 'cpd'), CPD_CO_TABLE);
88
+ echo '<br/>';
89
+ echo __('Options deleted', 'cpd').'</p></div>';
90
+ $mode = 'end-UNINSTALL';
91
  }
92
+ break;
93
+
94
+ default:
95
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  }
97
  }
98
 
 
 
 
 
 
 
 
99
  switch($mode) {
100
+ // deaktivation
101
  case 'end-UNINSTALL':
102
+ $deactivate_url = 'plugins.php?action=deactivate&amp;plugin='.dirname(plugin_basename(__FILE__)).'/counter.php';
103
  if ( function_exists('wp_nonce_url') )
104
+ $deactivate_url = wp_nonce_url($deactivate_url, 'deactivate-plugin_'.dirname(plugin_basename(__FILE__)).'/counter.php');
105
  echo '<div class="wrap">';
106
  echo '<h2>'.__('Uninstall', 'cpd').' "Count per Day"</h2>';
107
  echo '<p><strong><a href="'.$deactivate_url.'">'.__('Click here', 'cpd').'</a> '.__('to finish the uninstall and to deactivate "Count per Day".', 'cpd').'</strong></p>';
109
  break;
110
 
111
  default:
112
+ // show options page
 
113
 
114
  $o = $count_per_day->options;
 
 
 
 
 
 
 
115
  ?>
116
+ <div id="poststuff" class="wrap">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
+ <h2><img src="<?php echo $count_per_day->getResource('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day</h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
 
 
120
  <div class="postbox">
121
+ <h3><?php _e('Options', 'cpd') ?></h3>
 
 
 
 
 
 
 
 
 
122
  <div class="inside">
 
 
 
 
 
 
 
123
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
124
+ <table class="form-table">
 
125
  <tr>
126
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Online time', 'cpd') ?>:</th>
127
+ <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>
128
+ </tr>
129
+ <tr>
130
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Loged on Users', 'cpd') ?>:</th>
131
+ <td><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></td>
132
+ </tr>
133
+ <tr>
134
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Auto counter', 'cpd') ?>:</th>
135
+ <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>
136
+ </tr>
137
+ <tr>
138
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Bots to ignore', 'cpd') ?>:</th>
139
+ <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
140
+ </tr>
141
+ <tr>
142
+ <th colspan="2"><h3><?php _e('Dashboard') ?></h3></th>
143
+ </tr>
144
+ <tr>
145
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Visitors per post', 'cpd') ?>:</th>
146
+ <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>
147
+ </tr>
148
+ <tr>
149
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Posts', 'cpd') ?>:</th>
150
+ <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>
151
+ </tr>
152
+ <tr>
153
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Latest Counts - Days', 'cpd') ?>:</th>
154
+ <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>
155
+ </tr>
156
+ <tr>
157
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Days', 'cpd') ?>:</th>
158
+ <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>
159
+ </tr>
160
+ <tr>
161
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Chart - Height', 'cpd') ?>:</th>
162
+ <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>
163
+ </tr>
164
+ <?php if ( class_exists('CpdGeoIp') ) { ?>
165
+ <tr>
166
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Countries', 'cpd') ?>:</th>
167
+ <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>
168
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  <?php } ?>
170
+ <tr>
171
+ <th colspan="2"><h3><?php _e('Edit Posts') ?> / <?php _e('Edit Pages') ?></h3></th>
172
+ </tr>
173
+ <tr>
174
+ <th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Show in lists', 'cpd') ?>:</th>
175
+ <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>
176
+ </tr>
177
+ </table>
178
+ <p class="submit">
179
+ <input type="hidden" name="do" value="cpd_update" />
180
+ <input type="submit" name="update" value="<?php _e('Update options', 'cpd') ?>" class="button-primary" />
 
 
 
 
 
 
 
181
  </p>
182
  </form>
 
 
 
 
 
 
 
 
 
 
 
 
183
  </div>
184
  </div>
185
+
186
+ <?php if ( class_exists('CpdGeoIp') ) { ?>
187
+ <!-- Countries -->
188
  <div class="postbox">
189
+ <h3><?php _e('GeoIP - Countries', 'cpd') ?></h3>
190
  <div class="inside">
 
 
 
191
 
192
+ <table class="form-table">
193
+ <tr>
194
+ <td>
195
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
196
+ <input type="hidden" name="do" value="cpd_countries" />
197
+ <input type="submit" name="updcon" value="<?php _e('Update old counter data', 'cpd') ?>" class="button" />
198
+ </form>
199
+ </td>
200
+ <td><?php _e('You can get the country data for all entries in database bei check the IP adress again GeoIP database. This take a while!', 'cpd') ?></td>
201
+ </tr>
202
+ <?php if ( ini_get('allow_url_fopen') && function_exists('gzopen') ) { ?>
203
+ <tr>
204
+ <td>
205
+ <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
206
+ <input type="hidden" name="do" value="cpd_countrydb" />
207
+ <input type="submit" name="updcondb" value="<?php _e('Update GeoIP database', 'cpd') ?>" class="button" />
208
+ </form>
209
+ </td>
210
+ <td><?php _e('Download a new version of GeoIP.dat file.', 'cpd') ?></td>
211
+ </tr>
212
+ <?php } ?>
213
+ </table>
214
+
215
+ <p style="text-align: right">
216
+ <?php _e('More informations about GeoIP', 'cpd') ?>: <a href="http://www.maxmind.com/app/geoip_country">www.maxmind.com</a><br />
217
+ DEBUG:
218
+ fopen=<?php echo (function_exists('fopen')) ? 'true' : 'false' ?>
219
+ gzopen=<?php echo (function_exists('gzopen')) ? 'true' : 'false' ?>
220
+ allow_url_fopen=<?php echo (ini_get('allow_url_fopen')) ? 'true' : 'false' ?>
221
  </p>
222
+
223
  </div>
224
  </div>
225
+ <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
+ <!-- Cleaner -->
 
 
 
 
 
228
  <div class="postbox">
229
+ <h3><?php _e('Clean the database', 'cpd') ?></h3>
230
  <div class="inside">
231
  <p>
232
+ <?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') ?>
233
  </p>
 
 
 
 
 
 
 
 
234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
236
+ <p class="submit">
237
+ <input type="hidden" name="do" value="cpd_clean" />
238
+ <input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
239
  </p>
240
  </form>
241
  </div>
242
  </div>
243
+
244
  <!-- Reset DBs -->
245
  <div class="postbox">
246
+ <h3><?php _e('Reset the counter', 'cpd') ?></h3>
247
  <div class="inside">
248
  <p style="color: red">
249
  <?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') ?>
250
  </p>
251
 
252
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
253
+ <p class="submit">
254
  <input type="hidden" name="do" value="cpd_reset" />
255
+ <input type="submit" name="clean" value="<?php _e('Reset the counter', 'cpd') ?>" class="button" />
 
256
  </p>
257
  </form>
258
  </div>
259
  </div>
260
+
261
  <!-- Uninstall -->
262
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
263
  <div class="postbox">
264
+ <h3><?php _e('Uninstall', 'cpd') ?></h3>
265
  <div class="inside">
266
  <p>
267
  <?php _e('If "Count per Day" only disabled the tables in the database will be preserved.', 'cpd') ?><br/>
268
  <?php _e('Here you can delete the tables and disable "Count per Day".', 'cpd') ?>
269
  </p>
270
+ <p style="text-align: left; color: red">
271
  <strong><?php _e('WARNING', 'cpd') ?>:</strong><br />
272
  <?php _e('These tables (with ALL counter data) will be deleted.', 'cpd') ?><br />
273
+ <b><?php echo CPD_C_TABLE.', '.CPD_CO_TABLE; ?></b><br />
274
  <?php _e('If "Count per Day" re-installed, the counter starts at 0.', 'cpd') ?>
275
  </p>
276
+ <p>&nbsp;</p>
277
+ <p class="submit">
278
+ <input type="checkbox" name="uninstall_cpd_yes" value="yes" />&nbsp;<?php _e('Yes', 'cpd'); ?><br /><br />
279
+ <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') ?>')" />
280
  </p>
281
  </div>
282
  </div>
283
  </form>
284
 
 
 
 
 
285
  </div><!-- wrap -->
286
 
287
+ <?php } // End switch($mode) ?>
counter-rtl.css DELETED
@@ -1,20 +0,0 @@
1
- .cpd_front_list,
2
- .cpd_front_list li
3
- {
4
- margin-right: 0 !important;
5
- }
6
-
7
- .cpd_front_list li,
8
- .cpd-l,
9
- .cpd-notes td,
10
- .cpd-notes th
11
- {
12
- text-align: right;
13
- }
14
-
15
- .cpd_front_list li b,
16
- .cpd-dashboard li b,
17
- .cpd-r
18
- {
19
- float: left;
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
counter.css CHANGED
@@ -1,138 +1,13 @@
1
- /* frontend */
2
-
3
- .cpd_front_list, .cpd_front_list li {
4
- list-style-type: none !important;
5
- margin-left: 0 !important;
6
- }
7
-
8
- .cpd_front_list li b { /* values */
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;
129
- border-bottom: 1px #ddd dotted;
130
- overflow: hidden;
131
  }
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;
@@ -151,247 +26,3 @@
151
  white-space: nowrap;
152
  overflow: visible;
153
  }
154
-
155
- .cpd-l {}
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 */
182
-
183
- .cpd-thickbox {
184
- background-color: #F7F6F1;
185
- font-size: 13px;
186
- }
187
-
188
- .cpd-thickbox h2 {
189
- font: italic 1.5em Georgia,"Times New Roman","Bitstream Charter",Times,serif;
190
- margin: 0;
191
- padding: 0;
192
- color: #093E56;
193
- }
194
-
195
- .cpd-thickbox li {
196
- padding-bottom: 5px;
197
- border-top: none;
198
- }
199
-
200
- /* notes thickbox */
201
-
202
- .cpd-notes {
203
- width: 100%;
204
- width: auto;
205
- margin: 1px;
206
- border-color: #000;
207
- border-collapse: collapse;
208
- }
209
-
210
- .cpd-notes td, .cpd-notes th {
211
- vertical-align: top;
212
- text-align: left;
213
- padding: 2px;
214
- font: 12px Verdana, Arial, Helvetica, sans-serif;
215
- border-bottom: 1px #aaa solid;
216
- }
217
-
218
- .cpd-notes th {
219
- background-color: #8cbdd5;
220
- font-weight: bold;
221
- }
222
-
223
- .cpd-notes .nowrap {
224
- white-space: nowrap;
225
- }
226
-
227
- .cpd-notes .red {
228
- background-color: #f00;
229
- color: #ff0;
230
- }
231
-
232
- .cpd-notes .green {
233
- background-color: #0a0;
234
- color: #ff0;
235
- }
236
-
237
- .cpd-notes input {
238
- width: 97%;
239
- font: 12px Verdana, Arial, Helvetica, sans-serif;
240
- }
241
-
242
- /* clients */
243
-
244
- .cpd-client-logo {
245
- padding-left: 25px;
246
- background: url(img/cpd_clients.png) no-repeat left -25px;
247
- }
248
-
249
- .cpd-client-chrome{background-position:0 0;}
250
- .cpd-client-firefox{background-position:0 -49px;}
251
- .cpd-client-msie{background-position:0 -98px;}
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;
261
- white-space: nowrap;
262
- overflow: hidden;
263
- }
264
-
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;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  .cpd-dashboard .inside {
2
  padding: 5px;
3
  }
4
 
 
 
 
 
 
 
5
  .cpd-dashboard li {
6
  color: #777;
 
 
 
7
  }
8
 
9
  .cpd-dashboard li b {
10
  float: right;
 
11
  font-family: Georgia,"Times New Roman",Times,serif;
12
  font-size: 18px;
13
  color: #2583ad;
26
  white-space: nowrap;
27
  overflow: visible;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
counter.php CHANGED
@@ -2,33 +2,114 @@
2
  /*
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
  /**
33
  * counts and shows visits
34
  *
@@ -36,983 +117,695 @@ function CountPerDay()
36
  * @param string $after string after the number
37
  * @param boolean $show "echo" (true, standard) or "return"
38
  * @param boolean $count count visits (true, standard) or only show vistis
39
- * @param string/int $page PostID to count
40
  * @return string counter string
41
  */
42
- function show( $before='', $after=' reads', $show = true, $count = true, $page = 'x' )
43
  {
44
  global $wpdb;
45
  // count once only
46
- if ( $count && !$this->options['autocount'] )
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
  /**
62
  * counts visits (without show)
63
- * @param $x some wp data (ignore it)
64
- * @param string/int $page PostID to count
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>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
  // only count if: non bot, Logon is ok
103
- if ( !$isBot && $countUser && isset($page) )
104
  {
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
  /**
569
  * shows visitors per post
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');
609
  if ( $days > 0 )
610
  // last $days days without today
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 )
641
  $days = $this->options['dashboard_last_days'];
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
- /**
747
- * shows visited pages at given day
748
- * @param integer $date day in mySql date format yyyy-mm-dd
749
- * @param integer $limit count of posts (last posts)
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']))
759
- $date = $_GET['daytoshow'];
760
- else if ( $date == 0 )
761
- $date = date_i18n('Y-m-d');
762
- if ( $limit == 0 )
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
  /**
914
- * creates counter lists
915
- * @param string $sql SQL Statement
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
  */
@@ -1020,288 +813,397 @@ function dashboardWidget()
1020
  {
1021
  echo '<a href="?page=cpd_metaboxes"><b>';
1022
  $this->getUserAll();
1023
- echo '</b></a> '.__('Total visitors', 'cpd').'<b> - ';
1024
  $this->getUserPerDay($this->options['dashboard_last_days']);
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
- {
1049
- $c .= '<div style="margin: 5px 0 10px 0;"><a href="'.$this->dir.'/map/map.php?map=';
1050
- if ( $visitors )
1051
- $c .= 'visitors';
1052
- else
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
-
1145
- extract($args, EXTR_SKIP);
1146
- $title = empty($instance['title']) ? '&nbsp;' : apply_filters('widget_title', $instance['title']);
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'].');');
1165
- else if ( $f == 'show' )
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
  }
1173
  echo '</ul>';
1174
- echo $after_widget;
1175
- }
1176
-
1177
- // update/save function
1178
- function update( $new_instance, $old_instance )
1179
- {
1180
- $instance = $old_instance;
1181
- foreach ( $this->fields as $f )
1182
- if ( isset($new_instance[strtolower($f)]) )
1183
- $instance[strtolower($f)] = strip_tags($new_instance[strtolower($f)]);
1184
- else
1185
- $instance[strtolower($f)] = 0; // unchecked checkboxes
1186
- return $instance;
1187
  }
1188
-
1189
- // admin control form
1190
- function form( $instance )
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,
1208
- 'getfirstcount' => 0,
1209
- 'show_name' => __('This post', 'cpd'),
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();
 
2
  /*
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 and widget.
6
+ Version: 2.3
7
+ License: GPL
8
  Author: Tom Braider
9
  Author URI: http://www.tomsdimension.de
10
  */
11
 
 
 
12
 
13
+ /**
14
+ * include GeoIP addon
15
+ */
16
+ $cpd_path = ABSPATH.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__));
17
+ if ( file_exists($cpd_path.'/geoip/geoip.php') )
18
+ include_once($cpd_path.'/geoip/geoip.php');
19
+
20
 
21
  /**
22
  * Count per Day
23
  */
24
+ class CountPerDay
25
  {
26
+
27
+ var $options; // options array
28
+ var $dir; // this plugin dir
29
+ var $dbcon; // database connection
30
+
31
 
32
  /**
33
+ * Constructor
34
  */
35
  function CountPerDay()
36
  {
37
+ // variables
38
+ global $table_prefix;
39
+ define('CPD_C_TABLE', $table_prefix.'cpd_counter');
40
+ define('CPD_CO_TABLE', $table_prefix.'cpd_counter_useronline');
41
+ define('CPD_METABOX', 'cpd_metaboxes');
42
+
43
+ $this->options = get_option('count_per_day');
44
+ $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.dirname(plugin_basename(__FILE__));
45
+
46
+ // update online counter
47
+ add_action('wp', array(&$this, 'deleteOnlineCounter'));
48
+
49
+ // admin menu
50
+ if ( is_admin() )
51
+ add_action('admin_menu', array(&$this, 'menu'));
52
+
53
+ // settings link on plugin page
54
+ add_filter('plugin_action_links', array(&$this, 'pluginActions'), 10, 2);
55
+
56
+ // auto counter
57
+ if ( $this->options['autocount'] == 1 )
58
+ add_action('wp', array(&$this,'autocount'));
59
+
60
+ // widget on dashboard page
61
+ add_action('wp_dashboard_setup', array(&$this, 'dashboardWidgetSetup'));
62
+
63
+ // CpD dashboard page
64
+ add_filter('screen_layout_columns', array(&$this, 'screenLayoutColumns'), 10, 2);
65
+
66
+ // register callback for admin menu setup
67
+ add_action('admin_menu', array(&$this, 'setAdminMenu'));
68
+
69
+ // column page list
70
+ add_action('manage_pages_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
71
+ add_filter('manage_pages_columns', array(&$this, 'cpdColumn'));
72
+
73
+ // column post list
74
+ add_action('manage_posts_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
75
+ add_filter('manage_posts_columns', array(&$this, 'cpdColumn'));
76
+
77
+ // locale support
78
+ if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
79
+ load_plugin_textdomain('cpd', '', dirname(plugin_basename(__FILE__)).'/locale');
80
+
81
+ // creates image recources
82
+ $this->setRecources();
83
+
84
+ // adds stylesheet
85
+ wp_enqueue_style('cpd_css', $this->dir.'/counter.css');
86
+
87
+ // widget setup
88
+ add_action('plugins_loaded', array(&$this, 'widgetCpdInit'));
89
+
90
+ // activation hook
91
+ register_activation_hook(__FILE__, array(&$this, 'createTables'));
92
+
93
+ // uninstall hook
94
+ if ( function_exists('register_uninstall_hook') )
95
+ register_uninstall_hook(__FILE__, array(&$this, 'uninstall'));
96
+
97
+ $this->connect_db();
98
  }
99
 
100
+
101
+
102
+ /**
103
+ * direct database connection without wordpress functions saves memory
104
+ */
105
+ function connect_db()
106
+ {
107
+ $this->dbcon = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, true);
108
+ @mysql_select_db(DB_NAME, $this->dbcon);
109
+ }
110
+
111
+
112
+
113
  /**
114
  * counts and shows visits
115
  *
117
  * @param string $after string after the number
118
  * @param boolean $show "echo" (true, standard) or "return"
119
  * @param boolean $count count visits (true, standard) or only show vistis
 
120
  * @return string counter string
121
  */
122
+ function show( $before='', $after=' reads', $show = true, $count = true )
123
  {
124
  global $wpdb;
125
  // count once only
126
+ if ( $count && $this->options['autocount'] == 0 )
127
  $this->count();
128
+ $page = get_the_ID();
129
+ $visits = $wpdb->get_results("SELECT page FROM ".CPD_C_TABLE." WHERE page='$page';");
130
+ $visits_per_page = count($visits);
131
+ if ( $show )
132
+ echo $before.$visits_per_page.$after;
133
  else
134
+ return $visits_per_page;
 
 
 
 
 
 
 
135
  }
136
 
137
+
138
+
139
  /**
140
  * counts visits (without show)
 
 
141
  */
142
+ function count()
143
  {
144
+ global $wpdb;
145
+ global $cpd_path;
146
+ global $wp_query;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
+ // find PostID
149
+ if ( !is_404() ) :
150
+ if ( $this->options['autocount'] == 1 && is_singular() )
151
+ {
152
+ // single page with autocount on
153
+ // make loop before regular loop is defined
154
+ if (have_posts()) :
155
+ while ( have_posts() && $page == 0 ) :
156
+ the_post();
157
+ $page = get_the_ID();
158
+ endwhile;
159
+ endif;
160
+ rewind_posts();
161
+ }
162
+ else if ( is_singular() )
163
+ // single page with template tag show() or count()
164
+ $page = get_the_ID();
165
+
166
+ // "index" pages only with autocount
167
+ else if ( is_category() || is_tag() )
168
+ // category or tag => negativ ID in CpD DB
169
+ $page = 0 - $wp_query->get_queried_object()->term_id;
170
+ else
171
+ // index, date, search and other "list" pages will count only once
172
+ $page = 0;
173
+ endif;
174
+ $countUser = ( $this->options['user'] == 0 && is_user_logged_in() ) ? 0 : 1;
175
 
176
  // only count if: non bot, Logon is ok
177
+ if ( !$this->isBot() && $countUser )
178
  {
179
+ $userip = $_SERVER['REMOTE_ADDR'];
180
+ $client = $_SERVER['HTTP_USER_AGENT'];
181
+ $date = date('ymd');
 
 
 
182
 
183
+ // memorize UserIP
184
+ $user_ip = $wpdb->get_results("SELECT * FROM ".CPD_C_TABLE." WHERE ip='$userip' AND date='$date' AND page='$page';");
185
+ if ( count($user_ip) == 0 )
186
  {
187
+ if ( class_exists('CpdGeoIp') )
 
188
  {
189
  // with GeoIP addon save country
190
+ $gi = geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
191
+ $country = strtolower(geoip_country_code_by_addr($gi, $userip));
 
 
192
  }
193
  else
194
  // without country
195
+ $country = '';
196
+ $wpdb->query($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, country)
197
+ VALUES (%s, %s, %s, %s, %s)", $page, $userip, $client, $date, $country));
198
  }
199
+
200
  // online counter
201
+ $timestamp = time();
202
+ $wpdb->query($wpdb->prepare("REPLACE INTO ".CPD_CO_TABLE." (timestamp, ip, page)
203
+ VALUES ( %s, %s, %s)", $timestamp, $userip, $page));
204
  }
205
  }
206
 
207
+
208
+
209
  /**
210
+ * deletes old online user
211
  */
212
  function deleteOnlineCounter()
213
  {
214
+ global $wpdb;
215
+ $timeout = time() - $this->options['onlinetime'];
216
+ $wpdb->query($wpdb->prepare("DELETE FROM ".CPD_CO_TABLE." WHERE timestamp < %s", $timeout));
 
 
217
  }
218
 
219
+
220
+
221
  /**
222
+ * bot or human?
223
+ * @param string $client USER_AGENT
224
+ * @param array $bots strings to check
225
  */
226
+ function isBot( $client = '', $bots = '' )
227
  {
228
+ if ( empty($client) )
229
+ $client = $_SERVER['HTTP_USER_AGENT'];
230
+
231
+ // empty/short client -> not normal browser -> bot
232
+ if ( empty($client) || strlen($client) < 20 )
233
+ return true;
234
+
235
+ if ( empty($bots) )
236
+ $bots = explode( "\n", $this->options['bots'] );
237
+
238
+ $isBot = false;
239
+ foreach ( $bots as $bot )
240
+ {
241
+ $b = trim($bot);
242
+ if ( !empty($b) && ( $_SERVER['REMOTE_ADDR'] == $b || strpos( strtolower($client), strtolower($b) ) !== false ) )
243
+ $isBot = true;
244
+ }
245
+ return $isBot;
 
 
246
  }
247
 
248
+
249
+
250
  /**
251
+ * creates tables if not exists
 
252
  */
253
+ function createTables()
254
  {
255
+ // for plugin activation, creates $wpdb
256
+ require_once(ABSPATH.'wp-admin/includes/upgrade.php');
 
 
 
 
 
 
 
 
 
 
 
 
257
 
258
+ global $wpdb;
 
 
259
 
260
+ if ( $wpdb->get_var( "SHOW TABLES LIKE '".CPD_C_TABLE."'" ) != CPD_C_TABLE )
261
+ {
262
+ // table "counter" is not exists
263
+ $sql = "CREATE TABLE IF NOT EXISTS `".CPD_C_TABLE."` (
264
+ `id` int(10) NOT NULL auto_increment,
265
+ `ip` varchar(15) NOT NULL,
266
+ `client` varchar(100) NOT NULL,
267
+ `date` char(6) NOT NULL,
268
+ `page` int(11) NOT NULL,
269
+ PRIMARY KEY (`id`),
270
+ KEY `idx_ip` (`ip`(3)),
271
+ KEY `idx_date` (`date`),
272
+ KEY `idx_page` (`page`) );";
273
+ dbDelta($sql);
274
+ }
 
275
 
276
+ if ( $wpdb->get_var( "SHOW TABLES LIKE '".CPD_CO_TABLE."'" ) != CPD_CO_TABLE )
277
+ {
278
+ // table "counter-online" is not exists
279
+ $sql = "CREATE TABLE IF NOT EXISTS `".CPD_CO_TABLE."` (
280
+ `timestamp` int(15) NOT NULL default '0',
281
+ `ip` varchar(15) NOT NULL default '',
282
+ `page` int(11) NOT NULL default '0',
283
+ PRIMARY KEY (`ip`) );";
284
+ dbDelta($sql);
285
+ }
 
 
 
 
286
 
287
+ // make new keys if needed
288
+ $keys = $wpdb->query( "SHOW KEYS FROM '".CPD_C_TABLE."'" );
289
+ if ( sizeof($keys) == 1 )
 
290
  {
291
+ $sql = "ALTER TABLE `".CPD_C_TABLE."`
292
+ ADD KEY `idx_ip` (`ip`(3)),
293
+ ADD KEY `idx_date` (`date`),
294
+ ADD KEY `idx_page` (`page`)";
295
+ $wpdb->query($sql);
296
  }
297
+
298
+ // update options to array
299
+ $this->UpdateOptions();
300
+ }
301
+
302
+
303
+
304
+ /**
305
+ * creates dashboard summary metabox content
306
+ */
307
+ function dashboardReadsAtAll()
308
+ {
309
  ?>
310
+ <ul>
311
+ <li><b style="float:right"><span><?php $this->getUserAll(); ?></span></b><?php _e('Total visitors', 'cpd') ?>:</li>
312
+ <li><b style="float:right"><span><?php $this->getUserOnline(); ?></span></b><?php _e('Visitors currently online', 'cpd') ?>:</li>
313
+ <li><b style="float:right"><?php $this->getUserToday(); ?></b><?php _e('Visitors today', 'cpd') ?>:</li>
314
+ <li><b style="float:right"><?php $this->getUserYesterday(); ?></b><?php _e('Visitors yesterday', 'cpd') ?>:</li>
315
+ <li><b style="float:right"><?php $this->getUserLastWeek(); ?></b><?php _e('Visitors last week', 'cpd') ?>:</li>
316
+ <li><b style="float:right"><?php $this->getUserPerDay($this->options['dashboard_last_days']); ?></b>&Oslash; <?php _e('Visitors per day', 'cpd') ?>:</li>
317
+ <li><b style="float:right"><?php $this->getFirstCount(); ?></b><?php _e('Counter starts on', 'cpd') ?>:</li>
318
+ </ul>
319
+ <?php
320
+ }
321
 
322
+
323
+
324
+ /**
325
+ * creates dashboard chart metabox content - page visits
326
+ * @param integer $limit days to show
327
+ * @see dashboardChartDataRequest()
328
+ */
329
+ function dashboardChart( $limit = 0 )
330
+ {
331
+ // get options
332
+ if ( $limit == 0 )
333
+ $limit = ( !empty($this->options['chart_days']) )? $this->options['chart_days'] : 30;
 
334
 
335
+ $sql = "SELECT count(*) as count,
336
+ date
337
+ FROM ".CPD_C_TABLE."
338
+ GROUP BY date
339
+ ORDER BY date DESC
340
+ LIMIT $limit";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
 
342
+ $this->dashboardChartDataRequest($sql, $limit);
343
+ }
 
344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
 
347
+ /**
348
+ * creates dashboard chart metabox content - visitors
349
+ * @param integer limit days to show
350
+ * @see dashboardChartDataRequest()
351
+ */
352
+ function dashboardChartVisitors( $limit = 0 )
353
+ {
354
+ // get options
355
+ if ( $limit == 0 )
356
+ $limit = ( !empty($this->options['chart_days']) )? $this->options['chart_days'] : 30;
357
+
358
+ $sql = "SELECT count(*) count, date
359
+ FROM ( SELECT count(*) AS count, date, ip
360
+ FROM ".CPD_C_TABLE."
361
+ GROUP BY ip, date
362
+ ) AS temp
363
+ GROUP BY date
364
+ ORDER BY date DESC
365
+ LIMIT $limit";
366
+
367
+ $this->dashboardChartDataRequest($sql, $limit);
368
  }
369
 
370
+
371
+
372
  /**
373
+ * creates dashboard chart metabox content
374
+ * @param string $sql SQL-Statement visitors or page visits
375
  */
376
+ function dashboardChartDataRequest( $sql = '', $limit )
377
  {
378
+ global $wpdb, $wp_locale;
379
+
380
+ // get options
381
+ $max_height = ( !empty($this->options['chart_height']) ) ? $this->options['chart_height'] : 200;
382
 
383
+ $res = $wpdb->get_results($sql);
384
+
385
+ // find date end points
386
+ foreach ( $res as $day )
387
+ {
388
+ if ( empty($end) )
389
+ $end = $day->date;
390
+ $start = $day->date;
391
+ }
392
 
393
+ $end_time = strtotime("20$end");
394
+ $start_time = max( array($end_time - ($limit - 1) * 86400, strtotime("20$start")) );
395
+ $days = ($end_time - $start_time) / 86400 + 1;
396
+ $bar_width = round( 100 / $days, 2); // as %
397
+
398
+ // find max count
399
+ $max = 1;
400
+ foreach ( $res as $day )
401
  {
402
+ $date = strtotime('20'.$day->date);
403
+ if ( $date >= $start_time && $day->count > $max )
404
+ $max = $day->count;
405
+ }
 
 
 
 
406
 
407
+ $height_factor = $max_height / $max;
408
+
409
+ // headline with max count
410
+ echo '<small style="display:block;">Max: '.$max.'</small>
411
+ <p style="border-bottom:1px black solid; white-space:nowrap;">';
412
+
413
+ $date_old = $start_time;
414
+
415
+ // neweset data will show right
416
+ $res = array_reverse($res);
417
+
418
+ foreach ( $res as $day )
419
+ {
420
+ $date = strtotime('20'.$day->date);
421
+
422
+ if ( $date >= $start_time )
423
  {
424
+ // show the last $limit days only
425
+ if ( $date - $date_old > 86400 )
 
426
  {
427
+ // show space if no reads today
428
+ $width = (($date - $date_old) / 86400 - 1) * $bar_width;
429
+ echo '<img src="'.$this->getResource('cpd_trans.png').'" title="'.__('no reads at this time', 'cpd').'"
430
+ style="width:'.$width.'%; height:'.$max_height.'px" />';
431
  }
432
+
433
+ // show normal bar
434
+ $height = max( round($day->count * $height_factor, 0), 1 );
435
+ $date_str = date('j. ', $date).$wp_locale->get_month(date('m', $date)).date(' Y', $date);
436
+ echo '<img src="'.$this->getResource('cpd_rot.png').'" title="'.$date_str.' : '.$day->count.'"
437
+ style="width:'.$bar_width.'%; height:'.$height.'px" />';
438
+
439
+ $date_old = $date;
440
  }
 
 
 
 
 
441
  }
442
+
443
+ // legend
444
+ $end_str = date('j. ', $end_time).$wp_locale->get_month(date('m', $end_time)).date(' Y', $end_time);
445
+ $start_str = date('j. ', $start_time).$wp_locale->get_month(date('m', $start_time)).date(' Y', $start_time);
446
+ echo '</p>
447
+ <p style="text-align:center">
448
+ <small>'.$days.' '.__('days', 'cpd').'</small>
449
+ <small style="float:left">'.$start_str.'</small>
450
+ <small style="float:right">'.$end_str.'</small>
451
+ </p>';
452
  }
453
 
454
+
455
+
456
+ // The following statistic functions you can use in your template too.
457
+ // use $count_per_day->getUserOnline()
458
+
459
+
460
+
461
  /**
462
+ * shows current visitors
463
  */
464
+ function getUserOnline()
465
  {
466
  global $wpdb;
467
+ $v = $wpdb->get_var("SELECT count(page) FROM ".CPD_CO_TABLE.";");
468
+ echo $v;
 
469
  }
470
 
471
+
472
+
473
  /**
474
+ * shows all visitors
475
  */
476
+ function getUserAll()
477
  {
478
+ $res = mysql_query("SELECT 1 FROM ".CPD_C_TABLE." GROUP BY ip, date;", $this->dbcon);
479
+ echo mysql_num_rows($res);
 
 
480
  }
481
 
482
+
483
+
484
  /**
485
  * shows today visitors
486
  */
487
+ function getUserToday()
488
  {
489
+ $date = date('ymd',time());
490
+ $res = mysql_query("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip;", $this->dbcon);
491
+ echo mysql_num_rows($res);
 
492
  }
493
 
494
+
 
 
 
 
 
 
 
 
 
495
 
496
  /**
497
  * shows yesterday visitors
498
  */
499
+ function getUserYesterday()
500
  {
501
+ $date = date('ymd',time()-86400);
502
+ $res = mysql_query("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip;", $this->dbcon);
503
+ echo mysql_num_rows($res);
504
  }
505
 
 
 
 
 
 
 
 
 
 
506
 
 
 
 
 
 
 
 
 
 
507
 
508
  /**
509
+ * shows last week visitors (last 7 days)
510
  */
511
+ function getUserLastWeek()
512
  {
513
+ $date = date('ymd',time()-86400*7);
514
+ $res = mysql_query("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$date' GROUP BY ip;", $this->dbcon);
515
+ echo mysql_num_rows($res);
516
  }
517
 
 
 
 
 
 
 
 
 
 
 
518
 
 
 
 
 
 
 
 
 
 
 
519
 
520
  /**
521
  * shows visitors per month
522
  */
523
+ function getUserPerMonth()
524
  {
525
  global $wpdb;
526
+ $m = $wpdb->get_results("SELECT left(date,4) as month FROM ".CPD_C_TABLE." GROUP BY left(date,4) ORDER BY date desc");
527
+ echo '<ul>';
 
 
 
 
528
  foreach ( $m as $row )
529
  {
530
+ $res = mysql_query("SELECT page FROM ".CPD_C_TABLE." WHERE left(date,4) = ".$row->month." GROUP BY ip, date;", $this->dbcon);
531
+ echo '<li><b>'.mysql_num_rows($res).'</b> 20'.substr($row->month,0,2).'/'.substr($row->month,2,2).'</li>'."\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
532
  }
533
+ echo '</ul>';
 
 
 
534
  }
535
 
536
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
 
538
  /**
539
  * shows visitors per post
540
  * @param integer $limit number of posts, -1 = all, 0 = get option from db, x = number
 
541
  */
542
+ function getUserPerPost( $limit = 0 )
543
  {
544
  global $wpdb;
545
  if ( $limit == 0 )
546
  $limit = $this->options['dashboard_posts'];
547
+
548
  $sql = "
549
+ SELECT count(c.id) as count,
550
+ p.post_title as post,
551
+ c.page as post_id,
552
+ t.name as tag_cat_name,
553
+ t.slug as tag_cat_slug,
554
+ x.taxonomy as tax
555
+ FROM ".CPD_C_TABLE." c
556
+ LEFT JOIN ".$wpdb->posts." p
557
+ ON p.id = c.page
558
+ LEFT JOIN ".$wpdb->terms." t
559
+ ON t.term_id = 0 - c.page
560
+ LEFT JOIN ".$wpdb->term_taxonomy." x
561
+ ON x.term_id = t.term_id
562
+ WHERE c.page
563
+ GROUP BY c.page
564
+ ORDER BY count DESC";
565
+ if ( $limit > 0 )
566
+ $sql .= " LIMIT ".$limit;
567
+ $this->getUserPer_SQL( $sql );
568
  }
569
 
570
+
571
+
572
  /**
573
+ * shows counter start, first day
574
  */
575
+ function getFirstCount()
576
  {
577
+ global $wpdb;
578
  global $wp_locale;
579
+ $v = $wpdb->get_var("SELECT date FROM ".CPD_C_TABLE." ORDER BY date LIMIT 1;");
580
+ $date = strtotime( '20'.substr($v,0,2).'-'.substr($v,2,2).'-'.substr($v,4,2) );
581
+ echo date('j. ', $date) . $wp_locale->get_month( substr($v,2,2) ) . date(' Y', $date);
 
 
 
582
  }
583
 
584
+
585
+
586
  /**
587
  * shows averaged visitors per day
 
588
  */
589
+ function getUserPerDay( $days = 0 )
590
  {
591
  global $wpdb;
592
+ $datemax = date('ymd', time());
593
  if ( $days > 0 )
594
  // last $days days without today
595
+ $datemin = date('ymd', time() - ($days + 1) * 86400);
596
  else
597
  {
598
+ $v = $wpdb->get_results('SELECT MIN(date) as min, MAX(date) as max FROM '.CPD_C_TABLE);
599
+ foreach ($v as $row)
600
+ {
601
+ $min = strtotime('20'.substr($row->min,0,2).'-'.substr($row->min,2,2).'-'.substr($row->min,4,2) );
602
+ $max = strtotime('20'.substr($row->max,0,2).'-'.substr($row->max,2,2).'-'.substr($row->max,4,2) );
603
+ $days = (($max - $min) / 86400 + 1);
604
+ $datemin = 0;
605
+ }
606
  }
607
+ $res = @mysql_query('SELECT 1 FROM '.CPD_C_TABLE.' WHERE date > '.$datemin.' AND date < '.$datemax.' GROUP BY ip,date', $this->dbcon);
608
+ $count = @mysql_num_rows($res) / $days;
609
 
610
+ echo '<abbr title="last '.$days.' days without today">';
611
  if ( $count < 5 )
612
+ echo number_format($count, 2);
613
  else
614
+ echo number_format($count, 0);
615
+ echo '</abbr>';
 
616
  }
617
 
618
+
619
+
620
  /**
621
  * shows most visited pages in last days
622
  * @param integer $days days to calc (last days)
623
  * @param integer $limit count of posts (last posts)
 
624
  */
625
+ function getMostVisitedPosts( $days = 0, $limit = 0 )
626
  {
627
  global $wpdb;
628
  if ( $days == 0 )
629
  $days = $this->options['dashboard_last_days'];
630
  if ( $limit == 0 )
631
  $limit = $this->options['dashboard_last_posts'];
632
+ $date = date('ymd', time() - 86400 * $days);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
633
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
634
  $sql = "
635
+ SELECT count(c.id) as count,
636
+ p.post_title as post,
637
+ c.page as post_id,
638
+ t.name as tag_cat_name,
639
+ t.slug as tag_cat_slug,
640
+ x.taxonomy as tax
641
+ FROM ".CPD_C_TABLE." c
642
+ LEFT JOIN ".$wpdb->posts." p
643
+ ON p.id = c.page
644
+ LEFT JOIN ".$wpdb->terms." t
645
+ ON t.term_id = 0 - c.page
646
+ LEFT JOIN ".$wpdb->term_taxonomy." x
647
+ ON x.term_id = t.term_id
648
  WHERE c.date >= '$date'
 
649
  GROUP BY c.page
650
  ORDER BY count DESC
651
  LIMIT $limit";
652
+
653
+ echo '<small>'.sprintf(__('The %s most visited posts in last %s days:', 'cpd'), $limit, $days).'<br/>&nbsp;</small>';
654
+ $this->getUserPer_SQL( $sql );
 
 
 
 
 
 
 
 
 
 
 
 
655
  }
656
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
 
659
  /**
660
  * shows little browser statistics
661
  */
662
+ function getClients()
663
  {
664
  global $wpdb;
665
+ $clients = array('Firefox', 'MSIE', 'Chrome', 'AppleWebKit', 'Opera');
 
666
 
667
+ $all = $wpdb->get_var("SELECT COUNT(*) as count FROM ".CPD_C_TABLE);
 
 
 
668
  $rest = 100;
669
+ echo '<ul>';
670
  foreach ($clients as $c)
671
  {
672
+ $count = $wpdb->get_var("SELECT COUNT(*) as count FROM ".CPD_C_TABLE." WHERE client like '%$c%'");
 
673
  $percent = number_format(100 * $count / $all, 0);
674
  $rest -= $percent;
675
+ echo '<li>'.$c.'<b>'.$percent.' %</b></li>';
676
  }
677
  if ( $rest > 0 )
678
+ echo '<li>'.__('Other', 'cpd').'<b>'.$rest.' %</b></li>';
679
+ echo '</ul>';
 
 
 
 
680
  }
681
 
682
+
683
+ // end of statistic functions
684
+
685
+
686
  /**
687
+ * creates counter lists
688
+ * @param string $sql SQL Statement
689
  */
690
+ function getUserPer_SQL( $sql )
691
  {
692
  global $wpdb;
693
+ $m = $wpdb->get_results($sql);
694
+ echo '<ul>';
695
+ foreach ( $m as $row )
696
+ {
697
+ $postname = ( !empty($row->post) ) ? $row->post : '---';
698
+ echo '<li><b>'.$row->count.'</b> <a href="'.get_bloginfo('url');
699
+ if ( $row->post_id < 0 && $row->tax == 'category' )
700
+ //category
701
+ echo '?cat='.(0 - $row->post_id).'">- '.$row->tag_cat_name.' -';
702
+ else if ( $row->post_id < 0 )
703
+ // tag
704
+ echo '?tag='.$row->tag_cat_slug.'">- '.$row->tag_cat_name.' -';
705
+ else if ( $row->post_id == 0 )
706
+ // homepage
707
+ echo '">- '.__('Front page displays').' -';
708
+ else
709
+ // post/page
710
+ echo '?p='.$row->post_id.'">'.$postname;
711
+ echo "</a></li>\n";
712
+ }
713
+ echo '</ul>';
714
  }
715
 
716
+
717
  /**
718
+ * deletes spam in table, if you add new bot pattern you can clean the db
719
  */
720
+ function cleanDB()
721
  {
722
  global $wpdb;
723
+
724
+ $bots = explode( "\n", $this->options['bots'] );
725
+ $rows = 0;
726
+
727
+ // delete by ip
728
+ $ips = "'".implode( "','", $bots )."'";
729
+ $rows += $wpdb->get_var('SELECT count(*) FROM '.CPD_C_TABLE.' WHERE ip in ('.$ips.')');
730
+ $wpdb->query('DELETE FROM '.CPD_C_TABLE.' WHERE ip in ('.$ips.')');
731
+
732
+ // delete by client
733
+ $v = $wpdb->get_results('SELECT id, client FROM '.CPD_C_TABLE);
734
+ foreach ($v as $row)
735
+ {
736
+ if ( $this->IsBot($row->client, $bots) )
737
+ {
738
+ $wpdb->query('DELETE FROM '.CPD_C_TABLE.' WHERE id = '.$row->id);
739
+ $rows++;
740
+ }
741
+ }
742
+
743
+ // delete if a previously countered page was deleted
744
+ $posts = $wpdb->get_results('SELECT id FROM '.$wpdb->posts);
745
+
746
+ $pages = array();
747
+ foreach ($posts as $post)
748
+ $pages[] = $post->id;
749
+ $pages = implode("','", $pages);
750
+
751
+ $sql = "SELECT count(*) as count, page
752
+ FROM ".CPD_C_TABLE."
753
+ WHERE page NOT IN ('$pages')
754
+ GROUP BY page";
755
+ $counts = $wpdb->get_results($sql);
756
+
757
+ foreach ($counts as $count)
758
+ $rows += $count->count;
759
+
760
+ $wpdb->query("DELETE FROM ".CPD_C_TABLE." WHERE page NOT IN ('$pages')");
761
+
762
+ return $rows;
763
  }
764
 
765
+
766
+
767
  /**
768
+ * adds menu entry to backend
769
+ * @param string $content WP-"Content"
770
  */
771
+ function menu($content)
772
  {
773
+ global $wp_version;
774
+ if (function_exists('add_options_page'))
775
+ {
776
+ $menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" /> Count per Day';
777
+ add_options_page('CountPerDay', $menutitle, 'manage_options', dirname(plugin_basename(__FILE__)).'/counter-options.php') ;
778
+ }
 
 
 
 
 
 
 
 
 
 
 
779
  }
780
 
781
+
782
+
783
  /**
784
+ * adds an "settings" link to the plugins page
 
 
 
785
  */
786
+ function pluginActions($links, $file)
787
  {
788
+ if( $file == plugin_basename(__FILE__) )
 
 
 
 
 
 
789
  {
790
+ $link = '<a href="options-general.php?page='.dirname(plugin_basename(__FILE__)).'/counter-options.php">'.__('Settings').'</a>';
791
+ array_unshift( $links, $link );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
792
  }
793
+ return $links;
 
794
  }
795
 
796
+
797
+
798
+ /**
799
+ * loads automatic counter
800
+ */
801
+ function autocount( )
802
+ {
803
+ // if ( is_singular() ) // alle seiten?
804
+ $this->count();
805
+ }
806
+
807
+
808
+
809
  /**
810
  * creates the little widget on dashboard
811
  */
813
  {
814
  echo '<a href="?page=cpd_metaboxes"><b>';
815
  $this->getUserAll();
816
+ echo '</b></a> '.__('Total visitors', 'cpd').' - <b>';
817
  $this->getUserPerDay($this->options['dashboard_last_days']);
818
  echo '</b> '.__('Visitors per day', 'cpd');
819
  }
820
 
821
+
822
+
823
  /**
824
+ * adds widget to dashboard page
 
 
 
825
  */
826
+ function dashboardWidgetSetup()
827
  {
828
+ wp_add_dashboard_widget( 'cpdDashboardWidget', 'Count per Day', array(&$this,'dashboardWidget') );
829
+ }
830
 
 
 
 
 
 
 
831
 
 
 
 
 
 
 
 
 
 
 
832
 
833
+ /**
834
+ * combines the options to one array, update from previous versions
835
+ */
836
+ function updateOptions()
837
+ {
838
+ $options = get_option('count_per_day', '');
839
+ if ( empty($options) )
840
+ {
841
+ $onlinetime = get_option('cpd_onlinetime', 300);
842
+ $user = get_option('cpd_user', 0);
843
+ $autocount = get_option('cpd_autocount', 0);
844
+ $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");
845
+
846
+ $o = array(
847
+ 'onlinetime' => $onlinetime,
848
+ 'user' => $user,
849
+ 'autocount' => $autocount,
850
+ 'bots' => $bots,
851
+ 'dashboard_posts' => 20,
852
+ 'dashboard_last_posts' => 20,
853
+ 'dashboard_last_days' => 14,
854
+ 'widget_title' => 'Count per Day',
855
+ 'widget_functions' => '',
856
+ 'show_in_lists' => 1,
857
+ 'chart_days' => 60,
858
+ 'chart_height' => 100,
859
+ 'countries' => 20);
860
 
861
+ // add array
862
+ add_option('count_per_day', $o);
863
+
864
+ // delete all old options
865
+ delete_option('cpd_cdb_version');
866
+ delete_option('cpd_codb_version');
867
+ delete_option('cpd_onlinetime');
868
+ delete_option('cpd_user');
869
+ delete_option('cpd_autocount');
870
+ delete_option('cpd_bots');
871
+ }
872
+ }
873
+
874
+
875
+
876
+ /**
877
+ * add counter column to page/post lists
878
+ */
879
+ function cpdColumn($defaults)
880
+ {
881
+ if ( $this->options['show_in_lists'] )
882
+ $defaults['cpd_reads'] = '<img src="'.$this->GetResource('cpd_menu.gif').'" alt="'.__('Reads', 'cpd').'" title="'.__('Reads', 'cpd').'" />';
883
+ return $defaults;
884
+ }
885
+
886
+
887
+
888
+ /**
889
+ * adds content to the counter column
890
+ */
891
+ function cpdColumnContent($column_name, $id = 0)
892
+ {
893
+ global $wpdb;
894
+
895
+ if( $column_name == 'cpd_reads' )
896
+ {
897
+ $reads = $wpdb->get_var("SELECT count(*) FROM ".CPD_C_TABLE." WHERE page='$id';");
898
+ echo (int) $reads;
899
+ }
900
+ }
901
+
902
+
903
+
904
+ /**
905
+ * uninstall functions, deletes tables and options
906
+ */
907
+ function uninstall()
908
+ {
909
+ global $wpdb;
910
+ $wpdb->query('DROP TABLE IF EXISTS '.CPD_C_TABLE);
911
+ $wpdb->query('DROP TABLE IF EXISTS '.CPD_CO_TABLE);
912
+ delete_option('count_per_day');
913
+ }
914
+
915
+
916
+
917
+ /**
918
+ * defines base64 encoded image recources
919
+ */
920
+ function setRecources()
921
+ {
922
+ if ( isset($_GET['resource']) && !empty($_GET['resource']) )
923
+ {
924
+ # base64 encoding
925
+ $resources = array(
926
+ 'cpd_menu.gif' =>
927
+ 'R0lGODlhDAAMAJECAP8AAAAAAP///wAAACH5BAEAAAIALAAAAA'.
928
+ 'AMAAwAAAIdjI4ppsqNngA0PYDwZDrjUEGLGJGHBKFNwLYuWwAA'.
929
+ 'Ow==',
930
+ 'cpd_rot.png' =>
931
+ 'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAACX'.
932
+ 'BIWXMAAAsTAAALEwEAmpwYAAAADElEQVR42mP8z8AAAAMFAQHa'.
933
+ '4YgFAAAAAElFTkSuQmCC',
934
+ 'cpd_trans.png' =>
935
+ 'iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACX'.
936
+ 'BIWXMAAAsTAAALEwEAmpwYAAAAC0lEQVR42mNkAAIAAAoAAv/l'.
937
+ 'xKUAAAAASUVORK5CYII='
938
+ );
939
+
940
+ if ( array_key_exists($_GET['resource'], $resources) )
941
  {
942
+ $content = base64_decode($resources[ $_GET['resource'] ]);
943
+
944
+ $lastMod = filemtime(__FILE__);
945
+ $client = ( isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false );
946
+ if (isset($client) && (strtotime($client) == $lastMod))
947
  {
948
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 304);
949
+ exit;
950
  }
951
  else
952
+ {
953
+ header('Last-Modified: '.gmdate('D, d M Y H:i:s', $lastMod).' GMT', true, 200);
954
+ header('Content-Length: '.strlen($content));
955
+ header('Content-Type: image/' . substr(strrchr($_GET['resource'], '.'), 1) );
956
+ echo $content;
957
+ exit;
958
+ }
959
  }
 
960
  }
 
961
  }
962
 
963
+
964
+
965
  /**
966
+ * gets image recource with given name
 
 
 
 
967
  */
968
+ function getResource( $resourceID ) {
969
+ return trailingslashit( get_bloginfo('url') ).'?resource='.$resourceID;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
970
  }
971
 
 
 
972
 
973
 
974
  /**
975
+ * creates sidebar widget
976
  */
977
+ function widgetCpdInit()
978
  {
979
+ if (! function_exists('register_sidebar_widget'))
980
+ return;
 
 
 
 
 
 
 
 
 
 
 
 
981
 
982
+ function widgetCpd($args)
 
 
 
 
 
 
 
 
 
983
  {
984
  global $count_per_day;
985
+
986
+ extract($args);
987
+ if ( !empty($count_per_day->options['widget_functions']) )
988
+ {
989
+ // show widget only if functions are defined
990
+ $title = (!empty($count_per_day->options['widget_title'])) ? $count_per_day->options['widget_title'] : 'Count per Day';
991
+
992
+ echo $before_widget;
993
  echo $before_title.$title.$after_title;
994
  echo '<ul class="cpd">';
995
+ foreach ( $count_per_day->options['widget_functions'] as $f )
 
996
  {
997
+ $s = explode('|', $f);
998
+ if ( ($s[0] == 'show' && is_singular()) || $s[0] != 'show' )
999
  {
1000
+ $name = (!empty($count_per_day->options['name_'.$s[0]])) ? $count_per_day->options['name_'.$s[0]] : __($s[1], 'cpd');
1001
+
1002
+ echo '<li><span style="float:right">';
1003
+ eval('echo $count_per_day->'.$s[0].'("","",false,false);'); // params for 'show' only. don't count! ;)
1004
+ echo '</span>'.$name.':</li>';
 
 
 
 
 
 
 
 
 
1005
  }
1006
  }
1007
  echo '</ul>';
1008
+ echo $after_widget;
1009
+
1010
+ // to find this text for translation
1011
+ __('This post', 'cpd');
1012
+ }
 
 
 
 
 
 
 
 
1013
  }
1014
+ register_sidebar_widget('Count per Day', 'widgetCpd');
1015
+
1016
+ function widgetCpdControl()
1017
  {
1018
+ global $count_per_day;
1019
+
1020
+ // show the possible functions
1021
+ $funcs = array(
1022
+ 'show' => 'This post',
1023
+ 'getUserToday' => 'Visitors today',
1024
+ 'getUserYesterday' => 'Visitors yesterday',
1025
+ 'getUserLastWeek' => 'Visitors last week',
1026
+ 'getUserPerDay' => 'Visitors per day',
1027
+ 'getUserAll' => 'Total visitors',
1028
+ 'getUserOnline' => 'Visitors currently online',
1029
+ 'getFirstCount' => 'Counter starts on',
1030
+ );
1031
+
1032
+ if ( !empty($_POST['widget_cpd_title']) )
1033
+ {
1034
+ $count_per_day->options['widget_title'] = stripslashes($_POST['widget_cpd_title']);
1035
+ $count_per_day->options['widget_functions'] = $_POST['widget_cpd_functions'];
1036
+ // custom names
1037
+ foreach ( $funcs as $k=>$v )
1038
+ $count_per_day->options['name_'.$k] = stripslashes($_POST['name_'.$k]);
1039
+ update_option('count_per_day', $count_per_day->options);
1040
+ }
 
 
 
 
 
 
 
 
 
 
1041
 
1042
+ $title = (!empty($count_per_day->options['widget_title'])) ? $count_per_day->options['widget_title'] : 'Count per Day';
1043
+ echo '<p><label for="widget_cpd_title">'.__('Title:').' <input style="width: 150px;" id="widget_cpd_title" name="widget_cpd_title" type="text" value="'.$title.'" /></label></p>'."\n";
 
 
 
 
 
 
 
 
1044
 
1045
+
1046
+ foreach ( $funcs as $k=>$v )
1047
  {
1048
+ echo '<p><label for="widget_cpd_'.$k.'"><input type="checkbox" id="widget_cpd_'.$k.'" name="widget_cpd_functions[]"
1049
+ value="'.$k.'|'.$v.'" ';
1050
+ if ( !empty($count_per_day->options['widget_functions']) && in_array($k.'|'.$v, $count_per_day->options['widget_functions']) )
1051
+ echo 'checked="checked"';
1052
+ echo '/> '.__($v, 'cpd').'</label><br />'."\n";
1053
+ // custom names
1054
+ $name = (isset($count_per_day->options['name_'.$k])) ? $count_per_day->options['name_'.$k] : '';
1055
+ echo '&nbsp; &nbsp; &nbsp;'.__('Label', 'cpd').': <input name="name_'.$k.'" value="'.$name.'" type="text" title="'.__('empty = name above', 'cpd').'" /></p>';
 
 
 
 
 
 
 
 
 
 
1056
  }
1057
+
1058
+ }
1059
+ register_widget_control('Count per Day', 'widgetCpdControl');
1060
+ }
1061
+
1062
+
1063
+
1064
+ /**
1065
+ * sets columns on dashboard page
1066
+ */
1067
+ function screenLayoutColumns($columns, $screen)
1068
+ {
1069
+ if ($screen == $this->pagehook)
1070
+ $columns[$this->pagehook] = 4;
1071
+ return $columns;
1072
+ }
1073
 
1074
+
1075
+
1076
+ /**
1077
+ * extends the admin menu
1078
+ */
1079
+ function setAdminMenu()
1080
+ {
1081
+ $menutitle = '<img src="'.$this->GetResource('cpd_menu.gif').'" alt="" /> Count per Day';
1082
+ $this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, 1, CPD_METABOX, array(&$this, 'onShowPage'));
1083
+ //register callback gets call prior your own page gets rendered
1084
+ add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
1085
+ }
1086
+
1087
+
1088
+
1089
+ /**
1090
+ * function calls from metabox default parameters
1091
+ */
1092
+ function getMostVisitedPostsMeta() { $this->getMostVisitedPosts(); }
1093
+ function getUserPerPostMeta() { $this->getUserPerPost(); }
1094
+
1095
+
1096
+
1097
+ /**
1098
+ * will be executed if wordpress core detects this page has to be rendered
1099
+ */
1100
+ function onLoadPage()
1101
+ {
1102
+ // needed javascripts
1103
+ wp_enqueue_script('common');
1104
+ wp_enqueue_script('wp-lists');
1105
+ wp_enqueue_script('postbox');
1106
+
1107
+ // add the metaboxes
1108
+ add_meta_box('reads_at_all', __('Total visitors', 'cpd'), array(&$this, 'dashboardReadsAtAll'), $this->pagehook, 'cpdrow1', 'core');
1109
+ add_meta_box('chart_visitors', __('Visitors per day', 'cpd'), array(&$this, 'dashboardChartVisitors'), $this->pagehook, 'cpdrow1', 'core');
1110
+ add_meta_box('chart', __('Reads per day', 'cpd'), array(&$this, 'dashboardChart'), $this->pagehook, 'cpdrow1', 'core');
1111
+ add_meta_box('reads_per_month', __('Visitors per month', 'cpd'), array(&$this, 'getUserPerMonth'), $this->pagehook, 'cpdrow2', 'core');
1112
+ add_meta_box('browsers', __('Browsers', 'cpd'), array(&$this, 'getClients'), $this->pagehook, 'cpdrow2', 'core');
1113
+ add_meta_box('reads_per_post', __('Visitors per post', 'cpd'), array(&$this, 'getUserPerPostMeta'), $this->pagehook, 'cpdrow3', 'core');
1114
+ add_meta_box('last_reads', __('Latest Counts', 'cpd'), array(&$this, 'getMostVisitedPostsMeta'), $this->pagehook, 'cpdrow4', 'core');
1115
+
1116
+ // countries with GeoIP addon only
1117
+ if ( class_exists('CpdGeoIp') )
1118
+ add_meta_box('countries', __('Reads per Country', 'cpd'), array(&$this, 'getCountries'), $this->pagehook, 'cpdrow2', 'core');
1119
+ }
1120
+
1121
+
1122
+ /**
1123
+ * creates dashboard page
1124
+ */
1125
+ function onShowPage()
1126
+ {
1127
+ global $screen_layout_columns, $count_per_day;
1128
+ if ( empty($screen_layout_columns) )
1129
+ $screen_layout_columns = 4;
1130
+ $data = '';
1131
+ ?>
1132
+ <div id="cpd-metaboxes" class="wrap">
1133
+ <h2><img src="<?php echo $this->getResource('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day - <?php _e('Statistics', 'cpd') ?></h2>
1134
+ <?php
1135
+ wp_nonce_field('cpd-metaboxes');
1136
+ wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false );
1137
+ wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false );
1138
+ $cpd_style = 'style="width:'.round(98 / $screen_layout_columns, 1).'%;"';
1139
  ?>
1140
+
1141
+ <div id="dashboard-widgets" class="metabox-holder cpd-dashboard">
1142
+ <div class="postbox-container" <?php echo $cpd_style; ?>>
1143
+ <?php do_meta_boxes($this->pagehook, 'cpdrow1', $data); ?>
1144
+ </div>
1145
+ <div class="postbox-container" <?php echo $cpd_style; ?>>
1146
+ <?php do_meta_boxes($this->pagehook, 'cpdrow2', $data); ?>
1147
+ </div>
1148
+ <div class="postbox-container" <?php echo $cpd_style; ?>>
1149
+ <?php do_meta_boxes($this->pagehook, 'cpdrow3', $data); ?>
1150
+ </div>
1151
+ <div class="postbox-container" <?php echo $cpd_style; ?>>
1152
+ <?php do_meta_boxes($this->pagehook, 'cpdrow4', $data); ?>
1153
+ </div>
1154
+ <br class="clear"/>
1155
+ </div>
1156
+ </div>
1157
+ <script type="text/javascript">
1158
  //<![CDATA[
1159
+ jQuery(document).ready( function($) {
1160
+ // close postboxes that should be closed
1161
+ $('.if-js-closed').removeClass('if-js-closed').addClass('closed');
1162
+ // postboxes setup
1163
+ postboxes.add_postbox_toggles('<?php echo $this->pagehook; ?>');
 
 
 
 
 
 
 
 
 
 
1164
  });
1165
  //]]>
1166
+ </script>
1167
+ <?php
1168
+ }
1169
+
1170
+
1171
 
1172
  /**
1173
+ * gets country flags and page views
1174
+ * @param integer limit count of countries
1175
  */
1176
+ function getCountries( $limit = 0 )
1177
  {
1178
+ global $cpd_path;
1179
+
1180
+ // with GeoIP addon only
1181
+ if ( class_exists('CpdGeoIp') )
1182
+ {
1183
+ $gi = geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
1184
+ $geoip = new GeoIP();
1185
+ if ( $limit == 0 )
1186
+ $limit = max( 0, $this->options['countries'] );
1187
+
1188
+ $res = mysql_query("SELECT country, count(*) as c FROM ".CPD_C_TABLE." WHERE IP > '' GROUP BY country ORDER BY count(*) desc LIMIT $limit;", $this->dbcon);
1189
+
1190
+ echo '<ul>';
1191
+ while ( $r = mysql_fetch_array($res) )
1192
+ {
1193
+ $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($r['country'])];
1194
+ $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
1195
+ echo '<li><b>'.$r['c'].'</b>
1196
+ <img src="http://www.easywhois.com/images/flags/'.$r['country'].'.gif" alt="'.$r['country'].'" /> '
1197
+ .$name.'&nbsp;</li>'."\n";
1198
+ }
1199
+ echo '</ul>';
1200
+ }
1201
  }
1202
 
1203
+
1204
+
1205
+ } // class end
1206
+
1207
+
1208
  $count_per_day = new CountPerDay();
1209
+ ?>
geoip/GeoIP.dat DELETED
Binary file
geoip/geoip.inc DELETED
@@ -1,502 +0,0 @@
1
- <?php
2
-
3
- /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
4
- /* geoip.inc
5
- *
6
- * Copyright (C) 2007 MaxMind LLC
7
- *
8
- * This library is free software; you can redistribute it and/or
9
- * modify it under the terms of the GNU Lesser General Public
10
- * License as published by the Free Software Foundation; either
11
- * version 2.1 of the License, or (at your option) any later version.
12
- *
13
- * This library is distributed in the hope that it will be useful,
14
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
- * Lesser General Public License for more details.
17
- *
18
- * You should have received a copy of the GNU Lesser General Public
19
- * License along with this library; if not, write to the Free Software
20
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
- */
22
-
23
- define("GEOIP_COUNTRY_BEGIN", 16776960);
24
- define("GEOIP_STATE_BEGIN_REV0", 16700000);
25
- define("GEOIP_STATE_BEGIN_REV1", 16000000);
26
- define("GEOIP_STANDARD", 0);
27
- define("GEOIP_MEMORY_CACHE", 1);
28
- define("GEOIP_SHARED_MEMORY", 2);
29
- define("STRUCTURE_INFO_MAX_SIZE", 20);
30
- define("DATABASE_INFO_MAX_SIZE", 100);
31
- define("GEOIP_COUNTRY_EDITION", 106);
32
- define("GEOIP_PROXY_EDITION", 8);
33
- define("GEOIP_ASNUM_EDITION", 9);
34
- define("GEOIP_NETSPEED_EDITION", 10);
35
- define("GEOIP_REGION_EDITION_REV0", 112);
36
- define("GEOIP_REGION_EDITION_REV1", 3);
37
- define("GEOIP_CITY_EDITION_REV0", 111);
38
- define("GEOIP_CITY_EDITION_REV1", 2);
39
- define("GEOIP_ORG_EDITION", 110);
40
- define("GEOIP_ISP_EDITION", 4);
41
- define("SEGMENT_RECORD_LENGTH", 3);
42
- define("STANDARD_RECORD_LENGTH", 3);
43
- define("ORG_RECORD_LENGTH", 4);
44
- define("MAX_RECORD_LENGTH", 4);
45
- define("MAX_ORG_RECORD_LENGTH", 300);
46
- define("GEOIP_SHM_KEY", 0x4f415401);
47
- define("US_OFFSET", 1);
48
- define("CANADA_OFFSET", 677);
49
- define("WORLD_OFFSET", 1353);
50
- define("FIPS_RANGE", 360);
51
- define("GEOIP_UNKNOWN_SPEED", 0);
52
- 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;
60
- var $databaseType;
61
- var $databaseSegments;
62
- var $record_length;
63
- var $shmid;
64
- var $GEOIP_COUNTRY_CODE_TO_NUMBER = array(
65
- "" => 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5,
66
- "AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "AN" => 10, "AO" => 11,
67
- "AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17,
68
- "AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23,
69
- "BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29,
70
- "BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35,
71
- "BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41,
72
- "CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47,
73
- "CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53,
74
- "CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59,
75
- "DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65,
76
- "ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71,
77
- "FM" => 72, "FO" => 73, "FR" => 74, "FX" => 75, "GA" => 76, "GB" => 77,
78
- "GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83,
79
- "GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89,
80
- "GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95,
81
- "HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101,
82
- "IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107,
83
- "IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113,
84
- "KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119,
85
- "KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125,
86
- "LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131,
87
- "LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137,
88
- "MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143,
89
- "MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149,
90
- "MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155,
91
- "NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161,
92
- "NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167,
93
- "PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173,
94
- "PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179,
95
- "PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185,
96
- "RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191,
97
- "SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197,
98
- "SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203,
99
- "SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209,
100
- "TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215,
101
- "TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221,
102
- "UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227,
103
- "VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233,
104
- "VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239,
105
- "ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245,
106
- "O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251,
107
- "MF" => 252
108
- );
109
- var $GEOIP_COUNTRY_CODES = array(
110
- "", "AP", "EU", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ",
111
- "AR", "AS", "AT", "AU", "AW", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH",
112
- "BI", "BJ", "BM", "BN", "BO", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA",
113
- "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU",
114
- "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG",
115
- "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "FX", "GA", "GB",
116
- "GD", "GE", "GF", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT",
117
- "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IN",
118
- "IO", "IQ", "IR", "IS", "IT", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM",
119
- "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS",
120
- "LT", "LU", "LV", "LY", "MA", "MC", "MD", "MG", "MH", "MK", "ML", "MM", "MN",
121
- "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA",
122
- "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA",
123
- "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY",
124
- "QA", "RE", "RO", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI",
125
- "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "ST", "SV", "SY", "SZ", "TC", "TD",
126
- "TF", "TG", "TH", "TJ", "TK", "TM", "TN", "TO", "TL", "TR", "TT", "TV", "TW",
127
- "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN",
128
- "VU", "WF", "WS", "YE", "YT", "RS", "ZA", "ZM", "ME", "ZW", "A1", "A2", "O1",
129
- "AX", "GG", "IM", "JE", "BL", "MF"
130
- );
131
- var $GEOIP_COUNTRY_CODES3 = array(
132
- "","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","ANT","AGO","AQ","ARG",
133
- "ASM","AUT","AUS","ABW","AZE","BIH","BRB","BGD","BEL","BFA","BGR","BHR","BDI",
134
- "BEN","BMU","BRN","BOL","BRA","BHS","BTN","BV","BWA","BLR","BLZ","CAN","CC",
135
- "COD","CAF","COG","CHE","CIV","COK","CHL","CMR","CHN","COL","CRI","CUB","CPV",
136
- "CX","CYP","CZE","DEU","DJI","DNK","DMA","DOM","DZA","ECU","EST","EGY","ESH",
137
- "ERI","ESP","ETH","FIN","FJI","FLK","FSM","FRO","FRA","FX","GAB","GBR","GRD",
138
- "GEO","GUF","GHA","GIB","GRL","GMB","GIN","GLP","GNQ","GRC","GS","GTM","GUM",
139
- "GNB","GUY","HKG","HM","HND","HRV","HTI","HUN","IDN","IRL","ISR","IND","IO",
140
- "IRQ","IRN","ISL","ITA","JAM","JOR","JPN","KEN","KGZ","KHM","KIR","COM","KNA",
141
- "PRK","KOR","KWT","CYM","KAZ","LAO","LBN","LCA","LIE","LKA","LBR","LSO","LTU",
142
- "LUX","LVA","LBY","MAR","MCO","MDA","MDG","MHL","MKD","MLI","MMR","MNG","MAC",
143
- "MNP","MTQ","MRT","MSR","MLT","MUS","MDV","MWI","MEX","MYS","MOZ","NAM","NCL",
144
- "NER","NFK","NGA","NIC","NLD","NOR","NPL","NRU","NIU","NZL","OMN","PAN","PER",
145
- "PYF","PNG","PHL","PAK","POL","SPM","PCN","PRI","PSE","PRT","PLW","PRY","QAT",
146
- "REU","ROU","RUS","RWA","SAU","SLB","SYC","SDN","SWE","SGP","SHN","SVN","SJM",
147
- "SVK","SLE","SMR","SEN","SOM","SUR","STP","SLV","SYR","SWZ","TCA","TCD","TF",
148
- "TGO","THA","TJK","TKL","TLS","TKM","TUN","TON","TUR","TTO","TUV","TWN","TZA",
149
- "UKR","UGA","UM","USA","URY","UZB","VAT","VCT","VEN","VGB","VIR","VNM","VUT",
150
- "WLF","WSM","YEM","YT","SRB","ZAF","ZMB","MNE","ZWE","A1","A2","O1",
151
- "ALA","GGY","IMN","JEY","BLM","MAF"
152
- );
153
- var $GEOIP_COUNTRY_NAMES = array(
154
- "", "Asia/Pacific Region", "Europe", "Andorra", "United Arab Emirates",
155
- "Afghanistan", "Antigua and Barbuda", "Anguilla", "Albania", "Armenia",
156
- "Netherlands Antilles", "Angola", "Antarctica", "Argentina", "American Samoa",
157
- "Austria", "Australia", "Aruba", "Azerbaijan", "Bosnia and Herzegovina",
158
- "Barbados", "Bangladesh", "Belgium", "Burkina Faso", "Bulgaria", "Bahrain",
159
- "Burundi", "Benin", "Bermuda", "Brunei Darussalam", "Bolivia", "Brazil",
160
- "Bahamas", "Bhutan", "Bouvet Island", "Botswana", "Belarus", "Belize",
161
- "Canada", "Cocos (Keeling) Islands", "Congo, The Democratic Republic of the",
162
- "Central African Republic", "Congo", "Switzerland", "Cote D'Ivoire", "Cook Islands",
163
- "Chile", "Cameroon", "China", "Colombia", "Costa Rica", "Cuba", "Cape Verde",
164
- "Christmas Island", "Cyprus", "Czech Republic", "Germany", "Djibouti",
165
- "Denmark", "Dominica", "Dominican Republic", "Algeria", "Ecuador", "Estonia",
166
- "Egypt", "Western Sahara", "Eritrea", "Spain", "Ethiopia", "Finland", "Fiji",
167
- "Falkland Islands (Malvinas)", "Micronesia, Federated States of", "Faroe Islands",
168
- "France", "France, Metropolitan", "Gabon", "United Kingdom",
169
- "Grenada", "Georgia", "French Guiana", "Ghana", "Gibraltar", "Greenland",
170
- "Gambia", "Guinea", "Guadeloupe", "Equatorial Guinea", "Greece", "South Georgia and the South Sandwich Islands",
171
- "Guatemala", "Guam", "Guinea-Bissau",
172
- "Guyana", "Hong Kong", "Heard Island and McDonald Islands", "Honduras",
173
- "Croatia", "Haiti", "Hungary", "Indonesia", "Ireland", "Israel", "India",
174
- "British Indian Ocean Territory", "Iraq", "Iran, Islamic Republic of",
175
- "Iceland", "Italy", "Jamaica", "Jordan", "Japan", "Kenya", "Kyrgyzstan",
176
- "Cambodia", "Kiribati", "Comoros", "Saint Kitts and Nevis", "Korea, Democratic People's Republic of",
177
- "Korea, Republic of", "Kuwait", "Cayman Islands",
178
- "Kazakhstan", "Lao People's Democratic Republic", "Lebanon", "Saint Lucia",
179
- "Liechtenstein", "Sri Lanka", "Liberia", "Lesotho", "Lithuania", "Luxembourg",
180
- "Latvia", "Libyan Arab Jamahiriya", "Morocco", "Monaco", "Moldova, Republic of",
181
- "Madagascar", "Marshall Islands", "Macedonia",
182
- "Mali", "Myanmar", "Mongolia", "Macau", "Northern Mariana Islands",
183
- "Martinique", "Mauritania", "Montserrat", "Malta", "Mauritius", "Maldives",
184
- "Malawi", "Mexico", "Malaysia", "Mozambique", "Namibia", "New Caledonia",
185
- "Niger", "Norfolk Island", "Nigeria", "Nicaragua", "Netherlands", "Norway",
186
- "Nepal", "Nauru", "Niue", "New Zealand", "Oman", "Panama", "Peru", "French Polynesia",
187
- "Papua New Guinea", "Philippines", "Pakistan", "Poland", "Saint Pierre and Miquelon",
188
- "Pitcairn Islands", "Puerto Rico", "Palestinian Territory",
189
- "Portugal", "Palau", "Paraguay", "Qatar", "Reunion", "Romania",
190
- "Russian Federation", "Rwanda", "Saudi Arabia", "Solomon Islands",
191
- "Seychelles", "Sudan", "Sweden", "Singapore", "Saint Helena", "Slovenia",
192
- "Svalbard and Jan Mayen", "Slovakia", "Sierra Leone", "San Marino", "Senegal",
193
- "Somalia", "Suriname", "Sao Tome and Principe", "El Salvador", "Syrian Arab Republic",
194
- "Swaziland", "Turks and Caicos Islands", "Chad", "French Southern Territories",
195
- "Togo", "Thailand", "Tajikistan", "Tokelau", "Turkmenistan",
196
- "Tunisia", "Tonga", "Timor-Leste", "Turkey", "Trinidad and Tobago", "Tuvalu",
197
- "Taiwan", "Tanzania, United Republic of", "Ukraine",
198
- "Uganda", "United States Minor Outlying Islands", "United States", "Uruguay",
199
- "Uzbekistan", "Holy See (Vatican City State)", "Saint Vincent and the Grenadines",
200
- "Venezuela", "Virgin Islands, British", "Virgin Islands, U.S.",
201
- "Vietnam", "Vanuatu", "Wallis and Futuna", "Samoa", "Yemen", "Mayotte",
202
- "Serbia", "South Africa", "Zambia", "Montenegro", "Zimbabwe",
203
- "Anonymous Proxy","Satellite Provider","Other",
204
- "Aland Islands","Guernsey","Isle of Man","Jersey","Saint Barthelemy","Saint Martin"
205
- );
206
- }
207
-
208
- function cpd_geoip_load_shared_mem ($file) {
209
-
210
- $fp = fopen($file, "rb");
211
- if (!$fp) {
212
- print "error opening $file: $php_errormsg\n";
213
- exit;
214
- }
215
- $s_array = fstat($fp);
216
- $size = $s_array['size'];
217
- if ($shmid = @shmop_open (GEOIP_SHM_KEY, "w", 0, 0)) {
218
- shmop_delete ($shmid);
219
- shmop_close ($shmid);
220
- }
221
- $shmid = shmop_open (GEOIP_SHM_KEY, "c", 0644, $size);
222
- shmop_write ($shmid, fread($fp, $size), 0);
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) {
230
- $offset = @shmop_size ($gi->shmid) - 3;
231
- for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
232
- $delim = @shmop_read ($gi->shmid, $offset, 3);
233
- $offset += 3;
234
- if ($delim == (chr(255).chr(255).chr(255))) {
235
- $gi->databaseType = ord(@shmop_read ($gi->shmid, $offset, 1));
236
- $offset++;
237
-
238
- if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
239
- $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
240
- } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
241
- $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
242
- } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)||
243
- ($gi->databaseType == GEOIP_CITY_EDITION_REV1)
244
- || ($gi->databaseType == GEOIP_ORG_EDITION)
245
- || ($gi->databaseType == GEOIP_ISP_EDITION)
246
- || ($gi->databaseType == GEOIP_ASNUM_EDITION)){
247
- $gi->databaseSegments = 0;
248
- $buf = @shmop_read ($gi->shmid, $offset, SEGMENT_RECORD_LENGTH);
249
- for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
250
- $gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
251
- }
252
- if (($gi->databaseType == GEOIP_ORG_EDITION)||
253
- ($gi->databaseType == GEOIP_ISP_EDITION)) {
254
- $gi->record_length = ORG_RECORD_LENGTH;
255
- }
256
- }
257
- break;
258
- } else {
259
- $offset -= 4;
260
- }
261
- }
262
- if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
263
- ($gi->databaseType == GEOIP_PROXY_EDITION)||
264
- ($gi->databaseType == GEOIP_NETSPEED_EDITION)){
265
- $gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
266
- }
267
- } else {
268
- $filepos = ftell($gi->filehandle);
269
- fseek($gi->filehandle, -3, SEEK_END);
270
- for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
271
- $delim = fread($gi->filehandle,3);
272
- if ($delim == (chr(255).chr(255).chr(255))){
273
- $gi->databaseType = ord(fread($gi->filehandle,1));
274
- if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
275
- $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
276
- }
277
- else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
278
- $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
279
- } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0) ||
280
- ($gi->databaseType == GEOIP_CITY_EDITION_REV1) ||
281
- ($gi->databaseType == GEOIP_ORG_EDITION) ||
282
- ($gi->databaseType == GEOIP_ISP_EDITION) ||
283
- ($gi->databaseType == GEOIP_ASNUM_EDITION)){
284
- $gi->databaseSegments = 0;
285
- $buf = fread($gi->filehandle,SEGMENT_RECORD_LENGTH);
286
- for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
287
- $gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
288
- }
289
- if ($gi->databaseType == GEOIP_ORG_EDITION ||
290
- $gi->databaseType == GEOIP_ISP_EDITION) {
291
- $gi->record_length = ORG_RECORD_LENGTH;
292
- }
293
- }
294
- break;
295
- } else {
296
- fseek($gi->filehandle, -4, SEEK_CUR);
297
- }
298
- }
299
- if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
300
- ($gi->databaseType == GEOIP_PROXY_EDITION)||
301
- ($gi->databaseType == GEOIP_NETSPEED_EDITION)){
302
- $gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
303
- }
304
- fseek($gi->filehandle,$filepos,SEEK_SET);
305
- }
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);
314
- } else {
315
- $gi->filehandle = fopen($filename,"rb") or die( "Can not open $filename\n" );
316
- if ($gi->flags & GEOIP_MEMORY_CACHE) {
317
- $s_array = fstat($gi->filehandle);
318
- $gi->memory_buffer = fread($gi->filehandle, $s_array['size']);
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
- }
330
-
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
- }
374
- }
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
- }
387
- }
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) {
395
- $buf = substr($gi->memory_buffer,
396
- 2 * $gi->record_length * $offset,
397
- 2 * $gi->record_length);
398
- } elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
399
- $buf = @shmop_read ($gi->shmid,
400
- 2 * $gi->record_length * $offset,
401
- 2 * $gi->record_length );
402
- } else {
403
- fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
404
- or die("fseek failed");
405
- $buf = fread($gi->filehandle, 2 * $gi->record_length);
406
- }
407
- $x = array(0,0);
408
- for ($i = 0; $i < 2; ++$i) {
409
- for ($j = 0; $j < $gi->record_length; ++$j) {
410
- $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
411
- }
412
- }
413
- if ($ipnum & (1 << $depth)) {
414
- if ($x[1] >= $gi->databaseSegments) {
415
- return $x[1];
416
- }
417
- $offset = $x[1];
418
- } else {
419
- if ($x[0] >= $gi->databaseSegments) {
420
- return $x[0];
421
- }
422
- $offset = $x[0];
423
- }
424
- }
425
- trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
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
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
geoip/geoip.php DELETED
@@ -1,124 +0,0 @@
1
- <?php
2
- /**
3
- * Filename: geoip.php
4
- * Count Per Day - GeoIP Addon
5
- */
6
-
7
- /**
8
- */
9
- if (!class_exists('GeoIpCpD'))
10
- include_once('geoip.inc');
11
-
12
- class CpdGeoIp
13
- {
14
-
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
80
- */
81
- function updateGeoIpFile()
82
- {
83
- global $cpd_path;
84
-
85
- // set directory mode
86
- @chmod($cpd_path.'/geoip', 0777);
87
-
88
- // function checks
89
- if ( !ini_get('allow_url_fopen') )
90
- return 'Sorry, <code>allow_url_fopen</code> is disabled!';
91
-
92
- if ( !function_exists('gzopen') )
93
- return __('Sorry, necessary functions (zlib) not installed or enabled in php.ini.', 'cpd');
94
-
95
- $gzfile = 'http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz';
96
- $file = $cpd_path.'/geoip/GeoIP.dat';
97
-
98
- // get remote file
99
- $h = gzopen($gzfile, 'rb');
100
- $content = gzread($h, 1500000);
101
- fclose($h);
102
-
103
- // delete local file
104
- if (is_file($file))
105
- unlink($file);
106
-
107
- // file deleted?
108
- $del = (is_file($file)) ? 0 : 1;
109
-
110
- // write new locale file
111
- $h = fopen($file, 'wb');
112
- fwrite($h, $content);
113
- fclose($h);
114
-
115
- @chmod($file, 0777);
116
- if (is_file($file) && $del)
117
- return __('New GeoIP database installed.', 'cpd');
118
- else
119
- return __('Sorry, an error occurred. Try again or check the access rights of directory "geoip" is 777.', 'cpd');
120
- }
121
-
122
-
123
- }
124
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
img/cpd_blau.png DELETED
Binary file
img/cpd_calendar.png DELETED
Binary file
img/cpd_clients.png DELETED
Binary file
img/cpd_flags.png DELETED
Binary file
img/cpd_menu.gif DELETED
Binary file
img/cpd_pen.png DELETED
Binary file
img/cpd_rot.png DELETED
Binary file
img/cpd_sprites.png DELETED
Binary file
img/cpd_trans.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,284 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "X-Poedit-Language: German\n"
13
+ "X-Poedit-Country: GERMANY\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ ": "
18
+
19
+ #: counter-options.php:29
20
+ msgid "Options updated"
21
+ msgstr "Налады абноўленыя"
22
+
23
+ #: counter-options.php:35
24
+ #, php-format
25
+ msgid "Database cleaned. %s rows deleted."
26
+ msgstr "База дадзеных ачышчана. %s радкоў выдалена."
27
+
28
+ #: counter-options.php:45
29
+ #: counter-options.php:200
30
+ msgid "UNINSTALL Count per Day"
31
+ msgstr "Колькасць дэінсталяцый за дзень. "
32
+
33
+ #: counter-options.php:52
34
+ #: counter-options.php:54
35
+ #, php-format
36
+ msgid "Table %s deleted"
37
+ msgstr "Табліца %s выдалена"
38
+
39
+ #: counter-options.php:56
40
+ msgid "Options deleted"
41
+ msgstr "Налады выдаленыя"
42
+
43
+ #: counter-options.php:73
44
+ #: counter-options.php:184
45
+ msgid "Uninstall"
46
+ msgstr "Дэінсталяцыя"
47
+
48
+ #: counter-options.php:74
49
+ msgid "Click here"
50
+ msgstr "Націсніце сюды"
51
+
52
+ #: counter-options.php:74
53
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
54
+ msgstr "скончыць дэінсталяцыю і дэактываваць \"Колькасць па днях\". "
55
+
56
+ #: counter-options.php:88
57
+ msgid "Options"
58
+ msgstr "Налады"
59
+
60
+ #: counter-options.php:93
61
+ msgid "Online time"
62
+ msgstr "Час онлайн"
63
+
64
+ #: counter-options.php:94
65
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
66
+ msgstr "Секунд для для падліку онлайн. Выкарыстоўваецца для \"Карыстачоў онлайн \" на староны \"Панэль інструментаў\"."
67
+
68
+ #: counter-options.php:97
69
+ msgid "Loged on Users"
70
+ msgstr "Увайшоўшых карыстачоў"
71
+
72
+ #: counter-options.php:98
73
+ msgid "count too"
74
+ msgstr "лік таксама"
75
+
76
+ #: counter-options.php:101
77
+ msgid "Auto counter"
78
+ msgstr "Аўтападлічванне"
79
+
80
+ #: counter-options.php:102
81
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
82
+ msgstr "Лічыльнікі аўтаматычна ў пасты і старонкі, ніякіх змен у шаблон не патрабуецца. "
83
+
84
+ #: counter-options.php:105
85
+ msgid "Bots to ignore"
86
+ msgstr "Ботаў ігнаравана"
87
+
88
+ #: counter-options.php:141
89
+ msgid "Update options"
90
+ msgstr "Налады абнаўлення"
91
+
92
+ #: counter-options.php:149
93
+ #: counter-options.php:158
94
+ msgid "Clean the database"
95
+ msgstr "Чыстка базы дадзеных"
96
+
97
+ #: counter-options.php:152
98
+ 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."
99
+ msgstr "Вы можаце пачысціць лічыльнік табліц праз\"Спам \". <br /> Калі вы дададзіце новых ботаў паверх \"Спама \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць візіты ботаў."
100
+
101
+ #: counter-options.php:187
102
+ msgid "Since WP 2.7 you can delete the plugin directly after deactivation on the plugins page."
103
+ msgstr "З WP 2.7 вы можаце выдаліць плагін непасрэдна пасля дэактывацыі плагіна на староныц плагінаў."
104
+
105
+ #: counter-options.php:188
106
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
107
+ msgstr "Калі \"Колькасць па днях\"актывавана, табліцы ў базах дадзеных будуць прэзерваваныя :)."
108
+
109
+ #: counter-options.php:189
110
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
111
+ msgstr "Тут вы можаце выдаліць табліцы і дэактываваць \"Лік па днях\"."
112
+
113
+ #: counter-options.php:192
114
+ msgid "WARNING"
115
+ msgstr "УВАГА"
116
+
117
+ #: counter-options.php:193
118
+ msgid "These tables (with ALL counter data) will be deleted."
119
+ msgstr "Гэтыя табліцы (з усімі дадзенымі лічыльнікаў), будць выдаленыя."
120
+
121
+ #: counter-options.php:195
122
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
123
+ msgstr "Калі \"Лічыльнік па днях \" рэ-інсталяваны,лічыльнік пачынаецца з 0."
124
+
125
+ #: counter-options.php:199
126
+ msgid "Yes"
127
+ msgstr "Так"
128
+
129
+ #: counter-options.php:200
130
+ msgid "You are sure to disable Count per Day and delete all data?"
131
+ msgstr "Вы ўпэўніліся, што адключылі падлік па днях і выдалілі ўсе дадзеныя?"
132
+
133
+ #: counter.php:951
134
+ msgid "Statistics"
135
+ msgstr "Статыстыка"
136
+
137
+ #: counter.php:253
138
+ #: counter.php:932
139
+ msgid "Total visitors"
140
+ msgstr "Прачытана ўсімі"
141
+
142
+ #: counter.php:254
143
+ msgid "Visitors currently online"
144
+ msgstr "Наведвальнікаў зараз онлайн"
145
+
146
+ #: counter.php:255
147
+ msgid "Visitors today"
148
+ msgstr "Чытачоў сёння"
149
+
150
+ #: counter.php:256
151
+ msgid "Visitors yesterday"
152
+ msgstr "Чытачоў учора"
153
+
154
+ #: counter.php:257
155
+ msgid "Visitors last week"
156
+ msgstr "Чытачоў на мінулай нядзелі"
157
+
158
+ #: counter.php:259
159
+ msgid "Counter starts on"
160
+ msgstr "Падлік пачаць"
161
+
162
+ #: counter.php:258
163
+ #: counter.php:933
164
+ msgid "Visitors per day"
165
+ msgstr "Чытачоў за дзень"
166
+
167
+ #: counter.php:934
168
+ msgid "Visitors per month"
169
+ msgstr "Чытачоў за месяц"
170
+
171
+ #: counter-options.php:112
172
+ #: counter.php:935
173
+ msgid "Visitors per post"
174
+ msgstr "Чытачоў на пост"
175
+
176
+ #: counter-options.php:41
177
+ msgid "Counter reseted."
178
+ msgstr ""
179
+
180
+ #: counter-options.php:109
181
+ msgid "Dashboard"
182
+ msgstr ""
183
+
184
+ #: counter-options.php:113
185
+ #: counter-options.php:117
186
+ msgid "How many posts do you want to see on dashboard page?"
187
+ msgstr ""
188
+
189
+ #: counter-options.php:116
190
+ msgid "Latest Counts - Posts"
191
+ msgstr ""
192
+
193
+ #: counter-options.php:120
194
+ msgid "Latest Counts - Days"
195
+ msgstr ""
196
+
197
+ #: counter-options.php:121
198
+ #: counter-options.php:125
199
+ msgid "How many days do you want look back?"
200
+ msgstr ""
201
+
202
+ #: counter-options.php:124
203
+ msgid "Chart - Days"
204
+ msgstr ""
205
+
206
+ #: counter-options.php:128
207
+ msgid "Chart - Height"
208
+ msgstr ""
209
+
210
+ #: counter-options.php:129
211
+ msgid "Height of the biggest bar"
212
+ msgstr ""
213
+
214
+ #: counter-options.php:132
215
+ msgid "Edit Posts"
216
+ msgstr ""
217
+
218
+ #: counter-options.php:132
219
+ msgid "Edit Pages"
220
+ msgstr ""
221
+
222
+ #: counter-options.php:135
223
+ msgid "Show in lists"
224
+ msgstr ""
225
+
226
+ #: counter-options.php:136
227
+ msgid "Show \"Reads per Post\" in a new column in post management views."
228
+ msgstr ""
229
+
230
+ #: counter-options.php:166
231
+ #: counter-options.php:175
232
+ msgid "Reset the counter"
233
+ msgstr ""
234
+
235
+ #: counter-options.php:169
236
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
237
+ msgstr ""
238
+
239
+ #: counter.php:329
240
+ msgid "no reads at this time"
241
+ msgstr ""
242
+
243
+ #: counter.php:348
244
+ msgid "days"
245
+ msgstr ""
246
+
247
+ #: counter.php:532
248
+ #, php-format
249
+ msgid "The %s most visited posts in last %s days:"
250
+ msgstr ""
251
+
252
+ #: counter.php:622
253
+ msgid "Settings"
254
+ msgstr ""
255
+
256
+ #: counter.php:648
257
+ msgid "Reads at all"
258
+ msgstr ""
259
+
260
+ #: counter.php:650
261
+ msgid "Reads per day"
262
+ msgstr ""
263
+
264
+ #: counter.php:714
265
+ #: counter.php:714
266
+ msgid "Reads"
267
+ msgstr ""
268
+
269
+ #: counter.php:843
270
+ msgid "This post"
271
+ msgstr ""
272
+
273
+ #: counter.php:887
274
+ msgid "Label"
275
+ msgstr ""
276
+
277
+ #: counter.php:887
278
+ msgid "empty = name above"
279
+ msgstr ""
280
+
281
+ #: counter.php:936
282
+ msgid "Latest Counts"
283
+ msgstr ""
284
+
locale/cpd-da_DK.mo DELETED
Binary file
locale/cpd-da_DK.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: 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;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:49
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Indstillingerne er blevet gemt"
26
-
27
- #: counter-options.php:60
28
- #, php-format
29
- #@ cpd
30
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
- msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
32
-
33
- #: counter-options.php:65
34
- #@ cpd
35
- msgid "update next"
36
- msgstr "opdatér næste"
37
-
38
- #: counter-options.php:102
39
- #, php-format
40
- #@ cpd
41
- msgid "Mass Bots cleaned. %s counts deleted."
42
- msgstr "Massebots renset. %s rækker slettet."
43
-
44
- #: counter-options.php:112
45
- #, php-format
46
- #@ cpd
47
- msgid "Database cleaned. %s rows deleted."
48
- msgstr "Databasen renset. %s rækker slettet."
49
-
50
- #: counter-options.php:122
51
- #@ cpd
52
- msgid "Counter reseted."
53
- msgstr "Tæller nulstillet."
54
-
55
- #: counter-options.php:127
56
- #: counter-options.php:810
57
- #@ cpd
58
- msgid "UNINSTALL Count per Day"
59
- msgstr "AFINSTALLÉR Count per Day"
60
-
61
- #: counter-options.php:132
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #, php-format
65
- #@ cpd
66
- msgid "Table %s deleted"
67
- msgstr "Tabellen %s blev slettet"
68
-
69
- #: counter-options.php:135
70
- #@ cpd
71
- msgid "Options deleted"
72
- msgstr "Indstillinger slettet"
73
-
74
- #: counter-options.php:316
75
- #: counter-options.php:796
76
- #@ cpd
77
- msgid "Uninstall"
78
- msgstr "Afinstallér"
79
-
80
- #: counter-options.php:317
81
- #@ cpd
82
- msgid "Click here"
83
- msgstr "Klik her"
84
-
85
- #: counter-options.php:317
86
- #@ cpd
87
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
- msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
89
-
90
- #: counter-options.php:355
91
- #@ cpd
92
- msgid "Online time"
93
- msgstr "Tid online"
94
-
95
- #: counter-options.php:356
96
- #@ cpd
97
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
- msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
99
-
100
- #: counter-options.php:359
101
- #@ cpd
102
- msgid "Logged on Users"
103
- msgstr "Indloggede brugere"
104
-
105
- #: counter-options.php:361
106
- #@ cpd
107
- msgid "count too"
108
- msgstr "tæl også"
109
-
110
- #: counter-options.php:362
111
- #@ cpd
112
- msgid "until User Level"
113
- msgstr "til og med brugerniveau"
114
-
115
- #: counter-options.php:373
116
- #@ cpd
117
- msgid "Auto counter"
118
- msgstr "Auto-tæller"
119
-
120
- #: counter-options.php:374
121
- #@ cpd
122
- msgid "Counts automatically single-posts and pages, no changes on template needed."
123
- msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
124
-
125
- #: counter-options.php:377
126
- #@ cpd
127
- msgid "Bots to ignore"
128
- msgstr "Ignorér følgende bots"
129
-
130
- #: counter-options.php:381
131
- #@ cpd
132
- msgid "Anonymous IP"
133
- msgstr "Anonymt IP-nummer"
134
-
135
- #: counter-options.php:385
136
- #@ cpd
137
- msgid "Cache"
138
- msgstr "Cache"
139
-
140
- #: counter-options.php:386
141
- #@ cpd
142
- msgid "I use a cache plugin. Count these visits with ajax."
143
- msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
144
-
145
- #: counter-options.php:561
146
- #@ cpd
147
- msgid "Update options"
148
- msgstr "Opdatér indstillinger"
149
-
150
- #: counter-options.php:403
151
- #@ default
152
- msgid "Dashboard"
153
- msgstr "Kontrolpanel"
154
-
155
- #: counter-core.php:727
156
- #: counter-options.php:438
157
- #@ cpd
158
- msgid "Visitors per post"
159
- msgstr "Besøgende per indlæg"
160
-
161
- #: counter-options.php:439
162
- #: counter-options.php:443
163
- #@ cpd
164
- msgid "How many posts do you want to see on dashboard page?"
165
- msgstr "Hvor mange indlæg vil du se på kontrolpanel"
166
-
167
- #: counter-options.php:442
168
- #@ cpd
169
- msgid "Latest Counts - Posts"
170
- msgstr "Seneste læste - Indlæg"
171
-
172
- #: counter-options.php:446
173
- #@ cpd
174
- msgid "Latest Counts - Days"
175
- msgstr "Seneste læste - Dage"
176
-
177
- #: counter-options.php:447
178
- #: counter-options.php:451
179
- #: counter-options.php:473
180
- #@ cpd
181
- msgid "How many days do you want look back?"
182
- msgstr "Hvor mange dage vil du se tilbage?"
183
-
184
- #: counter-options.php:450
185
- #@ cpd
186
- msgid "Chart - Days"
187
- msgstr "Diagram - Dage"
188
-
189
- #: counter-options.php:454
190
- #@ cpd
191
- msgid "Chart - Height"
192
- msgstr "Diagram - Højde"
193
-
194
- #: counter-options.php:455
195
- #@ cpd
196
- msgid "Height of the biggest bar"
197
- msgstr "Højde på den største søjle"
198
-
199
- #: counter-options.php:459
200
- #@ cpd
201
- msgid "Countries"
202
- msgstr "Lande"
203
-
204
- #: counter-options.php:460
205
- #@ cpd
206
- msgid "How many countries do you want to see on dashboard page?"
207
- msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
208
-
209
- #: counter-core.php:733
210
- #: counter-options.php:464
211
- #@ cpd
212
- msgid "Browsers"
213
- msgstr "Browsere"
214
-
215
- #: counter-options.php:465
216
- #@ cpd
217
- msgid "Substring of the user agent, separated by comma"
218
- msgstr "Delstrenge, der identificerer en browser, kommasepareret"
219
-
220
- #: counter-options.php:488
221
- #@ cpd
222
- msgid "Show in lists"
223
- msgstr "Vis som liste"
224
-
225
- #: counter-options.php:489
226
- #@ cpd
227
- msgid "Show \"Reads per Post\" in a new column in post management views."
228
- msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
229
-
230
- #: counter-options.php:497
231
- #@ cpd
232
- msgid "Start Values"
233
- msgstr "Startværdier"
234
-
235
- #: counter-options.php:501
236
- #@ cpd
237
- msgid "Here you can change the date of first count and add a start count."
238
- msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
239
-
240
- #: counter-options.php:505
241
- #@ cpd
242
- msgid "Start date"
243
- msgstr "Startdato"
244
-
245
- #: counter-options.php:506
246
- #@ cpd
247
- msgid "Your old Counter starts at?"
248
- msgstr "Hvornår starter din gamle tæller?"
249
-
250
- #: counter-options.php:509
251
- #: counter-options.php:513
252
- #@ cpd
253
- msgid "Start count"
254
- msgstr "Start-tæller"
255
-
256
- #: counter-options.php:510
257
- #@ cpd
258
- msgid "Add this value to \"Total visitors\"."
259
- msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
260
-
261
- #: counter-options.php:514
262
- #@ cpd
263
- msgid "Add this value to \"Total reads\"."
264
- msgstr "Tilføj denne værdi til \"Læst i alt\"."
265
-
266
- #: counter-options.php:554
267
- #@ cpd
268
- msgid "Debug mode"
269
- msgstr "Debug-modus"
270
-
271
- #: counter-options.php:556
272
- #@ cpd
273
- msgid "Show debug informations at the bottom of all pages."
274
- msgstr "Vis debug-information i bunden af alle sider."
275
-
276
- #: counter-options.php:727
277
- #@ cpd
278
- msgid "GeoIP - Countries"
279
- msgstr "GeoIP - Lande"
280
-
281
- #: counter-options.php:736
282
- #@ cpd
283
- msgid "Update old counter data"
284
- msgstr "Opdatér gamle tællerdata"
285
-
286
- #: counter-options.php:748
287
- #@ cpd
288
- msgid "Update GeoIP database"
289
- msgstr "Opdatér GeoIP-database"
290
-
291
- #: counter-options.php:743
292
- #@ cpd
293
- msgid "Download a new version of GeoIP.dat file."
294
- msgstr "Download en ny version af GeoIP.dat-filen."
295
-
296
- #: counter-options.php:753
297
- #@ cpd
298
- msgid "More informations about GeoIP"
299
- msgstr "Flere oplysninger om GeoIP"
300
-
301
- #: counter-options.php:580
302
- #: massbots.php:35
303
- #@ cpd
304
- msgid "Mass Bots"
305
- msgstr "Massebots"
306
-
307
- #: counter-options.php:584
308
- #, php-format
309
- #@ cpd
310
- msgid "Show all IPs with more than %s page views per day"
311
- msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
312
-
313
- #: counter-options.php:585
314
- #: notes.php:71
315
- #: userperspan.php:44
316
- #@ cpd
317
- msgid "show"
318
- msgstr "vis"
319
-
320
- #: counter-options.php:593
321
- #@ cpd
322
- msgid "IP"
323
- msgstr "IP"
324
-
325
- #: counter-options.php:594
326
- #: notes.php:75
327
- #@ cpd
328
- #@ default
329
- msgid "Date"
330
- msgstr "Dato"
331
-
332
- #: counter-options.php:595
333
- #@ cpd
334
- msgid "Client"
335
- msgstr "Klient"
336
-
337
- #: counter-options.php:596
338
- #@ cpd
339
- msgid "Views"
340
- msgstr "Visninger"
341
-
342
- #: counter-options.php:611
343
- #: counter-options.php:627
344
- #, php-format
345
- #@ cpd
346
- msgid "Delete these %s counts"
347
- msgstr "Slet disse %s hits"
348
-
349
- #: counter-options.php:656
350
- #: counter-options.php:665
351
- #@ cpd
352
- msgid "Clean the database"
353
- msgstr "Rens databasen"
354
-
355
- #: counter-options.php:659
356
- #@ cpd
357
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
- msgstr "Du kan rense tællertabellen for \"spam-data\".<br />Når du tilføjer nye bots ovenfor, forbliver de gamle \"spam-data\" i databasen.<br />Her kan du køre bot-filteret igen og slette bot-besøgene."
359
-
360
- #: counter-options.php:777
361
- #: counter-options.php:787
362
- #@ cpd
363
- msgid "Reset the counter"
364
- msgstr "Nulstil tælleren"
365
-
366
- #: counter-options.php:780
367
- #@ cpd
368
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
- msgstr "Du kan nulstille tælleren ved at tømme tabellen. Alt bliver nulstillet.<br />Tag en sikkerhedskopi, hvis du har brug for de aktuelle data."
370
-
371
- #: counter-options.php:799
372
- #@ cpd
373
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
- msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
375
-
376
- #: counter-options.php:800
377
- #@ cpd
378
- msgid "Here you can delete the tables and disable \"Count per Day\"."
379
- msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
380
-
381
- #: counter-options.php:803
382
- #@ cpd
383
- msgid "WARNING"
384
- msgstr "ADVARSEL"
385
-
386
- #: counter-options.php:804
387
- #@ cpd
388
- msgid "These tables (with ALL counter data) will be deleted."
389
- msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
390
-
391
- #: counter-options.php:806
392
- #@ cpd
393
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
- msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
395
-
396
- #: counter-options.php:786
397
- #: counter-options.php:809
398
- #@ cpd
399
- msgid "Yes"
400
- msgstr "Ja"
401
-
402
- #: counter-options.php:810
403
- #@ cpd
404
- msgid "You are sure to disable Count per Day and delete all data?"
405
- msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
406
-
407
- #: counter-options.php:714
408
- #@ cpd
409
- msgid "Support"
410
- msgstr "Support"
411
-
412
- #: counter-core.php:689
413
- #, php-format
414
- #@ cpd
415
- msgid "Time for Count per Day: <code>%s</code>."
416
- msgstr "Tidspunkt for Count per Day: <code>%s</code>."
417
-
418
- #: counter-core.php:690
419
- #@ cpd
420
- msgid "Bug? Problem? Question? Hint? Praise?"
421
- msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
422
-
423
- #: counter-core.php:691
424
- #, php-format
425
- #@ cpd
426
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
- msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
428
-
429
- #: counter.php:155
430
- #: counter.php:1197
431
- #@ cpd
432
- msgid "Total reads"
433
- msgstr "Læsninger i alt"
434
-
435
- #: counter.php:156
436
- #: counter.php:1198
437
- #@ cpd
438
- msgid "Reads today"
439
- msgstr "Læsninger i dag"
440
-
441
- #: counter.php:157
442
- #: counter.php:1199
443
- #@ cpd
444
- msgid "Reads yesterday"
445
- msgstr "Læsninger i går"
446
-
447
- #: counter-core.php:723
448
- #: counter.php:160
449
- #: counter.php:1010
450
- #: counter.php:1202
451
- #@ cpd
452
- msgid "Total visitors"
453
- msgstr "Antal besøgende i alt"
454
-
455
- #: counter.php:161
456
- #: counter.php:1208
457
- #@ cpd
458
- msgid "Visitors currently online"
459
- msgstr "Besøgende online lige nu"
460
-
461
- #: counter.php:162
462
- #: counter.php:1203
463
- #@ cpd
464
- msgid "Visitors today"
465
- msgstr "Besøgende i dag"
466
-
467
- #: counter.php:163
468
- #: counter.php:1204
469
- #@ cpd
470
- msgid "Visitors yesterday"
471
- msgstr "Besøgende i går"
472
-
473
- #: counter.php:164
474
- #: counter.php:1205
475
- #@ cpd
476
- msgid "Visitors last week"
477
- msgstr "Besøgende sidste weekend"
478
-
479
- #: counter-core.php:729
480
- #: counter.php:166
481
- #: counter.php:263
482
- #: counter.php:1012
483
- #: counter.php:1207
484
- #: userperspan.php:34
485
- #@ cpd
486
- msgid "Visitors per day"
487
- msgstr "Besøgende per dag"
488
-
489
- #: counter.php:167
490
- #: counter.php:825
491
- #: counter.php:1209
492
- #@ cpd
493
- msgid "Counter starts on"
494
- msgstr "Tæller starter på"
495
-
496
- #: counter.php:788
497
- #: notes.php:42
498
- #: notes.php:76
499
- #@ cpd
500
- msgid "Notes"
501
- msgstr "Noter"
502
-
503
- #: counter.php:672
504
- #, php-format
505
- #@ cpd
506
- msgid "The %s most visited posts in last %s days:"
507
- msgstr "De %s mest sete indlæg i de sidste %s dage:"
508
-
509
- #: counter.php:786
510
- #@ default
511
- msgid "Show"
512
- msgstr "Vis"
513
-
514
- #: counter.php:821
515
- #@ cpd
516
- msgid "Other"
517
- msgstr "Andre"
518
-
519
- #: counter.php:976
520
- #@ default
521
- msgid "Edit Post"
522
- msgstr "Redigér indlæg"
523
-
524
- #: counter.php:991
525
- #: massbots.php:52
526
- #: userperspan.php:63
527
- #@ default
528
- msgid "Front page displays"
529
- msgstr "Visninger af forsiden"
530
-
531
- #: counter-core.php:575
532
- #: counter-options.php:341
533
- #: counter-options.php:565
534
- #@ default
535
- msgid "Settings"
536
- msgstr "Indstillinger"
537
-
538
- # tjekkes
539
- #: counter-core.php:639
540
- #: counter-options.php:392
541
- #: counter.php:159
542
- #: counter.php:875
543
- #@ cpd
544
- msgid "Reads"
545
- msgstr "Læsninger"
546
-
547
- #: counter.php:1196
548
- #@ cpd
549
- msgid "This post"
550
- msgstr "Dette indlæg"
551
-
552
- #: counter.php:262
553
- #@ cpd
554
- msgid "Reads per day"
555
- msgstr "Læsninger per dag"
556
-
557
- #: counter-core.php:725
558
- #: counter.php:1206
559
- #@ cpd
560
- msgid "Visitors per month"
561
- msgstr "Besøgende per måned"
562
-
563
- #: counter-core.php:728
564
- #@ cpd
565
- msgid "Latest Counts"
566
- msgstr "Seneste læste"
567
-
568
- #: counter-core.php:730
569
- #@ default
570
- msgid "Plugin"
571
- msgstr "Plugin"
572
-
573
- #: counter-core.php:738
574
- #@ cpd
575
- msgid "Reads per Country"
576
- msgstr "Læsninger per land"
577
-
578
- #: counter-core.php:739
579
- #@ cpd
580
- msgid "Visitors per Country"
581
- msgstr "Besøgende per land"
582
-
583
- #: counter-core.php:754
584
- #: counter.php:1124
585
- #@ cpd
586
- msgid "Statistics"
587
- msgstr "Statistik"
588
-
589
- #: counter.php:353
590
- #: counter.php:1041
591
- #@ cpd
592
- msgid "Map"
593
- msgstr "Kort"
594
-
595
- #: notes.php:77
596
- #@ default
597
- msgid "Action"
598
- msgstr "Handling"
599
-
600
- #: notes.php:82
601
- #@ cpd
602
- msgid "add"
603
- msgstr "tilføj"
604
-
605
- #: notes.php:98
606
- #@ cpd
607
- msgid "save"
608
- msgstr "gem"
609
-
610
- #: notes.php:99
611
- #@ cpd
612
- msgid "delete"
613
- msgstr "slet"
614
-
615
- #: notes.php:110
616
- #@ cpd
617
- msgid "edit"
618
- msgstr "redigér"
619
-
620
- #: userperspan.php:38
621
- #@ cpd
622
- msgid "Start"
623
- msgstr "Start"
624
-
625
- #: userperspan.php:40
626
- #@ cpd
627
- msgid "End"
628
- msgstr "Slut"
629
-
630
- #: userperspan.php:42
631
- #@ cpd
632
- msgid "PostID"
633
- msgstr "Indlægs-id"
634
-
635
- #: userperspan.php:50
636
- #@ cpd
637
- msgid "no data found"
638
- msgstr "ingen data fundet"
639
-
640
- #: geoip/geoip.php:93
641
- #@ cpd
642
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
- msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
644
-
645
- #: geoip/geoip.php:117
646
- #@ cpd
647
- msgid "New GeoIP database installed."
648
- msgstr "Ny GeoIP-database installeret."
649
-
650
- #: geoip/geoip.php:119
651
- #@ cpd
652
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
- msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
654
-
655
- #: counter-options.php:730
656
- #@ cpd
657
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
- msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
659
-
660
- #: counter-options.php:351
661
- #@ cpd
662
- msgid "Counter"
663
- msgstr "Tæller"
664
-
665
- #: counter-options.php:389
666
- #@ cpd
667
- msgid "Clients and referrers"
668
- msgstr "Klienter og henvisere"
669
-
670
- #: counter-options.php:392
671
- #@ cpd
672
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
- msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
674
-
675
- #: counter-options.php:476
676
- #@ cpd
677
- msgid "Local URLs"
678
- msgstr "Lokale adresser"
679
-
680
- #: counter-options.php:477
681
- #@ cpd
682
- msgid "Show local referrers too."
683
- msgstr "Vis også lokale henvisninger"
684
-
685
- #: counter-options.php:485
686
- #@ default
687
- msgid "Posts"
688
- msgstr "Indlæg"
689
-
690
- #: counter-options.php:485
691
- #@ default
692
- msgid "Pages"
693
- msgstr "Sider"
694
-
695
- #: counter.php:158
696
- #: counter.php:1200
697
- #@ cpd
698
- msgid "Reads last week"
699
- msgstr "Læsninger i sidste uge"
700
-
701
- #: counter.php:985
702
- #@ default
703
- msgid "Category"
704
- msgstr "Kategori"
705
-
706
- #: counter.php:988
707
- #@ default
708
- msgid "Tag"
709
- msgstr "Tag"
710
-
711
- #: counter-core.php:692
712
- #@ default
713
- msgid "License"
714
- msgstr "Licens"
715
-
716
- #: counter-core.php:726
717
- #: counter.php:1201
718
- #@ cpd
719
- msgid "Reads per month"
720
- msgstr "Læsninger per måned"
721
-
722
- #: counter-core.php:734
723
- #@ cpd
724
- msgid "Referrer"
725
- msgstr "Henviser"
726
-
727
- #: counter.php:1220
728
- #@ default
729
- msgid "Title"
730
- msgstr "Titel"
731
-
732
- #: counter-options.php:468
733
- #@ cpd
734
- msgid "Referrers - Entries"
735
- msgstr "Henvisere - poster"
736
-
737
- #: counter-options.php:469
738
- #@ cpd
739
- msgid "How many referrers do you want to see on dashboard page?"
740
- msgstr "Hvor mange henvisere vil du se på dashboardet?"
741
-
742
- #: counter-options.php:472
743
- #@ cpd
744
- msgid "Referrers - Days"
745
- msgstr "Henvisere - Dage"
746
-
747
- #: counter.php:845
748
- #, php-format
749
- #@ cpd
750
- msgid "The %s referrers in last %s days:"
751
- msgstr "De %s henvisere i de sidste %s dage:"
752
-
753
- #: counter-core.php:724
754
- #@ cpd
755
- msgid "Visitors online"
756
- msgstr "Brugere online"
757
-
758
- #: counter-core.php:186
759
- #, php-format
760
- #@ cpd
761
- msgid "\"Count per Day\" updated to version %s."
762
- msgstr ""
763
-
764
- #: counter-core.php:917
765
- #@ cpd
766
- msgid "Backup failed! Cannot open file"
767
- msgstr ""
768
-
769
- #: counter-core.php:940
770
- #, php-format
771
- #@ cpd
772
- msgid "Backup of %s entries in progress. Every point complies %s entries."
773
- msgstr ""
774
-
775
- #: counter-core.php:1027
776
- #@ cpd
777
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
- msgstr ""
779
-
780
- #: counter-core.php:1033
781
- #, php-format
782
- #@ cpd
783
- msgid "Backup of counter table saved in %s."
784
- msgstr ""
785
-
786
- #: counter-core.php:1035
787
- #, php-format
788
- #@ cpd
789
- msgid "Backup of counter options and collection saved in %s."
790
- msgstr ""
791
-
792
- #: counter-options.php:170
793
- #@ cpd
794
- msgid "Collection in progress..."
795
- msgstr ""
796
-
797
- #: counter-options.php:240
798
- #@ cpd
799
- msgid "Get Visitors per Post..."
800
- msgstr ""
801
-
802
- #: counter-options.php:261
803
- #@ cpd
804
- msgid "Delete old data..."
805
- msgstr ""
806
-
807
- #: counter-options.php:285
808
- #, php-format
809
- #@ cpd
810
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
- msgstr ""
812
-
813
- #: counter-options.php:294
814
- #@ cpd
815
- msgid "Installation of \"Count per Day\" checked"
816
- msgstr ""
817
-
818
- #: counter-options.php:342
819
- #: counter-options.php:566
820
- #@ default
821
- msgid "Tools"
822
- msgstr ""
823
-
824
- #: counter-options.php:394
825
- #@ cpd
826
- msgid "Save URL only, no query string."
827
- msgstr ""
828
-
829
- #: counter-options.php:419
830
- #@ cpd
831
- msgid "Who can see it"
832
- msgstr ""
833
-
834
- #: counter-options.php:428
835
- #@ cpd
836
- msgid "custom"
837
- msgstr ""
838
-
839
- #: counter-options.php:430
840
- #@ cpd
841
- msgid "and higher are allowed to see the statistics page."
842
- msgstr ""
843
-
844
- #: counter-options.php:432
845
- #, php-format
846
- #@ cpd
847
- msgid "Set the %s capability %s a user need:"
848
- msgstr ""
849
-
850
- #: counter-options.php:522
851
- #@ cpd
852
- msgid "Stylesheet"
853
- msgstr ""
854
-
855
- #: counter-options.php:525
856
- #@ cpd
857
- msgid "NO Stylesheet in Frontend"
858
- msgstr ""
859
-
860
- #: counter-options.php:526
861
- #@ cpd
862
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
- msgstr ""
864
-
865
- #: counter-options.php:534
866
- #: counter-options.php:639
867
- #@ cpd
868
- msgid "Backup"
869
- msgstr ""
870
-
871
- #: counter-options.php:537
872
- #@ cpd
873
- msgid "Entries per pass"
874
- msgstr ""
875
-
876
- #: counter-options.php:540
877
- #@ cpd
878
- msgid "How many entries should be saved per pass? Default: 10000"
879
- msgstr ""
880
-
881
- #: counter-options.php:545
882
- #@ cpd
883
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
- msgstr ""
885
-
886
- #: counter-options.php:643
887
- #, php-format
888
- #@ cpd
889
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
- msgstr ""
891
-
892
- #: counter-options.php:647
893
- #@ cpd
894
- msgid "Backup the database"
895
- msgstr ""
896
-
897
- #: counter-options.php:674
898
- #: counter-options.php:706
899
- #@ cpd
900
- msgid "Collect old data"
901
- msgstr ""
902
-
903
- #: counter-options.php:679
904
- #, php-format
905
- #@ cpd
906
- msgid "Current size of your counter table %s is %s."
907
- msgstr ""
908
-
909
- #: counter-options.php:681
910
- #@ cpd
911
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
- msgstr ""
913
-
914
- #: counter-options.php:686
915
- #, php-format
916
- #@ cpd
917
- msgid "Currently your collection contains data until %s."
918
- msgstr ""
919
-
920
- #: counter-options.php:690
921
- #@ cpd
922
- msgid "Normally new data will be added to the collection."
923
- msgstr ""
924
-
925
- #: counter-options.php:696
926
- #@ cpd
927
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
- msgstr ""
929
-
930
- #: counter-options.php:697
931
- #, php-format
932
- #@ cpd
933
- msgid "All collected data until %s will deleted."
934
- msgstr ""
935
-
936
- #: counter-options.php:702
937
- #, php-format
938
- #@ cpd
939
- msgid "Keep entries of last %s full months + current month in counter table."
940
- msgstr ""
941
-
942
- #: counter-options.php:761
943
- #@ cpd
944
- msgid "ReActivation"
945
- msgstr ""
946
-
947
- #: counter-options.php:764
948
- #@ cpd
949
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
- msgstr ""
951
-
952
- #: counter-options.php:769
953
- #@ cpd
954
- msgid "ReActivate the plugin"
955
- msgstr ""
956
-
957
- #: counter.php:165
958
- #: counter.php:899
959
- #@ cpd
960
- msgid "Visitors"
961
- msgstr ""
962
-
963
- #: counter.php:168
964
- #: counter.php:169
965
- #@ cpd
966
- msgid "Most visited day"
967
- msgstr ""
968
-
969
- #: counter.php:1239
970
- #@ cpd
971
- msgid "drag and drop to sort"
972
- msgstr ""
973
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-de_DE.mo CHANGED
Binary file
locale/cpd-de_DE.po CHANGED
@@ -13,960 +13,399 @@ 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 "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
-
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:31
23
  #@ cpd
24
  msgid "Options updated"
25
  msgstr "Einstellungen aktualisiert"
26
 
27
+ #: counter-options.php:68
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:78
34
+ #: counter-options.php:271
35
  #@ cpd
36
  msgid "UNINSTALL Count per Day"
37
  msgstr "DEINSTALLIERE Count per Day"
38
 
39
+ #: counter-options.php:85
40
+ #: counter-options.php:87
 
41
  #, php-format
42
  #@ cpd
43
  msgid "Table %s deleted"
44
  msgstr "Tabelle %s gel&ouml;scht"
45
 
46
+ #: counter-options.php:89
47
  #@ cpd
48
  msgid "Options deleted"
49
  msgstr "Einstellungen gel&ouml;scht"
50
 
51
+ #: counter-options.php:106
52
+ #: counter-options.php:256
53
  #@ cpd
54
  msgid "Uninstall"
55
  msgstr "Deinstallation"
56
 
57
+ #: counter-options.php:107
58
  #@ cpd
59
  msgid "Click here"
60
  msgstr "Klick hier"
61
 
62
+ #: counter-options.php:107
63
  #@ cpd
64
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
  msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
66
 
67
+ #: counter-options.php:121
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Einstellungen"
71
+
72
+ #: counter-options.php:126
73
  #@ cpd
74
  msgid "Online time"
75
  msgstr "Onlinezeit"
76
 
77
+ #: counter-options.php:127
78
  #@ cpd
79
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
  msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
81
 
82
+ #: counter-options.php:130
83
  #@ cpd
84
+ msgid "Loged on Users"
85
  msgstr "Angemeldete Benutzer"
86
 
87
+ #: counter-options.php:131
88
  #@ cpd
89
  msgid "count too"
90
  msgstr "auch mit z&auml;hlen"
91
 
92
+ #: counter-options.php:134
93
  #@ cpd
94
  msgid "Auto counter"
95
  msgstr "Auto-Counter"
96
 
97
+ #: counter-options.php:135
98
  #@ cpd
99
  msgid "Counts automatically single-posts and pages, no changes on template needed."
100
  msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
101
 
102
+ #: counter-options.php:138
103
  #@ cpd
104
  msgid "Bots to ignore"
105
  msgstr "Spam/Suchmaschinen Bots ignorieren"
106
 
107
+ #: counter-options.php:180
108
  #@ cpd
109
  msgid "Update options"
110
  msgstr "Einstellungen aktualisieren"
111
 
112
+ #: counter-options.php:221
113
+ #: counter-options.php:230
114
  #@ cpd
115
  msgid "Clean the database"
116
  msgstr "Datenbank aufr&auml;umen"
117
 
118
+ #: counter-options.php:224
119
  #@ cpd
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 "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."
122
 
123
+ #: counter-options.php:259
124
  #@ cpd
125
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
  msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
127
 
128
+ #: counter-options.php:260
129
  #@ cpd
130
  msgid "Here you can delete the tables and disable \"Count per Day\"."
131
  msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
132
 
133
+ #: counter-options.php:263
134
  #@ cpd
135
  msgid "WARNING"
136
  msgstr "WARNUNG"
137
 
138
+ #: counter-options.php:264
139
  #@ cpd
140
  msgid "These tables (with ALL counter data) will be deleted."
141
  msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
142
 
143
+ #: counter-options.php:266
144
  #@ cpd
145
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
  msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
147
 
148
+ #: counter-options.php:270
 
149
  #@ cpd
150
  msgid "Yes"
151
  msgstr "Ja, los!"
152
 
153
+ #: counter-options.php:271
154
  #@ cpd
155
  msgid "You are sure to disable Count per Day and delete all data?"
156
  msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
157
 
158
+ #: counter.php:1004
 
159
  #@ cpd
160
  msgid "Statistics"
161
  msgstr "Statistiken"
162
 
163
+ #: counter.php:303
164
+ #: counter.php:696
165
+ #: counter.php:980
 
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Besucher gesamt"
169
 
170
+ #: counter.php:304
 
171
  #@ cpd
172
  msgid "Visitors currently online"
173
  msgstr "Besucher momentan online"
174
 
175
+ #: counter.php:305
 
176
  #@ cpd
177
  msgid "Visitors today"
178
  msgstr "Besucher heute"
179
 
180
+ #: counter.php:306
 
181
  #@ cpd
182
  msgid "Visitors yesterday"
183
  msgstr "Besucher gestern"
184
 
185
+ #: counter.php:307
 
186
  #@ cpd
187
  msgid "Visitors last week"
188
  msgstr "Besucher letzte Woche"
189
 
190
+ #: counter.php:309
 
 
191
  #@ cpd
192
  msgid "Counter starts on"
193
  msgstr "gez&auml;hlt ab"
194
 
195
+ #: counter.php:308
196
+ #: counter.php:698
 
 
 
 
197
  #@ cpd
198
  msgid "Visitors per day"
199
  msgstr "Besucher pro Tag"
200
 
201
+ #: counter.php:982
 
202
  #@ cpd
203
  msgid "Visitors per month"
204
  msgstr "Besucher pro Monat"
205
 
206
+ #: counter-options.php:145
207
+ #: counter.php:983
208
  #@ cpd
209
  msgid "Visitors per post"
210
  msgstr "Besucher pro Artikel"
211
 
212
+ #: counter-options.php:74
213
  #@ cpd
214
  msgid "Counter reseted."
215
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
216
 
217
+ #: counter-options.php:146
218
+ #: counter-options.php:150
219
  #@ cpd
220
  msgid "How many posts do you want to see on dashboard page?"
221
  msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
222
 
223
+ #: counter-options.php:149
224
  #@ cpd
225
  msgid "Latest Counts - Posts"
226
  msgstr "Aktuelle Besuche - Artikel"
227
 
228
+ #: counter-options.php:153
229
  #@ cpd
230
  msgid "Latest Counts - Days"
231
  msgstr "Aktuelle Besuche - Tage"
232
 
233
+ #: counter-options.php:154
234
+ #: counter-options.php:158
 
235
  #@ cpd
236
  msgid "How many days do you want look back?"
237
  msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
238
 
239
+ #: counter-options.php:174
240
  #@ cpd
241
  msgid "Show in lists"
242
  msgstr "In &Uuml;bersichten anzeigen"
243
 
244
+ #: counter-options.php:175
245
  #@ cpd
246
  msgid "Show \"Reads per Post\" in a new column in post management views."
247
  msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
248
 
249
+ #: counter-options.php:238
250
+ #: counter-options.php:247
251
  #@ cpd
252
  msgid "Reset the counter"
253
  msgstr "Z&auml;hler zur&uuml;cksetzen"
254
 
255
+ #: counter-options.php:241
256
  #@ cpd
257
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
258
  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!"
259
 
260
+ #: counter.php:583
261
  #, php-format
262
  #@ cpd
263
  msgid "The %s most visited posts in last %s days:"
264
  msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
265
 
266
+ #: counter.php:670
 
 
 
267
  msgid "Settings"
268
+ msgstr "Einstellungen"
269
 
270
+ #: counter.php:762
 
 
 
271
  #@ cpd
272
  msgid "Reads"
273
+ msgstr "Besucher"
274
 
275
+ #: counter.php:984
276
  #@ cpd
277
  msgid "Latest Counts"
278
  msgstr "Letzte Seitenaufrufe"
279
 
280
+ #: counter-options.php:157
281
  #@ cpd
282
  msgid "Chart - Days"
283
  msgstr "Diagramm - Tage"
284
 
285
+ #: counter-options.php:161
286
  #@ cpd
287
  msgid "Chart - Height"
288
  msgstr "Diagramm - H&ouml;he"
289
 
290
+ #: counter-options.php:162
291
  #@ cpd
292
  msgid "Height of the biggest bar"
293
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
294
 
295
+ #: counter.php:379
296
+ #@ cpd
297
+ msgid "no reads at this time"
298
+ msgstr "keine Seitenaufrufe"
299
+
300
+ #: counter.php:398
301
+ #@ cpd
302
+ msgid "days"
303
+ msgstr "Tage"
304
+
305
+ #: counter.php:891
306
  #@ cpd
307
  msgid "This post"
308
  msgstr "Diese Seite"
309
 
310
+ #: counter-options.php:142
 
311
  msgid "Dashboard"
312
  msgstr ""
313
 
314
+ #: counter-options.php:171
315
+ msgid "Edit Posts"
316
+ msgstr ""
317
+
318
+ #: counter-options.php:171
319
+ msgid "Edit Pages"
320
+ msgstr ""
321
+
322
+ #: counter.php:935
323
+ #@ cpd
324
+ msgid "Label"
325
+ msgstr "Bezeichnung"
326
+
327
+ #: counter.php:935
328
+ #@ cpd
329
+ msgid "empty = name above"
330
+ msgstr "leer = obiger Name"
331
+
332
+ #: counter.php:981
333
  #@ cpd
334
  msgid "Reads per day"
335
  msgstr "Seitenaufrufe pro Tag"
336
 
337
+ #: counter-options.php:41
338
  #, php-format
339
  #@ cpd
340
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
341
  msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
342
 
343
+ #: counter-options.php:46
344
  #@ cpd
345
  msgid "update next"
346
  msgstr "weiter aktualisieren"
347
 
348
+ #: counter-options.php:189
349
  #@ cpd
350
  msgid "GeoIP - Countries"
351
  msgstr "GeoIP - L&auml;nder"
352
 
353
+ #: counter-options.php:197
354
  #@ cpd
355
  msgid "Update old counter data"
356
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
357
 
358
+ #: counter-options.php:200
359
+ #@ cpd
360
+ msgid "You can get the country data for all entries in database bei check the IP adress again GeoIP database. This take a while!"
361
+ msgstr "Du kannst zu allen Z&auml;hlerdaten das Herkunftsland speichern. Dazu wird die IP mit der GeoIP Datenbank abgeglichen. Das kann je nach Anzahl das Daten eine ganze Weile dauern."
362
+
363
+ #: counter-options.php:206
364
  #@ cpd
365
  msgid "Update GeoIP database"
366
+ msgstr "Aktualisiere GeoIP Datanbank"
367
 
368
+ #: counter-options.php:209
369
  #@ cpd
370
  msgid "Download a new version of GeoIP.dat file."
371
  msgstr "Neue Version von GeoIP.dat herunterladen."
372
 
373
+ #: counter-options.php:213
374
  #@ cpd
375
  msgid "More informations about GeoIP"
376
  msgstr "Mehr Informationen über GeoIP"
377
 
378
+ #: counter.php:923
379
+ msgid "Title:"
380
+ msgstr ""
381
+
382
+ #: counter.php:988
383
  #@ cpd
384
  msgid "Reads per Country"
385
  msgstr "Seitenaufrufe pro Land"
386
 
387
+ #: geoip/geoip.php:99
388
  #@ cpd
389
  msgid "New GeoIP database installed."
390
  msgstr "Neue GeoIP Datenbank installiert."
391
 
392
+ #: geoip/geoip.php:101
393
  #@ cpd
394
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
395
  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."
396
 
397
+ #: geoip/geoip.php:104
398
  #@ cpd
399
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
400
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
401
 
402
+ #: counter-options.php:166
403
  #@ cpd
404
  msgid "Countries"
405
  msgstr "L&auml;nder"
406
 
407
+ #: counter-options.php:167
408
  #@ cpd
409
  msgid "How many countries do you want to see on dashboard page?"
410
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 DELETED
Binary file
locale/cpd-es_ES.po DELETED
@@ -1,972 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day en español\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: Juan Carlos del Río <jcrio@hotmail.com>\n"
8
- "Language-Team: Juan Carlos del Río <jcrio[at]hotmail[dot]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: 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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-fr_FR.mo DELETED
Binary file
locale/cpd-fr_FR.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-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: Bjork - Habbzone.fr <bjork@habbzone.fr>\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: 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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-it_IT.mo CHANGED
Binary file
locale/cpd-it_IT.po CHANGED
@@ -4,968 +4,254 @@ 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: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
- "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]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: 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
 
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: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
8
+ "Language-Team: Gianni Diurno | http://gidibao.net <gidibao@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
  "X-Poedit-Language: Italian\n"
13
  "X-Poedit-Country: ITALY\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: P:\\xampp\\htdocs\\wp\\wp-content\\plugins\\count-per-day\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
 
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: counter-options.php:29
 
20
  msgid "Options updated"
21
  msgstr "Le opzioni sono state aggiornate"
22
 
23
+ #: counter-options.php:35
 
24
  #, php-format
25
  msgid "Database cleaned. %s rows deleted."
26
  msgstr "Database svuotato. %s record cancellato."
27
 
28
+ #: counter-options.php:45
29
+ #: counter-options.php:200
 
30
  msgid "UNINSTALL Count per Day"
31
  msgstr "DISINSTALLA Count per Day"
32
 
33
+ #: counter-options.php:52
34
+ #: counter-options.php:54
 
 
35
  #, php-format
36
  msgid "Table %s deleted"
37
  msgstr "La tabella %s é stata cancellata"
38
 
39
+ #: counter-options.php:56
 
40
  msgid "Options deleted"
41
  msgstr "Le opzioni sono state cancellate"
42
 
43
+ #: counter-options.php:73
44
+ #: counter-options.php:184
 
45
  msgid "Uninstall"
46
  msgstr "Disinstalla"
47
 
48
+ #: counter-options.php:74
 
49
  msgid "Click here"
50
  msgstr "Clicca qui"
51
 
52
+ #: counter-options.php:74
 
53
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
54
  msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
55
 
56
+ #: counter-options.php:88
57
+ msgid "Options"
58
+ msgstr "Opzioni"
59
+
60
+ #: counter-options.php:93
61
  msgid "Online time"
62
  msgstr "Durata del collegamento"
63
 
64
+ #: counter-options.php:94
 
65
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
66
+ msgstr "Secondi per il counter online. In uso per \"Visitors online\" nella Bacheca."
67
 
68
+ #: counter-options.php:97
69
+ msgid "Loged on Users"
 
70
  msgstr "Utenti accreditati"
71
 
72
+ #: counter-options.php:98
 
73
  msgid "count too"
74
  msgstr "conteggia anche loro"
75
 
76
+ #: counter-options.php:101
 
77
  msgid "Auto counter"
78
  msgstr "Contatore-automatico"
79
 
80
+ #: counter-options.php:102
 
81
  msgid "Counts automatically single-posts and pages, no changes on template needed."
82
  msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
83
 
84
+ #: counter-options.php:105
 
85
  msgid "Bots to ignore"
86
  msgstr "Bots da ignorare"
87
 
88
+ #: counter-options.php:141
 
89
  msgid "Update options"
90
  msgstr "Aggiorna le opzioni"
91
 
92
+ #: counter-options.php:149
93
+ #: counter-options.php:158
 
94
  msgid "Clean the database"
95
  msgstr "Svuota il database"
96
 
97
+ #: counter-options.php:152
 
98
  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."
99
  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."
100
 
101
+ #: counter-options.php:187
102
+ msgid "Since WP 2.7 you can delete the plugin directly after deactivation on the plugins page."
103
+ msgstr "Dalla versione WP 2.7 sarà possibile cancellare direttamente il plugin una volta disattivato nella pagina dedicata."
104
+
105
+ #: counter-options.php:188
106
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
107
  msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
108
 
109
+ #: counter-options.php:189
 
110
  msgid "Here you can delete the tables and disable \"Count per Day\"."
111
  msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
112
 
113
+ #: counter-options.php:192
 
114
  msgid "WARNING"
115
  msgstr "ATTENZIONE"
116
 
117
+ #: counter-options.php:193
 
118
  msgid "These tables (with ALL counter data) will be deleted."
119
  msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
120
 
121
+ #: counter-options.php:195
 
122
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
123
  msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
124
 
125
+ #: counter-options.php:199
 
 
126
  msgid "Yes"
127
  msgstr "Sì"
128
 
129
+ #: counter-options.php:200
 
130
  msgid "You are sure to disable Count per Day and delete all data?"
131
  msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
132
 
133
+ #: counter.php:944
 
 
134
  msgid "Statistics"
135
  msgstr "Satistiche"
136
 
137
+ #: counter.php:257
138
+ #: counter.php:652
139
+ #: counter.php:925
 
 
140
  msgid "Total visitors"
141
  msgstr "Totale visitatori"
142
 
143
+ #: counter.php:258
 
 
144
  msgid "Visitors currently online"
145
  msgstr "Utenti attualmente in linea"
146
 
147
+ #: counter.php:259
 
 
148
  msgid "Visitors today"
149
  msgstr "Oggi"
150
 
151
+ #: counter.php:260
 
 
152
  msgid "Visitors yesterday"
153
  msgstr "Ieri"
154
 
155
+ #: counter.php:261
 
 
156
  msgid "Visitors last week"
157
  msgstr "La scorsa settimana"
158
 
159
+ #: counter.php:263
 
 
 
160
  msgid "Counter starts on"
161
  msgstr "Il contatore parte dal"
162
 
163
+ #: counter.php:262
164
+ #: counter.php:654
165
+ #: counter.php:926
 
 
 
 
166
  msgid "Visitors per day"
167
  msgstr "Visitatori per giorno"
168
 
169
+ #: counter.php:927
 
 
170
  msgid "Visitors per month"
171
  msgstr "Visitatori per mese"
172
 
173
+ #: counter-options.php:112
174
+ #: counter.php:928
 
175
  msgid "Visitors per post"
176
  msgstr "Visitatori per articolo"
177
 
178
+ #: counter-options.php:41
 
179
  msgid "Counter reseted."
180
  msgstr "Il contatore é stato azzerato."
181
 
182
+ #: counter-options.php:113
183
+ #: counter-options.php:117
 
184
  msgid "How many posts do you want to see on dashboard page?"
185
  msgstr "Quanti articoli desideri siano visibili nella bacheca?"
186
 
187
+ #: counter-options.php:116
 
188
  msgid "Latest Counts - Posts"
189
  msgstr "Totale corrente - Articoli"
190
 
191
+ #: counter-options.php:120
 
192
  msgid "Latest Counts - Days"
193
  msgstr "Totale corrente - pagine"
194
 
195
+ #: counter-options.php:121
196
+ #: counter-options.php:125
 
 
197
  msgid "How many days do you want look back?"
198
  msgstr "Quanti giorni desideri visionare a ritroso?"
199
 
200
+ #: counter-options.php:135
 
201
  msgid "Show in lists"
202
+ msgstr "Mostra nella lista"
203
 
204
+ #: counter-options.php:136
 
205
  msgid "Show \"Reads per Post\" in a new column in post management views."
206
+ msgstr "Mostra \"Reads per Post\" in una nuova colonna nella sezione gestione degli articoli."
207
 
208
+ #: counter-options.php:166
209
+ #: counter-options.php:175
 
210
  msgid "Reset the counter"
211
  msgstr "Azzera il contatore"
212
 
213
+ #: counter-options.php:169
 
214
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
215
  msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
216
 
217
+ #: counter.php:536
 
218
  #, php-format
219
  msgid "The %s most visited posts in last %s days:"
220
  msgstr "I %s articoli più letti negli ultimi %s giorni:"
221
 
222
+ #: counter.php:626
 
 
 
223
  msgid "Settings"
224
  msgstr "Impostazioni"
225
 
226
+ #: counter.php:718
 
 
 
 
227
  msgid "Reads"
228
  msgstr "Visitatori"
229
 
230
+ #: counter.php:929
 
231
  msgid "Latest Counts"
232
  msgstr "Totale corrente"
233
 
234
+ #: counter-options.php:124
 
235
  msgid "Chart - Days"
236
  msgstr "Diagramma - Giorni"
237
 
238
+ #: counter-options.php:128
 
239
  msgid "Chart - Height"
240
  msgstr "Diagramma - Altezza"
241
 
242
+ #: counter-options.php:129
 
243
  msgid "Height of the biggest bar"
244
  msgstr "Altezza della categoria maggiore"
245
 
246
+ #: counter.php:333
247
+ msgid "no reads at this time"
248
+ msgstr "nessun visitatore in questo momento"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
 
250
+ #: counter.php:352
251
+ msgid "days"
252
+ msgstr "giorni"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
 
254
+ #: counter.php:839
255
+ msgid "This post"
256
+ msgstr "Questo articolo"
 
 
 
 
 
 
 
257
 
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 DELETED
Binary file
locale/cpd-nl_NL.po DELETED
@@ -1,971 +0,0 @@
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"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\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;_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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-pl_PL.mo DELETED
Binary file
locale/cpd-pl_PL.po DELETED
@@ -1,972 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v2.10.1\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2010-05-17 14:04+0200\n"
7
- "Last-Translator: LeXuS <lexus@intrakardial.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: 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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-pt_BR.mo CHANGED
Binary file
locale/cpd-pt_BR.po CHANGED
@@ -4,968 +4,172 @@ msgstr ""
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
 
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: 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
  "X-Poedit-Language: Portuguese\n"
13
  "X-Poedit-Country: BRAZIL\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: P:\\xampp\\htdocs\\levelbase_tribune\\wp-content\\plugins\\count-per-day\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
 
 
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: counter-options.php:20
 
20
  msgid "Options updated"
21
  msgstr "Op&ccedil;&otilde;es atualizadas"
22
 
23
+ #: counter-options.php:25
 
24
  #, php-format
25
  msgid "Database cleaned. %s rows deleted."
26
  msgstr "Banco de dados limpo. %s linhas apagadas."
27
 
28
+ #: counter-options.php:28
29
+ #: counter-options.php:128
 
30
  msgid "UNINSTALL Count per Day"
31
  msgstr "DESINSTALAR o Count per Day"
32
 
33
+ #: counter-options.php:40
34
+ #: counter-options.php:42
 
 
35
  #, php-format
36
  msgid "Table %s deleted"
37
  msgstr "Tabela %s apagada"
38
 
39
+ #: counter-options.php:44
 
40
  msgid "Options deleted"
41
  msgstr "Op&ccedil;&otilde;es apagadas"
42
 
43
+ #: counter-options.php:60
44
+ #: counter-options.php:114
 
45
  msgid "Uninstall"
46
  msgstr "Desinstalar"
47
 
48
+ #: counter-options.php:61
 
49
  msgid "Click here"
50
  msgstr "Clique aqui"
51
 
52
+ #: counter-options.php:61
 
53
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
54
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
55
 
56
+ #: counter-options.php:68
57
+ msgid "Options"
58
+ msgstr "Op&ccedil;&otilde;es"
59
+
60
+ #: counter-options.php:73
61
  msgid "Online time"
62
  msgstr "Per&iacute;odo online"
63
 
64
+ #: counter-options.php:74
 
65
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
66
+ msgstr "Seconds for online counter. Usado no \"Visitantes online\" na p&aacute;gina do painel."
67
 
68
+ #: counter-options.php:76
69
+ msgid "Loged on Users"
 
70
  msgstr "Usu&aacute;rios logados"
71
 
72
+ #: counter-options.php:77
 
73
  msgid "count too"
74
  msgstr "contar tamb&eacute;m"
75
 
76
+ #: counter-options.php:79
 
77
  msgid "Auto counter"
78
  msgstr "Autocontador"
79
 
80
+ #: counter-options.php:80
 
81
  msgid "Counts automatically single-posts and pages, no changes on template needed."
82
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
83
 
84
+ #: counter-options.php:82
 
85
  msgid "Bots to ignore"
86
  msgstr "Bots a serem ignorados"
87
 
88
+ #: counter-options.php:88
 
89
  msgid "Update options"
90
  msgstr "Atualizar op&ccedil;&otilde;es"
91
 
92
+ #: counter-options.php:96
93
+ #: counter-options.php:105
 
94
  msgid "Clean the database"
95
  msgstr "Limpar o banco de dados"
96
 
97
+ #: counter-options.php:99
 
98
  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."
99
  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."
100
 
101
+ #: counter-options.php:116
 
102
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
103
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
104
 
105
+ #: counter-options.php:117
 
106
  msgid "Here you can delete the tables and disable \"Count per Day\"."
107
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
108
 
109
+ #: counter-options.php:120
 
110
  msgid "WARNING"
111
  msgstr "ATEN&Ccedil;&Atilde;O"
112
 
113
+ #: counter-options.php:121
 
114
  msgid "These tables (with ALL counter data) will be deleted."
115
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
116
 
117
+ #: counter-options.php:123
 
118
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
119
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
120
 
121
+ #: counter-options.php:127
 
 
122
  msgid "Yes"
123
  msgstr "Sim, quero"
124
 
125
+ #: counter-options.php:128
 
126
  msgid "You are sure to disable Count per Day and delete all data?"
127
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
128
 
129
+ #: counter.php:167
 
 
130
  msgid "Statistics"
131
  msgstr "Estat&iacute;sticas"
132
 
133
+ #: counter.php:172
134
+ #: counter.php:174
 
 
 
135
  msgid "Total visitors"
136
  msgstr "Total de visitas"
137
 
138
+ #: counter.php:175
139
+ #, fuzzy
 
140
  msgid "Visitors currently online"
141
  msgstr "Visitantes online"
142
 
143
+ #: counter.php:176
 
 
144
  msgid "Visitors today"
145
  msgstr "Visitas hoje"
146
 
147
+ #: counter.php:177
 
 
148
  msgid "Visitors yesterday"
149
  msgstr "Visitas ontem"
150
 
151
+ #: counter.php:178
 
 
152
  msgid "Visitors last week"
153
  msgstr "Visitas semana passada"
154
 
155
+ #: counter.php:179
 
 
 
156
  msgid "Counter starts on"
157
  msgstr "In&iacute;cio da contagem"
158
 
159
+ #: counter.php:180
 
 
 
 
 
 
160
  msgid "Visitors per day"
161
  msgstr "(m&eacute;dia) de visitas por dia"
162
 
163
+ #: counter.php:185
 
 
164
  msgid "Visitors per month"
165
  msgstr "Visitas por m&ecirc;s"
166
 
167
+ #: counter.php:188
 
 
168
  msgid "Visitors per post"
169
  msgstr "Visitas por post"
170
 
171
+ #~ msgid "Seconds for online counter"
172
+ #~ msgstr "Segundos desde a visita para ser considerado online"
173
+ #~ msgid "Table"
174
+ #~ msgstr "Tabelle"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
 
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 DELETED
Binary file
locale/cpd-ru_RU.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: Ilya Pshenichny\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;_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
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-sv_SE.mo DELETED
Binary file
locale/cpd-sv_SE.po DELETED
@@ -1,972 +0,0 @@
1
- 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"
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: Swedish\n"
14
- "X-Poedit-Country: SWEDEN\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter.php:155
23
- #: counter.php:1197
24
- #@ cpd
25
- msgid "Total reads"
26
- msgstr "Antal läsningar totalt"
27
-
28
- #: counter.php:156
29
- #: counter.php:1198
30
- #@ cpd
31
- msgid "Reads today"
32
- msgstr "Läsningar idag"
33
-
34
- #: counter.php:157
35
- #: counter.php:1199
36
- #@ cpd
37
- msgid "Reads yesterday"
38
- msgstr "Läsningar igår"
39
-
40
- #: counter.php:158
41
- #: counter.php:1200
42
- #@ cpd
43
- msgid "Reads last week"
44
- msgstr "Läsningar förra veckan"
45
-
46
- #: counter-core.php:639
47
- #: counter-options.php:392
48
- #: counter.php:159
49
- #: counter.php:875
50
- #@ cpd
51
- msgid "Reads"
52
- msgstr "Visningar"
53
-
54
- #: counter-core.php:723
55
- #: counter.php:160
56
- #: counter.php:1010
57
- #: counter.php:1202
58
- #@ cpd
59
- msgid "Total visitors"
60
- msgstr "Antal besökare totalt"
61
-
62
- #: counter.php:161
63
- #: counter.php:1208
64
- #@ cpd
65
- msgid "Visitors currently online"
66
- msgstr "Besökare online nu"
67
-
68
- #: counter.php:162
69
- #: counter.php:1203
70
- #@ cpd
71
- msgid "Visitors today"
72
- msgstr "Besökare idag"
73
-
74
- #: counter.php:163
75
- #: counter.php:1204
76
- #@ cpd
77
- msgid "Visitors yesterday"
78
- msgstr "Besökare igår"
79
-
80
- #: counter.php:164
81
- #: counter.php:1205
82
- #@ cpd
83
- msgid "Visitors last week"
84
- msgstr "Besökare förra veckan"
85
-
86
- #: counter-core.php:729
87
- #: counter.php:166
88
- #: counter.php:263
89
- #: counter.php:1012
90
- #: counter.php:1207
91
- #: userperspan.php:34
92
- #@ cpd
93
- msgid "Visitors per day"
94
- msgstr "Besök per dag"
95
-
96
- #: counter.php:167
97
- #: counter.php:825
98
- #: counter.php:1209
99
- #@ cpd
100
- msgid "Counter starts on"
101
- msgstr "Räknaren startar den"
102
-
103
- #: counter.php:262
104
- #@ cpd
105
- msgid "Reads per day"
106
- msgstr "Läsningar per dag"
107
-
108
- #: counter.php:788
109
- #: notes.php:42
110
- #: notes.php:76
111
- #@ cpd
112
- msgid "Notes"
113
- msgstr "Anteckningar"
114
-
115
- #: counter.php:353
116
- #: counter.php:1041
117
- #@ cpd
118
- msgid "Map"
119
- msgstr "Karta"
120
-
121
- #: counter.php:672
122
- #, php-format
123
- #@ cpd
124
- msgid "The %s most visited posts in last %s days:"
125
- msgstr "De %s mest visade inläggen de senaste %s dagarna:"
126
-
127
- #: counter.php:786
128
- #@ default
129
- msgid "Show"
130
- msgstr "Visa"
131
-
132
- #: counter.php:821
133
- #@ cpd
134
- msgid "Other"
135
- msgstr "Övriga"
136
-
137
- #: counter.php:845
138
- #, php-format
139
- #@ cpd
140
- msgid "The %s referrers in last %s days:"
141
- msgstr "De %s senaste hänvisningarna de senaste %s dagarna:"
142
-
143
- #: counter.php:976
144
- #@ default
145
- msgid "Edit Post"
146
- msgstr "Redigera inlägg"
147
-
148
- #: counter.php:985
149
- #@ default
150
- msgid "Category"
151
- msgstr "Kategori"
152
-
153
- #: counter.php:988
154
- #@ default
155
- msgid "Tag"
156
- msgstr "Tag"
157
-
158
- #: counter.php:991
159
- #: massbots.php:52
160
- #: userperspan.php:63
161
- #@ default
162
- msgid "Front page displays"
163
- msgstr "Visningar av framsidan"
164
-
165
- #: counter-core.php:575
166
- #: counter-options.php:341
167
- #: counter-options.php:565
168
- #@ default
169
- msgid "Settings"
170
- msgstr "Inställningar"
171
-
172
- #: counter-core.php:689
173
- #, php-format
174
- #@ cpd
175
- msgid "Time for Count per Day: <code>%s</code>."
176
- msgstr "Tid för Count per Day: <code>%s</code>."
177
-
178
- #: counter-core.php:690
179
- #@ cpd
180
- msgid "Bug? Problem? Question? Hint? Praise?"
181
- msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
182
-
183
- #: counter-core.php:691
184
- #, php-format
185
- #@ cpd
186
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
187
- msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
188
-
189
- #: counter-core.php:692
190
- #@ default
191
- msgid "License"
192
- msgstr "Licens"
193
-
194
- #: counter-core.php:724
195
- #@ cpd
196
- msgid "Visitors online"
197
- msgstr "Besökare online"
198
-
199
- #: counter-core.php:725
200
- #: counter.php:1206
201
- #@ cpd
202
- msgid "Visitors per month"
203
- msgstr "Besökare per månad"
204
-
205
- #: counter-core.php:726
206
- #: counter.php:1201
207
- #@ cpd
208
- msgid "Reads per month"
209
- msgstr "Läsningar per månad"
210
-
211
- #: counter-core.php:727
212
- #: counter-options.php:438
213
- #@ cpd
214
- msgid "Visitors per post"
215
- msgstr "Besökare per inlägg"
216
-
217
- #: counter-core.php:728
218
- #@ cpd
219
- msgid "Latest Counts"
220
- msgstr "Senaste besöken"
221
-
222
- #: counter-core.php:730
223
- #@ default
224
- msgid "Plugin"
225
- msgstr "Plugin"
226
-
227
- #: counter-core.php:733
228
- #: counter-options.php:464
229
- #@ cpd
230
- msgid "Browsers"
231
- msgstr "Webbläsare"
232
-
233
- #: counter-core.php:734
234
- #@ cpd
235
- msgid "Referrer"
236
- msgstr "Hänvisare"
237
-
238
- #: counter-core.php:738
239
- #@ cpd
240
- msgid "Reads per Country"
241
- msgstr "Visningar per land"
242
-
243
- #: counter-core.php:739
244
- #@ cpd
245
- msgid "Visitors per Country"
246
- msgstr "Besökare per land"
247
-
248
- #: counter-core.php:754
249
- #: counter.php:1124
250
- #@ cpd
251
- msgid "Statistics"
252
- msgstr "Statistik"
253
-
254
- #: counter.php:1196
255
- #@ cpd
256
- msgid "This post"
257
- msgstr "Det här inlägget"
258
-
259
- #: counter.php:1220
260
- #@ default
261
- msgid "Title"
262
- msgstr "Titel"
263
-
264
- #: counter-options.php:585
265
- #: notes.php:71
266
- #: userperspan.php:44
267
- #@ cpd
268
- msgid "show"
269
- msgstr "visa"
270
-
271
- #: counter-options.php:594
272
- #: notes.php:75
273
- #@ cpd
274
- #@ default
275
- msgid "Date"
276
- msgstr "Datum"
277
-
278
- #: notes.php:77
279
- #@ default
280
- msgid "Action"
281
- msgstr "Åtgärd"
282
-
283
- #: notes.php:82
284
- #@ cpd
285
- msgid "add"
286
- msgstr "lägg till"
287
-
288
- #: notes.php:98
289
- #@ cpd
290
- msgid "save"
291
- msgstr "spara"
292
-
293
- #: notes.php:99
294
- #@ cpd
295
- msgid "delete"
296
- msgstr "ta bort"
297
-
298
- #: notes.php:110
299
- #@ cpd
300
- msgid "edit"
301
- msgstr "redigera"
302
-
303
- #: counter-options.php:580
304
- #: massbots.php:35
305
- #@ cpd
306
- msgid "Mass Bots"
307
- msgstr "Massbotar"
308
-
309
- #: userperspan.php:38
310
- #@ cpd
311
- msgid "Start"
312
- msgstr "Start"
313
-
314
- #: userperspan.php:40
315
- #@ cpd
316
- msgid "End"
317
- msgstr "Slut"
318
-
319
- #: userperspan.php:42
320
- #@ cpd
321
- msgid "PostID"
322
- msgstr "PostID"
323
-
324
- #: userperspan.php:50
325
- #@ cpd
326
- msgid "no data found"
327
- msgstr "ingen information hittades"
328
-
329
- #: counter-options.php:49
330
- #@ cpd
331
- msgid "Options updated"
332
- msgstr "Inställningarna är uppdaterade"
333
-
334
- #: counter-options.php:60
335
- #, php-format
336
- #@ cpd
337
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
- msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
339
-
340
- #: counter-options.php:65
341
- #@ cpd
342
- msgid "update next"
343
- msgstr "uppdatera nästa"
344
-
345
- #: counter-options.php:102
346
- #, php-format
347
- #@ cpd
348
- msgid "Mass Bots cleaned. %s counts deleted."
349
- msgstr "Massbotar rensades. %s stycken togs bort."
350
-
351
- #: counter-options.php:112
352
- #, php-format
353
- #@ cpd
354
- msgid "Database cleaned. %s rows deleted."
355
- msgstr "Databasen städades. %s rader togs bort."
356
-
357
- #: counter-options.php:122
358
- #@ cpd
359
- msgid "Counter reseted."
360
- msgstr "Räknaren återställdes."
361
-
362
- #: counter-options.php:127
363
- #: counter-options.php:810
364
- #@ cpd
365
- msgid "UNINSTALL Count per Day"
366
- msgstr "AVINSTALLERA Count per Day"
367
-
368
- #: counter-options.php:132
369
- #: counter-options.php:133
370
- #: counter-options.php:134
371
- #, php-format
372
- #@ cpd
373
- msgid "Table %s deleted"
374
- msgstr "Tabellen %s raderades"
375
-
376
- #: counter-options.php:135
377
- #@ cpd
378
- msgid "Options deleted"
379
- msgstr "Inställningarna togs bort"
380
-
381
- #: counter-options.php:316
382
- #: counter-options.php:796
383
- #@ cpd
384
- msgid "Uninstall"
385
- msgstr "Avinstallera"
386
-
387
- #: counter-options.php:317
388
- #@ cpd
389
- msgid "Click here"
390
- msgstr "Klicka här"
391
-
392
- #: counter-options.php:317
393
- #@ cpd
394
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
395
- msgstr "för att avinstallera och avaktivera \"Count per Day\"."
396
-
397
- #: counter-options.php:351
398
- #@ cpd
399
- msgid "Counter"
400
- msgstr "Räknare"
401
-
402
- #: counter-options.php:355
403
- #@ cpd
404
- msgid "Online time"
405
- msgstr "Tid online"
406
-
407
- #: counter-options.php:356
408
- #@ cpd
409
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
410
- msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
411
-
412
- #: counter-options.php:359
413
- #@ cpd
414
- msgid "Logged on Users"
415
- msgstr "Inloggade användare"
416
-
417
- #: counter-options.php:361
418
- #@ cpd
419
- msgid "count too"
420
- msgstr "räkna med"
421
-
422
- #: counter-options.php:362
423
- #@ cpd
424
- msgid "until User Level"
425
- msgstr "upp till användarbehörighet"
426
-
427
- #: counter-options.php:373
428
- #@ cpd
429
- msgid "Auto counter"
430
- msgstr "Automatisk räknare"
431
-
432
- #: counter-options.php:374
433
- #@ cpd
434
- msgid "Counts automatically single-posts and pages, no changes on template needed."
435
- msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
436
-
437
- #: counter-options.php:377
438
- #@ cpd
439
- msgid "Bots to ignore"
440
- msgstr "Bots att ignorera"
441
-
442
- #: counter-options.php:381
443
- #@ cpd
444
- msgid "Anonymous IP"
445
- msgstr "Anonym IP-adress"
446
-
447
- #: counter-options.php:385
448
- #@ cpd
449
- msgid "Cache"
450
- msgstr "Cache"
451
-
452
- #: counter-options.php:386
453
- #@ cpd
454
- msgid "I use a cache plugin. Count these visits with ajax."
455
- msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
456
-
457
- #: counter-options.php:389
458
- #@ cpd
459
- msgid "Clients and referrers"
460
- msgstr "Klienter och hänvisare"
461
-
462
- #: counter-options.php:392
463
- #@ cpd
464
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
465
- msgstr "Spara och visa klienter och hänvisare.<br />Kräver stor plats i databasen, men ger dig mer information om dina besökare."
466
-
467
- #: counter-options.php:403
468
- #@ default
469
- msgid "Dashboard"
470
- msgstr "Panel"
471
-
472
- #: counter-options.php:439
473
- #: counter-options.php:443
474
- #@ cpd
475
- msgid "How many posts do you want to see on dashboard page?"
476
- msgstr "Hur många inlägg vill du se på panelsidan?"
477
-
478
- #: counter-options.php:442
479
- #@ cpd
480
- msgid "Latest Counts - Posts"
481
- msgstr "Senaste träffar - Inlägg"
482
-
483
- #: counter-options.php:446
484
- #@ cpd
485
- msgid "Latest Counts - Days"
486
- msgstr "Senaste träffar - Dagar"
487
-
488
- #: counter-options.php:447
489
- #: counter-options.php:451
490
- #: counter-options.php:473
491
- #@ cpd
492
- msgid "How many days do you want look back?"
493
- msgstr "Hur många dagar bakåt vill du se?"
494
-
495
- #: counter-options.php:450
496
- #@ cpd
497
- msgid "Chart - Days"
498
- msgstr "Diagram - Dagar"
499
-
500
- #: counter-options.php:454
501
- #@ cpd
502
- msgid "Chart - Height"
503
- msgstr "Diagram - Höjd"
504
-
505
- #: counter-options.php:455
506
- #@ cpd
507
- msgid "Height of the biggest bar"
508
- msgstr "Den högsta stapelns höjd"
509
-
510
- #: counter-options.php:459
511
- #@ cpd
512
- msgid "Countries"
513
- msgstr "Länder"
514
-
515
- #: counter-options.php:460
516
- #@ cpd
517
- msgid "How many countries do you want to see on dashboard page?"
518
- msgstr "Hur många länder vill du visa på Panelen?"
519
-
520
- #: counter-options.php:465
521
- #@ cpd
522
- msgid "Substring of the user agent, separated by comma"
523
- msgstr "Delsträng av \"user agent\", separerad med kommatecken"
524
-
525
- #: counter-options.php:468
526
- #@ cpd
527
- msgid "Referrers - Entries"
528
- msgstr "Hänvisare - Inlägg"
529
-
530
- #: counter-options.php:469
531
- #@ cpd
532
- msgid "How many referrers do you want to see on dashboard page?"
533
- msgstr "Hur många hänvisare vill du se på panelsidan?"
534
-
535
- #: counter-options.php:472
536
- #@ cpd
537
- msgid "Referrers - Days"
538
- msgstr "Hänvisare - Dagar"
539
-
540
- #: counter-options.php:476
541
- #@ cpd
542
- msgid "Local URLs"
543
- msgstr "Lokala URL:er"
544
-
545
- #: counter-options.php:477
546
- #@ cpd
547
- msgid "Show local referrers too."
548
- msgstr "Visa även lokala hänvisare."
549
-
550
- #: counter-options.php:485
551
- #@ default
552
- msgid "Posts"
553
- msgstr "Inlägg"
554
-
555
- #: counter-options.php:485
556
- #@ default
557
- msgid "Pages"
558
- msgstr "Sidor"
559
-
560
- #: counter-options.php:488
561
- #@ cpd
562
- msgid "Show in lists"
563
- msgstr "Visa i listor"
564
-
565
- #: counter-options.php:489
566
- #@ cpd
567
- msgid "Show \"Reads per Post\" in a new column in post management views."
568
- msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
569
-
570
- #: counter-options.php:497
571
- #@ cpd
572
- msgid "Start Values"
573
- msgstr "Startvärden"
574
-
575
- #: counter-options.php:501
576
- #@ cpd
577
- msgid "Here you can change the date of first count and add a start count."
578
- msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
579
-
580
- #: counter-options.php:505
581
- #@ cpd
582
- msgid "Start date"
583
- msgstr "Startdatum"
584
-
585
- #: counter-options.php:506
586
- #@ cpd
587
- msgid "Your old Counter starts at?"
588
- msgstr "Din gamla räknare startar den?"
589
-
590
- #: counter-options.php:509
591
- #: counter-options.php:513
592
- #@ cpd
593
- msgid "Start count"
594
- msgstr "Starta räknaren"
595
-
596
- #: counter-options.php:510
597
- #@ cpd
598
- msgid "Add this value to \"Total visitors\"."
599
- msgstr "Lägg till det här värdet till \"Besökare totalt\"."
600
-
601
- #: counter-options.php:514
602
- #@ cpd
603
- msgid "Add this value to \"Total reads\"."
604
- msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
605
-
606
- #: counter-options.php:554
607
- #@ cpd
608
- msgid "Debug mode"
609
- msgstr "Felsökningsläge"
610
-
611
- #: counter-options.php:556
612
- #@ cpd
613
- msgid "Show debug informations at the bottom of all pages."
614
- msgstr "Visa felsökningsinformation längst ner på alla sidor."
615
-
616
- #: counter-options.php:561
617
- #@ cpd
618
- msgid "Update options"
619
- msgstr "Uppdatera inställningarna"
620
-
621
- #: counter-options.php:727
622
- #@ cpd
623
- msgid "GeoIP - Countries"
624
- msgstr "GeoIP - Länder"
625
-
626
- #: counter-options.php:736
627
- #@ cpd
628
- msgid "Update old counter data"
629
- msgstr "Uppdatera gammal räknardata"
630
-
631
- #: counter-options.php:730
632
- #@ cpd
633
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
634
- msgstr "Du kan få information om land för alla poster i databasen genom att kolla IP-adresserna mot GeoIP-databasen. Räkna med att det kan ta ett tag!"
635
-
636
- #: counter-options.php:748
637
- #@ cpd
638
- msgid "Update GeoIP database"
639
- msgstr "Uppdatera GeoIP-databasen"
640
-
641
- #: counter-options.php:743
642
- #@ cpd
643
- msgid "Download a new version of GeoIP.dat file."
644
- msgstr "Ladda ner en ny version av filen GeoIP.dat."
645
-
646
- #: counter-options.php:753
647
- #@ cpd
648
- msgid "More informations about GeoIP"
649
- msgstr "Mer information om GeoIP"
650
-
651
- #: counter-options.php:584
652
- #, php-format
653
- #@ cpd
654
- msgid "Show all IPs with more than %s page views per day"
655
- msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
656
-
657
- #: counter-options.php:593
658
- #@ cpd
659
- msgid "IP"
660
- msgstr "IP"
661
-
662
- #: counter-options.php:595
663
- #@ cpd
664
- msgid "Client"
665
- msgstr "Klient"
666
-
667
- #: counter-options.php:596
668
- #@ cpd
669
- msgid "Views"
670
- msgstr "Visningar"
671
-
672
- #: counter-options.php:611
673
- #: counter-options.php:627
674
- #, php-format
675
- #@ cpd
676
- msgid "Delete these %s counts"
677
- msgstr "Ta bort bort %s stycken"
678
-
679
- #: counter-options.php:656
680
- #: counter-options.php:665
681
- #@ cpd
682
- msgid "Clean the database"
683
- msgstr "Städa databasen"
684
-
685
- #: counter-options.php:659
686
- #@ cpd
687
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
688
- msgstr "Du kan rensa räknartabellen genom att ta bort \"spamdata\".<br />Om du lägger till nya botar ovan, behålls den gamla \"spamdatan\" i databasen.<br />Här kan du köra botfiltret igen och ta bort botarnas besök."
689
-
690
- #: counter-options.php:777
691
- #: counter-options.php:787
692
- #@ cpd
693
- msgid "Reset the counter"
694
- msgstr "Nollställ räknaren"
695
-
696
- #: counter-options.php:780
697
- #@ cpd
698
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
699
- msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
700
-
701
- #: counter-options.php:799
702
- #@ cpd
703
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
704
- msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
705
-
706
- #: counter-options.php:800
707
- #@ cpd
708
- msgid "Here you can delete the tables and disable \"Count per Day\"."
709
- msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
710
-
711
- #: counter-options.php:803
712
- #@ cpd
713
- msgid "WARNING"
714
- msgstr "VARNING"
715
-
716
- #: counter-options.php:804
717
- #@ cpd
718
- msgid "These tables (with ALL counter data) will be deleted."
719
- msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
720
-
721
- #: counter-options.php:806
722
- #@ cpd
723
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
724
- msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
725
-
726
- #: counter-options.php:786
727
- #: counter-options.php:809
728
- #@ cpd
729
- msgid "Yes"
730
- msgstr "Ja"
731
-
732
- #: counter-options.php:810
733
- #@ cpd
734
- msgid "You are sure to disable Count per Day and delete all data?"
735
- msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
736
-
737
- #: counter-options.php:714
738
- #@ cpd
739
- msgid "Support"
740
- msgstr "Support"
741
-
742
- #: geoip/geoip.php:93
743
- #@ cpd
744
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
745
- msgstr "Tyvärr, nödvändiga funktioner (zlib) är inte installerade/aktiverade i php.ini."
746
-
747
- #: geoip/geoip.php:117
748
- #@ cpd
749
- msgid "New GeoIP database installed."
750
- msgstr "Ny GeoIP-databas installerades."
751
-
752
- #: geoip/geoip.php:119
753
- #@ cpd
754
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
755
- msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
756
-
757
- #: counter-core.php:186
758
- #, php-format
759
- #@ cpd
760
- msgid "\"Count per Day\" updated to version %s."
761
- msgstr ""
762
-
763
- #: counter-core.php:917
764
- #@ cpd
765
- msgid "Backup failed! Cannot open file"
766
- msgstr ""
767
-
768
- #: counter-core.php:940
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr ""
773
-
774
- #: counter-core.php:1027
775
- #@ cpd
776
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
- msgstr ""
778
-
779
- #: counter-core.php:1033
780
- #, php-format
781
- #@ cpd
782
- msgid "Backup of counter table saved in %s."
783
- msgstr ""
784
-
785
- #: counter-core.php:1035
786
- #, php-format
787
- #@ cpd
788
- msgid "Backup of counter options and collection saved in %s."
789
- msgstr ""
790
-
791
- #: counter-options.php:170
792
- #@ cpd
793
- msgid "Collection in progress..."
794
- msgstr ""
795
-
796
- #: counter-options.php:240
797
- #@ cpd
798
- msgid "Get Visitors per Post..."
799
- msgstr ""
800
-
801
- #: counter-options.php:261
802
- #@ cpd
803
- msgid "Delete old data..."
804
- msgstr ""
805
-
806
- #: counter-options.php:285
807
- #, php-format
808
- #@ cpd
809
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
- msgstr ""
811
-
812
- #: counter-options.php:294
813
- #@ cpd
814
- msgid "Installation of \"Count per Day\" checked"
815
- msgstr ""
816
-
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- #@ default
820
- msgid "Tools"
821
- msgstr ""
822
-
823
- #: counter-options.php:394
824
- #@ cpd
825
- msgid "Save URL only, no query string."
826
- msgstr ""
827
-
828
- #: counter-options.php:419
829
- #@ cpd
830
- msgid "Who can see it"
831
- msgstr ""
832
-
833
- #: counter-options.php:428
834
- #@ cpd
835
- msgid "custom"
836
- msgstr ""
837
-
838
- #: counter-options.php:430
839
- #@ cpd
840
- msgid "and higher are allowed to see the statistics page."
841
- msgstr ""
842
-
843
- #: counter-options.php:432
844
- #, php-format
845
- #@ cpd
846
- msgid "Set the %s capability %s a user need:"
847
- msgstr ""
848
-
849
- #: counter-options.php:522
850
- #@ cpd
851
- msgid "Stylesheet"
852
- msgstr ""
853
-
854
- #: counter-options.php:525
855
- #@ cpd
856
- msgid "NO Stylesheet in Frontend"
857
- msgstr ""
858
-
859
- #: counter-options.php:526
860
- #@ cpd
861
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
- msgstr ""
863
-
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- #@ cpd
867
- msgid "Backup"
868
- msgstr ""
869
-
870
- #: counter-options.php:537
871
- #@ cpd
872
- msgid "Entries per pass"
873
- msgstr ""
874
-
875
- #: counter-options.php:540
876
- #@ cpd
877
- msgid "How many entries should be saved per pass? Default: 10000"
878
- msgstr ""
879
-
880
- #: counter-options.php:545
881
- #@ cpd
882
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
- msgstr ""
884
-
885
- #: counter-options.php:643
886
- #, php-format
887
- #@ cpd
888
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
- msgstr ""
890
-
891
- #: counter-options.php:647
892
- #@ cpd
893
- msgid "Backup the database"
894
- msgstr ""
895
-
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- #@ cpd
899
- msgid "Collect old data"
900
- msgstr ""
901
-
902
- #: counter-options.php:679
903
- #, php-format
904
- #@ cpd
905
- msgid "Current size of your counter table %s is %s."
906
- msgstr ""
907
-
908
- #: counter-options.php:681
909
- #@ cpd
910
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
- msgstr ""
912
-
913
- #: counter-options.php:686
914
- #, php-format
915
- #@ cpd
916
- msgid "Currently your collection contains data until %s."
917
- msgstr ""
918
-
919
- #: counter-options.php:690
920
- #@ cpd
921
- msgid "Normally new data will be added to the collection."
922
- msgstr ""
923
-
924
- #: counter-options.php:696
925
- #@ cpd
926
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
- msgstr ""
928
-
929
- #: counter-options.php:697
930
- #, php-format
931
- #@ cpd
932
- msgid "All collected data until %s will deleted."
933
- msgstr ""
934
-
935
- #: counter-options.php:702
936
- #, php-format
937
- #@ cpd
938
- msgid "Keep entries of last %s full months + current month in counter table."
939
- msgstr ""
940
-
941
- #: counter-options.php:761
942
- #@ cpd
943
- msgid "ReActivation"
944
- msgstr ""
945
-
946
- #: counter-options.php:764
947
- #@ cpd
948
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
- msgstr ""
950
-
951
- #: counter-options.php:769
952
- #@ cpd
953
- msgid "ReActivate the plugin"
954
- msgstr ""
955
-
956
- #: counter.php:165
957
- #: counter.php:899
958
- #@ cpd
959
- msgid "Visitors"
960
- msgstr ""
961
-
962
- #: counter.php:168
963
- #: counter.php:169
964
- #@ cpd
965
- msgid "Most visited day"
966
- msgstr ""
967
-
968
- #: counter.php:1239
969
- #@ cpd
970
- msgid "drag and drop to sort"
971
- msgstr ""
972
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/cpd-tr_TR.mo 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,411 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Alisher <bigtaur@mail.ru>\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:31
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Sozlanmalar yangilandi"
26
+
27
+ #: counter-options.php:68
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:78
34
+ #: counter-options.php:279
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "Kunlik Hisoblarni o'chirib tashlash "
38
+
39
+ #: counter-options.php:85
40
+ #: counter-options.php:87
41
+ #, php-format
42
+ #@ cpd
43
+ msgid "Table %s deleted"
44
+ msgstr "Jadval %s o'chirildi"
45
+
46
+ #: counter-options.php:89
47
+ #@ cpd
48
+ msgid "Options deleted"
49
+ msgstr "Sozlanmalar o'chirildi"
50
+
51
+ #: counter-options.php:106
52
+ #: counter-options.php:264
53
+ #@ cpd
54
+ msgid "Uninstall"
55
+ msgstr "O'chirib tashlash"
56
+
57
+ #: counter-options.php:107
58
+ #@ cpd
59
+ msgid "Click here"
60
+ msgstr "Bu yerni cherting"
61
+
62
+ #: counter-options.php:107
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:121
68
+ #@ cpd
69
+ msgid "Options"
70
+ msgstr "Sozlanmalar"
71
+
72
+ #: counter-options.php:126
73
+ #@ cpd
74
+ msgid "Online time"
75
+ msgstr "Onlayn vaqt"
76
+
77
+ #: counter-options.php:127
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:130
83
+ #@ cpd
84
+ msgid "Loged on Users"
85
+ msgstr "Tizimga kirgan foydalanuvchilar"
86
+
87
+ #: counter-options.php:131
88
+ #@ cpd
89
+ msgid "count too"
90
+ msgstr "hisoblash"
91
+
92
+ #: counter-options.php:134
93
+ #@ cpd
94
+ msgid "Auto counter"
95
+ msgstr "Avtohisoblagich"
96
+
97
+ #: counter-options.php:135
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:138
103
+ #@ cpd
104
+ msgid "Bots to ignore"
105
+ msgstr "Botlarni rad etish"
106
+
107
+ #: counter-options.php:180
108
+ #@ cpd
109
+ msgid "Update options"
110
+ msgstr "Sozlanmalarni yangilash"
111
+
112
+ #: counter-options.php:229
113
+ #: counter-options.php:238
114
+ #@ cpd
115
+ msgid "Clean the database"
116
+ msgstr "Ma'lumotlar omborini tozalash"
117
+
118
+ #: counter-options.php:232
119
+ #@ cpd
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 "\"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."
122
+
123
+ #: counter-options.php:267
124
+ #@ cpd
125
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
+ msgstr "\"Kunlik hisoblar\"shunchaki o'chirib qo'yilsa, jadvallar ma'lumotlar omborida saqlanib qoladi."
127
+
128
+ #: counter-options.php:268
129
+ #@ cpd
130
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
131
+ msgstr "Bu yerda siz jadvallarni o'chirib tashlashingiz va \"Kunlik hisoblar\"ni o'chirib qo'yishingiz mumkin."
132
+
133
+ #: counter-options.php:271
134
+ #@ cpd
135
+ msgid "WARNING"
136
+ msgstr "OGOHLANTIRISH"
137
+
138
+ #: counter-options.php:272
139
+ #@ cpd
140
+ msgid "These tables (with ALL counter data) will be deleted."
141
+ msgstr "Bu jadvallar (barcha hisoblash ma'lumotlari ham) o'chirib tashlanadi."
142
+
143
+ #: counter-options.php:274
144
+ #@ cpd
145
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
+ msgstr "\"Kunlik hisoblar\" qayta o'rnatilganda, hisoblagich 0dan boshlanadi."
147
+
148
+ #: counter-options.php:278
149
+ #@ cpd
150
+ msgid "Yes"
151
+ msgstr "Ha"
152
+
153
+ #: counter-options.php:279
154
+ #@ cpd
155
+ msgid "You are sure to disable Count per Day and delete all data?"
156
+ msgstr "Kunlik hisoblarni o'chirib qo'yish va barcha ma'lumotlarni o'chirib tashlashga aminmisiz?"
157
+
158
+ #: counter.php:1004
159
+ #@ cpd
160
+ msgid "Statistics"
161
+ msgstr "Statistika"
162
+
163
+ #: counter.php:303
164
+ #: counter.php:696
165
+ #: counter.php:980
166
+ #@ cpd
167
+ msgid "Total visitors"
168
+ msgstr "Mehmonlarning umumiy soni"
169
+
170
+ #: counter.php:304
171
+ #@ cpd
172
+ msgid "Visitors currently online"
173
+ msgstr "Hozir onlayn mehmonlar"
174
+
175
+ #: counter.php:305
176
+ #@ cpd
177
+ msgid "Visitors today"
178
+ msgstr "Bugungi mehmonlar"
179
+
180
+ #: counter.php:306
181
+ #@ cpd
182
+ msgid "Visitors yesterday"
183
+ msgstr "Kechagi mehmonlar"
184
+
185
+ #: counter.php:307
186
+ #@ cpd
187
+ msgid "Visitors last week"
188
+ msgstr "O'tgan haftadagi mehmonlar"
189
+
190
+ #: counter.php:309
191
+ #@ cpd
192
+ msgid "Counter starts on"
193
+ msgstr "Hisoblagich %sdan boshlanadi "
194
+
195
+ #: counter.php:308
196
+ #: counter.php:698
197
+ #@ cpd
198
+ msgid "Visitors per day"
199
+ msgstr "Kunlik mehmonlar"
200
+
201
+ #: counter.php:982
202
+ #@ cpd
203
+ msgid "Visitors per month"
204
+ msgstr "Oylik mehmonlar"
205
+
206
+ #: counter-options.php:145
207
+ #: counter.php:983
208
+ #@ cpd
209
+ msgid "Visitors per post"
210
+ msgstr "Bir xabarni ko'rgan mehmonlar"
211
+
212
+ #: counter-options.php:74
213
+ #@ cpd
214
+ msgid "Counter reseted."
215
+ msgstr "Hisoblagich nolga qaytarildi."
216
+
217
+ #: counter-options.php:142
218
+ msgid "Dashboard"
219
+ msgstr "Asboblar paneli"
220
+
221
+ #: counter-options.php:146
222
+ #: counter-options.php:150
223
+ #@ cpd
224
+ msgid "How many posts do you want to see on dashboard page?"
225
+ msgstr "Asboblar panelida nechta xabar ko'rsatilsin?"
226
+
227
+ #: counter-options.php:149
228
+ #@ cpd
229
+ msgid "Latest Counts - Posts"
230
+ msgstr "Oxirgi sanoqlar - Xabarlar"
231
+
232
+ #: counter-options.php:153
233
+ #@ cpd
234
+ msgid "Latest Counts - Days"
235
+ msgstr "Oxirgi sanoqlar - Kunlar"
236
+
237
+ #: counter-options.php:154
238
+ #: counter-options.php:158
239
+ #@ cpd
240
+ msgid "How many days do you want look back?"
241
+ msgstr "O'tgan necha kunni ko'rmoqchisiz?"
242
+
243
+ #: counter-options.php:157
244
+ #@ cpd
245
+ msgid "Chart - Days"
246
+ msgstr "Jadval - Kunlar"
247
+
248
+ #: counter-options.php:161
249
+ #@ cpd
250
+ msgid "Chart - Height"
251
+ msgstr "Jadval - Balandlik"
252
+
253
+ #: counter-options.php:162
254
+ #@ cpd
255
+ msgid "Height of the biggest bar"
256
+ msgstr "Eng katta qator (katakcha) balandligi"
257
+
258
+ #: counter-options.php:171
259
+ msgid "Edit Posts"
260
+ msgstr "Xabarlarni tahrir qilish"
261
+
262
+ #: counter-options.php:171
263
+ msgid "Edit Pages"
264
+ msgstr "Sahifalarni tahrir qilish"
265
+
266
+ #: counter-options.php:174
267
+ #@ cpd
268
+ msgid "Show in lists"
269
+ msgstr "Ro'yxatlarda ko'rsatish"
270
+
271
+ #: counter-options.php:175
272
+ #@ cpd
273
+ msgid "Show \"Reads per Post\" in a new column in post management views."
274
+ msgstr "\"Bir xabarni o'qishlar soni\"ni xabar boshqaruvi sahifasida yangi ustunda ko'rsatish."
275
+
276
+ #: counter-options.php:246
277
+ #: counter-options.php:255
278
+ #@ cpd
279
+ msgid "Reset the counter"
280
+ msgstr "Hisoblagichni nolga qaytarish"
281
+
282
+ #: counter-options.php:249
283
+ #@ cpd
284
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
285
+ msgstr "Jadvalni bo'shatish orqali hisoblagichni nolga qaytarishingiz mumkin. HAMMASI 0ga QAYTARILADI<br/>Mavjud ma'lumotlar sizga kerak bo'lsa uning zahira nusxasini yarating!"
286
+
287
+ #: counter.php:379
288
+ #@ cpd
289
+ msgid "no reads at this time"
290
+ msgstr "hozir o'qilganlar yo'q"
291
+
292
+ #: counter.php:398
293
+ #@ cpd
294
+ msgid "days"
295
+ msgstr "kunlar"
296
+
297
+ #: counter.php:583
298
+ #, php-format
299
+ #@ cpd
300
+ msgid "The %s most visited posts in last %s days:"
301
+ msgstr "oxirgi %s kunda %s eng ko'p ko'rilgan xabarlar: "
302
+
303
+ #: counter.php:670
304
+ msgid "Settings"
305
+ msgstr "Sozlanmalar"
306
+
307
+ #: counter.php:981
308
+ #@ cpd
309
+ msgid "Reads per day"
310
+ msgstr "Kunlik o'qishlar"
311
+
312
+ #: counter.php:762
313
+ #@ cpd
314
+ msgid "Reads"
315
+ msgstr "O'qishlar"
316
+
317
+ #: counter.php:891
318
+ #@ cpd
319
+ msgid "This post"
320
+ msgstr "Bu xabar"
321
+
322
+ #: counter.php:935
323
+ #@ cpd
324
+ msgid "Label"
325
+ msgstr "Yorliq"
326
+
327
+ #: counter.php:935
328
+ #@ cpd
329
+ msgid "empty = name above"
330
+ msgstr "bo'shatish = yuqoridagi nom"
331
+
332
+ #: counter.php:984
333
+ #@ cpd
334
+ msgid "Latest Counts"
335
+ msgstr "Oxirgi hisoblar"
336
+
337
+ #: counter-options.php:41
338
+ #, php-format
339
+ #@ cpd
340
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
341
+ msgstr "Countries updated. <b>%s</b> entries in %s without country left"
342
+
343
+ #: counter-options.php:46
344
+ #@ cpd
345
+ msgid "update next"
346
+ msgstr "update next"
347
+
348
+ #: counter-options.php:166
349
+ #@ cpd
350
+ msgid "Countries"
351
+ msgstr "Countries"
352
+
353
+ #: counter-options.php:167
354
+ #@ cpd
355
+ msgid "How many countries do you want to see on dashboard page?"
356
+ msgstr "How many countries do you want to see on dashboard page?"
357
+
358
+ #: counter-options.php:189
359
+ #@ cpd
360
+ msgid "GeoIP - Countries"
361
+ msgstr "GeoIP - Countries"
362
+
363
+ #: counter-options.php:197
364
+ #@ cpd
365
+ msgid "Update old counter data"
366
+ msgstr "Update old counter data"
367
+
368
+ #: counter-options.php:200
369
+ #@ cpd
370
+ msgid "You can get the country data for all entries in database bei check the IP adress again GeoIP database. This take a while!"
371
+ msgstr "You can get the country data for all entries in database bei check the IP adress again GeoIP database. This take a while!"
372
+
373
+ #: counter-options.php:207
374
+ #@ cpd
375
+ msgid "Update GeoIP database"
376
+ msgstr "Update GeoIP database"
377
+
378
+ #: counter-options.php:210
379
+ #@ cpd
380
+ msgid "Download a new version of GeoIP.dat file."
381
+ msgstr "Download a new version of GeoIP.dat file."
382
+
383
+ #: counter-options.php:216
384
+ #@ cpd
385
+ msgid "More informations about GeoIP"
386
+ msgstr "More informations about GeoIP"
387
+
388
+ #: counter.php:923
389
+ msgid "Title:"
390
+ msgstr ""
391
+
392
+ #: counter.php:988
393
+ #@ cpd
394
+ msgid "Reads per Country"
395
+ msgstr "Reads per Country"
396
+
397
+ #: geoip/geoip.php:83
398
+ #@ cpd
399
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
400
+ msgstr "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
401
+
402
+ #: geoip/geoip.php:104
403
+ #@ cpd
404
+ msgid "New GeoIP database installed."
405
+ msgstr "New GeoIP database installed."
406
+
407
+ #: geoip/geoip.php:106
408
+ #@ cpd
409
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
410
+ msgstr "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
411
+
map/ammap.swf DELETED
Binary file
map/data.xml.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
- if (!session_id()) session_start();
3
- $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../../';
4
- require_once($cpd_wp.'wp-load.php');
5
- require_once($cpd_path.'/geoip/geoip.php');
6
- $geoip = new GeoIPCpD();
7
- $data = array();
8
-
9
- $what = (empty($_GET['map'])) ? 'reads' : $_GET['map'];
10
-
11
- if ( $what == 'online' )
12
- {
13
- $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
14
- $oc = get_option('count_per_day_online', array());
15
- $vo = array();
16
- foreach ($oc as $ip => $x)
17
- {
18
- $country = cpd_geoip_country_code_by_addr($gi, $ip);
19
- $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country];
20
- if ( !empty($id) )
21
- {
22
- $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
23
- $count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
24
- $vo[$country] = array($name, $count);
25
- }
26
- }
27
- foreach ( $vo as $k => $v )
28
- $data[] = array($v[0], $k ,$v[1]);
29
- }
30
- else
31
- {
32
- $temp = $count_per_day->addCollectionToCountries( ($what == 'visitors') );
33
-
34
- foreach ($temp as $country => $value)
35
- {
36
- if ($country != '-')
37
- {
38
- $country = strtoupper($country);
39
- $name = $geoip->GEOIP_COUNTRY_NAMES[ $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country] ];
40
- if ( !empty($name) )
41
- $data[] = array($name, $country ,$value);
42
- }
43
- }
44
- }
45
-
46
- header("content-type: text/xml; charset=utf-8");
47
- echo '<?xml version="1.0" encoding="UTF-8"?>';
48
- ?>
49
- <map map_file="world.swf" tl_long="-168.49" tl_lat="83.63" br_long="190.3" br_lat="-55.58" zoom_x="10%" zoom_y="6%" zoom="85%">
50
- <areas>
51
- <?php
52
- foreach ( $data as $d )
53
- echo '<area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
54
- ';
55
- ?>
56
- <area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
57
- </areas>
58
- <?php if (empty($_GET['min'])) { ?>
59
- <labels>
60
- <label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
61
- <text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
62
- </label>
63
- </labels>
64
- <movies>
65
- <movie long="13" lat="53.4" file="target" width="10" height="10" color="#000000" fixed_size="true" title="Home of your best friend: Tom, the plugin author ;)"></movie>
66
- </movies>
67
- <?php } ?>
68
- </map>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
map/map.php DELETED
@@ -1,25 +0,0 @@
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>
8
- <link rel="stylesheet" type="text/css" href="../counter.css" />
9
- <script type="text/javascript" src="swfobject.js"></script>
10
- </head>
11
- <body style="overflow:hidden; padding:0; margin:0; background:#4499FF;">
12
- <div id="flashcontent">
13
- <strong>You need to upgrade your Flash Player</strong>
14
- </div>
15
- <script type="text/javascript">
16
- // <![CDATA[
17
- var so = new SWFObject("ammap.swf", "ammap", "630", "412", "8", "#4499FF");
18
- so.addVariable("path", "");
19
- so.addVariable("settings_file", escape("settings.xml.php?map=<?php echo $what ?>"));
20
- so.addVariable("data_file", escape("data.xml.php?map=<?php echo $what ?>"));
21
- so.write("flashcontent");
22
- // ]]>
23
- </script>
24
- </body>
25
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
map/settings.xml.php DELETED
@@ -1,63 +0,0 @@
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>
12
-
13
- <small_map>
14
- <enabled>false</enabled>
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>
22
- <color_unlisted>#3388EE</color_unlisted>
23
- <disable_when_clicked>true</disable_when_clicked>
24
- </area>
25
-
26
- <movie>
27
- <balloon_text><![CDATA[{title}]]></balloon_text>
28
- <color_hover>#0000ff</color_hover>
29
- </movie>
30
-
31
- <balloon>
32
- <color>#FFFFFF</color>
33
- <alpha>85</alpha>
34
- <text_color>#000000</text_color>
35
- <border_color>#CC0000</border_color>
36
- <border_alpha>90</border_alpha>
37
- <border_width>2</border_width>
38
- <corner_radius>7</corner_radius>
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>
53
- <key>
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>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
map/swfobject.js DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
3
- *
4
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
5
- * http://www.opensource.org/licenses/mit-license.php
6
- *
7
- */
8
- if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();if(!(navigator.plugins && navigator.mimeTypes.length)) window[this.getAttribute('id')] = document.getElementById(this.getAttribute('id'));return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;
 
 
 
 
 
 
 
 
map/world.swf DELETED
Binary file
massbots.php DELETED
@@ -1,70 +0,0 @@
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
-
28
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
29
- <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE">
30
- <head>
31
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
32
- <title>Count per Day</title>
33
- <link rel="stylesheet" type="text/css" href="counter.css" />
34
- </head>
35
- <body class="cpd-thickbox">
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
- }
66
- ?>
67
- </ol>
68
- <?php if ($count_per_day->options['debug']) $count_per_day->showQueries(); ?>
69
- </body>
70
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
notes.php DELETED
@@ -1,121 +0,0 @@
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>
39
- <link rel="stylesheet" type="text/css" href="counter.css" />
40
- </head>
41
- <body class="cpd-thickbox">
42
- <h2><?php _e('Notes', 'cpd') ?></h2>
43
- <form name="cpd_notes_form1" action="" method="post">
44
- <table class="cpd-notes">
45
- <tr>
46
- <td colspan="3" style="background:#ddd; padding:3px;">
47
- <select name="month">
48
- <option value="0">-</option>
49
- <?php
50
- for ( $m = 1; $m <= 12; $m++ )
51
- {
52
- echo '<option value="'.$m.'" ';
53
- if ( $m == $month )
54
- echo 'selected="selected"';
55
- echo '>'.mysql2date('F', '2000-'.$m.'-01').'</option>';
56
- }
57
- ?>
58
- </select>
59
- <select name="year">
60
- <option value="0">-</option>
61
- <?php
62
- for ( $y = 2010; $y <= date_i18n('Y'); $y++ )
63
- {
64
- echo '<option value="'.$y.'" ';
65
- if ( $y == $year )
66
- echo 'selected="selected"';
67
- echo '>'.$y.'</option>';
68
- }
69
- ?>
70
- </select>
71
- <input type="button" name="showmonth" onclick="submit()" value="<?php _e('show', 'cpd') ?>" style="width:auto;" />
72
- </td>
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>
80
- <td><input name="date" value="<?php echo date_i18n('Y-m-d') ?>" /></td>
81
- <td><input name="note" maxlength="250" /></td>
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>
101
- </tr>
102
- <?php
103
- }
104
- else
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
- }
114
- }
115
- }
116
- ?>
117
- </table>
118
- </form>
119
- <?php if ($count_per_day->options['debug']) $count_per_day->showQueries(); ?>
120
- </body>
121
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,11 +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.
11
 
@@ -14,58 +13,33 @@ Visit Counter, shows reads per page, visitors today, yesterday, last week, last
14
  * count reads and visitors
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 ==
71
 
@@ -75,373 +49,96 @@ read and write comments on http://www.tomsdimension.de/wp-plugins/count-per-day
75
 
76
  == Arbitrary section ==
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]
102
- [CPD_CLIENTS]
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%).
281
- * You can update the GeoIP database from time to time to get new IP data. This necessitates write rights to geoip directory (e.g. chmod 777).
282
- * If the automatically update don't work download <a href="http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz">GeoIP.dat.gz</a> and extract it to the "geoip" directory.
283
  * More information about GeoIP on http://www.maxmind.com/app/geoip_country
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
352
- + Bugfix: problems with MySQL 4.x
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)
360
-
361
- = 2.12 =
362
- + New: Flags images as sprite included
363
- + New: improved "Browsers" management, set your own favorites
364
- + New: improved "Mass Bots" management, more infos
365
- + New: "Visitors per country" list
366
- + New: "Visitors per day" list/chart
367
- + New: works now in cached pages too (optional, BETA)
368
- + New: easier switch to debug mode on settings
369
- + Language update: Dansk, Dutch, France, German, Italian, Russian, Swedish
370
- + Bugfix: CleanDB delete by IP function changed
371
- + Bugfix: because windows symlink problem plugin dir is hardcoded as 'count-per-day' now
372
- + Code updated (deprecated functions)
373
-
374
- = 2.11 =
375
- + Bugfix: GeoIP, update old data used wrong IP format
376
- + Bugfix: CleanDB deletes to many entries (index, categories, tags)
377
- + Bugfix: date/timezone problem
378
- + New: anonymous IP addresses (last bit, optional)
379
- + New: simple scroll function in charts
380
- + New language: Polish, thanks to LeXuS
381
-
382
- = 2.10.1 =
383
- + New language: Dutch, thanks to Rene http://wpwebshop.com
384
-
385
- = 2.10 =
386
- + New language: French, thanks to Bjork http://www.habbzone.fr
387
- + New: Worldmap to visualize visitors per country
388
- + New: Shortcodes to add lists and charts to posts and pages, check counter.css too
389
- + Bugfix: mysql_fetch_assoc() error, non existing options
390
- + Post edit links in lists for editors only (user_level >= 7)
391
-
392
- = 2.9 =
393
- + New: little note system to mark special days
394
- + New: functions to get reads/page views total, today and yesterday
395
- + Language update: Italian, thanks to Gianni Diurno
396
- + Language update: Portuguese (Brazil), thanks to Lucato
397
- + Language update: Swedish, thanks to Magnus Suther
398
- + Language update: Dansk, thanks to Jonas Thomsen
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
406
- + New language: Dansk, thanks to GeorgeWP
407
-
408
- = 2.7 =
409
- + Bugfix: date/timezone problem
410
- + New: change start date and start count on option page
411
- + New: "edit post" links on lists
412
- + New: new list shows visitors per post on user defined date
413
- + New: link to plugin page
414
-
415
- = 2.6 =
416
- + languages files now compatible with Wordpress 2.9
417
- + New: improved CSS support for RTL blogs (e.g. arabic)
418
-
419
- = 2.5 =
420
- + BACKUP YOUR COUNTER DATABASE BEFORE UPDATE!
421
- + Change: some big changes on database and functions to speed up mysql queries. This will take a while on activation!
422
- + New: "Mass Bot Detector" shows and deletes clients that view more than x pages per day
423
- + New: see count and time of queries if CPD_DEBUG is true (on top of counter.php)
424
- + Bugfix: cleanDB by IP now works
425
- + Language update: Portuguese (Brazil), thanks to Beto Ribeiro
426
-
427
- = 2.4.2 =
428
- + Bugfix: mysql systax error
429
- + Bugfix: no country data was stored (GeoIP), use "Update old counter data" on options page
430
-
431
- = 2.4 =
432
- + Bugfix: works with PHP 4.x again (error line 169)
433
- + Change: some functions now faster
434
- + New: GeoIP included. You have to load GeoIP.dat file on option page before you can use it.
435
- + Language updates: Italian (Gianni Diurno) and German
436
-
437
- = 2.3.1 =
438
- + Bugfix: counter do not work without GeoIP Addon (nonexisting row 'country' in table)
439
 
440
  = 2.3 =
441
  + New: chart "visitors per day"
442
  + New: counts index pages: homepage, categories, tags (if autocount is on)
443
  + New: visits per client/browser in percent
444
- + New: added some parameters to functions to overwrite default values
445
  + New language: Usbek, thanks to Alisher
446
 
447
  = 2.2 =
@@ -469,7 +166,7 @@ to check if plugin is activated.
469
  + create class, update/clean up/rename functions
470
 
471
  = 1.5.1 =
472
- + New language: Belorussian, thanks to Marcis Gasuns
473
 
474
  = 1.5 =
475
  + New: Dashboard Widget
@@ -488,7 +185,7 @@ to check if plugin is activated.
488
  + Bugfix: autocount endless looping
489
 
490
  = 1.2.2 =
491
- + New language: Italian, thanks to Gianni Diurno
492
 
493
  = 1.2.1 =
494
  + Bugfix: Error 404 "Page not found" with "auto count"
@@ -499,7 +196,7 @@ to check if plugin is activated.
499
 
500
  = 1.1 =
501
  + Languages: english, german
502
- + HTTP_USER_AGENT will be saved, identification of new search bots
503
  + Stylesheet in file counter.css
504
 
505
  = 1.0 =
1
  === Count per Day ===
2
  Contributors: Tom Braider
3
+ Donate link: http://www.unicef.org
4
+ Tags: counter, count, posts, visits, reads, dashboard, widget
5
+ Requires at least: 2.7
6
+ Tested up to: 2.8.4
7
+ Stable tag: 2.3
 
8
 
9
  Visit Counter, shows reads per page, visitors today, yesterday, last week, last months and other statistics.
10
 
13
  * count reads and visitors
14
  * shows reads per page
15
  * shows visitors today, yesterday, last week, last months and other statistics on dashboard
16
+ * you can show these statistics on frontend (e.g. on sidebar) too
17
+ * if you use Wordpress < 2.7 please use Count-per-Day v1.4
18
+
19
+ It counts 1 visit per IP per day. So any reload of the page don't increment the counter.
20
+
21
+ Languages: english, german, italian, portuguese, belorussian, uzbek
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
  == Installation ==
24
 
25
  1. unzip plugin directory into the '/wp-content/plugins/' directory
26
  1. activate the plugin through the 'Plugins' menu in WordPress
27
+ 1. install optional GeoIP addon to show countries of your visitors
 
 
28
 
29
+ First activation will create the 2 tables wp _ cpd _ counter and wp _ cpd _ counter _ useronline.
30
 
31
  **Configuration**
32
 
33
+ See the Options Page and check the default values. It's easy. :)
34
+
35
+ If "Auto counter" is on reads on single-posts and pages will count without any changes on template.
36
+
37
+ For more informations see "Other Notes".
38
 
39
  == Frequently Asked Questions ==
40
 
41
  = Need Help? Find Bug? =
42
+ read and write comments on <a href="http://www.tomsdimension.de/wp-plugins/count-per-day">plugin page</a>
 
43
 
44
  == Screenshots ==
45
 
49
 
50
  == Arbitrary section ==
51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  **Functions**
53
 
54
+ You can place these functions in your template.<br/>
55
+ Place functions within post-loop (e.g. in single.php)<br/>
56
+ Use '&lt;?php if(method _ exists($count _ per _ day, "show")) $count _ per _ day->show(); ?&gt;' to check if plugin is activated.
 
 
 
 
57
 
58
+ 'show( $before, $after, $show, $count )'
59
 
60
+ * $before = text before number e.g. '&lt;p&gt;' (standard "")
61
+ * $after = text after number e.g. 'reads&lt;/p&gt;' (standard " reads")
62
+ * $show = true/false, "echo" complete string or "return" number only (standard true)
63
+ * $count = true/false, false will not count the reads (standard true)
 
64
 
65
  'count()'
66
 
67
  * only count reads, without any output
68
  * cpdShow call it
69
 
70
+ 'getFirstCount()'
71
 
72
  * shows date of first count
 
73
 
74
+ 'getUserPerDay( $days )'
75
 
76
  * shows average number of visitors per day of the last _$days_ days
77
  * default on dashboard (see it with mouse over number) = "Latest Counts - Days" in options
 
 
 
 
 
 
 
 
78
 
79
+ 'getUserAll()'
 
 
 
80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  * shows number of total visitors
 
82
 
83
+ 'getUserOnline()'
84
 
85
  * shows number of visitors just online
 
 
 
86
 
87
+ 'getUserToday()'
88
 
89
  * shows number of visitors today
 
90
 
91
+ 'getUserYesterday()'
92
 
93
  * shows number of visitors yesterday
 
94
 
95
+ 'getUserLastWeek()'
96
 
97
  * shows number of visitors last week (7 days)
 
 
 
 
 
 
 
 
98
 
99
+ 'getUserPerMonth()'
100
+
101
  * lists number of visitors per month
 
 
102
 
103
+ 'getUserPerPost( $limit = 0 )'
104
 
105
  * lists _$limit_ number of posts, -1: all, 0: get option from DB, x: number
 
 
106
 
107
+ 'getMostVisitedPosts( $days, $limits )'
108
 
109
  * shows a list with the most visited posts in the last days
110
  * $days = days to calc (last days), 0: get option from DB
111
  * $limit = count of posts (last posts), 0: get option from DB
 
 
 
 
 
 
 
 
 
 
 
 
 
112
 
113
+ 'getClients()'
114
 
115
  * shows visits per client/browser in percent
116
+ * clients are hardcoded in function but easy to change ;)
117
+
118
+
119
+ **GeoIP addon**
120
+
121
+ * With the GeoIP addon you can associate your visitors to an country using the ip adress.
122
+ * Download the addon on <a href="http://www.tomsdimension.de/wp-plugins/count-per-day">plugin page</a> and unzip into count-per-day directory. Directory 'geoip' will be create.
123
+ * In the database a new column 'country' will be insert.
124
+ * On options page you can update you current visits. This take a while!
125
+ The Script checks 100 IP adresses at once an reload itself until less then 100 adresses left.
126
+ Click the update button to check the rest.
127
+ * Click the button once at least to create the column in datebase! You can abort the update process.
128
+ * If the rest remains greater than 0 the IP adress is not in GeoIP database (accuracy 99.5%).
129
+ * You can update the GeoIP database from time to time to get new IP data.
130
+ This necessitates write rights to geoip directory (e.g. chmod 777).
131
+ * If the automaticaly update don't work download <a href="http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz">GeoIP.dat.gz</a> and extract it to the "geoip" directory.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  * More information about GeoIP on http://www.maxmind.com/app/geoip_country
133
 
 
134
 
135
+ == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
 
137
  = 2.3 =
138
  + New: chart "visitors per day"
139
  + New: counts index pages: homepage, categories, tags (if autocount is on)
140
  + New: visits per client/browser in percent
141
+ + added some parameters to functions to overwrite default values
142
  + New language: Usbek, thanks to Alisher
143
 
144
  = 2.2 =
166
  + create class, update/clean up/rename functions
167
 
168
  = 1.5.1 =
169
+ + New language: Belorussian, thanks to Marcis Gasuns
170
 
171
  = 1.5 =
172
  + New: Dashboard Widget
185
  + Bugfix: autocount endless looping
186
 
187
  = 1.2.2 =
188
+ + New language: Italian, thanks to Gianni Diurno http://gidibao.net/index.php/portfolio/
189
 
190
  = 1.2.1 =
191
  + Bugfix: Error 404 "Page not found" with "auto count"
196
 
197
  = 1.1 =
198
  + Languages: english, german
199
+ + HTTP _ USER _ AGENT will be saved, identification of new search bots
200
  + Stylesheet in file counter.css
201
 
202
  = 1.0 =
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
userperspan.php DELETED
@@ -1,105 +0,0 @@
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">
26
- <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE">
27
- <head>
28
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
29
- <title>Count per Day</title>
30
- <link rel="stylesheet" type="text/css" href="counter.css" />
31
- </head>
32
- <body class="cpd-thickbox">
33
-
34
- <h2><?php _e('Visitors per day', 'cpd') ?></h2>
35
-
36
- <form action="" method="post">
37
- <p style="background:#ddd; padding:3px;">
38
- <?php _e('Start', 'cpd'); ?>:
39
- <input type="text" name="datemin" value="<?php echo $cpd_datemin; ?>" size="10" />
40
- <?php _e('End', 'cpd'); ?>:
41
- <input type="text" name="datemax" value="<?php echo $cpd_datemax; ?>" size="10" />
42
- <?php _e('PostID', 'cpd'); ?>:
43
- <input type="text" name="page" value="<?php echo $cpd_page; ?>" size="5" />
44
- <input type="submit" value="<?php _e('show', 'cpd') ?>" />
45
- </p>
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>';
98
- echo '<b>'.$cpd_new.'</b>';
99
- echo $cpd_date_str.'</li>';
100
- }
101
- echo '</ol>';
102
- if ($count_per_day->options['debug']) $count_per_day->showQueries();
103
- ?>
104
- </body>
105
- </html>