Count per Day - Version 3.3

Version Description

  • New: List of most industrious Visitors
  • New: Export data as CSV file
  • New: count given post types only
  • New: Shortcode CPD_FLOTCHART to show the big chart
  • New: Popular Posts Widget, thanks to Maurits van der Schee http://www.leaseweblabs.com/2014/01/popular-posts-count-per-day-wordpress-plugin
  • New: Part of IP adresses in Bot List, '192.168' will block all visitors from '192.168.x.x'
  • New language: Chinese, thanks to Siyuan Tang
  • Bugfix: counting of cached pages
  • Bugfix: cleaning database, delete entries per IP in bot list
  • some little fixes
Download this release

Release Info

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

Code changes from version 3.2.10 to 3.3

counter-core.php CHANGED
@@ -49,10 +49,7 @@ function init()
49
  // manual debug mode
50
  if (!empty($_GET['debug']) && WP_DEBUG )
51
  $this->options['debug'] = 1;
52
- // $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
53
  $this->dir = plugins_url('/'.$cpd_dir_name);
54
- // var_dump($this->dir);
55
- // content_url()
56
 
57
  $this->queries[0] = 0;
58
 
@@ -69,11 +66,8 @@ function init()
69
  // javascript to count cached posts
70
  if ($this->options['ajax'])
71
  {
72
- // wp_enqueue_script('jquery');
73
  add_action('wp_enqueue_scripts', array(&$this,'addJquery'));
74
  add_action('wp_footer', array(&$this,'addAjaxScript'));
75
- // auch in addJQuery?
76
-
77
  }
78
 
79
  if (is_admin())
@@ -88,24 +82,6 @@ function init()
88
  add_action('admin_menu', array(&$this,'setAdminMenu'));
89
  // counter column posts lists
90
  add_action('admin_head', array(&$this,'addPostTypesColumns'));
91
-
92
- // column page list
93
- // add_action('manage_pages_custom_column', array(&$this,'cpdColumnContent'), 10, 2);
94
- // add_filter('manage_edit-page_columns', array(&$this,'cpdColumn'));
95
-
96
- // add_action('manage_posts_custom_column', array(&$this,'cpdColumnContent'), 10, 2);
97
-
98
- // add_filter('manage_posts_columns', array(&$this,'cpdColumn'));
99
-
100
- // add_filter('manage_edit-post_columns', array(&$this,'cpdColumn'));
101
-
102
- // add_filter('manage_edit-post_sortable_columns', array(&$this,'cpdSortableColumns'));
103
- // add_filter('request', array(&$this,'cpdReadsOrderby'));
104
-
105
-
106
-
107
-
108
-
109
  // adds javascript
110
  add_action('admin_head', array(&$this,'addJS'));
111
  // check version
@@ -179,8 +155,8 @@ function addJquery()
179
  function addThickbox()
180
  {
181
  wp_enqueue_script('thickbox');
182
- if (strpos($_SERVER['QUERY_STRING'], 'cpd_metaboxes') !== false)
183
- wp_enqueue_script('cpd_flot', $this->dir.'/js/jquery.flot.min.js', 'jQuery');
184
  }
185
 
186
 
@@ -200,13 +176,12 @@ function startSession()
200
  * @param string|array $sql sql query [and args]
201
  * @param string $func name for debug info
202
  */
203
- function mysqlQuery( $kind = '', $sql, $func = '' )
204
  {
205
  global $wpdb;
206
  if (empty($sql))
207
  return;
208
  $t = microtime(true);
209
- $con = $wpdb->dbh;
210
 
211
  if ( is_array($sql) )
212
  {
@@ -224,22 +199,20 @@ function mysqlQuery( $kind = '', $sql, $func = '' )
224
  if ($kind == 'var')
225
  $r = $wpdb->get_var( $preparedSql );
226
  else if ($kind == 'count')
227
- {
228
- // $sql = 'SELECT COUNT(*) FROM ('.trim($sql,';').') t';
229
  $r = $wpdb->get_var('SELECT COUNT(*) FROM ('.trim($preparedSql,';').') t');
230
- }
231
  else if ($kind == 'rows')
232
- {
233
  $r = $wpdb->get_results( $preparedSql );
234
- }
235
  else
236
  $wpdb->query( $preparedSql );
237
 
238
  if ( $this->options['debug'] )
239
  {
 
 
 
240
  $d = number_format( microtime(true) - $t , 5);
241
  $m = sprintf("%.2f", memory_get_usage()/1048576).' MB';
242
- $error = (!$r && mysql_errno($con)) ? '<b style="color:red">ERROR:</b> '.mysql_errno($con).' - '.mysql_error($con).' - ' : '';
243
  $this->queries[] = $func." : <b>$d</b> - $m<br/><code>$preparedSql</code><br/>$error";
244
  $this->queries[0] += $d;
245
  }
@@ -339,7 +312,7 @@ function isBot( $client = '', $bots = '', $ip = '', $ref = '' )
339
  $ip = $_SERVER['REMOTE_ADDR'];
340
  if ( empty($ref) && isset($_SERVER['HTTP_REFERER']) )
341
  $ref = $_SERVER['HTTP_REFERER'];
342
-
343
  // empty/short client -> not normal browser -> bot
344
  if ( empty($client) || strlen($client) < 20 )
345
  return true;
@@ -353,7 +326,14 @@ function isBot( $client = '', $bots = '', $ip = '', $ref = '' )
353
  if (!$isBot) // loop until first bot was found only
354
  {
355
  $b = trim($bot);
356
- if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false || strpos( strtolower($ref), strtolower($b) ) !== false ) )
 
 
 
 
 
 
 
357
  $isBot = true;
358
  }
359
  }
@@ -489,6 +469,8 @@ function createTables()
489
  function register_widgets()
490
  {
491
  register_widget('CountPerDay_Widget');
 
 
492
  }
493
 
494
  /**
@@ -497,13 +479,18 @@ function register_widgets()
497
  function showQueries()
498
  {
499
  global $wpdb, $cpd_path, $cpd_version;
 
 
 
 
500
  echo '<div style="position:absolute;margin:10px;padding:10px;border:1px red solid;background:#fff;clear:both">
501
  <b>Count per Day - DEBUG: '.round($this->queries[0], 3).' s</b><ol>'."\n";
 
502
  echo '<li>'
503
  .'<b>Server:</b> '.$_SERVER['SERVER_SOFTWARE'].'<br/>'
504
  .'<b>PHP:</b> '.phpversion().'<br/>'
505
- .'<b>mySQL Server:</b> '.mysql_get_server_info($wpdb->dbh).'<br/>'
506
- .'<b>mySQL Client:</b> '.mysql_get_client_info().'<br/>'
507
  .'<b>WordPress:</b> '.get_bloginfo('version').'<br/>'
508
  .'<b>Count per Day:</b> '.$cpd_version.'<br/>'
509
  .'<b>Time for Count per Day:</b> '.date_i18n('Y-m-d H:i').'<br/>'
@@ -577,9 +564,10 @@ function addAjaxScript()
577
  <script type="text/javascript">
578
  // Count per Day
579
  //<![CDATA[
 
580
  jQuery(document).ready( function()
581
  {
582
- jQuery.get('{$this->dir}/ajax.php?f=count&page={$this->page}&time={$time}', function(text)
583
  {
584
  var cpd_funcs = text.split('|');
585
  for(var i = 0; i < cpd_funcs.length; i++)
@@ -611,15 +599,16 @@ function cleanDB()
611
 
612
  // delete by ip
613
  foreach( $bots as $ip )
614
- if ( ip2long($ip) !== false )
615
- $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE $this->ntoa(ip) LIKE '".$ip."%%", 'clenaDB_ip'.__LINE__);
616
 
617
  // delete by client
618
  foreach ($bots as $bot)
619
- $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE client LIKE '%%".$bot."%%'", 'cleanDB_client'.__LINE__);
 
620
 
621
  // delete if a previously countered page was deleted
622
- $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE page NOT IN ( SELECT id FROM $wpdb->posts) AND page > 0", 'cleanDB_delPosts'.__LINE__);
623
 
624
  $rows_after = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter", 'cleanDB '.__LINE__);
625
  return $rows_before - $rows_after;
@@ -817,7 +806,7 @@ function onShowPage()
817
  $data = '';
818
  ?>
819
  <div id="cpd-metaboxes" class="wrap">
820
- <h2><img src="<?php echo $this->img('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day - <?php _e('Statistics', 'cpd') ?></h2>
821
  <?php
822
  wp_nonce_field('cpd-metaboxes');
823
  wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
@@ -876,6 +865,7 @@ function addShortcodes()
876
  add_shortcode('CPD_DAY_MOST_READS', array(&$this,'shortDayWithMostReads'));
877
  add_shortcode('CPD_DAY_MOST_USERS', array(&$this,'shortDayWithMostUsers'));
878
  add_shortcode('CPD_SEARCHSTRINGS', array(&$this,'shortGetSearches'));
 
879
  }
880
  function shortShow() { return $this->show('', '', false, false); }
881
  function shortReadsTotal() { return $this->getReadsAll(true); }
@@ -901,6 +891,7 @@ function shortCountriesUsers(){ return $this->getCountries(0, true, true, true);
901
  function shortReferers() { return $this->getReferers(0, true, 0); }
902
  function shortDayWithMostReads(){ return $this->getDayWithMostReads(true, true); }
903
  function shortDayWithMostUsers(){ return $this->getDayWithMostUsers(true, true); }
 
904
  function shortMostVisitedPosts( $atts )
905
  {
906
  extract( shortcode_atts( array(
@@ -977,6 +968,77 @@ function getMassBots( $limit )
977
  return $this->mysqlQuery('rows', $sql, 'getMassBots '.__LINE__);
978
  }
979
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
980
  /**
981
  * backup the counter table to wp-content dir, gz-compressed if possible
982
  */
@@ -991,7 +1053,7 @@ function backup()
991
  $name = '/'.$tname;
992
 
993
  // wp-content or tempdir?
994
- $path = ( empty($_POST['downloadonly']) && is_writable(WP_CONTENT_DIR) ) ? WP_CONTENT_DIR.$name : tempnam('', 'cpd');
995
 
996
  // open file
997
  $f = ($gz) ? gzopen($path,'w9') : fopen($path,'w');
@@ -1024,7 +1086,7 @@ function backup()
1024
  $part = min(array( round($freeMemory/1000000)*500, $part ));
1025
 
1026
  // show progress
1027
- echo '<div id="cpd_progress" class="updated"><p>'.sprintf(__('Backup of %s entries in progress. Every point complies %s entries.', 'cpd'), $entries, $part).'<br />';
1028
  $this->flush_buffers();
1029
 
1030
  // get data
@@ -1095,7 +1157,7 @@ function backup()
1095
  $toname = 'count_per_day_options_'.date_i18n('Y-m-d_H-i-s').'.txt';
1096
  if ($gz) $toname .= '.gz';
1097
  $oname = '/'.$toname;
1098
- $opath = ( empty($_POST['downloadonly']) && is_writable(WP_CONTENT_DIR) ) ? WP_CONTENT_DIR.$oname : tempnam('', 'cpd');
1099
  $f = ($gz) ? gzopen($opath,'w9') : fopen($opath,'w');
1100
 
1101
  foreach (array('count_per_day', 'count_per_day_summary', 'count_per_day_collected', 'count_per_day_posts', 'count_per_day_notes') as $o)
@@ -1461,7 +1523,7 @@ function getSearchString()
1461
  function cpdColumn($defaults)
1462
  {
1463
  if ( $this->options['show_in_lists'] )
1464
- $defaults['cpd_reads'] = '<img src="'.$this->img('cpd_menu.gif').'" alt="'.__('Reads', 'cpd').'" title="'.__('Reads', 'cpd').'" style="width:12px;height:12px;" />';
1465
  return $defaults;
1466
  }
1467
 
49
  // manual debug mode
50
  if (!empty($_GET['debug']) && WP_DEBUG )
51
  $this->options['debug'] = 1;
 
52
  $this->dir = plugins_url('/'.$cpd_dir_name);
 
 
53
 
54
  $this->queries[0] = 0;
55
 
66
  // javascript to count cached posts
67
  if ($this->options['ajax'])
68
  {
 
69
  add_action('wp_enqueue_scripts', array(&$this,'addJquery'));
70
  add_action('wp_footer', array(&$this,'addAjaxScript'));
 
 
71
  }
72
 
73
  if (is_admin())
82
  add_action('admin_menu', array(&$this,'setAdminMenu'));
83
  // counter column posts lists
84
  add_action('admin_head', array(&$this,'addPostTypesColumns'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  // adds javascript
86
  add_action('admin_head', array(&$this,'addJS'));
87
  // check version
155
  function addThickbox()
156
  {
157
  wp_enqueue_script('thickbox');
158
+ // if (strpos($_SERVER['QUERY_STRING'], 'cpd_metaboxes') !== false)
159
+ // wp_enqueue_script('cpd_flot', $this->dir.'/js/jquery.flot.min.js', 'jQuery');
160
  }
161
 
162
 
176
  * @param string|array $sql sql query [and args]
177
  * @param string $func name for debug info
178
  */
179
+ function mysqlQuery( $kind = '', $sql = '', $func = '' )
180
  {
181
  global $wpdb;
182
  if (empty($sql))
183
  return;
184
  $t = microtime(true);
 
185
 
186
  if ( is_array($sql) )
187
  {
199
  if ($kind == 'var')
200
  $r = $wpdb->get_var( $preparedSql );
201
  else if ($kind == 'count')
 
 
202
  $r = $wpdb->get_var('SELECT COUNT(*) FROM ('.trim($preparedSql,';').') t');
 
203
  else if ($kind == 'rows')
 
204
  $r = $wpdb->get_results( $preparedSql );
 
205
  else
206
  $wpdb->query( $preparedSql );
207
 
208
  if ( $this->options['debug'] )
209
  {
210
+ $con = $wpdb->dbh;
211
+ $errno = (isset($con->errno)) ? $con->errno : mysql_errno($con);
212
+ $error = (isset($con->error)) ? $con->error : mysql_error($con);
213
  $d = number_format( microtime(true) - $t , 5);
214
  $m = sprintf("%.2f", memory_get_usage()/1048576).' MB';
215
+ $error = (!$r && $errno) ? '<b style="color:red">ERROR:</b> '.$errno.' - '.$error.' - ' : '';
216
  $this->queries[] = $func." : <b>$d</b> - $m<br/><code>$preparedSql</code><br/>$error";
217
  $this->queries[0] += $d;
218
  }
312
  $ip = $_SERVER['REMOTE_ADDR'];
313
  if ( empty($ref) && isset($_SERVER['HTTP_REFERER']) )
314
  $ref = $_SERVER['HTTP_REFERER'];
315
+
316
  // empty/short client -> not normal browser -> bot
317
  if ( empty($client) || strlen($client) < 20 )
318
  return true;
326
  if (!$isBot) // loop until first bot was found only
327
  {
328
  $b = trim($bot);
329
+ if ( !empty($b)
330
+ && (
331
+ $ip == $b
332
+ || strpos( $ip, $b ) === 0
333
+ || strpos( strtolower($client), strtolower($b) ) !== false
334
+ || strpos( strtolower($ref), strtolower($b) ) !== false
335
+ )
336
+ )
337
  $isBot = true;
338
  }
339
  }
469
  function register_widgets()
470
  {
471
  register_widget('CountPerDay_Widget');
472
+ register_widget('CountPerDay_PopularPostsWidget');
473
+
474
  }
475
 
476
  /**
479
  function showQueries()
480
  {
481
  global $wpdb, $cpd_path, $cpd_version;
482
+
483
+ $serverinfo = (isset($wpdb->dbh->server_info)) ? $wpdb->dbh->server_info : mysql_get_server_info($wpdb->dbh);
484
+ $clientinfo = (isset($wpdb->dbh->client_info)) ? $wpdb->dbh->client_info : mysql_get_client_info();
485
+
486
  echo '<div style="position:absolute;margin:10px;padding:10px;border:1px red solid;background:#fff;clear:both">
487
  <b>Count per Day - DEBUG: '.round($this->queries[0], 3).' s</b><ol>'."\n";
488
+ // var_dump($wpdb->dbh);
489
  echo '<li>'
490
  .'<b>Server:</b> '.$_SERVER['SERVER_SOFTWARE'].'<br/>'
491
  .'<b>PHP:</b> '.phpversion().'<br/>'
492
+ .'<b>mySQL Server:</b> '.$serverinfo.'<br/>'
493
+ .'<b>mySQL Client:</b> '.$clientinfo.'<br/>'
494
  .'<b>WordPress:</b> '.get_bloginfo('version').'<br/>'
495
  .'<b>Count per Day:</b> '.$cpd_version.'<br/>'
496
  .'<b>Time for Count per Day:</b> '.date_i18n('Y-m-d H:i').'<br/>'
564
  <script type="text/javascript">
565
  // Count per Day
566
  //<![CDATA[
567
+ var cpdTime = new Date().getTime() / 1000;
568
  jQuery(document).ready( function()
569
  {
570
+ jQuery.get('{$this->dir}/ajax.php?f=count&page={$this->page}&time='+cpdTime, function(text)
571
  {
572
  var cpd_funcs = text.split('|');
573
  for(var i = 0; i < cpd_funcs.length; i++)
599
 
600
  // delete by ip
601
  foreach( $bots as $ip )
602
+ if ( intval($ip) > 0 )
603
+ $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE {$this->ntoa}(ip) LIKE '".$ip."%'", 'clenaDB_ip '.__LINE__);
604
 
605
  // delete by client
606
  foreach ($bots as $bot)
607
+ if ( intval($bot) == 0 )
608
+ $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE client LIKE '%".$bot."%'", 'cleanDB_client '.__LINE__);
609
 
610
  // delete if a previously countered page was deleted
611
+ $this->mysqlQuery('', "DELETE FROM $wpdb->cpd_counter WHERE page NOT IN ( SELECT id FROM $wpdb->posts) AND page > 0", 'cleanDB_delPosts '.__LINE__);
612
 
613
  $rows_after = $this->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter", 'cleanDB '.__LINE__);
614
  return $rows_before - $rows_after;
806
  $data = '';
807
  ?>
808
  <div id="cpd-metaboxes" class="wrap">
809
+ <h2><img src="<?php echo $count_per_day->img('cpd_logo.png') ?>" alt="Logo" class="cpd_logo" style="margin-left:8px" /> Count per Day - <?php _e('Statistics', 'cpd') ?></h2>
810
  <?php
811
  wp_nonce_field('cpd-metaboxes');
812
  wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
865
  add_shortcode('CPD_DAY_MOST_READS', array(&$this,'shortDayWithMostReads'));
866
  add_shortcode('CPD_DAY_MOST_USERS', array(&$this,'shortDayWithMostUsers'));
867
  add_shortcode('CPD_SEARCHSTRINGS', array(&$this,'shortGetSearches'));
868
+ add_shortcode('CPD_FLOTCHART', array(&$this,'shortFlotChart'));
869
  }
870
  function shortShow() { return $this->show('', '', false, false); }
871
  function shortReadsTotal() { return $this->getReadsAll(true); }
891
  function shortReferers() { return $this->getReferers(0, true, 0); }
892
  function shortDayWithMostReads(){ return $this->getDayWithMostReads(true, true); }
893
  function shortDayWithMostUsers(){ return $this->getDayWithMostUsers(true, true); }
894
+ function shortFlotChart() { return $this->getFlotChart(); }
895
  function shortMostVisitedPosts( $atts )
896
  {
897
  extract( shortcode_atts( array(
968
  return $this->mysqlQuery('rows', $sql, 'getMassBots '.__LINE__);
969
  }
970
 
971
+
972
+ /**
973
+ * backup the counter table to wp-content dir, gz-compressed if possible
974
+ */
975
+ function export( $days = 180 )
976
+ {
977
+ global $wpdb;
978
+ $t = $wpdb->cpd_counter;
979
+ $tname = $t.'_last_'.$days.'_days_'.date_i18n('Y-m-d_H-i-s').'.csv';
980
+ $path = tempnam('', 'cpdexport');
981
+
982
+ // open file
983
+ $f = fopen($path,'w');
984
+
985
+ if (!$f) :
986
+ echo '<div class="error"><p>'.__('Export failed! Cannot open file.', 'cpd').' '.$path.'.</p></div>';
987
+ else :
988
+ $part = (int) $this->options['backup_part'];
989
+ if (empty($part))
990
+ $part = 10000;
991
+ // check free memory, save 8MB for script, 5000 entries needs ~ 10MB
992
+ $freeMemory = ($this->getBytes(ini_get('memory_limit')) - memory_get_usage()) - 8000000;
993
+ $part = min(array( round($freeMemory/1000000)*500, $part ));
994
+ $start = 0;
995
+
996
+ fwrite($f, "date;ip;country;client;referer;post_cat_id;post_name;cat_tax_name;tax\r\n");
997
+
998
+ do
999
+ {
1000
+ $sql = "SELECT c.*,
1001
+ c.page post_id,
1002
+ p.post_title post,
1003
+ t.name tag_cat_name,
1004
+ x.taxonomy tax
1005
+ FROM `$t` c
1006
+ LEFT JOIN $wpdb->posts p
1007
+ ON p.id = c.page
1008
+ LEFT JOIN $wpdb->terms t
1009
+ ON t.term_id = 0 - c.page
1010
+ LEFT JOIN $wpdb->term_taxonomy x
1011
+ ON x.term_id = t.term_id
1012
+ WHERE c.date >= DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)
1013
+ GROUP BY c.id
1014
+ ORDER BY c.date
1015
+ LIMIT $start, $part";
1016
+ $rows = $this->mysqlQuery('rows', $sql, 'export '.__LINE__);
1017
+ foreach ($rows as $row)
1018
+ {
1019
+ $row = (array) $row;
1020
+ $line = '"'.$row['date'].'";"'.long2ip($row['ip']).'";"'.$row['country'].'";"'
1021
+ .str_replace('"', ' ', $row['client']).'";"'.str_replace('"', ' ', $row['referer']).'";"'
1022
+ .abs($row['page']).'";"'.str_replace('"', ' ', $row['post']).'";"'.str_replace('"', ' ', $row['tag_cat_name']).'";"'.$row['tax'].'"'."\r\n";
1023
+ fwrite($f, $line);
1024
+ }
1025
+ $start += $part;
1026
+ }
1027
+ while (count($rows) == $part);
1028
+
1029
+ fclose($f);
1030
+
1031
+ // show download link
1032
+ $tfile = basename($path);
1033
+ echo '<div class="updated"><p>';
1034
+ _e('Download the export file:', 'cpd');
1035
+ echo ' <a href="'.$this->dir.'/download.php?f='.$tfile.'&amp;n='.$tname.'">'.$tname.'</a><br/>';
1036
+ echo '</p></div>';
1037
+
1038
+ endif;
1039
+ }
1040
+
1041
+
1042
  /**
1043
  * backup the counter table to wp-content dir, gz-compressed if possible
1044
  */
1053
  $name = '/'.$tname;
1054
 
1055
  // wp-content or tempdir?
1056
+ $path = ( empty($_POST['downloadonly']) && is_writable(WP_CONTENT_DIR) ) ? WP_CONTENT_DIR.$name : tempnam('', 'cpdbackup');
1057
 
1058
  // open file
1059
  $f = ($gz) ? gzopen($path,'w9') : fopen($path,'w');
1086
  $part = min(array( round($freeMemory/1000000)*500, $part ));
1087
 
1088
  // show progress
1089
+ echo '<div id="cpd_progress" class="updated"><p>'.sprintf(__('Backup of %s entries in progress. Every point comprises %s entries.', 'cpd'), $entries, $part).'<br />';
1090
  $this->flush_buffers();
1091
 
1092
  // get data
1157
  $toname = 'count_per_day_options_'.date_i18n('Y-m-d_H-i-s').'.txt';
1158
  if ($gz) $toname .= '.gz';
1159
  $oname = '/'.$toname;
1160
+ $opath = ( empty($_POST['downloadonly']) && is_writable(WP_CONTENT_DIR) ) ? WP_CONTENT_DIR.$oname : tempnam('', 'cpdbackup');
1161
  $f = ($gz) ? gzopen($opath,'w9') : fopen($opath,'w');
1162
 
1163
  foreach (array('count_per_day', 'count_per_day_summary', 'count_per_day_collected', 'count_per_day_posts', 'count_per_day_notes') as $o)
1523
  function cpdColumn($defaults)
1524
  {
1525
  if ( $this->options['show_in_lists'] )
1526
+ $defaults['cpd_reads'] = '<img src="'.$this->img('cpd_logo.png').'" alt="'.__('Reads', 'cpd').'" title="'.__('Reads', 'cpd').'" style="width:16px;height:16px;" />';
1527
  return $defaults;
1528
  }
1529
 
counter-options.php CHANGED
@@ -4,8 +4,6 @@
4
  * Count Per Day - Options and Administration
5
  */
6
 
7
- $mysiteurl = substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'counter-options.php') + 19);
8
-
9
  // check form
10
  if(!empty($_POST['do']))
11
  {
@@ -13,11 +11,13 @@ if(!empty($_POST['do']))
13
  {
14
  // update options
15
  case 'cpd_update' :
 
16
  $count_per_day->options['onlinetime'] = $_POST['cpd_onlinetime'];
17
  $count_per_day->options['user'] = empty( $_POST['cpd_user'] ) ? 0 : 1 ;
18
  $count_per_day->options['user_level'] = $_POST['cpd_user_level'];
19
  $count_per_day->options['autocount'] = empty( $_POST['cpd_autocount'] ) ? 0 : 1 ;
20
  $count_per_day->options['bots'] = $_POST['cpd_bots'];
 
21
  $count_per_day->options['dashboard_posts'] = $_POST['cpd_dashboard_posts'];
22
  $count_per_day->options['dashboard_last_posts'] = $_POST['cpd_dashboard_last_posts'];
23
  $count_per_day->options['dashboard_last_days'] = $_POST['cpd_dashboard_last_days'];
@@ -106,6 +106,11 @@ if(!empty($_POST['do']))
106
  echo '<div class="updated"><p>'.sprintf(__('Mass Bots cleaned. %s counts deleted.', 'cpd'), $sum).'</p></div>';
107
  }
108
  break;
 
 
 
 
 
109
 
110
  // clean database
111
  case 'cpd_clean' :
@@ -281,7 +286,7 @@ if(!empty($_POST['do']))
281
  }
282
 
283
  // save collection
284
- echo "<br />".__('Delete old data...', 'cpd')."\n";
285
  $count_per_day->flush_buffers();
286
 
287
  update_option('count_per_day_summary', $s);
@@ -391,24 +396,31 @@ switch($mode) {
391
  $o['massbotlimit'] = (int) $_POST['limit'];
392
  update_option('count_per_day', $o);
393
  }
 
 
394
  ?>
395
- <div id="cpdtools" style="position:absolute;top:-31px;height:0x;"></div>
396
  <div id="cpdtoolccs" class="wrap">
397
 
398
- <h2 class="nav-tab-wrapper" style="padding-bottom:0;margin-bottom:20px;">
399
- <img src="<?php echo $count_per_day->img('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day
400
- <a class="nav-tab nav-tab-active" href="#cpdtools"><span class="cpd_icon cpd_tools">&nbsp;</span> <?php _e('Tools') ?></a>
401
- <a class="nav-tab" href="#cpdsettings"><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Settings') ?></a>
 
402
  </h2>
403
-
404
  <div id="poststuff" class="cpd_settings">
405
-
 
 
 
 
406
  <?php // mass bots ?>
407
  <div class="postbox">
408
  <?php
409
  $limit = (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25;
410
  $limit = (isset($_POST['limit'])) ? $_POST['limit'] : $limit;
411
- $limit_input = '<input type="text" size="3" name="limit" value="'.$limit.'" />';
412
 
413
  if ( $limit == 0 )
414
  $limit = 50;
@@ -416,7 +428,7 @@ switch($mode) {
416
  ?>
417
  <h3><span class="cpd_icon cpd_massbots">&nbsp;</span> <?php _e('Mass Bots', 'cpd') ?></h3>
418
  <div class="inside">
419
- <form method="post" action="<?php echo $mysiteurl ?>#cpdtools">
420
  <p>
421
  <?php printf(__('Show all IPs with more than %s page views per day', 'cpd'), $limit_input) ?>
422
  <input type="submit" name="showmassbots" value="<?php _e('show', 'cpd') ?>" class="button" />
@@ -468,9 +480,81 @@ switch($mode) {
468
  </div>
469
  </div>
470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
471
  <!-- left column -->
472
  <div class="cpd_halfsize" style="margin-right: 2%;">
473
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
474
  <!-- Backup -->
475
  <div class="postbox">
476
  <h3><span class="cpd_icon cpd_backup">&nbsp;</span> <?php _e('Backup', 'cpd') ?></h3>
@@ -732,15 +816,11 @@ switch($mode) {
732
 
733
  </div> <!-- right column -->
734
 
735
- <div class="clear" id="cpdsettings" style="margin-bottom:41px"></div>
736
-
737
- <h2 class="nav-tab-wrapper" style="padding-bottom:0;font-size:23px;">
738
- <img src="<?php echo $count_per_day->img('cpd_menu.gif') ?>" alt="" style="width:24px;height:24px" /> Count per Day
739
- <a class="nav-tab" href="#cpdtools"><span class="cpd_icon cpd_tools">&nbsp;</span> <?php _e('Tools') ?></a>
740
- <a class="nav-tab nav-tab-active" href="#cpdsettings"><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Settings') ?></a>
741
- </h2>
742
-
743
-
744
  <form method="post" action="<?php echo $mysiteurl ?>">
745
 
746
  <?php // counter ?>
@@ -749,11 +829,11 @@ switch($mode) {
749
 
750
  <table class="form-table">
751
  <tr>
752
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Online time', 'cpd') ?>:</th>
753
  <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>
754
  </tr>
755
  <tr>
756
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Logged on Users', 'cpd') ?>:</th>
757
  <td>
758
  <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>
759
  - <?php _e('until User Level', 'cpd') ?>
@@ -767,23 +847,23 @@ switch($mode) {
767
  </td>
768
  </tr>
769
  <tr>
770
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Auto counter', 'cpd') ?>:</th>
771
  <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>
772
  </tr>
773
  <tr>
774
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Bots to ignore', 'cpd') ?>:</th>
775
  <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
776
  </tr>
777
  <tr>
778
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Anonymous IP', 'cpd') ?>:</th>
779
  <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>
780
  </tr>
781
  <tr>
782
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Cache', 'cpd') ?> (beta):</th>
783
  <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>
784
  </tr>
785
  <tr>
786
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Clients and referrers', 'cpd') ?>:</th>
787
  <td>
788
  <label for="cpd_referers"><input type="checkbox" name="cpd_referers" id="cpd_referers" <?php checked($o['referers'], 1) ?> />
789
  <?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/>
@@ -791,6 +871,16 @@ switch($mode) {
791
  <?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>
792
  </td>
793
  </tr>
 
 
 
 
 
 
 
 
 
 
794
  </table>
795
  </fieldset>
796
 
@@ -812,7 +902,7 @@ switch($mode) {
812
 
813
  <table class="form-table">
814
  <tr>
815
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Who can see it', 'cpd') ?>:</th>
816
  <td>
817
  <?php $cus = (in_array($o['whocansee'], array('manage_options','manage_links','publish_posts','edit_posts','read'))) ? 0 : 1 ?>
818
  <select id="cpd_whocansee" name="cpd_whocansee" onchange="checkcustom()">
@@ -831,45 +921,45 @@ switch($mode) {
831
  </td>
832
  </tr>
833
  <tr>
834
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Visitors per post', 'cpd') ?>:</th>
835
  <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>
836
  </tr>
837
  <tr>
838
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Latest Counts - Posts', 'cpd') ?>:</th>
839
  <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>
840
  </tr>
841
  <tr>
842
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Latest Counts - Days', 'cpd') ?>:</th>
843
  <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>
844
  </tr>
845
  <tr>
846
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Chart - Days', 'cpd') ?>:</th>
847
  <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>
848
  </tr>
849
  <tr>
850
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Chart - Height', 'cpd') ?>:</th>
851
  <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>
852
  </tr>
853
  <?php if ($cpd_geoip) { ?>
854
  <tr>
855
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Countries', 'cpd') ?>:</th>
856
  <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>
857
  </tr>
858
  <?php } ?>
859
  <tr>
860
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Browsers', 'cpd') ?>:</th>
861
- <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>
862
  </tr>
863
  <tr>
864
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Search strings', 'cpd') ?>/<?php _e('Referrers - Entries', 'cpd') ?>:</th>
865
  <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>
866
  </tr>
867
  <tr>
868
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Search strings', 'cpd') ?>/<?php _e('Referrers - Days', 'cpd') ?>:</th>
869
  <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>
870
  </tr>
871
  <tr>
872
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Local URLs', 'cpd') ?>:</th>
873
  <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>
874
  </tr>
875
  </table>
@@ -880,7 +970,7 @@ switch($mode) {
880
  <legend><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Posts') ?> / <?php _e('Pages') ?></legend>
881
  <table class="form-table">
882
  <tr>
883
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Show in lists', 'cpd') ?>:</th>
884
  <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>
885
  </tr>
886
  </table>
@@ -896,15 +986,15 @@ switch($mode) {
896
  </th>
897
  </tr>
898
  <tr>
899
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Start date', 'cpd') ?>:</th>
900
  <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>
901
  </tr>
902
  <tr>
903
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Start count', 'cpd') ?>:</th>
904
  <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>
905
  </tr>
906
  <tr>
907
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Start count', 'cpd') ?>:</th>
908
  <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>
909
  </tr>
910
  </table>
@@ -915,7 +1005,7 @@ switch($mode) {
915
  <legend><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Stylesheet', 'cpd') ?></legend>
916
  <table class="form-table">
917
  <tr>
918
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('NO Stylesheet in Frontend', 'cpd') ?>:</th>
919
  <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>
920
  </tr>
921
  </table>
@@ -926,7 +1016,7 @@ switch($mode) {
926
  <legend><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Backup', 'cpd') ?></legend>
927
  <table class="form-table">
928
  <tr>
929
- <th scope="row" style="vertical-align:middle;white-space:nowrap"><?php _e('Entries per pass', 'cpd') ?>:</th>
930
  <td>
931
  <input class="code" type="text" name="cpd_backup_part" size="10" value="<?php echo $o['backup_part']; ?>" />
932
  <?php _e('How many entries should be saved per pass? Default: 10000', 'cpd') ?><br/>
@@ -953,6 +1043,9 @@ switch($mode) {
953
  </form>
954
 
955
  </div><!-- poststuff -->
 
 
 
956
  </div><!-- wrap -->
957
 
958
  <?php } // End switch($mode)
4
  * Count Per Day - Options and Administration
5
  */
6
 
 
 
7
  // check form
8
  if(!empty($_POST['do']))
9
  {
11
  {
12
  // update options
13
  case 'cpd_update' :
14
+ $_POST['cpd_bots'] = preg_replace('/\r\n\r\n/', '', $_POST['cpd_bots']);
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['user_level'] = $_POST['cpd_user_level'];
18
  $count_per_day->options['autocount'] = empty( $_POST['cpd_autocount'] ) ? 0 : 1 ;
19
  $count_per_day->options['bots'] = $_POST['cpd_bots'];
20
+ $count_per_day->options['posttypes'] = str_replace(' ', '', $_POST['cpd_posttypes']);
21
  $count_per_day->options['dashboard_posts'] = $_POST['cpd_dashboard_posts'];
22
  $count_per_day->options['dashboard_last_posts'] = $_POST['cpd_dashboard_last_posts'];
23
  $count_per_day->options['dashboard_last_days'] = $_POST['cpd_dashboard_last_days'];
106
  echo '<div class="updated"><p>'.sprintf(__('Mass Bots cleaned. %s counts deleted.', 'cpd'), $sum).'</p></div>';
107
  }
108
  break;
109
+
110
+ // clean database
111
+ case 'cpd_export' :
112
+ $count_per_day->export($_POST['cpd_exportdays']);
113
+ break;
114
 
115
  // clean database
116
  case 'cpd_clean' :
286
  }
287
 
288
  // save collection
289
+ echo "<br />".__('Deleting old data...', 'cpd')."\n";
290
  $count_per_day->flush_buffers();
291
 
292
  update_option('count_per_day_summary', $s);
396
  $o['massbotlimit'] = (int) $_POST['limit'];
397
  update_option('count_per_day', $o);
398
  }
399
+
400
+ $active_tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'tools';
401
  ?>
402
+
403
  <div id="cpdtoolccs" class="wrap">
404
 
405
+ <h2><img src="<?php echo $count_per_day->img('cpd_logo.png') ?>" alt="Logo" class="cpd_logo" /> Count per Day</h2>
406
+
407
+ <h2 class="nav-tab-wrapper">
408
+ <a href="?page=count-per-day/counter-options.php&amp;tab=tools" class="nav-tab <?php echo $active_tab == 'tools' ? 'nav-tab-active' : ''; ?>"><span class="cpd_icon cpd_tools">&nbsp;</span> <?php _e('Tools') ?></a>
409
+ <a href="?page=count-per-day/counter-options.php&amp;tab=options" class="nav-tab <?php echo $active_tab == 'options' ? 'nav-tab-active' : ''; ?>"><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Settings') ?></a>
410
  </h2>
411
+
412
  <div id="poststuff" class="cpd_settings">
413
+
414
+ <?php if( $active_tab == 'tools' ) : ?>
415
+
416
+ <?php $mysiteurl = substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'counter-options.php') + 19).'&amp;tab=tools'; ?>
417
+
418
  <?php // mass bots ?>
419
  <div class="postbox">
420
  <?php
421
  $limit = (isset($o['massbotlimit'])) ? $o['massbotlimit'] : 25;
422
  $limit = (isset($_POST['limit'])) ? $_POST['limit'] : $limit;
423
+ $limit_input = '<input type="text" size="3" name="limit" value="'.$limit.'" style="text-align:center" />';
424
 
425
  if ( $limit == 0 )
426
  $limit = 50;
428
  ?>
429
  <h3><span class="cpd_icon cpd_massbots">&nbsp;</span> <?php _e('Mass Bots', 'cpd') ?></h3>
430
  <div class="inside">
431
+ <form method="post" action="<?php echo $mysiteurl ?>">
432
  <p>
433
  <?php printf(__('Show all IPs with more than %s page views per day', 'cpd'), $limit_input) ?>
434
  <input type="submit" name="showmassbots" value="<?php _e('show', 'cpd') ?>" class="button" />
480
  </div>
481
  </div>
482
 
483
+
484
+ <?php // industrious visitors ?>
485
+ <div class="postbox">
486
+ <?php
487
+ $limit = (!empty($_POST['vislimit'])) ? intval($_POST['vislimit']) : 10;
488
+ $limit_input = '<input type="text" size="3" name="vislimit" value="'.$limit.'" style="text-align:center" />';
489
+ $days = (!empty($_POST['visdays'])) ? intval($_POST['visdays']) : 7;
490
+ $days_input = '<input type="text" size="3" name="visdays" value="'.$days.'" style="text-align:center" />';
491
+ $list = $count_per_day->getLastVisitors( $days, $limit );
492
+ ?>
493
+ <h3><span class="cpd_icon cpd_massbots">&nbsp;</span> <?php _e('Most Industrious Visitors', 'cpd') ?></h3>
494
+ <div class="inside">
495
+ <form method="post" action="<?php echo $mysiteurl ?>#cpdtools">
496
+ <p>
497
+ <?php printf(__('Show the %s most industrious visitors of the last %s days', 'cpd'), $limit_input, $days_input) ?>
498
+ <input type="submit" name="showlastvisitors" value="<?php _e('show', 'cpd') ?>" class="button" />
499
+ </p>
500
+ </form>
501
+
502
+ <form method="post" action="<?php echo $mysiteurl ?>">
503
+ <table class="widefat post">
504
+ <thead>
505
+ <tr>
506
+ <th><?php _e('IP', 'cpd') ?></th>
507
+ <th><?php _e('Date', 'cpd') ?></th>
508
+ <th><?php _e('Client', 'cpd') ?></th>
509
+ <th style="text-align:right"><?php _e('Views', 'cpd') ?></th>
510
+ </tr>
511
+ </thead>
512
+ <?php
513
+ foreach ($list as $row)
514
+ {
515
+ $ip = $row->ip;
516
+ echo '<tr><td style="white-space:nowrap">';
517
+ if ( $cpd_geoip )
518
+ {
519
+ $c = CpdGeoIp::getCountry($ip);
520
+ echo $c[1].' &nbsp;';
521
+ }
522
+ echo '<a href="?page=count-per-day/counter-options.php&amp;dmbip='.$row->longip.'&amp;dmbdate='.$row->date.'"
523
+ title="'.sprintf(__('Delete these %s counts', 'cpd'), $row->posts).'"
524
+ style="color:red; font-weight: bold;">X</a> &nbsp;';
525
+ echo '<a href="http://www.utrace.de/?query='.$ip.'">'.$ip.'</a></td>'
526
+ .'<td style="white-space:nowrap;">'.mysql2date(get_option('date_format'), $row->date).'</td>'
527
+ .'<td>'.htmlentities($row->client).'</td>'
528
+ .'<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">'
529
+ .$row->posts.'</a></td>'
530
+ .'</tr>';
531
+ $sum += $row->posts;
532
+ }
533
+ ?>
534
+ </table>
535
+ </form>
536
+ </div>
537
+ </div>
538
+
539
  <!-- left column -->
540
  <div class="cpd_halfsize" style="margin-right: 2%;">
541
 
542
+ <!-- Export -->
543
+ <div class="postbox">
544
+ <h3><span class="cpd_icon cpd_backup">&nbsp;</span> <?php _e('Export', 'cpd') ?></h3>
545
+ <div class="inside">
546
+ <form method="post" action="<?php echo $mysiteurl ?>">
547
+ <p>
548
+ <?php printf(__('Export the last %s days as CSV-File', 'cpd'), '<input type="text" size="4" name="cpd_exportdays" value="180" class="code" style="text-align:center" />'); ?>
549
+ </p>
550
+ <p>
551
+ <input type="hidden" name="do" value="cpd_export" />
552
+ <input type="submit" name="cpd_export" value="<?php _e('Export entries', 'cpd') ?>" class="button" />
553
+ </p>
554
+ </form>
555
+ </div>
556
+ </div>
557
+
558
  <!-- Backup -->
559
  <div class="postbox">
560
  <h3><span class="cpd_icon cpd_backup">&nbsp;</span> <?php _e('Backup', 'cpd') ?></h3>
816
 
817
  </div> <!-- right column -->
818
 
819
+
820
+ <?php else : // tools tab ?>
821
+
822
+ <?php $mysiteurl = substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'counter-options.php') + 19).'&amp;tab=options'; ?>
823
+
 
 
 
 
824
  <form method="post" action="<?php echo $mysiteurl ?>">
825
 
826
  <?php // counter ?>
829
 
830
  <table class="form-table">
831
  <tr>
832
+ <th scope="row" style="white-space:nowrap"><?php _e('Online time', 'cpd') ?>:</th>
833
  <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>
834
  </tr>
835
  <tr>
836
+ <th scope="row" style="white-space:nowrap"><?php _e('Logged on Users', 'cpd') ?>:</th>
837
  <td>
838
  <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>
839
  - <?php _e('until User Level', 'cpd') ?>
847
  </td>
848
  </tr>
849
  <tr>
850
+ <th scope="row" style="white-space:nowrap"><?php _e('Auto counter', 'cpd') ?>:</th>
851
  <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>
852
  </tr>
853
  <tr>
854
+ <th scope="row" style="white-space:nowrap"><?php _e('Bots to ignore', 'cpd') ?>:</th>
855
  <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
856
  </tr>
857
  <tr>
858
+ <th scope="row" style="white-space:nowrap"><?php _e('Anonymous IP', 'cpd') ?>:</th>
859
  <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>
860
  </tr>
861
  <tr>
862
+ <th scope="row" style="white-space:nowrap"><?php _e('Cache', 'cpd') ?> (beta):</th>
863
  <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>
864
  </tr>
865
  <tr>
866
+ <th scope="row" style="white-space:nowrap"><?php _e('Clients and referrers', 'cpd') ?>:</th>
867
  <td>
868
  <label for="cpd_referers"><input type="checkbox" name="cpd_referers" id="cpd_referers" <?php checked($o['referers'], 1) ?> />
869
  <?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/>
871
  <?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>
872
  </td>
873
  </tr>
874
+ <tr>
875
+ <th scope="row" style="white-space:nowrap"><?php _e('Post types', 'cpd') ?>:</th>
876
+ <td>
877
+ <input class="code" type="text" name="cpd_posttypes" size="50" value="<?php echo str_replace(',', ', ', $o['posttypes']); ?>" /><br/>
878
+ <?php _e('Only count these post types. Leave empty to count them all.', 'cpd') ?><br/>
879
+ <?php printf(__('Current post types: %s', 'cpd'), '<code>'.implode(', ', get_post_types()).'</code>'); ?>
880
+ </td>
881
+ </tr>
882
+
883
+
884
  </table>
885
  </fieldset>
886
 
902
 
903
  <table class="form-table">
904
  <tr>
905
+ <th scope="row" style="white-space:nowrap"><?php _e('Who can see it', 'cpd') ?>:</th>
906
  <td>
907
  <?php $cus = (in_array($o['whocansee'], array('manage_options','manage_links','publish_posts','edit_posts','read'))) ? 0 : 1 ?>
908
  <select id="cpd_whocansee" name="cpd_whocansee" onchange="checkcustom()">
921
  </td>
922
  </tr>
923
  <tr>
924
+ <th scope="row" style="white-space:nowrap"><?php _e('Visitors per post', 'cpd') ?>:</th>
925
  <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>
926
  </tr>
927
  <tr>
928
+ <th scope="row" style="white-space:nowrap"><?php _e('Latest Counts - Posts', 'cpd') ?>:</th>
929
  <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>
930
  </tr>
931
  <tr>
932
+ <th scope="row" style="white-space:nowrap"><?php _e('Latest Counts - Days', 'cpd') ?>:</th>
933
  <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>
934
  </tr>
935
  <tr>
936
+ <th scope="row" style="white-space:nowrap"><?php _e('Chart - Days', 'cpd') ?>:</th>
937
  <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>
938
  </tr>
939
  <tr>
940
+ <th scope="row" style="white-space:nowrap"><?php _e('Chart - Height', 'cpd') ?>:</th>
941
  <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>
942
  </tr>
943
  <?php if ($cpd_geoip) { ?>
944
  <tr>
945
+ <th scope="row" style="white-space:nowrap"><?php _e('Countries', 'cpd') ?>:</th>
946
  <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>
947
  </tr>
948
  <?php } ?>
949
  <tr>
950
+ <th scope="row" style="white-space:nowrap"><?php _e('Browsers', 'cpd') ?>:</th>
951
+ <td><input class="code" type="text" name="cpd_clients" size="50" value="<?php echo $o['clients']; ?>" /><br/><?php _e('Substring of the user agent, separated by comma', 'cpd') ?></td>
952
  </tr>
953
  <tr>
954
+ <th scope="row" style="white-space:nowrap"><?php _e('Search strings', 'cpd') ?>/<?php _e('Referrers - Entries', 'cpd') ?>:</th>
955
  <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>
956
  </tr>
957
  <tr>
958
+ <th scope="row" style="white-space:nowrap"><?php _e('Search strings', 'cpd') ?>/<?php _e('Referrers - Days', 'cpd') ?>:</th>
959
  <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>
960
  </tr>
961
  <tr>
962
+ <th scope="row" style="white-space:nowrap"><?php _e('Local URLs', 'cpd') ?>:</th>
963
  <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>
964
  </tr>
965
  </table>
970
  <legend><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Posts') ?> / <?php _e('Pages') ?></legend>
971
  <table class="form-table">
972
  <tr>
973
+ <th scope="row" style="white-space:nowrap"><?php _e('Show in lists', 'cpd') ?>:</th>
974
  <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>
975
  </tr>
976
  </table>
986
  </th>
987
  </tr>
988
  <tr>
989
+ <th scope="row" style="white-space:nowrap"><?php _e('Start date', 'cpd') ?>:</th>
990
  <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>
991
  </tr>
992
  <tr>
993
+ <th scope="row" style="white-space:nowrap"><?php _e('Start count', 'cpd') ?>:</th>
994
  <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>
995
  </tr>
996
  <tr>
997
+ <th scope="row" style="white-space:nowrap"><?php _e('Start count', 'cpd') ?>:</th>
998
  <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>
999
  </tr>
1000
  </table>
1005
  <legend><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Stylesheet', 'cpd') ?></legend>
1006
  <table class="form-table">
1007
  <tr>
1008
+ <th scope="row" style="white-space:nowrap"><?php _e('NO Stylesheet in Frontend', 'cpd') ?>:</th>
1009
  <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>
1010
  </tr>
1011
  </table>
1016
  <legend><span class="cpd_icon cpd_settings">&nbsp;</span> <?php _e('Backup', 'cpd') ?></legend>
1017
  <table class="form-table">
1018
  <tr>
1019
+ <th scope="row" style="white-space:nowrap"><?php _e('Entries per pass', 'cpd') ?>:</th>
1020
  <td>
1021
  <input class="code" type="text" name="cpd_backup_part" size="10" value="<?php echo $o['backup_part']; ?>" />
1022
  <?php _e('How many entries should be saved per pass? Default: 10000', 'cpd') ?><br/>
1043
  </form>
1044
 
1045
  </div><!-- poststuff -->
1046
+
1047
+ <?php endif; // tabs ?>
1048
+
1049
  </div><!-- wrap -->
1050
 
1051
  <?php } // End switch($mode)
counter.css CHANGED
@@ -47,26 +47,19 @@ h2 .cpd_icon {
47
  }
48
 
49
  .cpd_settings fieldset {
50
- margin: 5px 5px 10px;
51
  padding: 0 10px 0px;
52
  border: 1px solid #dfdfdf;
53
- border-radius: 3px;
54
- -moz-border-radius: 3px;
55
- -webkit-border-radius: 3px;
56
  background: #fafafa;
57
  }
58
 
59
  .cpd_settings legend {
60
  background: #eee;
61
  border: 1px solid #dfdfdf;
62
- border-radius: 3px;
63
- -moz-border-radius: 3px;
64
- -webkit-border-radius: 3px;
65
  margin: 0 10px;
66
  padding: 1px 7px 2px;
67
  text-shadow: 0 1px 0 #fff;
68
- font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
69
- font-size: 15px;
70
  }
71
 
72
  .cpd_settings .form-table {
@@ -82,7 +75,7 @@ h2 .cpd_icon {
82
  background: url(img/cpd_sprites.png) no-repeat top left;
83
  width: 16px;
84
  height: 16px;
85
- vertical-align: text-bottom;
86
  padding: 0 !important;
87
  }
88
  .cpd_backup{background-position: 0 0}
@@ -106,13 +99,25 @@ h2 .cpd_icon {
106
  .cpd_update{background-position: 0 -828px}
107
  .cpd_user{background-position: 0 -874px}
108
 
 
 
 
 
 
 
109
  /* dashboard */
110
 
111
  #cpd-flot-place {
112
  padding: 5px;
113
  background: #fff;
114
- border-radius: 3px;
115
  border: 1px #ccc solid;
 
 
 
 
 
 
 
116
  }
117
 
118
  #cpd-flot-choice {
@@ -133,7 +138,6 @@ h2 .cpd_icon {
133
  text-align: center;
134
  padding: 2px 4px;
135
  border: 1px solid #ddd;
136
- border-radius: 4px;
137
  background-color: #fff;
138
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
139
  }
47
  }
48
 
49
  .cpd_settings fieldset {
50
+ margin: 5px 5px 20px;
51
  padding: 0 10px 0px;
52
  border: 1px solid #dfdfdf;
 
 
 
53
  background: #fafafa;
54
  }
55
 
56
  .cpd_settings legend {
57
  background: #eee;
58
  border: 1px solid #dfdfdf;
 
 
 
59
  margin: 0 10px;
60
  padding: 1px 7px 2px;
61
  text-shadow: 0 1px 0 #fff;
62
+ font-size:15px;
 
63
  }
64
 
65
  .cpd_settings .form-table {
75
  background: url(img/cpd_sprites.png) no-repeat top left;
76
  width: 16px;
77
  height: 16px;
78
+ vertical-align: middle;
79
  padding: 0 !important;
80
  }
81
  .cpd_backup{background-position: 0 0}
99
  .cpd_update{background-position: 0 -828px}
100
  .cpd_user{background-position: 0 -874px}
101
 
102
+ .cpd_logo {
103
+ width: 32px;
104
+ height: 32px;
105
+ vertical-align: middle;
106
+ }
107
+
108
  /* dashboard */
109
 
110
  #cpd-flot-place {
111
  padding: 5px;
112
  background: #fff;
 
113
  border: 1px #ccc solid;
114
+ margin: 5px 8px;
115
+ }
116
+
117
+ #cpd-flot-place .button {
118
+ padding: 2px 10px;
119
+ height: 20px;
120
+ line-height: 14px;
121
  }
122
 
123
  #cpd-flot-choice {
138
  text-align: center;
139
  padding: 2px 4px;
140
  border: 1px solid #ddd;
 
141
  background-color: #fff;
142
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.4);
143
  }
counter.php CHANGED
@@ -3,14 +3,14 @@
3
  Plugin Name: Count Per Day
4
  Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
5
  Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
6
- Version: 3.2.10
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.2.10';
14
 
15
  if (strpos($_SERVER['SERVER_NAME'], '.test'))
16
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
@@ -82,6 +82,19 @@ function count( $x, $page = 'x' )
82
  // ajax counter on cached pages
83
  $page = (int) $page;
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  // get userlevel from role
86
  if (current_user_can('administrator')) $userlevel = 10;
87
  else if (current_user_can('editor')) $userlevel = 7;
@@ -136,7 +149,7 @@ function count( $x, $page = 'x' )
136
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
137
 
138
  if (!filter_var($userip, FILTER_VALIDATE_IP))
139
- $userip = ' 127.0.0.1';
140
 
141
  if ( strpos($userip,'.') !== false && strpos($userip,':') === false)
142
  {
@@ -227,7 +240,7 @@ function dashboardReadsAtAll()
227
  <li><?php _e('Visitors last week', 'cpd') ?>: <b><?php $this->getUserLastWeek() ?></b></li>
228
  <li><?php _e('Visitors', 'cpd') ?> <?php echo $thisMonth ?>: <b><?php $this->getUserThisMonth() ?></b></li>
229
  <li>&Oslash; <?php _e('Visitors per day', 'cpd') ?>: <b><?php $this->getUserPerDay($this->options['dashboard_last_days']) ?></b></li>
230
- <li><?php _e('Counter starts on', 'cpd') ?>: <b><?php $this->getFirstCount() ?></b></li>
231
  <li><?php _e('Most visited day', 'cpd') ?>: <b class="cpd-r"><?php $this->getDayWithMostReads(1) ?></b></li>
232
  <li><?php _e('Most visited day', 'cpd') ?>: <b class="cpd-r"><?php $this->getDayWithMostUsers(1) ?></b></li>
233
  </ul>
@@ -240,6 +253,8 @@ function dashboardReadsAtAll()
240
  */
241
  function getFlotChart( $limit = 0 )
242
  {
 
 
243
  global $wpdb;
244
  if ( $limit == 0 )
245
  $limit = (!empty($this->options['chart_days'])) ? $this->options['chart_days'] : 30;
@@ -881,6 +896,36 @@ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_n
881
  if ($return) return $r; else echo $r;
882
  }
883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  /**
885
  * shows little browser statistics
886
  */
@@ -1089,10 +1134,10 @@ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
1089
  }
1090
 
1091
  $r .= '<a href="'.get_bloginfo('url');
1092
- if ( $row->tax == 'category' )
1093
  // category
1094
  $r .= '?cat='.abs($row->post_id).'">- '.__($row->tag_cat_name).' ('.__('Category').') -';
1095
- else if ( $row->tax )
1096
  // tag
1097
  $r .= '?tag='.$row->tag_cat_slug.'">- '.__($row->tag_cat_name).' ('.__('Tag').') -';
1098
  else if ( $row->post_id == 0 )
@@ -1109,6 +1154,12 @@ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
1109
  return $r;
1110
  }
1111
 
 
 
 
 
 
 
1112
  /**
1113
  * shows searchstrings
1114
  */
@@ -1152,7 +1203,7 @@ function getSearches( $limit = 0, $days = 0, $return = false )
1152
  $r .= '<ul class="cpd_front_list">';
1153
  foreach ( $search as $day => $s )
1154
  if (is_array($s))
1155
- $r .= '<li><div style="font-weight:bold">'.$day.'</div> '.implode(', ', $s).'</li>'."\n";
1156
  $r .= '</ul>';
1157
  if ($return) return $r; else echo $r;
1158
  }
@@ -1256,7 +1307,7 @@ function getMap( $what = 'visitors', $width = 500, $height = 340, $min = 0 )
1256
 
1257
 
1258
  /**
1259
- widget class
1260
  */
1261
  class CountPerDay_Widget extends WP_Widget
1262
  {
@@ -1433,6 +1484,96 @@ class CountPerDay_Widget extends WP_Widget
1433
  }
1434
  } // widget class
1435
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1436
  /**
1437
  * uninstall function, deletes tables and options
1438
  */
3
  Plugin Name: Count Per Day
4
  Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
5
  Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
6
+ Version: 3.3
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.3';
14
 
15
  if (strpos($_SERVER['SERVER_NAME'], '.test'))
16
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
82
  // ajax counter on cached pages
83
  $page = (int) $page;
84
 
85
+ $pt = get_post_type($page);
86
+
87
+ // don't count these post type
88
+ if ( !empty($this->options['posttypes']) && !in_array($pt, explode(',', $this->options['posttypes'])) )
89
+ {
90
+ if ($this->options['debug'])
91
+ $this->queries[] = "Post Type: $pt - don't count it";
92
+ return;
93
+ }
94
+
95
+ if ($this->options['debug'])
96
+ $this->queries[] = "Post Type: $pt - count it";
97
+
98
  // get userlevel from role
99
  if (current_user_can('administrator')) $userlevel = 10;
100
  else if (current_user_can('editor')) $userlevel = 7;
149
  $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
150
 
151
  if (!filter_var($userip, FILTER_VALIDATE_IP))
152
+ $userip = '127.0.0.1';
153
 
154
  if ( strpos($userip,'.') !== false && strpos($userip,':') === false)
155
  {
240
  <li><?php _e('Visitors last week', 'cpd') ?>: <b><?php $this->getUserLastWeek() ?></b></li>
241
  <li><?php _e('Visitors', 'cpd') ?> <?php echo $thisMonth ?>: <b><?php $this->getUserThisMonth() ?></b></li>
242
  <li>&Oslash; <?php _e('Visitors per day', 'cpd') ?>: <b><?php $this->getUserPerDay($this->options['dashboard_last_days']) ?></b></li>
243
+ <li><?php _e('Since', 'cpd') ?>: <b><?php $this->getFirstCount() ?></b></li>
244
  <li><?php _e('Most visited day', 'cpd') ?>: <b class="cpd-r"><?php $this->getDayWithMostReads(1) ?></b></li>
245
  <li><?php _e('Most visited day', 'cpd') ?>: <b class="cpd-r"><?php $this->getDayWithMostUsers(1) ?></b></li>
246
  </ul>
253
  */
254
  function getFlotChart( $limit = 0 )
255
  {
256
+ wp_enqueue_script('cpd_flot', $this->dir.'/js/jquery.flot.min.js', 'jQuery');
257
+
258
  global $wpdb;
259
  if ( $limit == 0 )
260
  $limit = (!empty($this->options['chart_days'])) ? $this->options['chart_days'] : 30;
896
  if ($return) return $r; else echo $r;
897
  }
898
 
899
+ /**
900
+ * shows most visited pages in last days
901
+ * @param integer $days days to calc (last days)
902
+ * @param integer $limit count of visitors (last posts)
903
+ */
904
+ function getLastVisitors( $days = 0, $limit = 0 )
905
+ {
906
+ global $wpdb;
907
+ if ( $days == 0 )
908
+ $days = $this->options['dashboard_last_days'];
909
+ if ( $limit == 0 )
910
+ $limit = $this->options['dashboard_last_posts'];
911
+ $date = date_i18n('Y-m-d', current_time('timestamp') - 86400 * $days);
912
+
913
+ $sql = $wpdb->prepare("
914
+ SELECT COUNT(id) posts,
915
+ ip AS longip,
916
+ $this->ntoa(ip) AS ip,
917
+ date,
918
+ country,
919
+ client
920
+ FROM $wpdb->cpd_counter c
921
+ WHERE c.date >= %s
922
+ GROUP BY ip, date, client
923
+ ORDER BY posts DESC, date DESC
924
+ LIMIT %d",
925
+ $date, $limit);
926
+ return $this->mysqlQuery('rows', $sql, 'getLastVisitors '.__LINE__);
927
+ }
928
+
929
  /**
930
  * shows little browser statistics
931
  */
1134
  }
1135
 
1136
  $r .= '<a href="'.get_bloginfo('url');
1137
+ if ( !empty($row->tax) && $row->tax == 'category' )
1138
  // category
1139
  $r .= '?cat='.abs($row->post_id).'">- '.__($row->tag_cat_name).' ('.__('Category').') -';
1140
+ else if ( !empty($row->tax) )
1141
  // tag
1142
  $r .= '?tag='.$row->tag_cat_slug.'">- '.__($row->tag_cat_name).' ('.__('Tag').') -';
1143
  else if ( $row->post_id == 0 )
1154
  return $r;
1155
  }
1156
 
1157
+
1158
+ /**
1159
+ * shows visitors of the last days
1160
+ */
1161
+
1162
+
1163
  /**
1164
  * shows searchstrings
1165
  */
1203
  $r .= '<ul class="cpd_front_list">';
1204
  foreach ( $search as $day => $s )
1205
  if (is_array($s))
1206
+ $r .= '<li><div style="font-weight:bold">'.mysql2date(get_option('date_format'), $day).'</div> '.implode(', ', $s).'</li>'."\n";
1207
  $r .= '</ul>';
1208
  if ($return) return $r; else echo $r;
1209
  }
1307
 
1308
 
1309
  /**
1310
+ * widget class
1311
  */
1312
  class CountPerDay_Widget extends WP_Widget
1313
  {
1484
  }
1485
  } // widget class
1486
 
1487
+
1488
+
1489
+ /*
1490
+ * Popular Posts Widget
1491
+ * @url http://www.leaseweblabs.com/2014/01/popular-posts-count-per-day-wordpress-plugin/
1492
+ */
1493
+ class CountPerDay_PopularPostsWidget extends WP_Widget
1494
+ {
1495
+
1496
+ function __construct()
1497
+ {
1498
+ parent::__construct(
1499
+ // Base ID of your widget
1500
+ 'countperday_popular_posts_widget',
1501
+ // Widget name will appear in UI
1502
+ 'Count per Day - '.__('Popular Posts', 'cpd'),
1503
+ // Widget description
1504
+ array( 'description' => __('List of Popular Posts', 'cpd') )
1505
+ );
1506
+ }
1507
+
1508
+ // Creating widget front-end
1509
+ // This is where the action happens
1510
+ public function widget( $args, $instance )
1511
+ {
1512
+ $title = apply_filters( 'widget_title', $instance['title'] );
1513
+ $days = $instance['days' ] + 0;
1514
+ $limit = $instance['limit'] + 0;
1515
+ $head = $instance['head' ] ? true : false;
1516
+ $count = $instance['count'] ? true : false;
1517
+ // before and after widget arguments are defined by themes
1518
+ echo $args['before_widget'];
1519
+ if ( ! empty( $title ) ) {
1520
+ echo $args['before_title'].$title.$args['after_title'];
1521
+ }
1522
+ // This is where you run the code and display the output
1523
+ global $count_per_day;
1524
+ $html = $count_per_day->getMostVisitedPosts($days, $limit, 1, 1, 1);
1525
+ if (!$head ) $html = preg_replace('/<small>[^<]*<\/small>/','',$html);
1526
+ if (!$count) $html = preg_replace('/<b>[^<]*<\/b>/','',$html);
1527
+ echo $html;
1528
+ echo $args['after_widget'];
1529
+ }
1530
+
1531
+ // Widget Backend
1532
+ public function form( $instance )
1533
+ {
1534
+ $title = isset($instance['title']) ? $instance['title'] : __('Popular Posts', 'cpd');
1535
+ $days = isset($instance['days' ]) ? $instance['days' ] : '7';
1536
+ $limit = isset($instance['limit']) ? $instance['limit'] : '10';
1537
+ $head = isset($instance['head' ]) ? $instance['head' ] : false;
1538
+ $count = isset($instance['count']) ? $instance['count'] : false;
1539
+ // Widget admin form
1540
+ ?>
1541
+ <p>
1542
+ <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'cpd' ); ?></label>
1543
+ <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
1544
+ </p>
1545
+ <p>
1546
+ <label for="<?php echo $this->get_field_id( 'days' ); ?>"><?php _e( 'Days:', 'cpd' ); ?></label>
1547
+ <input class="widefat" id="<?php echo $this->get_field_id( 'days' ); ?>" name="<?php echo $this->get_field_name( 'days' ); ?>" type="text" value="<?php echo esc_attr( $days ); ?>" />
1548
+ </p>
1549
+ <p>
1550
+ <label for="<?php echo $this->get_field_id( 'limit' ); ?>"><?php _e( 'Limit:', 'cpd' ); ?></label>
1551
+ <input class="widefat" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" type="text" value="<?php echo esc_attr( $limit ); ?>" />
1552
+ </p>
1553
+ <p>
1554
+ <label for="<?php echo $this->get_field_id( 'head' ); ?>"><?php _e( 'Show header:', 'cpd' ); ?></label>
1555
+ <input class="widefat" id="<?php echo $this->get_field_id( 'head' ); ?>" name="<?php echo $this->get_field_name( 'head' ); ?>" type="checkbox" <?php echo $head?'checked="checked"':'' ?> />
1556
+ </p>
1557
+ <p>
1558
+ <label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show counters:', 'cpd' ); ?></label>
1559
+ <input class="widefat" id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" type="checkbox" <?php echo $count?'checked="checked"':'' ?> />
1560
+ </p>
1561
+ <?php
1562
+ }
1563
+
1564
+ // Updating widget replacing old instances with new
1565
+ public function update( $new_instance, $old_instance ) {
1566
+ $instance = array();
1567
+ $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
1568
+ $instance['days' ] = ( ! empty( $new_instance['days' ] ) ) ? strip_tags( $new_instance['days' ] ) : '';
1569
+ $instance['limit'] = ( ! empty( $new_instance['limit'] ) ) ? strip_tags( $new_instance['limit'] ) : '';
1570
+ $instance['head' ] = ( ! empty( $new_instance['head' ] ) ) ? strip_tags( $new_instance['head' ] ) : '';
1571
+ $instance['count'] = ( ! empty( $new_instance['count'] ) ) ? strip_tags( $new_instance['count'] ) : '';
1572
+ return $instance;
1573
+ }
1574
+ } // CountPerDay_PopularPostsWidget
1575
+
1576
+
1577
  /**
1578
  * uninstall function, deletes tables and options
1579
  */
download.php CHANGED
@@ -6,11 +6,19 @@
6
  if ( empty($_GET['f']) || empty($_GET['n']) )
7
  die('no way');
8
  $file = sys_get_temp_dir().'/'.$_GET['f'];
9
- if ( !in_array(substr($file, -3), array('.gz','sql','txt','tmp')) || strpos($file, '..') !== false )
 
 
 
10
  die('no way');
11
  if (!file_exists($file))
12
  die('file not found');
13
  $name = stripslashes($_GET['n']);
14
- (substr($name, -2) == 'gz') ? header('Content-Type: application/x-gzip') : header('Content-Type: text/plain');
 
 
 
 
 
15
  header("Content-Disposition: attachment; filename=\"$name\"");
16
  readfile($file);
6
  if ( empty($_GET['f']) || empty($_GET['n']) )
7
  die('no way');
8
  $file = sys_get_temp_dir().'/'.$_GET['f'];
9
+ if (strpos($file, '..') !== false
10
+ && strpos($file, 'cpdexport') !== 0
11
+ && strpos($file, 'cpdbackup') !== 0
12
+ )
13
  die('no way');
14
  if (!file_exists($file))
15
  die('file not found');
16
  $name = stripslashes($_GET['n']);
17
+ if (substr($name, -2) == 'gz')
18
+ header('Content-Type: application/x-gzip');
19
+ else if (substr($name, -3) == 'csv')
20
+ header('Content-Type: text/csv');
21
+ else
22
+ header('Content-Type: text/plain');
23
  header("Content-Disposition: attachment; filename=\"$name\"");
24
  readfile($file);
geoip/GeoIP.dat CHANGED
Binary file
img/cpd_logo.png ADDED
Binary file
locale/cpd-az_AZ.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:13:03+0000\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"
@@ -25,297 +25,295 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Opsiyalar yaddaşda saxlanılıb"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Məlumat bazası silinib. %s sətir silinib."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Cədvəl %s silinib"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opsiyalar silinib"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstalyasiya"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Bura basın"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Onlayn vaxt"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Daxil olmuş istifadəçilər"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "onu da saymaq"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Avtomatik sayğac"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botları əhəmiyyət verməmək"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Opsiyaları yeniləşdirmək"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Məlumat bazasının silmək"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "DİQQƏT"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Bəli"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistika"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Ümümi qonaqların sayı"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "İndi qonaqların sayı saytda "
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Qonaqlar sayı bu gün"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Qonaqların sayı dünən"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Qonaqların sayı keçən həftə"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Sayğac başlanır -dan"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Gonaqlarn sayı gündə"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Qonaqların sayı ayda"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Qonaqların sayı yazışa görə"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Sayğac yenidən başlayıb"
227
 
228
- #: counter-options.php:799
229
  #@ default
230
  msgid "Dashboard"
231
  msgstr "Konsol"
232
 
233
- #: counter-options.php:835
234
- #: counter-options.php:839
235
  #@ cpd
236
  msgid "How many posts do you want to see on dashboard page?"
237
  msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
238
 
239
- #: counter-options.php:838
240
  #@ cpd
241
  msgid "Latest Counts - Posts"
242
  msgstr "Son sayğaclar - Yazılar"
243
 
244
- #: counter-options.php:842
245
  #@ cpd
246
  msgid "Latest Counts - Days"
247
  msgstr "Son sayğaclar - Günlər"
248
 
249
- #: counter-options.php:843
250
- #: counter-options.php:847
251
- #: counter-options.php:869
252
  #@ cpd
253
  msgid "How many days do you want look back?"
254
  msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
255
 
256
- #: counter-options.php:846
257
  #@ cpd
258
  msgid "Chart - Days"
259
  msgstr "Cədvəl - Günlər"
260
 
261
- #: counter-options.php:850
262
  #@ cpd
263
  msgid "Chart - Height"
264
  msgstr "Cədvəl - Hündürlük"
265
 
266
- #: counter-options.php:851
267
  #@ cpd
268
  msgid "Height of the biggest bar"
269
  msgstr "Ən böyük olan sütunun hündürlüyü"
270
 
271
- #: counter-options.php:883
272
  #@ cpd
273
  msgid "Show in lists"
274
  msgstr "Siyahıda göstərmək"
275
 
276
- #: counter-options.php:884
277
  #@ cpd
278
  msgid "Show \"Reads per Post\" in a new column in post management views."
279
  msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
280
 
281
- #: counter-options.php:686
282
- #: counter-options.php:696
283
  #@ cpd
284
  msgid "Reset the counter"
285
  msgstr "Sayğacı yenidən 0 qoymaq"
286
 
287
- #: counter-options.php:689
288
  #@ cpd
289
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
  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!"
291
 
292
- #: counter.php:756
293
  #, php-format
294
  #@ cpd
295
  msgid "The %s most visited posts in last %s days:"
296
  msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
297
 
298
- #: counter-core.php:652
299
- #: counter-options.php:401
300
- #: counter-options.php:740
301
  #@ default
302
  msgid "Settings"
303
  msgstr "Kökləmələr"
304
 
305
- #: counter.php:327
306
  #@ cpd
307
  msgid "Reads per day"
308
  msgstr "Gün ərzində oxunuş"
309
 
310
- #: counter-core.php:1464
311
- #: counter-options.php:789
312
- #: counter.php:222
313
- #: counter.php:974
314
  #@ cpd
315
  msgid "Reads"
316
  msgstr "Oxumalar"
317
 
318
- #: counter.php:1355
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "Bu yazı"
@@ -337,188 +335,194 @@ msgstr "sonraki yeniləşdirmək"
337
  msgid "Mass Bots cleaned. %s counts deleted."
338
  msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
339
 
340
- #: counter-options.php:759
341
  #@ cpd
342
  msgid "until User Level"
343
  msgstr "istifadəçi səviyyəsinə qədər"
344
 
345
- #: counter-options.php:778
346
  #@ cpd
347
  msgid "Anonymous IP"
348
  msgstr "Anonim IP"
349
 
350
- #: counter-options.php:855
351
  #@ cpd
352
  msgid "Countries"
353
  msgstr "Ölkələr"
354
 
355
- #: counter-options.php:856
356
  #@ cpd
357
  msgid "How many countries do you want to see on dashboard page?"
358
  msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
359
 
360
- #: counter-options.php:891
361
  #@ cpd
362
  msgid "Start Values"
363
  msgstr "Başlanğıc məlumatlar"
364
 
365
- #: counter-options.php:895
366
  #@ cpd
367
  msgid "Here you can change the date of first count and add a start count."
368
  msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
369
 
370
- #: counter-options.php:899
371
  #@ cpd
372
  msgid "Start date"
373
  msgstr "Başlanğıc tarix"
374
 
375
- #: counter-options.php:900
376
  #@ cpd
377
  msgid "Your old Counter starts at?"
378
  msgstr "Sizin köhnə Sayğacınız başlanır?"
379
 
380
- #: counter-options.php:903
381
- #: counter-options.php:907
382
  #@ cpd
383
  msgid "Start count"
384
  msgstr "Sayın başlanğıcı"
385
 
386
- #: counter-options.php:904
387
  #@ cpd
388
  msgid "Add this value to \"Total visitors\"."
389
  msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
390
 
391
- #: counter-options.php:636
392
  #@ cpd
393
  msgid "GeoIP - Countries"
394
  msgstr "GeoIP - Ölkələr"
395
 
396
- #: counter-options.php:645
397
  #@ cpd
398
  msgid "Update old counter data"
399
  msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
400
 
401
- #: counter-options.php:657
402
  #@ cpd
403
  msgid "Update GeoIP database"
404
  msgstr "GeoIP məlumat bazasını yeniləşdirmək"
405
 
406
- #: counter-options.php:652
407
  #@ cpd
408
  msgid "Download a new version of GeoIP.dat file."
409
  msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
410
 
411
- #: counter-options.php:662
412
  #@ cpd
413
  msgid "More informations about GeoIP"
414
  msgstr " GeoIP haqqında daha da çox məlumat"
415
 
416
- #: counter-options.php:417
417
  #: massbots.php:46
418
  #@ cpd
419
  msgid "Mass Bots"
420
  msgstr "Mümkün olan botlar"
421
 
422
- #: counter-options.php:421
423
  #, php-format
424
  #@ cpd
425
  msgid "Show all IPs with more than %s page views per day"
426
  msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
427
 
428
- #: counter-options.php:422
 
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "göstərməkl"
434
 
435
- #: counter-options.php:430
 
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
- #: counter-options.php:431
 
441
  #: notes.php:88
442
  #@ cpd
443
  #@ default
444
  msgid "Date"
445
  msgstr "Tarix"
446
 
447
- #: counter-options.php:432
 
448
  #@ cpd
449
  msgid "Client"
450
  msgstr "Müştəri"
451
 
452
- #: counter-options.php:433
 
453
  #@ cpd
454
  msgid "Views"
455
  msgstr "Baxış"
456
 
457
- #: counter-options.php:448
458
- #: counter-options.php:464
 
459
  #, php-format
460
  #@ cpd
461
  msgid "Delete these %s counts"
462
  msgstr "Bu %s sayğacları silmək"
463
 
464
- #: counter-options.php:727
465
  #@ cpd
466
  msgid "Support"
467
  msgstr "Dəstək"
468
 
469
- #: counter-core.php:753
470
  #, php-format
471
  #@ cpd
472
  msgid "Time for Count per Day: <code>%s</code>."
473
  msgstr " Count per Day üçün vaxt: <code>%s</code>"
474
 
475
- #: counter-core.php:754
476
  #@ cpd
477
  msgid "Bug? Problem? Question? Hint? Praise?"
478
  msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
479
 
480
- #: counter-core.php:755
481
  #, php-format
482
  #@ cpd
483
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
  msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
485
 
486
- #: counter.php:218
487
- #: counter.php:1356
488
  #@ cpd
489
  msgid "Total reads"
490
  msgstr "Ümumi oxunuş"
491
 
492
- #: counter.php:219
493
- #: counter.php:1357
494
  #@ cpd
495
  msgid "Reads today"
496
  msgstr "Bu günkü oxunuş"
497
 
498
- #: counter.php:220
499
- #: counter.php:1358
500
  #@ cpd
501
  msgid "Reads yesterday"
502
  msgstr "Dünənki oxunuş"
503
 
504
- #: counter.php:875
505
  #: notes.php:55
506
  #: notes.php:89
507
  #@ cpd
508
  msgid "Notes"
509
  msgstr "Qeydlər"
510
 
511
- #: counter.php:873
512
  #@ default
513
  msgid "Show"
514
  msgstr "Göstərmək"
515
 
516
- #: counter.php:913
517
  #@ cpd
518
  msgid "Other"
519
  msgstr "Digər"
520
 
521
- #: counter.php:1085
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Yazışı redaktə etmək"
@@ -529,29 +533,29 @@ msgstr "Yazışı redaktə etmək"
529
  msgid "Front page displays"
530
  msgstr "Əsas səhifənin göstərişi"
531
 
532
- #: counter-core.php:799
533
- #: counter-options.php:860
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "Brauzerlər"
537
 
538
- #: counter-core.php:793
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "Yaxında keçirilmiş hesablamalar"
542
 
543
- #: counter-core.php:796
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "Plagin"
547
 
548
- #: counter-core.php:804
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "Ölkələr üzrə oxunuşlar"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Xəritə"
@@ -596,32 +600,32 @@ msgstr "silmək"
596
  msgid "edit"
597
  msgstr "redaktə etmək"
598
 
599
- #: counter-options.php:782
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "Keş"
603
 
604
- #: counter-options.php:783
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:861
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:945
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "Düzəliş rejimi"
618
 
619
- #: counter-options.php:947
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:805
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Ölkə üzrə gəlişlər"
@@ -641,12 +645,12 @@ msgstr "Son"
641
  msgid "PostID"
642
  msgstr "ID məlumatlar"
643
 
644
- #: counter-options.php:908
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:639
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!"
@@ -656,467 +660,560 @@ msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üç
656
  msgid "no data found"
657
  msgstr "heç bir məlumat tapılmayıb"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Sayğac"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Müştərilər və istinad olan saytlar"
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Lokal URL"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Lokal keçidləri də göstərmək."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Yazılar"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Səhifələr"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Ötən həftənin oxunuşları"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Kateqoriyalar"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Teq"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "Lisenziya"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Ay ərzində oxunuşlar"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "İstinad olunan sayt"
725
 
726
- #: counter-options.php:864
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "İstenad olan saytlar - Girişlər"
730
 
731
- #: counter-options.php:865
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:868
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "İstenad olan saytlar - Günlər"
740
 
741
- #: counter.php:944
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:789
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "Qonaq onlayn"
751
 
752
- #: counter.php:1380
753
  #@ default
754
  msgid "Title"
755
  msgstr "Başlıq"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr ""
767
 
768
- #: counter-core.php:1027
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:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr ""
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr ""
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr ""
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr ""
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr ""
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr ""
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr ""
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr ""
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr ""
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr ""
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr ""
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr ""
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr ""
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr ""
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr ""
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr ""
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr ""
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr ""
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr ""
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr ""
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr ""
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr ""
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr ""
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr ""
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr ""
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr ""
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr ""
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr ""
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr ""
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr ""
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr ""
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr ""
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr ""
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr ""
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr ""
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr ""
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:04+0000\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"
25
  msgid "Options updated"
26
  msgstr "Opsiyalar yaddaşda saxlanılıb"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Məlumat bazası silinib. %s sətir silinib."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Cədvəl %s silinib"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opsiyalar silinib"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstalyasiya"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Bura basın"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Onlayn vaxt"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Daxil olmuş istifadəçilər"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "onu da saymaq"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Avtomatik sayğac"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botları əhəmiyyət verməmək"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Opsiyaları yeniləşdirmək"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Məlumat bazasının silmək"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "DİQQƏT"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Bəli"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistika"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Ümümi qonaqların sayı"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "İndi qonaqların sayı saytda "
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Qonaqlar sayı bu gün"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Qonaqların sayı dünən"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Qonaqların sayı keçən həftə"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Sayğac başlanır -dan"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Gonaqlarn sayı gündə"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Qonaqların sayı ayda"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Qonaqların sayı yazışa görə"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Sayğac yenidən başlayıb"
226
 
227
+ #: counter-options.php:889
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Konsol"
231
 
232
+ #: counter-options.php:925
233
+ #: counter-options.php:929
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:928
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Son sayğaclar - Yazılar"
242
 
243
+ #: counter-options.php:932
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Son sayğaclar - Günlər"
247
 
248
+ #: counter-options.php:933
249
+ #: counter-options.php:937
250
+ #: counter-options.php:959
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:936
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Cədvəl - Günlər"
259
 
260
+ #: counter-options.php:940
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Cədvəl - Hündürlük"
264
 
265
+ #: counter-options.php:941
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:973
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Siyahıda göstərmək"
274
 
275
+ #: counter-options.php:974
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:770
281
+ #: counter-options.php:780
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Sayğacı yenidən 0 qoymaq"
285
 
286
+ #: counter-options.php:773
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:771
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:641
298
+ #: counter-options.php:409
 
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Kökləmələr"
302
 
303
+ #: counter.php:342
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Gün ərzində oxunuş"
307
 
308
+ #: counter-core.php:1526
309
+ #: counter-options.php:869
310
+ #: counter.php:235
311
+ #: counter.php:1019
312
  #@ cpd
313
  msgid "Reads"
314
  msgstr "Oxumalar"
315
 
316
+ #: counter.php:1406
317
  #@ cpd
318
  msgid "This post"
319
  msgstr "Bu yazı"
335
  msgid "Mass Bots cleaned. %s counts deleted."
336
  msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
337
 
338
+ #: counter-options.php:839
339
  #@ cpd
340
  msgid "until User Level"
341
  msgstr "istifadəçi səviyyəsinə qədər"
342
 
343
+ #: counter-options.php:858
344
  #@ cpd
345
  msgid "Anonymous IP"
346
  msgstr "Anonim IP"
347
 
348
+ #: counter-options.php:945
349
  #@ cpd
350
  msgid "Countries"
351
  msgstr "Ölkələr"
352
 
353
+ #: counter-options.php:946
354
  #@ cpd
355
  msgid "How many countries do you want to see on dashboard page?"
356
  msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
357
 
358
+ #: counter-options.php:981
359
  #@ cpd
360
  msgid "Start Values"
361
  msgstr "Başlanğıc məlumatlar"
362
 
363
+ #: counter-options.php:985
364
  #@ cpd
365
  msgid "Here you can change the date of first count and add a start count."
366
  msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
367
 
368
+ #: counter-options.php:989
369
  #@ cpd
370
  msgid "Start date"
371
  msgstr "Başlanğıc tarix"
372
 
373
+ #: counter-options.php:990
374
  #@ cpd
375
  msgid "Your old Counter starts at?"
376
  msgstr "Sizin köhnə Sayğacınız başlanır?"
377
 
378
+ #: counter-options.php:993
379
+ #: counter-options.php:997
380
  #@ cpd
381
  msgid "Start count"
382
  msgstr "Sayın başlanğıcı"
383
 
384
+ #: counter-options.php:994
385
  #@ cpd
386
  msgid "Add this value to \"Total visitors\"."
387
  msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
388
 
389
+ #: counter-options.php:720
390
  #@ cpd
391
  msgid "GeoIP - Countries"
392
  msgstr "GeoIP - Ölkələr"
393
 
394
+ #: counter-options.php:729
395
  #@ cpd
396
  msgid "Update old counter data"
397
  msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
398
 
399
+ #: counter-options.php:741
400
  #@ cpd
401
  msgid "Update GeoIP database"
402
  msgstr "GeoIP məlumat bazasını yeniləşdirmək"
403
 
404
+ #: counter-options.php:736
405
  #@ cpd
406
  msgid "Download a new version of GeoIP.dat file."
407
  msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
408
 
409
+ #: counter-options.php:746
410
  #@ cpd
411
  msgid "More informations about GeoIP"
412
  msgstr " GeoIP haqqında daha da çox məlumat"
413
 
414
+ #: counter-options.php:429
415
  #: massbots.php:46
416
  #@ cpd
417
  msgid "Mass Bots"
418
  msgstr "Mümkün olan botlar"
419
 
420
+ #: counter-options.php:433
421
  #, php-format
422
  #@ cpd
423
  msgid "Show all IPs with more than %s page views per day"
424
  msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
425
 
426
+ #: counter-options.php:434
427
+ #: counter-options.php:498
428
  #: notes.php:84
429
  #: userperspan.php:56
430
  #@ cpd
431
  msgid "show"
432
  msgstr "göstərməkl"
433
 
434
+ #: counter-options.php:442
435
+ #: counter-options.php:506
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
+ #: counter-options.php:443
441
+ #: counter-options.php:507
442
  #: notes.php:88
443
  #@ cpd
444
  #@ default
445
  msgid "Date"
446
  msgstr "Tarix"
447
 
448
+ #: counter-options.php:444
449
+ #: counter-options.php:508
450
  #@ cpd
451
  msgid "Client"
452
  msgstr "Müştəri"
453
 
454
+ #: counter-options.php:445
455
+ #: counter-options.php:509
456
  #@ cpd
457
  msgid "Views"
458
  msgstr "Baxış"
459
 
460
+ #: counter-options.php:460
461
+ #: counter-options.php:476
462
+ #: counter-options.php:523
463
  #, php-format
464
  #@ cpd
465
  msgid "Delete these %s counts"
466
  msgstr "Bu %s sayğacları silmək"
467
 
468
+ #: counter-options.php:811
469
  #@ cpd
470
  msgid "Support"
471
  msgstr "Dəstək"
472
 
473
+ #: counter-core.php:742
474
  #, php-format
475
  #@ cpd
476
  msgid "Time for Count per Day: <code>%s</code>."
477
  msgstr " Count per Day üçün vaxt: <code>%s</code>"
478
 
479
+ #: counter-core.php:743
480
  #@ cpd
481
  msgid "Bug? Problem? Question? Hint? Praise?"
482
  msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
483
 
484
+ #: counter-core.php:744
485
  #, php-format
486
  #@ cpd
487
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
488
  msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
489
 
490
+ #: counter.php:231
491
+ #: counter.php:1407
492
  #@ cpd
493
  msgid "Total reads"
494
  msgstr "Ümumi oxunuş"
495
 
496
+ #: counter.php:232
497
+ #: counter.php:1408
498
  #@ cpd
499
  msgid "Reads today"
500
  msgstr "Bu günkü oxunuş"
501
 
502
+ #: counter.php:233
503
+ #: counter.php:1409
504
  #@ cpd
505
  msgid "Reads yesterday"
506
  msgstr "Dünənki oxunuş"
507
 
508
+ #: counter.php:890
509
  #: notes.php:55
510
  #: notes.php:89
511
  #@ cpd
512
  msgid "Notes"
513
  msgstr "Qeydlər"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Göstərmək"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Digər"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Yazışı redaktə etmək"
533
  msgid "Front page displays"
534
  msgstr "Əsas səhifənin göstərişi"
535
 
536
+ #: counter-core.php:788
537
+ #: counter-options.php:950
538
  #@ cpd
539
  msgid "Browsers"
540
  msgstr "Brauzerlər"
541
 
542
+ #: counter-core.php:782
543
  #@ cpd
544
  msgid "Latest Counts"
545
  msgstr "Yaxında keçirilmiş hesablamalar"
546
 
547
+ #: counter-core.php:785
548
  #@ default
549
  msgid "Plugin"
550
  msgstr "Plagin"
551
 
552
+ #: counter-core.php:793
553
  #@ cpd
554
  msgid "Reads per Country"
555
  msgstr "Ölkələr üzrə oxunuşlar"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "Xəritə"
600
  msgid "edit"
601
  msgstr "redaktə etmək"
602
 
603
+ #: counter-options.php:862
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Keş"
607
 
608
+ #: counter-options.php:863
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
612
 
613
+ #: counter-options.php:951
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
617
 
618
+ #: counter-options.php:1035
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Düzəliş rejimi"
622
 
623
+ #: counter-options.php:1037
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
627
 
628
+ #: counter-core.php:794
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Ölkə üzrə gəlişlər"
645
  msgid "PostID"
646
  msgstr "ID məlumatlar"
647
 
648
+ #: counter-options.php:998
649
  #@ cpd
650
  msgid "Add this value to \"Total reads\"."
651
  msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
652
 
653
+ #: counter-options.php:723
654
  #@ cpd
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 "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!"
660
  msgid "no data found"
661
  msgstr "heç bir məlumat tapılmayıb"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Sayğac"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Müştərilər və istinad olan saytlar"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  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."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Lokal URL"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Lokal keçidləri də göstərmək."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Yazılar"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Səhifələr"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Ötən həftənin oxunuşları"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Kateqoriyalar"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Teq"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "Lisenziya"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Ay ərzində oxunuşlar"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "İstinad olunan sayt"
729
 
730
+ #: counter-options.php:954
731
  #@ cpd
732
  msgid "Referrers - Entries"
733
  msgstr "İstenad olan saytlar - Girişlər"
734
 
735
+ #: counter-options.php:955
736
  #@ cpd
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
739
 
740
+ #: counter-options.php:958
741
  #@ cpd
742
  msgid "Referrers - Days"
743
  msgstr "İstenad olan saytlar - Günlər"
744
 
745
+ #: counter.php:989
746
  #, php-format
747
  #@ cpd
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "%s istenad olan saytlar son %s günlər:"
750
 
751
+ #: counter-core.php:778
752
  #@ cpd
753
  msgid "Visitors online"
754
  msgstr "Qonaq onlayn"
755
 
756
+ #: counter.php:1431
757
  #@ default
758
  msgid "Title"
759
  msgstr "Başlıq"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr ""
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr ""
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr ""
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr ""
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr ""
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr ""
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr ""
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr ""
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr ""
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr ""
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr ""
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr ""
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr ""
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr ""
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr ""
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr ""
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr ""
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr ""
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr ""
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr ""
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr ""
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr ""
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr ""
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr ""
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr ""
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr ""
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr ""
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr ""
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr ""
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr ""
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr ""
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr ""
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr ""
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr ""
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr ""
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr ""
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr ""
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-be_BY.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:13:16+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -25,297 +25,295 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Налады захаваныя"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Выдаліць Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Табліца% s выдалена"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Налады выдалены"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Деинсталяция"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Націсніце сюды"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Час онлайн"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Якія ўвайшлі карыстальнікаў"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Таксама лічыць"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Аўтаматычны лічыльнік"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Лічыць аўтаматычна асобныя публікацыі і старонкі, ніякіх зменаў у шаблон не спатрэбіцца."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Ігнараваць робатаў"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Захаваць наладкі"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Ачысьціць базу даных"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  msgstr "Вы можаце ачысціць лічыльнік выдаліўшы \" Спам \". <br /> Калі вы дадасце новых робатаў-над \"Спам \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць наведвання ботаў. "
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Калі \" Штодзённы лічыльнік \"актываваны, табліцы ў базах дадзеных будуць захаваныя:)."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут вы можаце выдаліць табліцы і адключыць \" Штодзённы лічыльнік \"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "УВАГА"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Гэтыя табліцы (са усімі дадзенымі лічыльніка), будуць выдаленыя."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Калі \" Штодзённы лічыльнік \"переинсталлирован, лічыльнік пачынаецца з 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Так"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ці вы ўпэўненыя, што жадаеце адключыць \" Штодзённы лічыльнік \"і выдаліць усе дадзеныя?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статыстыка"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Усяго наведвальнікаў"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Наведвальнікаў зараз на сайце"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Наведвальнікаў сёння"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Наведвальнікаў ўчора"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Наведвальнікаў на мінулым тыдні"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Лічыльнік пачынаецца з"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Наведвальнікаў у дзень"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Наведвальнікаў у месяц"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Наведвальнікаў запісы"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Лічыльнік абнулены"
227
 
228
- #: counter-options.php:799
229
  #@ default
230
  msgid "Dashboard"
231
  msgstr "Кансоль"
232
 
233
- #: counter-options.php:835
234
- #: counter-options.php:839
235
  #@ cpd
236
  msgid "How many posts do you want to see on dashboard page?"
237
  msgstr "Колькі запісаў вы хочаце бачыць на старонцы кансолі?"
238
 
239
- #: counter-options.php:838
240
  #@ cpd
241
  msgid "Latest Counts - Posts"
242
  msgstr "Апошнія лічыльнікі - Запісы"
243
 
244
- #: counter-options.php:842
245
  #@ cpd
246
  msgid "Latest Counts - Days"
247
  msgstr "Апошнія лічыльнікі - Дні"
248
 
249
- #: counter-options.php:843
250
- #: counter-options.php:847
251
- #: counter-options.php:869
252
  #@ cpd
253
  msgid "How many days do you want look back?"
254
  msgstr "Наколькі дзён таму вы хочаце бачыць статыстыку?"
255
 
256
- #: counter-options.php:846
257
  #@ cpd
258
  msgid "Chart - Days"
259
  msgstr "Табліца - Дні"
260
 
261
- #: counter-options.php:850
262
  #@ cpd
263
  msgid "Chart - Height"
264
  msgstr "Табліца - Вышыня"
265
 
266
- #: counter-options.php:851
267
  #@ cpd
268
  msgid "Height of the biggest bar"
269
  msgstr "Вышыня самага вялікага слупка"
270
 
271
- #: counter-options.php:883
272
  #@ cpd
273
  msgid "Show in lists"
274
  msgstr "Паказаць ў спісах"
275
 
276
- #: counter-options.php:884
277
  #@ cpd
278
  msgid "Show \"Reads per Post\" in a new column in post management views."
279
  msgstr "Паказаць \" чытанне паведамленняў\"у новай калонцы ва ўпраўленні запісамі"
280
 
281
- #: counter-options.php:686
282
- #: counter-options.php:696
283
  #@ cpd
284
  msgid "Reset the counter"
285
  msgstr "Абнуліць лічыльнік"
286
 
287
- #: counter-options.php:689
288
  #@ cpd
289
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
  msgstr "Вы можаце абнуліць лічыльнік шляхам ачысткі табліцы. УСЕ У 0! <br /> Захавайце рэзервовую копію калі вам неабходныя бягучыя дадзеныя "
291
 
292
- #: counter.php:756
293
  #, php-format
294
  #@ cpd
295
  msgid "The %s most visited posts in last %s days:"
296
  msgstr "Самае% s наведвальныя запісы за апошнія% s дзён:"
297
 
298
- #: counter-core.php:652
299
- #: counter-options.php:401
300
- #: counter-options.php:740
301
  #@ default
302
  msgid "Settings"
303
  msgstr "Налады"
304
 
305
- #: counter.php:327
306
  #@ cpd
307
  msgid "Reads per day"
308
  msgstr "Чытанне ў дзень"
309
 
310
- #: counter-core.php:1464
311
- #: counter-options.php:789
312
- #: counter.php:222
313
- #: counter.php:974
314
  #@ cpd
315
  msgid "Reads"
316
  msgstr "Чытанне"
317
 
318
- #: counter.php:1355
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "Гэтая запіс"
@@ -337,188 +335,194 @@ msgstr "Абнавіць наступны"
337
  msgid "Mass Bots cleaned. %s counts deleted."
338
  msgstr "Табліца робатаў ачышчана.% s запісаў выдаленае"
339
 
340
- #: counter-options.php:759
341
  #@ cpd
342
  msgid "until User Level"
343
  msgstr "Да ўзроўню карыстальніка"
344
 
345
- #: counter-options.php:778
346
  #@ cpd
347
  msgid "Anonymous IP"
348
  msgstr "Ананімны IP"
349
 
350
- #: counter-options.php:855
351
  #@ cpd
352
  msgid "Countries"
353
  msgstr "Краіны"
354
 
355
- #: counter-options.php:856
356
  #@ cpd
357
  msgid "How many countries do you want to see on dashboard page?"
358
  msgstr "Колькі краін вы хочаце бачыць у спісе?"
359
 
360
- #: counter-options.php:891
361
  #@ cpd
362
  msgid "Start Values"
363
  msgstr "Пачатковыя дадзеныя"
364
 
365
- #: counter-options.php:895
366
  #@ cpd
367
  msgid "Here you can change the date of first count and add a start count."
368
  msgstr "Тут вы можаце памяняць дату пачатку адліку і дадаць пачатковы лічыльнік"
369
 
370
- #: counter-options.php:899
371
  #@ cpd
372
  msgid "Start date"
373
  msgstr "Дата пачатку"
374
 
375
- #: counter-options.php:900
376
  #@ cpd
377
  msgid "Your old Counter starts at?"
378
  msgstr "Ваш стары Лічыльнік пачынаўся з"
379
 
380
- #: counter-options.php:903
381
- #: counter-options.php:907
382
  #@ cpd
383
  msgid "Start count"
384
  msgstr "Пачатак адліку"
385
 
386
- #: counter-options.php:904
387
  #@ cpd
388
  msgid "Add this value to \"Total visitors\"."
389
  msgstr "Дадаць значэнне да \" Усяго наведвальнікаў \"."
390
 
391
- #: counter-options.php:636
392
  #@ cpd
393
  msgid "GeoIP - Countries"
394
  msgstr "GeoIP - Краіны"
395
 
396
- #: counter-options.php:645
397
  #@ cpd
398
  msgid "Update old counter data"
399
  msgstr "Абнавіць дадзеныя старога лічыльніка"
400
 
401
- #: counter-options.php:657
402
  #@ cpd
403
  msgid "Update GeoIP database"
404
  msgstr "Абнавіць базу дадзеных GeoIP"
405
 
406
- #: counter-options.php:652
407
  #@ cpd
408
  msgid "Download a new version of GeoIP.dat file."
409
  msgstr "Запампаваць новую версію файла GeoIP.dat."
410
 
411
- #: counter-options.php:662
412
  #@ cpd
413
  msgid "More informations about GeoIP"
414
  msgstr "Больш інфармацыі пра GeoIP"
415
 
416
- #: counter-options.php:417
417
  #: massbots.php:46
418
  #@ cpd
419
  msgid "Mass Bots"
420
  msgstr "Верагодныя боты"
421
 
422
- #: counter-options.php:421
423
  #, php-format
424
  #@ cpd
425
  msgid "Show all IPs with more than %s page views per day"
426
  msgstr "Паказаць усе IP з больш чым% s праглядаў у суткі"
427
 
428
- #: counter-options.php:422
 
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "Паказаць"
434
 
435
- #: counter-options.php:430
 
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
- #: counter-options.php:431
 
441
  #: notes.php:88
442
  #@ cpd
443
  #@ default
444
  msgid "Date"
445
  msgstr "Дата"
446
 
447
- #: counter-options.php:432
 
448
  #@ cpd
449
  msgid "Client"
450
  msgstr "Кліент"
451
 
452
- #: counter-options.php:433
 
453
  #@ cpd
454
  msgid "Views"
455
  msgstr "Праглядаў"
456
 
457
- #: counter-options.php:448
458
- #: counter-options.php:464
 
459
  #, php-format
460
  #@ cpd
461
  msgid "Delete these %s counts"
462
  msgstr "Выдаліць гэтыя% s лічыльнікаў"
463
 
464
- #: counter-options.php:727
465
  #@ cpd
466
  msgid "Support"
467
  msgstr "Падтрымка"
468
 
469
- #: counter-core.php:753
470
  #, php-format
471
  #@ cpd
472
  msgid "Time for Count per Day: <code>%s</code>."
473
  msgstr "Час для Count per Day: <code>%s</code> "
474
 
475
- #: counter-core.php:754
476
  #@ cpd
477
  msgid "Bug? Problem? Question? Hint? Praise?"
478
  msgstr "Памылка? Праблема? Пытанне? Савет? Хвала?"
479
 
480
- #: counter-core.php:755
481
  #, php-format
482
  #@ cpd
483
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
  msgstr "Напішыце каментар на <a href=\"%s\">старонцы плагіна</a> "
485
 
486
- #: counter.php:218
487
- #: counter.php:1356
488
  #@ cpd
489
  msgid "Total reads"
490
  msgstr "Усяго чытанняў"
491
 
492
- #: counter.php:219
493
- #: counter.php:1357
494
  #@ cpd
495
  msgid "Reads today"
496
  msgstr "Чытанне сёння"
497
 
498
- #: counter.php:220
499
- #: counter.php:1358
500
  #@ cpd
501
  msgid "Reads yesterday"
502
  msgstr "Чытанне ўчора"
503
 
504
- #: counter.php:875
505
  #: notes.php:55
506
  #: notes.php:89
507
  #@ cpd
508
  msgid "Notes"
509
  msgstr "Нататкі"
510
 
511
- #: counter.php:873
512
  #@ default
513
  msgid "Show"
514
  msgstr "Паказаць"
515
 
516
- #: counter.php:913
517
  #@ cpd
518
  msgid "Other"
519
  msgstr "Іншыя"
520
 
521
- #: counter.php:1085
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Рэдагаваць запіс"
@@ -529,29 +533,29 @@ msgstr "Рэдагаваць запіс"
529
  msgid "Front page displays"
530
  msgstr "Адлюстраванне галоўнай старонкі"
531
 
532
- #: counter-core.php:799
533
- #: counter-options.php:860
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "Браўзэры"
537
 
538
- #: counter-core.php:793
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "Нядаўнія падлікі"
542
 
543
- #: counter-core.php:796
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "Плагін"
547
 
548
- #: counter-core.php:804
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "Чытанне па краінах"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Карта"
@@ -596,32 +600,32 @@ msgstr "Выдаліць"
596
  msgid "edit"
597
  msgstr "Рэдагаваць"
598
 
599
- #: counter-options.php:782
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "Кэш"
603
 
604
- #: counter-options.php:783
605
  #@ cpd
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "Я выкарыстоўваю кэшавання убудова. Лічыць гэтыя наведвання пры дапамозе ajax"
608
 
609
- #: counter-options.php:861
610
  #@ cpd
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "Падрадок агента карыстальніка падзелены коскі"
613
 
614
- #: counter-options.php:945
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "Рэжым адладкі"
618
 
619
- #: counter-options.php:947
620
  #@ cpd
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "Дадаць дапаможную інфармацыю ўнізе кожнай старонкі."
623
 
624
- #: counter-core.php:805
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Наведвальнікаў па краінах"
@@ -641,12 +645,12 @@ msgstr "Канец"
641
  msgid "PostID"
642
  msgstr "ID паведамлення"
643
 
644
- #: counter-options.php:908
645
  #@ cpd
646
  msgid "Add this value to \"Total reads\"."
647
  msgstr "Дадаць значэнне да \" Усяго разоў прачытана \"."
648
 
649
- #: counter-options.php:639
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 адрасы зноўку. Можа заняць некаторы час!"
@@ -656,467 +660,560 @@ msgstr "Вы можаце атрымаць дадзеныя краін для ў
656
  msgid "no data found"
657
  msgstr "Нічога не знойдзена"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Лічыльнік"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Кліенты і якія спасылаюцца сайты"
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Лакальныя URL"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Паказваць лакальныя пераходы таксама."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Запісы"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Старонкі"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Чытанне на мінулым тыдні"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Катэгорыя"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Тег"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "Ліцэнзія"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Чытанне за месяц"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Спасылаецца сайт"
725
 
726
- #: counter-options.php:864
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "Старонкі, якія спасылаюцца сайты - Уваходжанне"
730
 
731
- #: counter-options.php:865
732
  #@ cpd
733
  msgid "How many referrers do you want to see on dashboard page?"
734
  msgstr "Колькі спасылаюцца сайтаў вы хочаце ўбачыць на старонцы статыстыкі?"
735
 
736
- #: counter-options.php:868
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "Старонкі, якія спасылаюцца сайты - Дні"
740
 
741
- #: counter.php:944
742
  #, php-format
743
  #@ cpd
744
  msgid "The %s referrers in last %s days:"
745
  msgstr "%s спасылаюцца сайтаў за апошнія% s дзён:"
746
 
747
- #: counter-core.php:789
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "Наведвальнікаў на сайце"
751
 
752
- #: counter.php:1380
753
  #@ default
754
  msgid "Title"
755
  msgstr "Загаловак"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
- #: counter-core.php:795
764
- #: counter-options.php:864
765
- #: counter-options.php:868
766
  #@ cpd
767
  msgid "Search strings"
768
  msgstr ""
769
 
770
- #: counter-core.php:1000
771
  #@ cpd
772
  msgid "Backup failed! Cannot open file"
773
  msgstr ""
774
 
775
- #: counter-core.php:1027
776
- #, php-format
777
- #@ cpd
778
- msgid "Backup of %s entries in progress. Every point complies %s entries."
779
- msgstr ""
780
-
781
- #: counter-core.php:1114
782
  #@ cpd
783
  msgid "Your can download the backup files here and now."
784
  msgstr ""
785
 
786
- #: counter-core.php:1118
787
- #: counter-core.php:1126
788
  #, php-format
789
  #@ cpd
790
  msgid "Backup of counter table saved in %s."
791
  msgstr ""
792
 
793
- #: counter-core.php:1120
794
- #: counter-core.php:1128
795
  #, php-format
796
  #@ cpd
797
  msgid "Backup of counter options and collection saved in %s."
798
  msgstr ""
799
 
800
- #: counter-core.php:1184
801
  #@ cpd
802
  msgid "Error while reading backup file!"
803
  msgstr ""
804
 
805
- #: counter-core.php:1188
806
  #, php-format
807
  #@ cpd
808
  msgid "The backup was added to counter table %s."
809
  msgstr ""
810
 
811
- #: counter-core.php:1190
812
  #, php-format
813
  #@ cpd
814
  msgid "The counter table %s was restored from backup."
815
  msgstr ""
816
 
817
- #: counter-core.php:1207
818
  #@ cpd
819
  msgid "Options restored from backup."
820
  msgstr ""
821
 
822
- #: counter-options.php:169
823
  #@ cpd
824
  msgid "Collection in progress..."
825
  msgstr ""
826
 
827
- #: counter-options.php:263
828
  #@ cpd
829
  msgid "Get Visitors per Post..."
830
  msgstr ""
831
 
832
- #: counter-options.php:284
833
- #@ cpd
834
- msgid "Delete old data..."
835
- msgstr ""
836
-
837
- #: counter-options.php:308
838
  #, php-format
839
  #@ cpd
840
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
841
  msgstr ""
842
 
843
- #: counter-options.php:317
844
  #@ cpd
845
  msgid "Installation of \"Count per Day\" checked"
846
  msgstr ""
847
 
848
- #: counter-options.php:332
849
  #@ cpd
850
  msgid "Old search strings deleted"
851
  msgstr ""
852
 
853
- #: counter-options.php:347
854
  #@ cpd
855
  msgid "Clients and referers deleted"
856
  msgstr ""
857
 
858
- #: counter-options.php:400
859
- #: counter-options.php:739
860
  #@ default
861
  msgid "Tools"
862
  msgstr ""
863
 
864
- #: counter-options.php:476
865
- #: counter-options.php:926
866
  #@ cpd
867
  msgid "Backup"
868
  msgstr ""
869
 
870
- #: counter-options.php:480
871
  #, php-format
872
  #@ cpd
873
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
874
  msgstr ""
875
 
876
- #: counter-options.php:483
877
  #@ cpd
878
  msgid "Download only"
879
  msgstr ""
880
 
881
- #: counter-options.php:487
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
- #: counter-options.php:515
887
  #@ cpd
888
  msgid "Settings and collections"
889
  msgstr ""
890
 
891
- #: counter-options.php:520
892
  #, php-format
893
  #@ cpd
894
  msgid "Counter table %s"
895
  msgstr ""
896
 
897
- #: counter-options.php:527
898
  #, php-format
899
  #@ cpd
900
  msgid "Add data from the backup file %s to existing counter table?"
901
  msgstr ""
902
 
903
- #: counter-options.php:527
904
  #@ cpd
905
  msgid "Add"
906
  msgstr ""
907
 
908
- #: counter-options.php:531
909
  #, php-format
910
  #@ cpd
911
  msgid "Restore data from the backup file %s ?"
912
  msgstr ""
913
 
914
- #: counter-options.php:531
915
  #@ default
916
  msgid "Restore"
917
  msgstr ""
918
 
919
- #: counter-options.php:533
920
  #@ default
921
  msgid "Delete"
922
  msgstr ""
923
 
924
- #: counter-options.php:534
925
  #, php-format
926
  #@ cpd
927
  msgid "Delete the backup file %s ?"
928
  msgstr ""
929
 
930
- #: counter-options.php:540
931
  #@ cpd
932
  msgid "add backup to current counter table"
933
  msgstr ""
934
 
935
- #: counter-options.php:541
936
  #@ cpd
937
  msgid "replace current counter table with with backup"
938
  msgstr ""
939
 
940
- #: counter-options.php:542
941
  #@ cpd
942
  msgid "delete backup file"
943
  msgstr ""
944
 
945
- #: counter-options.php:567
946
  #, php-format
947
  #@ cpd
948
  msgid "Delete search strings older than %s days."
949
  msgstr ""
950
 
951
- #: counter-options.php:571
952
  #@ cpd
953
  msgid "Delete search strings"
954
  msgstr ""
955
 
956
- #: counter-options.php:577
957
- #: counter-options.php:596
958
  #, php-format
959
  #@ cpd
960
  msgid "Current size of your counter table %s is %s."
961
  msgstr ""
962
 
963
- #: counter-options.php:578
964
  #, php-format
965
  #@ cpd
966
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
967
  msgstr ""
968
 
969
- #: counter-options.php:582
970
  #@ cpd
971
  msgid "Delete clients and referers"
972
  msgstr ""
973
 
974
- #: counter-options.php:591
975
- #: counter-options.php:623
976
  #@ cpd
977
  msgid "Collect old data"
978
  msgstr ""
979
 
980
- #: counter-options.php:598
981
  #@ cpd
982
  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."
983
  msgstr ""
984
 
985
- #: counter-options.php:603
986
  #, php-format
987
  #@ cpd
988
  msgid "Currently your collection contains data until %s."
989
  msgstr ""
990
 
991
- #: counter-options.php:607
992
  #@ cpd
993
  msgid "Normally new data will be added to the collection."
994
  msgstr ""
995
 
996
- #: counter-options.php:613
997
  #@ cpd
998
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
999
  msgstr ""
1000
 
1001
- #: counter-options.php:614
1002
  #, php-format
1003
  #@ cpd
1004
  msgid "All collected data until %s will deleted."
1005
  msgstr ""
1006
 
1007
- #: counter-options.php:619
1008
  #, php-format
1009
  #@ cpd
1010
  msgid "Keep entries of last %s full months + current month in counter table."
1011
  msgstr ""
1012
 
1013
- #: counter-options.php:670
1014
  #@ cpd
1015
  msgid "ReActivation"
1016
  msgstr ""
1017
 
1018
- #: counter-options.php:673
1019
  #@ cpd
1020
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1021
  msgstr ""
1022
 
1023
- #: counter-options.php:678
1024
  #@ cpd
1025
  msgid "ReActivate the plugin"
1026
  msgstr ""
1027
 
1028
- #: counter-options.php:791
1029
  #@ cpd
1030
  msgid "Save URL only, no query string."
1031
  msgstr ""
1032
 
1033
- #: counter-options.php:815
1034
  #@ cpd
1035
  msgid "Who can see it"
1036
  msgstr ""
1037
 
1038
- #: counter-options.php:824
1039
  #@ cpd
1040
  msgid "custom"
1041
  msgstr ""
1042
 
1043
- #: counter-options.php:826
1044
  #@ cpd
1045
  msgid "and higher are allowed to see the statistics page."
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:828
1049
  #, php-format
1050
  #@ cpd
1051
  msgid "Set the %s capability %s a user need:"
1052
  msgstr ""
1053
 
1054
- #: counter-options.php:915
1055
  #@ cpd
1056
  msgid "Stylesheet"
1057
  msgstr ""
1058
 
1059
- #: counter-options.php:918
1060
  #@ cpd
1061
  msgid "NO Stylesheet in Frontend"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:919
1065
  #@ cpd
1066
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:929
1070
  #@ cpd
1071
  msgid "Entries per pass"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:932
1075
  #@ cpd
1076
  msgid "How many entries should be saved per pass? Default: 10000"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:937
1080
  #@ cpd
1081
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
1082
  msgstr ""
1083
 
1084
- #: counter.php:228
1085
- #: counter.php:998
1086
  #@ cpd
1087
  msgid "Visitors"
1088
  msgstr ""
1089
 
1090
- #: counter.php:231
1091
- #: counter.php:232
1092
  #@ cpd
1093
  msgid "Most visited day"
1094
  msgstr ""
1095
 
1096
- #: counter.php:1100
1097
  #@ default
1098
  msgid "Front page"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1142
1102
  #, php-format
1103
  #@ cpd
1104
  msgid "The %s most searched strings:"
1105
  msgstr ""
1106
 
1107
- #: counter.php:1151
1108
  #, php-format
1109
  #@ cpd
1110
  msgid "The search strings of the last %s days:"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1315
1114
  #@ default
1115
  msgid "_name"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1399
1119
  #@ cpd
1120
  msgid "drag and drop to sort"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:10+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Налады захаваныя"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Выдаліць Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Табліца% s выдалена"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Налады выдалены"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Деинсталяция"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Націсніце сюды"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Час онлайн"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Якія ўвайшлі карыстальнікаў"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Таксама лічыць"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Аўтаматычны лічыльнік"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Лічыць аўтаматычна асобныя публікацыі і старонкі, ніякіх зменаў у шаблон не спатрэбіцца."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Ігнараваць робатаў"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Захаваць наладкі"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Ачысьціць базу даных"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  msgstr "Вы можаце ачысціць лічыльнік выдаліўшы \" Спам \". <br /> Калі вы дадасце новых робатаў-над \"Спам \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць наведвання ботаў. "
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Калі \" Штодзённы лічыльнік \"актываваны, табліцы ў базах дадзеных будуць захаваныя:)."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут вы можаце выдаліць табліцы і адключыць \" Штодзённы лічыльнік \"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "УВАГА"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Гэтыя табліцы (са усімі дадзенымі лічыльніка), будуць выдаленыя."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Калі \" Штодзённы лічыльнік \"переинсталлирован, лічыльнік пачынаецца з 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Так"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ці вы ўпэўненыя, што жадаеце адключыць \" Штодзённы лічыльнік \"і выдаліць усе дадзеныя?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статыстыка"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Усяго наведвальнікаў"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Наведвальнікаў зараз на сайце"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Наведвальнікаў сёння"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Наведвальнікаў ўчора"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Наведвальнікаў на мінулым тыдні"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Лічыльнік пачынаецца з"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Наведвальнікаў у дзень"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Наведвальнікаў у месяц"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Наведвальнікаў запісы"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Лічыльнік абнулены"
226
 
227
+ #: counter-options.php:889
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Кансоль"
231
 
232
+ #: counter-options.php:925
233
+ #: counter-options.php:929
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Колькі запісаў вы хочаце бачыць на старонцы кансолі?"
237
 
238
+ #: counter-options.php:928
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Апошнія лічыльнікі - Запісы"
242
 
243
+ #: counter-options.php:932
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Апошнія лічыльнікі - Дні"
247
 
248
+ #: counter-options.php:933
249
+ #: counter-options.php:937
250
+ #: counter-options.php:959
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Наколькі дзён таму вы хочаце бачыць статыстыку?"
254
 
255
+ #: counter-options.php:936
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Табліца - Дні"
259
 
260
+ #: counter-options.php:940
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Табліца - Вышыня"
264
 
265
+ #: counter-options.php:941
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Вышыня самага вялікага слупка"
269
 
270
+ #: counter-options.php:973
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Паказаць ў спісах"
274
 
275
+ #: counter-options.php:974
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Паказаць \" чытанне паведамленняў\"у новай калонцы ва ўпраўленні запісамі"
279
 
280
+ #: counter-options.php:770
281
+ #: counter-options.php:780
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Абнуліць лічыльнік"
285
 
286
+ #: counter-options.php:773
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:771
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:641
298
+ #: counter-options.php:409
 
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Налады"
302
 
303
+ #: counter.php:342
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Чытанне ў дзень"
307
 
308
+ #: counter-core.php:1526
309
+ #: counter-options.php:869
310
+ #: counter.php:235
311
+ #: counter.php:1019
312
  #@ cpd
313
  msgid "Reads"
314
  msgstr "Чытанне"
315
 
316
+ #: counter.php:1406
317
  #@ cpd
318
  msgid "This post"
319
  msgstr "Гэтая запіс"
335
  msgid "Mass Bots cleaned. %s counts deleted."
336
  msgstr "Табліца робатаў ачышчана.% s запісаў выдаленае"
337
 
338
+ #: counter-options.php:839
339
  #@ cpd
340
  msgid "until User Level"
341
  msgstr "Да ўзроўню карыстальніка"
342
 
343
+ #: counter-options.php:858
344
  #@ cpd
345
  msgid "Anonymous IP"
346
  msgstr "Ананімны IP"
347
 
348
+ #: counter-options.php:945
349
  #@ cpd
350
  msgid "Countries"
351
  msgstr "Краіны"
352
 
353
+ #: counter-options.php:946
354
  #@ cpd
355
  msgid "How many countries do you want to see on dashboard page?"
356
  msgstr "Колькі краін вы хочаце бачыць у спісе?"
357
 
358
+ #: counter-options.php:981
359
  #@ cpd
360
  msgid "Start Values"
361
  msgstr "Пачатковыя дадзеныя"
362
 
363
+ #: counter-options.php:985
364
  #@ cpd
365
  msgid "Here you can change the date of first count and add a start count."
366
  msgstr "Тут вы можаце памяняць дату пачатку адліку і дадаць пачатковы лічыльнік"
367
 
368
+ #: counter-options.php:989
369
  #@ cpd
370
  msgid "Start date"
371
  msgstr "Дата пачатку"
372
 
373
+ #: counter-options.php:990
374
  #@ cpd
375
  msgid "Your old Counter starts at?"
376
  msgstr "Ваш стары Лічыльнік пачынаўся з"
377
 
378
+ #: counter-options.php:993
379
+ #: counter-options.php:997
380
  #@ cpd
381
  msgid "Start count"
382
  msgstr "Пачатак адліку"
383
 
384
+ #: counter-options.php:994
385
  #@ cpd
386
  msgid "Add this value to \"Total visitors\"."
387
  msgstr "Дадаць значэнне да \" Усяго наведвальнікаў \"."
388
 
389
+ #: counter-options.php:720
390
  #@ cpd
391
  msgid "GeoIP - Countries"
392
  msgstr "GeoIP - Краіны"
393
 
394
+ #: counter-options.php:729
395
  #@ cpd
396
  msgid "Update old counter data"
397
  msgstr "Абнавіць дадзеныя старога лічыльніка"
398
 
399
+ #: counter-options.php:741
400
  #@ cpd
401
  msgid "Update GeoIP database"
402
  msgstr "Абнавіць базу дадзеных GeoIP"
403
 
404
+ #: counter-options.php:736
405
  #@ cpd
406
  msgid "Download a new version of GeoIP.dat file."
407
  msgstr "Запампаваць новую версію файла GeoIP.dat."
408
 
409
+ #: counter-options.php:746
410
  #@ cpd
411
  msgid "More informations about GeoIP"
412
  msgstr "Больш інфармацыі пра GeoIP"
413
 
414
+ #: counter-options.php:429
415
  #: massbots.php:46
416
  #@ cpd
417
  msgid "Mass Bots"
418
  msgstr "Верагодныя боты"
419
 
420
+ #: counter-options.php:433
421
  #, php-format
422
  #@ cpd
423
  msgid "Show all IPs with more than %s page views per day"
424
  msgstr "Паказаць усе IP з больш чым% s праглядаў у суткі"
425
 
426
+ #: counter-options.php:434
427
+ #: counter-options.php:498
428
  #: notes.php:84
429
  #: userperspan.php:56
430
  #@ cpd
431
  msgid "show"
432
  msgstr "Паказаць"
433
 
434
+ #: counter-options.php:442
435
+ #: counter-options.php:506
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
+ #: counter-options.php:443
441
+ #: counter-options.php:507
442
  #: notes.php:88
443
  #@ cpd
444
  #@ default
445
  msgid "Date"
446
  msgstr "Дата"
447
 
448
+ #: counter-options.php:444
449
+ #: counter-options.php:508
450
  #@ cpd
451
  msgid "Client"
452
  msgstr "Кліент"
453
 
454
+ #: counter-options.php:445
455
+ #: counter-options.php:509
456
  #@ cpd
457
  msgid "Views"
458
  msgstr "Праглядаў"
459
 
460
+ #: counter-options.php:460
461
+ #: counter-options.php:476
462
+ #: counter-options.php:523
463
  #, php-format
464
  #@ cpd
465
  msgid "Delete these %s counts"
466
  msgstr "Выдаліць гэтыя% s лічыльнікаў"
467
 
468
+ #: counter-options.php:811
469
  #@ cpd
470
  msgid "Support"
471
  msgstr "Падтрымка"
472
 
473
+ #: counter-core.php:742
474
  #, php-format
475
  #@ cpd
476
  msgid "Time for Count per Day: <code>%s</code>."
477
  msgstr "Час для Count per Day: <code>%s</code> "
478
 
479
+ #: counter-core.php:743
480
  #@ cpd
481
  msgid "Bug? Problem? Question? Hint? Praise?"
482
  msgstr "Памылка? Праблема? Пытанне? Савет? Хвала?"
483
 
484
+ #: counter-core.php:744
485
  #, php-format
486
  #@ cpd
487
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
488
  msgstr "Напішыце каментар на <a href=\"%s\">старонцы плагіна</a> "
489
 
490
+ #: counter.php:231
491
+ #: counter.php:1407
492
  #@ cpd
493
  msgid "Total reads"
494
  msgstr "Усяго чытанняў"
495
 
496
+ #: counter.php:232
497
+ #: counter.php:1408
498
  #@ cpd
499
  msgid "Reads today"
500
  msgstr "Чытанне сёння"
501
 
502
+ #: counter.php:233
503
+ #: counter.php:1409
504
  #@ cpd
505
  msgid "Reads yesterday"
506
  msgstr "Чытанне ўчора"
507
 
508
+ #: counter.php:890
509
  #: notes.php:55
510
  #: notes.php:89
511
  #@ cpd
512
  msgid "Notes"
513
  msgstr "Нататкі"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Паказаць"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Іншыя"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Рэдагаваць запіс"
533
  msgid "Front page displays"
534
  msgstr "Адлюстраванне галоўнай старонкі"
535
 
536
+ #: counter-core.php:788
537
+ #: counter-options.php:950
538
  #@ cpd
539
  msgid "Browsers"
540
  msgstr "Браўзэры"
541
 
542
+ #: counter-core.php:782
543
  #@ cpd
544
  msgid "Latest Counts"
545
  msgstr "Нядаўнія падлікі"
546
 
547
+ #: counter-core.php:785
548
  #@ default
549
  msgid "Plugin"
550
  msgstr "Плагін"
551
 
552
+ #: counter-core.php:793
553
  #@ cpd
554
  msgid "Reads per Country"
555
  msgstr "Чытанне па краінах"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "Карта"
600
  msgid "edit"
601
  msgstr "Рэдагаваць"
602
 
603
+ #: counter-options.php:862
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Кэш"
607
 
608
+ #: counter-options.php:863
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Я выкарыстоўваю кэшавання убудова. Лічыць гэтыя наведвання пры дапамозе ajax"
612
 
613
+ #: counter-options.php:951
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Падрадок агента карыстальніка падзелены коскі"
617
 
618
+ #: counter-options.php:1035
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Рэжым адладкі"
622
 
623
+ #: counter-options.php:1037
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Дадаць дапаможную інфармацыю ўнізе кожнай старонкі."
627
 
628
+ #: counter-core.php:794
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Наведвальнікаў па краінах"
645
  msgid "PostID"
646
  msgstr "ID паведамлення"
647
 
648
+ #: counter-options.php:998
649
  #@ cpd
650
  msgid "Add this value to \"Total reads\"."
651
  msgstr "Дадаць значэнне да \" Усяго разоў прачытана \"."
652
 
653
+ #: counter-options.php:723
654
  #@ cpd
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 "Вы можаце атрымаць дадзеныя краін для ўсіх запісаў праверыўшы IP адрасы зноўку. Можа заняць некаторы час!"
660
  msgid "no data found"
661
  msgstr "Нічога не знойдзена"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Лічыльнік"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Кліенты і якія спасылаюцца сайты"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "Захаваць і паказаць кліентаў і якія спасылаюцца сайты. <br /> Патрабуе шмат дыскавай прасторы ў базе дадзеных, але дае больш дэталёвую інфармацыю аб вашых наведвальніках. "
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Лакальныя URL"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Паказваць лакальныя пераходы таксама."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Запісы"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Старонкі"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Чытанне на мінулым тыдні"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Катэгорыя"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Тег"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "Ліцэнзія"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Чытанне за месяц"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Спасылаецца сайт"
729
 
730
+ #: counter-options.php:954
731
  #@ cpd
732
  msgid "Referrers - Entries"
733
  msgstr "Старонкі, якія спасылаюцца сайты - Уваходжанне"
734
 
735
+ #: counter-options.php:955
736
  #@ cpd
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Колькі спасылаюцца сайтаў вы хочаце ўбачыць на старонцы статыстыкі?"
739
 
740
+ #: counter-options.php:958
741
  #@ cpd
742
  msgid "Referrers - Days"
743
  msgstr "Старонкі, якія спасылаюцца сайты - Дні"
744
 
745
+ #: counter.php:989
746
  #, php-format
747
  #@ cpd
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "%s спасылаюцца сайтаў за апошнія% s дзён:"
750
 
751
+ #: counter-core.php:778
752
  #@ cpd
753
  msgid "Visitors online"
754
  msgstr "Наведвальнікаў на сайце"
755
 
756
+ #: counter.php:1431
757
  #@ default
758
  msgid "Title"
759
  msgstr "Загаловак"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr ""
766
 
767
+ #: counter-core.php:784
768
+ #: counter-options.php:954
769
+ #: counter-options.php:958
770
  #@ cpd
771
  msgid "Search strings"
772
  msgstr ""
773
 
774
+ #: counter-core.php:1062
775
  #@ cpd
776
  msgid "Backup failed! Cannot open file"
777
  msgstr ""
778
 
779
+ #: counter-core.php:1176
 
 
 
 
 
 
780
  #@ cpd
781
  msgid "Your can download the backup files here and now."
782
  msgstr ""
783
 
784
+ #: counter-core.php:1180
785
+ #: counter-core.php:1188
786
  #, php-format
787
  #@ cpd
788
  msgid "Backup of counter table saved in %s."
789
  msgstr ""
790
 
791
+ #: counter-core.php:1182
792
+ #: counter-core.php:1190
793
  #, php-format
794
  #@ cpd
795
  msgid "Backup of counter options and collection saved in %s."
796
  msgstr ""
797
 
798
+ #: counter-core.php:1246
799
  #@ cpd
800
  msgid "Error while reading backup file!"
801
  msgstr ""
802
 
803
+ #: counter-core.php:1250
804
  #, php-format
805
  #@ cpd
806
  msgid "The backup was added to counter table %s."
807
  msgstr ""
808
 
809
+ #: counter-core.php:1252
810
  #, php-format
811
  #@ cpd
812
  msgid "The counter table %s was restored from backup."
813
  msgstr ""
814
 
815
+ #: counter-core.php:1269
816
  #@ cpd
817
  msgid "Options restored from backup."
818
  msgstr ""
819
 
820
+ #: counter-options.php:174
821
  #@ cpd
822
  msgid "Collection in progress..."
823
  msgstr ""
824
 
825
+ #: counter-options.php:268
826
  #@ cpd
827
  msgid "Get Visitors per Post..."
828
  msgstr ""
829
 
830
+ #: counter-options.php:313
 
 
 
 
 
831
  #, php-format
832
  #@ cpd
833
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
834
  msgstr ""
835
 
836
+ #: counter-options.php:322
837
  #@ cpd
838
  msgid "Installation of \"Count per Day\" checked"
839
  msgstr ""
840
 
841
+ #: counter-options.php:337
842
  #@ cpd
843
  msgid "Old search strings deleted"
844
  msgstr ""
845
 
846
+ #: counter-options.php:352
847
  #@ cpd
848
  msgid "Clients and referers deleted"
849
  msgstr ""
850
 
851
+ #: counter-options.php:408
 
852
  #@ default
853
  msgid "Tools"
854
  msgstr ""
855
 
856
+ #: counter-options.php:560
857
+ #: counter-options.php:1016
858
  #@ cpd
859
  msgid "Backup"
860
  msgstr ""
861
 
862
+ #: counter-options.php:564
863
  #, php-format
864
  #@ cpd
865
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
866
  msgstr ""
867
 
868
+ #: counter-options.php:567
869
  #@ cpd
870
  msgid "Download only"
871
  msgstr ""
872
 
873
+ #: counter-options.php:571
874
  #@ cpd
875
  msgid "Backup the database"
876
  msgstr ""
877
 
878
+ #: counter-options.php:599
879
  #@ cpd
880
  msgid "Settings and collections"
881
  msgstr ""
882
 
883
+ #: counter-options.php:604
884
  #, php-format
885
  #@ cpd
886
  msgid "Counter table %s"
887
  msgstr ""
888
 
889
+ #: counter-options.php:611
890
  #, php-format
891
  #@ cpd
892
  msgid "Add data from the backup file %s to existing counter table?"
893
  msgstr ""
894
 
895
+ #: counter-options.php:611
896
  #@ cpd
897
  msgid "Add"
898
  msgstr ""
899
 
900
+ #: counter-options.php:615
901
  #, php-format
902
  #@ cpd
903
  msgid "Restore data from the backup file %s ?"
904
  msgstr ""
905
 
906
+ #: counter-options.php:615
907
  #@ default
908
  msgid "Restore"
909
  msgstr ""
910
 
911
+ #: counter-options.php:617
912
  #@ default
913
  msgid "Delete"
914
  msgstr ""
915
 
916
+ #: counter-options.php:618
917
  #, php-format
918
  #@ cpd
919
  msgid "Delete the backup file %s ?"
920
  msgstr ""
921
 
922
+ #: counter-options.php:624
923
  #@ cpd
924
  msgid "add backup to current counter table"
925
  msgstr ""
926
 
927
+ #: counter-options.php:625
928
  #@ cpd
929
  msgid "replace current counter table with with backup"
930
  msgstr ""
931
 
932
+ #: counter-options.php:626
933
  #@ cpd
934
  msgid "delete backup file"
935
  msgstr ""
936
 
937
+ #: counter-options.php:651
938
  #, php-format
939
  #@ cpd
940
  msgid "Delete search strings older than %s days."
941
  msgstr ""
942
 
943
+ #: counter-options.php:655
944
  #@ cpd
945
  msgid "Delete search strings"
946
  msgstr ""
947
 
948
+ #: counter-options.php:661
949
+ #: counter-options.php:680
950
  #, php-format
951
  #@ cpd
952
  msgid "Current size of your counter table %s is %s."
953
  msgstr ""
954
 
955
+ #: counter-options.php:662
956
  #, php-format
957
  #@ cpd
958
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
959
  msgstr ""
960
 
961
+ #: counter-options.php:666
962
  #@ cpd
963
  msgid "Delete clients and referers"
964
  msgstr ""
965
 
966
+ #: counter-options.php:675
967
+ #: counter-options.php:707
968
  #@ cpd
969
  msgid "Collect old data"
970
  msgstr ""
971
 
972
+ #: counter-options.php:682
973
  #@ cpd
974
  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."
975
  msgstr ""
976
 
977
+ #: counter-options.php:687
978
  #, php-format
979
  #@ cpd
980
  msgid "Currently your collection contains data until %s."
981
  msgstr ""
982
 
983
+ #: counter-options.php:691
984
  #@ cpd
985
  msgid "Normally new data will be added to the collection."
986
  msgstr ""
987
 
988
+ #: counter-options.php:697
989
  #@ cpd
990
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
991
  msgstr ""
992
 
993
+ #: counter-options.php:698
994
  #, php-format
995
  #@ cpd
996
  msgid "All collected data until %s will deleted."
997
  msgstr ""
998
 
999
+ #: counter-options.php:703
1000
  #, php-format
1001
  #@ cpd
1002
  msgid "Keep entries of last %s full months + current month in counter table."
1003
  msgstr ""
1004
 
1005
+ #: counter-options.php:754
1006
  #@ cpd
1007
  msgid "ReActivation"
1008
  msgstr ""
1009
 
1010
+ #: counter-options.php:757
1011
  #@ cpd
1012
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1013
  msgstr ""
1014
 
1015
+ #: counter-options.php:762
1016
  #@ cpd
1017
  msgid "ReActivate the plugin"
1018
  msgstr ""
1019
 
1020
+ #: counter-options.php:871
1021
  #@ cpd
1022
  msgid "Save URL only, no query string."
1023
  msgstr ""
1024
 
1025
+ #: counter-options.php:905
1026
  #@ cpd
1027
  msgid "Who can see it"
1028
  msgstr ""
1029
 
1030
+ #: counter-options.php:914
1031
  #@ cpd
1032
  msgid "custom"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:916
1036
  #@ cpd
1037
  msgid "and higher are allowed to see the statistics page."
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:918
1041
  #, php-format
1042
  #@ cpd
1043
  msgid "Set the %s capability %s a user need:"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:1005
1047
  #@ cpd
1048
  msgid "Stylesheet"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:1008
1052
  #@ cpd
1053
  msgid "NO Stylesheet in Frontend"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:1009
1057
  #@ cpd
1058
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:1019
1062
  #@ cpd
1063
  msgid "Entries per pass"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:1022
1067
  #@ cpd
1068
  msgid "How many entries should be saved per pass? Default: 10000"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:1027
1072
  #@ cpd
1073
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
1074
  msgstr ""
1075
 
1076
+ #: counter.php:241
1077
+ #: counter.php:1043
1078
  #@ cpd
1079
  msgid "Visitors"
1080
  msgstr ""
1081
 
1082
+ #: counter.php:244
1083
+ #: counter.php:245
1084
  #@ cpd
1085
  msgid "Most visited day"
1086
  msgstr ""
1087
 
1088
+ #: counter.php:1145
1089
  #@ default
1090
  msgid "Front page"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1193
1094
  #, php-format
1095
  #@ cpd
1096
  msgid "The %s most searched strings:"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1202
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The search strings of the last %s days:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1366
1106
  #@ default
1107
  msgid "_name"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1450
1111
  #@ cpd
1112
  msgid "drag and drop to sort"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-bg_BG.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-05-08 08:13:20+0000\n"
7
  "Last-Translator: Joro <Joro2007@Gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -42,529 +42,534 @@ msgstr "следващо обновяване"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Ботовете са изчистени. %s броячите изтрити."
44
 
45
- #: counter-options.php:113
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Базата-данни е изчистена. %s редовете са премахнати."
50
 
51
- #: counter-options.php:123
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Броячът е нулиран."
55
 
56
- #: counter-options.php:128
57
- #: counter-options.php:719
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "Деинсталирай Count per Day"
61
 
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #: counter-options.php:135
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Таблицата %s премахната"
69
 
70
- #: counter-options.php:136
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Настройките са премахнати"
74
 
75
- #: counter-options.php:377
76
- #: counter-options.php:705
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Деинсталиране"
80
 
81
- #: counter-options.php:378
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Натиснете тук"
85
 
86
- #: counter-options.php:378
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
90
 
91
- #: counter-options.php:748
92
  #@ cpd
93
  msgid "Counter"
94
  msgstr "Брояч"
95
 
96
- #: counter-options.php:752
97
  #@ cpd
98
  msgid "Online time"
99
  msgstr "Време онлайн"
100
 
101
- #: counter-options.php:753
102
  #@ cpd
103
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
104
  msgstr "Време онлайн"
105
 
106
- #: counter-options.php:756
107
  #@ cpd
108
  msgid "Logged on Users"
109
  msgstr "Включени потребители"
110
 
111
- #: counter-options.php:758
112
  #@ cpd
113
  msgid "count too"
114
  msgstr "преброявай също"
115
 
116
- #: counter-options.php:759
117
  #@ cpd
118
  msgid "until User Level"
119
  msgstr "до нивото на потребителя"
120
 
121
- #: counter-options.php:770
122
  #@ cpd
123
  msgid "Auto counter"
124
  msgstr "Автоматичен брояч"
125
 
126
- #: counter-options.php:771
127
  #@ cpd
128
  msgid "Counts automatically single-posts and pages, no changes on template needed."
129
  msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
130
 
131
- #: counter-options.php:774
132
  #@ cpd
133
  msgid "Bots to ignore"
134
  msgstr "Игнорирай тези Ботове"
135
 
136
- #: counter-options.php:778
137
  #@ cpd
138
  msgid "Anonymous IP"
139
  msgstr "Анонимно IP"
140
 
141
- #: counter-options.php:782
142
  #@ cpd
143
  msgid "Cache"
144
  msgstr "Кеш"
145
 
146
- #: counter-options.php:783
147
  #@ cpd
148
  msgid "I use a cache plugin. Count these visits with ajax."
149
  msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
150
 
151
- #: counter-options.php:786
152
  #@ cpd
153
  msgid "Clients and referrers"
154
  msgstr "Потребители и препращащи сайтове"
155
 
156
- #: counter-options.php:789
157
  #@ cpd
158
  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."
159
  msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
160
 
161
- #: counter-core.php:1464
162
- #: counter-options.php:789
163
- #: counter.php:222
164
- #: counter.php:974
165
  #@ cpd
166
  msgid "Reads"
167
  msgstr "Прочетени"
168
 
169
- #: counter-options.php:799
170
  #@ default
171
  msgid "Dashboard"
172
  msgstr "Табло"
173
 
174
- #: counter-core.php:792
175
- #: counter-options.php:834
176
  #@ cpd
177
  msgid "Visitors per post"
178
  msgstr "Посетители за публикация"
179
 
180
- #: counter-options.php:835
181
- #: counter-options.php:839
182
  #@ cpd
183
  msgid "How many posts do you want to see on dashboard page?"
184
  msgstr "Колко публикации искате се покажат на таблото?"
185
 
186
- #: counter-options.php:838
187
  #@ cpd
188
  msgid "Latest Counts - Posts"
189
  msgstr "Последни преброявания - Публикации"
190
 
191
- #: counter-options.php:842
192
  #@ cpd
193
  msgid "Latest Counts - Days"
194
  msgstr "Последни преброявания - Дни"
195
 
196
- #: counter-options.php:843
197
- #: counter-options.php:847
198
- #: counter-options.php:869
199
  #@ cpd
200
  msgid "How many days do you want look back?"
201
  msgstr "Колко дни искате да бъдат показани?"
202
 
203
- #: counter-options.php:846
204
  #@ cpd
205
  msgid "Chart - Days"
206
  msgstr "Графика - Дни"
207
 
208
- #: counter-options.php:850
209
  #@ cpd
210
  msgid "Chart - Height"
211
  msgstr "Графика - Височина"
212
 
213
- #: counter-options.php:851
214
  #@ cpd
215
  msgid "Height of the biggest bar"
216
  msgstr "Височина на най-голямото показание"
217
 
218
- #: counter-options.php:855
219
  #@ cpd
220
  msgid "Countries"
221
  msgstr "Държави"
222
 
223
- #: counter-options.php:856
224
  #@ cpd
225
  msgid "How many countries do you want to see on dashboard page?"
226
  msgstr "Колко държави искате да виждате на таблото?"
227
 
228
- #: counter-core.php:799
229
- #: counter-options.php:860
230
  #@ cpd
231
  msgid "Browsers"
232
  msgstr "Браузъри"
233
 
234
- #: counter-options.php:861
235
  #@ cpd
236
  msgid "Substring of the user agent, separated by comma"
237
  msgstr "Поднизове на потребителя, разделени със запетая"
238
 
239
- #: counter-options.php:872
240
  #@ cpd
241
  msgid "Local URLs"
242
  msgstr "Локални URLs"
243
 
244
- #: counter-options.php:873
245
  #@ cpd
246
  msgid "Show local referrers too."
247
  msgstr "Покажи и местните препращащи сайтове."
248
 
249
- #: counter-options.php:880
250
  #@ default
251
  msgid "Posts"
252
  msgstr "Публикации"
253
 
254
- #: counter-options.php:880
255
  #@ default
256
  msgid "Pages"
257
  msgstr "Страници"
258
 
259
- #: counter-options.php:883
260
  #@ cpd
261
  msgid "Show in lists"
262
  msgstr "Покажи в списъците"
263
 
264
- #: counter-options.php:884
265
  #@ cpd
266
  msgid "Show \"Reads per Post\" in a new column in post management views."
267
  msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
268
 
269
- #: counter-options.php:891
270
  #@ cpd
271
  msgid "Start Values"
272
  msgstr "Начални стойности"
273
 
274
- #: counter-options.php:895
275
  #@ cpd
276
  msgid "Here you can change the date of first count and add a start count."
277
  msgstr "Тук можете да промените началната дата и да добавите нова дата."
278
 
279
- #: counter-options.php:899
280
  #@ cpd
281
  msgid "Start date"
282
  msgstr "Начална дата"
283
 
284
- #: counter-options.php:900
285
  #@ cpd
286
  msgid "Your old Counter starts at?"
287
  msgstr "Кога да стартира броячът?"
288
 
289
- #: counter-options.php:903
290
- #: counter-options.php:907
291
  #@ cpd
292
  msgid "Start count"
293
  msgstr "Стартиране на брояча"
294
 
295
- #: counter-options.php:904
296
  #@ cpd
297
  msgid "Add this value to \"Total visitors\"."
298
  msgstr "Добави тази стойност към \"Общо посетители\"."
299
 
300
- #: counter-options.php:908
301
  #@ cpd
302
  msgid "Add this value to \"Total reads\"."
303
  msgstr "Добави тази стойност към \"Общо прочетени\"."
304
 
305
- #: counter-options.php:945
306
  #@ cpd
307
  msgid "Debug mode"
308
  msgstr "Дебъг режим"
309
 
310
- #: counter-options.php:947
311
  #@ cpd
312
  msgid "Show debug informations at the bottom of all pages."
313
  msgstr "Покажи дебъг информация в дъното на всяка страница."
314
 
315
- #: counter-options.php:952
316
  #@ cpd
317
  msgid "Update options"
318
  msgstr "Обнови настройките"
319
 
320
- #: counter-options.php:636
321
  #@ cpd
322
  msgid "GeoIP - Countries"
323
  msgstr "GeoIP - Държави"
324
 
325
- #: counter-options.php:645
326
  #@ cpd
327
  msgid "Update old counter data"
328
  msgstr "Обнови старите данни на брояча"
329
 
330
- #: counter-options.php:639
331
  #@ cpd
332
  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!"
333
  msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
334
 
335
- #: counter-options.php:657
336
  #@ cpd
337
  msgid "Update GeoIP database"
338
  msgstr "Обнови GeoIP базата-данни"
339
 
340
- #: counter-options.php:652
341
  #@ cpd
342
  msgid "Download a new version of GeoIP.dat file."
343
  msgstr "Изтегли нова версия на GeoIP.dat"
344
 
345
- #: counter-options.php:662
346
  #@ cpd
347
  msgid "More informations about GeoIP"
348
  msgstr "Повече информация за GeoIP"
349
 
350
- #: counter-options.php:417
351
  #: massbots.php:46
352
  #@ cpd
353
  msgid "Mass Bots"
354
  msgstr "Ботове"
355
 
356
- #: counter-options.php:421
357
  #, php-format
358
  #@ cpd
359
  msgid "Show all IPs with more than %s page views per day"
360
  msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
361
 
362
- #: counter-options.php:422
 
363
  #: notes.php:84
364
  #: userperspan.php:56
365
  #@ cpd
366
  msgid "show"
367
  msgstr "покажи"
368
 
369
- #: counter-options.php:430
 
370
  #@ cpd
371
  msgid "IP"
372
  msgstr "IP"
373
 
374
- #: counter-options.php:431
 
375
  #: notes.php:88
376
  #@ cpd
377
  #@ default
378
  msgid "Date"
379
  msgstr "Дата"
380
 
381
- #: counter-options.php:432
 
382
  #@ cpd
383
  msgid "Client"
384
  msgstr "Потребител"
385
 
386
- #: counter-options.php:433
 
387
  #@ cpd
388
  msgid "Views"
389
  msgstr "Прегледи"
390
 
391
- #: counter-options.php:448
392
- #: counter-options.php:464
 
393
  #, php-format
394
  #@ cpd
395
  msgid "Delete these %s counts"
396
  msgstr "Изтрий тези %s броячи"
397
 
398
- #: counter-options.php:553
399
- #: counter-options.php:561
400
  #@ cpd
401
  msgid "Clean the database"
402
  msgstr "Изчисти базата-данни"
403
 
404
- #: counter-options.php:557
405
  #@ cpd
406
  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."
407
  msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
408
 
409
- #: counter-options.php:686
410
- #: counter-options.php:696
411
  #@ cpd
412
  msgid "Reset the counter"
413
  msgstr "Изтрий брояча"
414
 
415
- #: counter-options.php:689
416
  #@ cpd
417
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
418
  msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
419
 
420
- #: counter-options.php:708
421
  #@ cpd
422
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
423
  msgstr "Ако \"Count per Day\" е изключено, само изключените таблици в базата-данни ще бъдат запазени."
424
 
425
- #: counter-options.php:709
426
  #@ cpd
427
  msgid "Here you can delete the tables and disable \"Count per Day\"."
428
  msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
429
 
430
- #: counter-options.php:712
431
  #@ cpd
432
  msgid "WARNING"
433
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
434
 
435
- #: counter-options.php:713
436
  #@ cpd
437
  msgid "These tables (with ALL counter data) will be deleted."
438
  msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
439
 
440
- #: counter-options.php:715
441
  #@ cpd
442
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
443
  msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
444
 
445
- #: counter-options.php:695
446
- #: counter-options.php:718
447
  #@ cpd
448
  msgid "Yes"
449
  msgstr "Да"
450
 
451
- #: counter-options.php:719
452
  #@ cpd
453
  msgid "You are sure to disable Count per Day and delete all data?"
454
  msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
455
 
456
- #: counter-options.php:727
457
  #@ cpd
458
  msgid "Support"
459
  msgstr "Поддръжка"
460
 
461
- #: counter.php:218
462
- #: counter.php:1356
463
  #@ cpd
464
  msgid "Total reads"
465
  msgstr "Общо прочетени"
466
 
467
- #: counter.php:219
468
- #: counter.php:1357
469
  #@ cpd
470
  msgid "Reads today"
471
  msgstr "Прочетени днес"
472
 
473
- #: counter.php:220
474
- #: counter.php:1358
475
  #@ cpd
476
  msgid "Reads yesterday"
477
  msgstr "Прочетени вчера"
478
 
479
- #: counter.php:221
480
- #: counter.php:1359
481
  #@ cpd
482
  msgid "Reads last week"
483
  msgstr "Прочетени последната седмица"
484
 
485
- #: counter-core.php:788
486
- #: counter.php:223
487
- #: counter.php:1167
488
- #: counter.php:1361
489
  #@ cpd
490
  msgid "Total visitors"
491
  msgstr "Общо посетители"
492
 
493
- #: counter.php:224
494
- #: counter.php:1367
495
  #@ cpd
496
  msgid "Visitors currently online"
497
  msgstr "Посетители онлайн"
498
 
499
- #: counter.php:225
500
- #: counter.php:1362
501
  #@ cpd
502
  msgid "Visitors today"
503
  msgstr "Посетители днес"
504
 
505
- #: counter.php:226
506
- #: counter.php:1363
507
  #@ cpd
508
  msgid "Visitors yesterday"
509
  msgstr "Посетители вчера"
510
 
511
- #: counter.php:227
512
- #: counter.php:1364
513
  #@ cpd
514
  msgid "Visitors last week"
515
  msgstr "Посетители през последната седмица"
516
 
517
- #: counter-core.php:794
518
- #: counter.php:229
519
- #: counter.php:328
520
- #: counter.php:1169
521
- #: counter.php:1366
522
  #: userperspan.php:46
523
  #@ cpd
524
  msgid "Visitors per day"
525
  msgstr "Посетители по дни"
526
 
527
- #: counter.php:230
528
- #: counter.php:924
529
- #: counter.php:1368
530
  #@ cpd
531
  msgid "Counter starts on"
532
  msgstr "Броячът е стартиран"
533
 
534
- #: counter.php:875
535
  #: notes.php:55
536
  #: notes.php:89
537
  #@ cpd
538
  msgid "Notes"
539
  msgstr "Забележки"
540
 
541
- #: counter.php:756
542
  #, php-format
543
  #@ cpd
544
  msgid "The %s most visited posts in last %s days:"
545
  msgstr "Най-много %s посетени публикации в последните %s дни:"
546
 
547
- #: counter.php:873
548
  #@ default
549
  msgid "Show"
550
  msgstr "Показване"
551
 
552
- #: counter.php:913
553
  #@ cpd
554
  msgid "Other"
555
  msgstr "Други"
556
 
557
- #: counter.php:1085
558
  #@ default
559
  msgid "Edit Post"
560
  msgstr "Редактиране на публикацията"
561
 
562
- #: counter.php:1094
563
  #@ default
564
  msgid "Category"
565
  msgstr "Категория"
566
 
567
- #: counter.php:1097
568
  #@ default
569
  msgid "Tag"
570
  msgstr "Етикет"
@@ -575,95 +580,94 @@ msgstr "Етикет"
575
  msgid "Front page displays"
576
  msgstr "Изобразяване на заглавна страница"
577
 
578
- #: counter-core.php:652
579
- #: counter-options.php:401
580
- #: counter-options.php:740
581
  #@ default
582
  msgid "Settings"
583
  msgstr "Настройки"
584
 
585
- #: counter-core.php:753
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:754
592
  #@ cpd
593
  msgid "Bug? Problem? Question? Hint? Praise?"
594
  msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
595
 
596
- #: counter-core.php:755
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:756
603
  #@ default
604
  msgid "License"
605
  msgstr "Лиценз"
606
 
607
- #: counter.php:327
608
  #@ cpd
609
  msgid "Reads per day"
610
  msgstr "Прочетени по дни"
611
 
612
- #: counter-core.php:790
613
- #: counter.php:1365
614
  #@ cpd
615
  msgid "Visitors per month"
616
  msgstr "Посетители по месеци"
617
 
618
- #: counter-core.php:791
619
- #: counter.php:1360
620
  #@ cpd
621
  msgid "Reads per month"
622
  msgstr "Прочетени по месеци"
623
 
624
- #: counter-core.php:793
625
  #@ cpd
626
  msgid "Latest Counts"
627
  msgstr "Последни броячи"
628
 
629
- #: counter-core.php:796
630
  #@ default
631
  msgid "Plugin"
632
  msgstr "Разширение"
633
 
634
- #: counter-core.php:800
635
  #@ cpd
636
  msgid "Referrer"
637
  msgstr "Препращащ сайт"
638
 
639
- #: counter-core.php:804
640
  #@ cpd
641
  msgid "Reads per Country"
642
  msgstr "Прочитания по държави"
643
 
644
- #: counter-core.php:805
645
  #@ cpd
646
  msgid "Visitors per Country"
647
  msgstr "Посетители по държави"
648
 
649
- #: counter-core.php:820
650
- #: counter.php:1283
651
  #@ cpd
652
  msgid "Statistics"
653
  msgstr "Статистика"
654
 
655
- #: counter.php:418
656
- #: counter.php:1198
657
  #@ cpd
658
  msgid "Map"
659
  msgstr "Карта"
660
 
661
- #: counter.php:1355
662
  #@ cpd
663
  msgid "This post"
664
  msgstr "Тази публикация"
665
 
666
- #: counter.php:1380
667
  #@ default
668
  msgid "Title"
669
  msgstr "Заглавие"
@@ -728,395 +732,488 @@ msgstr "PostID"
728
  msgid "no data found"
729
  msgstr "няма намерени данни"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Референти - Вписвания"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Брой референти, показвани на страницата на таблото?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Референти - Дни"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s Референти в последните %s дни:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Посетители на линия"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" е обновен до версия %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Архивирането е неуспешно! Файлът не може да се отвори"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Извършва се архивиране на %s. Всяка точка отговаря на %s вписване."
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Архивът на таблицата е запазен в %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Архивът на опциите на броячите е запазено в %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Събирането е стартирано..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Прегледай посетителите за публикация"
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Изтриване на стари данни"
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Броячът на вписвания до%s събира и броячът на таблицата%s е оптимизиран (размер, преди> размер =%s след =%s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Инсталацията на \"Count per Day\" е проверена"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Инструменти"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Запази само URL, без стринг за запитване."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Кой има право да вижда това"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "по избор"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "и по-високо е позволено да вижде статистиката."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Задайте способност %s %s ако потребителят има необходимост:"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Таблица"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "БЕЗ таблица в началната страница"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Не зареждай таблицата \"counter.css\" в началната страница."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Архивиране"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Влизания"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Колко посещения трябва да бъдат запазени? По подразбиране: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr "Ако лимитът на PHP паметта е по-малък от 50 МВ и получавате бяла страница или съобщения за грешки, опитайте с по-малка стойност."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Създаване на резервно копие на брояча %s в WP-съдържанието на директорията (ако е с права за запис)."
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Архивиране на базата-данни"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Събиране на стари данни"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "Съществуващият размер на таблицата %s е %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr "Можете да съберете стари данни и да почистите таблицата. <br/> Прочитанията и посетителите ще бъдат запазени по месеци, по страни и по публикации. <br/> Клиенти и референти ще се премахват."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "В момента вашата колекция съдържа данни до %s."
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Обикновено новите данни ще бъдат добавени към колекцията."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Премахване на старата колекция и създаване на нова, която съдържа единствено данните от таблицата."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Всички събрани данни до%s ще бъдат премахнати."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Пазене на записи за всички месеци на миналата%s и текущия месец в таблицата."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "Активиране отново"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Тук можете да стартирате инсталацията ръчно. <br/> Също можете да деактивирате и да реактивирате добавка."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "Включване отново на тази добавка"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Посетители"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Най-много посещения"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "провлачете и пуснете, за да сортирате"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:14+0000\n"
7
  "Last-Translator: Joro <Joro2007@Gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Ботовете са изчистени. %s броячите изтрити."
44
 
45
+ #: counter-options.php:118
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Базата-данни е изчистена. %s редовете са премахнати."
50
 
51
+ #: counter-options.php:128
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Броячът е нулиран."
55
 
56
+ #: counter-options.php:133
57
+ #: counter-options.php:803
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "Деинсталирай Count per Day"
61
 
62
+ #: counter-options.php:138
63
+ #: counter-options.php:139
64
+ #: counter-options.php:140
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Таблицата %s премахната"
69
 
70
+ #: counter-options.php:141
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Настройките са премахнати"
74
 
75
+ #: counter-options.php:382
76
+ #: counter-options.php:789
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Деинсталиране"
80
 
81
+ #: counter-options.php:383
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Натиснете тук"
85
 
86
+ #: counter-options.php:383
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
90
 
91
+ #: counter-options.php:828
92
  #@ cpd
93
  msgid "Counter"
94
  msgstr "Брояч"
95
 
96
+ #: counter-options.php:832
97
  #@ cpd
98
  msgid "Online time"
99
  msgstr "Време онлайн"
100
 
101
+ #: counter-options.php:833
102
  #@ cpd
103
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
104
  msgstr "Време онлайн"
105
 
106
+ #: counter-options.php:836
107
  #@ cpd
108
  msgid "Logged on Users"
109
  msgstr "Включени потребители"
110
 
111
+ #: counter-options.php:838
112
  #@ cpd
113
  msgid "count too"
114
  msgstr "преброявай също"
115
 
116
+ #: counter-options.php:839
117
  #@ cpd
118
  msgid "until User Level"
119
  msgstr "до нивото на потребителя"
120
 
121
+ #: counter-options.php:850
122
  #@ cpd
123
  msgid "Auto counter"
124
  msgstr "Автоматичен брояч"
125
 
126
+ #: counter-options.php:851
127
  #@ cpd
128
  msgid "Counts automatically single-posts and pages, no changes on template needed."
129
  msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
130
 
131
+ #: counter-options.php:854
132
  #@ cpd
133
  msgid "Bots to ignore"
134
  msgstr "Игнорирай тези Ботове"
135
 
136
+ #: counter-options.php:858
137
  #@ cpd
138
  msgid "Anonymous IP"
139
  msgstr "Анонимно IP"
140
 
141
+ #: counter-options.php:862
142
  #@ cpd
143
  msgid "Cache"
144
  msgstr "Кеш"
145
 
146
+ #: counter-options.php:863
147
  #@ cpd
148
  msgid "I use a cache plugin. Count these visits with ajax."
149
  msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
150
 
151
+ #: counter-options.php:866
152
  #@ cpd
153
  msgid "Clients and referrers"
154
  msgstr "Потребители и препращащи сайтове"
155
 
156
+ #: counter-options.php:869
157
  #@ cpd
158
  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."
159
  msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
160
 
161
+ #: counter-core.php:1526
162
+ #: counter-options.php:869
163
+ #: counter.php:235
164
+ #: counter.php:1019
165
  #@ cpd
166
  msgid "Reads"
167
  msgstr "Прочетени"
168
 
169
+ #: counter-options.php:889
170
  #@ default
171
  msgid "Dashboard"
172
  msgstr "Табло"
173
 
174
+ #: counter-core.php:781
175
+ #: counter-options.php:924
176
  #@ cpd
177
  msgid "Visitors per post"
178
  msgstr "Посетители за публикация"
179
 
180
+ #: counter-options.php:925
181
+ #: counter-options.php:929
182
  #@ cpd
183
  msgid "How many posts do you want to see on dashboard page?"
184
  msgstr "Колко публикации искате се покажат на таблото?"
185
 
186
+ #: counter-options.php:928
187
  #@ cpd
188
  msgid "Latest Counts - Posts"
189
  msgstr "Последни преброявания - Публикации"
190
 
191
+ #: counter-options.php:932
192
  #@ cpd
193
  msgid "Latest Counts - Days"
194
  msgstr "Последни преброявания - Дни"
195
 
196
+ #: counter-options.php:933
197
+ #: counter-options.php:937
198
+ #: counter-options.php:959
199
  #@ cpd
200
  msgid "How many days do you want look back?"
201
  msgstr "Колко дни искате да бъдат показани?"
202
 
203
+ #: counter-options.php:936
204
  #@ cpd
205
  msgid "Chart - Days"
206
  msgstr "Графика - Дни"
207
 
208
+ #: counter-options.php:940
209
  #@ cpd
210
  msgid "Chart - Height"
211
  msgstr "Графика - Височина"
212
 
213
+ #: counter-options.php:941
214
  #@ cpd
215
  msgid "Height of the biggest bar"
216
  msgstr "Височина на най-голямото показание"
217
 
218
+ #: counter-options.php:945
219
  #@ cpd
220
  msgid "Countries"
221
  msgstr "Държави"
222
 
223
+ #: counter-options.php:946
224
  #@ cpd
225
  msgid "How many countries do you want to see on dashboard page?"
226
  msgstr "Колко държави искате да виждате на таблото?"
227
 
228
+ #: counter-core.php:788
229
+ #: counter-options.php:950
230
  #@ cpd
231
  msgid "Browsers"
232
  msgstr "Браузъри"
233
 
234
+ #: counter-options.php:951
235
  #@ cpd
236
  msgid "Substring of the user agent, separated by comma"
237
  msgstr "Поднизове на потребителя, разделени със запетая"
238
 
239
+ #: counter-options.php:962
240
  #@ cpd
241
  msgid "Local URLs"
242
  msgstr "Локални URLs"
243
 
244
+ #: counter-options.php:963
245
  #@ cpd
246
  msgid "Show local referrers too."
247
  msgstr "Покажи и местните препращащи сайтове."
248
 
249
+ #: counter-options.php:970
250
  #@ default
251
  msgid "Posts"
252
  msgstr "Публикации"
253
 
254
+ #: counter-options.php:970
255
  #@ default
256
  msgid "Pages"
257
  msgstr "Страници"
258
 
259
+ #: counter-options.php:973
260
  #@ cpd
261
  msgid "Show in lists"
262
  msgstr "Покажи в списъците"
263
 
264
+ #: counter-options.php:974
265
  #@ cpd
266
  msgid "Show \"Reads per Post\" in a new column in post management views."
267
  msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
268
 
269
+ #: counter-options.php:981
270
  #@ cpd
271
  msgid "Start Values"
272
  msgstr "Начални стойности"
273
 
274
+ #: counter-options.php:985
275
  #@ cpd
276
  msgid "Here you can change the date of first count and add a start count."
277
  msgstr "Тук можете да промените началната дата и да добавите нова дата."
278
 
279
+ #: counter-options.php:989
280
  #@ cpd
281
  msgid "Start date"
282
  msgstr "Начална дата"
283
 
284
+ #: counter-options.php:990
285
  #@ cpd
286
  msgid "Your old Counter starts at?"
287
  msgstr "Кога да стартира броячът?"
288
 
289
+ #: counter-options.php:993
290
+ #: counter-options.php:997
291
  #@ cpd
292
  msgid "Start count"
293
  msgstr "Стартиране на брояча"
294
 
295
+ #: counter-options.php:994
296
  #@ cpd
297
  msgid "Add this value to \"Total visitors\"."
298
  msgstr "Добави тази стойност към \"Общо посетители\"."
299
 
300
+ #: counter-options.php:998
301
  #@ cpd
302
  msgid "Add this value to \"Total reads\"."
303
  msgstr "Добави тази стойност към \"Общо прочетени\"."
304
 
305
+ #: counter-options.php:1035
306
  #@ cpd
307
  msgid "Debug mode"
308
  msgstr "Дебъг режим"
309
 
310
+ #: counter-options.php:1037
311
  #@ cpd
312
  msgid "Show debug informations at the bottom of all pages."
313
  msgstr "Покажи дебъг информация в дъното на всяка страница."
314
 
315
+ #: counter-options.php:1042
316
  #@ cpd
317
  msgid "Update options"
318
  msgstr "Обнови настройките"
319
 
320
+ #: counter-options.php:720
321
  #@ cpd
322
  msgid "GeoIP - Countries"
323
  msgstr "GeoIP - Държави"
324
 
325
+ #: counter-options.php:729
326
  #@ cpd
327
  msgid "Update old counter data"
328
  msgstr "Обнови старите данни на брояча"
329
 
330
+ #: counter-options.php:723
331
  #@ cpd
332
  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!"
333
  msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
334
 
335
+ #: counter-options.php:741
336
  #@ cpd
337
  msgid "Update GeoIP database"
338
  msgstr "Обнови GeoIP базата-данни"
339
 
340
+ #: counter-options.php:736
341
  #@ cpd
342
  msgid "Download a new version of GeoIP.dat file."
343
  msgstr "Изтегли нова версия на GeoIP.dat"
344
 
345
+ #: counter-options.php:746
346
  #@ cpd
347
  msgid "More informations about GeoIP"
348
  msgstr "Повече информация за GeoIP"
349
 
350
+ #: counter-options.php:429
351
  #: massbots.php:46
352
  #@ cpd
353
  msgid "Mass Bots"
354
  msgstr "Ботове"
355
 
356
+ #: counter-options.php:433
357
  #, php-format
358
  #@ cpd
359
  msgid "Show all IPs with more than %s page views per day"
360
  msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
361
 
362
+ #: counter-options.php:434
363
+ #: counter-options.php:498
364
  #: notes.php:84
365
  #: userperspan.php:56
366
  #@ cpd
367
  msgid "show"
368
  msgstr "покажи"
369
 
370
+ #: counter-options.php:442
371
+ #: counter-options.php:506
372
  #@ cpd
373
  msgid "IP"
374
  msgstr "IP"
375
 
376
+ #: counter-options.php:443
377
+ #: counter-options.php:507
378
  #: notes.php:88
379
  #@ cpd
380
  #@ default
381
  msgid "Date"
382
  msgstr "Дата"
383
 
384
+ #: counter-options.php:444
385
+ #: counter-options.php:508
386
  #@ cpd
387
  msgid "Client"
388
  msgstr "Потребител"
389
 
390
+ #: counter-options.php:445
391
+ #: counter-options.php:509
392
  #@ cpd
393
  msgid "Views"
394
  msgstr "Прегледи"
395
 
396
+ #: counter-options.php:460
397
+ #: counter-options.php:476
398
+ #: counter-options.php:523
399
  #, php-format
400
  #@ cpd
401
  msgid "Delete these %s counts"
402
  msgstr "Изтрий тези %s броячи"
403
 
404
+ #: counter-options.php:637
405
+ #: counter-options.php:645
406
  #@ cpd
407
  msgid "Clean the database"
408
  msgstr "Изчисти базата-данни"
409
 
410
+ #: counter-options.php:641
411
  #@ cpd
412
  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."
413
  msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
414
 
415
+ #: counter-options.php:770
416
+ #: counter-options.php:780
417
  #@ cpd
418
  msgid "Reset the counter"
419
  msgstr "Изтрий брояча"
420
 
421
+ #: counter-options.php:773
422
  #@ cpd
423
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
424
  msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
425
 
426
+ #: counter-options.php:792
427
  #@ cpd
428
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
429
  msgstr "Ако \"Count per Day\" е изключено, само изключените таблици в базата-данни ще бъдат запазени."
430
 
431
+ #: counter-options.php:793
432
  #@ cpd
433
  msgid "Here you can delete the tables and disable \"Count per Day\"."
434
  msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
435
 
436
+ #: counter-options.php:796
437
  #@ cpd
438
  msgid "WARNING"
439
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
440
 
441
+ #: counter-options.php:797
442
  #@ cpd
443
  msgid "These tables (with ALL counter data) will be deleted."
444
  msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
445
 
446
+ #: counter-options.php:799
447
  #@ cpd
448
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
449
  msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
450
 
451
+ #: counter-options.php:779
452
+ #: counter-options.php:802
453
  #@ cpd
454
  msgid "Yes"
455
  msgstr "Да"
456
 
457
+ #: counter-options.php:803
458
  #@ cpd
459
  msgid "You are sure to disable Count per Day and delete all data?"
460
  msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
461
 
462
+ #: counter-options.php:811
463
  #@ cpd
464
  msgid "Support"
465
  msgstr "Поддръжка"
466
 
467
+ #: counter.php:231
468
+ #: counter.php:1407
469
  #@ cpd
470
  msgid "Total reads"
471
  msgstr "Общо прочетени"
472
 
473
+ #: counter.php:232
474
+ #: counter.php:1408
475
  #@ cpd
476
  msgid "Reads today"
477
  msgstr "Прочетени днес"
478
 
479
+ #: counter.php:233
480
+ #: counter.php:1409
481
  #@ cpd
482
  msgid "Reads yesterday"
483
  msgstr "Прочетени вчера"
484
 
485
+ #: counter.php:234
486
+ #: counter.php:1410
487
  #@ cpd
488
  msgid "Reads last week"
489
  msgstr "Прочетени последната седмица"
490
 
491
+ #: counter-core.php:777
492
+ #: counter.php:236
493
+ #: counter.php:1218
494
+ #: counter.php:1412
495
  #@ cpd
496
  msgid "Total visitors"
497
  msgstr "Общо посетители"
498
 
499
+ #: counter.php:237
500
+ #: counter.php:1418
501
  #@ cpd
502
  msgid "Visitors currently online"
503
  msgstr "Посетители онлайн"
504
 
505
+ #: counter.php:238
506
+ #: counter.php:1413
507
  #@ cpd
508
  msgid "Visitors today"
509
  msgstr "Посетители днес"
510
 
511
+ #: counter.php:239
512
+ #: counter.php:1414
513
  #@ cpd
514
  msgid "Visitors yesterday"
515
  msgstr "Посетители вчера"
516
 
517
+ #: counter.php:240
518
+ #: counter.php:1415
519
  #@ cpd
520
  msgid "Visitors last week"
521
  msgstr "Посетители през последната седмица"
522
 
523
+ #: counter-core.php:783
524
+ #: counter.php:242
525
+ #: counter.php:343
526
+ #: counter.php:1220
527
+ #: counter.php:1417
528
  #: userperspan.php:46
529
  #@ cpd
530
  msgid "Visitors per day"
531
  msgstr "Посетители по дни"
532
 
533
+ #: counter.php:969
534
+ #: counter.php:1419
 
535
  #@ cpd
536
  msgid "Counter starts on"
537
  msgstr "Броячът е стартиран"
538
 
539
+ #: counter.php:890
540
  #: notes.php:55
541
  #: notes.php:89
542
  #@ cpd
543
  msgid "Notes"
544
  msgstr "Забележки"
545
 
546
+ #: counter.php:771
547
  #, php-format
548
  #@ cpd
549
  msgid "The %s most visited posts in last %s days:"
550
  msgstr "Най-много %s посетени публикации в последните %s дни:"
551
 
552
+ #: counter.php:888
553
  #@ default
554
  msgid "Show"
555
  msgstr "Показване"
556
 
557
+ #: counter.php:958
558
  #@ cpd
559
  msgid "Other"
560
  msgstr "Други"
561
 
562
+ #: counter.php:1130
563
  #@ default
564
  msgid "Edit Post"
565
  msgstr "Редактиране на публикацията"
566
 
567
+ #: counter.php:1139
568
  #@ default
569
  msgid "Category"
570
  msgstr "Категория"
571
 
572
+ #: counter.php:1142
573
  #@ default
574
  msgid "Tag"
575
  msgstr "Етикет"
580
  msgid "Front page displays"
581
  msgstr "Изобразяване на заглавна страница"
582
 
583
+ #: counter-core.php:641
584
+ #: counter-options.php:409
 
585
  #@ default
586
  msgid "Settings"
587
  msgstr "Настройки"
588
 
589
+ #: counter-core.php:742
590
  #, php-format
591
  #@ cpd
592
  msgid "Time for Count per Day: <code>%s</code>."
593
  msgstr "Време за Count per Day: <code>%s</code>."
594
 
595
+ #: counter-core.php:743
596
  #@ cpd
597
  msgid "Bug? Problem? Question? Hint? Praise?"
598
  msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
599
 
600
+ #: counter-core.php:744
601
  #, php-format
602
  #@ cpd
603
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
604
  msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
605
 
606
+ #: counter-core.php:745
607
  #@ default
608
  msgid "License"
609
  msgstr "Лиценз"
610
 
611
+ #: counter.php:342
612
  #@ cpd
613
  msgid "Reads per day"
614
  msgstr "Прочетени по дни"
615
 
616
+ #: counter-core.php:779
617
+ #: counter.php:1416
618
  #@ cpd
619
  msgid "Visitors per month"
620
  msgstr "Посетители по месеци"
621
 
622
+ #: counter-core.php:780
623
+ #: counter.php:1411
624
  #@ cpd
625
  msgid "Reads per month"
626
  msgstr "Прочетени по месеци"
627
 
628
+ #: counter-core.php:782
629
  #@ cpd
630
  msgid "Latest Counts"
631
  msgstr "Последни броячи"
632
 
633
+ #: counter-core.php:785
634
  #@ default
635
  msgid "Plugin"
636
  msgstr "Разширение"
637
 
638
+ #: counter-core.php:789
639
  #@ cpd
640
  msgid "Referrer"
641
  msgstr "Препращащ сайт"
642
 
643
+ #: counter-core.php:793
644
  #@ cpd
645
  msgid "Reads per Country"
646
  msgstr "Прочитания по държави"
647
 
648
+ #: counter-core.php:794
649
  #@ cpd
650
  msgid "Visitors per Country"
651
  msgstr "Посетители по държави"
652
 
653
+ #: counter-core.php:809
654
+ #: counter.php:1334
655
  #@ cpd
656
  msgid "Statistics"
657
  msgstr "Статистика"
658
 
659
+ #: counter.php:433
660
+ #: counter.php:1249
661
  #@ cpd
662
  msgid "Map"
663
  msgstr "Карта"
664
 
665
+ #: counter.php:1406
666
  #@ cpd
667
  msgid "This post"
668
  msgstr "Тази публикация"
669
 
670
+ #: counter.php:1431
671
  #@ default
672
  msgid "Title"
673
  msgstr "Заглавие"
732
  msgid "no data found"
733
  msgstr "няма намерени данни"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Референти - Вписвания"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Брой референти, показвани на страницата на таблото?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Референти - Дни"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "%s Референти в последните %s дни:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Посетители на линия"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" е обновен до версия %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Архивирането е неуспешно! Файлът не може да се отвори"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "Архивът на таблицата е запазен в %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Архивът на опциите на броячите е запазено в %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Събирането е стартирано..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Прегледай посетителите за публикация"
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Броячът на вписвания до%s събира и броячът на таблицата%s е оптимизиран (размер, преди> размер =%s след =%s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Инсталацията на \"Count per Day\" е проверена"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Инструменти"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Запази само URL, без стринг за запитване."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Кой има право да вижда това"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "по избор"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "и по-високо е позволено да вижде статистиката."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Задайте способност %s %s ако потребителят има необходимост:"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Таблица"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "БЕЗ таблица в началната страница"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Не зареждай таблицата \"counter.css\" в началната страница."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Архивиране"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Влизания"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Колко посещения трябва да бъдат запазени? По подразбиране: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr "Ако лимитът на PHP паметта е по-малък от 50 МВ и получавате бяла страница или съобщения за грешки, опитайте с по-малка стойност."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Създаване на резервно копие на брояча %s в WP-съдържанието на директорията (ако е с права за запис)."
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Архивиране на базата-данни"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Събиране на стари данни"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "Съществуващият размер на таблицата %s е %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr "Можете да съберете стари данни и да почистите таблицата. <br/> Прочитанията и посетителите ще бъдат запазени по месеци, по страни и по публикации. <br/> Клиенти и референти ще се премахват."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "В момента вашата колекция съдържа данни до %s."
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Обикновено новите данни ще бъдат добавени към колекцията."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Премахване на старата колекция и създаване на нова, която съдържа единствено данните от таблицата."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Всички събрани данни до%s ще бъдат премахнати."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Пазене на записи за всички месеци на миналата%s и текущия месец в таблицата."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "Активиране отново"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Тук можете да стартирате инсталацията ръчно. <br/> Също можете да деактивирате и да реактивирате добавка."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "Включване отново на тази добавка"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Посетители"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Най-много посещения"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "провлачете и пуснете, за да сортирате"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-da_DK.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:13:24+0000\n"
7
  "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -42,482 +42,487 @@ msgstr "opdatér næste"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Massebots renset. %s rækker slettet."
44
 
45
- #: counter-options.php:113
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Databasen renset. %s rækker slettet."
50
 
51
- #: counter-options.php:123
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Tæller nulstillet."
55
 
56
- #: counter-options.php:128
57
- #: counter-options.php:719
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "AFINSTALLÉR Count per Day"
61
 
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #: counter-options.php:135
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabellen %s blev slettet"
69
 
70
- #: counter-options.php:136
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Indstillinger slettet"
74
 
75
- #: counter-options.php:377
76
- #: counter-options.php:705
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Afinstallér"
80
 
81
- #: counter-options.php:378
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Klik her"
85
 
86
- #: counter-options.php:378
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
90
 
91
- #: counter-options.php:752
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Tid online"
95
 
96
- #: counter-options.php:753
97
  #@ cpd
98
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
99
  msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
100
 
101
- #: counter-options.php:756
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Indloggede brugere"
105
 
106
- #: counter-options.php:758
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "tæl også"
110
 
111
- #: counter-options.php:759
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "til og med brugerniveau"
115
 
116
- #: counter-options.php:770
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Auto-tæller"
120
 
121
- #: counter-options.php:771
122
  #@ cpd
123
  msgid "Counts automatically single-posts and pages, no changes on template needed."
124
  msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
125
 
126
- #: counter-options.php:774
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Ignorér følgende bots"
130
 
131
- #: counter-options.php:778
132
  #@ cpd
133
  msgid "Anonymous IP"
134
  msgstr "Anonymt IP-nummer"
135
 
136
- #: counter-options.php:782
137
  #@ cpd
138
  msgid "Cache"
139
  msgstr "Cache"
140
 
141
- #: counter-options.php:783
142
  #@ cpd
143
  msgid "I use a cache plugin. Count these visits with ajax."
144
  msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
145
 
146
- #: counter-options.php:952
147
  #@ cpd
148
  msgid "Update options"
149
  msgstr "Opdatér indstillinger"
150
 
151
- #: counter-options.php:799
152
  #@ default
153
  msgid "Dashboard"
154
  msgstr "Kontrolpanel"
155
 
156
- #: counter-core.php:792
157
- #: counter-options.php:834
158
  #@ cpd
159
  msgid "Visitors per post"
160
  msgstr "Besøgende per indlæg"
161
 
162
- #: counter-options.php:835
163
- #: counter-options.php:839
164
  #@ cpd
165
  msgid "How many posts do you want to see on dashboard page?"
166
  msgstr "Hvor mange indlæg vil du se på kontrolpanel"
167
 
168
- #: counter-options.php:838
169
  #@ cpd
170
  msgid "Latest Counts - Posts"
171
  msgstr "Seneste læste - Indlæg"
172
 
173
- #: counter-options.php:842
174
  #@ cpd
175
  msgid "Latest Counts - Days"
176
  msgstr "Seneste læste - Dage"
177
 
178
- #: counter-options.php:843
179
- #: counter-options.php:847
180
- #: counter-options.php:869
181
  #@ cpd
182
  msgid "How many days do you want look back?"
183
  msgstr "Hvor mange dage vil du se tilbage?"
184
 
185
- #: counter-options.php:846
186
  #@ cpd
187
  msgid "Chart - Days"
188
  msgstr "Diagram - Dage"
189
 
190
- #: counter-options.php:850
191
  #@ cpd
192
  msgid "Chart - Height"
193
  msgstr "Diagram - Højde"
194
 
195
- #: counter-options.php:851
196
  #@ cpd
197
  msgid "Height of the biggest bar"
198
  msgstr "Højde på den største søjle"
199
 
200
- #: counter-options.php:855
201
  #@ cpd
202
  msgid "Countries"
203
  msgstr "Lande"
204
 
205
- #: counter-options.php:856
206
  #@ cpd
207
  msgid "How many countries do you want to see on dashboard page?"
208
  msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
209
 
210
- #: counter-core.php:799
211
- #: counter-options.php:860
212
  #@ cpd
213
  msgid "Browsers"
214
  msgstr "Browsere"
215
 
216
- #: counter-options.php:861
217
  #@ cpd
218
  msgid "Substring of the user agent, separated by comma"
219
  msgstr "Delstrenge, der identificerer en browser, kommasepareret"
220
 
221
- #: counter-options.php:883
222
  #@ cpd
223
  msgid "Show in lists"
224
  msgstr "Vis som liste"
225
 
226
- #: counter-options.php:884
227
  #@ cpd
228
  msgid "Show \"Reads per Post\" in a new column in post management views."
229
  msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
230
 
231
- #: counter-options.php:891
232
  #@ cpd
233
  msgid "Start Values"
234
  msgstr "Startværdier"
235
 
236
- #: counter-options.php:895
237
  #@ cpd
238
  msgid "Here you can change the date of first count and add a start count."
239
  msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
240
 
241
- #: counter-options.php:899
242
  #@ cpd
243
  msgid "Start date"
244
  msgstr "Startdato"
245
 
246
- #: counter-options.php:900
247
  #@ cpd
248
  msgid "Your old Counter starts at?"
249
  msgstr "Hvornår starter din gamle tæller?"
250
 
251
- #: counter-options.php:903
252
- #: counter-options.php:907
253
  #@ cpd
254
  msgid "Start count"
255
  msgstr "Start-tæller"
256
 
257
- #: counter-options.php:904
258
  #@ cpd
259
  msgid "Add this value to \"Total visitors\"."
260
  msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
261
 
262
- #: counter-options.php:908
263
  #@ cpd
264
  msgid "Add this value to \"Total reads\"."
265
  msgstr "Tilføj denne værdi til \"Læst i alt\"."
266
 
267
- #: counter-options.php:945
268
  #@ cpd
269
  msgid "Debug mode"
270
  msgstr "Debug-modus"
271
 
272
- #: counter-options.php:947
273
  #@ cpd
274
  msgid "Show debug informations at the bottom of all pages."
275
  msgstr "Vis debug-information i bunden af alle sider."
276
 
277
- #: counter-options.php:636
278
  #@ cpd
279
  msgid "GeoIP - Countries"
280
  msgstr "GeoIP - Lande"
281
 
282
- #: counter-options.php:645
283
  #@ cpd
284
  msgid "Update old counter data"
285
  msgstr "Opdatér gamle tællerdata"
286
 
287
- #: counter-options.php:657
288
  #@ cpd
289
  msgid "Update GeoIP database"
290
  msgstr "Opdatér GeoIP-database"
291
 
292
- #: counter-options.php:652
293
  #@ cpd
294
  msgid "Download a new version of GeoIP.dat file."
295
  msgstr "Download en ny version af GeoIP.dat-filen."
296
 
297
- #: counter-options.php:662
298
  #@ cpd
299
  msgid "More informations about GeoIP"
300
  msgstr "Flere oplysninger om GeoIP"
301
 
302
- #: counter-options.php:417
303
  #: massbots.php:46
304
  #@ cpd
305
  msgid "Mass Bots"
306
  msgstr "Massebots"
307
 
308
- #: counter-options.php:421
309
  #, php-format
310
  #@ cpd
311
  msgid "Show all IPs with more than %s page views per day"
312
  msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
313
 
314
- #: counter-options.php:422
 
315
  #: notes.php:84
316
  #: userperspan.php:56
317
  #@ cpd
318
  msgid "show"
319
  msgstr "vis"
320
 
321
- #: counter-options.php:430
 
322
  #@ cpd
323
  msgid "IP"
324
  msgstr "IP"
325
 
326
- #: counter-options.php:431
 
327
  #: notes.php:88
328
  #@ cpd
329
  #@ default
330
  msgid "Date"
331
  msgstr "Dato"
332
 
333
- #: counter-options.php:432
 
334
  #@ cpd
335
  msgid "Client"
336
  msgstr "Klient"
337
 
338
- #: counter-options.php:433
 
339
  #@ cpd
340
  msgid "Views"
341
  msgstr "Visninger"
342
 
343
- #: counter-options.php:448
344
- #: counter-options.php:464
 
345
  #, php-format
346
  #@ cpd
347
  msgid "Delete these %s counts"
348
  msgstr "Slet disse %s hits"
349
 
350
- #: counter-options.php:553
351
- #: counter-options.php:561
352
  #@ cpd
353
  msgid "Clean the database"
354
  msgstr "Rens databasen"
355
 
356
- #: counter-options.php:557
357
  #@ cpd
358
  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."
359
  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."
360
 
361
- #: counter-options.php:686
362
- #: counter-options.php:696
363
  #@ cpd
364
  msgid "Reset the counter"
365
  msgstr "Nulstil tælleren"
366
 
367
- #: counter-options.php:689
368
  #@ cpd
369
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
370
  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."
371
 
372
- #: counter-options.php:708
373
  #@ cpd
374
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
375
  msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
376
 
377
- #: counter-options.php:709
378
  #@ cpd
379
  msgid "Here you can delete the tables and disable \"Count per Day\"."
380
  msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
381
 
382
- #: counter-options.php:712
383
  #@ cpd
384
  msgid "WARNING"
385
  msgstr "ADVARSEL"
386
 
387
- #: counter-options.php:713
388
  #@ cpd
389
  msgid "These tables (with ALL counter data) will be deleted."
390
  msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
391
 
392
- #: counter-options.php:715
393
  #@ cpd
394
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
395
  msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
396
 
397
- #: counter-options.php:695
398
- #: counter-options.php:718
399
  #@ cpd
400
  msgid "Yes"
401
  msgstr "Ja"
402
 
403
- #: counter-options.php:719
404
  #@ cpd
405
  msgid "You are sure to disable Count per Day and delete all data?"
406
  msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
407
 
408
- #: counter-options.php:727
409
  #@ cpd
410
  msgid "Support"
411
  msgstr "Support"
412
 
413
- #: counter-core.php:753
414
  #, php-format
415
  #@ cpd
416
  msgid "Time for Count per Day: <code>%s</code>."
417
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
418
 
419
- #: counter-core.php:754
420
  #@ cpd
421
  msgid "Bug? Problem? Question? Hint? Praise?"
422
  msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
423
 
424
- #: counter-core.php:755
425
  #, php-format
426
  #@ cpd
427
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
428
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
429
 
430
- #: counter.php:218
431
- #: counter.php:1356
432
  #@ cpd
433
  msgid "Total reads"
434
  msgstr "Læsninger i alt"
435
 
436
- #: counter.php:219
437
- #: counter.php:1357
438
  #@ cpd
439
  msgid "Reads today"
440
  msgstr "Læsninger i dag"
441
 
442
- #: counter.php:220
443
- #: counter.php:1358
444
  #@ cpd
445
  msgid "Reads yesterday"
446
  msgstr "Læsninger i går"
447
 
448
- #: counter-core.php:788
449
- #: counter.php:223
450
- #: counter.php:1167
451
- #: counter.php:1361
452
  #@ cpd
453
  msgid "Total visitors"
454
  msgstr "Antal besøgende i alt"
455
 
456
- #: counter.php:224
457
- #: counter.php:1367
458
  #@ cpd
459
  msgid "Visitors currently online"
460
  msgstr "Besøgende online lige nu"
461
 
462
- #: counter.php:225
463
- #: counter.php:1362
464
  #@ cpd
465
  msgid "Visitors today"
466
  msgstr "Besøgende i dag"
467
 
468
- #: counter.php:226
469
- #: counter.php:1363
470
  #@ cpd
471
  msgid "Visitors yesterday"
472
  msgstr "Besøgende i går"
473
 
474
- #: counter.php:227
475
- #: counter.php:1364
476
  #@ cpd
477
  msgid "Visitors last week"
478
  msgstr "Besøgende sidste weekend"
479
 
480
- #: counter-core.php:794
481
- #: counter.php:229
482
- #: counter.php:328
483
- #: counter.php:1169
484
- #: counter.php:1366
485
  #: userperspan.php:46
486
  #@ cpd
487
  msgid "Visitors per day"
488
  msgstr "Besøgende per dag"
489
 
490
- #: counter.php:230
491
- #: counter.php:924
492
- #: counter.php:1368
493
  #@ cpd
494
  msgid "Counter starts on"
495
  msgstr "Tæller starter på"
496
 
497
- #: counter.php:875
498
  #: notes.php:55
499
  #: notes.php:89
500
  #@ cpd
501
  msgid "Notes"
502
  msgstr "Noter"
503
 
504
- #: counter.php:756
505
  #, php-format
506
  #@ cpd
507
  msgid "The %s most visited posts in last %s days:"
508
  msgstr "De %s mest sete indlæg i de sidste %s dage:"
509
 
510
- #: counter.php:873
511
  #@ default
512
  msgid "Show"
513
  msgstr "Vis"
514
 
515
- #: counter.php:913
516
  #@ cpd
517
  msgid "Other"
518
  msgstr "Andre"
519
 
520
- #: counter.php:1085
521
  #@ default
522
  msgid "Edit Post"
523
  msgstr "Redigér indlæg"
@@ -528,66 +533,65 @@ msgstr "Redigér indlæg"
528
  msgid "Front page displays"
529
  msgstr "Visninger af forsiden"
530
 
531
- #: counter-core.php:652
532
- #: counter-options.php:401
533
- #: counter-options.php:740
534
  #@ default
535
  msgid "Settings"
536
  msgstr "Indstillinger"
537
 
538
  # tjekkes
539
- #: counter-core.php:1464
540
- #: counter-options.php:789
541
- #: counter.php:222
542
- #: counter.php:974
543
  #@ cpd
544
  msgid "Reads"
545
  msgstr "Læsninger"
546
 
547
- #: counter.php:1355
548
  #@ cpd
549
  msgid "This post"
550
  msgstr "Dette indlæg"
551
 
552
- #: counter.php:327
553
  #@ cpd
554
  msgid "Reads per day"
555
  msgstr "Læsninger per dag"
556
 
557
- #: counter-core.php:790
558
- #: counter.php:1365
559
  #@ cpd
560
  msgid "Visitors per month"
561
  msgstr "Besøgende per måned"
562
 
563
- #: counter-core.php:793
564
  #@ cpd
565
  msgid "Latest Counts"
566
  msgstr "Seneste læste"
567
 
568
- #: counter-core.php:796
569
  #@ default
570
  msgid "Plugin"
571
  msgstr "Plugin"
572
 
573
- #: counter-core.php:804
574
  #@ cpd
575
  msgid "Reads per Country"
576
  msgstr "Læsninger per land"
577
 
578
- #: counter-core.php:805
579
  #@ cpd
580
  msgid "Visitors per Country"
581
  msgstr "Besøgende per land"
582
 
583
- #: counter-core.php:820
584
- #: counter.php:1283
585
  #@ cpd
586
  msgid "Statistics"
587
  msgstr "Statistik"
588
 
589
- #: counter.php:418
590
- #: counter.php:1198
591
  #@ cpd
592
  msgid "Map"
593
  msgstr "Kort"
@@ -652,472 +656,565 @@ msgstr "Ny GeoIP-database installeret."
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:639
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:748
661
  #@ cpd
662
  msgid "Counter"
663
  msgstr "Tæller"
664
 
665
- #: counter-options.php:786
666
  #@ cpd
667
  msgid "Clients and referrers"
668
  msgstr "Klienter og henvisere"
669
 
670
- #: counter-options.php:789
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:872
676
  #@ cpd
677
  msgid "Local URLs"
678
  msgstr "Lokale adresser"
679
 
680
- #: counter-options.php:873
681
  #@ cpd
682
  msgid "Show local referrers too."
683
  msgstr "Vis også lokale henvisninger"
684
 
685
- #: counter-options.php:880
686
  #@ default
687
  msgid "Posts"
688
  msgstr "Indlæg"
689
 
690
- #: counter-options.php:880
691
  #@ default
692
  msgid "Pages"
693
  msgstr "Sider"
694
 
695
- #: counter.php:221
696
- #: counter.php:1359
697
  #@ cpd
698
  msgid "Reads last week"
699
  msgstr "Læsninger i sidste uge"
700
 
701
- #: counter.php:1094
702
  #@ default
703
  msgid "Category"
704
  msgstr "Kategori"
705
 
706
- #: counter.php:1097
707
  #@ default
708
  msgid "Tag"
709
  msgstr "Tag"
710
 
711
- #: counter-core.php:756
712
  #@ default
713
  msgid "License"
714
  msgstr "Licens"
715
 
716
- #: counter-core.php:791
717
- #: counter.php:1360
718
  #@ cpd
719
  msgid "Reads per month"
720
  msgstr "Læsninger per måned"
721
 
722
- #: counter-core.php:800
723
  #@ cpd
724
  msgid "Referrer"
725
  msgstr "Henviser"
726
 
727
- #: counter.php:1380
728
  #@ default
729
  msgid "Title"
730
  msgstr "Titel"
731
 
732
- #: counter-options.php:864
733
  #@ cpd
734
  msgid "Referrers - Entries"
735
  msgstr "Henvisere - poster"
736
 
737
- #: counter-options.php:865
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:868
743
  #@ cpd
744
  msgid "Referrers - Days"
745
  msgstr "Henvisere - Dage"
746
 
747
- #: counter.php:944
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:789
754
  #@ cpd
755
  msgid "Visitors online"
756
  msgstr "Brugere online"
757
 
758
- #: counter-core.php:259
759
  #, php-format
760
  #@ cpd
761
  msgid "\"Count per Day\" updated to version %s."
762
  msgstr ""
763
 
764
- #: counter-core.php:1000
765
  #@ cpd
766
  msgid "Backup failed! Cannot open file"
767
  msgstr ""
768
 
769
- #: counter-core.php:1027
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:1118
776
- #: counter-core.php:1126
777
  #, php-format
778
  #@ cpd
779
  msgid "Backup of counter table saved in %s."
780
  msgstr ""
781
 
782
- #: counter-core.php:1120
783
- #: counter-core.php:1128
784
  #, php-format
785
  #@ cpd
786
  msgid "Backup of counter options and collection saved in %s."
787
  msgstr ""
788
 
789
- #: counter-options.php:169
790
  #@ cpd
791
  msgid "Collection in progress..."
792
  msgstr ""
793
 
794
- #: counter-options.php:263
795
  #@ cpd
796
  msgid "Get Visitors per Post..."
797
  msgstr ""
798
 
799
- #: counter-options.php:284
800
- #@ cpd
801
- msgid "Delete old data..."
802
- msgstr ""
803
-
804
- #: counter-options.php:308
805
  #, php-format
806
  #@ cpd
807
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
808
  msgstr ""
809
 
810
- #: counter-options.php:317
811
  #@ cpd
812
  msgid "Installation of \"Count per Day\" checked"
813
  msgstr ""
814
 
815
- #: counter-options.php:400
816
- #: counter-options.php:739
817
  #@ default
818
  msgid "Tools"
819
  msgstr ""
820
 
821
- #: counter-options.php:791
822
  #@ cpd
823
  msgid "Save URL only, no query string."
824
  msgstr ""
825
 
826
- #: counter-options.php:815
827
  #@ cpd
828
  msgid "Who can see it"
829
  msgstr ""
830
 
831
- #: counter-options.php:824
832
  #@ cpd
833
  msgid "custom"
834
  msgstr ""
835
 
836
- #: counter-options.php:826
837
  #@ cpd
838
  msgid "and higher are allowed to see the statistics page."
839
  msgstr ""
840
 
841
- #: counter-options.php:828
842
  #, php-format
843
  #@ cpd
844
  msgid "Set the %s capability %s a user need:"
845
  msgstr ""
846
 
847
- #: counter-options.php:915
848
  #@ cpd
849
  msgid "Stylesheet"
850
  msgstr ""
851
 
852
- #: counter-options.php:918
853
  #@ cpd
854
  msgid "NO Stylesheet in Frontend"
855
  msgstr ""
856
 
857
- #: counter-options.php:919
858
  #@ cpd
859
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
860
  msgstr ""
861
 
862
- #: counter-options.php:476
863
- #: counter-options.php:926
864
  #@ cpd
865
  msgid "Backup"
866
  msgstr ""
867
 
868
- #: counter-options.php:929
869
  #@ cpd
870
  msgid "Entries per pass"
871
  msgstr ""
872
 
873
- #: counter-options.php:932
874
  #@ cpd
875
  msgid "How many entries should be saved per pass? Default: 10000"
876
  msgstr ""
877
 
878
- #: counter-options.php:937
879
  #@ cpd
880
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
881
  msgstr ""
882
 
883
- #: counter-options.php:480
884
  #, php-format
885
  #@ cpd
886
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
887
  msgstr ""
888
 
889
- #: counter-options.php:487
890
  #@ cpd
891
  msgid "Backup the database"
892
  msgstr ""
893
 
894
- #: counter-options.php:591
895
- #: counter-options.php:623
896
  #@ cpd
897
  msgid "Collect old data"
898
  msgstr ""
899
 
900
- #: counter-options.php:577
901
- #: counter-options.php:596
902
  #, php-format
903
  #@ cpd
904
  msgid "Current size of your counter table %s is %s."
905
  msgstr ""
906
 
907
- #: counter-options.php:598
908
  #@ cpd
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 ""
911
 
912
- #: counter-options.php:603
913
  #, php-format
914
  #@ cpd
915
  msgid "Currently your collection contains data until %s."
916
  msgstr ""
917
 
918
- #: counter-options.php:607
919
  #@ cpd
920
  msgid "Normally new data will be added to the collection."
921
  msgstr ""
922
 
923
- #: counter-options.php:613
924
  #@ cpd
925
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
  msgstr ""
927
 
928
- #: counter-options.php:614
929
  #, php-format
930
  #@ cpd
931
  msgid "All collected data until %s will deleted."
932
  msgstr ""
933
 
934
- #: counter-options.php:619
935
  #, php-format
936
  #@ cpd
937
  msgid "Keep entries of last %s full months + current month in counter table."
938
  msgstr ""
939
 
940
- #: counter-options.php:670
941
  #@ cpd
942
  msgid "ReActivation"
943
  msgstr ""
944
 
945
- #: counter-options.php:673
946
  #@ cpd
947
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
  msgstr ""
949
 
950
- #: counter-options.php:678
951
  #@ cpd
952
  msgid "ReActivate the plugin"
953
  msgstr ""
954
 
955
- #: counter.php:228
956
- #: counter.php:998
957
  #@ cpd
958
  msgid "Visitors"
959
  msgstr ""
960
 
961
- #: counter.php:231
962
- #: counter.php:232
963
  #@ cpd
964
  msgid "Most visited day"
965
  msgstr ""
966
 
967
- #: counter.php:1399
968
  #@ cpd
969
  msgid "drag and drop to sort"
970
  msgstr ""
971
 
972
- #: counter-core.php:795
973
- #: counter-options.php:864
974
- #: counter-options.php:868
975
  #@ cpd
976
  msgid "Search strings"
977
  msgstr ""
978
 
979
- #: counter-core.php:1114
980
  #@ cpd
981
  msgid "Your can download the backup files here and now."
982
  msgstr ""
983
 
984
- #: counter-core.php:1184
985
  #@ cpd
986
  msgid "Error while reading backup file!"
987
  msgstr ""
988
 
989
- #: counter-core.php:1188
990
  #, php-format
991
  #@ cpd
992
  msgid "The backup was added to counter table %s."
993
  msgstr ""
994
 
995
- #: counter-core.php:1190
996
  #, php-format
997
  #@ cpd
998
  msgid "The counter table %s was restored from backup."
999
  msgstr ""
1000
 
1001
- #: counter-core.php:1207
1002
  #@ cpd
1003
  msgid "Options restored from backup."
1004
  msgstr ""
1005
 
1006
- #: counter-options.php:332
1007
  #@ cpd
1008
  msgid "Old search strings deleted"
1009
  msgstr ""
1010
 
1011
- #: counter-options.php:347
1012
  #@ cpd
1013
  msgid "Clients and referers deleted"
1014
  msgstr ""
1015
 
1016
- #: counter-options.php:483
1017
  #@ cpd
1018
  msgid "Download only"
1019
  msgstr ""
1020
 
1021
- #: counter-options.php:515
1022
  #@ cpd
1023
  msgid "Settings and collections"
1024
  msgstr ""
1025
 
1026
- #: counter-options.php:520
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Counter table %s"
1030
  msgstr ""
1031
 
1032
- #: counter-options.php:527
1033
  #, php-format
1034
  #@ cpd
1035
  msgid "Add data from the backup file %s to existing counter table?"
1036
  msgstr ""
1037
 
1038
- #: counter-options.php:527
1039
  #@ cpd
1040
  msgid "Add"
1041
  msgstr ""
1042
 
1043
- #: counter-options.php:531
1044
  #, php-format
1045
  #@ cpd
1046
  msgid "Restore data from the backup file %s ?"
1047
  msgstr ""
1048
 
1049
- #: counter-options.php:531
1050
  #@ default
1051
  msgid "Restore"
1052
  msgstr ""
1053
 
1054
- #: counter-options.php:533
1055
  #@ default
1056
  msgid "Delete"
1057
  msgstr ""
1058
 
1059
- #: counter-options.php:534
1060
  #, php-format
1061
  #@ cpd
1062
  msgid "Delete the backup file %s ?"
1063
  msgstr ""
1064
 
1065
- #: counter-options.php:540
1066
  #@ cpd
1067
  msgid "add backup to current counter table"
1068
  msgstr ""
1069
 
1070
- #: counter-options.php:541
1071
  #@ cpd
1072
  msgid "replace current counter table with with backup"
1073
  msgstr ""
1074
 
1075
- #: counter-options.php:542
1076
  #@ cpd
1077
  msgid "delete backup file"
1078
  msgstr ""
1079
 
1080
- #: counter-options.php:567
1081
  #, php-format
1082
  #@ cpd
1083
  msgid "Delete search strings older than %s days."
1084
  msgstr ""
1085
 
1086
- #: counter-options.php:571
1087
  #@ cpd
1088
  msgid "Delete search strings"
1089
  msgstr ""
1090
 
1091
- #: counter-options.php:578
1092
  #, php-format
1093
  #@ cpd
1094
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1095
  msgstr ""
1096
 
1097
- #: counter-options.php:582
1098
  #@ cpd
1099
  msgid "Delete clients and referers"
1100
  msgstr ""
1101
 
1102
- #: counter.php:1100
1103
  #@ default
1104
  msgid "Front page"
1105
  msgstr ""
1106
 
1107
- #: counter.php:1142
1108
  #, php-format
1109
  #@ cpd
1110
  msgid "The %s most searched strings:"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1151
1114
  #, php-format
1115
  #@ cpd
1116
  msgid "The search strings of the last %s days:"
1117
  msgstr ""
1118
 
1119
- #: counter.php:1315
1120
  #@ default
1121
  msgid "_name"
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:19+0000\n"
7
  "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Massebots renset. %s rækker slettet."
44
 
45
+ #: counter-options.php:118
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Databasen renset. %s rækker slettet."
50
 
51
+ #: counter-options.php:128
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Tæller nulstillet."
55
 
56
+ #: counter-options.php:133
57
+ #: counter-options.php:803
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "AFINSTALLÉR Count per Day"
61
 
62
+ #: counter-options.php:138
63
+ #: counter-options.php:139
64
+ #: counter-options.php:140
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabellen %s blev slettet"
69
 
70
+ #: counter-options.php:141
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Indstillinger slettet"
74
 
75
+ #: counter-options.php:382
76
+ #: counter-options.php:789
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Afinstallér"
80
 
81
+ #: counter-options.php:383
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Klik her"
85
 
86
+ #: counter-options.php:383
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
90
 
91
+ #: counter-options.php:832
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Tid online"
95
 
96
+ #: counter-options.php:833
97
  #@ cpd
98
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
99
  msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
100
 
101
+ #: counter-options.php:836
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Indloggede brugere"
105
 
106
+ #: counter-options.php:838
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "tæl også"
110
 
111
+ #: counter-options.php:839
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "til og med brugerniveau"
115
 
116
+ #: counter-options.php:850
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Auto-tæller"
120
 
121
+ #: counter-options.php:851
122
  #@ cpd
123
  msgid "Counts automatically single-posts and pages, no changes on template needed."
124
  msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
125
 
126
+ #: counter-options.php:854
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Ignorér følgende bots"
130
 
131
+ #: counter-options.php:858
132
  #@ cpd
133
  msgid "Anonymous IP"
134
  msgstr "Anonymt IP-nummer"
135
 
136
+ #: counter-options.php:862
137
  #@ cpd
138
  msgid "Cache"
139
  msgstr "Cache"
140
 
141
+ #: counter-options.php:863
142
  #@ cpd
143
  msgid "I use a cache plugin. Count these visits with ajax."
144
  msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
145
 
146
+ #: counter-options.php:1042
147
  #@ cpd
148
  msgid "Update options"
149
  msgstr "Opdatér indstillinger"
150
 
151
+ #: counter-options.php:889
152
  #@ default
153
  msgid "Dashboard"
154
  msgstr "Kontrolpanel"
155
 
156
+ #: counter-core.php:781
157
+ #: counter-options.php:924
158
  #@ cpd
159
  msgid "Visitors per post"
160
  msgstr "Besøgende per indlæg"
161
 
162
+ #: counter-options.php:925
163
+ #: counter-options.php:929
164
  #@ cpd
165
  msgid "How many posts do you want to see on dashboard page?"
166
  msgstr "Hvor mange indlæg vil du se på kontrolpanel"
167
 
168
+ #: counter-options.php:928
169
  #@ cpd
170
  msgid "Latest Counts - Posts"
171
  msgstr "Seneste læste - Indlæg"
172
 
173
+ #: counter-options.php:932
174
  #@ cpd
175
  msgid "Latest Counts - Days"
176
  msgstr "Seneste læste - Dage"
177
 
178
+ #: counter-options.php:933
179
+ #: counter-options.php:937
180
+ #: counter-options.php:959
181
  #@ cpd
182
  msgid "How many days do you want look back?"
183
  msgstr "Hvor mange dage vil du se tilbage?"
184
 
185
+ #: counter-options.php:936
186
  #@ cpd
187
  msgid "Chart - Days"
188
  msgstr "Diagram - Dage"
189
 
190
+ #: counter-options.php:940
191
  #@ cpd
192
  msgid "Chart - Height"
193
  msgstr "Diagram - Højde"
194
 
195
+ #: counter-options.php:941
196
  #@ cpd
197
  msgid "Height of the biggest bar"
198
  msgstr "Højde på den største søjle"
199
 
200
+ #: counter-options.php:945
201
  #@ cpd
202
  msgid "Countries"
203
  msgstr "Lande"
204
 
205
+ #: counter-options.php:946
206
  #@ cpd
207
  msgid "How many countries do you want to see on dashboard page?"
208
  msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
209
 
210
+ #: counter-core.php:788
211
+ #: counter-options.php:950
212
  #@ cpd
213
  msgid "Browsers"
214
  msgstr "Browsere"
215
 
216
+ #: counter-options.php:951
217
  #@ cpd
218
  msgid "Substring of the user agent, separated by comma"
219
  msgstr "Delstrenge, der identificerer en browser, kommasepareret"
220
 
221
+ #: counter-options.php:973
222
  #@ cpd
223
  msgid "Show in lists"
224
  msgstr "Vis som liste"
225
 
226
+ #: counter-options.php:974
227
  #@ cpd
228
  msgid "Show \"Reads per Post\" in a new column in post management views."
229
  msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
230
 
231
+ #: counter-options.php:981
232
  #@ cpd
233
  msgid "Start Values"
234
  msgstr "Startværdier"
235
 
236
+ #: counter-options.php:985
237
  #@ cpd
238
  msgid "Here you can change the date of first count and add a start count."
239
  msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
240
 
241
+ #: counter-options.php:989
242
  #@ cpd
243
  msgid "Start date"
244
  msgstr "Startdato"
245
 
246
+ #: counter-options.php:990
247
  #@ cpd
248
  msgid "Your old Counter starts at?"
249
  msgstr "Hvornår starter din gamle tæller?"
250
 
251
+ #: counter-options.php:993
252
+ #: counter-options.php:997
253
  #@ cpd
254
  msgid "Start count"
255
  msgstr "Start-tæller"
256
 
257
+ #: counter-options.php:994
258
  #@ cpd
259
  msgid "Add this value to \"Total visitors\"."
260
  msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
261
 
262
+ #: counter-options.php:998
263
  #@ cpd
264
  msgid "Add this value to \"Total reads\"."
265
  msgstr "Tilføj denne værdi til \"Læst i alt\"."
266
 
267
+ #: counter-options.php:1035
268
  #@ cpd
269
  msgid "Debug mode"
270
  msgstr "Debug-modus"
271
 
272
+ #: counter-options.php:1037
273
  #@ cpd
274
  msgid "Show debug informations at the bottom of all pages."
275
  msgstr "Vis debug-information i bunden af alle sider."
276
 
277
+ #: counter-options.php:720
278
  #@ cpd
279
  msgid "GeoIP - Countries"
280
  msgstr "GeoIP - Lande"
281
 
282
+ #: counter-options.php:729
283
  #@ cpd
284
  msgid "Update old counter data"
285
  msgstr "Opdatér gamle tællerdata"
286
 
287
+ #: counter-options.php:741
288
  #@ cpd
289
  msgid "Update GeoIP database"
290
  msgstr "Opdatér GeoIP-database"
291
 
292
+ #: counter-options.php:736
293
  #@ cpd
294
  msgid "Download a new version of GeoIP.dat file."
295
  msgstr "Download en ny version af GeoIP.dat-filen."
296
 
297
+ #: counter-options.php:746
298
  #@ cpd
299
  msgid "More informations about GeoIP"
300
  msgstr "Flere oplysninger om GeoIP"
301
 
302
+ #: counter-options.php:429
303
  #: massbots.php:46
304
  #@ cpd
305
  msgid "Mass Bots"
306
  msgstr "Massebots"
307
 
308
+ #: counter-options.php:433
309
  #, php-format
310
  #@ cpd
311
  msgid "Show all IPs with more than %s page views per day"
312
  msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
313
 
314
+ #: counter-options.php:434
315
+ #: counter-options.php:498
316
  #: notes.php:84
317
  #: userperspan.php:56
318
  #@ cpd
319
  msgid "show"
320
  msgstr "vis"
321
 
322
+ #: counter-options.php:442
323
+ #: counter-options.php:506
324
  #@ cpd
325
  msgid "IP"
326
  msgstr "IP"
327
 
328
+ #: counter-options.php:443
329
+ #: counter-options.php:507
330
  #: notes.php:88
331
  #@ cpd
332
  #@ default
333
  msgid "Date"
334
  msgstr "Dato"
335
 
336
+ #: counter-options.php:444
337
+ #: counter-options.php:508
338
  #@ cpd
339
  msgid "Client"
340
  msgstr "Klient"
341
 
342
+ #: counter-options.php:445
343
+ #: counter-options.php:509
344
  #@ cpd
345
  msgid "Views"
346
  msgstr "Visninger"
347
 
348
+ #: counter-options.php:460
349
+ #: counter-options.php:476
350
+ #: counter-options.php:523
351
  #, php-format
352
  #@ cpd
353
  msgid "Delete these %s counts"
354
  msgstr "Slet disse %s hits"
355
 
356
+ #: counter-options.php:637
357
+ #: counter-options.php:645
358
  #@ cpd
359
  msgid "Clean the database"
360
  msgstr "Rens databasen"
361
 
362
+ #: counter-options.php:641
363
  #@ cpd
364
  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."
365
  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."
366
 
367
+ #: counter-options.php:770
368
+ #: counter-options.php:780
369
  #@ cpd
370
  msgid "Reset the counter"
371
  msgstr "Nulstil tælleren"
372
 
373
+ #: counter-options.php:773
374
  #@ cpd
375
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
376
  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."
377
 
378
+ #: counter-options.php:792
379
  #@ cpd
380
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
381
  msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
382
 
383
+ #: counter-options.php:793
384
  #@ cpd
385
  msgid "Here you can delete the tables and disable \"Count per Day\"."
386
  msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
387
 
388
+ #: counter-options.php:796
389
  #@ cpd
390
  msgid "WARNING"
391
  msgstr "ADVARSEL"
392
 
393
+ #: counter-options.php:797
394
  #@ cpd
395
  msgid "These tables (with ALL counter data) will be deleted."
396
  msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
397
 
398
+ #: counter-options.php:799
399
  #@ cpd
400
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
401
  msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
402
 
403
+ #: counter-options.php:779
404
+ #: counter-options.php:802
405
  #@ cpd
406
  msgid "Yes"
407
  msgstr "Ja"
408
 
409
+ #: counter-options.php:803
410
  #@ cpd
411
  msgid "You are sure to disable Count per Day and delete all data?"
412
  msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
413
 
414
+ #: counter-options.php:811
415
  #@ cpd
416
  msgid "Support"
417
  msgstr "Support"
418
 
419
+ #: counter-core.php:742
420
  #, php-format
421
  #@ cpd
422
  msgid "Time for Count per Day: <code>%s</code>."
423
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
424
 
425
+ #: counter-core.php:743
426
  #@ cpd
427
  msgid "Bug? Problem? Question? Hint? Praise?"
428
  msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
429
 
430
+ #: counter-core.php:744
431
  #, php-format
432
  #@ cpd
433
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
434
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
435
 
436
+ #: counter.php:231
437
+ #: counter.php:1407
438
  #@ cpd
439
  msgid "Total reads"
440
  msgstr "Læsninger i alt"
441
 
442
+ #: counter.php:232
443
+ #: counter.php:1408
444
  #@ cpd
445
  msgid "Reads today"
446
  msgstr "Læsninger i dag"
447
 
448
+ #: counter.php:233
449
+ #: counter.php:1409
450
  #@ cpd
451
  msgid "Reads yesterday"
452
  msgstr "Læsninger i går"
453
 
454
+ #: counter-core.php:777
455
+ #: counter.php:236
456
+ #: counter.php:1218
457
+ #: counter.php:1412
458
  #@ cpd
459
  msgid "Total visitors"
460
  msgstr "Antal besøgende i alt"
461
 
462
+ #: counter.php:237
463
+ #: counter.php:1418
464
  #@ cpd
465
  msgid "Visitors currently online"
466
  msgstr "Besøgende online lige nu"
467
 
468
+ #: counter.php:238
469
+ #: counter.php:1413
470
  #@ cpd
471
  msgid "Visitors today"
472
  msgstr "Besøgende i dag"
473
 
474
+ #: counter.php:239
475
+ #: counter.php:1414
476
  #@ cpd
477
  msgid "Visitors yesterday"
478
  msgstr "Besøgende i går"
479
 
480
+ #: counter.php:240
481
+ #: counter.php:1415
482
  #@ cpd
483
  msgid "Visitors last week"
484
  msgstr "Besøgende sidste weekend"
485
 
486
+ #: counter-core.php:783
487
+ #: counter.php:242
488
+ #: counter.php:343
489
+ #: counter.php:1220
490
+ #: counter.php:1417
491
  #: userperspan.php:46
492
  #@ cpd
493
  msgid "Visitors per day"
494
  msgstr "Besøgende per dag"
495
 
496
+ #: counter.php:969
497
+ #: counter.php:1419
 
498
  #@ cpd
499
  msgid "Counter starts on"
500
  msgstr "Tæller starter på"
501
 
502
+ #: counter.php:890
503
  #: notes.php:55
504
  #: notes.php:89
505
  #@ cpd
506
  msgid "Notes"
507
  msgstr "Noter"
508
 
509
+ #: counter.php:771
510
  #, php-format
511
  #@ cpd
512
  msgid "The %s most visited posts in last %s days:"
513
  msgstr "De %s mest sete indlæg i de sidste %s dage:"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Vis"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Andre"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Redigér indlæg"
533
  msgid "Front page displays"
534
  msgstr "Visninger af forsiden"
535
 
536
+ #: counter-core.php:641
537
+ #: counter-options.php:409
 
538
  #@ default
539
  msgid "Settings"
540
  msgstr "Indstillinger"
541
 
542
  # tjekkes
543
+ #: counter-core.php:1526
544
+ #: counter-options.php:869
545
+ #: counter.php:235
546
+ #: counter.php:1019
547
  #@ cpd
548
  msgid "Reads"
549
  msgstr "Læsninger"
550
 
551
+ #: counter.php:1406
552
  #@ cpd
553
  msgid "This post"
554
  msgstr "Dette indlæg"
555
 
556
+ #: counter.php:342
557
  #@ cpd
558
  msgid "Reads per day"
559
  msgstr "Læsninger per dag"
560
 
561
+ #: counter-core.php:779
562
+ #: counter.php:1416
563
  #@ cpd
564
  msgid "Visitors per month"
565
  msgstr "Besøgende per måned"
566
 
567
+ #: counter-core.php:782
568
  #@ cpd
569
  msgid "Latest Counts"
570
  msgstr "Seneste læste"
571
 
572
+ #: counter-core.php:785
573
  #@ default
574
  msgid "Plugin"
575
  msgstr "Plugin"
576
 
577
+ #: counter-core.php:793
578
  #@ cpd
579
  msgid "Reads per Country"
580
  msgstr "Læsninger per land"
581
 
582
+ #: counter-core.php:794
583
  #@ cpd
584
  msgid "Visitors per Country"
585
  msgstr "Besøgende per land"
586
 
587
+ #: counter-core.php:809
588
+ #: counter.php:1334
589
  #@ cpd
590
  msgid "Statistics"
591
  msgstr "Statistik"
592
 
593
+ #: counter.php:433
594
+ #: counter.php:1249
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Kort"
656
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
657
  msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
658
 
659
+ #: counter-options.php:723
660
  #@ cpd
661
  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!"
662
  msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
663
 
664
+ #: counter-options.php:828
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Tæller"
668
 
669
+ #: counter-options.php:866
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Klienter og henvisere"
673
 
674
+ #: counter-options.php:869
675
  #@ cpd
676
  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."
677
  msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
678
 
679
+ #: counter-options.php:962
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Lokale adresser"
683
 
684
+ #: counter-options.php:963
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Vis også lokale henvisninger"
688
 
689
+ #: counter-options.php:970
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Indlæg"
693
 
694
+ #: counter-options.php:970
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Sider"
698
 
699
+ #: counter.php:234
700
+ #: counter.php:1410
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Læsninger i sidste uge"
704
 
705
+ #: counter.php:1139
706
  #@ default
707
  msgid "Category"
708
  msgstr "Kategori"
709
 
710
+ #: counter.php:1142
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Tag"
714
 
715
+ #: counter-core.php:745
716
  #@ default
717
  msgid "License"
718
  msgstr "Licens"
719
 
720
+ #: counter-core.php:780
721
+ #: counter.php:1411
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Læsninger per måned"
725
 
726
+ #: counter-core.php:789
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Henviser"
730
 
731
+ #: counter.php:1431
732
  #@ default
733
  msgid "Title"
734
  msgstr "Titel"
735
 
736
+ #: counter-options.php:954
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Henvisere - poster"
740
 
741
+ #: counter-options.php:955
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Hvor mange henvisere vil du se på dashboardet?"
745
 
746
+ #: counter-options.php:958
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Henvisere - Dage"
750
 
751
+ #: counter.php:989
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "De %s henvisere i de sidste %s dage:"
756
 
757
+ #: counter-core.php:778
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Brugere online"
761
 
762
+ #: counter-core.php:232
763
  #, php-format
764
  #@ cpd
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:1062
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr ""
772
 
773
+ #: counter-core.php:1180
774
+ #: counter-core.php:1188
 
 
 
 
 
 
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr ""
779
 
780
+ #: counter-core.php:1182
781
+ #: counter-core.php:1190
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr ""
786
 
787
+ #: counter-options.php:174
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr ""
791
 
792
+ #: counter-options.php:268
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr ""
796
 
797
+ #: counter-options.php:313
 
 
 
 
 
798
  #, php-format
799
  #@ cpd
800
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
801
  msgstr ""
802
 
803
+ #: counter-options.php:322
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr ""
807
 
808
+ #: counter-options.php:408
 
809
  #@ default
810
  msgid "Tools"
811
  msgstr ""
812
 
813
+ #: counter-options.php:871
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr ""
817
 
818
+ #: counter-options.php:905
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr ""
822
 
823
+ #: counter-options.php:914
824
  #@ cpd
825
  msgid "custom"
826
  msgstr ""
827
 
828
+ #: counter-options.php:916
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr ""
832
 
833
+ #: counter-options.php:918
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr ""
838
 
839
+ #: counter-options.php:1005
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr ""
843
 
844
+ #: counter-options.php:1008
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr ""
848
 
849
+ #: counter-options.php:1009
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr ""
853
 
854
+ #: counter-options.php:560
855
+ #: counter-options.php:1016
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr ""
859
 
860
+ #: counter-options.php:1019
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr ""
864
 
865
+ #: counter-options.php:1022
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr ""
869
 
870
+ #: counter-options.php:1027
871
  #@ cpd
872
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
873
  msgstr ""
874
 
875
+ #: counter-options.php:564
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr ""
880
 
881
+ #: counter-options.php:571
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
+ #: counter-options.php:675
887
+ #: counter-options.php:707
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr ""
891
 
892
+ #: counter-options.php:661
893
+ #: counter-options.php:680
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr ""
898
 
899
+ #: counter-options.php:682
900
  #@ cpd
901
  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."
902
  msgstr ""
903
 
904
+ #: counter-options.php:687
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr ""
909
 
910
+ #: counter-options.php:691
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr ""
914
 
915
+ #: counter-options.php:697
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr ""
919
 
920
+ #: counter-options.php:698
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr ""
925
 
926
+ #: counter-options.php:703
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr ""
931
 
932
+ #: counter-options.php:754
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr ""
936
 
937
+ #: counter-options.php:757
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr ""
941
 
942
+ #: counter-options.php:762
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr ""
946
 
947
+ #: counter.php:241
948
+ #: counter.php:1043
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr ""
952
 
953
+ #: counter.php:244
954
+ #: counter.php:245
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr ""
958
 
959
+ #: counter.php:1450
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr ""
963
 
964
+ #: counter-core.php:784
965
+ #: counter-options.php:954
966
+ #: counter-options.php:958
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1176
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1246
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1250
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1252
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1269
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:337
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:352
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:567
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:599
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:604
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:611
1025
  #, php-format
1026
  #@ cpd
1027
  msgid "Add data from the backup file %s to existing counter table?"
1028
  msgstr ""
1029
 
1030
+ #: counter-options.php:611
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:615
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:615
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:617
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:618
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:624
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:625
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:626
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:651
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:655
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:662
1084
  #, php-format
1085
  #@ cpd
1086
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1087
  msgstr ""
1088
 
1089
+ #: counter-options.php:666
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1145
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1193
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1202
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1366
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:986
1117
+ #@ cpd
1118
+ msgid "Export failed! Cannot open file."
1119
+ msgstr ""
1120
+
1121
+ #: counter-core.php:1034
1122
+ #@ cpd
1123
+ msgid "Download the export file:"
1124
+ msgstr ""
1125
+
1126
+ #: counter-core.php:1089
1127
+ #, php-format
1128
+ #@ cpd
1129
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1130
+ msgstr ""
1131
+
1132
+ #: counter-options.php:289
1133
+ #@ cpd
1134
+ msgid "Deleting old data..."
1135
+ msgstr ""
1136
+
1137
+ #: counter-options.php:493
1138
+ #@ cpd
1139
+ msgid "Most Industrious Visitors"
1140
+ msgstr ""
1141
+
1142
+ #: counter-options.php:497
1143
+ #, php-format
1144
+ #@ cpd
1145
+ msgid "Show the %s most industrious visitors of the last %s days"
1146
+ msgstr ""
1147
+
1148
+ #: counter-options.php:544
1149
+ #@ cpd
1150
+ msgid "Export"
1151
+ msgstr ""
1152
+
1153
+ #: counter-options.php:548
1154
+ #, php-format
1155
+ #@ cpd
1156
+ msgid "Export the last %s days as CSV-File"
1157
+ msgstr ""
1158
+
1159
+ #: counter-options.php:552
1160
+ #@ cpd
1161
+ msgid "Export entries"
1162
+ msgstr ""
1163
+
1164
+ #: counter-options.php:875
1165
+ #@ cpd
1166
+ msgid "Post types"
1167
+ msgstr ""
1168
+
1169
+ #: counter-options.php:878
1170
+ #@ cpd
1171
+ msgid "Only count these post types. Leave empty to count them all."
1172
+ msgstr ""
1173
+
1174
+ #: counter-options.php:879
1175
+ #, php-format
1176
+ #@ cpd
1177
+ msgid "Current post types: %s"
1178
+ msgstr ""
1179
+
1180
+ #: counter.php:243
1181
+ #@ cpd
1182
+ msgid "Since"
1183
+ msgstr ""
1184
+
1185
+ #: counter.php:1502
1186
+ #: counter.php:1534
1187
+ #@ cpd
1188
+ msgid "Popular Posts"
1189
+ msgstr ""
1190
+
1191
+ #: counter.php:1504
1192
+ #@ cpd
1193
+ msgid "List of Popular Posts"
1194
+ msgstr ""
1195
+
1196
+ #: counter.php:1542
1197
+ #@ cpd
1198
+ msgid "Title:"
1199
+ msgstr ""
1200
+
1201
+ #: counter.php:1546
1202
+ #@ cpd
1203
+ msgid "Days:"
1204
+ msgstr ""
1205
+
1206
+ #: counter.php:1550
1207
+ #@ cpd
1208
+ msgid "Limit:"
1209
+ msgstr ""
1210
+
1211
+ #: counter.php:1554
1212
+ #@ cpd
1213
+ msgid "Show header:"
1214
+ msgstr ""
1215
+
1216
+ #: counter.php:1558
1217
+ #@ cpd
1218
+ msgid "Show counters:"
1219
+ msgstr ""
1220
+
locale/cpd-de_DE.mo CHANGED
Binary file
locale/cpd-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:17:10+0000\n"
7
  "Last-Translator: Tom Braider <post@tomsdimension.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -25,302 +25,300 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Einstellungen aktualisiert"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Datenbank aufger&auml;umt. %s Datens&auml;tze gel&ouml;scht."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEINSTALLIERE Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabelle %s gel&ouml;scht"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Einstellungen gel&ouml;scht"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstallation"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Klick hier"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Onlinezeit"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Angemeldete Benutzer"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "auch mit z&auml;hlen"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto-Counter"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Spam/Suchmaschinen Bots ignorieren"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Einstellungen aktualisieren"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Datenbank aufr&auml;umen"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "WARNUNG"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Ja, los!"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistiken"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Besucher gesamt"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Besucher momentan online"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Besucher heute"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Besucher gestern"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Besucher letzte Woche"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "gez&auml;hlt ab"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Besucher pro Tag"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Besucher pro Monat"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Besucher pro Artikel"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
227
 
228
- #: counter-options.php:835
229
- #: counter-options.php:839
230
  #@ cpd
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
233
 
234
- #: counter-options.php:838
235
  #@ cpd
236
  msgid "Latest Counts - Posts"
237
  msgstr "Aktuelle Besuche - Artikel"
238
 
239
- #: counter-options.php:842
240
  #@ cpd
241
  msgid "Latest Counts - Days"
242
  msgstr "Aktuelle Besuche - Tage"
243
 
244
- #: counter-options.php:843
245
- #: counter-options.php:847
246
- #: counter-options.php:869
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
250
 
251
- #: counter-options.php:883
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "In &Uuml;bersichten anzeigen"
255
 
256
- #: counter-options.php:884
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
260
 
261
- #: counter-options.php:686
262
- #: counter-options.php:696
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Z&auml;hler zur&uuml;cksetzen"
266
 
267
- #: counter-options.php:689
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  msgstr "Du kannst die Z&auml;hler zur&uuml;cksetzen und die Tabelle leeren. Alles auf 0!<br />Wenn du die aktuellen Zahlen brauchst, mache ein Backup der Datenbank!"
271
 
272
- #: counter.php:756
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
277
 
278
- #: counter-core.php:652
279
- #: counter-options.php:401
280
- #: counter-options.php:740
281
  #@ default
282
  msgid "Settings"
283
  msgstr ""
284
 
285
- #: counter-core.php:1464
286
- #: counter-options.php:789
287
- #: counter.php:222
288
- #: counter.php:974
289
  #@ cpd
290
  msgid "Reads"
291
  msgstr "Seitenaufrufe"
292
 
293
- #: counter-core.php:793
294
  #@ cpd
295
  msgid "Latest Counts"
296
  msgstr "Letzte Seitenaufrufe"
297
 
298
- #: counter-options.php:846
299
  #@ cpd
300
  msgid "Chart - Days"
301
  msgstr "Diagramm - Tage"
302
 
303
- #: counter-options.php:850
304
  #@ cpd
305
  msgid "Chart - Height"
306
  msgstr "Diagramm - H&ouml;he"
307
 
308
- #: counter-options.php:851
309
  #@ cpd
310
  msgid "Height of the biggest bar"
311
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
312
 
313
- #: counter.php:1355
314
  #@ cpd
315
  msgid "This post"
316
  msgstr "Diese Seite"
317
 
318
- #: counter-options.php:799
319
  #@ default
320
  msgid "Dashboard"
321
  msgstr ""
322
 
323
- #: counter.php:327
324
  #@ cpd
325
  msgid "Reads per day"
326
  msgstr "Seitenaufrufe pro Tag"
@@ -336,32 +334,32 @@ msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
336
  msgid "update next"
337
  msgstr "weiter aktualisieren"
338
 
339
- #: counter-options.php:636
340
  #@ cpd
341
  msgid "GeoIP - Countries"
342
  msgstr "GeoIP - L&auml;nder"
343
 
344
- #: counter-options.php:645
345
  #@ cpd
346
  msgid "Update old counter data"
347
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
348
 
349
- #: counter-options.php:657
350
  #@ cpd
351
  msgid "Update GeoIP database"
352
  msgstr "Aktualisiere GeoIP Datenbank"
353
 
354
- #: counter-options.php:652
355
  #@ cpd
356
  msgid "Download a new version of GeoIP.dat file."
357
  msgstr "Neue Version von GeoIP.dat herunterladen."
358
 
359
- #: counter-options.php:662
360
  #@ cpd
361
  msgid "More informations about GeoIP"
362
  msgstr "Mehr Informationen über GeoIP"
363
 
364
- #: counter-core.php:804
365
  #@ cpd
366
  msgid "Reads per Country"
367
  msgstr "Seitenaufrufe pro Land"
@@ -381,12 +379,12 @@ msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder &uuml;berpr&uum
381
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
382
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
383
 
384
- #: counter-options.php:855
385
  #@ cpd
386
  msgid "Countries"
387
  msgstr "L&auml;nder"
388
 
389
- #: counter-options.php:856
390
  #@ cpd
391
  msgid "How many countries do you want to see on dashboard page?"
392
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
@@ -397,33 +395,35 @@ msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
397
  msgid "Mass Bots cleaned. %s counts deleted."
398
  msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
399
 
400
- #: counter-options.php:417
401
  #: massbots.php:46
402
  #@ cpd
403
  msgid "Mass Bots"
404
  msgstr "Massen-Bots"
405
 
406
- #: counter-options.php:421
407
  #, php-format
408
  #@ cpd
409
  msgid "Show all IPs with more than %s page views per day"
410
  msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
411
 
412
- #: counter-options.php:422
 
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "anzeigen"
418
 
419
- #: counter-options.php:448
420
- #: counter-options.php:464
 
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
425
 
426
- #: counter.php:913
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Sonstige"
@@ -434,108 +434,112 @@ msgstr "Sonstige"
434
  msgid "Front page displays"
435
  msgstr ""
436
 
437
- #: counter-core.php:799
438
- #: counter-options.php:860
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
- #: counter-options.php:430
 
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
- #: counter-options.php:431
 
449
  #: notes.php:88
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Datum"
454
 
455
- #: counter-options.php:432
 
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Browser"
459
 
460
- #: counter-options.php:433
 
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Seitenaufrufe"
464
 
465
- #: counter-options.php:891
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Startwerte"
469
 
470
- #: counter-options.php:895
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:899
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Startdatum"
479
 
480
- #: counter-options.php:900
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Dein alter Z&auml;hler begann am?"
484
 
485
- #: counter-options.php:903
486
- #: counter-options.php:907
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Startz&auml;hlerstand"
490
 
491
- #: counter-options.php:904
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
495
 
496
- #: counter-options.php:727
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Kontakt"
500
 
501
- #: counter-core.php:754
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "Bug? Problem? Frage? Tipp? Lob?"
505
 
506
- #: counter-core.php:755
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:873
513
  #@ default
514
  msgid "Show"
515
  msgstr ""
516
 
517
- #: counter.php:1085
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr ""
521
 
522
- #: counter-core.php:753
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:759
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "bis Benutzerlevel"
532
 
533
- #: counter-core.php:796
534
  #@ default
535
  msgid "Plugin"
536
  msgstr ""
537
 
538
- #: counter.php:875
539
  #: notes.php:55
540
  #: notes.php:89
541
  #@ cpd
@@ -567,66 +571,66 @@ msgstr "l&ouml;schen"
567
  msgid "edit"
568
  msgstr "&auml;ndern"
569
 
570
- #: counter-options.php:908
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
574
 
575
- #: counter.php:218
576
- #: counter.php:1356
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Seitenaufrufe gesamt"
580
 
581
- #: counter.php:219
582
- #: counter.php:1357
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Seitenaufrufe heute"
586
 
587
- #: counter.php:220
588
- #: counter.php:1358
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Seitenaufrufe gestern"
592
 
593
- #: counter.php:418
594
- #: counter.php:1198
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Weltkarte"
598
 
599
- #: counter-options.php:778
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "Anonyme IP-Adresse"
603
 
604
- #: counter-options.php:782
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
- #: counter-options.php:783
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:861
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:805
620
  #@ cpd
621
  msgid "Visitors per Country"
622
  msgstr "Besucher pro Land"
623
 
624
- #: counter-options.php:945
625
  #@ cpd
626
  msgid "Debug mode"
627
  msgstr "Debug Modus"
628
 
629
- #: counter-options.php:947
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."
@@ -651,472 +655,569 @@ msgstr "Artikel-ID"
651
  msgid "no data found"
652
  msgstr "keine passenden Daten gefunden"
653
 
654
- #: counter-options.php:639
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:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Z&auml;hler"
663
 
664
- #: counter-options.php:872
665
  #@ cpd
666
  msgid "Local URLs"
667
  msgstr "Lokale URLs"
668
 
669
- #: counter-options.php:873
670
  #@ cpd
671
  msgid "Show local referrers too."
672
  msgstr "Zeige auch lokale Referrer."
673
 
674
- #: counter-options.php:880
675
  #@ default
676
  msgid "Posts"
677
  msgstr ""
678
 
679
- #: counter-options.php:880
680
  #@ default
681
  msgid "Pages"
682
  msgstr ""
683
 
684
- #: counter.php:1094
685
  #@ default
686
  msgid "Category"
687
  msgstr ""
688
 
689
- #: counter.php:1097
690
  #@ default
691
  msgid "Tag"
692
  msgstr ""
693
 
694
- #: counter-core.php:756
695
  #@ default
696
  msgid "License"
697
  msgstr ""
698
 
699
- #: counter-core.php:800
700
  #@ cpd
701
  msgid "Referrer"
702
  msgstr "Herkunft"
703
 
704
- #: counter.php:1380
705
  #@ default
706
  msgid "Title"
707
  msgstr ""
708
 
709
- #: counter-options.php:789
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:786
715
  #@ cpd
716
  msgid "Clients and referrers"
717
  msgstr "Browser und Herkunft"
718
 
719
- #: counter.php:221
720
- #: counter.php:1359
721
  #@ cpd
722
  msgid "Reads last week"
723
  msgstr "Seitenaufrufe letzte Woche"
724
 
725
- #: counter-core.php:791
726
- #: counter.php:1360
727
  #@ cpd
728
  msgid "Reads per month"
729
  msgstr "Seitenaufrufe pro Monat"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Herkunft - Einträge"
735
 
736
- #: counter-options.php:865
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:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Herkunft - Tage"
745
 
746
- #: counter.php:944
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:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Besucher online"
756
 
757
- #: counter-options.php:915
758
  #@ cpd
759
  msgid "Stylesheet"
760
  msgstr "Stylesheet"
761
 
762
- #: counter-options.php:918
763
  #@ cpd
764
  msgid "NO Stylesheet in Frontend"
765
  msgstr "KEIN Stylesheet im Frontend"
766
 
767
- #: counter-options.php:919
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:815
773
  #@ cpd
774
  msgid "Who can see it"
775
  msgstr "Wer darf es sehen"
776
 
777
- #: counter-options.php:824
778
  #@ cpd
779
  msgid "custom"
780
  msgstr "benutzerdefiniert"
781
 
782
- #: counter-options.php:826
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:828
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:259
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:1000
800
  #@ cpd
801
  msgid "Backup failed! Cannot open file"
802
  msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
803
 
804
- #: counter-core.php:1027
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:1118
811
- #: counter-core.php:1126
812
  #, php-format
813
  #@ cpd
814
  msgid "Backup of counter table saved in %s."
815
  msgstr "Die Zähler-Tabelle wurde in %s gesichert."
816
 
817
- #: counter-core.php:1120
818
- #: counter-core.php:1128
819
  #, php-format
820
  #@ cpd
821
  msgid "Backup of counter options and collection saved in %s."
822
  msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
823
 
824
- #: counter-options.php:169
825
  #@ cpd
826
  msgid "Collection in progress..."
827
  msgstr "Zusammenfassung erfolgt ..."
828
 
829
- #: counter-options.php:263
830
  #@ cpd
831
  msgid "Get Visitors per Post..."
832
  msgstr "Besucher pro Artikel bearbeiten..."
833
 
834
- #: counter-options.php:284
835
- #@ cpd
836
- msgid "Delete old data..."
837
- msgstr "L&ouml;schen alter Daten..."
838
-
839
- #: counter-options.php:308
840
  #, php-format
841
  #@ cpd
842
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
843
  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)."
844
 
845
- #: counter-options.php:317
846
  #@ cpd
847
  msgid "Installation of \"Count per Day\" checked"
848
  msgstr "Installation von &quot;Count per Day&quot; überpr&uuml;ft"
849
 
850
- #: counter-options.php:400
851
- #: counter-options.php:739
852
  #@ default
853
  msgid "Tools"
854
  msgstr ""
855
 
856
- #: counter-options.php:791
857
  #@ cpd
858
  msgid "Save URL only, no query string."
859
  msgstr "Speichere nur die URL, keinen Query-String."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Backup"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Einträge pro Durchgang"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Wie viele Eintr&auml;ge sollen pro Durchgang bearbeitet werden? Standard: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  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."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Erstelle eine Sicherungskopie der Z&auml;hler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Datenbank sichern"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Alte Daten zusammenfassen"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "Die aktuelle Gr&ouml;&szlig;e der Z&auml;hler-Tabelle %s ist %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "Momentan enth&auml;lt die Zusammenfassung Daten bis %s."
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugef&uuml;gt."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  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."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Alle zusammengefassten Daten bis %s werden gel&ouml;scht."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Behalte die Eintr&auml;ge der letzten %s vollen Monate plus des aktuellen Monats in der Z&auml;hler-Tabelle."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "ReAktivierung"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "ReAktiviere das Plugin"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Besucher"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "meistbesuchter Tag"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "per Drag &amp; Drop sortieren"
970
 
971
- #: counter-core.php:1114
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr "Du kannst die Sicherungen nur hier und jetzt herunterladen."
975
 
976
- #: counter-options.php:483
977
  #@ cpd
978
  msgid "Download only"
979
  msgstr "nur zum Download anbieten, nicht speichern"
980
 
981
- #: counter-options.php:533
982
  #@ default
983
  msgid "Delete"
984
  msgstr ""
985
 
986
- #: counter-options.php:534
987
  #, php-format
988
  #@ cpd
989
  msgid "Delete the backup file %s ?"
990
  msgstr "Sicherung %s l&ouml;schen?"
991
 
992
- #: counter-core.php:795
993
- #: counter-options.php:864
994
- #: counter-options.php:868
995
  #@ cpd
996
  msgid "Search strings"
997
  msgstr "Suchw&ouml;rter"
998
 
999
- #: counter-core.php:1184
1000
  #@ cpd
1001
  msgid "Error while reading backup file!"
1002
  msgstr "Fehler beim Lesen der Sicherungsdatei!"
1003
 
1004
- #: counter-core.php:1188
1005
  #, php-format
1006
  #@ cpd
1007
  msgid "The backup was added to counter table %s."
1008
  msgstr "Die Sicherung wurde zur Tabelle %s hinzugef&uuml;gt."
1009
 
1010
- #: counter-core.php:1190
1011
  #, php-format
1012
  #@ cpd
1013
  msgid "The counter table %s was restored from backup."
1014
  msgstr "Die Z&auml;hlertabelle %s wurde wiederhergestellt."
1015
 
1016
- #: counter-core.php:1207
1017
  #@ cpd
1018
  msgid "Options restored from backup."
1019
  msgstr "Einstellungen wiederhergestellt."
1020
 
1021
- #: counter-options.php:515
1022
  #@ cpd
1023
  msgid "Settings and collections"
1024
  msgstr "Einstellungen und Zusammenfassung"
1025
 
1026
- #: counter-options.php:520
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Counter table %s"
1030
  msgstr "Z&auml;hlertabelle %s"
1031
 
1032
- #: counter-options.php:527
1033
  #, php-format
1034
  #@ cpd
1035
  msgid "Add data from the backup file %s to existing counter table?"
1036
  msgstr "Die Daten der Sicherung zur vorhandenen Z&auml;hlertabelle %s hinzuf&uuml;gen?"
1037
 
1038
- #: counter-options.php:531
1039
  #, php-format
1040
  #@ cpd
1041
  msgid "Restore data from the backup file %s ?"
1042
  msgstr "Daten aus der Sicherung %s wiederherstellen?"
1043
 
1044
- #: counter-options.php:531
1045
  #@ default
1046
  msgid "Restore"
1047
  msgstr ""
1048
 
1049
- #: counter-options.php:540
1050
  #@ cpd
1051
  msgid "add backup to current counter table"
1052
  msgstr "Sicherung zu aktuellen Daten hinzuf&uuml;gen"
1053
 
1054
- #: counter-options.php:541
1055
  #@ cpd
1056
  msgid "replace current counter table with with backup"
1057
  msgstr "aktuelle Daten durch Sicherung ersetzen"
1058
 
1059
- #: counter-options.php:542
1060
  #@ cpd
1061
  msgid "delete backup file"
1062
  msgstr "Sicherung l&ouml;schen"
1063
 
1064
- #: counter.php:1142
1065
  #, php-format
1066
  #@ cpd
1067
  msgid "The %s most searched strings:"
1068
  msgstr "Die %s am meisten gesuchten W&ouml;rter:"
1069
 
1070
- #: counter.php:1151
1071
  #, php-format
1072
  #@ cpd
1073
  msgid "The search strings of the last %s days:"
1074
  msgstr "Die Suchw&ouml;rter der letzten %s Tage:"
1075
 
1076
- #: counter-options.php:332
1077
  #@ cpd
1078
  msgid "Old search strings deleted"
1079
  msgstr "Alte Suchw&ouml;rter wurden gel&ouml;scht."
1080
 
1081
- #: counter-options.php:567
1082
  #, php-format
1083
  #@ cpd
1084
  msgid "Delete search strings older than %s days."
1085
  msgstr "L&ouml;sche Suchw&ouml;rter die älter als %s Tage sind!"
1086
 
1087
- #: counter-options.php:571
1088
  #@ cpd
1089
  msgid "Delete search strings"
1090
  msgstr "L&ouml;sche Suchw&ouml;rter"
1091
 
1092
- #: counter-options.php:527
1093
  #@ cpd
1094
  msgid "Add"
1095
  msgstr "Hinzuf&uuml;gen"
1096
 
1097
- #: counter-options.php:347
1098
  #@ cpd
1099
  msgid "Clients and referers deleted"
1100
  msgstr "Browser und Herkunftsdaten gelöscht"
1101
 
1102
- #: counter-options.php:578
1103
  #, php-format
1104
  #@ cpd
1105
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1106
  msgstr "Lösche Browser und Herkunftsdaten bei Einträgen die älter als %s Tage sind um die Datenbank zu verkleinern."
1107
 
1108
- #: counter-options.php:582
1109
  #@ cpd
1110
  msgid "Delete clients and referers"
1111
  msgstr "Browser und Herkunftsdaten löschen"
1112
 
1113
- #: counter.php:1100
1114
  #@ default
1115
  msgid "Front page"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-10 09:00:55+0000\n"
7
  "Last-Translator: Tom Braider <post@tomsdimension.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Einstellungen aktualisiert"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Datenbank aufger&auml;umt. %s Datens&auml;tze gel&ouml;scht."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEINSTALLIERE Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabelle %s gel&ouml;scht"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Einstellungen gel&ouml;scht"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstallation"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Klick hier"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Onlinezeit"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Angemeldete Benutzer"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "auch mit z&auml;hlen"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto-Counter"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Spam/Suchmaschinen Bots ignorieren"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Einstellungen aktualisieren"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Datenbank aufr&auml;umen"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "WARNUNG"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Ja, los!"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistiken"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Besucher gesamt"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Besucher momentan online"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Besucher heute"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Besucher gestern"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Besucher letzte Woche"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "gez&auml;hlt ab"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Besucher pro Tag"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Besucher pro Monat"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Besucher pro Artikel"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
226
 
227
+ #: counter-options.php:925
228
+ #: counter-options.php:929
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:928
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Aktuelle Besuche - Artikel"
237
 
238
+ #: counter-options.php:932
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Aktuelle Besuche - Tage"
242
 
243
+ #: counter-options.php:933
244
+ #: counter-options.php:937
245
+ #: counter-options.php:959
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:973
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "In &Uuml;bersichten anzeigen"
254
 
255
+ #: counter-options.php:974
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:770
261
+ #: counter-options.php:780
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Z&auml;hler zur&uuml;cksetzen"
265
 
266
+ #: counter-options.php:773
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:771
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:641
278
+ #: counter-options.php:409
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr ""
282
 
283
+ #: counter-core.php:1526
284
+ #: counter-options.php:869
285
+ #: counter.php:235
286
+ #: counter.php:1019
287
  #@ cpd
288
  msgid "Reads"
289
  msgstr "Seitenaufrufe"
290
 
291
+ #: counter-core.php:782
292
  #@ cpd
293
  msgid "Latest Counts"
294
  msgstr "Letzte Seitenaufrufe"
295
 
296
+ #: counter-options.php:936
297
  #@ cpd
298
  msgid "Chart - Days"
299
  msgstr "Diagramm - Tage"
300
 
301
+ #: counter-options.php:940
302
  #@ cpd
303
  msgid "Chart - Height"
304
  msgstr "Diagramm - H&ouml;he"
305
 
306
+ #: counter-options.php:941
307
  #@ cpd
308
  msgid "Height of the biggest bar"
309
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
310
 
311
+ #: counter.php:1406
312
  #@ cpd
313
  msgid "This post"
314
  msgstr "Diese Seite"
315
 
316
+ #: counter-options.php:889
317
  #@ default
318
  msgid "Dashboard"
319
  msgstr ""
320
 
321
+ #: counter.php:342
322
  #@ cpd
323
  msgid "Reads per day"
324
  msgstr "Seitenaufrufe pro Tag"
334
  msgid "update next"
335
  msgstr "weiter aktualisieren"
336
 
337
+ #: counter-options.php:720
338
  #@ cpd
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - L&auml;nder"
341
 
342
+ #: counter-options.php:729
343
  #@ cpd
344
  msgid "Update old counter data"
345
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
346
 
347
+ #: counter-options.php:741
348
  #@ cpd
349
  msgid "Update GeoIP database"
350
  msgstr "Aktualisiere GeoIP Datenbank"
351
 
352
+ #: counter-options.php:736
353
  #@ cpd
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Neue Version von GeoIP.dat herunterladen."
356
 
357
+ #: counter-options.php:746
358
  #@ cpd
359
  msgid "More informations about GeoIP"
360
  msgstr "Mehr Informationen über GeoIP"
361
 
362
+ #: counter-core.php:793
363
  #@ cpd
364
  msgid "Reads per Country"
365
  msgstr "Seitenaufrufe pro Land"
379
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
381
 
382
+ #: counter-options.php:945
383
  #@ cpd
384
  msgid "Countries"
385
  msgstr "L&auml;nder"
386
 
387
+ #: counter-options.php:946
388
  #@ cpd
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
397
 
398
+ #: counter-options.php:429
399
  #: massbots.php:46
400
  #@ cpd
401
  msgid "Mass Bots"
402
  msgstr "Massen-Bots"
403
 
404
+ #: counter-options.php:433
405
  #, php-format
406
  #@ cpd
407
  msgid "Show all IPs with more than %s page views per day"
408
  msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
409
 
410
+ #: counter-options.php:434
411
+ #: counter-options.php:498
412
  #: notes.php:84
413
  #: userperspan.php:56
414
  #@ cpd
415
  msgid "show"
416
  msgstr "anzeigen"
417
 
418
+ #: counter-options.php:460
419
+ #: counter-options.php:476
420
+ #: counter-options.php:523
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
425
 
426
+ #: counter.php:958
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Sonstige"
434
  msgid "Front page displays"
435
  msgstr ""
436
 
437
+ #: counter-core.php:788
438
+ #: counter-options.php:950
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
+ #: counter-options.php:442
444
+ #: counter-options.php:506
445
  #@ cpd
446
  msgid "IP"
447
  msgstr "IP"
448
 
449
+ #: counter-options.php:443
450
+ #: counter-options.php:507
451
  #: notes.php:88
452
  #@ cpd
453
  #@ default
454
  msgid "Date"
455
  msgstr "Datum"
456
 
457
+ #: counter-options.php:444
458
+ #: counter-options.php:508
459
  #@ cpd
460
  msgid "Client"
461
  msgstr "Browser"
462
 
463
+ #: counter-options.php:445
464
+ #: counter-options.php:509
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Seitenaufrufe"
468
 
469
+ #: counter-options.php:981
470
  #@ cpd
471
  msgid "Start Values"
472
  msgstr "Startwerte"
473
 
474
+ #: counter-options.php:985
475
  #@ cpd
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
478
 
479
+ #: counter-options.php:989
480
  #@ cpd
481
  msgid "Start date"
482
  msgstr "Startdatum"
483
 
484
+ #: counter-options.php:990
485
  #@ cpd
486
  msgid "Your old Counter starts at?"
487
  msgstr "Dein alter Z&auml;hler begann am?"
488
 
489
+ #: counter-options.php:993
490
+ #: counter-options.php:997
491
  #@ cpd
492
  msgid "Start count"
493
  msgstr "Startz&auml;hlerstand"
494
 
495
+ #: counter-options.php:994
496
  #@ cpd
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
499
 
500
+ #: counter-options.php:811
501
  #@ cpd
502
  msgid "Support"
503
  msgstr "Kontakt"
504
 
505
+ #: counter-core.php:743
506
  #@ cpd
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Bug? Problem? Frage? Tipp? Lob?"
509
 
510
+ #: counter-core.php:744
511
  #, php-format
512
  #@ cpd
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
515
 
516
+ #: counter.php:888
517
  #@ default
518
  msgid "Show"
519
  msgstr ""
520
 
521
+ #: counter.php:1130
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr ""
525
 
526
+ #: counter-core.php:742
527
  #, php-format
528
  #@ cpd
529
  msgid "Time for Count per Day: <code>%s</code>."
530
  msgstr "Zeit bei Count per Day: <code>%s</code>"
531
 
532
+ #: counter-options.php:839
533
  #@ cpd
534
  msgid "until User Level"
535
  msgstr "bis Benutzerlevel"
536
 
537
+ #: counter-core.php:785
538
  #@ default
539
  msgid "Plugin"
540
  msgstr ""
541
 
542
+ #: counter.php:890
543
  #: notes.php:55
544
  #: notes.php:89
545
  #@ cpd
571
  msgid "edit"
572
  msgstr "&auml;ndern"
573
 
574
+ #: counter-options.php:998
575
  #@ cpd
576
  msgid "Add this value to \"Total reads\"."
577
  msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
578
 
579
+ #: counter.php:231
580
+ #: counter.php:1407
581
  #@ cpd
582
  msgid "Total reads"
583
  msgstr "Seitenaufrufe gesamt"
584
 
585
+ #: counter.php:232
586
+ #: counter.php:1408
587
  #@ cpd
588
  msgid "Reads today"
589
  msgstr "Seitenaufrufe heute"
590
 
591
+ #: counter.php:233
592
+ #: counter.php:1409
593
  #@ cpd
594
  msgid "Reads yesterday"
595
  msgstr "Seitenaufrufe gestern"
596
 
597
+ #: counter.php:433
598
+ #: counter.php:1249
599
  #@ cpd
600
  msgid "Map"
601
  msgstr "Weltkarte"
602
 
603
+ #: counter-options.php:858
604
  #@ cpd
605
  msgid "Anonymous IP"
606
  msgstr "Anonyme IP-Adresse"
607
 
608
+ #: counter-options.php:862
609
  #@ cpd
610
  msgid "Cache"
611
  msgstr "Cache"
612
 
613
+ #: counter-options.php:863
614
  #@ cpd
615
  msgid "I use a cache plugin. Count these visits with ajax."
616
  msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
617
 
618
+ #: counter-options.php:951
619
  #@ cpd
620
  msgid "Substring of the user agent, separated by comma"
621
  msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
622
 
623
+ #: counter-core.php:794
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Besucher pro Land"
627
 
628
+ #: counter-options.php:1035
629
  #@ cpd
630
  msgid "Debug mode"
631
  msgstr "Debug Modus"
632
 
633
+ #: counter-options.php:1037
634
  #@ cpd
635
  msgid "Show debug informations at the bottom of all pages."
636
  msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
655
  msgid "no data found"
656
  msgstr "keine passenden Daten gefunden"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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."
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Z&auml;hler"
667
 
668
+ #: counter-options.php:962
669
  #@ cpd
670
  msgid "Local URLs"
671
  msgstr "Lokale URLs"
672
 
673
+ #: counter-options.php:963
674
  #@ cpd
675
  msgid "Show local referrers too."
676
  msgstr "Zeige auch lokale Referrer."
677
 
678
+ #: counter-options.php:970
679
  #@ default
680
  msgid "Posts"
681
  msgstr ""
682
 
683
+ #: counter-options.php:970
684
  #@ default
685
  msgid "Pages"
686
  msgstr ""
687
 
688
+ #: counter.php:1139
689
  #@ default
690
  msgid "Category"
691
  msgstr ""
692
 
693
+ #: counter.php:1142
694
  #@ default
695
  msgid "Tag"
696
  msgstr ""
697
 
698
+ #: counter-core.php:745
699
  #@ default
700
  msgid "License"
701
  msgstr ""
702
 
703
+ #: counter-core.php:789
704
  #@ cpd
705
  msgid "Referrer"
706
  msgstr "Herkunft"
707
 
708
+ #: counter.php:1431
709
  #@ default
710
  msgid "Title"
711
  msgstr ""
712
 
713
+ #: counter-options.php:869
714
  #@ cpd
715
  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."
716
  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."
717
 
718
+ #: counter-options.php:866
719
  #@ cpd
720
  msgid "Clients and referrers"
721
  msgstr "Browser und Herkunft"
722
 
723
+ #: counter.php:234
724
+ #: counter.php:1410
725
  #@ cpd
726
  msgid "Reads last week"
727
  msgstr "Seitenaufrufe letzte Woche"
728
 
729
+ #: counter-core.php:780
730
+ #: counter.php:1411
731
  #@ cpd
732
  msgid "Reads per month"
733
  msgstr "Seitenaufrufe pro Monat"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Herkunft - Einträge"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Herkunft - Tage"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Besucher online"
760
 
761
+ #: counter-options.php:1005
762
  #@ cpd
763
  msgid "Stylesheet"
764
  msgstr "Stylesheet"
765
 
766
+ #: counter-options.php:1008
767
  #@ cpd
768
  msgid "NO Stylesheet in Frontend"
769
  msgstr "KEIN Stylesheet im Frontend"
770
 
771
+ #: counter-options.php:1009
772
  #@ cpd
773
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
774
  msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
775
 
776
+ #: counter-options.php:905
777
  #@ cpd
778
  msgid "Who can see it"
779
  msgstr "Wer darf es sehen"
780
 
781
+ #: counter-options.php:914
782
  #@ cpd
783
  msgid "custom"
784
  msgstr "benutzerdefiniert"
785
 
786
+ #: counter-options.php:916
787
  #@ cpd
788
  msgid "and higher are allowed to see the statistics page."
789
  msgstr "und höher haben Zugriff auf die Statistikseite."
790
 
791
+ #: counter-options.php:918
792
  #, php-format
793
  #@ cpd
794
  msgid "Set the %s capability %s a user need:"
795
  msgstr "Gibt die benötigte %s Rolle %s ein."
796
 
797
+ #: counter-core.php:232
798
  #, php-format
799
  #@ cpd
800
  msgid "\"Count per Day\" updated to version %s."
801
  msgstr "&quot;Count per Day&quot; aktualisiert auf Version %s."
802
 
803
+ #: counter-core.php:1062
804
  #@ cpd
805
  msgid "Backup failed! Cannot open file"
806
  msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
807
 
808
+ #: counter-core.php:1180
809
+ #: counter-core.php:1188
 
 
 
 
 
 
810
  #, php-format
811
  #@ cpd
812
  msgid "Backup of counter table saved in %s."
813
  msgstr "Die Zähler-Tabelle wurde in %s gesichert."
814
 
815
+ #: counter-core.php:1182
816
+ #: counter-core.php:1190
817
  #, php-format
818
  #@ cpd
819
  msgid "Backup of counter options and collection saved in %s."
820
  msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
821
 
822
+ #: counter-options.php:174
823
  #@ cpd
824
  msgid "Collection in progress..."
825
  msgstr "Zusammenfassung erfolgt ..."
826
 
827
+ #: counter-options.php:268
828
  #@ cpd
829
  msgid "Get Visitors per Post..."
830
  msgstr "Besucher pro Artikel bearbeiten..."
831
 
832
+ #: counter-options.php:313
 
 
 
 
 
833
  #, php-format
834
  #@ cpd
835
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
836
  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)."
837
 
838
+ #: counter-options.php:322
839
  #@ cpd
840
  msgid "Installation of \"Count per Day\" checked"
841
  msgstr "Installation von &quot;Count per Day&quot; überpr&uuml;ft"
842
 
843
+ #: counter-options.php:408
 
844
  #@ default
845
  msgid "Tools"
846
  msgstr ""
847
 
848
+ #: counter-options.php:871
849
  #@ cpd
850
  msgid "Save URL only, no query string."
851
  msgstr "Speichere nur die URL, keinen Query-String."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Backup"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Einträge pro Durchgang"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Wie viele Eintr&auml;ge sollen pro Durchgang bearbeitet werden? Standard: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  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."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Erstelle eine Sicherungskopie der Z&auml;hler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Datenbank sichern"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Alte Daten zusammenfassen"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "Die aktuelle Gr&ouml;&szlig;e der Z&auml;hler-Tabelle %s ist %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "Momentan enth&auml;lt die Zusammenfassung Daten bis %s."
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugef&uuml;gt."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  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."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Alle zusammengefassten Daten bis %s werden gel&ouml;scht."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Behalte die Eintr&auml;ge der letzten %s vollen Monate plus des aktuellen Monats in der Z&auml;hler-Tabelle."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "ReAktivierung"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "ReAktiviere das Plugin"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Besucher"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "meistbesuchter Tag"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "per Drag &amp; Drop sortieren"
962
 
963
+ #: counter-core.php:1176
964
  #@ cpd
965
  msgid "Your can download the backup files here and now."
966
  msgstr "Du kannst die Sicherungen nur hier und jetzt herunterladen."
967
 
968
+ #: counter-options.php:567
969
  #@ cpd
970
  msgid "Download only"
971
  msgstr "nur zum Download anbieten, nicht speichern"
972
 
973
+ #: counter-options.php:617
974
  #@ default
975
  msgid "Delete"
976
  msgstr ""
977
 
978
+ #: counter-options.php:618
979
  #, php-format
980
  #@ cpd
981
  msgid "Delete the backup file %s ?"
982
  msgstr "Sicherung %s l&ouml;schen?"
983
 
984
+ #: counter-core.php:784
985
+ #: counter-options.php:954
986
+ #: counter-options.php:958
987
  #@ cpd
988
  msgid "Search strings"
989
  msgstr "Suchw&ouml;rter"
990
 
991
+ #: counter-core.php:1246
992
  #@ cpd
993
  msgid "Error while reading backup file!"
994
  msgstr "Fehler beim Lesen der Sicherungsdatei!"
995
 
996
+ #: counter-core.php:1250
997
  #, php-format
998
  #@ cpd
999
  msgid "The backup was added to counter table %s."
1000
  msgstr "Die Sicherung wurde zur Tabelle %s hinzugef&uuml;gt."
1001
 
1002
+ #: counter-core.php:1252
1003
  #, php-format
1004
  #@ cpd
1005
  msgid "The counter table %s was restored from backup."
1006
  msgstr "Die Z&auml;hlertabelle %s wurde wiederhergestellt."
1007
 
1008
+ #: counter-core.php:1269
1009
  #@ cpd
1010
  msgid "Options restored from backup."
1011
  msgstr "Einstellungen wiederhergestellt."
1012
 
1013
+ #: counter-options.php:599
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr "Einstellungen und Zusammenfassung"
1017
 
1018
+ #: counter-options.php:604
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr "Z&auml;hlertabelle %s"
1023
 
1024
+ #: counter-options.php:611
1025
  #, php-format
1026
  #@ cpd
1027
  msgid "Add data from the backup file %s to existing counter table?"
1028
  msgstr "Die Daten der Sicherung zur vorhandenen Z&auml;hlertabelle %s hinzuf&uuml;gen?"
1029
 
1030
+ #: counter-options.php:615
1031
  #, php-format
1032
  #@ cpd
1033
  msgid "Restore data from the backup file %s ?"
1034
  msgstr "Daten aus der Sicherung %s wiederherstellen?"
1035
 
1036
+ #: counter-options.php:615
1037
  #@ default
1038
  msgid "Restore"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:624
1042
  #@ cpd
1043
  msgid "add backup to current counter table"
1044
  msgstr "Sicherung zu aktuellen Daten hinzuf&uuml;gen"
1045
 
1046
+ #: counter-options.php:625
1047
  #@ cpd
1048
  msgid "replace current counter table with with backup"
1049
  msgstr "aktuelle Daten durch Sicherung ersetzen"
1050
 
1051
+ #: counter-options.php:626
1052
  #@ cpd
1053
  msgid "delete backup file"
1054
  msgstr "Sicherung l&ouml;schen"
1055
 
1056
+ #: counter.php:1193
1057
  #, php-format
1058
  #@ cpd
1059
  msgid "The %s most searched strings:"
1060
  msgstr "Die %s am meisten gesuchten W&ouml;rter:"
1061
 
1062
+ #: counter.php:1202
1063
  #, php-format
1064
  #@ cpd
1065
  msgid "The search strings of the last %s days:"
1066
  msgstr "Die Suchw&ouml;rter der letzten %s Tage:"
1067
 
1068
+ #: counter-options.php:337
1069
  #@ cpd
1070
  msgid "Old search strings deleted"
1071
  msgstr "Alte Suchw&ouml;rter wurden gel&ouml;scht."
1072
 
1073
+ #: counter-options.php:651
1074
  #, php-format
1075
  #@ cpd
1076
  msgid "Delete search strings older than %s days."
1077
  msgstr "L&ouml;sche Suchw&ouml;rter die älter als %s Tage sind!"
1078
 
1079
+ #: counter-options.php:655
1080
  #@ cpd
1081
  msgid "Delete search strings"
1082
  msgstr "L&ouml;sche Suchw&ouml;rter"
1083
 
1084
+ #: counter-options.php:611
1085
  #@ cpd
1086
  msgid "Add"
1087
  msgstr "Hinzuf&uuml;gen"
1088
 
1089
+ #: counter-options.php:352
1090
  #@ cpd
1091
  msgid "Clients and referers deleted"
1092
  msgstr "Browser und Herkunftsdaten gelöscht"
1093
 
1094
+ #: counter-options.php:662
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1098
  msgstr "Lösche Browser und Herkunftsdaten bei Einträgen die älter als %s Tage sind um die Datenbank zu verkleinern."
1099
 
1100
+ #: counter-options.php:666
1101
  #@ cpd
1102
  msgid "Delete clients and referers"
1103
  msgstr "Browser und Herkunftsdaten löschen"
1104
 
1105
+ #: counter.php:1145
1106
  #@ default
1107
  msgid "Front page"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:1034
1116
+ #@ cpd
1117
+ msgid "Download the export file:"
1118
+ msgstr "Export-Datei herunterladen:"
1119
+
1120
+ #: counter-core.php:1089
1121
+ #, php-format
1122
+ #@ cpd
1123
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1124
+ msgstr "Backup von %s Datensätzen. Jeder Punkt entspricht %s Einträgen."
1125
+
1126
+ #: counter-options.php:289
1127
+ #@ cpd
1128
+ msgid "Deleting old data..."
1129
+ msgstr "Alte Daten werden gelöscht..."
1130
+
1131
+ #: counter-options.php:493
1132
+ #@ cpd
1133
+ msgid "Most Industrious Visitors"
1134
+ msgstr "Die fleißigsten Besucher"
1135
+
1136
+ #: counter-options.php:497
1137
+ #, php-format
1138
+ #@ cpd
1139
+ msgid "Show the %s most industrious visitors of the last %s days"
1140
+ msgstr "Zeige die %s fleißigsten Besucher der letzten %s Tage"
1141
+
1142
+ #: counter-options.php:544
1143
+ #@ cpd
1144
+ msgid "Export"
1145
+ msgstr "Exportieren"
1146
+
1147
+ #: counter-options.php:548
1148
+ #, php-format
1149
+ #@ cpd
1150
+ msgid "Export the last %s days as CSV-File"
1151
+ msgstr "Exportiere die Einträge der letzten %s Tage als CSV-Datei"
1152
+
1153
+ #: counter-options.php:552
1154
+ #@ cpd
1155
+ msgid "Export entries"
1156
+ msgstr "Datensätze exportieren"
1157
+
1158
+ #: counter-options.php:875
1159
+ #@ cpd
1160
+ msgid "Post types"
1161
+ msgstr "Beitragstypen"
1162
+
1163
+ #: counter-options.php:878
1164
+ #@ cpd
1165
+ msgid "Only count these post types. Leave empty to count them all."
1166
+ msgstr "Nur diese Beitragstypen zählen. Leer lassen um alle zu zählen."
1167
+
1168
+ #: counter-options.php:879
1169
+ #, php-format
1170
+ #@ cpd
1171
+ msgid "Current post types: %s"
1172
+ msgstr "Aktuelle Beitragstypen: %s"
1173
+
1174
+ #: counter.php:243
1175
+ #@ cpd
1176
+ msgid "Since"
1177
+ msgstr "Seit"
1178
+
1179
+ #: counter.php:1502
1180
+ #@ cpd
1181
+ msgid "Count per Day - Popular Posts"
1182
+ msgstr "Count per Day - Populäre Beiträge"
1183
+
1184
+ #: counter.php:1504
1185
+ #@ cpd
1186
+ msgid "List of Popular Posts"
1187
+ msgstr "Liste der populärsten Beiträge"
1188
+
1189
+ #: counter.php:1534
1190
+ #@ cpd
1191
+ msgid "Popular Posts"
1192
+ msgstr "Populäre Beiträge"
1193
+
1194
+ #: counter.php:1542
1195
+ #@ cpd
1196
+ msgid "Title:"
1197
+ msgstr "Titel:"
1198
+
1199
+ #: counter.php:1546
1200
+ #@ cpd
1201
+ msgid "Days:"
1202
+ msgstr "Tage:"
1203
+
1204
+ #: counter.php:1550
1205
+ #@ cpd
1206
+ msgid "Limit:"
1207
+ msgstr "Anzahl:"
1208
+
1209
+ #: counter.php:1554
1210
+ #@ cpd
1211
+ msgid "Show header:"
1212
+ msgstr "Zeige Einleitung:"
1213
+
1214
+ #: counter.php:1558
1215
+ #@ cpd
1216
+ msgid "Show counters:"
1217
+ msgstr "Zeige Anzahl:"
1218
+
1219
+ #: counter-core.php:986
1220
+ #@ cpd
1221
+ msgid "Export failed! Cannot open file."
1222
+ msgstr "Export fehlgeschlagen! Auf die Datei kann nicht zugegriffen werden."
1223
+
locale/cpd-es_ES.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:17:51+0000\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"
@@ -25,302 +25,300 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Las opciones han sido guardadas"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Base de datos borrada. %s filas borradas."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALA Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "La tabla %s ha sido borrada"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Las opciones han sido canceladas"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstala"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Hacer click aquí"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Tiempo online"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usuarios conectados"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar también"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto contador"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a ignorar"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Actualiza las opciones"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Borrar la base de datos"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATENCIÓN"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Estas tablas (con TODOS los datos) serán borradas."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sí"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estadísticas"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes conectados"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Hoy"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Ayer"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "La semana anterior"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "El contador comenzó el"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Visitantes por día"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Visitantes por mes"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Visitantes por entrada"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "El contador ha sido reinicializado."
227
 
228
- #: counter-options.php:835
229
- #: counter-options.php:839
230
  #@ cpd
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Número de entradas que quieres ver en el escritorio"
233
 
234
- #: counter-options.php:838
235
  #@ cpd
236
  msgid "Latest Counts - Posts"
237
  msgstr "Últimos conteos - Entradas"
238
 
239
- #: counter-options.php:842
240
  #@ cpd
241
  msgid "Latest Counts - Days"
242
  msgstr "Últimos conteos - Días"
243
 
244
- #: counter-options.php:843
245
- #: counter-options.php:847
246
- #: counter-options.php:869
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "¿Cuántos días hacia atrás quieres ver?"
250
 
251
- #: counter-options.php:883
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "Mostrar en las listas"
255
 
256
- #: counter-options.php:884
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
260
 
261
- #: counter-options.php:686
262
- #: counter-options.php:696
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Reinicia el contador"
266
 
267
- #: counter-options.php:689
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
271
 
272
- #: counter.php:756
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "Las %s entradas más visitadas en los últimos %s días:"
277
 
278
- #: counter-core.php:652
279
- #: counter-options.php:401
280
- #: counter-options.php:740
281
  #@ default
282
  msgid "Settings"
283
  msgstr "Configuración"
284
 
285
- #: counter-core.php:1464
286
- #: counter-options.php:789
287
- #: counter.php:222
288
- #: counter.php:974
289
  #@ cpd
290
  msgid "Reads"
291
  msgstr "Visitas"
292
 
293
- #: counter-core.php:793
294
  #@ cpd
295
  msgid "Latest Counts"
296
  msgstr "Últimos conteos"
297
 
298
- #: counter-options.php:846
299
  #@ cpd
300
  msgid "Chart - Days"
301
  msgstr "Gráfica - Días"
302
 
303
- #: counter-options.php:850
304
  #@ cpd
305
  msgid "Chart - Height"
306
  msgstr "Gráfica - Altura"
307
 
308
- #: counter-options.php:851
309
  #@ cpd
310
  msgid "Height of the biggest bar"
311
  msgstr "Altura de la categoría mayor"
312
 
313
- #: counter.php:1355
314
  #@ cpd
315
  msgid "This post"
316
  msgstr "Este artículo"
317
 
318
- #: counter-options.php:799
319
  #@ default
320
  msgid "Dashboard"
321
  msgstr "Escritorio"
322
 
323
- #: counter.php:327
324
  #@ cpd
325
  msgid "Reads per day"
326
  msgstr "Lecturas por día"
@@ -336,32 +334,32 @@ msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
336
  msgid "update next"
337
  msgstr "actualiza el próximo"
338
 
339
- #: counter-options.php:636
340
  #@ cpd
341
  msgid "GeoIP - Countries"
342
  msgstr "GeoIP - Países"
343
 
344
- #: counter-options.php:645
345
  #@ cpd
346
  msgid "Update old counter data"
347
  msgstr "Actualiza los datos antiguos"
348
 
349
- #: counter-options.php:657
350
  #@ cpd
351
  msgid "Update GeoIP database"
352
  msgstr "Actualiza la base de datos de GeoIP"
353
 
354
- #: counter-options.php:652
355
  #@ cpd
356
  msgid "Download a new version of GeoIP.dat file."
357
  msgstr "Decarga la nueva versión del archivo GeoIP.dat."
358
 
359
- #: counter-options.php:662
360
  #@ cpd
361
  msgid "More informations about GeoIP"
362
  msgstr "Más información sobre GeoIP"
363
 
364
- #: counter-core.php:804
365
  #@ cpd
366
  msgid "Reads per Country"
367
  msgstr "Lecturas por país"
@@ -381,12 +379,12 @@ msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos d
381
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
382
  msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
383
 
384
- #: counter-options.php:855
385
  #@ cpd
386
  msgid "Countries"
387
  msgstr "Países"
388
 
389
- #: counter-options.php:856
390
  #@ cpd
391
  msgid "How many countries do you want to see on dashboard page?"
392
  msgstr "¿Cuántos países desea ver en el escritorio?"
@@ -397,33 +395,35 @@ msgstr "¿Cuántos países desea ver en el escritorio?"
397
  msgid "Mass Bots cleaned. %s counts deleted."
398
  msgstr "Robots borrados. %s conteos borrados."
399
 
400
- #: counter-options.php:417
401
  #: massbots.php:46
402
  #@ cpd
403
  msgid "Mass Bots"
404
  msgstr "Robots"
405
 
406
- #: counter-options.php:421
407
  #, php-format
408
  #@ cpd
409
  msgid "Show all IPs with more than %s page views per day"
410
  msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
411
 
412
- #: counter-options.php:422
 
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "muestra"
418
 
419
- #: counter-options.php:448
420
- #: counter-options.php:464
 
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Borra estos %s conteos"
425
 
426
- #: counter.php:913
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Otro"
@@ -434,108 +434,112 @@ msgstr "Otro"
434
  msgid "Front page displays"
435
  msgstr "Página inicial mostradas"
436
 
437
- #: counter-core.php:799
438
- #: counter-options.php:860
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Navegador"
442
 
443
- #: counter-options.php:430
 
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
- #: counter-options.php:431
 
449
  #: notes.php:88
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Fecha"
454
 
455
- #: counter-options.php:432
 
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Cliente"
459
 
460
- #: counter-options.php:433
 
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Vistas"
464
 
465
- #: counter-options.php:891
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Valores de inicio"
469
 
470
- #: counter-options.php:895
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:899
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Fecha de inicio"
479
 
480
- #: counter-options.php:900
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Su antiguo contador comienza el"
484
 
485
- #: counter-options.php:903
486
- #: counter-options.php:907
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Iniciar el conteo"
490
 
491
- #: counter-options.php:904
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:727
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Soporte"
500
 
501
- #: counter-core.php:754
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
505
 
506
- #: counter-core.php:755
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:873
513
  #@ default
514
  msgid "Show"
515
  msgstr "Muestra"
516
 
517
- #: counter.php:1085
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr "Modifica entrada"
521
 
522
- #: counter-core.php:753
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:759
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "hasta el Nivel de Usuario"
532
 
533
- #: counter-core.php:796
534
  #@ default
535
  msgid "Plugin"
536
  msgstr "Plugin"
537
 
538
- #: counter.php:875
539
  #: notes.php:55
540
  #: notes.php:89
541
  #@ cpd
@@ -567,66 +571,66 @@ msgstr "borra"
567
  msgid "edit"
568
  msgstr "modifica"
569
 
570
- #: counter-options.php:908
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Añade este valor a \"Total de lecturas\"."
574
 
575
- #: counter.php:218
576
- #: counter.php:1356
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Total de lecturas"
580
 
581
- #: counter.php:219
582
- #: counter.php:1357
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Lecturas hoy"
586
 
587
- #: counter.php:220
588
- #: counter.php:1358
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Lecturas ayer"
592
 
593
- #: counter.php:418
594
- #: counter.php:1198
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Mapa"
598
 
599
- #: counter-options.php:778
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "IP anónimo"
603
 
604
- #: counter-options.php:782
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
- #: counter-options.php:783
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:861
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:945
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Modo debug"
623
 
624
- #: counter-options.php:947
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:805
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Visitas por país"
@@ -651,472 +655,565 @@ msgstr "ID entrada"
651
  msgid "no data found"
652
  msgstr "no se han encontrado datos"
653
 
654
- #: counter-options.php:639
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:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr ""
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr ""
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr ""
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr ""
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr ""
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr ""
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr ""
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr ""
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr ""
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr ""
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr ""
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr ""
725
 
726
- #: counter.php:1380
727
  #@ default
728
  msgid "Title"
729
  msgstr ""
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr ""
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr ""
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr ""
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr ""
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr ""
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr ""
767
 
768
- #: counter-core.php:1027
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:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr ""
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr ""
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr ""
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr ""
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr ""
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr ""
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr ""
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr ""
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr ""
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr ""
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr ""
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr ""
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr ""
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr ""
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr ""
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr ""
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr ""
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr ""
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr ""
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr ""
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr ""
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr ""
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr ""
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr ""
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr ""
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr ""
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr ""
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr ""
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr ""
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr ""
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr ""
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr ""
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr ""
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr ""
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr ""
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr ""
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:27+0000\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"
25
  msgid "Options updated"
26
  msgstr "Las opciones han sido guardadas"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Base de datos borrada. %s filas borradas."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALA Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "La tabla %s ha sido borrada"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Las opciones han sido canceladas"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstala"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Hacer click aquí"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Tiempo online"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usuarios conectados"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar también"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto contador"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a ignorar"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Actualiza las opciones"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Borrar la base de datos"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATENCIÓN"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Estas tablas (con TODOS los datos) serán borradas."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sí"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estadísticas"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes conectados"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Hoy"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Ayer"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "La semana anterior"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "El contador comenzó el"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visitantes por día"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitantes por mes"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitantes por entrada"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "El contador ha sido reinicializado."
226
 
227
+ #: counter-options.php:925
228
+ #: counter-options.php:929
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:928
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Últimos conteos - Entradas"
237
 
238
+ #: counter-options.php:932
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Últimos conteos - Días"
242
 
243
+ #: counter-options.php:933
244
+ #: counter-options.php:937
245
+ #: counter-options.php:959
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:973
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Mostrar en las listas"
254
 
255
+ #: counter-options.php:974
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:770
261
+ #: counter-options.php:780
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Reinicia el contador"
265
 
266
+ #: counter-options.php:773
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:771
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:641
278
+ #: counter-options.php:409
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Configuración"
282
 
283
+ #: counter-core.php:1526
284
+ #: counter-options.php:869
285
+ #: counter.php:235
286
+ #: counter.php:1019
287
  #@ cpd
288
  msgid "Reads"
289
  msgstr "Visitas"
290
 
291
+ #: counter-core.php:782
292
  #@ cpd
293
  msgid "Latest Counts"
294
  msgstr "Últimos conteos"
295
 
296
+ #: counter-options.php:936
297
  #@ cpd
298
  msgid "Chart - Days"
299
  msgstr "Gráfica - Días"
300
 
301
+ #: counter-options.php:940
302
  #@ cpd
303
  msgid "Chart - Height"
304
  msgstr "Gráfica - Altura"
305
 
306
+ #: counter-options.php:941
307
  #@ cpd
308
  msgid "Height of the biggest bar"
309
  msgstr "Altura de la categoría mayor"
310
 
311
+ #: counter.php:1406
312
  #@ cpd
313
  msgid "This post"
314
  msgstr "Este artículo"
315
 
316
+ #: counter-options.php:889
317
  #@ default
318
  msgid "Dashboard"
319
  msgstr "Escritorio"
320
 
321
+ #: counter.php:342
322
  #@ cpd
323
  msgid "Reads per day"
324
  msgstr "Lecturas por día"
334
  msgid "update next"
335
  msgstr "actualiza el próximo"
336
 
337
+ #: counter-options.php:720
338
  #@ cpd
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Países"
341
 
342
+ #: counter-options.php:729
343
  #@ cpd
344
  msgid "Update old counter data"
345
  msgstr "Actualiza los datos antiguos"
346
 
347
+ #: counter-options.php:741
348
  #@ cpd
349
  msgid "Update GeoIP database"
350
  msgstr "Actualiza la base de datos de GeoIP"
351
 
352
+ #: counter-options.php:736
353
  #@ cpd
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Decarga la nueva versión del archivo GeoIP.dat."
356
 
357
+ #: counter-options.php:746
358
  #@ cpd
359
  msgid "More informations about GeoIP"
360
  msgstr "Más información sobre GeoIP"
361
 
362
+ #: counter-core.php:793
363
  #@ cpd
364
  msgid "Reads per Country"
365
  msgstr "Lecturas por país"
379
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
  msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
381
 
382
+ #: counter-options.php:945
383
  #@ cpd
384
  msgid "Countries"
385
  msgstr "Países"
386
 
387
+ #: counter-options.php:946
388
  #@ cpd
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "¿Cuántos países desea ver en el escritorio?"
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Robots borrados. %s conteos borrados."
397
 
398
+ #: counter-options.php:429
399
  #: massbots.php:46
400
  #@ cpd
401
  msgid "Mass Bots"
402
  msgstr "Robots"
403
 
404
+ #: counter-options.php:433
405
  #, php-format
406
  #@ cpd
407
  msgid "Show all IPs with more than %s page views per day"
408
  msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
409
 
410
+ #: counter-options.php:434
411
+ #: counter-options.php:498
412
  #: notes.php:84
413
  #: userperspan.php:56
414
  #@ cpd
415
  msgid "show"
416
  msgstr "muestra"
417
 
418
+ #: counter-options.php:460
419
+ #: counter-options.php:476
420
+ #: counter-options.php:523
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Borra estos %s conteos"
425
 
426
+ #: counter.php:958
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Otro"
434
  msgid "Front page displays"
435
  msgstr "Página inicial mostradas"
436
 
437
+ #: counter-core.php:788
438
+ #: counter-options.php:950
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Navegador"
442
 
443
+ #: counter-options.php:442
444
+ #: counter-options.php:506
445
  #@ cpd
446
  msgid "IP"
447
  msgstr "IP"
448
 
449
+ #: counter-options.php:443
450
+ #: counter-options.php:507
451
  #: notes.php:88
452
  #@ cpd
453
  #@ default
454
  msgid "Date"
455
  msgstr "Fecha"
456
 
457
+ #: counter-options.php:444
458
+ #: counter-options.php:508
459
  #@ cpd
460
  msgid "Client"
461
  msgstr "Cliente"
462
 
463
+ #: counter-options.php:445
464
+ #: counter-options.php:509
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Vistas"
468
 
469
+ #: counter-options.php:981
470
  #@ cpd
471
  msgid "Start Values"
472
  msgstr "Valores de inicio"
473
 
474
+ #: counter-options.php:985
475
  #@ cpd
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
478
 
479
+ #: counter-options.php:989
480
  #@ cpd
481
  msgid "Start date"
482
  msgstr "Fecha de inicio"
483
 
484
+ #: counter-options.php:990
485
  #@ cpd
486
  msgid "Your old Counter starts at?"
487
  msgstr "Su antiguo contador comienza el"
488
 
489
+ #: counter-options.php:993
490
+ #: counter-options.php:997
491
  #@ cpd
492
  msgid "Start count"
493
  msgstr "Iniciar el conteo"
494
 
495
+ #: counter-options.php:994
496
  #@ cpd
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Añadir este valor al \"Total de visitas\"."
499
 
500
+ #: counter-options.php:811
501
  #@ cpd
502
  msgid "Support"
503
  msgstr "Soporte"
504
 
505
+ #: counter-core.php:743
506
  #@ cpd
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
509
 
510
+ #: counter-core.php:744
511
  #, php-format
512
  #@ cpd
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
515
 
516
+ #: counter.php:888
517
  #@ default
518
  msgid "Show"
519
  msgstr "Muestra"
520
 
521
+ #: counter.php:1130
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Modifica entrada"
525
 
526
+ #: counter-core.php:742
527
  #, php-format
528
  #@ cpd
529
  msgid "Time for Count per Day: <code>%s</code>."
530
  msgstr "Huso horario para Count per Day: <code>%s</code>."
531
 
532
+ #: counter-options.php:839
533
  #@ cpd
534
  msgid "until User Level"
535
  msgstr "hasta el Nivel de Usuario"
536
 
537
+ #: counter-core.php:785
538
  #@ default
539
  msgid "Plugin"
540
  msgstr "Plugin"
541
 
542
+ #: counter.php:890
543
  #: notes.php:55
544
  #: notes.php:89
545
  #@ cpd
571
  msgid "edit"
572
  msgstr "modifica"
573
 
574
+ #: counter-options.php:998
575
  #@ cpd
576
  msgid "Add this value to \"Total reads\"."
577
  msgstr "Añade este valor a \"Total de lecturas\"."
578
 
579
+ #: counter.php:231
580
+ #: counter.php:1407
581
  #@ cpd
582
  msgid "Total reads"
583
  msgstr "Total de lecturas"
584
 
585
+ #: counter.php:232
586
+ #: counter.php:1408
587
  #@ cpd
588
  msgid "Reads today"
589
  msgstr "Lecturas hoy"
590
 
591
+ #: counter.php:233
592
+ #: counter.php:1409
593
  #@ cpd
594
  msgid "Reads yesterday"
595
  msgstr "Lecturas ayer"
596
 
597
+ #: counter.php:433
598
+ #: counter.php:1249
599
  #@ cpd
600
  msgid "Map"
601
  msgstr "Mapa"
602
 
603
+ #: counter-options.php:858
604
  #@ cpd
605
  msgid "Anonymous IP"
606
  msgstr "IP anónimo"
607
 
608
+ #: counter-options.php:862
609
  #@ cpd
610
  msgid "Cache"
611
  msgstr "Cache"
612
 
613
+ #: counter-options.php:863
614
  #@ cpd
615
  msgid "I use a cache plugin. Count these visits with ajax."
616
  msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
617
 
618
+ #: counter-options.php:951
619
  #@ cpd
620
  msgid "Substring of the user agent, separated by comma"
621
  msgstr "Subcadena del user agent, separados por comas"
622
 
623
+ #: counter-options.php:1035
624
  #@ cpd
625
  msgid "Debug mode"
626
  msgstr "Modo debug"
627
 
628
+ #: counter-options.php:1037
629
  #@ cpd
630
  msgid "Show debug informations at the bottom of all pages."
631
  msgstr "Muestra información de debug al final de todas las páginas."
632
 
633
+ #: counter-core.php:794
634
  #@ cpd
635
  msgid "Visitors per Country"
636
  msgstr "Visitas por país"
655
  msgid "no data found"
656
  msgstr "no se han encontrado datos"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr ""
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr ""
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr ""
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr ""
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr ""
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr ""
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr ""
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr ""
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr ""
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr ""
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr ""
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr ""
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr ""
729
 
730
+ #: counter.php:1431
731
  #@ default
732
  msgid "Title"
733
  msgstr ""
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr ""
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr ""
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr ""
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr ""
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr ""
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr ""
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr ""
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr ""
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr ""
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr ""
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr ""
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr ""
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr ""
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr ""
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr ""
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr ""
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr ""
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr ""
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr ""
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr ""
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr ""
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr ""
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr ""
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr ""
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr ""
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr ""
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr ""
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr ""
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr ""
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr ""
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr ""
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr ""
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr ""
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr ""
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr ""
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr ""
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr ""
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr ""
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr ""
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr ""
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr ""
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr ""
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-fa_IR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:17:56+0000\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"
@@ -25,297 +25,295 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "تنظیمات بروز شد"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "بانک اطلاعات پاک شد. %s سطر پاک شد."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "حذف Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "جدول %s حذف شد"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "تنظیمات حذف شد"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "حذف نصب"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "اینجا کلیک کنید"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "به اتمام نصب و غیرفعالسازی \"Count per Day\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "زمان آنلاین"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "ثانیه برای شمارنده آنلاین. برای \"بازدیدکنندگان آنلاین\" در صفحه ی پیشخوان مورد استفاده قرار می گیرد."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr ""
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr ""
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "شمارش خودکار"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "شمارش خودکار تک نوشته ها و صفحات، تغییری بر روی پوسته مورد نیاز نیست."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "نادیده گرفتن ربوتها"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "بروزرسانی تنظیمات"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "پاک کردن بانک اطلاعات"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  msgstr "شما می توانید جدول شمارنده را طبق \"spam data\" پاک کنید.<br />اگر شما رباتهای برتر قدیمی را اضافه کرده اید، \"spam data\" آنها را در پایگاه داده نگه می دارد.<br />در اینجا شما می توانید فیلتر ربات را دوباره اجرا و بازدید رباتها را حذف کنید."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "اگر شما فقط \"Count per Day\" را غیرفعال کنید، جداول در پایگاه داده حفظ خواهد شد."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "در اینجا شما می توانید جداول \"Count per Day\" را حذف و غیرفعال کنید."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "هشدار"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "این جداول (با تمام اطلاعات شمارنده) حذف خواهد شد."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "اگر \"Count per Day\" دوباره نصب شود، شمارشگر 0 می شود."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "بله"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "شما مطمئن هستید که میخواهید Count per Day ا غیرفعال و اطلاعات آن را پاک کنید؟"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "آمار"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "تمام بازدیدکنندگان"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "بازدیدکنندگان حاضر"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "بازدیدکنندگان امروز"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "بازدیدکنندگان دیروز"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "بازدیدکنندگان هفته"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "آغاز شمارش در"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "بازدیدکننده در روز"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "بازدیدکننده در ماه"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "بازدیدکننده نوشته"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "شمارش تنظیم شد."
227
 
228
- #: counter-options.php:799
229
  #@ default
230
  msgid "Dashboard"
231
  msgstr "پیشخوان"
232
 
233
- #: counter-options.php:835
234
- #: counter-options.php:839
235
  #@ cpd
236
  msgid "How many posts do you want to see on dashboard page?"
237
  msgstr "میخواهید چه تعداد از نوشته ها را در پیشخوان خود مشاهده کنید؟"
238
 
239
- #: counter-options.php:838
240
  #@ cpd
241
  msgid "Latest Counts - Posts"
242
  msgstr "آخرین شمارش - نوشته ها"
243
 
244
- #: counter-options.php:842
245
  #@ cpd
246
  msgid "Latest Counts - Days"
247
  msgstr "آخرین شمارش - روزها"
248
 
249
- #: counter-options.php:843
250
- #: counter-options.php:847
251
- #: counter-options.php:869
252
  #@ cpd
253
  msgid "How many days do you want look back?"
254
  msgstr "میخواهید اطلاعات چند روز قبل را مشاهده کنید؟"
255
 
256
- #: counter-options.php:846
257
  #@ cpd
258
  msgid "Chart - Days"
259
  msgstr "نمودار - روزها"
260
 
261
- #: counter-options.php:850
262
  #@ cpd
263
  msgid "Chart - Height"
264
  msgstr "نمودار - ارتفاع"
265
 
266
- #: counter-options.php:851
267
  #@ cpd
268
  msgid "Height of the biggest bar"
269
  msgstr "ارتفاع از بزرگترین نوار"
270
 
271
- #: counter-options.php:883
272
  #@ cpd
273
  msgid "Show in lists"
274
  msgstr "نمایش در لیستها"
275
 
276
- #: counter-options.php:884
277
  #@ cpd
278
  msgid "Show \"Reads per Post\" in a new column in post management views."
279
  msgstr "نمایش شمارنده ی هر نوشته در در یک ستون جدید در قسمت نوشته ها"
280
 
281
- #: counter-options.php:686
282
- #: counter-options.php:696
283
  #@ cpd
284
  msgid "Reset the counter"
285
  msgstr "تنظیم مجدد شمارنده"
286
 
287
- #: counter-options.php:689
288
  #@ cpd
289
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
  msgstr "شما می توانید شمارنده را با استفاده از جدول خالی تنظیم مجدد کنید. همه به 0!<br />اگر نیازی به اطلاعات فعلی دارید، پشتیبان تهیه کنید!"
291
 
292
- #: counter.php:756
293
  #, php-format
294
  #@ cpd
295
  msgid "The %s most visited posts in last %s days:"
296
  msgstr "%s پربازدیدترین نوشته در %s روز گذشته:"
297
 
298
- #: counter-core.php:652
299
- #: counter-options.php:401
300
- #: counter-options.php:740
301
  #@ default
302
  msgid "Settings"
303
  msgstr "تنظیمات"
304
 
305
- #: counter.php:327
306
  #@ cpd
307
  msgid "Reads per day"
308
  msgstr "خوانده شده در روز"
309
 
310
- #: counter-core.php:1464
311
- #: counter-options.php:789
312
- #: counter.php:222
313
- #: counter.php:974
314
  #@ cpd
315
  msgid "Reads"
316
  msgstr "خوانده شده در"
317
 
318
- #: counter.php:1355
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "این نوشته"
@@ -337,188 +335,194 @@ msgstr "بروزرسانی بعدی"
337
  msgid "Mass Bots cleaned. %s counts deleted."
338
  msgstr "انبوه رباتها پاک شده اند. %s شماره حذف شده است."
339
 
340
- #: counter-options.php:759
341
  #@ cpd
342
  msgid "until User Level"
343
  msgstr ""
344
 
345
- #: counter-options.php:778
346
  #@ cpd
347
  msgid "Anonymous IP"
348
  msgstr "آی پی ناشناس"
349
 
350
- #: counter-options.php:855
351
  #@ cpd
352
  msgid "Countries"
353
  msgstr "کشورها"
354
 
355
- #: counter-options.php:856
356
  #@ cpd
357
  msgid "How many countries do you want to see on dashboard page?"
358
  msgstr "میخواهید چه تعداد از کشورها را در صفحه ی پیشخوان خود مشاهده کنید؟"
359
 
360
- #: counter-options.php:891
361
  #@ cpd
362
  msgid "Start Values"
363
  msgstr "شروع مقادیر"
364
 
365
- #: counter-options.php:895
366
  #@ cpd
367
  msgid "Here you can change the date of first count and add a start count."
368
  msgstr "شما در اینجا می توانید تاریخ شروع شمارش و مقادیر دیگر را تغییر دهید."
369
 
370
- #: counter-options.php:899
371
  #@ cpd
372
  msgid "Start date"
373
  msgstr "شروع روز"
374
 
375
- #: counter-options.php:900
376
  #@ cpd
377
  msgid "Your old Counter starts at?"
378
  msgstr "شمارشگر قدیمی شما شروع می شود در؟"
379
 
380
- #: counter-options.php:903
381
- #: counter-options.php:907
382
  #@ cpd
383
  msgid "Start count"
384
  msgstr "شروع شمارش"
385
 
386
- #: counter-options.php:904
387
  #@ cpd
388
  msgid "Add this value to \"Total visitors\"."
389
  msgstr "اضافه کردن این مقدار به \"مجموع بازدیدکنندگان\""
390
 
391
- #: counter-options.php:636
392
  #@ cpd
393
  msgid "GeoIP - Countries"
394
  msgstr "GeoIP - کشورها"
395
 
396
- #: counter-options.php:645
397
  #@ cpd
398
  msgid "Update old counter data"
399
  msgstr "بروزرسانی اطلاعات شمارش قدیمی"
400
 
401
- #: counter-options.php:657
402
  #@ cpd
403
  msgid "Update GeoIP database"
404
  msgstr "بروزرسانی بانک اطلاعات GeoIP"
405
 
406
- #: counter-options.php:652
407
  #@ cpd
408
  msgid "Download a new version of GeoIP.dat file."
409
  msgstr "دانلود نسخه جدید GeoIP. فایل DAT"
410
 
411
- #: counter-options.php:662
412
  #@ cpd
413
  msgid "More informations about GeoIP"
414
  msgstr "اطلاعات دیگر در مورد GeoIP"
415
 
416
- #: counter-options.php:417
417
  #: massbots.php:46
418
  #@ cpd
419
  msgid "Mass Bots"
420
  msgstr "انبوه روبوتها"
421
 
422
- #: counter-options.php:421
423
  #, php-format
424
  #@ cpd
425
  msgid "Show all IPs with more than %s page views per day"
426
  msgstr "نمایش تمام IPها با بیش از %s بازدید از صفحه در روز"
427
 
428
- #: counter-options.php:422
 
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "نمایش"
434
 
435
- #: counter-options.php:430
 
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "آی پی"
439
 
440
- #: counter-options.php:431
 
441
  #: notes.php:88
442
  #@ cpd
443
  #@ default
444
  msgid "Date"
445
  msgstr "روز"
446
 
447
- #: counter-options.php:432
 
448
  #@ cpd
449
  msgid "Client"
450
  msgstr "مشتری"
451
 
452
- #: counter-options.php:433
 
453
  #@ cpd
454
  msgid "Views"
455
  msgstr "بازدیدها"
456
 
457
- #: counter-options.php:448
458
- #: counter-options.php:464
 
459
  #, php-format
460
  #@ cpd
461
  msgid "Delete these %s counts"
462
  msgstr "حذف %s شمارش"
463
 
464
- #: counter-options.php:727
465
  #@ cpd
466
  msgid "Support"
467
  msgstr "پشتیبانی"
468
 
469
- #: counter-core.php:753
470
  #, php-format
471
  #@ cpd
472
  msgid "Time for Count per Day: <code>%s</code>."
473
  msgstr "زمان برای Count per Day: <code>%s</code>."
474
 
475
- #: counter-core.php:754
476
  #@ cpd
477
  msgid "Bug? Problem? Question? Hint? Praise?"
478
  msgstr "باگ؟ مشکل؟ سوال؟ راهنمایی؟ تحسین؟"
479
 
480
- #: counter-core.php:755
481
  #, php-format
482
  #@ cpd
483
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
  msgstr "نظر خود را در <a href=\"%s\">صفحه ی افزونه</a> بنویسید."
485
 
486
- #: counter.php:218
487
- #: counter.php:1356
488
  #@ cpd
489
  msgid "Total reads"
490
  msgstr "مجموع خوانده شده ها"
491
 
492
- #: counter.php:219
493
- #: counter.php:1357
494
  #@ cpd
495
  msgid "Reads today"
496
  msgstr "خوانده شده های امروز"
497
 
498
- #: counter.php:220
499
- #: counter.php:1358
500
  #@ cpd
501
  msgid "Reads yesterday"
502
  msgstr "خوانده شده ی دیروز"
503
 
504
- #: counter.php:875
505
  #: notes.php:55
506
  #: notes.php:89
507
  #@ cpd
508
  msgid "Notes"
509
  msgstr "یادداشت ها"
510
 
511
- #: counter.php:873
512
  #@ default
513
  msgid "Show"
514
  msgstr "نمایش"
515
 
516
- #: counter.php:913
517
  #@ cpd
518
  msgid "Other"
519
  msgstr "دیگر"
520
 
521
- #: counter.php:1085
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "ویرایش نوشته"
@@ -529,29 +533,29 @@ msgstr "ویرایش نوشته"
529
  msgid "Front page displays"
530
  msgstr "نمایش های اولین صفحه"
531
 
532
- #: counter-core.php:799
533
- #: counter-options.php:860
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "مرورگرها"
537
 
538
- #: counter-core.php:793
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "جدیدترین شمارش"
542
 
543
- #: counter-core.php:796
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "افزونه"
547
 
548
- #: counter-core.php:804
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "خوانندگان هر کشور"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "نقشه"
@@ -596,32 +600,32 @@ msgstr "حذف"
596
  msgid "edit"
597
  msgstr "ویرایش"
598
 
599
- #: counter-options.php:782
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "نهانگاه(کش)"
603
 
604
- #: counter-options.php:783
605
  #@ cpd
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "من از نهانگاه افزونه استفاده می کنم. شمارش بازدیدها با استفاده از آجاکس."
608
 
609
- #: counter-options.php:861
610
  #@ cpd
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "نام مرورگرها را با کاما (,) از هم جدا کنید"
613
 
614
- #: counter-options.php:945
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "حالت رفع اشکال"
618
 
619
- #: counter-options.php:947
620
  #@ cpd
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "نمایش اطلاعات اشکال زدایی در پایین تمام صفحات."
623
 
624
- #: counter-core.php:805
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "بازدیدکنندگان هر کشور"
@@ -641,12 +645,12 @@ msgstr "پایان"
641
  msgid "PostID"
642
  msgstr "آی دی نوشته"
643
 
644
- #: counter-options.php:908
645
  #@ cpd
646
  msgid "Add this value to \"Total reads\"."
647
  msgstr "اضافه کردن این مقدار به \"مجموع خوانده شده ها\""
648
 
649
- #: counter-options.php:639
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 دریافت کنید. این کار ممکن است مدتی طول بکشد!"
@@ -656,467 +660,560 @@ msgstr "شما می توانید داده ی کشورها را برای تمام
656
  msgid "no data found"
657
  msgstr "اطلاعاتی یافت نشد"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "شمارشگر"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "مشتریان و مراجعه کنندگان"
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "لینکهای محلی"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "نمایش ارجاعات محلی"
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "نوشته ها"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "صفحات"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "خوانده شده ی هفته"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "دسته ها"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "برچسب"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "مجوز"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "خوانده شده در ماه"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "ارجاع دهنده"
725
 
726
- #: counter-options.php:864
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "ارجاع دهنده - مطالب"
730
 
731
- #: counter-options.php:865
732
  #@ cpd
733
  msgid "How many referrers do you want to see on dashboard page?"
734
  msgstr "میخواهید چه تعداد از ارجاعات را در صفحه ی پیشخوان خود مشاهده کنید؟"
735
 
736
- #: counter-options.php:868
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "ارجاع دهنده ها - روزها"
740
 
741
- #: counter.php:944
742
  #, php-format
743
  #@ cpd
744
  msgid "The %s referrers in last %s days:"
745
  msgstr "%s مراجعه کننده در %s روز پیش:"
746
 
747
- #: counter-core.php:789
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "بازدیدکنندگان آنلاین"
751
 
752
- #: counter.php:1380
753
  #@ default
754
  msgid "Title"
755
  msgstr "عنوان"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" بروزرسانی شد به نسخه ی %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "پشتیبان گیری با مشکل مواجه شد! نمیتوانم فایل را باز کرد"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "پشتیبان گیری از %s ورودی ها در حال پیشرفت است. هر نقطه مطابق %s ورودی است"
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "پشتیبان از جدول شمارنده ذخیره شد در %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "پشتیبان گیری از تنظیمات شمارشگر و مجموعه ذخیره شد در %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "در حال انجام جمع آوری"
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "بازدید کننده در هر پست ..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "پاک کرده اطلاعات قدیمی"
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "ورودی های شمارشگر تا %s جمع آوری شد و جدول شمارشگر %s بهینه سازی شد. (حجم قبل = %s &gt; حجم بعد = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "مراحل نصب \"Count per Day\" چک شد"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "ابزار"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "تنها ذخیره ی URL، بدون متغیر رشته درخواست."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "چه کسی می تواند پیشخوان را ببیند"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "سفارشی"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "بالاتر از کدام گروه قادر به مشاهده ی صفحه ی آمار هستند."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "تنظیم %s قابلیت %s که یک کاربر نیازدارد"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "شیوه نامه"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "بدون شیوه نامه"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "بارگذاری نشدن شیوه نامه ی \"counter.css\" "
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "پشتیبان"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr ""
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "چه تعداد ورودی باید در هر گذر ذخیره شود؟ پیشفرض: 1000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr "اگر حافظه ی PHP شما کمتر از 50 MB است و به صفحه ی سفید و یا خطا مواجه می شوید، از مقدار کوچکتر استفاده کنید."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "ایجاد نسخه ی پشتیبان از جدول شمارشگر %s در دایرکتوری wp-content (اگر قابل نوشتن باشد)"
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "پشتیبان از بانک اطلاعات"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "جمع آوری داده های قدیمی"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "اندازه ی فعلی جدول شمارنده ی شما %s است %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr "شما می توانید اطلاعات قدیمی و پاکسازی جدول را جمع آوری کنید.<br/>خوانده ها و بازدیدکنندگان به ازای ماه، کشور و نوشته ذخیره خواهند شد.<br/>مشتریان و مراجعه کنندگان حذف خواهند شد."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "در حال حاضر مجموعه ی شما شامل داده تا %s."
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "به صورت معمول داده های جدید به مجموعه اضافه خواهد شد."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "مجموعه قدیمی حذف و یک مجموعه ی جدید که تنها حاوی اطلاعات فعلی شمارنده است ایجاد می شود."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "همه ی داده های جمع آوری شده تا %s حذف خواهد شد."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "حفظ ورودی های کامل %s ماه پیش + ماه فعلی در جدول شمارنده"
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "فعالسازی مجدد"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "در اینجا شما می توانید توابع نصب دستی را اجرا کنید.<br />مانند فعال و غیرفعال کردن افزونه."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "فعالسازی مجدد افزونه"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "بازدیدکنندگان"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "بیشترین بازدید در روز"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "کشیدن و رها کردن برای مرتب سازی"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:31+0000\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"
25
  msgid "Options updated"
26
  msgstr "تنظیمات بروز شد"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "بانک اطلاعات پاک شد. %s سطر پاک شد."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "حذف Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "جدول %s حذف شد"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "تنظیمات حذف شد"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "حذف نصب"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "اینجا کلیک کنید"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "به اتمام نصب و غیرفعالسازی \"Count per Day\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "زمان آنلاین"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "ثانیه برای شمارنده آنلاین. برای \"بازدیدکنندگان آنلاین\" در صفحه ی پیشخوان مورد استفاده قرار می گیرد."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr ""
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr ""
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "شمارش خودکار"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "شمارش خودکار تک نوشته ها و صفحات، تغییری بر روی پوسته مورد نیاز نیست."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "نادیده گرفتن ربوتها"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "بروزرسانی تنظیمات"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "پاک کردن بانک اطلاعات"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  msgstr "شما می توانید جدول شمارنده را طبق \"spam data\" پاک کنید.<br />اگر شما رباتهای برتر قدیمی را اضافه کرده اید، \"spam data\" آنها را در پایگاه داده نگه می دارد.<br />در اینجا شما می توانید فیلتر ربات را دوباره اجرا و بازدید رباتها را حذف کنید."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "اگر شما فقط \"Count per Day\" را غیرفعال کنید، جداول در پایگاه داده حفظ خواهد شد."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "در اینجا شما می توانید جداول \"Count per Day\" را حذف و غیرفعال کنید."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "هشدار"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "این جداول (با تمام اطلاعات شمارنده) حذف خواهد شد."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "اگر \"Count per Day\" دوباره نصب شود، شمارشگر 0 می شود."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "بله"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "شما مطمئن هستید که میخواهید Count per Day ا غیرفعال و اطلاعات آن را پاک کنید؟"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "آمار"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "تمام بازدیدکنندگان"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "بازدیدکنندگان حاضر"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "بازدیدکنندگان امروز"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "بازدیدکنندگان دیروز"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "بازدیدکنندگان هفته"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "آغاز شمارش در"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "بازدیدکننده در روز"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "بازدیدکننده در ماه"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "بازدیدکننده نوشته"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "شمارش تنظیم شد."
226
 
227
+ #: counter-options.php:889
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "پیشخوان"
231
 
232
+ #: counter-options.php:925
233
+ #: counter-options.php:929
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "میخواهید چه تعداد از نوشته ها را در پیشخوان خود مشاهده کنید؟"
237
 
238
+ #: counter-options.php:928
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "آخرین شمارش - نوشته ها"
242
 
243
+ #: counter-options.php:932
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "آخرین شمارش - روزها"
247
 
248
+ #: counter-options.php:933
249
+ #: counter-options.php:937
250
+ #: counter-options.php:959
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "میخواهید اطلاعات چند روز قبل را مشاهده کنید؟"
254
 
255
+ #: counter-options.php:936
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "نمودار - روزها"
259
 
260
+ #: counter-options.php:940
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "نمودار - ارتفاع"
264
 
265
+ #: counter-options.php:941
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "ارتفاع از بزرگترین نوار"
269
 
270
+ #: counter-options.php:973
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "نمایش در لیستها"
274
 
275
+ #: counter-options.php:974
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "نمایش شمارنده ی هر نوشته در در یک ستون جدید در قسمت نوشته ها"
279
 
280
+ #: counter-options.php:770
281
+ #: counter-options.php:780
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "تنظیم مجدد شمارنده"
285
 
286
+ #: counter-options.php:773
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:771
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:641
298
+ #: counter-options.php:409
 
299
  #@ default
300
  msgid "Settings"
301
  msgstr "تنظیمات"
302
 
303
+ #: counter.php:342
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "خوانده شده در روز"
307
 
308
+ #: counter-core.php:1526
309
+ #: counter-options.php:869
310
+ #: counter.php:235
311
+ #: counter.php:1019
312
  #@ cpd
313
  msgid "Reads"
314
  msgstr "خوانده شده در"
315
 
316
+ #: counter.php:1406
317
  #@ cpd
318
  msgid "This post"
319
  msgstr "این نوشته"
335
  msgid "Mass Bots cleaned. %s counts deleted."
336
  msgstr "انبوه رباتها پاک شده اند. %s شماره حذف شده است."
337
 
338
+ #: counter-options.php:839
339
  #@ cpd
340
  msgid "until User Level"
341
  msgstr ""
342
 
343
+ #: counter-options.php:858
344
  #@ cpd
345
  msgid "Anonymous IP"
346
  msgstr "آی پی ناشناس"
347
 
348
+ #: counter-options.php:945
349
  #@ cpd
350
  msgid "Countries"
351
  msgstr "کشورها"
352
 
353
+ #: counter-options.php:946
354
  #@ cpd
355
  msgid "How many countries do you want to see on dashboard page?"
356
  msgstr "میخواهید چه تعداد از کشورها را در صفحه ی پیشخوان خود مشاهده کنید؟"
357
 
358
+ #: counter-options.php:981
359
  #@ cpd
360
  msgid "Start Values"
361
  msgstr "شروع مقادیر"
362
 
363
+ #: counter-options.php:985
364
  #@ cpd
365
  msgid "Here you can change the date of first count and add a start count."
366
  msgstr "شما در اینجا می توانید تاریخ شروع شمارش و مقادیر دیگر را تغییر دهید."
367
 
368
+ #: counter-options.php:989
369
  #@ cpd
370
  msgid "Start date"
371
  msgstr "شروع روز"
372
 
373
+ #: counter-options.php:990
374
  #@ cpd
375
  msgid "Your old Counter starts at?"
376
  msgstr "شمارشگر قدیمی شما شروع می شود در؟"
377
 
378
+ #: counter-options.php:993
379
+ #: counter-options.php:997
380
  #@ cpd
381
  msgid "Start count"
382
  msgstr "شروع شمارش"
383
 
384
+ #: counter-options.php:994
385
  #@ cpd
386
  msgid "Add this value to \"Total visitors\"."
387
  msgstr "اضافه کردن این مقدار به \"مجموع بازدیدکنندگان\""
388
 
389
+ #: counter-options.php:720
390
  #@ cpd
391
  msgid "GeoIP - Countries"
392
  msgstr "GeoIP - کشورها"
393
 
394
+ #: counter-options.php:729
395
  #@ cpd
396
  msgid "Update old counter data"
397
  msgstr "بروزرسانی اطلاعات شمارش قدیمی"
398
 
399
+ #: counter-options.php:741
400
  #@ cpd
401
  msgid "Update GeoIP database"
402
  msgstr "بروزرسانی بانک اطلاعات GeoIP"
403
 
404
+ #: counter-options.php:736
405
  #@ cpd
406
  msgid "Download a new version of GeoIP.dat file."
407
  msgstr "دانلود نسخه جدید GeoIP. فایل DAT"
408
 
409
+ #: counter-options.php:746
410
  #@ cpd
411
  msgid "More informations about GeoIP"
412
  msgstr "اطلاعات دیگر در مورد GeoIP"
413
 
414
+ #: counter-options.php:429
415
  #: massbots.php:46
416
  #@ cpd
417
  msgid "Mass Bots"
418
  msgstr "انبوه روبوتها"
419
 
420
+ #: counter-options.php:433
421
  #, php-format
422
  #@ cpd
423
  msgid "Show all IPs with more than %s page views per day"
424
  msgstr "نمایش تمام IPها با بیش از %s بازدید از صفحه در روز"
425
 
426
+ #: counter-options.php:434
427
+ #: counter-options.php:498
428
  #: notes.php:84
429
  #: userperspan.php:56
430
  #@ cpd
431
  msgid "show"
432
  msgstr "نمایش"
433
 
434
+ #: counter-options.php:442
435
+ #: counter-options.php:506
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "آی پی"
439
 
440
+ #: counter-options.php:443
441
+ #: counter-options.php:507
442
  #: notes.php:88
443
  #@ cpd
444
  #@ default
445
  msgid "Date"
446
  msgstr "روز"
447
 
448
+ #: counter-options.php:444
449
+ #: counter-options.php:508
450
  #@ cpd
451
  msgid "Client"
452
  msgstr "مشتری"
453
 
454
+ #: counter-options.php:445
455
+ #: counter-options.php:509
456
  #@ cpd
457
  msgid "Views"
458
  msgstr "بازدیدها"
459
 
460
+ #: counter-options.php:460
461
+ #: counter-options.php:476
462
+ #: counter-options.php:523
463
  #, php-format
464
  #@ cpd
465
  msgid "Delete these %s counts"
466
  msgstr "حذف %s شمارش"
467
 
468
+ #: counter-options.php:811
469
  #@ cpd
470
  msgid "Support"
471
  msgstr "پشتیبانی"
472
 
473
+ #: counter-core.php:742
474
  #, php-format
475
  #@ cpd
476
  msgid "Time for Count per Day: <code>%s</code>."
477
  msgstr "زمان برای Count per Day: <code>%s</code>."
478
 
479
+ #: counter-core.php:743
480
  #@ cpd
481
  msgid "Bug? Problem? Question? Hint? Praise?"
482
  msgstr "باگ؟ مشکل؟ سوال؟ راهنمایی؟ تحسین؟"
483
 
484
+ #: counter-core.php:744
485
  #, php-format
486
  #@ cpd
487
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
488
  msgstr "نظر خود را در <a href=\"%s\">صفحه ی افزونه</a> بنویسید."
489
 
490
+ #: counter.php:231
491
+ #: counter.php:1407
492
  #@ cpd
493
  msgid "Total reads"
494
  msgstr "مجموع خوانده شده ها"
495
 
496
+ #: counter.php:232
497
+ #: counter.php:1408
498
  #@ cpd
499
  msgid "Reads today"
500
  msgstr "خوانده شده های امروز"
501
 
502
+ #: counter.php:233
503
+ #: counter.php:1409
504
  #@ cpd
505
  msgid "Reads yesterday"
506
  msgstr "خوانده شده ی دیروز"
507
 
508
+ #: counter.php:890
509
  #: notes.php:55
510
  #: notes.php:89
511
  #@ cpd
512
  msgid "Notes"
513
  msgstr "یادداشت ها"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "نمایش"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "دیگر"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "ویرایش نوشته"
533
  msgid "Front page displays"
534
  msgstr "نمایش های اولین صفحه"
535
 
536
+ #: counter-core.php:788
537
+ #: counter-options.php:950
538
  #@ cpd
539
  msgid "Browsers"
540
  msgstr "مرورگرها"
541
 
542
+ #: counter-core.php:782
543
  #@ cpd
544
  msgid "Latest Counts"
545
  msgstr "جدیدترین شمارش"
546
 
547
+ #: counter-core.php:785
548
  #@ default
549
  msgid "Plugin"
550
  msgstr "افزونه"
551
 
552
+ #: counter-core.php:793
553
  #@ cpd
554
  msgid "Reads per Country"
555
  msgstr "خوانندگان هر کشور"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "نقشه"
600
  msgid "edit"
601
  msgstr "ویرایش"
602
 
603
+ #: counter-options.php:862
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "نهانگاه(کش)"
607
 
608
+ #: counter-options.php:863
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "من از نهانگاه افزونه استفاده می کنم. شمارش بازدیدها با استفاده از آجاکس."
612
 
613
+ #: counter-options.php:951
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "نام مرورگرها را با کاما (,) از هم جدا کنید"
617
 
618
+ #: counter-options.php:1035
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "حالت رفع اشکال"
622
 
623
+ #: counter-options.php:1037
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "نمایش اطلاعات اشکال زدایی در پایین تمام صفحات."
627
 
628
+ #: counter-core.php:794
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "بازدیدکنندگان هر کشور"
645
  msgid "PostID"
646
  msgstr "آی دی نوشته"
647
 
648
+ #: counter-options.php:998
649
  #@ cpd
650
  msgid "Add this value to \"Total reads\"."
651
  msgstr "اضافه کردن این مقدار به \"مجموع خوانده شده ها\""
652
 
653
+ #: counter-options.php:723
654
  #@ cpd
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 "شما می توانید داده ی کشورها را برای تمام ورودی ها در پایگاه داده از طریق چک کردن IP در مقابل پایگاه داده GeoIP دریافت کنید. این کار ممکن است مدتی طول بکشد!"
660
  msgid "no data found"
661
  msgstr "اطلاعاتی یافت نشد"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "شمارشگر"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "مشتریان و مراجعه کنندگان"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "ذخیره و مشاهده ی مشتریان و مراجعه کنندگان.<br />به فضای زیادی در پایگاه داده نیاز دارد، اما اطلاعات کاملی از بازدیدکنندگان به شما می دهد."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "لینکهای محلی"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "نمایش ارجاعات محلی"
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "نوشته ها"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "صفحات"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "خوانده شده ی هفته"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "دسته ها"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "برچسب"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "مجوز"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "خوانده شده در ماه"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "ارجاع دهنده"
729
 
730
+ #: counter-options.php:954
731
  #@ cpd
732
  msgid "Referrers - Entries"
733
  msgstr "ارجاع دهنده - مطالب"
734
 
735
+ #: counter-options.php:955
736
  #@ cpd
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "میخواهید چه تعداد از ارجاعات را در صفحه ی پیشخوان خود مشاهده کنید؟"
739
 
740
+ #: counter-options.php:958
741
  #@ cpd
742
  msgid "Referrers - Days"
743
  msgstr "ارجاع دهنده ها - روزها"
744
 
745
+ #: counter.php:989
746
  #, php-format
747
  #@ cpd
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "%s مراجعه کننده در %s روز پیش:"
750
 
751
+ #: counter-core.php:778
752
  #@ cpd
753
  msgid "Visitors online"
754
  msgstr "بازدیدکنندگان آنلاین"
755
 
756
+ #: counter.php:1431
757
  #@ default
758
  msgid "Title"
759
  msgstr "عنوان"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" بروزرسانی شد به نسخه ی %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "پشتیبان گیری با مشکل مواجه شد! نمیتوانم فایل را باز کرد"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "پشتیبان از جدول شمارنده ذخیره شد در %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "پشتیبان گیری از تنظیمات شمارشگر و مجموعه ذخیره شد در %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "در حال انجام جمع آوری"
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "بازدید کننده در هر پست ..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "ورودی های شمارشگر تا %s جمع آوری شد و جدول شمارشگر %s بهینه سازی شد. (حجم قبل = %s &gt; حجم بعد = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "مراحل نصب \"Count per Day\" چک شد"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "ابزار"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "تنها ذخیره ی URL، بدون متغیر رشته درخواست."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "چه کسی می تواند پیشخوان را ببیند"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "سفارشی"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "بالاتر از کدام گروه قادر به مشاهده ی صفحه ی آمار هستند."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "تنظیم %s قابلیت %s که یک کاربر نیازدارد"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "شیوه نامه"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "بدون شیوه نامه"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "بارگذاری نشدن شیوه نامه ی \"counter.css\" "
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "پشتیبان"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr ""
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "چه تعداد ورودی باید در هر گذر ذخیره شود؟ پیشفرض: 1000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr "اگر حافظه ی PHP شما کمتر از 50 MB است و به صفحه ی سفید و یا خطا مواجه می شوید، از مقدار کوچکتر استفاده کنید."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "ایجاد نسخه ی پشتیبان از جدول شمارشگر %s در دایرکتوری wp-content (اگر قابل نوشتن باشد)"
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "پشتیبان از بانک اطلاعات"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "جمع آوری داده های قدیمی"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "اندازه ی فعلی جدول شمارنده ی شما %s است %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr "شما می توانید اطلاعات قدیمی و پاکسازی جدول را جمع آوری کنید.<br/>خوانده ها و بازدیدکنندگان به ازای ماه، کشور و نوشته ذخیره خواهند شد.<br/>مشتریان و مراجعه کنندگان حذف خواهند شد."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "در حال حاضر مجموعه ی شما شامل داده تا %s."
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "به صورت معمول داده های جدید به مجموعه اضافه خواهد شد."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "مجموعه قدیمی حذف و یک مجموعه ی جدید که تنها حاوی اطلاعات فعلی شمارنده است ایجاد می شود."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "همه ی داده های جمع آوری شده تا %s حذف خواهد شد."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "حفظ ورودی های کامل %s ماه پیش + ماه فعلی در جدول شمارنده"
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "فعالسازی مجدد"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "در اینجا شما می توانید توابع نصب دستی را اجرا کنید.<br />مانند فعال و غیرفعال کردن افزونه."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "فعالسازی مجدد افزونه"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "بازدیدکنندگان"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "بیشترین بازدید در روز"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "کشیدن و رها کردن برای مرتب سازی"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-fi.mo CHANGED
Binary file
locale/cpd-fr_FR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:02+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Bjork - Habbzone.fr <bjork@habbzone.fr>\n"
9
  "MIME-Version: 1.0\n"
@@ -25,302 +25,300 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Paramètres mis à jour"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Base de données nettoyée. %s lignes supprimées."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Désinstaller Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Table %s supprimée"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Paramètres supprimés"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Désinstaller"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Cliquez ici"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "pour terminer de désinstaller et désactiver \"Count per Day\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Temps en ligne"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Utilisateurs Connectés"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "compter aussi"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Compteur automatique"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Robots à ignorer"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Mettre à jour les options"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Nettoyer la base de données"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATTENTION"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Oui"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistiques"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Visiteurs Total"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visiteur actuellement en ligne"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visiteurs aujourd'hui"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visiteurs hier"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visiteurs la semaine dernière"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Compteur activé le "
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Visiteurs par jour"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Visiteurs par mois"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Visiteurs par articles"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Compteur remis à zéro."
227
 
228
- #: counter-options.php:835
229
- #: counter-options.php:839
230
  #@ cpd
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
233
 
234
- #: counter-options.php:838
235
  #@ cpd
236
  msgid "Latest Counts - Posts"
237
  msgstr "Dernier Comptes - Articles"
238
 
239
- #: counter-options.php:842
240
  #@ cpd
241
  msgid "Latest Counts - Days"
242
  msgstr "Dernier Compte - Jours"
243
 
244
- #: counter-options.php:843
245
- #: counter-options.php:847
246
- #: counter-options.php:869
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "Combien de jours vous voulez regarder en arrière?"
250
 
251
- #: counter-options.php:883
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "Montrer dans la liste"
255
 
256
- #: counter-options.php:884
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
260
 
261
- #: counter-options.php:686
262
- #: counter-options.php:696
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Remise à zéro du compteur"
266
 
267
- #: counter-options.php:689
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  msgstr "Vous pouvez réinitialiser le compteur en vidant la table. TOUT à 0!<br />Faites un Backup si vous avez besoin des données actuelles!"
271
 
272
- #: counter.php:756
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "Les %s articles les plus visités dans les derniers %s jours:"
277
 
278
- #: counter-core.php:652
279
- #: counter-options.php:401
280
- #: counter-options.php:740
281
  #@ default
282
  msgid "Settings"
283
  msgstr "Options"
284
 
285
- #: counter-core.php:1464
286
- #: counter-options.php:789
287
- #: counter.php:222
288
- #: counter.php:974
289
  #@ cpd
290
  msgid "Reads"
291
  msgstr "Lectures"
292
 
293
- #: counter-core.php:793
294
  #@ cpd
295
  msgid "Latest Counts"
296
  msgstr "Dernier Comptes"
297
 
298
- #: counter-options.php:846
299
  #@ cpd
300
  msgid "Chart - Days"
301
  msgstr "Graphique - Jours"
302
 
303
- #: counter-options.php:850
304
  #@ cpd
305
  msgid "Chart - Height"
306
  msgstr "Graphique - Hauteur"
307
 
308
- #: counter-options.php:851
309
  #@ cpd
310
  msgid "Height of the biggest bar"
311
  msgstr "Hauteur de la plus grande barre"
312
 
313
- #: counter.php:1355
314
  #@ cpd
315
  msgid "This post"
316
  msgstr "Cet article"
317
 
318
- #: counter-options.php:799
319
  #@ default
320
  msgid "Dashboard"
321
  msgstr "Tableau de bord"
322
 
323
- #: counter.php:327
324
  #@ cpd
325
  msgid "Reads per day"
326
  msgstr "Lectures par jour"
@@ -336,32 +334,32 @@ msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
336
  msgid "update next"
337
  msgstr "mettre à jour le prochain"
338
 
339
- #: counter-options.php:636
340
  #@ cpd
341
  msgid "GeoIP - Countries"
342
  msgstr "GeoIP - Pays"
343
 
344
- #: counter-options.php:645
345
  #@ cpd
346
  msgid "Update old counter data"
347
  msgstr "Mettre à jour les données du vieux compteur"
348
 
349
- #: counter-options.php:657
350
  #@ cpd
351
  msgid "Update GeoIP database"
352
  msgstr "Mettre à jour les données de GeoIP"
353
 
354
- #: counter-options.php:652
355
  #@ cpd
356
  msgid "Download a new version of GeoIP.dat file."
357
  msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
358
 
359
- #: counter-options.php:662
360
  #@ cpd
361
  msgid "More informations about GeoIP"
362
  msgstr "Plus d'infos sur GeoIP"
363
 
364
- #: counter-core.php:804
365
  #@ cpd
366
  msgid "Reads per Country"
367
  msgstr "Lectures par Pays"
@@ -381,12 +379,12 @@ msgstr "Désolé,une erreur est survenue. Merci de réessayer ou de vérifier qu
381
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
382
  msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
383
 
384
- #: counter-options.php:855
385
  #@ cpd
386
  msgid "Countries"
387
  msgstr "Pays"
388
 
389
- #: counter-options.php:856
390
  #@ cpd
391
  msgid "How many countries do you want to see on dashboard page?"
392
  msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
@@ -397,33 +395,35 @@ msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
397
  msgid "Mass Bots cleaned. %s counts deleted."
398
  msgstr "Robots nettoyés en masse. %s comptes supprimés."
399
 
400
- #: counter-options.php:417
401
  #: massbots.php:46
402
  #@ cpd
403
  msgid "Mass Bots"
404
  msgstr "Robots en masse"
405
 
406
- #: counter-options.php:421
407
  #, php-format
408
  #@ cpd
409
  msgid "Show all IPs with more than %s page views per day"
410
  msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
411
 
412
- #: counter-options.php:422
 
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "montrer"
418
 
419
- #: counter-options.php:448
420
- #: counter-options.php:464
 
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Supprimer ces %s comptes"
425
 
426
- #: counter.php:913
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Autre"
@@ -434,108 +434,112 @@ msgstr "Autre"
434
  msgid "Front page displays"
435
  msgstr "Page d'accueil affiche"
436
 
437
- #: counter-core.php:799
438
- #: counter-options.php:860
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Navigateurs"
442
 
443
- #: counter-options.php:430
 
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
- #: counter-options.php:431
 
449
  #: notes.php:88
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Date"
454
 
455
- #: counter-options.php:432
 
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Client"
459
 
460
- #: counter-options.php:433
 
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Vues"
464
 
465
- #: counter-options.php:891
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Valeurs de départ"
469
 
470
- #: counter-options.php:895
471
  #@ cpd
472
  msgid "Here you can change the date of first count and add a start count."
473
  msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
474
 
475
- #: counter-options.php:899
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Date de départ"
479
 
480
- #: counter-options.php:900
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Votre vieux compteur commence à?"
484
 
485
- #: counter-options.php:903
486
- #: counter-options.php:907
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Commencer le compte"
490
 
491
- #: counter-options.php:904
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Ajouter cette valeur à \"visiteurs totals\"."
495
 
496
- #: counter-options.php:727
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Support"
500
 
501
- #: counter-core.php:754
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "Bug? Problème? Question? Allusion? Hommage?"
505
 
506
- #: counter-core.php:755
507
  #, php-format
508
  #@ cpd
509
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
  msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
511
 
512
- #: counter.php:873
513
  #@ default
514
  msgid "Show"
515
  msgstr "Montrer"
516
 
517
- #: counter.php:1085
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr "Editer"
521
 
522
- #: counter-core.php:753
523
  #, php-format
524
  #@ cpd
525
  msgid "Time for Count per Day: <code>%s</code>."
526
  msgstr "Temps pour Count Per Day: <code>%s</code>."
527
 
528
- #: counter-options.php:759
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "jusqu'au niveau de l'utilisateur"
532
 
533
- #: counter-core.php:796
534
  #@ default
535
  msgid "Plugin"
536
  msgstr "Plugin"
537
 
538
- #: counter.php:875
539
  #: notes.php:55
540
  #: notes.php:89
541
  #@ cpd
@@ -567,66 +571,66 @@ msgstr "supprimer"
567
  msgid "edit"
568
  msgstr "éditer"
569
 
570
- #: counter-options.php:908
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Ajouter cette valeur à \"Lectures totales\"."
574
 
575
- #: counter.php:218
576
- #: counter.php:1356
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Lectures totales"
580
 
581
- #: counter.php:219
582
- #: counter.php:1357
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Lectures aujourd'hui"
586
 
587
- #: counter.php:220
588
- #: counter.php:1358
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Lectures hier"
592
 
593
- #: counter-options.php:778
594
  #@ cpd
595
  msgid "Anonymous IP"
596
  msgstr "Adresse IP Anonyme"
597
 
598
- #: counter-options.php:782
599
  #@ cpd
600
  msgid "Cache"
601
  msgstr "Cache"
602
 
603
- #: counter-options.php:783
604
  #@ cpd
605
  msgid "I use a cache plugin. Count these visits with ajax."
606
  msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
607
 
608
- #: counter-options.php:861
609
  #@ cpd
610
  msgid "Substring of the user agent, separated by comma"
611
  msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
612
 
613
- #: counter-options.php:945
614
  #@ cpd
615
  msgid "Debug mode"
616
  msgstr "Mode Debug"
617
 
618
- #: counter-options.php:947
619
  #@ cpd
620
  msgid "Show debug informations at the bottom of all pages."
621
  msgstr "Afficher les informations de débogage au bas de toutes les pages."
622
 
623
- #: counter-core.php:805
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Visiteurs par Pays"
627
 
628
- #: counter.php:418
629
- #: counter.php:1198
630
  #@ cpd
631
  msgid "Map"
632
  msgstr "Carte"
@@ -651,472 +655,565 @@ msgstr "PostID"
651
  msgid "no data found"
652
  msgstr "aucune donnée trouvée"
653
 
654
- #: counter-options.php:639
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 "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!"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Compteur"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Clients et Référents"
668
 
669
- #: counter-options.php:789
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 "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."
673
 
674
- #: counter-options.php:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Liens Locals"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Montrer les référents locals également."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Articles"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Pages"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Lectures - Semaine Dernière"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Catégorie"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Tag"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "License"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Lectures par mois"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Référent"
725
 
726
- #: counter.php:1380
727
  #@ default
728
  msgid "Title"
729
  msgstr "Titre"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Référents - Entrées"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Référents - Jours"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "Les %s référents des %s derniers jours:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Visiteurs en ligne"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" mis à jour en version %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Sauvegarde échouée! Impossible d'ouvrir le fichier"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Sauvegarde de %s entrées en cours. Chaque point compile %s entrées"
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "ASAuve"
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Sauvegarde des entrées du compteur et collectes enregistrés dans %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Collecte en cours..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Voir Visiteurs par Article..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Supprimer les anciennes données..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s &gt; taille après = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Installation de \"Count per Day\" cochée"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Outils"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Enregistrer le lien seulement, pas de chaine de requête."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Qui peut le voir?"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "personnalisée"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "et plus sont autorisés à voir la page de statistiques."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Set the %s capability %s a user need:"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Stylesheet"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "PAS de Stylesheet en Frontend"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Ne pas charger le fichier de style \"counter.css\" en frontend."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Sauvegarde"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Entrées par passe"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Combien d'entrées doivent être enregistrées par passe? Par défaut: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  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."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Créer une sauvegarde du compteur %s dans le dossier wp-content (si possible en écriture)."
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Sauvegarde de la base de données"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Collecter les vieilles données"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "La taille actuelle de la table compteur %s est de %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "Actuellement, votre collection contient des données jusqu'à %s."
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Normalement les nouvelles données seront ajoutées à la collection."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Supprimer une collection ancienne et en créer un nouveau qui ne contient que les données actuellement dans le tableau du compteur."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Toutes les collectes jusqu'à %s seront supprimées"
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Garder les entrées des dernièrs %s mois + mois actuel dans la table compteur."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "Ré-Activation"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Ici vous pouvez lancer les fonctions d'installation manuellement.<br/> La même chose pour désactiver et réactiver le plugin."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "Ré-Activer le Plugin"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Visiteurs"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Le jours le plus visité"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "drag et drop pour trier"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:36+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Bjork - Habbzone.fr <bjork@habbzone.fr>\n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Paramètres mis à jour"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Base de données nettoyée. %s lignes supprimées."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Désinstaller Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Table %s supprimée"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Paramètres supprimés"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Désinstaller"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Cliquez ici"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "pour terminer de désinstaller et désactiver \"Count per Day\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Temps en ligne"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Utilisateurs Connectés"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "compter aussi"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Compteur automatique"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Robots à ignorer"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Mettre à jour les options"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Nettoyer la base de données"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATTENTION"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Oui"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistiques"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Visiteurs Total"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visiteur actuellement en ligne"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visiteurs aujourd'hui"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visiteurs hier"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visiteurs la semaine dernière"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Compteur activé le "
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visiteurs par jour"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visiteurs par mois"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visiteurs par articles"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Compteur remis à zéro."
226
 
227
+ #: counter-options.php:925
228
+ #: counter-options.php:929
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
232
 
233
+ #: counter-options.php:928
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Dernier Comptes - Articles"
237
 
238
+ #: counter-options.php:932
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Dernier Compte - Jours"
242
 
243
+ #: counter-options.php:933
244
+ #: counter-options.php:937
245
+ #: counter-options.php:959
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "Combien de jours vous voulez regarder en arrière?"
249
 
250
+ #: counter-options.php:973
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Montrer dans la liste"
254
 
255
+ #: counter-options.php:974
256
  #@ cpd
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
259
 
260
+ #: counter-options.php:770
261
+ #: counter-options.php:780
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Remise à zéro du compteur"
265
 
266
+ #: counter-options.php:773
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 "Vous pouvez réinitialiser le compteur en vidant la table. TOUT à 0!<br />Faites un Backup si vous avez besoin des données actuelles!"
270
 
271
+ #: counter.php:771
272
  #, php-format
273
  #@ cpd
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "Les %s articles les plus visités dans les derniers %s jours:"
276
 
277
+ #: counter-core.php:641
278
+ #: counter-options.php:409
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Options"
282
 
283
+ #: counter-core.php:1526
284
+ #: counter-options.php:869
285
+ #: counter.php:235
286
+ #: counter.php:1019
287
  #@ cpd
288
  msgid "Reads"
289
  msgstr "Lectures"
290
 
291
+ #: counter-core.php:782
292
  #@ cpd
293
  msgid "Latest Counts"
294
  msgstr "Dernier Comptes"
295
 
296
+ #: counter-options.php:936
297
  #@ cpd
298
  msgid "Chart - Days"
299
  msgstr "Graphique - Jours"
300
 
301
+ #: counter-options.php:940
302
  #@ cpd
303
  msgid "Chart - Height"
304
  msgstr "Graphique - Hauteur"
305
 
306
+ #: counter-options.php:941
307
  #@ cpd
308
  msgid "Height of the biggest bar"
309
  msgstr "Hauteur de la plus grande barre"
310
 
311
+ #: counter.php:1406
312
  #@ cpd
313
  msgid "This post"
314
  msgstr "Cet article"
315
 
316
+ #: counter-options.php:889
317
  #@ default
318
  msgid "Dashboard"
319
  msgstr "Tableau de bord"
320
 
321
+ #: counter.php:342
322
  #@ cpd
323
  msgid "Reads per day"
324
  msgstr "Lectures par jour"
334
  msgid "update next"
335
  msgstr "mettre à jour le prochain"
336
 
337
+ #: counter-options.php:720
338
  #@ cpd
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Pays"
341
 
342
+ #: counter-options.php:729
343
  #@ cpd
344
  msgid "Update old counter data"
345
  msgstr "Mettre à jour les données du vieux compteur"
346
 
347
+ #: counter-options.php:741
348
  #@ cpd
349
  msgid "Update GeoIP database"
350
  msgstr "Mettre à jour les données de GeoIP"
351
 
352
+ #: counter-options.php:736
353
  #@ cpd
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
356
 
357
+ #: counter-options.php:746
358
  #@ cpd
359
  msgid "More informations about GeoIP"
360
  msgstr "Plus d'infos sur GeoIP"
361
 
362
+ #: counter-core.php:793
363
  #@ cpd
364
  msgid "Reads per Country"
365
  msgstr "Lectures par Pays"
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
+ #: counter-options.php:945
383
  #@ cpd
384
  msgid "Countries"
385
  msgstr "Pays"
386
 
387
+ #: counter-options.php:946
388
  #@ cpd
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?"
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Robots nettoyés en masse. %s comptes supprimés."
397
 
398
+ #: counter-options.php:429
399
  #: massbots.php:46
400
  #@ cpd
401
  msgid "Mass Bots"
402
  msgstr "Robots en masse"
403
 
404
+ #: counter-options.php:433
405
  #, php-format
406
  #@ cpd
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
+ #: counter-options.php:434
411
+ #: counter-options.php:498
412
  #: notes.php:84
413
  #: userperspan.php:56
414
  #@ cpd
415
  msgid "show"
416
  msgstr "montrer"
417
 
418
+ #: counter-options.php:460
419
+ #: counter-options.php:476
420
+ #: counter-options.php:523
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Supprimer ces %s comptes"
425
 
426
+ #: counter.php:958
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Autre"
434
  msgid "Front page displays"
435
  msgstr "Page d'accueil affiche"
436
 
437
+ #: counter-core.php:788
438
+ #: counter-options.php:950
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Navigateurs"
442
 
443
+ #: counter-options.php:442
444
+ #: counter-options.php:506
445
  #@ cpd
446
  msgid "IP"
447
  msgstr "IP"
448
 
449
+ #: counter-options.php:443
450
+ #: counter-options.php:507
451
  #: notes.php:88
452
  #@ cpd
453
  #@ default
454
  msgid "Date"
455
  msgstr "Date"
456
 
457
+ #: counter-options.php:444
458
+ #: counter-options.php:508
459
  #@ cpd
460
  msgid "Client"
461
  msgstr "Client"
462
 
463
+ #: counter-options.php:445
464
+ #: counter-options.php:509
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Vues"
468
 
469
+ #: counter-options.php:981
470
  #@ cpd
471
  msgid "Start Values"
472
  msgstr "Valeurs de départ"
473
 
474
+ #: counter-options.php:985
475
  #@ cpd
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
478
 
479
+ #: counter-options.php:989
480
  #@ cpd
481
  msgid "Start date"
482
  msgstr "Date de départ"
483
 
484
+ #: counter-options.php:990
485
  #@ cpd
486
  msgid "Your old Counter starts at?"
487
  msgstr "Votre vieux compteur commence à?"
488
 
489
+ #: counter-options.php:993
490
+ #: counter-options.php:997
491
  #@ cpd
492
  msgid "Start count"
493
  msgstr "Commencer le compte"
494
 
495
+ #: counter-options.php:994
496
  #@ cpd
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Ajouter cette valeur à \"visiteurs totals\"."
499
 
500
+ #: counter-options.php:811
501
  #@ cpd
502
  msgid "Support"
503
  msgstr "Support"
504
 
505
+ #: counter-core.php:743
506
  #@ cpd
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Bug? Problème? Question? Allusion? Hommage?"
509
 
510
+ #: counter-core.php:744
511
  #, php-format
512
  #@ cpd
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
515
 
516
+ #: counter.php:888
517
  #@ default
518
  msgid "Show"
519
  msgstr "Montrer"
520
 
521
+ #: counter.php:1130
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Editer"
525
 
526
+ #: counter-core.php:742
527
  #, php-format
528
  #@ cpd
529
  msgid "Time for Count per Day: <code>%s</code>."
530
  msgstr "Temps pour Count Per Day: <code>%s</code>."
531
 
532
+ #: counter-options.php:839
533
  #@ cpd
534
  msgid "until User Level"
535
  msgstr "jusqu'au niveau de l'utilisateur"
536
 
537
+ #: counter-core.php:785
538
  #@ default
539
  msgid "Plugin"
540
  msgstr "Plugin"
541
 
542
+ #: counter.php:890
543
  #: notes.php:55
544
  #: notes.php:89
545
  #@ cpd
571
  msgid "edit"
572
  msgstr "éditer"
573
 
574
+ #: counter-options.php:998
575
  #@ cpd
576
  msgid "Add this value to \"Total reads\"."
577
  msgstr "Ajouter cette valeur à \"Lectures totales\"."
578
 
579
+ #: counter.php:231
580
+ #: counter.php:1407
581
  #@ cpd
582
  msgid "Total reads"
583
  msgstr "Lectures totales"
584
 
585
+ #: counter.php:232
586
+ #: counter.php:1408
587
  #@ cpd
588
  msgid "Reads today"
589
  msgstr "Lectures aujourd'hui"
590
 
591
+ #: counter.php:233
592
+ #: counter.php:1409
593
  #@ cpd
594
  msgid "Reads yesterday"
595
  msgstr "Lectures hier"
596
 
597
+ #: counter-options.php:858
598
  #@ cpd
599
  msgid "Anonymous IP"
600
  msgstr "Adresse IP Anonyme"
601
 
602
+ #: counter-options.php:862
603
  #@ cpd
604
  msgid "Cache"
605
  msgstr "Cache"
606
 
607
+ #: counter-options.php:863
608
  #@ cpd
609
  msgid "I use a cache plugin. Count these visits with ajax."
610
  msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
611
 
612
+ #: counter-options.php:951
613
  #@ cpd
614
  msgid "Substring of the user agent, separated by comma"
615
  msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
616
 
617
+ #: counter-options.php:1035
618
  #@ cpd
619
  msgid "Debug mode"
620
  msgstr "Mode Debug"
621
 
622
+ #: counter-options.php:1037
623
  #@ cpd
624
  msgid "Show debug informations at the bottom of all pages."
625
  msgstr "Afficher les informations de débogage au bas de toutes les pages."
626
 
627
+ #: counter-core.php:794
628
  #@ cpd
629
  msgid "Visitors per Country"
630
  msgstr "Visiteurs par Pays"
631
 
632
+ #: counter.php:433
633
+ #: counter.php:1249
634
  #@ cpd
635
  msgid "Map"
636
  msgstr "Carte"
655
  msgid "no data found"
656
  msgstr "aucune donnée trouvée"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Compteur"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Clients et Référents"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  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."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Liens Locals"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Montrer les référents locals également."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Articles"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Pages"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Lectures - Semaine Dernière"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Catégorie"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Tag"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "License"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Lectures par mois"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Référent"
729
 
730
+ #: counter.php:1431
731
  #@ default
732
  msgid "Title"
733
  msgstr "Titre"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Référents - Entrées"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Référents - Jours"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "Les %s référents des %s derniers jours:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Visiteurs en ligne"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" mis à jour en version %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Sauvegarde échouée! Impossible d'ouvrir le fichier"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "ASAuve"
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Sauvegarde des entrées du compteur et collectes enregistrés dans %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Collecte en cours..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Voir Visiteurs par Article..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s &gt; taille après = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Installation de \"Count per Day\" cochée"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Outils"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Enregistrer le lien seulement, pas de chaine de requête."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Qui peut le voir?"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "personnalisée"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "et plus sont autorisés à voir la page de statistiques."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Set the %s capability %s a user need:"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Stylesheet"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "PAS de Stylesheet en Frontend"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Ne pas charger le fichier de style \"counter.css\" en frontend."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Sauvegarde"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Entrées par passe"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Combien d'entrées doivent être enregistrées par passe? Par défaut: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  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."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Créer une sauvegarde du compteur %s dans le dossier wp-content (si possible en écriture)."
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Sauvegarde de la base de données"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Collecter les vieilles données"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "La taille actuelle de la table compteur %s est de %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "Actuellement, votre collection contient des données jusqu'à %s."
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Normalement les nouvelles données seront ajoutées à la collection."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Supprimer une collection ancienne et en créer un nouveau qui ne contient que les données actuellement dans le tableau du compteur."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Toutes les collectes jusqu'à %s seront supprimées"
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Garder les entrées des dernièrs %s mois + mois actuel dans la table compteur."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "Ré-Activation"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Ici vous pouvez lancer les fonctions d'installation manuellement.<br/> La même chose pour désactiver et réactiver le plugin."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "Ré-Activer le Plugin"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Visiteurs"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Le jours le plus visité"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "drag et drop pour trier"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-it_IT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:06+0000\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"
@@ -25,302 +25,300 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Le opzioni sono state aggiornate"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Database svuotato. %s record cancellato."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DISINSTALLA Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "La tabella %s é stata cancellata"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Le opzioni sono state cancellate"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Disinstalla"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clicca qui"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Durata del collegamento"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Utenti accreditati"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "conteggia anche loro"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Contatore-automatico"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots da ignorare"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Aggiorna le opzioni"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Svuota il database"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATTENZIONE"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sì"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Satistiche"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Totale visitatori"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Utenti attualmente in linea"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Oggi"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Ieri"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "La scorsa settimana"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Il contatore parte dal"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Visitatori per giorno"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Visitatori per mese"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Visitatori per articolo"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Il contatore é stato azzerato."
227
 
228
- #: counter-options.php:835
229
- #: counter-options.php:839
230
  #@ cpd
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Quanti articoli desideri siano visibili nella bacheca?"
233
 
234
- #: counter-options.php:838
235
  #@ cpd
236
  msgid "Latest Counts - Posts"
237
  msgstr "Totale corrente - Articoli"
238
 
239
- #: counter-options.php:842
240
  #@ cpd
241
  msgid "Latest Counts - Days"
242
  msgstr "Totale corrente - pagine"
243
 
244
- #: counter-options.php:843
245
- #: counter-options.php:847
246
- #: counter-options.php:869
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "Quanti giorni desideri visionare a ritroso?"
250
 
251
- #: counter-options.php:883
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "Mostra nelle liste"
255
 
256
- #: counter-options.php:884
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
260
 
261
- #: counter-options.php:686
262
- #: counter-options.php:696
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Azzera il contatore"
266
 
267
- #: counter-options.php:689
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
271
 
272
- #: counter.php:756
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "I %s articoli più letti negli ultimi %s giorni:"
277
 
278
- #: counter-core.php:652
279
- #: counter-options.php:401
280
- #: counter-options.php:740
281
  #@ default
282
  msgid "Settings"
283
  msgstr "Impostazioni"
284
 
285
- #: counter-core.php:1464
286
- #: counter-options.php:789
287
- #: counter.php:222
288
- #: counter.php:974
289
  #@ cpd
290
  msgid "Reads"
291
  msgstr "Visitatori"
292
 
293
- #: counter-core.php:793
294
  #@ cpd
295
  msgid "Latest Counts"
296
  msgstr "Totale corrente"
297
 
298
- #: counter-options.php:846
299
  #@ cpd
300
  msgid "Chart - Days"
301
  msgstr "Diagramma - Giorni"
302
 
303
- #: counter-options.php:850
304
  #@ cpd
305
  msgid "Chart - Height"
306
  msgstr "Diagramma - Altezza"
307
 
308
- #: counter-options.php:851
309
  #@ cpd
310
  msgid "Height of the biggest bar"
311
  msgstr "Altezza della categoria maggiore"
312
 
313
- #: counter.php:1355
314
  #@ cpd
315
  msgid "This post"
316
  msgstr "Questo articolo"
317
 
318
- #: counter-options.php:799
319
  #@ default
320
  msgid "Dashboard"
321
  msgstr "Bacheca"
322
 
323
- #: counter.php:327
324
  #@ cpd
325
  msgid "Reads per day"
326
  msgstr "Letture per giorno"
@@ -336,32 +334,32 @@ msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza sta
336
  msgid "update next"
337
  msgstr "aggiorna il prossimo"
338
 
339
- #: counter-options.php:636
340
  #@ cpd
341
  msgid "GeoIP - Countries"
342
  msgstr "GeoIP - Stati"
343
 
344
- #: counter-options.php:645
345
  #@ cpd
346
  msgid "Update old counter data"
347
  msgstr "Aggiorna i vecchi dati per gli stati"
348
 
349
- #: counter-options.php:657
350
  #@ cpd
351
  msgid "Update GeoIP database"
352
  msgstr "Aggiorna database GeoIP"
353
 
354
- #: counter-options.php:652
355
  #@ cpd
356
  msgid "Download a new version of GeoIP.dat file."
357
  msgstr "Scarica la nuova versione del file GeoIP.dat."
358
 
359
- #: counter-options.php:662
360
  #@ cpd
361
  msgid "More informations about GeoIP"
362
  msgstr "Informazioni su GeoIP"
363
 
364
- #: counter-core.php:804
365
  #@ cpd
366
  msgid "Reads per Country"
367
  msgstr "Letture per stato"
@@ -381,12 +379,12 @@ msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della
381
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
382
  msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
383
 
384
- #: counter-options.php:855
385
  #@ cpd
386
  msgid "Countries"
387
  msgstr "Stati"
388
 
389
- #: counter-options.php:856
390
  #@ cpd
391
  msgid "How many countries do you want to see on dashboard page?"
392
  msgstr "Quanti stati desideri siano visibili nella bacheca?"
@@ -397,33 +395,35 @@ msgstr "Quanti stati desideri siano visibili nella bacheca?"
397
  msgid "Mass Bots cleaned. %s counts deleted."
398
  msgstr "Mass Bots svuotato. %s totali cancellati."
399
 
400
- #: counter-options.php:417
401
  #: massbots.php:46
402
  #@ cpd
403
  msgid "Mass Bots"
404
  msgstr "Mass Bots"
405
 
406
- #: counter-options.php:421
407
  #, php-format
408
  #@ cpd
409
  msgid "Show all IPs with more than %s page views per day"
410
  msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
411
 
412
- #: counter-options.php:422
 
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "mostra"
418
 
419
- #: counter-options.php:448
420
- #: counter-options.php:464
 
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Cancella questi %s totali"
425
 
426
- #: counter.php:913
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Altro"
@@ -434,108 +434,112 @@ msgstr "Altro"
434
  msgid "Front page displays"
435
  msgstr "Mostra nella front page"
436
 
437
- #: counter-core.php:799
438
- #: counter-options.php:860
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
- #: counter-options.php:430
 
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
- #: counter-options.php:431
 
449
  #: notes.php:88
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Data"
454
 
455
- #: counter-options.php:432
 
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Client"
459
 
460
- #: counter-options.php:433
 
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Visualizzazioni"
464
 
465
- #: counter-options.php:891
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Valori di partenza"
469
 
470
- #: counter-options.php:895
471
  #@ cpd
472
  msgid "Here you can change the date of first count and add a start count."
473
  msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
474
 
475
- #: counter-options.php:899
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Data di inizio"
479
 
480
- #: counter-options.php:900
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Il vecchio contatore parte da?"
484
 
485
- #: counter-options.php:903
486
- #: counter-options.php:907
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Avvia conteggio"
490
 
491
- #: counter-options.php:904
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Aggiungi questo valore a \"Totale visitatori\"."
495
 
496
- #: counter-options.php:727
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Supporto"
500
 
501
- #: counter-core.php:754
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
505
 
506
- #: counter-core.php:755
507
  #, php-format
508
  #@ cpd
509
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
  msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
511
 
512
- #: counter.php:873
513
  #@ default
514
  msgid "Show"
515
  msgstr "Mostra"
516
 
517
- #: counter.php:1085
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr "modifica articolo"
521
 
522
- #: counter-core.php:753
523
  #, php-format
524
  #@ cpd
525
  msgid "Time for Count per Day: <code>%s</code>."
526
  msgstr "Fuso orario Count per Day: <code>%s</code>."
527
 
528
- #: counter-options.php:759
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "sino a livello utente"
532
 
533
- #: counter-core.php:796
534
  #@ default
535
  msgid "Plugin"
536
  msgstr "Plugin"
537
 
538
- #: counter.php:875
539
  #: notes.php:55
540
  #: notes.php:89
541
  #@ cpd
@@ -567,66 +571,66 @@ msgstr "cancella"
567
  msgid "edit"
568
  msgstr "modifica"
569
 
570
- #: counter-options.php:908
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Aggiungi questo valore a \"Totale letture\"."
574
 
575
- #: counter.php:218
576
- #: counter.php:1356
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Totale letture"
580
 
581
- #: counter.php:219
582
- #: counter.php:1357
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Letture odierne"
586
 
587
- #: counter.php:220
588
- #: counter.php:1358
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Letture di ieri"
592
 
593
- #: counter.php:418
594
- #: counter.php:1198
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Mappa"
598
 
599
- #: counter-options.php:778
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "IP anonimo"
603
 
604
- #: counter-options.php:782
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
- #: counter-options.php:783
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
613
 
614
- #: counter-options.php:861
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Sub-stringa user agent, separa con una virgola"
618
 
619
- #: counter-core.php:805
620
  #@ cpd
621
  msgid "Visitors per Country"
622
  msgstr "Visitatori per paese"
623
 
624
- #: counter-options.php:945
625
  #@ cpd
626
  msgid "Debug mode"
627
  msgstr "Modalità debug"
628
 
629
- #: counter-options.php:947
630
  #@ cpd
631
  msgid "Show debug informations at the bottom of all pages."
632
  msgstr "Mostra info debug al fondo di tutte le pagine."
@@ -651,472 +655,565 @@ msgstr "ID articolo"
651
  msgid "no data found"
652
  msgstr "nessun dato trovato"
653
 
654
- #: counter-options.php:639
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 "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Contatore"
663
 
664
- #: counter-options.php:872
665
  #@ cpd
666
  msgid "Local URLs"
667
  msgstr "URL locali"
668
 
669
- #: counter-options.php:873
670
  #@ cpd
671
  msgid "Show local referrers too."
672
  msgstr "Mostra anche i referenti locali."
673
 
674
- #: counter-options.php:880
675
  #@ default
676
  msgid "Posts"
677
  msgstr "Articoli"
678
 
679
- #: counter-options.php:880
680
  #@ default
681
  msgid "Pages"
682
  msgstr "Pagine"
683
 
684
- #: counter.php:1094
685
  #@ default
686
  msgid "Category"
687
  msgstr "Categoria"
688
 
689
- #: counter.php:1097
690
  #@ default
691
  msgid "Tag"
692
  msgstr "Tag"
693
 
694
- #: counter-core.php:756
695
  #@ default
696
  msgid "License"
697
  msgstr "Licenza"
698
 
699
- #: counter-core.php:800
700
  #@ cpd
701
  msgid "Referrer"
702
  msgstr "Referente"
703
 
704
- #: counter.php:1380
705
  #@ default
706
  msgid "Title"
707
  msgstr "Titolo"
708
 
709
- #: counter-options.php:789
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 "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
713
 
714
- #: counter-options.php:786
715
  #@ cpd
716
  msgid "Clients and referrers"
717
  msgstr "Client e referenti"
718
 
719
- #: counter.php:221
720
- #: counter.php:1359
721
  #@ cpd
722
  msgid "Reads last week"
723
  msgstr "Letture scorsa settimana"
724
 
725
- #: counter-core.php:791
726
- #: counter.php:1360
727
  #@ cpd
728
  msgid "Reads per month"
729
  msgstr "Letture scorso mese"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Referenti - Pubblicazioni"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Referenti - Giorni"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "I %s referenti degli ultimi %s giorni:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Visitatori online"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" é stato aggiornato alla versione %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Il backup é fallito! Non é possibile aprire il file"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Backup in corso per %s elementi. Ogni punto provvede a %s elementi."
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Backup della tabella salvato in %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Backup delle opzioni e raccolta dati salvato in %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Raccolta in corso..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Visitatori per post..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Cancellazione vecchi dati..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Computo dati collezionati sino al %s e tabella %s ottimizzati (dimensione precedente = %s &gt; attuale = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Installazione di \"Count per Day\" selezionata"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Strumenti"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Salva solo gli URL, no query string."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Chi può vedere"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "personalizzato"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "e superiore hanno il permesso per potere vedere le stat."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Imposta %s ruolo %s necessario per l'utente:"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Foglio di stile"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "NO foglio di stile nel Frontend"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Non caricare il foglio di stile \"counter.css\" nel frontend."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Backup"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Elementi per pass"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Quanti elementi salvare per pass? Predefinito: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  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."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Crea un backup della tabella %s nella cartella wp-content (se scrivibile)."
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Backup del database"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Raccogli i vecchi dati"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "La dimensione attuale della tabella %s é %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:607
912
  #@ cpd
913
  msgid "Normally new data will be added to the collection."
914
  msgstr "Generalmente, i nuovi dati saranno aggiunti alla collezione."
915
 
916
- #: counter-options.php:613
917
  #@ cpd
918
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
919
  msgstr "Cancella la vecchia raccolta e creane una nuova che contenga solamente i dati attuali della tabella."
920
 
921
- #: counter-options.php:614
922
  #, php-format
923
  #@ cpd
924
  msgid "All collected data until %s will deleted."
925
  msgstr "Tutti i dati raccolti sino al %s saranno cancellati."
926
 
927
- #: counter-options.php:619
928
  #, php-format
929
  #@ cpd
930
  msgid "Keep entries of last %s full months + current month in counter table."
931
  msgstr "Conserva nella tabella i dati per gli ultimi %s mesi completi + mese corrente."
932
 
933
- #: counter-options.php:670
934
  #@ cpd
935
  msgid "ReActivation"
936
  msgstr "Riattivazione"
937
 
938
- #: counter-options.php:673
939
  #@ cpd
940
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
941
  msgstr "Qui puoi iniziare l'installazione manuale delle funzioni.<br/>Come attivare e riattivare il plugin."
942
 
943
- #: counter-options.php:678
944
  #@ cpd
945
  msgid "ReActivate the plugin"
946
  msgstr "Riattiva il plugin"
947
 
948
- #: counter.php:228
949
- #: counter.php:998
950
  #@ cpd
951
  msgid "Visitors"
952
  msgstr "Visitatori"
953
 
954
- #: counter.php:231
955
- #: counter.php:232
956
  #@ cpd
957
  msgid "Most visited day"
958
  msgstr "Giorno maggiori visite"
959
 
960
- #: counter.php:1399
961
  #@ cpd
962
  msgid "drag and drop to sort"
963
  msgstr "drag and drop per ordinare"
964
 
965
- #: counter-core.php:795
966
- #: counter-options.php:864
967
- #: counter-options.php:868
968
  #@ cpd
969
  msgid "Search strings"
970
  msgstr ""
971
 
972
- #: counter-core.php:1114
973
  #@ cpd
974
  msgid "Your can download the backup files here and now."
975
  msgstr ""
976
 
977
- #: counter-core.php:1184
978
  #@ cpd
979
  msgid "Error while reading backup file!"
980
  msgstr ""
981
 
982
- #: counter-core.php:1188
983
  #, php-format
984
  #@ cpd
985
  msgid "The backup was added to counter table %s."
986
  msgstr ""
987
 
988
- #: counter-core.php:1190
989
  #, php-format
990
  #@ cpd
991
  msgid "The counter table %s was restored from backup."
992
  msgstr ""
993
 
994
- #: counter-core.php:1207
995
  #@ cpd
996
  msgid "Options restored from backup."
997
  msgstr ""
998
 
999
- #: counter-options.php:332
1000
  #@ cpd
1001
  msgid "Old search strings deleted"
1002
  msgstr ""
1003
 
1004
- #: counter-options.php:347
1005
  #@ cpd
1006
  msgid "Clients and referers deleted"
1007
  msgstr ""
1008
 
1009
- #: counter-options.php:483
1010
  #@ cpd
1011
  msgid "Download only"
1012
  msgstr ""
1013
 
1014
- #: counter-options.php:515
1015
  #@ cpd
1016
  msgid "Settings and collections"
1017
  msgstr ""
1018
 
1019
- #: counter-options.php:520
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Counter table %s"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:527
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Add data from the backup file %s to existing counter table?"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #@ cpd
1033
  msgid "Add"
1034
  msgstr ""
1035
 
1036
- #: counter-options.php:531
1037
  #, php-format
1038
  #@ cpd
1039
  msgid "Restore data from the backup file %s ?"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #@ default
1044
  msgid "Restore"
1045
  msgstr ""
1046
 
1047
- #: counter-options.php:533
1048
  #@ default
1049
  msgid "Delete"
1050
  msgstr ""
1051
 
1052
- #: counter-options.php:534
1053
  #, php-format
1054
  #@ cpd
1055
  msgid "Delete the backup file %s ?"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:540
1059
  #@ cpd
1060
  msgid "add backup to current counter table"
1061
  msgstr ""
1062
 
1063
- #: counter-options.php:541
1064
  #@ cpd
1065
  msgid "replace current counter table with with backup"
1066
  msgstr ""
1067
 
1068
- #: counter-options.php:542
1069
  #@ cpd
1070
  msgid "delete backup file"
1071
  msgstr ""
1072
 
1073
- #: counter-options.php:567
1074
  #, php-format
1075
  #@ cpd
1076
  msgid "Delete search strings older than %s days."
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:571
1080
  #@ cpd
1081
  msgid "Delete search strings"
1082
  msgstr ""
1083
 
1084
- #: counter-options.php:578
1085
  #, php-format
1086
  #@ cpd
1087
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:582
1091
  #@ cpd
1092
  msgid "Delete clients and referers"
1093
  msgstr ""
1094
 
1095
- #: counter-options.php:603
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Currently your collection contains data until %s."
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:41+0000\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"
25
  msgid "Options updated"
26
  msgstr "Le opzioni sono state aggiornate"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Database svuotato. %s record cancellato."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DISINSTALLA Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "La tabella %s é stata cancellata"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Le opzioni sono state cancellate"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Disinstalla"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clicca qui"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Durata del collegamento"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Utenti accreditati"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "conteggia anche loro"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Contatore-automatico"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots da ignorare"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Aggiorna le opzioni"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Svuota il database"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATTENZIONE"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sì"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Satistiche"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Totale visitatori"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Utenti attualmente in linea"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Oggi"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Ieri"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "La scorsa settimana"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Il contatore parte dal"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visitatori per giorno"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitatori per mese"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitatori per articolo"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Il contatore é stato azzerato."
226
 
227
+ #: counter-options.php:925
228
+ #: counter-options.php:929
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Quanti articoli desideri siano visibili nella bacheca?"
232
 
233
+ #: counter-options.php:928
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Totale corrente - Articoli"
237
 
238
+ #: counter-options.php:932
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Totale corrente - pagine"
242
 
243
+ #: counter-options.php:933
244
+ #: counter-options.php:937
245
+ #: counter-options.php:959
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "Quanti giorni desideri visionare a ritroso?"
249
 
250
+ #: counter-options.php:973
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Mostra nelle liste"
254
 
255
+ #: counter-options.php:974
256
  #@ cpd
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
259
 
260
+ #: counter-options.php:770
261
+ #: counter-options.php:780
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Azzera il contatore"
265
 
266
+ #: counter-options.php:773
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 "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
270
 
271
+ #: counter.php:771
272
  #, php-format
273
  #@ cpd
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "I %s articoli più letti negli ultimi %s giorni:"
276
 
277
+ #: counter-core.php:641
278
+ #: counter-options.php:409
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Impostazioni"
282
 
283
+ #: counter-core.php:1526
284
+ #: counter-options.php:869
285
+ #: counter.php:235
286
+ #: counter.php:1019
287
  #@ cpd
288
  msgid "Reads"
289
  msgstr "Visitatori"
290
 
291
+ #: counter-core.php:782
292
  #@ cpd
293
  msgid "Latest Counts"
294
  msgstr "Totale corrente"
295
 
296
+ #: counter-options.php:936
297
  #@ cpd
298
  msgid "Chart - Days"
299
  msgstr "Diagramma - Giorni"
300
 
301
+ #: counter-options.php:940
302
  #@ cpd
303
  msgid "Chart - Height"
304
  msgstr "Diagramma - Altezza"
305
 
306
+ #: counter-options.php:941
307
  #@ cpd
308
  msgid "Height of the biggest bar"
309
  msgstr "Altezza della categoria maggiore"
310
 
311
+ #: counter.php:1406
312
  #@ cpd
313
  msgid "This post"
314
  msgstr "Questo articolo"
315
 
316
+ #: counter-options.php:889
317
  #@ default
318
  msgid "Dashboard"
319
  msgstr "Bacheca"
320
 
321
+ #: counter.php:342
322
  #@ cpd
323
  msgid "Reads per day"
324
  msgstr "Letture per giorno"
334
  msgid "update next"
335
  msgstr "aggiorna il prossimo"
336
 
337
+ #: counter-options.php:720
338
  #@ cpd
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Stati"
341
 
342
+ #: counter-options.php:729
343
  #@ cpd
344
  msgid "Update old counter data"
345
  msgstr "Aggiorna i vecchi dati per gli stati"
346
 
347
+ #: counter-options.php:741
348
  #@ cpd
349
  msgid "Update GeoIP database"
350
  msgstr "Aggiorna database GeoIP"
351
 
352
+ #: counter-options.php:736
353
  #@ cpd
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Scarica la nuova versione del file GeoIP.dat."
356
 
357
+ #: counter-options.php:746
358
  #@ cpd
359
  msgid "More informations about GeoIP"
360
  msgstr "Informazioni su GeoIP"
361
 
362
+ #: counter-core.php:793
363
  #@ cpd
364
  msgid "Reads per Country"
365
  msgstr "Letture per stato"
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
+ #: counter-options.php:945
383
  #@ cpd
384
  msgid "Countries"
385
  msgstr "Stati"
386
 
387
+ #: counter-options.php:946
388
  #@ cpd
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Quanti stati desideri siano visibili nella bacheca?"
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Mass Bots svuotato. %s totali cancellati."
397
 
398
+ #: counter-options.php:429
399
  #: massbots.php:46
400
  #@ cpd
401
  msgid "Mass Bots"
402
  msgstr "Mass Bots"
403
 
404
+ #: counter-options.php:433
405
  #, php-format
406
  #@ cpd
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
+ #: counter-options.php:434
411
+ #: counter-options.php:498
412
  #: notes.php:84
413
  #: userperspan.php:56
414
  #@ cpd
415
  msgid "show"
416
  msgstr "mostra"
417
 
418
+ #: counter-options.php:460
419
+ #: counter-options.php:476
420
+ #: counter-options.php:523
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Cancella questi %s totali"
425
 
426
+ #: counter.php:958
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Altro"
434
  msgid "Front page displays"
435
  msgstr "Mostra nella front page"
436
 
437
+ #: counter-core.php:788
438
+ #: counter-options.php:950
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
+ #: counter-options.php:442
444
+ #: counter-options.php:506
445
  #@ cpd
446
  msgid "IP"
447
  msgstr "IP"
448
 
449
+ #: counter-options.php:443
450
+ #: counter-options.php:507
451
  #: notes.php:88
452
  #@ cpd
453
  #@ default
454
  msgid "Date"
455
  msgstr "Data"
456
 
457
+ #: counter-options.php:444
458
+ #: counter-options.php:508
459
  #@ cpd
460
  msgid "Client"
461
  msgstr "Client"
462
 
463
+ #: counter-options.php:445
464
+ #: counter-options.php:509
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Visualizzazioni"
468
 
469
+ #: counter-options.php:981
470
  #@ cpd
471
  msgid "Start Values"
472
  msgstr "Valori di partenza"
473
 
474
+ #: counter-options.php:985
475
  #@ cpd
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
478
 
479
+ #: counter-options.php:989
480
  #@ cpd
481
  msgid "Start date"
482
  msgstr "Data di inizio"
483
 
484
+ #: counter-options.php:990
485
  #@ cpd
486
  msgid "Your old Counter starts at?"
487
  msgstr "Il vecchio contatore parte da?"
488
 
489
+ #: counter-options.php:993
490
+ #: counter-options.php:997
491
  #@ cpd
492
  msgid "Start count"
493
  msgstr "Avvia conteggio"
494
 
495
+ #: counter-options.php:994
496
  #@ cpd
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Aggiungi questo valore a \"Totale visitatori\"."
499
 
500
+ #: counter-options.php:811
501
  #@ cpd
502
  msgid "Support"
503
  msgstr "Supporto"
504
 
505
+ #: counter-core.php:743
506
  #@ cpd
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
509
 
510
+ #: counter-core.php:744
511
  #, php-format
512
  #@ cpd
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
515
 
516
+ #: counter.php:888
517
  #@ default
518
  msgid "Show"
519
  msgstr "Mostra"
520
 
521
+ #: counter.php:1130
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "modifica articolo"
525
 
526
+ #: counter-core.php:742
527
  #, php-format
528
  #@ cpd
529
  msgid "Time for Count per Day: <code>%s</code>."
530
  msgstr "Fuso orario Count per Day: <code>%s</code>."
531
 
532
+ #: counter-options.php:839
533
  #@ cpd
534
  msgid "until User Level"
535
  msgstr "sino a livello utente"
536
 
537
+ #: counter-core.php:785
538
  #@ default
539
  msgid "Plugin"
540
  msgstr "Plugin"
541
 
542
+ #: counter.php:890
543
  #: notes.php:55
544
  #: notes.php:89
545
  #@ cpd
571
  msgid "edit"
572
  msgstr "modifica"
573
 
574
+ #: counter-options.php:998
575
  #@ cpd
576
  msgid "Add this value to \"Total reads\"."
577
  msgstr "Aggiungi questo valore a \"Totale letture\"."
578
 
579
+ #: counter.php:231
580
+ #: counter.php:1407
581
  #@ cpd
582
  msgid "Total reads"
583
  msgstr "Totale letture"
584
 
585
+ #: counter.php:232
586
+ #: counter.php:1408
587
  #@ cpd
588
  msgid "Reads today"
589
  msgstr "Letture odierne"
590
 
591
+ #: counter.php:233
592
+ #: counter.php:1409
593
  #@ cpd
594
  msgid "Reads yesterday"
595
  msgstr "Letture di ieri"
596
 
597
+ #: counter.php:433
598
+ #: counter.php:1249
599
  #@ cpd
600
  msgid "Map"
601
  msgstr "Mappa"
602
 
603
+ #: counter-options.php:858
604
  #@ cpd
605
  msgid "Anonymous IP"
606
  msgstr "IP anonimo"
607
 
608
+ #: counter-options.php:862
609
  #@ cpd
610
  msgid "Cache"
611
  msgstr "Cache"
612
 
613
+ #: counter-options.php:863
614
  #@ cpd
615
  msgid "I use a cache plugin. Count these visits with ajax."
616
  msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
617
 
618
+ #: counter-options.php:951
619
  #@ cpd
620
  msgid "Substring of the user agent, separated by comma"
621
  msgstr "Sub-stringa user agent, separa con una virgola"
622
 
623
+ #: counter-core.php:794
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Visitatori per paese"
627
 
628
+ #: counter-options.php:1035
629
  #@ cpd
630
  msgid "Debug mode"
631
  msgstr "Modalità debug"
632
 
633
+ #: counter-options.php:1037
634
  #@ cpd
635
  msgid "Show debug informations at the bottom of all pages."
636
  msgstr "Mostra info debug al fondo di tutte le pagine."
655
  msgid "no data found"
656
  msgstr "nessun dato trovato"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Contatore"
667
 
668
+ #: counter-options.php:962
669
  #@ cpd
670
  msgid "Local URLs"
671
  msgstr "URL locali"
672
 
673
+ #: counter-options.php:963
674
  #@ cpd
675
  msgid "Show local referrers too."
676
  msgstr "Mostra anche i referenti locali."
677
 
678
+ #: counter-options.php:970
679
  #@ default
680
  msgid "Posts"
681
  msgstr "Articoli"
682
 
683
+ #: counter-options.php:970
684
  #@ default
685
  msgid "Pages"
686
  msgstr "Pagine"
687
 
688
+ #: counter.php:1139
689
  #@ default
690
  msgid "Category"
691
  msgstr "Categoria"
692
 
693
+ #: counter.php:1142
694
  #@ default
695
  msgid "Tag"
696
  msgstr "Tag"
697
 
698
+ #: counter-core.php:745
699
  #@ default
700
  msgid "License"
701
  msgstr "Licenza"
702
 
703
+ #: counter-core.php:789
704
  #@ cpd
705
  msgid "Referrer"
706
  msgstr "Referente"
707
 
708
+ #: counter.php:1431
709
  #@ default
710
  msgid "Title"
711
  msgstr "Titolo"
712
 
713
+ #: counter-options.php:869
714
  #@ cpd
715
  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."
716
  msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
717
 
718
+ #: counter-options.php:866
719
  #@ cpd
720
  msgid "Clients and referrers"
721
  msgstr "Client e referenti"
722
 
723
+ #: counter.php:234
724
+ #: counter.php:1410
725
  #@ cpd
726
  msgid "Reads last week"
727
  msgstr "Letture scorsa settimana"
728
 
729
+ #: counter-core.php:780
730
+ #: counter.php:1411
731
  #@ cpd
732
  msgid "Reads per month"
733
  msgstr "Letture scorso mese"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Referenti - Pubblicazioni"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Referenti - Giorni"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "I %s referenti degli ultimi %s giorni:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Visitatori online"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" é stato aggiornato alla versione %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Il backup é fallito! Non é possibile aprire il file"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "Backup della tabella salvato in %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Backup delle opzioni e raccolta dati salvato in %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Raccolta in corso..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Visitatori per post..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Computo dati collezionati sino al %s e tabella %s ottimizzati (dimensione precedente = %s &gt; attuale = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Installazione di \"Count per Day\" selezionata"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Strumenti"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Salva solo gli URL, no query string."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Chi può vedere"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "personalizzato"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "e superiore hanno il permesso per potere vedere le stat."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Imposta %s ruolo %s necessario per l'utente:"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Foglio di stile"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "NO foglio di stile nel Frontend"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Non caricare il foglio di stile \"counter.css\" nel frontend."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Backup"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Elementi per pass"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Quanti elementi salvare per pass? Predefinito: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  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."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Crea un backup della tabella %s nella cartella wp-content (se scrivibile)."
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Backup del database"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Raccogli i vecchi dati"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "La dimensione attuale della tabella %s é %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:691
904
  #@ cpd
905
  msgid "Normally new data will be added to the collection."
906
  msgstr "Generalmente, i nuovi dati saranno aggiunti alla collezione."
907
 
908
+ #: counter-options.php:697
909
  #@ cpd
910
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
911
  msgstr "Cancella la vecchia raccolta e creane una nuova che contenga solamente i dati attuali della tabella."
912
 
913
+ #: counter-options.php:698
914
  #, php-format
915
  #@ cpd
916
  msgid "All collected data until %s will deleted."
917
  msgstr "Tutti i dati raccolti sino al %s saranno cancellati."
918
 
919
+ #: counter-options.php:703
920
  #, php-format
921
  #@ cpd
922
  msgid "Keep entries of last %s full months + current month in counter table."
923
  msgstr "Conserva nella tabella i dati per gli ultimi %s mesi completi + mese corrente."
924
 
925
+ #: counter-options.php:754
926
  #@ cpd
927
  msgid "ReActivation"
928
  msgstr "Riattivazione"
929
 
930
+ #: counter-options.php:757
931
  #@ cpd
932
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
933
  msgstr "Qui puoi iniziare l'installazione manuale delle funzioni.<br/>Come attivare e riattivare il plugin."
934
 
935
+ #: counter-options.php:762
936
  #@ cpd
937
  msgid "ReActivate the plugin"
938
  msgstr "Riattiva il plugin"
939
 
940
+ #: counter.php:241
941
+ #: counter.php:1043
942
  #@ cpd
943
  msgid "Visitors"
944
  msgstr "Visitatori"
945
 
946
+ #: counter.php:244
947
+ #: counter.php:245
948
  #@ cpd
949
  msgid "Most visited day"
950
  msgstr "Giorno maggiori visite"
951
 
952
+ #: counter.php:1450
953
  #@ cpd
954
  msgid "drag and drop to sort"
955
  msgstr "drag and drop per ordinare"
956
 
957
+ #: counter-core.php:784
958
+ #: counter-options.php:954
959
+ #: counter-options.php:958
960
  #@ cpd
961
  msgid "Search strings"
962
  msgstr ""
963
 
964
+ #: counter-core.php:1176
965
  #@ cpd
966
  msgid "Your can download the backup files here and now."
967
  msgstr ""
968
 
969
+ #: counter-core.php:1246
970
  #@ cpd
971
  msgid "Error while reading backup file!"
972
  msgstr ""
973
 
974
+ #: counter-core.php:1250
975
  #, php-format
976
  #@ cpd
977
  msgid "The backup was added to counter table %s."
978
  msgstr ""
979
 
980
+ #: counter-core.php:1252
981
  #, php-format
982
  #@ cpd
983
  msgid "The counter table %s was restored from backup."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1269
987
  #@ cpd
988
  msgid "Options restored from backup."
989
  msgstr ""
990
 
991
+ #: counter-options.php:337
992
  #@ cpd
993
  msgid "Old search strings deleted"
994
  msgstr ""
995
 
996
+ #: counter-options.php:352
997
  #@ cpd
998
  msgid "Clients and referers deleted"
999
  msgstr ""
1000
 
1001
+ #: counter-options.php:567
1002
  #@ cpd
1003
  msgid "Download only"
1004
  msgstr ""
1005
 
1006
+ #: counter-options.php:599
1007
  #@ cpd
1008
  msgid "Settings and collections"
1009
  msgstr ""
1010
 
1011
+ #: counter-options.php:604
1012
  #, php-format
1013
  #@ cpd
1014
  msgid "Counter table %s"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:611
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Add data from the backup file %s to existing counter table?"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #@ cpd
1025
  msgid "Add"
1026
  msgstr ""
1027
 
1028
+ #: counter-options.php:615
1029
  #, php-format
1030
  #@ cpd
1031
  msgid "Restore data from the backup file %s ?"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #@ default
1036
  msgid "Restore"
1037
  msgstr ""
1038
 
1039
+ #: counter-options.php:617
1040
  #@ default
1041
  msgid "Delete"
1042
  msgstr ""
1043
 
1044
+ #: counter-options.php:618
1045
  #, php-format
1046
  #@ cpd
1047
  msgid "Delete the backup file %s ?"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:624
1051
  #@ cpd
1052
  msgid "add backup to current counter table"
1053
  msgstr ""
1054
 
1055
+ #: counter-options.php:625
1056
  #@ cpd
1057
  msgid "replace current counter table with with backup"
1058
  msgstr ""
1059
 
1060
+ #: counter-options.php:626
1061
  #@ cpd
1062
  msgid "delete backup file"
1063
  msgstr ""
1064
 
1065
+ #: counter-options.php:651
1066
  #, php-format
1067
  #@ cpd
1068
  msgid "Delete search strings older than %s days."
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:655
1072
  #@ cpd
1073
  msgid "Delete search strings"
1074
  msgstr ""
1075
 
1076
+ #: counter-options.php:662
1077
  #, php-format
1078
  #@ cpd
1079
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:666
1083
  #@ cpd
1084
  msgid "Delete clients and referers"
1085
  msgstr ""
1086
 
1087
+ #: counter-options.php:687
1088
  #, php-format
1089
  #@ cpd
1090
  msgid "Currently your collection contains data until %s."
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-lt_LT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:10+0000\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"
@@ -25,297 +25,295 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Parinktys atnaujintos"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Duomenų bazė išvalyta. Ištrinta eilučių %s."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "PAŠALINTI dienos skaičių"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Lentelė %s pašalinta"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Parinktys ištrintos"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Pašalinti"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Spauskite čia"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "baigti pašalinimą ir išjungti \"Skaičius per dieną\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Online laikas"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Online skaičius sekundėse. Panaudota iš \"Lankytojų online\" puslapio prietaisų skydelio."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Prisijungę vartotojai"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "taipogi skaičiuoti"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Automatinis skaičiuotuvas"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Automatiškas vienos žinutės ir puslapių skaičiavimas, nereikalauja pakeitimų šablone."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botus ignoruoti"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atnaujinti parinktis"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Išvalyti duomenų bazę"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Jeigu \"Kasdienis skaičiavimas\" tik atjungia duomenų bazės lenteles, tai bus užšaldytas."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Čia galite ištrinti lenteles ir išjungti \"Kasdienį skaičiavimą\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "DĖMESIO"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Šios lentelės (su VISOM skaičiavimo duomenim) bus ištrintos."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Jeigu \"Kasdienis skaičiavimas\" įdiegtas iš naujo, skaitiklis prasideda 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Taip"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Jūs esate tikras, kad norite išjungti Kasdienį Skaičiavimą ir ištrinti visus duomenis?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistika"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Viso lankytojų"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Šiuo metu lankytojų svetainėje"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Lankytojų šiandien"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Lankytojų vakar"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Lankytojų praeitą savaitę"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Skaitiklis prasideda nuo"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Lankytojų per dieną"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Lankytojų per mėnesį"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Žinutės lankytojai"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Skaitliukas išvalytas."
227
 
228
- #: counter-options.php:799
229
  #@ default
230
  msgid "Dashboard"
231
  msgstr "Konsolė"
232
 
233
- #: counter-options.php:835
234
- #: counter-options.php:839
235
  #@ cpd
236
  msgid "How many posts do you want to see on dashboard page?"
237
  msgstr "Kiek žinučių jūs norite pamatyti ant prietaisų skydelio puslapyje?"
238
 
239
- #: counter-options.php:838
240
  #@ cpd
241
  msgid "Latest Counts - Posts"
242
  msgstr "Paskutiniai skaitliukai - žinutės"
243
 
244
- #: counter-options.php:842
245
  #@ cpd
246
  msgid "Latest Counts - Days"
247
  msgstr "Paskutiniai skaitliukai - Dienos"
248
 
249
- #: counter-options.php:843
250
- #: counter-options.php:847
251
- #: counter-options.php:869
252
  #@ cpd
253
  msgid "How many days do you want look back?"
254
  msgstr "Kiek dienų atgal jūs norite peržiūrėti?"
255
 
256
- #: counter-options.php:846
257
  #@ cpd
258
  msgid "Chart - Days"
259
  msgstr "Diagrama - dienos"
260
 
261
- #: counter-options.php:850
262
  #@ cpd
263
  msgid "Chart - Height"
264
  msgstr "Diagrama - Aukštis"
265
 
266
- #: counter-options.php:851
267
  #@ cpd
268
  msgid "Height of the biggest bar"
269
  msgstr "Didžiausio baro aukštis"
270
 
271
- #: counter-options.php:883
272
  #@ cpd
273
  msgid "Show in lists"
274
  msgstr "Rodyti sąrašuose"
275
 
276
- #: counter-options.php:884
277
  #@ cpd
278
  msgid "Show \"Reads per Post\" in a new column in post management views."
279
  msgstr "Rodyti \"Žinutės skaitymai \" naujame stulpelyje žinutės peržiūrų valdyme."
280
 
281
- #: counter-options.php:686
282
- #: counter-options.php:696
283
  #@ cpd
284
  msgid "Reset the counter"
285
  msgstr "Atstatyti skaitliuką"
286
 
287
- #: counter-options.php:689
288
  #@ cpd
289
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
  msgstr "Skaitiklį galite atkurti tuščia lentele. VISOS su 0! <br /> Padarykite atsarginę kopiją, jei jums reikia dabartinių duomenų!"
291
 
292
- #: counter.php:756
293
  #, php-format
294
  #@ cpd
295
  msgid "The %s most visited posts in last %s days:"
296
  msgstr "Paskutinių %s dienų labiausiai %s lankomų žinučių:"
297
 
298
- #: counter-core.php:652
299
- #: counter-options.php:401
300
- #: counter-options.php:740
301
  #@ default
302
  msgid "Settings"
303
  msgstr "Nustatymai"
304
 
305
- #: counter.php:327
306
  #@ cpd
307
  msgid "Reads per day"
308
  msgstr "Skaitymų per dieną"
309
 
310
- #: counter-core.php:1464
311
- #: counter-options.php:789
312
- #: counter.php:222
313
- #: counter.php:974
314
  #@ cpd
315
  msgid "Reads"
316
  msgstr "Skaitymų"
317
 
318
- #: counter.php:1355
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "Ši žinutė"
@@ -337,188 +335,194 @@ msgstr "Atnaujinti sekantį"
337
  msgid "Mass Bots cleaned. %s counts deleted."
338
  msgstr "Botų lentelė išvalyta. %s išbraukta."
339
 
340
- #: counter-options.php:759
341
  #@ cpd
342
  msgid "until User Level"
343
  msgstr "iki vartotojo lygmens"
344
 
345
- #: counter-options.php:778
346
  #@ cpd
347
  msgid "Anonymous IP"
348
  msgstr "Anoniminis IP"
349
 
350
- #: counter-options.php:855
351
  #@ cpd
352
  msgid "Countries"
353
  msgstr "Šalys"
354
 
355
- #: counter-options.php:856
356
  #@ cpd
357
  msgid "How many countries do you want to see on dashboard page?"
358
  msgstr "Kiek šalių tu nori matyti puslapyje prietaisų skydelyje?"
359
 
360
- #: counter-options.php:891
361
  #@ cpd
362
  msgid "Start Values"
363
  msgstr "Pradėti reikšmes"
364
 
365
- #: counter-options.php:895
366
  #@ cpd
367
  msgid "Here you can change the date of first count and add a start count."
368
  msgstr "Čia galite pakeisti pirmo skaičiavimo datą ir pradėti skaičiavimą."
369
 
370
- #: counter-options.php:899
371
  #@ cpd
372
  msgid "Start date"
373
  msgstr "Pradėti datą"
374
 
375
- #: counter-options.php:900
376
  #@ cpd
377
  msgid "Your old Counter starts at?"
378
  msgstr "Jūsų senas skaitliukas prasideda nuo?"
379
 
380
- #: counter-options.php:903
381
- #: counter-options.php:907
382
  #@ cpd
383
  msgid "Start count"
384
  msgstr "Pradėti skaičiavimą"
385
 
386
- #: counter-options.php:904
387
  #@ cpd
388
  msgid "Add this value to \"Total visitors\"."
389
  msgstr "Pridėti šią reikšmę \"Iš viso apsilankė\"."
390
 
391
- #: counter-options.php:636
392
  #@ cpd
393
  msgid "GeoIP - Countries"
394
  msgstr "GeoIP - Šalys"
395
 
396
- #: counter-options.php:645
397
  #@ cpd
398
  msgid "Update old counter data"
399
  msgstr "Atnaujinti senus skaitliuko duomenis"
400
 
401
- #: counter-options.php:657
402
  #@ cpd
403
  msgid "Update GeoIP database"
404
  msgstr "Atnaujinti GeoIP duomenų bazę"
405
 
406
- #: counter-options.php:652
407
  #@ cpd
408
  msgid "Download a new version of GeoIP.dat file."
409
  msgstr "Atsisiųsti naują GeoIP.dat failo versiją."
410
 
411
- #: counter-options.php:662
412
  #@ cpd
413
  msgid "More informations about GeoIP"
414
  msgstr "Daugiau informacijos apie GeoIP"
415
 
416
- #: counter-options.php:417
417
  #: massbots.php:46
418
  #@ cpd
419
  msgid "Mass Bots"
420
  msgstr "Botai"
421
 
422
- #: counter-options.php:421
423
  #, php-format
424
  #@ cpd
425
  msgid "Show all IPs with more than %s page views per day"
426
  msgstr "Rodyti visus IP su daugiau nei %s peržiūrų per parą"
427
 
428
- #: counter-options.php:422
 
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "parodyti"
434
 
435
- #: counter-options.php:430
 
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
- #: counter-options.php:431
 
441
  #: notes.php:88
442
  #@ cpd
443
  #@ default
444
  msgid "Date"
445
  msgstr "Data"
446
 
447
- #: counter-options.php:432
 
448
  #@ cpd
449
  msgid "Client"
450
  msgstr "Klientas"
451
 
452
- #: counter-options.php:433
 
453
  #@ cpd
454
  msgid "Views"
455
  msgstr "Peržiūrų"
456
 
457
- #: counter-options.php:448
458
- #: counter-options.php:464
 
459
  #, php-format
460
  #@ cpd
461
  msgid "Delete these %s counts"
462
  msgstr "Pašalinti šiuos %s skaitliukų"
463
 
464
- #: counter-options.php:727
465
  #@ cpd
466
  msgid "Support"
467
  msgstr "Palaikymas"
468
 
469
- #: counter-core.php:753
470
  #, php-format
471
  #@ cpd
472
  msgid "Time for Count per Day: <code>%s</code>."
473
  msgstr "Laikas skaičiaus per dieną: <code>%s</code>"
474
 
475
- #: counter-core.php:754
476
  #@ cpd
477
  msgid "Bug? Problem? Question? Hint? Praise?"
478
  msgstr "Klaida? Problema? Klausimas? Patarimas? Pagirimas?"
479
 
480
- #: counter-core.php:755
481
  #, php-format
482
  #@ cpd
483
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
  msgstr "Rašyti komentarą <a href=\"%s\">įskiepio puslapyje</a> ."
485
 
486
- #: counter.php:218
487
- #: counter.php:1356
488
  #@ cpd
489
  msgid "Total reads"
490
  msgstr "Viso skaityta"
491
 
492
- #: counter.php:219
493
- #: counter.php:1357
494
  #@ cpd
495
  msgid "Reads today"
496
  msgstr "Skaityta šiandien"
497
 
498
- #: counter.php:220
499
- #: counter.php:1358
500
  #@ cpd
501
  msgid "Reads yesterday"
502
  msgstr "Vakar skaityta"
503
 
504
- #: counter.php:875
505
  #: notes.php:55
506
  #: notes.php:89
507
  #@ cpd
508
  msgid "Notes"
509
  msgstr "Pastabos"
510
 
511
- #: counter.php:873
512
  #@ default
513
  msgid "Show"
514
  msgstr "Parodyti"
515
 
516
- #: counter.php:913
517
  #@ cpd
518
  msgid "Other"
519
  msgstr "Kiti"
520
 
521
- #: counter.php:1085
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Redaguoti žinutę"
@@ -529,29 +533,29 @@ msgstr "Redaguoti žinutę"
529
  msgid "Front page displays"
530
  msgstr "Pirminio puslapio rodymas"
531
 
532
- #: counter-core.php:799
533
- #: counter-options.php:860
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "Naršyklės"
537
 
538
- #: counter-core.php:793
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "Paskutinieji skaičiavimai"
542
 
543
- #: counter-core.php:796
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "Įskiepis"
547
 
548
- #: counter-core.php:804
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "Peržiūrų per šalis"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Žemėlapis"
@@ -596,32 +600,32 @@ msgstr "pašalinti"
596
  msgid "edit"
597
  msgstr "redaguoti"
598
 
599
- #: counter-options.php:782
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "Talpykla"
603
 
604
- #: counter-options.php:783
605
  #@ cpd
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "Aš naudojutalpinamą įskiepį. Skaičiuoti šiuos apsilankymus ajax pagalba."
608
 
609
- #: counter-options.php:861
610
  #@ cpd
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "Vartotojo agento fragmentas, atskirtas kableliais"
613
 
614
- #: counter-options.php:945
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "Derinimo režimu"
618
 
619
- #: counter-options.php:947
620
  #@ cpd
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "Rodyti derinimo informacijas visų puslapių apačioje."
623
 
624
- #: counter-core.php:805
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Vartotojai pagal šalis"
@@ -641,12 +645,12 @@ msgstr "Pabaiga"
641
  msgid "PostID"
642
  msgstr "ŽinutėsID"
643
 
644
- #: counter-options.php:908
645
  #@ cpd
646
  msgid "Add this value to \"Total reads\"."
647
  msgstr "Pridėti šią reikšmę, \"Viso skaityta\"."
648
 
649
- #: counter-options.php:639
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 "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrinti IP adresą prieš GeoIP duomenų bazę. Tai gali užtrukti!"
@@ -656,467 +660,560 @@ msgstr "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrint
656
  msgid "no data found"
657
  msgstr "Nėra duomenų"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Skaitliukas"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Klientai ir referalai"
668
 
669
- #: counter-options.php:789
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 "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."
673
 
674
- #: counter-options.php:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Vietiniai URL"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Taipat rodyti vietinisu referalus."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Žinutės"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Puslapiai"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Skaitymų praeitą savaitę"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Kategorija"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Žyma"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "Licenzija"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Skaitymų per mėnesį"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Referalas"
725
 
726
- #: counter-options.php:864
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "Referalai - Įrašai"
730
 
731
- #: counter-options.php:865
732
  #@ cpd
733
  msgid "How many referrers do you want to see on dashboard page?"
734
  msgstr "Kiek referalų jūs norite pamatyti puslapio prietaisų skydelyje?"
735
 
736
- #: counter-options.php:868
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "Referalai - Dienos"
740
 
741
- #: counter.php:944
742
  #, php-format
743
  #@ cpd
744
  msgid "The %s referrers in last %s days:"
745
  msgstr "%s referalų paskutinius %s dienų:"
746
 
747
- #: counter-core.php:789
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "Lankytojų svetainėje"
751
 
752
- #: counter.php:1380
753
  #@ default
754
  msgid "Title"
755
  msgstr "Pavadinimas"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
- #: counter-core.php:795
764
- #: counter-options.php:864
765
- #: counter-options.php:868
766
  #@ cpd
767
  msgid "Search strings"
768
  msgstr ""
769
 
770
- #: counter-core.php:1000
771
  #@ cpd
772
  msgid "Backup failed! Cannot open file"
773
  msgstr ""
774
 
775
- #: counter-core.php:1027
776
- #, php-format
777
- #@ cpd
778
- msgid "Backup of %s entries in progress. Every point complies %s entries."
779
- msgstr ""
780
-
781
- #: counter-core.php:1114
782
  #@ cpd
783
  msgid "Your can download the backup files here and now."
784
  msgstr ""
785
 
786
- #: counter-core.php:1118
787
- #: counter-core.php:1126
788
  #, php-format
789
  #@ cpd
790
  msgid "Backup of counter table saved in %s."
791
  msgstr ""
792
 
793
- #: counter-core.php:1120
794
- #: counter-core.php:1128
795
  #, php-format
796
  #@ cpd
797
  msgid "Backup of counter options and collection saved in %s."
798
  msgstr ""
799
 
800
- #: counter-core.php:1184
801
  #@ cpd
802
  msgid "Error while reading backup file!"
803
  msgstr ""
804
 
805
- #: counter-core.php:1188
806
  #, php-format
807
  #@ cpd
808
  msgid "The backup was added to counter table %s."
809
  msgstr ""
810
 
811
- #: counter-core.php:1190
812
  #, php-format
813
  #@ cpd
814
  msgid "The counter table %s was restored from backup."
815
  msgstr ""
816
 
817
- #: counter-core.php:1207
818
  #@ cpd
819
  msgid "Options restored from backup."
820
  msgstr ""
821
 
822
- #: counter-options.php:169
823
  #@ cpd
824
  msgid "Collection in progress..."
825
  msgstr ""
826
 
827
- #: counter-options.php:263
828
  #@ cpd
829
  msgid "Get Visitors per Post..."
830
  msgstr ""
831
 
832
- #: counter-options.php:284
833
- #@ cpd
834
- msgid "Delete old data..."
835
- msgstr ""
836
-
837
- #: counter-options.php:308
838
  #, php-format
839
  #@ cpd
840
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
841
  msgstr ""
842
 
843
- #: counter-options.php:317
844
  #@ cpd
845
  msgid "Installation of \"Count per Day\" checked"
846
  msgstr ""
847
 
848
- #: counter-options.php:332
849
  #@ cpd
850
  msgid "Old search strings deleted"
851
  msgstr ""
852
 
853
- #: counter-options.php:347
854
  #@ cpd
855
  msgid "Clients and referers deleted"
856
  msgstr ""
857
 
858
- #: counter-options.php:400
859
- #: counter-options.php:739
860
  #@ default
861
  msgid "Tools"
862
  msgstr ""
863
 
864
- #: counter-options.php:476
865
- #: counter-options.php:926
866
  #@ cpd
867
  msgid "Backup"
868
  msgstr ""
869
 
870
- #: counter-options.php:480
871
  #, php-format
872
  #@ cpd
873
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
874
  msgstr ""
875
 
876
- #: counter-options.php:483
877
  #@ cpd
878
  msgid "Download only"
879
  msgstr ""
880
 
881
- #: counter-options.php:487
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
- #: counter-options.php:515
887
  #@ cpd
888
  msgid "Settings and collections"
889
  msgstr ""
890
 
891
- #: counter-options.php:520
892
  #, php-format
893
  #@ cpd
894
  msgid "Counter table %s"
895
  msgstr ""
896
 
897
- #: counter-options.php:527
898
  #, php-format
899
  #@ cpd
900
  msgid "Add data from the backup file %s to existing counter table?"
901
  msgstr ""
902
 
903
- #: counter-options.php:527
904
  #@ cpd
905
  msgid "Add"
906
  msgstr ""
907
 
908
- #: counter-options.php:531
909
  #, php-format
910
  #@ cpd
911
  msgid "Restore data from the backup file %s ?"
912
  msgstr ""
913
 
914
- #: counter-options.php:531
915
  #@ default
916
  msgid "Restore"
917
  msgstr ""
918
 
919
- #: counter-options.php:533
920
  #@ default
921
  msgid "Delete"
922
  msgstr ""
923
 
924
- #: counter-options.php:534
925
  #, php-format
926
  #@ cpd
927
  msgid "Delete the backup file %s ?"
928
  msgstr ""
929
 
930
- #: counter-options.php:540
931
  #@ cpd
932
  msgid "add backup to current counter table"
933
  msgstr ""
934
 
935
- #: counter-options.php:541
936
  #@ cpd
937
  msgid "replace current counter table with with backup"
938
  msgstr ""
939
 
940
- #: counter-options.php:542
941
  #@ cpd
942
  msgid "delete backup file"
943
  msgstr ""
944
 
945
- #: counter-options.php:567
946
  #, php-format
947
  #@ cpd
948
  msgid "Delete search strings older than %s days."
949
  msgstr ""
950
 
951
- #: counter-options.php:571
952
  #@ cpd
953
  msgid "Delete search strings"
954
  msgstr ""
955
 
956
- #: counter-options.php:577
957
- #: counter-options.php:596
958
  #, php-format
959
  #@ cpd
960
  msgid "Current size of your counter table %s is %s."
961
  msgstr ""
962
 
963
- #: counter-options.php:578
964
  #, php-format
965
  #@ cpd
966
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
967
  msgstr ""
968
 
969
- #: counter-options.php:582
970
  #@ cpd
971
  msgid "Delete clients and referers"
972
  msgstr ""
973
 
974
- #: counter-options.php:591
975
- #: counter-options.php:623
976
  #@ cpd
977
  msgid "Collect old data"
978
  msgstr ""
979
 
980
- #: counter-options.php:598
981
  #@ cpd
982
  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."
983
  msgstr ""
984
 
985
- #: counter-options.php:603
986
  #, php-format
987
  #@ cpd
988
  msgid "Currently your collection contains data until %s."
989
  msgstr ""
990
 
991
- #: counter-options.php:607
992
  #@ cpd
993
  msgid "Normally new data will be added to the collection."
994
  msgstr ""
995
 
996
- #: counter-options.php:613
997
  #@ cpd
998
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
999
  msgstr ""
1000
 
1001
- #: counter-options.php:614
1002
  #, php-format
1003
  #@ cpd
1004
  msgid "All collected data until %s will deleted."
1005
  msgstr ""
1006
 
1007
- #: counter-options.php:619
1008
  #, php-format
1009
  #@ cpd
1010
  msgid "Keep entries of last %s full months + current month in counter table."
1011
  msgstr ""
1012
 
1013
- #: counter-options.php:670
1014
  #@ cpd
1015
  msgid "ReActivation"
1016
  msgstr ""
1017
 
1018
- #: counter-options.php:673
1019
  #@ cpd
1020
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1021
  msgstr ""
1022
 
1023
- #: counter-options.php:678
1024
  #@ cpd
1025
  msgid "ReActivate the plugin"
1026
  msgstr ""
1027
 
1028
- #: counter-options.php:791
1029
  #@ cpd
1030
  msgid "Save URL only, no query string."
1031
  msgstr ""
1032
 
1033
- #: counter-options.php:815
1034
  #@ cpd
1035
  msgid "Who can see it"
1036
  msgstr ""
1037
 
1038
- #: counter-options.php:824
1039
  #@ cpd
1040
  msgid "custom"
1041
  msgstr ""
1042
 
1043
- #: counter-options.php:826
1044
  #@ cpd
1045
  msgid "and higher are allowed to see the statistics page."
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:828
1049
  #, php-format
1050
  #@ cpd
1051
  msgid "Set the %s capability %s a user need:"
1052
  msgstr ""
1053
 
1054
- #: counter-options.php:915
1055
  #@ cpd
1056
  msgid "Stylesheet"
1057
  msgstr ""
1058
 
1059
- #: counter-options.php:918
1060
  #@ cpd
1061
  msgid "NO Stylesheet in Frontend"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:919
1065
  #@ cpd
1066
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:929
1070
  #@ cpd
1071
  msgid "Entries per pass"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:932
1075
  #@ cpd
1076
  msgid "How many entries should be saved per pass? Default: 10000"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:937
1080
  #@ cpd
1081
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
1082
  msgstr ""
1083
 
1084
- #: counter.php:228
1085
- #: counter.php:998
1086
  #@ cpd
1087
  msgid "Visitors"
1088
  msgstr ""
1089
 
1090
- #: counter.php:231
1091
- #: counter.php:232
1092
  #@ cpd
1093
  msgid "Most visited day"
1094
  msgstr ""
1095
 
1096
- #: counter.php:1100
1097
  #@ default
1098
  msgid "Front page"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1142
1102
  #, php-format
1103
  #@ cpd
1104
  msgid "The %s most searched strings:"
1105
  msgstr ""
1106
 
1107
- #: counter.php:1151
1108
  #, php-format
1109
  #@ cpd
1110
  msgid "The search strings of the last %s days:"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1315
1114
  #@ default
1115
  msgid "_name"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1399
1119
  #@ cpd
1120
  msgid "drag and drop to sort"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:46+0000\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"
25
  msgid "Options updated"
26
  msgstr "Parinktys atnaujintos"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Duomenų bazė išvalyta. Ištrinta eilučių %s."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "PAŠALINTI dienos skaičių"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Lentelė %s pašalinta"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Parinktys ištrintos"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Pašalinti"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Spauskite čia"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "baigti pašalinimą ir išjungti \"Skaičius per dieną\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Online laikas"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Online skaičius sekundėse. Panaudota iš \"Lankytojų online\" puslapio prietaisų skydelio."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Prisijungę vartotojai"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "taipogi skaičiuoti"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Automatinis skaičiuotuvas"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Automatiškas vienos žinutės ir puslapių skaičiavimas, nereikalauja pakeitimų šablone."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botus ignoruoti"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atnaujinti parinktis"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Išvalyti duomenų bazę"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Jeigu \"Kasdienis skaičiavimas\" tik atjungia duomenų bazės lenteles, tai bus užšaldytas."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Čia galite ištrinti lenteles ir išjungti \"Kasdienį skaičiavimą\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "DĖMESIO"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Šios lentelės (su VISOM skaičiavimo duomenim) bus ištrintos."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Jeigu \"Kasdienis skaičiavimas\" įdiegtas iš naujo, skaitiklis prasideda 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Taip"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Jūs esate tikras, kad norite išjungti Kasdienį Skaičiavimą ir ištrinti visus duomenis?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistika"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Viso lankytojų"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Šiuo metu lankytojų svetainėje"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Lankytojų šiandien"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Lankytojų vakar"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Lankytojų praeitą savaitę"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Skaitiklis prasideda nuo"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Lankytojų per dieną"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Lankytojų per mėnesį"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Žinutės lankytojai"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Skaitliukas išvalytas."
226
 
227
+ #: counter-options.php:889
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Konsolė"
231
 
232
+ #: counter-options.php:925
233
+ #: counter-options.php:929
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Kiek žinučių jūs norite pamatyti ant prietaisų skydelio puslapyje?"
237
 
238
+ #: counter-options.php:928
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Paskutiniai skaitliukai - žinutės"
242
 
243
+ #: counter-options.php:932
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Paskutiniai skaitliukai - Dienos"
247
 
248
+ #: counter-options.php:933
249
+ #: counter-options.php:937
250
+ #: counter-options.php:959
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Kiek dienų atgal jūs norite peržiūrėti?"
254
 
255
+ #: counter-options.php:936
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Diagrama - dienos"
259
 
260
+ #: counter-options.php:940
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Diagrama - Aukštis"
264
 
265
+ #: counter-options.php:941
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Didžiausio baro aukštis"
269
 
270
+ #: counter-options.php:973
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Rodyti sąrašuose"
274
 
275
+ #: counter-options.php:974
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Rodyti \"Žinutės skaitymai \" naujame stulpelyje žinutės peržiūrų valdyme."
279
 
280
+ #: counter-options.php:770
281
+ #: counter-options.php:780
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Atstatyti skaitliuką"
285
 
286
+ #: counter-options.php:773
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 "Skaitiklį galite atkurti tuščia lentele. VISOS su 0! <br /> Padarykite atsarginę kopiją, jei jums reikia dabartinių duomenų!"
290
 
291
+ #: counter.php:771
292
  #, php-format
293
  #@ cpd
294
  msgid "The %s most visited posts in last %s days:"
295
  msgstr "Paskutinių %s dienų labiausiai %s lankomų žinučių:"
296
 
297
+ #: counter-core.php:641
298
+ #: counter-options.php:409
 
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Nustatymai"
302
 
303
+ #: counter.php:342
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Skaitymų per dieną"
307
 
308
+ #: counter-core.php:1526
309
+ #: counter-options.php:869
310
+ #: counter.php:235
311
+ #: counter.php:1019
312
  #@ cpd
313
  msgid "Reads"
314
  msgstr "Skaitymų"
315
 
316
+ #: counter.php:1406
317
  #@ cpd
318
  msgid "This post"
319
  msgstr "Ši žinutė"
335
  msgid "Mass Bots cleaned. %s counts deleted."
336
  msgstr "Botų lentelė išvalyta. %s išbraukta."
337
 
338
+ #: counter-options.php:839
339
  #@ cpd
340
  msgid "until User Level"
341
  msgstr "iki vartotojo lygmens"
342
 
343
+ #: counter-options.php:858
344
  #@ cpd
345
  msgid "Anonymous IP"
346
  msgstr "Anoniminis IP"
347
 
348
+ #: counter-options.php:945
349
  #@ cpd
350
  msgid "Countries"
351
  msgstr "Šalys"
352
 
353
+ #: counter-options.php:946
354
  #@ cpd
355
  msgid "How many countries do you want to see on dashboard page?"
356
  msgstr "Kiek šalių tu nori matyti puslapyje prietaisų skydelyje?"
357
 
358
+ #: counter-options.php:981
359
  #@ cpd
360
  msgid "Start Values"
361
  msgstr "Pradėti reikšmes"
362
 
363
+ #: counter-options.php:985
364
  #@ cpd
365
  msgid "Here you can change the date of first count and add a start count."
366
  msgstr "Čia galite pakeisti pirmo skaičiavimo datą ir pradėti skaičiavimą."
367
 
368
+ #: counter-options.php:989
369
  #@ cpd
370
  msgid "Start date"
371
  msgstr "Pradėti datą"
372
 
373
+ #: counter-options.php:990
374
  #@ cpd
375
  msgid "Your old Counter starts at?"
376
  msgstr "Jūsų senas skaitliukas prasideda nuo?"
377
 
378
+ #: counter-options.php:993
379
+ #: counter-options.php:997
380
  #@ cpd
381
  msgid "Start count"
382
  msgstr "Pradėti skaičiavimą"
383
 
384
+ #: counter-options.php:994
385
  #@ cpd
386
  msgid "Add this value to \"Total visitors\"."
387
  msgstr "Pridėti šią reikšmę \"Iš viso apsilankė\"."
388
 
389
+ #: counter-options.php:720
390
  #@ cpd
391
  msgid "GeoIP - Countries"
392
  msgstr "GeoIP - Šalys"
393
 
394
+ #: counter-options.php:729
395
  #@ cpd
396
  msgid "Update old counter data"
397
  msgstr "Atnaujinti senus skaitliuko duomenis"
398
 
399
+ #: counter-options.php:741
400
  #@ cpd
401
  msgid "Update GeoIP database"
402
  msgstr "Atnaujinti GeoIP duomenų bazę"
403
 
404
+ #: counter-options.php:736
405
  #@ cpd
406
  msgid "Download a new version of GeoIP.dat file."
407
  msgstr "Atsisiųsti naują GeoIP.dat failo versiją."
408
 
409
+ #: counter-options.php:746
410
  #@ cpd
411
  msgid "More informations about GeoIP"
412
  msgstr "Daugiau informacijos apie GeoIP"
413
 
414
+ #: counter-options.php:429
415
  #: massbots.php:46
416
  #@ cpd
417
  msgid "Mass Bots"
418
  msgstr "Botai"
419
 
420
+ #: counter-options.php:433
421
  #, php-format
422
  #@ cpd
423
  msgid "Show all IPs with more than %s page views per day"
424
  msgstr "Rodyti visus IP su daugiau nei %s peržiūrų per parą"
425
 
426
+ #: counter-options.php:434
427
+ #: counter-options.php:498
428
  #: notes.php:84
429
  #: userperspan.php:56
430
  #@ cpd
431
  msgid "show"
432
  msgstr "parodyti"
433
 
434
+ #: counter-options.php:442
435
+ #: counter-options.php:506
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
+ #: counter-options.php:443
441
+ #: counter-options.php:507
442
  #: notes.php:88
443
  #@ cpd
444
  #@ default
445
  msgid "Date"
446
  msgstr "Data"
447
 
448
+ #: counter-options.php:444
449
+ #: counter-options.php:508
450
  #@ cpd
451
  msgid "Client"
452
  msgstr "Klientas"
453
 
454
+ #: counter-options.php:445
455
+ #: counter-options.php:509
456
  #@ cpd
457
  msgid "Views"
458
  msgstr "Peržiūrų"
459
 
460
+ #: counter-options.php:460
461
+ #: counter-options.php:476
462
+ #: counter-options.php:523
463
  #, php-format
464
  #@ cpd
465
  msgid "Delete these %s counts"
466
  msgstr "Pašalinti šiuos %s skaitliukų"
467
 
468
+ #: counter-options.php:811
469
  #@ cpd
470
  msgid "Support"
471
  msgstr "Palaikymas"
472
 
473
+ #: counter-core.php:742
474
  #, php-format
475
  #@ cpd
476
  msgid "Time for Count per Day: <code>%s</code>."
477
  msgstr "Laikas skaičiaus per dieną: <code>%s</code>"
478
 
479
+ #: counter-core.php:743
480
  #@ cpd
481
  msgid "Bug? Problem? Question? Hint? Praise?"
482
  msgstr "Klaida? Problema? Klausimas? Patarimas? Pagirimas?"
483
 
484
+ #: counter-core.php:744
485
  #, php-format
486
  #@ cpd
487
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
488
  msgstr "Rašyti komentarą <a href=\"%s\">įskiepio puslapyje</a> ."
489
 
490
+ #: counter.php:231
491
+ #: counter.php:1407
492
  #@ cpd
493
  msgid "Total reads"
494
  msgstr "Viso skaityta"
495
 
496
+ #: counter.php:232
497
+ #: counter.php:1408
498
  #@ cpd
499
  msgid "Reads today"
500
  msgstr "Skaityta šiandien"
501
 
502
+ #: counter.php:233
503
+ #: counter.php:1409
504
  #@ cpd
505
  msgid "Reads yesterday"
506
  msgstr "Vakar skaityta"
507
 
508
+ #: counter.php:890
509
  #: notes.php:55
510
  #: notes.php:89
511
  #@ cpd
512
  msgid "Notes"
513
  msgstr "Pastabos"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Parodyti"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Kiti"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Redaguoti žinutę"
533
  msgid "Front page displays"
534
  msgstr "Pirminio puslapio rodymas"
535
 
536
+ #: counter-core.php:788
537
+ #: counter-options.php:950
538
  #@ cpd
539
  msgid "Browsers"
540
  msgstr "Naršyklės"
541
 
542
+ #: counter-core.php:782
543
  #@ cpd
544
  msgid "Latest Counts"
545
  msgstr "Paskutinieji skaičiavimai"
546
 
547
+ #: counter-core.php:785
548
  #@ default
549
  msgid "Plugin"
550
  msgstr "Įskiepis"
551
 
552
+ #: counter-core.php:793
553
  #@ cpd
554
  msgid "Reads per Country"
555
  msgstr "Peržiūrų per šalis"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "Žemėlapis"
600
  msgid "edit"
601
  msgstr "redaguoti"
602
 
603
+ #: counter-options.php:862
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Talpykla"
607
 
608
+ #: counter-options.php:863
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Aš naudojutalpinamą įskiepį. Skaičiuoti šiuos apsilankymus ajax pagalba."
612
 
613
+ #: counter-options.php:951
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Vartotojo agento fragmentas, atskirtas kableliais"
617
 
618
+ #: counter-options.php:1035
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Derinimo režimu"
622
 
623
+ #: counter-options.php:1037
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Rodyti derinimo informacijas visų puslapių apačioje."
627
 
628
+ #: counter-core.php:794
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Vartotojai pagal šalis"
645
  msgid "PostID"
646
  msgstr "ŽinutėsID"
647
 
648
+ #: counter-options.php:998
649
  #@ cpd
650
  msgid "Add this value to \"Total reads\"."
651
  msgstr "Pridėti šią reikšmę, \"Viso skaityta\"."
652
 
653
+ #: counter-options.php:723
654
  #@ cpd
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 "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrinti IP adresą prieš GeoIP duomenų bazę. Tai gali užtrukti!"
660
  msgid "no data found"
661
  msgstr "Nėra duomenų"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Skaitliukas"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Klientai ir referalai"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  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."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Vietiniai URL"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Taipat rodyti vietinisu referalus."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Žinutės"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Puslapiai"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Skaitymų praeitą savaitę"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Kategorija"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Žyma"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "Licenzija"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Skaitymų per mėnesį"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Referalas"
729
 
730
+ #: counter-options.php:954
731
  #@ cpd
732
  msgid "Referrers - Entries"
733
  msgstr "Referalai - Įrašai"
734
 
735
+ #: counter-options.php:955
736
  #@ cpd
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Kiek referalų jūs norite pamatyti puslapio prietaisų skydelyje?"
739
 
740
+ #: counter-options.php:958
741
  #@ cpd
742
  msgid "Referrers - Days"
743
  msgstr "Referalai - Dienos"
744
 
745
+ #: counter.php:989
746
  #, php-format
747
  #@ cpd
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "%s referalų paskutinius %s dienų:"
750
 
751
+ #: counter-core.php:778
752
  #@ cpd
753
  msgid "Visitors online"
754
  msgstr "Lankytojų svetainėje"
755
 
756
+ #: counter.php:1431
757
  #@ default
758
  msgid "Title"
759
  msgstr "Pavadinimas"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr ""
766
 
767
+ #: counter-core.php:784
768
+ #: counter-options.php:954
769
+ #: counter-options.php:958
770
  #@ cpd
771
  msgid "Search strings"
772
  msgstr ""
773
 
774
+ #: counter-core.php:1062
775
  #@ cpd
776
  msgid "Backup failed! Cannot open file"
777
  msgstr ""
778
 
779
+ #: counter-core.php:1176
 
 
 
 
 
 
780
  #@ cpd
781
  msgid "Your can download the backup files here and now."
782
  msgstr ""
783
 
784
+ #: counter-core.php:1180
785
+ #: counter-core.php:1188
786
  #, php-format
787
  #@ cpd
788
  msgid "Backup of counter table saved in %s."
789
  msgstr ""
790
 
791
+ #: counter-core.php:1182
792
+ #: counter-core.php:1190
793
  #, php-format
794
  #@ cpd
795
  msgid "Backup of counter options and collection saved in %s."
796
  msgstr ""
797
 
798
+ #: counter-core.php:1246
799
  #@ cpd
800
  msgid "Error while reading backup file!"
801
  msgstr ""
802
 
803
+ #: counter-core.php:1250
804
  #, php-format
805
  #@ cpd
806
  msgid "The backup was added to counter table %s."
807
  msgstr ""
808
 
809
+ #: counter-core.php:1252
810
  #, php-format
811
  #@ cpd
812
  msgid "The counter table %s was restored from backup."
813
  msgstr ""
814
 
815
+ #: counter-core.php:1269
816
  #@ cpd
817
  msgid "Options restored from backup."
818
  msgstr ""
819
 
820
+ #: counter-options.php:174
821
  #@ cpd
822
  msgid "Collection in progress..."
823
  msgstr ""
824
 
825
+ #: counter-options.php:268
826
  #@ cpd
827
  msgid "Get Visitors per Post..."
828
  msgstr ""
829
 
830
+ #: counter-options.php:313
 
 
 
 
 
831
  #, php-format
832
  #@ cpd
833
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
834
  msgstr ""
835
 
836
+ #: counter-options.php:322
837
  #@ cpd
838
  msgid "Installation of \"Count per Day\" checked"
839
  msgstr ""
840
 
841
+ #: counter-options.php:337
842
  #@ cpd
843
  msgid "Old search strings deleted"
844
  msgstr ""
845
 
846
+ #: counter-options.php:352
847
  #@ cpd
848
  msgid "Clients and referers deleted"
849
  msgstr ""
850
 
851
+ #: counter-options.php:408
 
852
  #@ default
853
  msgid "Tools"
854
  msgstr ""
855
 
856
+ #: counter-options.php:560
857
+ #: counter-options.php:1016
858
  #@ cpd
859
  msgid "Backup"
860
  msgstr ""
861
 
862
+ #: counter-options.php:564
863
  #, php-format
864
  #@ cpd
865
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
866
  msgstr ""
867
 
868
+ #: counter-options.php:567
869
  #@ cpd
870
  msgid "Download only"
871
  msgstr ""
872
 
873
+ #: counter-options.php:571
874
  #@ cpd
875
  msgid "Backup the database"
876
  msgstr ""
877
 
878
+ #: counter-options.php:599
879
  #@ cpd
880
  msgid "Settings and collections"
881
  msgstr ""
882
 
883
+ #: counter-options.php:604
884
  #, php-format
885
  #@ cpd
886
  msgid "Counter table %s"
887
  msgstr ""
888
 
889
+ #: counter-options.php:611
890
  #, php-format
891
  #@ cpd
892
  msgid "Add data from the backup file %s to existing counter table?"
893
  msgstr ""
894
 
895
+ #: counter-options.php:611
896
  #@ cpd
897
  msgid "Add"
898
  msgstr ""
899
 
900
+ #: counter-options.php:615
901
  #, php-format
902
  #@ cpd
903
  msgid "Restore data from the backup file %s ?"
904
  msgstr ""
905
 
906
+ #: counter-options.php:615
907
  #@ default
908
  msgid "Restore"
909
  msgstr ""
910
 
911
+ #: counter-options.php:617
912
  #@ default
913
  msgid "Delete"
914
  msgstr ""
915
 
916
+ #: counter-options.php:618
917
  #, php-format
918
  #@ cpd
919
  msgid "Delete the backup file %s ?"
920
  msgstr ""
921
 
922
+ #: counter-options.php:624
923
  #@ cpd
924
  msgid "add backup to current counter table"
925
  msgstr ""
926
 
927
+ #: counter-options.php:625
928
  #@ cpd
929
  msgid "replace current counter table with with backup"
930
  msgstr ""
931
 
932
+ #: counter-options.php:626
933
  #@ cpd
934
  msgid "delete backup file"
935
  msgstr ""
936
 
937
+ #: counter-options.php:651
938
  #, php-format
939
  #@ cpd
940
  msgid "Delete search strings older than %s days."
941
  msgstr ""
942
 
943
+ #: counter-options.php:655
944
  #@ cpd
945
  msgid "Delete search strings"
946
  msgstr ""
947
 
948
+ #: counter-options.php:661
949
+ #: counter-options.php:680
950
  #, php-format
951
  #@ cpd
952
  msgid "Current size of your counter table %s is %s."
953
  msgstr ""
954
 
955
+ #: counter-options.php:662
956
  #, php-format
957
  #@ cpd
958
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
959
  msgstr ""
960
 
961
+ #: counter-options.php:666
962
  #@ cpd
963
  msgid "Delete clients and referers"
964
  msgstr ""
965
 
966
+ #: counter-options.php:675
967
+ #: counter-options.php:707
968
  #@ cpd
969
  msgid "Collect old data"
970
  msgstr ""
971
 
972
+ #: counter-options.php:682
973
  #@ cpd
974
  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."
975
  msgstr ""
976
 
977
+ #: counter-options.php:687
978
  #, php-format
979
  #@ cpd
980
  msgid "Currently your collection contains data until %s."
981
  msgstr ""
982
 
983
+ #: counter-options.php:691
984
  #@ cpd
985
  msgid "Normally new data will be added to the collection."
986
  msgstr ""
987
 
988
+ #: counter-options.php:697
989
  #@ cpd
990
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
991
  msgstr ""
992
 
993
+ #: counter-options.php:698
994
  #, php-format
995
  #@ cpd
996
  msgid "All collected data until %s will deleted."
997
  msgstr ""
998
 
999
+ #: counter-options.php:703
1000
  #, php-format
1001
  #@ cpd
1002
  msgid "Keep entries of last %s full months + current month in counter table."
1003
  msgstr ""
1004
 
1005
+ #: counter-options.php:754
1006
  #@ cpd
1007
  msgid "ReActivation"
1008
  msgstr ""
1009
 
1010
+ #: counter-options.php:757
1011
  #@ cpd
1012
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1013
  msgstr ""
1014
 
1015
+ #: counter-options.php:762
1016
  #@ cpd
1017
  msgid "ReActivate the plugin"
1018
  msgstr ""
1019
 
1020
+ #: counter-options.php:871
1021
  #@ cpd
1022
  msgid "Save URL only, no query string."
1023
  msgstr ""
1024
 
1025
+ #: counter-options.php:905
1026
  #@ cpd
1027
  msgid "Who can see it"
1028
  msgstr ""
1029
 
1030
+ #: counter-options.php:914
1031
  #@ cpd
1032
  msgid "custom"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:916
1036
  #@ cpd
1037
  msgid "and higher are allowed to see the statistics page."
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:918
1041
  #, php-format
1042
  #@ cpd
1043
  msgid "Set the %s capability %s a user need:"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:1005
1047
  #@ cpd
1048
  msgid "Stylesheet"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:1008
1052
  #@ cpd
1053
  msgid "NO Stylesheet in Frontend"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:1009
1057
  #@ cpd
1058
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:1019
1062
  #@ cpd
1063
  msgid "Entries per pass"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:1022
1067
  #@ cpd
1068
  msgid "How many entries should be saved per pass? Default: 10000"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:1027
1072
  #@ cpd
1073
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
1074
  msgstr ""
1075
 
1076
+ #: counter.php:241
1077
+ #: counter.php:1043
1078
  #@ cpd
1079
  msgid "Visitors"
1080
  msgstr ""
1081
 
1082
+ #: counter.php:244
1083
+ #: counter.php:245
1084
  #@ cpd
1085
  msgid "Most visited day"
1086
  msgstr ""
1087
 
1088
+ #: counter.php:1145
1089
  #@ default
1090
  msgid "Front page"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1193
1094
  #, php-format
1095
  #@ cpd
1096
  msgid "The %s most searched strings:"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1202
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The search strings of the last %s days:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1366
1106
  #@ default
1107
  msgid "_name"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1450
1111
  #@ cpd
1112
  msgid "drag and drop to sort"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-nb_NO.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:13+0000\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"
@@ -42,482 +42,487 @@ msgstr "oppdater neste"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Massebotter renset. %s rader slettet."
44
 
45
- #: counter-options.php:113
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Databasen renset. %s rader slettet."
50
 
51
- #: counter-options.php:123
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Teller nullstilt."
55
 
56
- #: counter-options.php:128
57
- #: counter-options.php:719
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "AVINSTALLER Count per Day"
61
 
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #: counter-options.php:135
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabellen %s ble slettet"
69
 
70
- #: counter-options.php:136
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Innstillinger slettet"
74
 
75
- #: counter-options.php:377
76
- #: counter-options.php:705
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Avinstaller"
80
 
81
- #: counter-options.php:378
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Klikk her"
85
 
86
- #: counter-options.php:378
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "for å fullføre avinstalleringen og deaktivere \"Count per Day\"."
90
 
91
- #: counter-options.php:752
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Tid online"
95
 
96
- #: counter-options.php:753
97
  #@ cpd
98
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
99
  msgstr "Sekunder for online-teller. Brukes om \"Besøkende online\" i kontrollpanelet."
100
 
101
- #: counter-options.php:756
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Innloggede brukere"
105
 
106
- #: counter-options.php:758
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "tell også"
110
 
111
- #: counter-options.php:759
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "til og med brukernivå"
115
 
116
- #: counter-options.php:770
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Auto-teller"
120
 
121
- #: counter-options.php:771
122
  #@ cpd
123
  msgid "Counts automatically single-posts and pages, no changes on template needed."
124
  msgstr "Teller automatisk enkelt-innlegg og -sider; ingen endringer i maler er nødvendig."
125
 
126
- #: counter-options.php:774
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Ignorer følgende botter"
130
 
131
- #: counter-options.php:778
132
  #@ cpd
133
  msgid "Anonymous IP"
134
  msgstr "Anonym IP"
135
 
136
- #: counter-options.php:782
137
  #@ cpd
138
  msgid "Cache"
139
  msgstr "Buffer"
140
 
141
- #: counter-options.php:783
142
  #@ cpd
143
  msgid "I use a cache plugin. Count these visits with ajax."
144
  msgstr "Jeg bruker et buffer-innstikk. Tell disse besøkene med Ajax."
145
 
146
- #: counter-options.php:952
147
  #@ cpd
148
  msgid "Update options"
149
  msgstr "Oppdater innstillinger"
150
 
151
- #: counter-options.php:799
152
  #@ default
153
  msgid "Dashboard"
154
  msgstr "Kontrollpanel"
155
 
156
- #: counter-core.php:792
157
- #: counter-options.php:834
158
  #@ cpd
159
  msgid "Visitors per post"
160
  msgstr "Besøkende pr innlegg"
161
 
162
- #: counter-options.php:835
163
- #: counter-options.php:839
164
  #@ cpd
165
  msgid "How many posts do you want to see on dashboard page?"
166
  msgstr "Hvor mange innlegg vil du se på kontrollpanelet?"
167
 
168
- #: counter-options.php:838
169
  #@ cpd
170
  msgid "Latest Counts - Posts"
171
  msgstr "Sist leste - innlegg"
172
 
173
- #: counter-options.php:842
174
  #@ cpd
175
  msgid "Latest Counts - Days"
176
  msgstr "Sist leste - dager"
177
 
178
- #: counter-options.php:843
179
- #: counter-options.php:847
180
- #: counter-options.php:869
181
  #@ cpd
182
  msgid "How many days do you want look back?"
183
  msgstr "Hvor mange dager vil du se tilbake?"
184
 
185
- #: counter-options.php:846
186
  #@ cpd
187
  msgid "Chart - Days"
188
  msgstr "Diagram - dager"
189
 
190
- #: counter-options.php:850
191
  #@ cpd
192
  msgid "Chart - Height"
193
  msgstr "Diagram - høyde"
194
 
195
- #: counter-options.php:851
196
  #@ cpd
197
  msgid "Height of the biggest bar"
198
  msgstr "Høyde på den største søylen"
199
 
200
- #: counter-options.php:855
201
  #@ cpd
202
  msgid "Countries"
203
  msgstr "Land"
204
 
205
- #: counter-options.php:856
206
  #@ cpd
207
  msgid "How many countries do you want to see on dashboard page?"
208
  msgstr "Hvor mange land vil du se på innstikkets side i kontrollpanelet?"
209
 
210
- #: counter-core.php:799
211
- #: counter-options.php:860
212
  #@ cpd
213
  msgid "Browsers"
214
  msgstr "Nettlesere"
215
 
216
- #: counter-options.php:861
217
  #@ cpd
218
  msgid "Substring of the user agent, separated by comma"
219
  msgstr "Delstrenger som identifiserer en nettleser, kommaseparert"
220
 
221
- #: counter-options.php:883
222
  #@ cpd
223
  msgid "Show in lists"
224
  msgstr "Vis som liste"
225
 
226
- #: counter-options.php:884
227
  #@ cpd
228
  msgid "Show \"Reads per Post\" in a new column in post management views."
229
  msgstr "Vis \"Lest pr innlegg\" i en ny kolonne siden for innleggsadministrasjon."
230
 
231
- #: counter-options.php:891
232
  #@ cpd
233
  msgid "Start Values"
234
  msgstr "Startverdier"
235
 
236
- #: counter-options.php:895
237
  #@ cpd
238
  msgid "Here you can change the date of first count and add a start count."
239
  msgstr "Her kan du endre datoen på første treff og tilføye et tall som telleren skal starte på."
240
 
241
- #: counter-options.php:899
242
  #@ cpd
243
  msgid "Start date"
244
  msgstr "Startdato"
245
 
246
- #: counter-options.php:900
247
  #@ cpd
248
  msgid "Your old Counter starts at?"
249
  msgstr "Din gamle teller starter når?"
250
 
251
- #: counter-options.php:903
252
- #: counter-options.php:907
253
  #@ cpd
254
  msgid "Start count"
255
  msgstr "Start på antall treff"
256
 
257
- #: counter-options.php:904
258
  #@ cpd
259
  msgid "Add this value to \"Total visitors\"."
260
  msgstr "Tilføy denne verdien til \"Besøkende i alt\"."
261
 
262
- #: counter-options.php:908
263
  #@ cpd
264
  msgid "Add this value to \"Total reads\"."
265
  msgstr "Tilføy denne verdi til \"Lest i alt\"."
266
 
267
- #: counter-options.php:945
268
  #@ cpd
269
  msgid "Debug mode"
270
  msgstr "Feilsøkingsmodus"
271
 
272
- #: counter-options.php:947
273
  #@ cpd
274
  msgid "Show debug informations at the bottom of all pages."
275
  msgstr "Vis feilsøkingsinformasjon nederst på alle sider."
276
 
277
- #: counter-options.php:636
278
  #@ cpd
279
  msgid "GeoIP - Countries"
280
  msgstr "GeoIP - Land"
281
 
282
- #: counter-options.php:645
283
  #@ cpd
284
  msgid "Update old counter data"
285
  msgstr "Oppdater gamle tellerdata"
286
 
287
- #: counter-options.php:657
288
  #@ cpd
289
  msgid "Update GeoIP database"
290
  msgstr "Oppdater GeoIP-database"
291
 
292
- #: counter-options.php:652
293
  #@ cpd
294
  msgid "Download a new version of GeoIP.dat file."
295
  msgstr "Last ned en ny versjon av GeoIP.dat-filen."
296
 
297
- #: counter-options.php:662
298
  #@ cpd
299
  msgid "More informations about GeoIP"
300
  msgstr "Flere opplysninger om GeoIP"
301
 
302
- #: counter-options.php:417
303
  #: massbots.php:46
304
  #@ cpd
305
  msgid "Mass Bots"
306
  msgstr "Massebotter"
307
 
308
- #: counter-options.php:421
309
  #, php-format
310
  #@ cpd
311
  msgid "Show all IPs with more than %s page views per day"
312
  msgstr "Vis alle IP-adresser med mer enn %s sidevisninger pr dag"
313
 
314
- #: counter-options.php:422
 
315
  #: notes.php:84
316
  #: userperspan.php:56
317
  #@ cpd
318
  msgid "show"
319
  msgstr "vis"
320
 
321
- #: counter-options.php:430
 
322
  #@ cpd
323
  msgid "IP"
324
  msgstr "IP"
325
 
326
- #: counter-options.php:431
 
327
  #: notes.php:88
328
  #@ cpd
329
  #@ default
330
  msgid "Date"
331
  msgstr "Dato"
332
 
333
- #: counter-options.php:432
 
334
  #@ cpd
335
  msgid "Client"
336
  msgstr "Klient"
337
 
338
- #: counter-options.php:433
 
339
  #@ cpd
340
  msgid "Views"
341
  msgstr "Visninger"
342
 
343
- #: counter-options.php:448
344
- #: counter-options.php:464
 
345
  #, php-format
346
  #@ cpd
347
  msgid "Delete these %s counts"
348
  msgstr "Slett disse %s treffene"
349
 
350
- #: counter-options.php:553
351
- #: counter-options.php:561
352
  #@ cpd
353
  msgid "Clean the database"
354
  msgstr "Rens databasen"
355
 
356
- #: counter-options.php:557
357
  #@ cpd
358
  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."
359
  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."
360
 
361
- #: counter-options.php:686
362
- #: counter-options.php:696
363
  #@ cpd
364
  msgid "Reset the counter"
365
  msgstr "Nullstill telleren"
366
 
367
- #: counter-options.php:689
368
  #@ cpd
369
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
370
  msgstr "Du kan nullstille telleren ved å tømme tabellen. Alt blir nullstilt.<br />Ta sikkerhetskopi hvis du har bruk for nåværende data."
371
 
372
- #: counter-options.php:708
373
  #@ cpd
374
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
375
  msgstr "Hvis \"Count per Day\" bare deaktiveres, blir tabellene i databasen bevart."
376
 
377
- #: counter-options.php:709
378
  #@ cpd
379
  msgid "Here you can delete the tables and disable \"Count per Day\"."
380
  msgstr "Her kan du slette tabellene og deaktivere \"Count per Day\"."
381
 
382
- #: counter-options.php:712
383
  #@ cpd
384
  msgid "WARNING"
385
  msgstr "ADVARSEL"
386
 
387
- #: counter-options.php:713
388
  #@ cpd
389
  msgid "These tables (with ALL counter data) will be deleted."
390
  msgstr "Disse tabellene (med ALLE teller-data) vil bli slettet."
391
 
392
- #: counter-options.php:715
393
  #@ cpd
394
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
395
  msgstr "Hvis \"Count per Day\" re-installeres, vil telleren starte på 0."
396
 
397
- #: counter-options.php:695
398
- #: counter-options.php:718
399
  #@ cpd
400
  msgid "Yes"
401
  msgstr "Ja"
402
 
403
- #: counter-options.php:719
404
  #@ cpd
405
  msgid "You are sure to disable Count per Day and delete all data?"
406
  msgstr "Er du sikker på at du vil deaktivere \"Count per Day\" og slette alle data?"
407
 
408
- #: counter-options.php:727
409
  #@ cpd
410
  msgid "Support"
411
  msgstr "Støtte"
412
 
413
- #: counter-core.php:753
414
  #, php-format
415
  #@ cpd
416
  msgid "Time for Count per Day: <code>%s</code>."
417
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
418
 
419
- #: counter-core.php:754
420
  #@ cpd
421
  msgid "Bug? Problem? Question? Hint? Praise?"
422
  msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
423
 
424
- #: counter-core.php:755
425
  #, php-format
426
  #@ cpd
427
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
428
  msgstr "Skriv en kommentar på <a href=\"%s\">innstikksiden</a>."
429
 
430
- #: counter.php:218
431
- #: counter.php:1356
432
  #@ cpd
433
  msgid "Total reads"
434
  msgstr "Visninger i alt"
435
 
436
- #: counter.php:219
437
- #: counter.php:1357
438
  #@ cpd
439
  msgid "Reads today"
440
  msgstr "Visninger i dag"
441
 
442
- #: counter.php:220
443
- #: counter.php:1358
444
  #@ cpd
445
  msgid "Reads yesterday"
446
  msgstr "Visninger i går"
447
 
448
- #: counter-core.php:788
449
- #: counter.php:223
450
- #: counter.php:1167
451
- #: counter.php:1361
452
  #@ cpd
453
  msgid "Total visitors"
454
  msgstr "Antall besøkende i alt"
455
 
456
- #: counter.php:224
457
- #: counter.php:1367
458
  #@ cpd
459
  msgid "Visitors currently online"
460
  msgstr "besøkende online akkurat nå"
461
 
462
- #: counter.php:225
463
- #: counter.php:1362
464
  #@ cpd
465
  msgid "Visitors today"
466
  msgstr "besøkende i dag"
467
 
468
- #: counter.php:226
469
- #: counter.php:1363
470
  #@ cpd
471
  msgid "Visitors yesterday"
472
  msgstr "besøkende i går"
473
 
474
- #: counter.php:227
475
- #: counter.php:1364
476
  #@ cpd
477
  msgid "Visitors last week"
478
  msgstr "besøkende siste uke"
479
 
480
- #: counter-core.php:794
481
- #: counter.php:229
482
- #: counter.php:328
483
- #: counter.php:1169
484
- #: counter.php:1366
485
  #: userperspan.php:46
486
  #@ cpd
487
  msgid "Visitors per day"
488
  msgstr "besøkende pr dag"
489
 
490
- #: counter.php:230
491
- #: counter.php:924
492
- #: counter.php:1368
493
  #@ cpd
494
  msgid "Counter starts on"
495
  msgstr "Teller starter på"
496
 
497
- #: counter.php:875
498
  #: notes.php:55
499
  #: notes.php:89
500
  #@ cpd
501
  msgid "Notes"
502
  msgstr "Merknader"
503
 
504
- #: counter.php:756
505
  #, php-format
506
  #@ cpd
507
  msgid "The %s most visited posts in last %s days:"
508
  msgstr "De %s mest viste innleggene de siste %s dagene:"
509
 
510
- #: counter.php:873
511
  #@ default
512
  msgid "Show"
513
  msgstr "Vis"
514
 
515
- #: counter.php:913
516
  #@ cpd
517
  msgid "Other"
518
  msgstr "Andre"
519
 
520
- #: counter.php:1085
521
  #@ default
522
  msgid "Edit Post"
523
  msgstr "Rediger innlegg"
@@ -528,66 +533,65 @@ msgstr "Rediger innlegg"
528
  msgid "Front page displays"
529
  msgstr "Visninger av forsiden"
530
 
531
- #: counter-core.php:652
532
- #: counter-options.php:401
533
- #: counter-options.php:740
534
  #@ default
535
  msgid "Settings"
536
  msgstr "Innstillinger"
537
 
538
  # tjekkes
539
- #: counter-core.php:1464
540
- #: counter-options.php:789
541
- #: counter.php:222
542
- #: counter.php:974
543
  #@ cpd
544
  msgid "Reads"
545
  msgstr "Visninger"
546
 
547
- #: counter.php:1355
548
  #@ cpd
549
  msgid "This post"
550
  msgstr "Dette innlegget"
551
 
552
- #: counter.php:327
553
  #@ cpd
554
  msgid "Reads per day"
555
  msgstr "Visninger pr dag"
556
 
557
- #: counter-core.php:790
558
- #: counter.php:1365
559
  #@ cpd
560
  msgid "Visitors per month"
561
  msgstr "besøkende pr måned"
562
 
563
- #: counter-core.php:793
564
  #@ cpd
565
  msgid "Latest Counts"
566
  msgstr "Siste treff"
567
 
568
- #: counter-core.php:796
569
  #@ default
570
  msgid "Plugin"
571
  msgstr "Innstikk"
572
 
573
- #: counter-core.php:804
574
  #@ cpd
575
  msgid "Reads per Country"
576
  msgstr "Visninger pr land"
577
 
578
- #: counter-core.php:805
579
  #@ cpd
580
  msgid "Visitors per Country"
581
  msgstr "besøkende pr land"
582
 
583
- #: counter-core.php:820
584
- #: counter.php:1283
585
  #@ cpd
586
  msgid "Statistics"
587
  msgstr "Statistikk"
588
 
589
- #: counter.php:418
590
- #: counter.php:1198
591
  #@ cpd
592
  msgid "Map"
593
  msgstr "Kart"
@@ -652,472 +656,565 @@ msgstr "Ny GeoIP-database installert."
652
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
  msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
654
 
655
- #: counter-options.php:639
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å land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
659
 
660
- #: counter-options.php:748
661
  #@ cpd
662
  msgid "Counter"
663
  msgstr "Teller"
664
 
665
- #: counter-options.php:786
666
  #@ cpd
667
  msgid "Clients and referrers"
668
  msgstr "Klienter og henvisere"
669
 
670
- #: counter-options.php:789
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 "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
674
 
675
- #: counter-options.php:872
676
  #@ cpd
677
  msgid "Local URLs"
678
  msgstr "Lokale URL-er"
679
 
680
- #: counter-options.php:873
681
  #@ cpd
682
  msgid "Show local referrers too."
683
  msgstr "Vis også lokale henvisere."
684
 
685
- #: counter-options.php:880
686
  #@ default
687
  msgid "Posts"
688
  msgstr "Innlegg"
689
 
690
- #: counter-options.php:880
691
  #@ default
692
  msgid "Pages"
693
  msgstr "Sider"
694
 
695
- #: counter.php:221
696
- #: counter.php:1359
697
  #@ cpd
698
  msgid "Reads last week"
699
  msgstr "Visninger siste uke"
700
 
701
- #: counter.php:1094
702
  #@ default
703
  msgid "Category"
704
  msgstr "Kategori"
705
 
706
- #: counter.php:1097
707
  #@ default
708
  msgid "Tag"
709
  msgstr "Stikkord"
710
 
711
- #: counter-core.php:756
712
  #@ default
713
  msgid "License"
714
  msgstr "Lisens"
715
 
716
- #: counter-core.php:791
717
- #: counter.php:1360
718
  #@ cpd
719
  msgid "Reads per month"
720
  msgstr "Visninger pr måned"
721
 
722
- #: counter-core.php:800
723
  #@ cpd
724
  msgid "Referrer"
725
  msgstr "Henviser"
726
 
727
- #: counter.php:1380
728
  #@ default
729
  msgid "Title"
730
  msgstr "Tittel"
731
 
732
- #: counter-options.php:864
733
  #@ cpd
734
  msgid "Referrers - Entries"
735
  msgstr "Henvisere - Oppføringer"
736
 
737
- #: counter-options.php:865
738
  #@ cpd
739
  msgid "How many referrers do you want to see on dashboard page?"
740
  msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
741
 
742
- #: counter-options.php:868
743
  #@ cpd
744
  msgid "Referrers - Days"
745
  msgstr "Henvisere - Dager"
746
 
747
- #: counter.php:944
748
  #, php-format
749
  #@ cpd
750
  msgid "The %s referrers in last %s days:"
751
  msgstr "De %s henviserne de siste %s dager:"
752
 
753
- #: counter-core.php:789
754
  #@ cpd
755
  msgid "Visitors online"
756
  msgstr "Gjester online"
757
 
758
- #: counter-core.php:259
759
  #, php-format
760
  #@ cpd
761
  msgid "\"Count per Day\" updated to version %s."
762
  msgstr "\"Count per Day\" oppdatert til versjon %s."
763
 
764
- #: counter-core.php:1000
765
  #@ cpd
766
  msgid "Backup failed! Cannot open file"
767
  msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
768
 
769
- #: counter-core.php:1027
770
- #, php-format
771
- #@ cpd
772
- msgid "Backup of %s entries in progress. Every point complies %s entries."
773
- msgstr "Sikkerhetskopiering av %s oppføringer i gang. Hvert punkt oppfyller %s oppføringer."
774
-
775
- #: counter-core.php:1118
776
- #: counter-core.php:1126
777
  #, php-format
778
  #@ cpd
779
  msgid "Backup of counter table saved in %s."
780
  msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
781
 
782
- #: counter-core.php:1120
783
- #: counter-core.php:1128
784
  #, php-format
785
  #@ cpd
786
  msgid "Backup of counter options and collection saved in %s."
787
  msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
788
 
789
- #: counter-options.php:169
790
  #@ cpd
791
  msgid "Collection in progress..."
792
  msgstr "Innsamling pågår ..:"
793
 
794
- #: counter-options.php:263
795
  #@ cpd
796
  msgid "Get Visitors per Post..."
797
  msgstr "Hent besøkende per innlegg ..."
798
 
799
- #: counter-options.php:284
800
- #@ cpd
801
- msgid "Delete old data..."
802
- msgstr "Slett gammel data..."
803
-
804
- #: counter-options.php:308
805
  #, php-format
806
  #@ cpd
807
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
808
  msgstr "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s &gt; størrelse etter = %s)."
809
 
810
- #: counter-options.php:317
811
  #@ cpd
812
  msgid "Installation of \"Count per Day\" checked"
813
  msgstr "Installasjon av \"Count per day\" sjekket"
814
 
815
- #: counter-options.php:400
816
- #: counter-options.php:739
817
  #@ default
818
  msgid "Tools"
819
  msgstr "Verktøy"
820
 
821
- #: counter-options.php:791
822
  #@ cpd
823
  msgid "Save URL only, no query string."
824
  msgstr "Lagre kun URL, ingen søkestreng."
825
 
826
- #: counter-options.php:815
827
  #@ cpd
828
  msgid "Who can see it"
829
  msgstr "Hvem kan se det"
830
 
831
- #: counter-options.php:824
832
  #@ cpd
833
  msgid "custom"
834
  msgstr "tilpasset"
835
 
836
- #: counter-options.php:826
837
  #@ cpd
838
  msgid "and higher are allowed to see the statistics page."
839
  msgstr "og høyere får lov til å se statistikk side."
840
 
841
- #: counter-options.php:828
842
  #, php-format
843
  #@ cpd
844
  msgid "Set the %s capability %s a user need:"
845
  msgstr "Sett %s evne %s en bruker trenger:"
846
 
847
- #: counter-options.php:915
848
  #@ cpd
849
  msgid "Stylesheet"
850
  msgstr "Stilark"
851
 
852
- #: counter-options.php:918
853
  #@ cpd
854
  msgid "NO Stylesheet in Frontend"
855
  msgstr "INGEN stilark i Frontend"
856
 
857
- #: counter-options.php:919
858
  #@ cpd
859
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
860
  msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
861
 
862
- #: counter-options.php:476
863
- #: counter-options.php:926
864
  #@ cpd
865
  msgid "Backup"
866
  msgstr "Sikkerhetskopi"
867
 
868
- #: counter-options.php:929
869
  #@ cpd
870
  msgid "Entries per pass"
871
  msgstr "Oppføringer per hendelse"
872
 
873
- #: counter-options.php:932
874
  #@ cpd
875
  msgid "How many entries should be saved per pass? Default: 10000"
876
  msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
877
 
878
- #: counter-options.php:937
879
  #@ cpd
880
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
881
  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."
882
 
883
- #: counter-options.php:480
884
  #, php-format
885
  #@ cpd
886
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
887
  msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
888
 
889
- #: counter-options.php:487
890
  #@ cpd
891
  msgid "Backup the database"
892
  msgstr "Sikkerhetskopier databasen"
893
 
894
- #: counter-options.php:591
895
- #: counter-options.php:623
896
  #@ cpd
897
  msgid "Collect old data"
898
  msgstr "Samle inn gamle data"
899
 
900
- #: counter-options.php:577
901
- #: counter-options.php:596
902
  #, php-format
903
  #@ cpd
904
  msgid "Current size of your counter table %s is %s."
905
  msgstr "Nåværende størrelse på teller tabellen %s er %s."
906
 
907
- #: counter-options.php:598
908
  #@ cpd
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 "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."
911
 
912
- #: counter-options.php:603
913
  #, php-format
914
  #@ cpd
915
  msgid "Currently your collection contains data until %s."
916
  msgstr "Foreløpig din innsamling inneholder data inntil %s."
917
 
918
- #: counter-options.php:607
919
  #@ cpd
920
  msgid "Normally new data will be added to the collection."
921
  msgstr "Normalt vil nye data bli lagt til i samlingen."
922
 
923
- #: counter-options.php:613
924
  #@ cpd
925
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
  msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
927
 
928
- #: counter-options.php:614
929
  #, php-format
930
  #@ cpd
931
  msgid "All collected data until %s will deleted."
932
  msgstr "Alle innsamlede data inntil %s slettes."
933
 
934
- #: counter-options.php:619
935
  #, php-format
936
  #@ cpd
937
  msgid "Keep entries of last %s full months + current month in counter table."
938
  msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
939
 
940
- #: counter-options.php:670
941
  #@ cpd
942
  msgid "ReActivation"
943
  msgstr "ReAktivering"
944
 
945
- #: counter-options.php:673
946
  #@ cpd
947
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
  msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
949
 
950
- #: counter-options.php:678
951
  #@ cpd
952
  msgid "ReActivate the plugin"
953
  msgstr "ReAktiver innstikket"
954
 
955
- #: counter.php:228
956
- #: counter.php:998
957
  #@ cpd
958
  msgid "Visitors"
959
  msgstr "Besøkende"
960
 
961
- #: counter.php:231
962
- #: counter.php:232
963
  #@ cpd
964
  msgid "Most visited day"
965
  msgstr "Mest besøkt dag"
966
 
967
- #: counter.php:1399
968
  #@ cpd
969
  msgid "drag and drop to sort"
970
  msgstr "dra og slipp for å sortere"
971
 
972
- #: counter-core.php:795
973
- #: counter-options.php:864
974
- #: counter-options.php:868
975
  #@ cpd
976
  msgid "Search strings"
977
  msgstr ""
978
 
979
- #: counter-core.php:1114
980
  #@ cpd
981
  msgid "Your can download the backup files here and now."
982
  msgstr ""
983
 
984
- #: counter-core.php:1184
985
  #@ cpd
986
  msgid "Error while reading backup file!"
987
  msgstr ""
988
 
989
- #: counter-core.php:1188
990
  #, php-format
991
  #@ cpd
992
  msgid "The backup was added to counter table %s."
993
  msgstr ""
994
 
995
- #: counter-core.php:1190
996
  #, php-format
997
  #@ cpd
998
  msgid "The counter table %s was restored from backup."
999
  msgstr ""
1000
 
1001
- #: counter-core.php:1207
1002
  #@ cpd
1003
  msgid "Options restored from backup."
1004
  msgstr ""
1005
 
1006
- #: counter-options.php:332
1007
  #@ cpd
1008
  msgid "Old search strings deleted"
1009
  msgstr ""
1010
 
1011
- #: counter-options.php:347
1012
  #@ cpd
1013
  msgid "Clients and referers deleted"
1014
  msgstr ""
1015
 
1016
- #: counter-options.php:483
1017
  #@ cpd
1018
  msgid "Download only"
1019
  msgstr ""
1020
 
1021
- #: counter-options.php:515
1022
  #@ cpd
1023
  msgid "Settings and collections"
1024
  msgstr ""
1025
 
1026
- #: counter-options.php:520
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Counter table %s"
1030
  msgstr ""
1031
 
1032
- #: counter-options.php:527
1033
  #, php-format
1034
  #@ cpd
1035
  msgid "Add data from the backup file %s to existing counter table?"
1036
  msgstr ""
1037
 
1038
- #: counter-options.php:527
1039
  #@ cpd
1040
  msgid "Add"
1041
  msgstr ""
1042
 
1043
- #: counter-options.php:531
1044
  #, php-format
1045
  #@ cpd
1046
  msgid "Restore data from the backup file %s ?"
1047
  msgstr ""
1048
 
1049
- #: counter-options.php:531
1050
  #@ default
1051
  msgid "Restore"
1052
  msgstr ""
1053
 
1054
- #: counter-options.php:533
1055
  #@ default
1056
  msgid "Delete"
1057
  msgstr ""
1058
 
1059
- #: counter-options.php:534
1060
  #, php-format
1061
  #@ cpd
1062
  msgid "Delete the backup file %s ?"
1063
  msgstr ""
1064
 
1065
- #: counter-options.php:540
1066
  #@ cpd
1067
  msgid "add backup to current counter table"
1068
  msgstr ""
1069
 
1070
- #: counter-options.php:541
1071
  #@ cpd
1072
  msgid "replace current counter table with with backup"
1073
  msgstr ""
1074
 
1075
- #: counter-options.php:542
1076
  #@ cpd
1077
  msgid "delete backup file"
1078
  msgstr ""
1079
 
1080
- #: counter-options.php:567
1081
  #, php-format
1082
  #@ cpd
1083
  msgid "Delete search strings older than %s days."
1084
  msgstr ""
1085
 
1086
- #: counter-options.php:571
1087
  #@ cpd
1088
  msgid "Delete search strings"
1089
  msgstr ""
1090
 
1091
- #: counter-options.php:578
1092
  #, php-format
1093
  #@ cpd
1094
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1095
  msgstr ""
1096
 
1097
- #: counter-options.php:582
1098
  #@ cpd
1099
  msgid "Delete clients and referers"
1100
  msgstr ""
1101
 
1102
- #: counter.php:1100
1103
  #@ default
1104
  msgid "Front page"
1105
  msgstr ""
1106
 
1107
- #: counter.php:1142
1108
  #, php-format
1109
  #@ cpd
1110
  msgid "The %s most searched strings:"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1151
1114
  #, php-format
1115
  #@ cpd
1116
  msgid "The search strings of the last %s days:"
1117
  msgstr ""
1118
 
1119
- #: counter.php:1315
1120
  #@ default
1121
  msgid "_name"
1122
  msgstr ""
1123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:50+0000\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"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Massebotter renset. %s rader slettet."
44
 
45
+ #: counter-options.php:118
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Databasen renset. %s rader slettet."
50
 
51
+ #: counter-options.php:128
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Teller nullstilt."
55
 
56
+ #: counter-options.php:133
57
+ #: counter-options.php:803
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "AVINSTALLER Count per Day"
61
 
62
+ #: counter-options.php:138
63
+ #: counter-options.php:139
64
+ #: counter-options.php:140
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabellen %s ble slettet"
69
 
70
+ #: counter-options.php:141
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Innstillinger slettet"
74
 
75
+ #: counter-options.php:382
76
+ #: counter-options.php:789
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Avinstaller"
80
 
81
+ #: counter-options.php:383
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Klikk her"
85
 
86
+ #: counter-options.php:383
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "for å fullføre avinstalleringen og deaktivere \"Count per Day\"."
90
 
91
+ #: counter-options.php:832
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Tid online"
95
 
96
+ #: counter-options.php:833
97
  #@ cpd
98
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
99
  msgstr "Sekunder for online-teller. Brukes om \"Besøkende online\" i kontrollpanelet."
100
 
101
+ #: counter-options.php:836
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Innloggede brukere"
105
 
106
+ #: counter-options.php:838
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "tell også"
110
 
111
+ #: counter-options.php:839
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "til og med brukernivå"
115
 
116
+ #: counter-options.php:850
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Auto-teller"
120
 
121
+ #: counter-options.php:851
122
  #@ cpd
123
  msgid "Counts automatically single-posts and pages, no changes on template needed."
124
  msgstr "Teller automatisk enkelt-innlegg og -sider; ingen endringer i maler er nødvendig."
125
 
126
+ #: counter-options.php:854
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Ignorer følgende botter"
130
 
131
+ #: counter-options.php:858
132
  #@ cpd
133
  msgid "Anonymous IP"
134
  msgstr "Anonym IP"
135
 
136
+ #: counter-options.php:862
137
  #@ cpd
138
  msgid "Cache"
139
  msgstr "Buffer"
140
 
141
+ #: counter-options.php:863
142
  #@ cpd
143
  msgid "I use a cache plugin. Count these visits with ajax."
144
  msgstr "Jeg bruker et buffer-innstikk. Tell disse besøkene med Ajax."
145
 
146
+ #: counter-options.php:1042
147
  #@ cpd
148
  msgid "Update options"
149
  msgstr "Oppdater innstillinger"
150
 
151
+ #: counter-options.php:889
152
  #@ default
153
  msgid "Dashboard"
154
  msgstr "Kontrollpanel"
155
 
156
+ #: counter-core.php:781
157
+ #: counter-options.php:924
158
  #@ cpd
159
  msgid "Visitors per post"
160
  msgstr "Besøkende pr innlegg"
161
 
162
+ #: counter-options.php:925
163
+ #: counter-options.php:929
164
  #@ cpd
165
  msgid "How many posts do you want to see on dashboard page?"
166
  msgstr "Hvor mange innlegg vil du se på kontrollpanelet?"
167
 
168
+ #: counter-options.php:928
169
  #@ cpd
170
  msgid "Latest Counts - Posts"
171
  msgstr "Sist leste - innlegg"
172
 
173
+ #: counter-options.php:932
174
  #@ cpd
175
  msgid "Latest Counts - Days"
176
  msgstr "Sist leste - dager"
177
 
178
+ #: counter-options.php:933
179
+ #: counter-options.php:937
180
+ #: counter-options.php:959
181
  #@ cpd
182
  msgid "How many days do you want look back?"
183
  msgstr "Hvor mange dager vil du se tilbake?"
184
 
185
+ #: counter-options.php:936
186
  #@ cpd
187
  msgid "Chart - Days"
188
  msgstr "Diagram - dager"
189
 
190
+ #: counter-options.php:940
191
  #@ cpd
192
  msgid "Chart - Height"
193
  msgstr "Diagram - høyde"
194
 
195
+ #: counter-options.php:941
196
  #@ cpd
197
  msgid "Height of the biggest bar"
198
  msgstr "Høyde på den største søylen"
199
 
200
+ #: counter-options.php:945
201
  #@ cpd
202
  msgid "Countries"
203
  msgstr "Land"
204
 
205
+ #: counter-options.php:946
206
  #@ cpd
207
  msgid "How many countries do you want to see on dashboard page?"
208
  msgstr "Hvor mange land vil du se på innstikkets side i kontrollpanelet?"
209
 
210
+ #: counter-core.php:788
211
+ #: counter-options.php:950
212
  #@ cpd
213
  msgid "Browsers"
214
  msgstr "Nettlesere"
215
 
216
+ #: counter-options.php:951
217
  #@ cpd
218
  msgid "Substring of the user agent, separated by comma"
219
  msgstr "Delstrenger som identifiserer en nettleser, kommaseparert"
220
 
221
+ #: counter-options.php:973
222
  #@ cpd
223
  msgid "Show in lists"
224
  msgstr "Vis som liste"
225
 
226
+ #: counter-options.php:974
227
  #@ cpd
228
  msgid "Show \"Reads per Post\" in a new column in post management views."
229
  msgstr "Vis \"Lest pr innlegg\" i en ny kolonne siden for innleggsadministrasjon."
230
 
231
+ #: counter-options.php:981
232
  #@ cpd
233
  msgid "Start Values"
234
  msgstr "Startverdier"
235
 
236
+ #: counter-options.php:985
237
  #@ cpd
238
  msgid "Here you can change the date of first count and add a start count."
239
  msgstr "Her kan du endre datoen på første treff og tilføye et tall som telleren skal starte på."
240
 
241
+ #: counter-options.php:989
242
  #@ cpd
243
  msgid "Start date"
244
  msgstr "Startdato"
245
 
246
+ #: counter-options.php:990
247
  #@ cpd
248
  msgid "Your old Counter starts at?"
249
  msgstr "Din gamle teller starter når?"
250
 
251
+ #: counter-options.php:993
252
+ #: counter-options.php:997
253
  #@ cpd
254
  msgid "Start count"
255
  msgstr "Start på antall treff"
256
 
257
+ #: counter-options.php:994
258
  #@ cpd
259
  msgid "Add this value to \"Total visitors\"."
260
  msgstr "Tilføy denne verdien til \"Besøkende i alt\"."
261
 
262
+ #: counter-options.php:998
263
  #@ cpd
264
  msgid "Add this value to \"Total reads\"."
265
  msgstr "Tilføy denne verdi til \"Lest i alt\"."
266
 
267
+ #: counter-options.php:1035
268
  #@ cpd
269
  msgid "Debug mode"
270
  msgstr "Feilsøkingsmodus"
271
 
272
+ #: counter-options.php:1037
273
  #@ cpd
274
  msgid "Show debug informations at the bottom of all pages."
275
  msgstr "Vis feilsøkingsinformasjon nederst på alle sider."
276
 
277
+ #: counter-options.php:720
278
  #@ cpd
279
  msgid "GeoIP - Countries"
280
  msgstr "GeoIP - Land"
281
 
282
+ #: counter-options.php:729
283
  #@ cpd
284
  msgid "Update old counter data"
285
  msgstr "Oppdater gamle tellerdata"
286
 
287
+ #: counter-options.php:741
288
  #@ cpd
289
  msgid "Update GeoIP database"
290
  msgstr "Oppdater GeoIP-database"
291
 
292
+ #: counter-options.php:736
293
  #@ cpd
294
  msgid "Download a new version of GeoIP.dat file."
295
  msgstr "Last ned en ny versjon av GeoIP.dat-filen."
296
 
297
+ #: counter-options.php:746
298
  #@ cpd
299
  msgid "More informations about GeoIP"
300
  msgstr "Flere opplysninger om GeoIP"
301
 
302
+ #: counter-options.php:429
303
  #: massbots.php:46
304
  #@ cpd
305
  msgid "Mass Bots"
306
  msgstr "Massebotter"
307
 
308
+ #: counter-options.php:433
309
  #, php-format
310
  #@ cpd
311
  msgid "Show all IPs with more than %s page views per day"
312
  msgstr "Vis alle IP-adresser med mer enn %s sidevisninger pr dag"
313
 
314
+ #: counter-options.php:434
315
+ #: counter-options.php:498
316
  #: notes.php:84
317
  #: userperspan.php:56
318
  #@ cpd
319
  msgid "show"
320
  msgstr "vis"
321
 
322
+ #: counter-options.php:442
323
+ #: counter-options.php:506
324
  #@ cpd
325
  msgid "IP"
326
  msgstr "IP"
327
 
328
+ #: counter-options.php:443
329
+ #: counter-options.php:507
330
  #: notes.php:88
331
  #@ cpd
332
  #@ default
333
  msgid "Date"
334
  msgstr "Dato"
335
 
336
+ #: counter-options.php:444
337
+ #: counter-options.php:508
338
  #@ cpd
339
  msgid "Client"
340
  msgstr "Klient"
341
 
342
+ #: counter-options.php:445
343
+ #: counter-options.php:509
344
  #@ cpd
345
  msgid "Views"
346
  msgstr "Visninger"
347
 
348
+ #: counter-options.php:460
349
+ #: counter-options.php:476
350
+ #: counter-options.php:523
351
  #, php-format
352
  #@ cpd
353
  msgid "Delete these %s counts"
354
  msgstr "Slett disse %s treffene"
355
 
356
+ #: counter-options.php:637
357
+ #: counter-options.php:645
358
  #@ cpd
359
  msgid "Clean the database"
360
  msgstr "Rens databasen"
361
 
362
+ #: counter-options.php:641
363
  #@ cpd
364
  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."
365
  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."
366
 
367
+ #: counter-options.php:770
368
+ #: counter-options.php:780
369
  #@ cpd
370
  msgid "Reset the counter"
371
  msgstr "Nullstill telleren"
372
 
373
+ #: counter-options.php:773
374
  #@ cpd
375
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
376
  msgstr "Du kan nullstille telleren ved å tømme tabellen. Alt blir nullstilt.<br />Ta sikkerhetskopi hvis du har bruk for nåværende data."
377
 
378
+ #: counter-options.php:792
379
  #@ cpd
380
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
381
  msgstr "Hvis \"Count per Day\" bare deaktiveres, blir tabellene i databasen bevart."
382
 
383
+ #: counter-options.php:793
384
  #@ cpd
385
  msgid "Here you can delete the tables and disable \"Count per Day\"."
386
  msgstr "Her kan du slette tabellene og deaktivere \"Count per Day\"."
387
 
388
+ #: counter-options.php:796
389
  #@ cpd
390
  msgid "WARNING"
391
  msgstr "ADVARSEL"
392
 
393
+ #: counter-options.php:797
394
  #@ cpd
395
  msgid "These tables (with ALL counter data) will be deleted."
396
  msgstr "Disse tabellene (med ALLE teller-data) vil bli slettet."
397
 
398
+ #: counter-options.php:799
399
  #@ cpd
400
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
401
  msgstr "Hvis \"Count per Day\" re-installeres, vil telleren starte på 0."
402
 
403
+ #: counter-options.php:779
404
+ #: counter-options.php:802
405
  #@ cpd
406
  msgid "Yes"
407
  msgstr "Ja"
408
 
409
+ #: counter-options.php:803
410
  #@ cpd
411
  msgid "You are sure to disable Count per Day and delete all data?"
412
  msgstr "Er du sikker på at du vil deaktivere \"Count per Day\" og slette alle data?"
413
 
414
+ #: counter-options.php:811
415
  #@ cpd
416
  msgid "Support"
417
  msgstr "Støtte"
418
 
419
+ #: counter-core.php:742
420
  #, php-format
421
  #@ cpd
422
  msgid "Time for Count per Day: <code>%s</code>."
423
  msgstr "Tidspunkt for Count per Day: <code>%s</code>."
424
 
425
+ #: counter-core.php:743
426
  #@ cpd
427
  msgid "Bug? Problem? Question? Hint? Praise?"
428
  msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
429
 
430
+ #: counter-core.php:744
431
  #, php-format
432
  #@ cpd
433
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
434
  msgstr "Skriv en kommentar på <a href=\"%s\">innstikksiden</a>."
435
 
436
+ #: counter.php:231
437
+ #: counter.php:1407
438
  #@ cpd
439
  msgid "Total reads"
440
  msgstr "Visninger i alt"
441
 
442
+ #: counter.php:232
443
+ #: counter.php:1408
444
  #@ cpd
445
  msgid "Reads today"
446
  msgstr "Visninger i dag"
447
 
448
+ #: counter.php:233
449
+ #: counter.php:1409
450
  #@ cpd
451
  msgid "Reads yesterday"
452
  msgstr "Visninger i går"
453
 
454
+ #: counter-core.php:777
455
+ #: counter.php:236
456
+ #: counter.php:1218
457
+ #: counter.php:1412
458
  #@ cpd
459
  msgid "Total visitors"
460
  msgstr "Antall besøkende i alt"
461
 
462
+ #: counter.php:237
463
+ #: counter.php:1418
464
  #@ cpd
465
  msgid "Visitors currently online"
466
  msgstr "besøkende online akkurat nå"
467
 
468
+ #: counter.php:238
469
+ #: counter.php:1413
470
  #@ cpd
471
  msgid "Visitors today"
472
  msgstr "besøkende i dag"
473
 
474
+ #: counter.php:239
475
+ #: counter.php:1414
476
  #@ cpd
477
  msgid "Visitors yesterday"
478
  msgstr "besøkende i går"
479
 
480
+ #: counter.php:240
481
+ #: counter.php:1415
482
  #@ cpd
483
  msgid "Visitors last week"
484
  msgstr "besøkende siste uke"
485
 
486
+ #: counter-core.php:783
487
+ #: counter.php:242
488
+ #: counter.php:343
489
+ #: counter.php:1220
490
+ #: counter.php:1417
491
  #: userperspan.php:46
492
  #@ cpd
493
  msgid "Visitors per day"
494
  msgstr "besøkende pr dag"
495
 
496
+ #: counter.php:969
497
+ #: counter.php:1419
 
498
  #@ cpd
499
  msgid "Counter starts on"
500
  msgstr "Teller starter på"
501
 
502
+ #: counter.php:890
503
  #: notes.php:55
504
  #: notes.php:89
505
  #@ cpd
506
  msgid "Notes"
507
  msgstr "Merknader"
508
 
509
+ #: counter.php:771
510
  #, php-format
511
  #@ cpd
512
  msgid "The %s most visited posts in last %s days:"
513
  msgstr "De %s mest viste innleggene de siste %s dagene:"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Vis"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Andre"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Rediger innlegg"
533
  msgid "Front page displays"
534
  msgstr "Visninger av forsiden"
535
 
536
+ #: counter-core.php:641
537
+ #: counter-options.php:409
 
538
  #@ default
539
  msgid "Settings"
540
  msgstr "Innstillinger"
541
 
542
  # tjekkes
543
+ #: counter-core.php:1526
544
+ #: counter-options.php:869
545
+ #: counter.php:235
546
+ #: counter.php:1019
547
  #@ cpd
548
  msgid "Reads"
549
  msgstr "Visninger"
550
 
551
+ #: counter.php:1406
552
  #@ cpd
553
  msgid "This post"
554
  msgstr "Dette innlegget"
555
 
556
+ #: counter.php:342
557
  #@ cpd
558
  msgid "Reads per day"
559
  msgstr "Visninger pr dag"
560
 
561
+ #: counter-core.php:779
562
+ #: counter.php:1416
563
  #@ cpd
564
  msgid "Visitors per month"
565
  msgstr "besøkende pr måned"
566
 
567
+ #: counter-core.php:782
568
  #@ cpd
569
  msgid "Latest Counts"
570
  msgstr "Siste treff"
571
 
572
+ #: counter-core.php:785
573
  #@ default
574
  msgid "Plugin"
575
  msgstr "Innstikk"
576
 
577
+ #: counter-core.php:793
578
  #@ cpd
579
  msgid "Reads per Country"
580
  msgstr "Visninger pr land"
581
 
582
+ #: counter-core.php:794
583
  #@ cpd
584
  msgid "Visitors per Country"
585
  msgstr "besøkende pr land"
586
 
587
+ #: counter-core.php:809
588
+ #: counter.php:1334
589
  #@ cpd
590
  msgid "Statistics"
591
  msgstr "Statistikk"
592
 
593
+ #: counter.php:433
594
+ #: counter.php:1249
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Kart"
656
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
657
  msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
658
 
659
+ #: counter-options.php:723
660
  #@ cpd
661
  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!"
662
  msgstr "Du kan få land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
663
 
664
+ #: counter-options.php:828
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Teller"
668
 
669
+ #: counter-options.php:866
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Klienter og henvisere"
673
 
674
+ #: counter-options.php:869
675
  #@ cpd
676
  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."
677
  msgstr "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
678
 
679
+ #: counter-options.php:962
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Lokale URL-er"
683
 
684
+ #: counter-options.php:963
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Vis også lokale henvisere."
688
 
689
+ #: counter-options.php:970
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Innlegg"
693
 
694
+ #: counter-options.php:970
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Sider"
698
 
699
+ #: counter.php:234
700
+ #: counter.php:1410
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Visninger siste uke"
704
 
705
+ #: counter.php:1139
706
  #@ default
707
  msgid "Category"
708
  msgstr "Kategori"
709
 
710
+ #: counter.php:1142
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Stikkord"
714
 
715
+ #: counter-core.php:745
716
  #@ default
717
  msgid "License"
718
  msgstr "Lisens"
719
 
720
+ #: counter-core.php:780
721
+ #: counter.php:1411
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Visninger pr måned"
725
 
726
+ #: counter-core.php:789
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Henviser"
730
 
731
+ #: counter.php:1431
732
  #@ default
733
  msgid "Title"
734
  msgstr "Tittel"
735
 
736
+ #: counter-options.php:954
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Henvisere - Oppføringer"
740
 
741
+ #: counter-options.php:955
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
745
 
746
+ #: counter-options.php:958
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Henvisere - Dager"
750
 
751
+ #: counter.php:989
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "De %s henviserne de siste %s dager:"
756
 
757
+ #: counter-core.php:778
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Gjester online"
761
 
762
+ #: counter-core.php:232
763
  #, php-format
764
  #@ cpd
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" oppdatert til versjon %s."
767
 
768
+ #: counter-core.php:1062
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
772
 
773
+ #: counter-core.php:1180
774
+ #: counter-core.php:1188
 
 
 
 
 
 
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
779
 
780
+ #: counter-core.php:1182
781
+ #: counter-core.php:1190
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
786
 
787
+ #: counter-options.php:174
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Innsamling pågår ..:"
791
 
792
+ #: counter-options.php:268
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Hent besøkende per innlegg ..."
796
 
797
+ #: counter-options.php:313
 
 
 
 
 
798
  #, php-format
799
  #@ cpd
800
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
801
  msgstr "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s &gt; størrelse etter = %s)."
802
 
803
+ #: counter-options.php:322
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Installasjon av \"Count per day\" sjekket"
807
 
808
+ #: counter-options.php:408
 
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Verktøy"
812
 
813
+ #: counter-options.php:871
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Lagre kun URL, ingen søkestreng."
817
 
818
+ #: counter-options.php:905
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Hvem kan se det"
822
 
823
+ #: counter-options.php:914
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "tilpasset"
827
 
828
+ #: counter-options.php:916
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "og høyere får lov til å se statistikk side."
832
 
833
+ #: counter-options.php:918
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Sett %s evne %s en bruker trenger:"
838
 
839
+ #: counter-options.php:1005
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Stilark"
843
 
844
+ #: counter-options.php:1008
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "INGEN stilark i Frontend"
848
 
849
+ #: counter-options.php:1009
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
853
 
854
+ #: counter-options.php:560
855
+ #: counter-options.php:1016
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Sikkerhetskopi"
859
 
860
+ #: counter-options.php:1019
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Oppføringer per hendelse"
864
 
865
+ #: counter-options.php:1022
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
869
 
870
+ #: counter-options.php:1027
871
  #@ cpd
872
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
873
  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."
874
 
875
+ #: counter-options.php:564
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
880
 
881
+ #: counter-options.php:571
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Sikkerhetskopier databasen"
885
 
886
+ #: counter-options.php:675
887
+ #: counter-options.php:707
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Samle inn gamle data"
891
 
892
+ #: counter-options.php:661
893
+ #: counter-options.php:680
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Nåværende størrelse på teller tabellen %s er %s."
898
 
899
+ #: counter-options.php:682
900
  #@ cpd
901
  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."
902
  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."
903
 
904
+ #: counter-options.php:687
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Foreløpig din innsamling inneholder data inntil %s."
909
 
910
+ #: counter-options.php:691
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Normalt vil nye data bli lagt til i samlingen."
914
 
915
+ #: counter-options.php:697
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
919
 
920
+ #: counter-options.php:698
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Alle innsamlede data inntil %s slettes."
925
 
926
+ #: counter-options.php:703
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
931
 
932
+ #: counter-options.php:754
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "ReAktivering"
936
 
937
+ #: counter-options.php:757
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
941
 
942
+ #: counter-options.php:762
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "ReAktiver innstikket"
946
 
947
+ #: counter.php:241
948
+ #: counter.php:1043
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Besøkende"
952
 
953
+ #: counter.php:244
954
+ #: counter.php:245
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Mest besøkt dag"
958
 
959
+ #: counter.php:1450
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "dra og slipp for å sortere"
963
 
964
+ #: counter-core.php:784
965
+ #: counter-options.php:954
966
+ #: counter-options.php:958
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1176
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1246
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1250
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1252
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1269
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:337
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:352
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:567
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:599
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:604
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:611
1025
  #, php-format
1026
  #@ cpd
1027
  msgid "Add data from the backup file %s to existing counter table?"
1028
  msgstr ""
1029
 
1030
+ #: counter-options.php:611
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:615
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:615
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:617
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:618
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:624
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:625
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:626
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:651
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:655
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:662
1084
  #, php-format
1085
  #@ cpd
1086
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1087
  msgstr ""
1088
 
1089
+ #: counter-options.php:666
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1145
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1193
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1202
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1366
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:986
1117
+ #@ cpd
1118
+ msgid "Export failed! Cannot open file."
1119
+ msgstr ""
1120
+
1121
+ #: counter-core.php:1034
1122
+ #@ cpd
1123
+ msgid "Download the export file:"
1124
+ msgstr ""
1125
+
1126
+ #: counter-core.php:1089
1127
+ #, php-format
1128
+ #@ cpd
1129
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1130
+ msgstr ""
1131
+
1132
+ #: counter-options.php:289
1133
+ #@ cpd
1134
+ msgid "Deleting old data..."
1135
+ msgstr ""
1136
+
1137
+ #: counter-options.php:493
1138
+ #@ cpd
1139
+ msgid "Most Industrious Visitors"
1140
+ msgstr ""
1141
+
1142
+ #: counter-options.php:497
1143
+ #, php-format
1144
+ #@ cpd
1145
+ msgid "Show the %s most industrious visitors of the last %s days"
1146
+ msgstr ""
1147
+
1148
+ #: counter-options.php:544
1149
+ #@ cpd
1150
+ msgid "Export"
1151
+ msgstr ""
1152
+
1153
+ #: counter-options.php:548
1154
+ #, php-format
1155
+ #@ cpd
1156
+ msgid "Export the last %s days as CSV-File"
1157
+ msgstr ""
1158
+
1159
+ #: counter-options.php:552
1160
+ #@ cpd
1161
+ msgid "Export entries"
1162
+ msgstr ""
1163
+
1164
+ #: counter-options.php:875
1165
+ #@ cpd
1166
+ msgid "Post types"
1167
+ msgstr ""
1168
+
1169
+ #: counter-options.php:878
1170
+ #@ cpd
1171
+ msgid "Only count these post types. Leave empty to count them all."
1172
+ msgstr ""
1173
+
1174
+ #: counter-options.php:879
1175
+ #, php-format
1176
+ #@ cpd
1177
+ msgid "Current post types: %s"
1178
+ msgstr ""
1179
+
1180
+ #: counter.php:243
1181
+ #@ cpd
1182
+ msgid "Since"
1183
+ msgstr ""
1184
+
1185
+ #: counter.php:1502
1186
+ #: counter.php:1534
1187
+ #@ cpd
1188
+ msgid "Popular Posts"
1189
+ msgstr ""
1190
+
1191
+ #: counter.php:1504
1192
+ #@ cpd
1193
+ msgid "List of Popular Posts"
1194
+ msgstr ""
1195
+
1196
+ #: counter.php:1542
1197
+ #@ cpd
1198
+ msgid "Title:"
1199
+ msgstr ""
1200
+
1201
+ #: counter.php:1546
1202
+ #@ cpd
1203
+ msgid "Days:"
1204
+ msgstr ""
1205
+
1206
+ #: counter.php:1550
1207
+ #@ cpd
1208
+ msgid "Limit:"
1209
+ msgstr ""
1210
+
1211
+ #: counter.php:1554
1212
+ #@ cpd
1213
+ msgid "Show header:"
1214
+ msgstr ""
1215
+
1216
+ #: counter.php:1558
1217
+ #@ cpd
1218
+ msgid "Show counters:"
1219
+ msgstr ""
1220
+
locale/cpd-nl_NL.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:16+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: translation by WordPressWebshop.com <info@wppg.me>\n"
9
  "MIME-Version: 1.0\n"
@@ -25,302 +25,300 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Instellingen bijgewerkt"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Database schoongemaakt. %s rijen verwijderd."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEÏNSTALLEREN Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "eTabel %s verwijderd"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opties verwijderd"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstallatie"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Klik hier"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "om de deinstallatie te beeindigen en \"Count per Day\" te deactiveren."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Tijd online"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Aangemelde Gebruikers"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "ook tellen"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Automatisch tellen"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots te negeren"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Aktualiseren opties"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Database schoonmaken"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "WAARSCHUWING"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Ja"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistieken"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Totaal aantal bezoekers"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Bezoekers op dit moment online"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Bezoekers vandaag"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Bezoekers gisteren"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Bezoekers vorige week"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Teller start bij"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Bezoekers per dag"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Bezoekers per maand"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Bezoekers per bericht"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Teller gereset"
227
 
228
- #: counter-options.php:835
229
- #: counter-options.php:839
230
  #@ cpd
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
233
 
234
- #: counter-options.php:838
235
  #@ cpd
236
  msgid "Latest Counts - Posts"
237
  msgstr "Laatste Tellingen - Berichten"
238
 
239
- #: counter-options.php:842
240
  #@ cpd
241
  msgid "Latest Counts - Days"
242
  msgstr "Laatste Tellingen - Dagen"
243
 
244
- #: counter-options.php:843
245
- #: counter-options.php:847
246
- #: counter-options.php:869
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "Hoeveel dagen wil je terugkijken?"
250
 
251
- #: counter-options.php:883
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "Laat in lijsten zien"
255
 
256
- #: counter-options.php:884
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Toon \"Lezingen per post\" in een nieuwe kolom in bericht impressies management."
260
 
261
- #: counter-options.php:686
262
- #: counter-options.php:696
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Reset de teller"
266
 
267
- #: counter-options.php:689
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  msgstr "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!"
271
 
272
- #: counter.php:756
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
277
 
278
- #: counter-core.php:652
279
- #: counter-options.php:401
280
- #: counter-options.php:740
281
  #@ default
282
  msgid "Settings"
283
  msgstr "Instellingen"
284
 
285
- #: counter-core.php:1464
286
- #: counter-options.php:789
287
- #: counter.php:222
288
- #: counter.php:974
289
  #@ cpd
290
  msgid "Reads"
291
  msgstr "Vertoningen"
292
 
293
- #: counter-core.php:793
294
  #@ cpd
295
  msgid "Latest Counts"
296
  msgstr "Laatste Tellingen"
297
 
298
- #: counter-options.php:846
299
  #@ cpd
300
  msgid "Chart - Days"
301
  msgstr "Grafiek - Dagen"
302
 
303
- #: counter-options.php:850
304
  #@ cpd
305
  msgid "Chart - Height"
306
  msgstr "Grafiek - Hoogte"
307
 
308
- #: counter-options.php:851
309
  #@ cpd
310
  msgid "Height of the biggest bar"
311
  msgstr "Hoogte van de grootste staaf"
312
 
313
- #: counter.php:1355
314
  #@ cpd
315
  msgid "This post"
316
  msgstr "Dit bericht"
317
 
318
- #: counter-options.php:799
319
  #@ default
320
  msgid "Dashboard"
321
  msgstr "Dashboard"
322
 
323
- #: counter.php:327
324
  #@ cpd
325
  msgid "Reads per day"
326
  msgstr "Hits per dag"
@@ -336,32 +334,32 @@ msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder lan
336
  msgid "update next"
337
  msgstr "volgende aktualiseren"
338
 
339
- #: counter-options.php:636
340
  #@ cpd
341
  msgid "GeoIP - Countries"
342
  msgstr "GeoIP - Landen"
343
 
344
- #: counter-options.php:645
345
  #@ cpd
346
  msgid "Update old counter data"
347
  msgstr "Aktualiseren data van oude tellingen"
348
 
349
- #: counter-options.php:657
350
  #@ cpd
351
  msgid "Update GeoIP database"
352
  msgstr "Aktualiseren GeoIP databank"
353
 
354
- #: counter-options.php:652
355
  #@ cpd
356
  msgid "Download a new version of GeoIP.dat file."
357
  msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
358
 
359
- #: counter-options.php:662
360
  #@ cpd
361
  msgid "More informations about GeoIP"
362
  msgstr "Meer informatie over GeoIP"
363
 
364
- #: counter-core.php:804
365
  #@ cpd
366
  msgid "Reads per Country"
367
  msgstr "vertoningen per Land"
@@ -381,12 +379,12 @@ msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of d
381
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
382
  msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
383
 
384
- #: counter-options.php:855
385
  #@ cpd
386
  msgid "Countries"
387
  msgstr "Landen"
388
 
389
- #: counter-options.php:856
390
  #@ cpd
391
  msgid "How many countries do you want to see on dashboard page?"
392
  msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
@@ -397,33 +395,35 @@ msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
397
  msgid "Mass Bots cleaned. %s counts deleted."
398
  msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
399
 
400
- #: counter-options.php:417
401
  #: massbots.php:46
402
  #@ cpd
403
  msgid "Mass Bots"
404
  msgstr "Massa Bots"
405
 
406
- #: counter-options.php:421
407
  #, php-format
408
  #@ cpd
409
  msgid "Show all IPs with more than %s page views per day"
410
  msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
411
 
412
- #: counter-options.php:422
 
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "laat zien"
418
 
419
- #: counter-options.php:448
420
- #: counter-options.php:464
 
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Verwijder deze %s tellingen"
425
 
426
- #: counter.php:913
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Andere"
@@ -434,108 +434,112 @@ msgstr "Andere"
434
  msgid "Front page displays"
435
  msgstr "Voorpagina weergaves"
436
 
437
- #: counter-core.php:799
438
- #: counter-options.php:860
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
- #: counter-options.php:430
 
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
- #: counter-options.php:431
 
449
  #: notes.php:88
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Datum"
454
 
455
- #: counter-options.php:432
 
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Browser"
459
 
460
- #: counter-options.php:433
 
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Hits"
464
 
465
- #: counter-options.php:891
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Beginwaarden"
469
 
470
- #: counter-options.php:895
471
  #@ cpd
472
  msgid "Here you can change the date of first count and add a start count."
473
  msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
474
 
475
- #: counter-options.php:899
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Startdatum"
479
 
480
- #: counter-options.php:900
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Je oude teller start op?"
484
 
485
- #: counter-options.php:903
486
- #: counter-options.php:907
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Beginwaarde van de telling"
490
 
491
- #: counter-options.php:904
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
495
 
496
- #: counter-options.php:727
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Ondersteuning"
500
 
501
- #: counter-core.php:754
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
505
 
506
- #: counter-core.php:755
507
  #, php-format
508
  #@ cpd
509
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
  msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
511
 
512
- #: counter.php:873
513
  #@ default
514
  msgid "Show"
515
  msgstr "Vertonen"
516
 
517
- #: counter.php:1085
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr "Bericht Bewerken"
521
 
522
- #: counter-core.php:753
523
  #, php-format
524
  #@ cpd
525
  msgid "Time for Count per Day: <code>%s</code>."
526
  msgstr "Tijd voor Count per Day: <code>%s</code>."
527
 
528
- #: counter-options.php:759
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "Tot Gebruikers Niveau"
532
 
533
- #: counter-core.php:796
534
  #@ default
535
  msgid "Plugin"
536
  msgstr "Plugin"
537
 
538
- #: counter.php:875
539
  #: notes.php:55
540
  #: notes.php:89
541
  #@ cpd
@@ -567,66 +571,66 @@ msgstr "verwijderen"
567
  msgid "edit"
568
  msgstr "bewerken"
569
 
570
- #: counter-options.php:908
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Voeg deze waarde toe aan \"Totale vertoningen\"."
574
 
575
- #: counter.php:218
576
- #: counter.php:1356
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Totale vertoningen"
580
 
581
- #: counter.php:219
582
- #: counter.php:1357
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "vertoningen vandaag"
586
 
587
- #: counter.php:220
588
- #: counter.php:1358
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "vertoningen gisteren"
592
 
593
- #: counter-options.php:778
594
  #@ cpd
595
  msgid "Anonymous IP"
596
  msgstr "Anonieme IP"
597
 
598
- #: counter-options.php:782
599
  #@ cpd
600
  msgid "Cache"
601
  msgstr "Cache"
602
 
603
- #: counter-options.php:783
604
  #@ cpd
605
  msgid "I use a cache plugin. Count these visits with ajax."
606
  msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
607
 
608
- #: counter-options.php:861
609
  #@ cpd
610
  msgid "Substring of the user agent, separated by comma"
611
  msgstr "Substring van de user agent, gescheiden door een comma"
612
 
613
- #: counter-options.php:945
614
  #@ cpd
615
  msgid "Debug mode"
616
  msgstr "Debugmodus"
617
 
618
- #: counter-options.php:947
619
  #@ cpd
620
  msgid "Show debug informations at the bottom of all pages."
621
  msgstr "Geef debug informatie weer op de bodem van elke pagina."
622
 
623
- #: counter-core.php:805
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Bezoekers per Land"
627
 
628
- #: counter.php:418
629
- #: counter.php:1198
630
  #@ cpd
631
  msgid "Map"
632
  msgstr "Kaart"
@@ -651,472 +655,565 @@ msgstr "PostID"
651
  msgid "no data found"
652
  msgstr "geen data gevonden"
653
 
654
- #: counter-options.php:639
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 "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!"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Teller"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Clients en verwijzingen"
668
 
669
- #: counter-options.php:789
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 "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
673
 
674
- #: counter-options.php:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Lokale URLs"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Geef lokale verwijzingen ook weer."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Berichten"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Pagina's"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "vertoningen vorige week"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Categorie"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Tag"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "Licentie"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "vertoningen per maand"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Verwijzing"
725
 
726
- #: counter.php:1380
727
  #@ default
728
  msgid "Title"
729
  msgstr "Titel"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Verwijzingen - Entries"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Verwijzingen - Dagen"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "De %s verwijzingen in de laatste %s dagen:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Bezoekers online"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" bijgewerkt naar versie %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Backup mislukt! Kan bestand niet openen"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Bezig met backup van %s registraties. Elk punt komt overeen met %s registraties."
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Backup van teller tabel opgeslagen in %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Backup van teller opties en verzameling opgeslagen in %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Bezig met verzamelen..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Verkrijg Bezoekers per Bericht..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Verwijder oude data..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Teller registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s &gt; grootte na = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Installatie van \"Count per Day\" gecontroleerd"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Hulpmiddelen"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Bewaar alleen de URL, geen query string."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Wie het kan zien"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "aangepast"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "en hoger kunnen de statistieken pagina zien."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Stylesheet"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "Geen Stylesheet in Frontend"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Backup"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Registraties per keer"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  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."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Maak een backup van de database"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Verzamel oude data"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "Huidige grootte van je teller tabel %s is %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "Je verzameling bevat data tot %s."
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Alle verzamelde data tot %s wordt verwijderd."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "ReActivatie"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "ReActiveer de plugin"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Bezoekers"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Meest bezochte dag"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "slepen en neerzetten om te sorteren"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:26:58+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: translation by WordPressWebshop.com <info@wppg.me>\n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Instellingen bijgewerkt"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Database schoongemaakt. %s rijen verwijderd."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEÏNSTALLEREN Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "eTabel %s verwijderd"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opties verwijderd"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstallatie"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Klik hier"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "om de deinstallatie te beeindigen en \"Count per Day\" te deactiveren."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Tijd online"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Aangemelde Gebruikers"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "ook tellen"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Automatisch tellen"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots te negeren"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Aktualiseren opties"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Database schoonmaken"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "WAARSCHUWING"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Ja"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistieken"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Totaal aantal bezoekers"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Bezoekers op dit moment online"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Bezoekers vandaag"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Bezoekers gisteren"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Bezoekers vorige week"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Teller start bij"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Bezoekers per dag"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Bezoekers per maand"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Bezoekers per bericht"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Teller gereset"
226
 
227
+ #: counter-options.php:925
228
+ #: counter-options.php:929
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
232
 
233
+ #: counter-options.php:928
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Laatste Tellingen - Berichten"
237
 
238
+ #: counter-options.php:932
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Laatste Tellingen - Dagen"
242
 
243
+ #: counter-options.php:933
244
+ #: counter-options.php:937
245
+ #: counter-options.php:959
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "Hoeveel dagen wil je terugkijken?"
249
 
250
+ #: counter-options.php:973
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Laat in lijsten zien"
254
 
255
+ #: counter-options.php:974
256
  #@ cpd
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Toon \"Lezingen per post\" in een nieuwe kolom in bericht impressies management."
259
 
260
+ #: counter-options.php:770
261
+ #: counter-options.php:780
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Reset de teller"
265
 
266
+ #: counter-options.php:773
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 "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!"
270
 
271
+ #: counter.php:771
272
  #, php-format
273
  #@ cpd
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
276
 
277
+ #: counter-core.php:641
278
+ #: counter-options.php:409
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Instellingen"
282
 
283
+ #: counter-core.php:1526
284
+ #: counter-options.php:869
285
+ #: counter.php:235
286
+ #: counter.php:1019
287
  #@ cpd
288
  msgid "Reads"
289
  msgstr "Vertoningen"
290
 
291
+ #: counter-core.php:782
292
  #@ cpd
293
  msgid "Latest Counts"
294
  msgstr "Laatste Tellingen"
295
 
296
+ #: counter-options.php:936
297
  #@ cpd
298
  msgid "Chart - Days"
299
  msgstr "Grafiek - Dagen"
300
 
301
+ #: counter-options.php:940
302
  #@ cpd
303
  msgid "Chart - Height"
304
  msgstr "Grafiek - Hoogte"
305
 
306
+ #: counter-options.php:941
307
  #@ cpd
308
  msgid "Height of the biggest bar"
309
  msgstr "Hoogte van de grootste staaf"
310
 
311
+ #: counter.php:1406
312
  #@ cpd
313
  msgid "This post"
314
  msgstr "Dit bericht"
315
 
316
+ #: counter-options.php:889
317
  #@ default
318
  msgid "Dashboard"
319
  msgstr "Dashboard"
320
 
321
+ #: counter.php:342
322
  #@ cpd
323
  msgid "Reads per day"
324
  msgstr "Hits per dag"
334
  msgid "update next"
335
  msgstr "volgende aktualiseren"
336
 
337
+ #: counter-options.php:720
338
  #@ cpd
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Landen"
341
 
342
+ #: counter-options.php:729
343
  #@ cpd
344
  msgid "Update old counter data"
345
  msgstr "Aktualiseren data van oude tellingen"
346
 
347
+ #: counter-options.php:741
348
  #@ cpd
349
  msgid "Update GeoIP database"
350
  msgstr "Aktualiseren GeoIP databank"
351
 
352
+ #: counter-options.php:736
353
  #@ cpd
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
356
 
357
+ #: counter-options.php:746
358
  #@ cpd
359
  msgid "More informations about GeoIP"
360
  msgstr "Meer informatie over GeoIP"
361
 
362
+ #: counter-core.php:793
363
  #@ cpd
364
  msgid "Reads per Country"
365
  msgstr "vertoningen per Land"
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
+ #: counter-options.php:945
383
  #@ cpd
384
  msgid "Countries"
385
  msgstr "Landen"
386
 
387
+ #: counter-options.php:946
388
  #@ cpd
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
397
 
398
+ #: counter-options.php:429
399
  #: massbots.php:46
400
  #@ cpd
401
  msgid "Mass Bots"
402
  msgstr "Massa Bots"
403
 
404
+ #: counter-options.php:433
405
  #, php-format
406
  #@ cpd
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
+ #: counter-options.php:434
411
+ #: counter-options.php:498
412
  #: notes.php:84
413
  #: userperspan.php:56
414
  #@ cpd
415
  msgid "show"
416
  msgstr "laat zien"
417
 
418
+ #: counter-options.php:460
419
+ #: counter-options.php:476
420
+ #: counter-options.php:523
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Verwijder deze %s tellingen"
425
 
426
+ #: counter.php:958
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "Andere"
434
  msgid "Front page displays"
435
  msgstr "Voorpagina weergaves"
436
 
437
+ #: counter-core.php:788
438
+ #: counter-options.php:950
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Browser"
442
 
443
+ #: counter-options.php:442
444
+ #: counter-options.php:506
445
  #@ cpd
446
  msgid "IP"
447
  msgstr "IP"
448
 
449
+ #: counter-options.php:443
450
+ #: counter-options.php:507
451
  #: notes.php:88
452
  #@ cpd
453
  #@ default
454
  msgid "Date"
455
  msgstr "Datum"
456
 
457
+ #: counter-options.php:444
458
+ #: counter-options.php:508
459
  #@ cpd
460
  msgid "Client"
461
  msgstr "Browser"
462
 
463
+ #: counter-options.php:445
464
+ #: counter-options.php:509
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Hits"
468
 
469
+ #: counter-options.php:981
470
  #@ cpd
471
  msgid "Start Values"
472
  msgstr "Beginwaarden"
473
 
474
+ #: counter-options.php:985
475
  #@ cpd
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
478
 
479
+ #: counter-options.php:989
480
  #@ cpd
481
  msgid "Start date"
482
  msgstr "Startdatum"
483
 
484
+ #: counter-options.php:990
485
  #@ cpd
486
  msgid "Your old Counter starts at?"
487
  msgstr "Je oude teller start op?"
488
 
489
+ #: counter-options.php:993
490
+ #: counter-options.php:997
491
  #@ cpd
492
  msgid "Start count"
493
  msgstr "Beginwaarde van de telling"
494
 
495
+ #: counter-options.php:994
496
  #@ cpd
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
499
 
500
+ #: counter-options.php:811
501
  #@ cpd
502
  msgid "Support"
503
  msgstr "Ondersteuning"
504
 
505
+ #: counter-core.php:743
506
  #@ cpd
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
509
 
510
+ #: counter-core.php:744
511
  #, php-format
512
  #@ cpd
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
515
 
516
+ #: counter.php:888
517
  #@ default
518
  msgid "Show"
519
  msgstr "Vertonen"
520
 
521
+ #: counter.php:1130
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Bericht Bewerken"
525
 
526
+ #: counter-core.php:742
527
  #, php-format
528
  #@ cpd
529
  msgid "Time for Count per Day: <code>%s</code>."
530
  msgstr "Tijd voor Count per Day: <code>%s</code>."
531
 
532
+ #: counter-options.php:839
533
  #@ cpd
534
  msgid "until User Level"
535
  msgstr "Tot Gebruikers Niveau"
536
 
537
+ #: counter-core.php:785
538
  #@ default
539
  msgid "Plugin"
540
  msgstr "Plugin"
541
 
542
+ #: counter.php:890
543
  #: notes.php:55
544
  #: notes.php:89
545
  #@ cpd
571
  msgid "edit"
572
  msgstr "bewerken"
573
 
574
+ #: counter-options.php:998
575
  #@ cpd
576
  msgid "Add this value to \"Total reads\"."
577
  msgstr "Voeg deze waarde toe aan \"Totale vertoningen\"."
578
 
579
+ #: counter.php:231
580
+ #: counter.php:1407
581
  #@ cpd
582
  msgid "Total reads"
583
  msgstr "Totale vertoningen"
584
 
585
+ #: counter.php:232
586
+ #: counter.php:1408
587
  #@ cpd
588
  msgid "Reads today"
589
  msgstr "vertoningen vandaag"
590
 
591
+ #: counter.php:233
592
+ #: counter.php:1409
593
  #@ cpd
594
  msgid "Reads yesterday"
595
  msgstr "vertoningen gisteren"
596
 
597
+ #: counter-options.php:858
598
  #@ cpd
599
  msgid "Anonymous IP"
600
  msgstr "Anonieme IP"
601
 
602
+ #: counter-options.php:862
603
  #@ cpd
604
  msgid "Cache"
605
  msgstr "Cache"
606
 
607
+ #: counter-options.php:863
608
  #@ cpd
609
  msgid "I use a cache plugin. Count these visits with ajax."
610
  msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
611
 
612
+ #: counter-options.php:951
613
  #@ cpd
614
  msgid "Substring of the user agent, separated by comma"
615
  msgstr "Substring van de user agent, gescheiden door een comma"
616
 
617
+ #: counter-options.php:1035
618
  #@ cpd
619
  msgid "Debug mode"
620
  msgstr "Debugmodus"
621
 
622
+ #: counter-options.php:1037
623
  #@ cpd
624
  msgid "Show debug informations at the bottom of all pages."
625
  msgstr "Geef debug informatie weer op de bodem van elke pagina."
626
 
627
+ #: counter-core.php:794
628
  #@ cpd
629
  msgid "Visitors per Country"
630
  msgstr "Bezoekers per Land"
631
 
632
+ #: counter.php:433
633
+ #: counter.php:1249
634
  #@ cpd
635
  msgid "Map"
636
  msgstr "Kaart"
655
  msgid "no data found"
656
  msgstr "geen data gevonden"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Teller"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Clients en verwijzingen"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Lokale URLs"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Geef lokale verwijzingen ook weer."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Berichten"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Pagina's"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "vertoningen vorige week"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Categorie"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Tag"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "Licentie"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "vertoningen per maand"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Verwijzing"
729
 
730
+ #: counter.php:1431
731
  #@ default
732
  msgid "Title"
733
  msgstr "Titel"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Verwijzingen - Entries"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Verwijzingen - Dagen"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "De %s verwijzingen in de laatste %s dagen:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Bezoekers online"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" bijgewerkt naar versie %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Backup mislukt! Kan bestand niet openen"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "Backup van teller tabel opgeslagen in %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Backup van teller opties en verzameling opgeslagen in %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Bezig met verzamelen..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Verkrijg Bezoekers per Bericht..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Teller registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s &gt; grootte na = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Installatie van \"Count per Day\" gecontroleerd"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Hulpmiddelen"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Bewaar alleen de URL, geen query string."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Wie het kan zien"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "aangepast"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "en hoger kunnen de statistieken pagina zien."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Stylesheet"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "Geen Stylesheet in Frontend"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Backup"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Registraties per keer"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  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."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Maak een backup van de database"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Verzamel oude data"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "Huidige grootte van je teller tabel %s is %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "Je verzameling bevat data tot %s."
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Alle verzamelde data tot %s wordt verwijderd."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "ReActivatie"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "ReActiveer de plugin"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Bezoekers"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Meest bezochte dag"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "slepen en neerzetten om te sorteren"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-pl_PL.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-05-08 08:18:20+0000\n"
7
  "Last-Translator: LeXuS <lexus@intrakardial.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -42,446 +42,451 @@ msgstr "Następna aktualizacja"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Masowe boty wymazane. %s wpisów usuniętych."
44
 
45
- #: counter-options.php:113
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Baza danych wyczyszczona. %s wpisów usuniętych."
50
 
51
- #: counter-options.php:123
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Licznik skasowany"
55
 
56
- #: counter-options.php:128
57
- #: counter-options.php:719
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "USUŃ Count per Day"
61
 
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #: counter-options.php:135
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabela %s usunięta"
69
 
70
- #: counter-options.php:136
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Opcje usunięte"
74
 
75
- #: counter-options.php:377
76
- #: counter-options.php:705
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Odinstalowanie"
80
 
81
- #: counter-options.php:378
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Kliknij tutaj"
85
 
86
- #: counter-options.php:378
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
90
 
91
- #: counter-options.php:752
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Czas bycia online"
95
 
96
- #: counter-options.php:753
97
  #@ cpd
98
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
99
  msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
100
 
101
- #: counter-options.php:756
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Zalogowani użytkownicy"
105
 
106
- #: counter-options.php:758
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "również liczyć"
110
 
111
- #: counter-options.php:759
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "do poziomu użytkownika"
115
 
116
- #: counter-options.php:770
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Licznik"
120
 
121
- #: counter-options.php:771
122
  #@ cpd
123
  msgid "Counts automatically single-posts and pages, no changes on template needed."
124
  msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
125
 
126
- #: counter-options.php:774
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Boty do ignorowania"
130
 
131
- #: counter-options.php:799
132
  #@ default
133
  msgid "Dashboard"
134
  msgstr ""
135
 
136
- #: counter-core.php:792
137
- #: counter-options.php:834
138
  #@ cpd
139
  msgid "Visitors per post"
140
  msgstr "Gości na wpisie"
141
 
142
- #: counter-options.php:835
143
- #: counter-options.php:839
144
  #@ cpd
145
  msgid "How many posts do you want to see on dashboard page?"
146
  msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
147
 
148
- #: counter-options.php:838
149
  #@ cpd
150
  msgid "Latest Counts - Posts"
151
  msgstr "Ostatnie Odsłony - Wpisy"
152
 
153
- #: counter-options.php:842
154
  #@ cpd
155
  msgid "Latest Counts - Days"
156
  msgstr "Ostatnie Odsłony - Dni"
157
 
158
- #: counter-options.php:843
159
- #: counter-options.php:847
160
- #: counter-options.php:869
161
  #@ cpd
162
  msgid "How many days do you want look back?"
163
  msgstr "Ile dni chcesz patrzeć wstecz?"
164
 
165
- #: counter-options.php:846
166
  #@ cpd
167
  msgid "Chart - Days"
168
  msgstr "Wykres - Dni"
169
 
170
- #: counter-options.php:850
171
  #@ cpd
172
  msgid "Chart - Height"
173
  msgstr "Wykres - Wysokość"
174
 
175
- #: counter-options.php:851
176
  #@ cpd
177
  msgid "Height of the biggest bar"
178
  msgstr "Wysokość najwyższego słupka"
179
 
180
- #: counter-options.php:855
181
  #@ cpd
182
  msgid "Countries"
183
  msgstr "Państwa"
184
 
185
- #: counter-options.php:856
186
  #@ cpd
187
  msgid "How many countries do you want to see on dashboard page?"
188
  msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
189
 
190
- #: counter-options.php:883
191
  #@ cpd
192
  msgid "Show in lists"
193
  msgstr "Pokaż na listach"
194
 
195
- #: counter-options.php:884
196
  #@ cpd
197
  msgid "Show \"Reads per Post\" in a new column in post management views."
198
  msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
199
 
200
- #: counter-options.php:891
201
  #@ cpd
202
  msgid "Start Values"
203
  msgstr "Startowe Wartości"
204
 
205
- #: counter-options.php:895
206
  #@ cpd
207
  msgid "Here you can change the date of first count and add a start count."
208
  msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
209
 
210
- #: counter-options.php:899
211
  #@ cpd
212
  msgid "Start date"
213
  msgstr "Data rozpoczęcia"
214
 
215
- #: counter-options.php:900
216
  #@ cpd
217
  msgid "Your old Counter starts at?"
218
  msgstr "Stary licznik zaczął w?"
219
 
220
- #: counter-options.php:903
221
- #: counter-options.php:907
222
  #@ cpd
223
  msgid "Start count"
224
  msgstr "Stan początkowy licznika"
225
 
226
- #: counter-options.php:904
227
  #@ cpd
228
  msgid "Add this value to \"Total visitors\"."
229
  msgstr "Dodaj tą wartość do \"Gości razem\"."
230
 
231
- #: counter-options.php:908
232
  #@ cpd
233
  msgid "Add this value to \"Total reads\"."
234
  msgstr "Dodaj tą wartość do \"Odsłon razem\"."
235
 
236
- #: counter-options.php:952
237
  #@ cpd
238
  msgid "Update options"
239
  msgstr "Aktualizuj opcje"
240
 
241
- #: counter-options.php:636
242
  #@ cpd
243
  msgid "GeoIP - Countries"
244
  msgstr "GeoIP - Państwa"
245
 
246
- #: counter-options.php:645
247
  #@ cpd
248
  msgid "Update old counter data"
249
  msgstr "Aktualizuj stare dane licznika"
250
 
251
- #: counter-options.php:657
252
  #@ cpd
253
  msgid "Update GeoIP database"
254
  msgstr "Aktualizuj bazę danych GeoIP"
255
 
256
- #: counter-options.php:652
257
  #@ cpd
258
  msgid "Download a new version of GeoIP.dat file."
259
  msgstr "Pobierz nową wersję pliku GeoIP.dat."
260
 
261
- #: counter-options.php:662
262
  #@ cpd
263
  msgid "More informations about GeoIP"
264
  msgstr "Więcej informacji o GeoIP"
265
 
266
- #: counter-options.php:417
267
  #: massbots.php:46
268
  #@ cpd
269
  msgid "Mass Bots"
270
  msgstr "Masowe boty"
271
 
272
- #: counter-options.php:421
273
  #, php-format
274
  #@ cpd
275
  msgid "Show all IPs with more than %s page views per day"
276
  msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
277
 
278
- #: counter-options.php:422
 
279
  #: notes.php:84
280
  #: userperspan.php:56
281
  #@ cpd
282
  msgid "show"
283
  msgstr "pokaż"
284
 
285
- #: counter-options.php:430
 
286
  #@ cpd
287
  msgid "IP"
288
  msgstr "IP"
289
 
290
- #: counter-options.php:431
 
291
  #: notes.php:88
292
  #@ cpd
293
  #@ default
294
  msgid "Date"
295
  msgstr "Data"
296
 
297
- #: counter-options.php:432
 
298
  #@ cpd
299
  msgid "Client"
300
  msgstr "Klient"
301
 
302
- #: counter-options.php:433
 
303
  #@ cpd
304
  msgid "Views"
305
  msgstr "Wyświetlenia"
306
 
307
- #: counter-options.php:448
308
- #: counter-options.php:464
 
309
  #, php-format
310
  #@ cpd
311
  msgid "Delete these %s counts"
312
  msgstr "Usuń te s% dane"
313
 
314
- #: counter-options.php:553
315
- #: counter-options.php:561
316
  #@ cpd
317
  msgid "Clean the database"
318
  msgstr "Wyczyść bazę danych"
319
 
320
- #: counter-options.php:557
321
  #@ cpd
322
  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."
323
  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."
324
 
325
- #: counter-options.php:686
326
- #: counter-options.php:696
327
  #@ cpd
328
  msgid "Reset the counter"
329
  msgstr "Skasuj licznik"
330
 
331
- #: counter-options.php:689
332
  #@ cpd
333
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
334
  msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
335
 
336
- #: counter-options.php:708
337
  #@ cpd
338
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
339
  msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
340
 
341
- #: counter-options.php:709
342
  #@ cpd
343
  msgid "Here you can delete the tables and disable \"Count per Day\"."
344
  msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
345
 
346
- #: counter-options.php:712
347
  #@ cpd
348
  msgid "WARNING"
349
  msgstr "UWAGA"
350
 
351
- #: counter-options.php:713
352
  #@ cpd
353
  msgid "These tables (with ALL counter data) will be deleted."
354
  msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
355
 
356
- #: counter-options.php:715
357
  #@ cpd
358
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
359
  msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
360
 
361
- #: counter-options.php:695
362
- #: counter-options.php:718
363
  #@ cpd
364
  msgid "Yes"
365
  msgstr "Tak"
366
 
367
- #: counter-options.php:719
368
  #@ cpd
369
  msgid "You are sure to disable Count per Day and delete all data?"
370
  msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
371
 
372
- #: counter-options.php:727
373
  #@ cpd
374
  msgid "Support"
375
  msgstr "Wsparcie"
376
 
377
- #: counter-core.php:753
378
  #, php-format
379
  #@ cpd
380
  msgid "Time for Count per Day: <code>%s</code>."
381
  msgstr "Czas u Count per Day: <code>%s</code>."
382
 
383
- #: counter-core.php:754
384
  #@ cpd
385
  msgid "Bug? Problem? Question? Hint? Praise?"
386
  msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
387
 
388
- #: counter-core.php:755
389
  #, php-format
390
  #@ cpd
391
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
392
  msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
393
 
394
- #: counter.php:218
395
- #: counter.php:1356
396
  #@ cpd
397
  msgid "Total reads"
398
  msgstr "Odsłon razem"
399
 
400
- #: counter.php:219
401
- #: counter.php:1357
402
  #@ cpd
403
  msgid "Reads today"
404
  msgstr "Odsłon dzisiaj"
405
 
406
- #: counter.php:220
407
- #: counter.php:1358
408
  #@ cpd
409
  msgid "Reads yesterday"
410
  msgstr "Odsłon wczoraj"
411
 
412
- #: counter-core.php:788
413
- #: counter.php:223
414
- #: counter.php:1167
415
- #: counter.php:1361
416
  #@ cpd
417
  msgid "Total visitors"
418
  msgstr "Gości razem"
419
 
420
- #: counter.php:224
421
- #: counter.php:1367
422
  #@ cpd
423
  msgid "Visitors currently online"
424
  msgstr "Goście obecnie online"
425
 
426
- #: counter.php:225
427
- #: counter.php:1362
428
  #@ cpd
429
  msgid "Visitors today"
430
  msgstr "Gości dzisiaj"
431
 
432
- #: counter.php:226
433
- #: counter.php:1363
434
  #@ cpd
435
  msgid "Visitors yesterday"
436
  msgstr "Gości wczoraj"
437
 
438
- #: counter.php:227
439
- #: counter.php:1364
440
  #@ cpd
441
  msgid "Visitors last week"
442
  msgstr "Gości w preszłym tygodniu"
443
 
444
- #: counter-core.php:794
445
- #: counter.php:229
446
- #: counter.php:328
447
- #: counter.php:1169
448
- #: counter.php:1366
449
  #: userperspan.php:46
450
  #@ cpd
451
  msgid "Visitors per day"
452
  msgstr "Gości dziennie"
453
 
454
- #: counter.php:230
455
- #: counter.php:924
456
- #: counter.php:1368
457
  #@ cpd
458
  msgid "Counter starts on"
459
  msgstr "Licznone od"
460
 
461
- #: counter.php:875
462
  #: notes.php:55
463
  #: notes.php:89
464
  #@ cpd
465
  msgid "Notes"
466
  msgstr "Notatka"
467
 
468
- #: counter.php:756
469
  #, php-format
470
  #@ cpd
471
  msgid "The %s most visited posts in last %s days:"
472
  msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
473
 
474
- #: counter.php:873
475
  #@ default
476
  msgid "Show"
477
  msgstr ""
478
 
479
- #: counter.php:913
480
  #@ cpd
481
  msgid "Other"
482
  msgstr "Inne"
483
 
484
- #: counter.php:1085
485
  #@ default
486
  msgid "Edit Post"
487
  msgstr ""
@@ -492,66 +497,65 @@ msgstr ""
492
  msgid "Front page displays"
493
  msgstr ""
494
 
495
- #: counter-core.php:652
496
- #: counter-options.php:401
497
- #: counter-options.php:740
498
  #@ default
499
  msgid "Settings"
500
  msgstr ""
501
 
502
- #: counter-core.php:1464
503
- #: counter-options.php:789
504
- #: counter.php:222
505
- #: counter.php:974
506
  #@ cpd
507
  msgid "Reads"
508
  msgstr "Odsłon"
509
 
510
- #: counter.php:1355
511
  #@ cpd
512
  msgid "This post"
513
  msgstr "Ten wpis"
514
 
515
- #: counter.php:327
516
  #@ cpd
517
  msgid "Reads per day"
518
  msgstr "Odsłon dziennie"
519
 
520
- #: counter-core.php:790
521
- #: counter.php:1365
522
  #@ cpd
523
  msgid "Visitors per month"
524
  msgstr "Gości miesięcznie"
525
 
526
- #: counter-core.php:799
527
- #: counter-options.php:860
528
  #@ cpd
529
  msgid "Browsers"
530
  msgstr "Przeglądarki"
531
 
532
- #: counter-core.php:793
533
  #@ cpd
534
  msgid "Latest Counts"
535
  msgstr "Ostatnie Odsłony"
536
 
537
- #: counter-core.php:796
538
  #@ default
539
  msgid "Plugin"
540
  msgstr ""
541
 
542
- #: counter-core.php:804
543
  #@ cpd
544
  msgid "Reads per Country"
545
  msgstr "Odsłon na państwo"
546
 
547
- #: counter-core.php:820
548
- #: counter.php:1283
549
  #@ cpd
550
  msgid "Statistics"
551
  msgstr "Statystyki"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Mapa"
@@ -596,37 +600,37 @@ msgstr "usunąć"
596
  msgid "edit"
597
  msgstr "edytować"
598
 
599
- #: counter-options.php:778
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "Anonimowy IP"
603
 
604
- #: counter-options.php:782
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Cache"
608
 
609
- #: counter-options.php:783
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:861
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:945
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Tryb debugowania"
623
 
624
- #: counter-options.php:947
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:805
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Gości na państwo"
@@ -651,472 +655,565 @@ msgstr "ID wpisu"
651
  msgid "no data found"
652
  msgstr "Nie znaleziono danych"
653
 
654
- #: counter-options.php:639
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:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Licznik"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Przeglądarka i referrer"
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Lokalne adresy URL"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Pokaż też lokalny referrer."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr ""
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr ""
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Odsłon w zeszłym tygodniu"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr ""
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr ""
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr ""
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Odsłon miesięcznie"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Referrer"
725
 
726
- #: counter.php:1380
727
  #@ default
728
  msgid "Title"
729
  msgstr ""
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr ""
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr ""
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr ""
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr ""
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr ""
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr ""
767
 
768
- #: counter-core.php:1027
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:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr ""
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr ""
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr ""
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr ""
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr ""
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr ""
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr ""
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr ""
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr ""
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr ""
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr ""
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr ""
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr ""
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr ""
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr ""
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr ""
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr ""
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr ""
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr ""
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr ""
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr ""
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr ""
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr ""
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr ""
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr ""
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr ""
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr ""
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr ""
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr ""
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr ""
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr ""
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr ""
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr ""
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr ""
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr ""
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr ""
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:05+0000\n"
7
  "Last-Translator: LeXuS <lexus@intrakardial.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Masowe boty wymazane. %s wpisów usuniętych."
44
 
45
+ #: counter-options.php:118
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Baza danych wyczyszczona. %s wpisów usuniętych."
50
 
51
+ #: counter-options.php:128
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Licznik skasowany"
55
 
56
+ #: counter-options.php:133
57
+ #: counter-options.php:803
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "USUŃ Count per Day"
61
 
62
+ #: counter-options.php:138
63
+ #: counter-options.php:139
64
+ #: counter-options.php:140
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabela %s usunięta"
69
 
70
+ #: counter-options.php:141
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Opcje usunięte"
74
 
75
+ #: counter-options.php:382
76
+ #: counter-options.php:789
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Odinstalowanie"
80
 
81
+ #: counter-options.php:383
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Kliknij tutaj"
85
 
86
+ #: counter-options.php:383
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
90
 
91
+ #: counter-options.php:832
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Czas bycia online"
95
 
96
+ #: counter-options.php:833
97
  #@ cpd
98
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
99
  msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
100
 
101
+ #: counter-options.php:836
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Zalogowani użytkownicy"
105
 
106
+ #: counter-options.php:838
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "również liczyć"
110
 
111
+ #: counter-options.php:839
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "do poziomu użytkownika"
115
 
116
+ #: counter-options.php:850
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Licznik"
120
 
121
+ #: counter-options.php:851
122
  #@ cpd
123
  msgid "Counts automatically single-posts and pages, no changes on template needed."
124
  msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
125
 
126
+ #: counter-options.php:854
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Boty do ignorowania"
130
 
131
+ #: counter-options.php:889
132
  #@ default
133
  msgid "Dashboard"
134
  msgstr ""
135
 
136
+ #: counter-core.php:781
137
+ #: counter-options.php:924
138
  #@ cpd
139
  msgid "Visitors per post"
140
  msgstr "Gości na wpisie"
141
 
142
+ #: counter-options.php:925
143
+ #: counter-options.php:929
144
  #@ cpd
145
  msgid "How many posts do you want to see on dashboard page?"
146
  msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
147
 
148
+ #: counter-options.php:928
149
  #@ cpd
150
  msgid "Latest Counts - Posts"
151
  msgstr "Ostatnie Odsłony - Wpisy"
152
 
153
+ #: counter-options.php:932
154
  #@ cpd
155
  msgid "Latest Counts - Days"
156
  msgstr "Ostatnie Odsłony - Dni"
157
 
158
+ #: counter-options.php:933
159
+ #: counter-options.php:937
160
+ #: counter-options.php:959
161
  #@ cpd
162
  msgid "How many days do you want look back?"
163
  msgstr "Ile dni chcesz patrzeć wstecz?"
164
 
165
+ #: counter-options.php:936
166
  #@ cpd
167
  msgid "Chart - Days"
168
  msgstr "Wykres - Dni"
169
 
170
+ #: counter-options.php:940
171
  #@ cpd
172
  msgid "Chart - Height"
173
  msgstr "Wykres - Wysokość"
174
 
175
+ #: counter-options.php:941
176
  #@ cpd
177
  msgid "Height of the biggest bar"
178
  msgstr "Wysokość najwyższego słupka"
179
 
180
+ #: counter-options.php:945
181
  #@ cpd
182
  msgid "Countries"
183
  msgstr "Państwa"
184
 
185
+ #: counter-options.php:946
186
  #@ cpd
187
  msgid "How many countries do you want to see on dashboard page?"
188
  msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
189
 
190
+ #: counter-options.php:973
191
  #@ cpd
192
  msgid "Show in lists"
193
  msgstr "Pokaż na listach"
194
 
195
+ #: counter-options.php:974
196
  #@ cpd
197
  msgid "Show \"Reads per Post\" in a new column in post management views."
198
  msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
199
 
200
+ #: counter-options.php:981
201
  #@ cpd
202
  msgid "Start Values"
203
  msgstr "Startowe Wartości"
204
 
205
+ #: counter-options.php:985
206
  #@ cpd
207
  msgid "Here you can change the date of first count and add a start count."
208
  msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
209
 
210
+ #: counter-options.php:989
211
  #@ cpd
212
  msgid "Start date"
213
  msgstr "Data rozpoczęcia"
214
 
215
+ #: counter-options.php:990
216
  #@ cpd
217
  msgid "Your old Counter starts at?"
218
  msgstr "Stary licznik zaczął w?"
219
 
220
+ #: counter-options.php:993
221
+ #: counter-options.php:997
222
  #@ cpd
223
  msgid "Start count"
224
  msgstr "Stan początkowy licznika"
225
 
226
+ #: counter-options.php:994
227
  #@ cpd
228
  msgid "Add this value to \"Total visitors\"."
229
  msgstr "Dodaj tą wartość do \"Gości razem\"."
230
 
231
+ #: counter-options.php:998
232
  #@ cpd
233
  msgid "Add this value to \"Total reads\"."
234
  msgstr "Dodaj tą wartość do \"Odsłon razem\"."
235
 
236
+ #: counter-options.php:1042
237
  #@ cpd
238
  msgid "Update options"
239
  msgstr "Aktualizuj opcje"
240
 
241
+ #: counter-options.php:720
242
  #@ cpd
243
  msgid "GeoIP - Countries"
244
  msgstr "GeoIP - Państwa"
245
 
246
+ #: counter-options.php:729
247
  #@ cpd
248
  msgid "Update old counter data"
249
  msgstr "Aktualizuj stare dane licznika"
250
 
251
+ #: counter-options.php:741
252
  #@ cpd
253
  msgid "Update GeoIP database"
254
  msgstr "Aktualizuj bazę danych GeoIP"
255
 
256
+ #: counter-options.php:736
257
  #@ cpd
258
  msgid "Download a new version of GeoIP.dat file."
259
  msgstr "Pobierz nową wersję pliku GeoIP.dat."
260
 
261
+ #: counter-options.php:746
262
  #@ cpd
263
  msgid "More informations about GeoIP"
264
  msgstr "Więcej informacji o GeoIP"
265
 
266
+ #: counter-options.php:429
267
  #: massbots.php:46
268
  #@ cpd
269
  msgid "Mass Bots"
270
  msgstr "Masowe boty"
271
 
272
+ #: counter-options.php:433
273
  #, php-format
274
  #@ cpd
275
  msgid "Show all IPs with more than %s page views per day"
276
  msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
277
 
278
+ #: counter-options.php:434
279
+ #: counter-options.php:498
280
  #: notes.php:84
281
  #: userperspan.php:56
282
  #@ cpd
283
  msgid "show"
284
  msgstr "pokaż"
285
 
286
+ #: counter-options.php:442
287
+ #: counter-options.php:506
288
  #@ cpd
289
  msgid "IP"
290
  msgstr "IP"
291
 
292
+ #: counter-options.php:443
293
+ #: counter-options.php:507
294
  #: notes.php:88
295
  #@ cpd
296
  #@ default
297
  msgid "Date"
298
  msgstr "Data"
299
 
300
+ #: counter-options.php:444
301
+ #: counter-options.php:508
302
  #@ cpd
303
  msgid "Client"
304
  msgstr "Klient"
305
 
306
+ #: counter-options.php:445
307
+ #: counter-options.php:509
308
  #@ cpd
309
  msgid "Views"
310
  msgstr "Wyświetlenia"
311
 
312
+ #: counter-options.php:460
313
+ #: counter-options.php:476
314
+ #: counter-options.php:523
315
  #, php-format
316
  #@ cpd
317
  msgid "Delete these %s counts"
318
  msgstr "Usuń te s% dane"
319
 
320
+ #: counter-options.php:637
321
+ #: counter-options.php:645
322
  #@ cpd
323
  msgid "Clean the database"
324
  msgstr "Wyczyść bazę danych"
325
 
326
+ #: counter-options.php:641
327
  #@ cpd
328
  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."
329
  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."
330
 
331
+ #: counter-options.php:770
332
+ #: counter-options.php:780
333
  #@ cpd
334
  msgid "Reset the counter"
335
  msgstr "Skasuj licznik"
336
 
337
+ #: counter-options.php:773
338
  #@ cpd
339
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
340
  msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
341
 
342
+ #: counter-options.php:792
343
  #@ cpd
344
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
345
  msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
346
 
347
+ #: counter-options.php:793
348
  #@ cpd
349
  msgid "Here you can delete the tables and disable \"Count per Day\"."
350
  msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
351
 
352
+ #: counter-options.php:796
353
  #@ cpd
354
  msgid "WARNING"
355
  msgstr "UWAGA"
356
 
357
+ #: counter-options.php:797
358
  #@ cpd
359
  msgid "These tables (with ALL counter data) will be deleted."
360
  msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
361
 
362
+ #: counter-options.php:799
363
  #@ cpd
364
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
365
  msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
366
 
367
+ #: counter-options.php:779
368
+ #: counter-options.php:802
369
  #@ cpd
370
  msgid "Yes"
371
  msgstr "Tak"
372
 
373
+ #: counter-options.php:803
374
  #@ cpd
375
  msgid "You are sure to disable Count per Day and delete all data?"
376
  msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
377
 
378
+ #: counter-options.php:811
379
  #@ cpd
380
  msgid "Support"
381
  msgstr "Wsparcie"
382
 
383
+ #: counter-core.php:742
384
  #, php-format
385
  #@ cpd
386
  msgid "Time for Count per Day: <code>%s</code>."
387
  msgstr "Czas u Count per Day: <code>%s</code>."
388
 
389
+ #: counter-core.php:743
390
  #@ cpd
391
  msgid "Bug? Problem? Question? Hint? Praise?"
392
  msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
393
 
394
+ #: counter-core.php:744
395
  #, php-format
396
  #@ cpd
397
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
398
  msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
399
 
400
+ #: counter.php:231
401
+ #: counter.php:1407
402
  #@ cpd
403
  msgid "Total reads"
404
  msgstr "Odsłon razem"
405
 
406
+ #: counter.php:232
407
+ #: counter.php:1408
408
  #@ cpd
409
  msgid "Reads today"
410
  msgstr "Odsłon dzisiaj"
411
 
412
+ #: counter.php:233
413
+ #: counter.php:1409
414
  #@ cpd
415
  msgid "Reads yesterday"
416
  msgstr "Odsłon wczoraj"
417
 
418
+ #: counter-core.php:777
419
+ #: counter.php:236
420
+ #: counter.php:1218
421
+ #: counter.php:1412
422
  #@ cpd
423
  msgid "Total visitors"
424
  msgstr "Gości razem"
425
 
426
+ #: counter.php:237
427
+ #: counter.php:1418
428
  #@ cpd
429
  msgid "Visitors currently online"
430
  msgstr "Goście obecnie online"
431
 
432
+ #: counter.php:238
433
+ #: counter.php:1413
434
  #@ cpd
435
  msgid "Visitors today"
436
  msgstr "Gości dzisiaj"
437
 
438
+ #: counter.php:239
439
+ #: counter.php:1414
440
  #@ cpd
441
  msgid "Visitors yesterday"
442
  msgstr "Gości wczoraj"
443
 
444
+ #: counter.php:240
445
+ #: counter.php:1415
446
  #@ cpd
447
  msgid "Visitors last week"
448
  msgstr "Gości w preszłym tygodniu"
449
 
450
+ #: counter-core.php:783
451
+ #: counter.php:242
452
+ #: counter.php:343
453
+ #: counter.php:1220
454
+ #: counter.php:1417
455
  #: userperspan.php:46
456
  #@ cpd
457
  msgid "Visitors per day"
458
  msgstr "Gości dziennie"
459
 
460
+ #: counter.php:969
461
+ #: counter.php:1419
 
462
  #@ cpd
463
  msgid "Counter starts on"
464
  msgstr "Licznone od"
465
 
466
+ #: counter.php:890
467
  #: notes.php:55
468
  #: notes.php:89
469
  #@ cpd
470
  msgid "Notes"
471
  msgstr "Notatka"
472
 
473
+ #: counter.php:771
474
  #, php-format
475
  #@ cpd
476
  msgid "The %s most visited posts in last %s days:"
477
  msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
478
 
479
+ #: counter.php:888
480
  #@ default
481
  msgid "Show"
482
  msgstr ""
483
 
484
+ #: counter.php:958
485
  #@ cpd
486
  msgid "Other"
487
  msgstr "Inne"
488
 
489
+ #: counter.php:1130
490
  #@ default
491
  msgid "Edit Post"
492
  msgstr ""
497
  msgid "Front page displays"
498
  msgstr ""
499
 
500
+ #: counter-core.php:641
501
+ #: counter-options.php:409
 
502
  #@ default
503
  msgid "Settings"
504
  msgstr ""
505
 
506
+ #: counter-core.php:1526
507
+ #: counter-options.php:869
508
+ #: counter.php:235
509
+ #: counter.php:1019
510
  #@ cpd
511
  msgid "Reads"
512
  msgstr "Odsłon"
513
 
514
+ #: counter.php:1406
515
  #@ cpd
516
  msgid "This post"
517
  msgstr "Ten wpis"
518
 
519
+ #: counter.php:342
520
  #@ cpd
521
  msgid "Reads per day"
522
  msgstr "Odsłon dziennie"
523
 
524
+ #: counter-core.php:779
525
+ #: counter.php:1416
526
  #@ cpd
527
  msgid "Visitors per month"
528
  msgstr "Gości miesięcznie"
529
 
530
+ #: counter-core.php:788
531
+ #: counter-options.php:950
532
  #@ cpd
533
  msgid "Browsers"
534
  msgstr "Przeglądarki"
535
 
536
+ #: counter-core.php:782
537
  #@ cpd
538
  msgid "Latest Counts"
539
  msgstr "Ostatnie Odsłony"
540
 
541
+ #: counter-core.php:785
542
  #@ default
543
  msgid "Plugin"
544
  msgstr ""
545
 
546
+ #: counter-core.php:793
547
  #@ cpd
548
  msgid "Reads per Country"
549
  msgstr "Odsłon na państwo"
550
 
551
+ #: counter-core.php:809
552
+ #: counter.php:1334
553
  #@ cpd
554
  msgid "Statistics"
555
  msgstr "Statystyki"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "Mapa"
600
  msgid "edit"
601
  msgstr "edytować"
602
 
603
+ #: counter-options.php:858
604
  #@ cpd
605
  msgid "Anonymous IP"
606
  msgstr "Anonimowy IP"
607
 
608
+ #: counter-options.php:862
609
  #@ cpd
610
  msgid "Cache"
611
  msgstr "Cache"
612
 
613
+ #: counter-options.php:863
614
  #@ cpd
615
  msgid "I use a cache plugin. Count these visits with ajax."
616
  msgstr "Używam cache plugin. Licz wizyty z AJAX."
617
 
618
+ #: counter-options.php:951
619
  #@ cpd
620
  msgid "Substring of the user agent, separated by comma"
621
  msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
622
 
623
+ #: counter-options.php:1035
624
  #@ cpd
625
  msgid "Debug mode"
626
  msgstr "Tryb debugowania"
627
 
628
+ #: counter-options.php:1037
629
  #@ cpd
630
  msgid "Show debug informations at the bottom of all pages."
631
  msgstr "Pokaż debug analizę na dole wszystkich stron."
632
 
633
+ #: counter-core.php:794
634
  #@ cpd
635
  msgid "Visitors per Country"
636
  msgstr "Gości na państwo"
655
  msgid "no data found"
656
  msgstr "Nie znaleziono danych"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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ć!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Licznik"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Przeglądarka i referrer"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  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."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Lokalne adresy URL"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Pokaż też lokalny referrer."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr ""
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr ""
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Odsłon w zeszłym tygodniu"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr ""
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr ""
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr ""
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Odsłon miesięcznie"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Referrer"
729
 
730
+ #: counter.php:1431
731
  #@ default
732
  msgid "Title"
733
  msgstr ""
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr ""
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr ""
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr ""
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr ""
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr ""
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr ""
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr ""
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr ""
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr ""
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr ""
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr ""
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr ""
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr ""
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr ""
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr ""
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr ""
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr ""
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr ""
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr ""
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr ""
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr ""
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr ""
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr ""
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr ""
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr ""
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr ""
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr ""
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr ""
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr ""
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr ""
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr ""
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr ""
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr ""
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr ""
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr ""
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr ""
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr ""
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr ""
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr ""
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr ""
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr ""
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr ""
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-pt_BR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:24+0000\n"
7
  "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -25,197 +25,196 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Op&ccedil;&otilde;es atualizadas"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Banco de dados limpo. %s linhas apagadas."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALAR o Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabela %s apagada"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Op&ccedil;&otilde;es apagadas"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstalar"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clique aqui"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Per&iacute;odo online"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usu&aacute;rios logados"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar tamb&eacute;m"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Autocontador"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a serem ignorados"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atualizar op&ccedil;&otilde;es"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Limpar o banco de dados"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATEN&Ccedil;&Atilde;O"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sim, quero"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estat&iacute;sticas"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes online"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visitas ontem"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visitas semana passada"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "In&iacute;cio da contagem"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "(m&eacute;dia) de visitas por dia"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Visitas por m&ecirc;s"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Visitas por post"
@@ -237,165 +236,171 @@ msgstr "Atualizar proximo"
237
  msgid "Mass Bots cleaned. %s counts deleted."
238
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
239
 
240
- #: counter-options.php:123
241
  #@ cpd
242
  msgid "Counter reseted."
243
  msgstr "Contador reiniciado."
244
 
245
- #: counter-options.php:799
246
  #@ default
247
  msgid "Dashboard"
248
  msgstr "Painel"
249
 
250
- #: counter-options.php:835
251
- #: counter-options.php:839
252
  #@ cpd
253
  msgid "How many posts do you want to see on dashboard page?"
254
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
255
 
256
- #: counter-options.php:838
257
  #@ cpd
258
  msgid "Latest Counts - Posts"
259
  msgstr "Contagens Recentes - Posts"
260
 
261
- #: counter-options.php:842
262
  #@ cpd
263
  msgid "Latest Counts - Days"
264
  msgstr "Contagens Recentes - Dias"
265
 
266
- #: counter-options.php:843
267
- #: counter-options.php:847
268
- #: counter-options.php:869
269
  #@ cpd
270
  msgid "How many days do you want look back?"
271
  msgstr "Quantos dias atr&aacute;s você quer ver?"
272
 
273
- #: counter-options.php:846
274
  #@ cpd
275
  msgid "Chart - Days"
276
  msgstr "Gr&aacute;fico - Dias"
277
 
278
- #: counter-options.php:850
279
  #@ cpd
280
  msgid "Chart - Height"
281
  msgstr "Gr&aacute;fico - Altura"
282
 
283
- #: counter-options.php:851
284
  #@ cpd
285
  msgid "Height of the biggest bar"
286
  msgstr "Altura da barra maior"
287
 
288
- #: counter-options.php:855
289
  #@ cpd
290
  msgid "Countries"
291
  msgstr "Pa&iacute;ses"
292
 
293
- #: counter-options.php:856
294
  #@ cpd
295
  msgid "How many countries do you want to see on dashboard page?"
296
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
297
 
298
- #: counter-options.php:883
299
  #@ cpd
300
  msgid "Show in lists"
301
  msgstr "Exibir em listas"
302
 
303
- #: counter-options.php:884
304
  #@ cpd
305
  msgid "Show \"Reads per Post\" in a new column in post management views."
306
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
307
 
308
- #: counter-options.php:636
309
  #@ cpd
310
  msgid "GeoIP - Countries"
311
  msgstr "GeoIP - Pa&iacute;ses"
312
 
313
- #: counter-options.php:645
314
  #@ cpd
315
  msgid "Update old counter data"
316
  msgstr "Atualizar dados de contadores antigos"
317
 
318
- #: counter-options.php:657
319
  #@ cpd
320
  msgid "Update GeoIP database"
321
  msgstr "Atualizar Base de Dados GeoIP"
322
 
323
- #: counter-options.php:652
324
  #@ cpd
325
  msgid "Download a new version of GeoIP.dat file."
326
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
327
 
328
- #: counter-options.php:662
329
  #@ cpd
330
  msgid "More informations about GeoIP"
331
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
332
 
333
- #: counter-options.php:417
334
  #: massbots.php:46
335
  #@ cpd
336
  msgid "Mass Bots"
337
  msgstr "Mass Bots"
338
 
339
- #: counter-options.php:421
340
  #, php-format
341
  #@ cpd
342
  msgid "Show all IPs with more than %s page views per day"
343
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
344
 
345
- #: counter-options.php:422
 
346
  #: notes.php:84
347
  #: userperspan.php:56
348
  #@ cpd
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
- #: counter-options.php:430
 
353
  #@ cpd
354
  msgid "IP"
355
  msgstr "IP"
356
 
357
- #: counter-options.php:431
 
358
  #: notes.php:88
359
  #@ cpd
360
  #@ default
361
  msgid "Date"
362
  msgstr "Data"
363
 
364
- #: counter-options.php:432
 
365
  #@ cpd
366
  msgid "Client"
367
  msgstr "Cliente"
368
 
369
- #: counter-options.php:433
 
370
  #@ cpd
371
  msgid "Views"
372
  msgstr "Exibi&ccedil;&otilde;es"
373
 
374
- #: counter-options.php:448
375
- #: counter-options.php:464
 
376
  #, php-format
377
  #@ cpd
378
  msgid "Delete these %s counts"
379
  msgstr "Deletar estes %s contadores"
380
 
381
- #: counter-options.php:686
382
- #: counter-options.php:696
383
  #@ cpd
384
  msgid "Reset the counter"
385
  msgstr "Reiniciar o contador"
386
 
387
- #: counter-options.php:689
388
  #@ cpd
389
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
390
  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!"
391
 
392
- #: counter.php:756
393
  #, php-format
394
  #@ cpd
395
  msgid "The %s most visited posts in last %s days:"
396
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
397
 
398
- #: counter.php:913
399
  #@ cpd
400
  msgid "Other"
401
  msgstr "Outro"
@@ -406,43 +411,42 @@ msgstr "Outro"
406
  msgid "Front page displays"
407
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
408
 
409
- #: counter-core.php:652
410
- #: counter-options.php:401
411
- #: counter-options.php:740
412
  #@ default
413
  msgid "Settings"
414
  msgstr "Configura&ccedil;&otilde;es"
415
 
416
- #: counter-core.php:1464
417
- #: counter-options.php:789
418
- #: counter.php:222
419
- #: counter.php:974
420
  #@ cpd
421
  msgid "Reads"
422
  msgstr "Leituras"
423
 
424
- #: counter.php:1355
425
  #@ cpd
426
  msgid "This post"
427
  msgstr "Este post"
428
 
429
- #: counter.php:327
430
  #@ cpd
431
  msgid "Reads per day"
432
  msgstr "Leituras por dia"
433
 
434
- #: counter-core.php:799
435
- #: counter-options.php:860
436
  #@ cpd
437
  msgid "Browsers"
438
  msgstr "Navegadores"
439
 
440
- #: counter-core.php:793
441
  #@ cpd
442
  msgid "Latest Counts"
443
  msgstr "Contagens Recentes"
444
 
445
- #: counter-core.php:804
446
  #@ cpd
447
  msgid "Reads per Country"
448
  msgstr "Leituras por Pa&iacute;s"
@@ -462,81 +466,81 @@ msgstr "Nova base de dados GeoIP instalada."
462
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
463
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
464
 
465
- #: counter-options.php:759
466
  #@ cpd
467
  msgid "until User Level"
468
  msgstr "usuários do nível"
469
 
470
- #: counter-options.php:891
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Valor inicial"
474
 
475
- #: counter-options.php:895
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
479
 
480
- #: counter-options.php:899
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Data inicial"
484
 
485
- #: counter-options.php:900
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Sua contagem antiga começa em?"
489
 
490
- #: counter-options.php:903
491
- #: counter-options.php:907
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Contagem inicial"
495
 
496
- #: counter-options.php:904
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Adicione este valor para \"Total visitors\"."
500
 
501
- #: counter-options.php:727
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Suporte"
505
 
506
- #: counter-core.php:754
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
510
 
511
- #: counter-core.php:755
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
516
 
517
- #: counter.php:873
518
  #@ default
519
  msgid "Show"
520
  msgstr "Mostrar"
521
 
522
- #: counter.php:875
523
  #: notes.php:55
524
  #: notes.php:89
525
  #@ cpd
526
  msgid "Notes"
527
  msgstr "Notas"
528
 
529
- #: counter.php:1085
530
  #@ default
531
  msgid "Edit Post"
532
  msgstr "Editar Post"
533
 
534
- #: counter-core.php:796
535
  #@ default
536
  msgid "Plugin"
537
  msgstr "Plugin"
538
 
539
- #: counter-core.php:753
540
  #, php-format
541
  #@ cpd
542
  msgid "Time for Count per Day: <code>%s</code>."
@@ -567,66 +571,66 @@ msgstr "Apagar"
567
  msgid "edit"
568
  msgstr "Editar"
569
 
570
- #: counter-options.php:778
571
  #@ cpd
572
  msgid "Anonymous IP"
573
  msgstr "IP An&ocirc;nimo"
574
 
575
- #: counter-options.php:782
576
  #@ cpd
577
  msgid "Cache"
578
  msgstr "Cache"
579
 
580
- #: counter-options.php:783
581
  #@ cpd
582
  msgid "I use a cache plugin. Count these visits with ajax."
583
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
584
 
585
- #: counter-options.php:861
586
  #@ cpd
587
  msgid "Substring of the user agent, separated by comma"
588
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
589
 
590
- #: counter-options.php:908
591
  #@ cpd
592
  msgid "Add this value to \"Total reads\"."
593
  msgstr "Adicione este valor ao \"Total de Leituras\"."
594
 
595
- #: counter-options.php:945
596
  #@ cpd
597
  msgid "Debug mode"
598
  msgstr "Modo de depura&ccedil;&atilde;o"
599
 
600
- #: counter-options.php:947
601
  #@ cpd
602
  msgid "Show debug informations at the bottom of all pages."
603
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
604
 
605
- #: counter.php:218
606
- #: counter.php:1356
607
  #@ cpd
608
  msgid "Total reads"
609
  msgstr "Total de Leituras"
610
 
611
- #: counter.php:219
612
- #: counter.php:1357
613
  #@ cpd
614
  msgid "Reads today"
615
  msgstr "Leituras Hoje"
616
 
617
- #: counter.php:220
618
- #: counter.php:1358
619
  #@ cpd
620
  msgid "Reads yesterday"
621
  msgstr "Leituras Ontem"
622
 
623
- #: counter-core.php:805
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Visitantes por Pa&iacute;is"
627
 
628
- #: counter.php:418
629
- #: counter.php:1198
630
  #@ cpd
631
  msgid "Map"
632
  msgstr "Mapa"
@@ -651,472 +655,565 @@ msgstr "PostID"
651
  msgid "no data found"
652
  msgstr "N&atilde;o foram encontrados dados"
653
 
654
- #: counter-options.php:639
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 "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!"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "contador"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Clientes e Referências"
668
 
669
- #: counter-options.php:789
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 "Salvar e Exibir Clientes e Referências"
673
 
674
- #: counter-options.php:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "URLs Locais"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Também exibir referência local."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Posts"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Páginas"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Leituras na semana passada"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Categoria"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Teg"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "License"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Leituras por mês"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Referência"
725
 
726
- #: counter.php:1380
727
  #@ default
728
  msgid "Title"
729
  msgstr "Título"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Referência - entradas"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Quantas referência você quer ver no painel?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Referência - Dias"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "AA %s referências nos últimos %s dias:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Visitantes online"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "Atualizar \"Count per Day\" para a versão %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Backup falhou. O arquivo não abriu"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Backup da tabela do contador salvo em %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Backup das opções de contador e acumuladores salvas em %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Acumulador em progresso..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Obter visitas por Post..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Deletar dados antigos..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Instalação do \"Count per Day\" checada"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Ferramentas"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Salvar somente URL, sem sequencia de caracteres"
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Quem pode ver isto"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "Customizar"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "e superior têm permissão para ver a página de estatísticas."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Estilo"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "SEM Estilo na interface pública"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Não carregue o estilo \"counter.css\" na interface pública"
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Backup"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Entradas por passagem"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  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."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Backup da base de dados"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Coletar dados antigos"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "O tamanho atual da sua tabela de contador %s é %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "Atualmente sua coleção contém dados até %s"
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Dados novos são adicionados normalmente à coleção."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Todos os dados coletados até %s serão excluidos."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "Reativação"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "Reativar o plugin"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Visitantes"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Dia mais visitado"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "arrastar e soltar para classificar"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr "Buscar Strings"
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr "Erro ao ler o arquivo de BackUp!"
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr "O backup foi adicionado à tabela de contadores %s"
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr "A tabela de contadores %s foi restaurada do backup."
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr "Opções restauradas do backup."
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr "Sequencias de pesquisas antigas apagadas."
1009
 
1010
- #: counter-options.php:483
1011
  #@ cpd
1012
  msgid "Download only"
1013
  msgstr "Somente download"
1014
 
1015
- #: counter-options.php:515
1016
  #@ cpd
1017
  msgid "Settings and collections"
1018
  msgstr "Configurações e Coleções"
1019
 
1020
- #: counter-options.php:520
1021
  #, php-format
1022
  #@ cpd
1023
  msgid "Counter table %s"
1024
  msgstr "Tabela de Contador %s"
1025
 
1026
- #: counter-options.php:527
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Add data from the backup file %s to existing counter table?"
1030
  msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1031
 
1032
- #: counter-options.php:527
1033
  #@ cpd
1034
  msgid "Add"
1035
  msgstr "Adicionar"
1036
 
1037
- #: counter-options.php:531
1038
  #, php-format
1039
  #@ cpd
1040
  msgid "Restore data from the backup file %s ?"
1041
  msgstr "Restaurar dados a partir do backup %s ?"
1042
 
1043
- #: counter-options.php:531
1044
  #@ default
1045
  msgid "Restore"
1046
  msgstr "Restaurar"
1047
 
1048
- #: counter-options.php:533
1049
  #@ default
1050
  msgid "Delete"
1051
  msgstr "Apagar"
1052
 
1053
- #: counter-options.php:534
1054
  #, php-format
1055
  #@ cpd
1056
  msgid "Delete the backup file %s ?"
1057
  msgstr "Apagar arquivo backup %s ?"
1058
 
1059
- #: counter-options.php:540
1060
  #@ cpd
1061
  msgid "add backup to current counter table"
1062
  msgstr "adicionar backup para a tabela de contador atual"
1063
 
1064
- #: counter-options.php:541
1065
  #@ cpd
1066
  msgid "replace current counter table with with backup"
1067
  msgstr "substituir a tabela de contador atual pelo backup"
1068
 
1069
- #: counter-options.php:542
1070
  #@ cpd
1071
  msgid "delete backup file"
1072
  msgstr "apagar arquivo backup"
1073
 
1074
- #: counter-options.php:567
1075
  #, php-format
1076
  #@ cpd
1077
  msgid "Delete search strings older than %s days."
1078
  msgstr "Apagar sequencias de busca anteriores a %s dias."
1079
 
1080
- #: counter-options.php:571
1081
  #@ cpd
1082
  msgid "Delete search strings"
1083
  msgstr "Apagar sequencias de busca"
1084
 
1085
- #: counter.php:1142
1086
  #, php-format
1087
  #@ cpd
1088
  msgid "The %s most searched strings:"
1089
  msgstr "A %s string mais procurada:"
1090
 
1091
- #: counter.php:1151
1092
  #, php-format
1093
  #@ cpd
1094
  msgid "The search strings of the last %s days:"
1095
  msgstr "A série de busca dos últimos %s dias:"
1096
 
1097
- #: counter-options.php:347
1098
  #@ cpd
1099
  msgid "Clients and referers deleted"
1100
  msgstr ""
1101
 
1102
- #: counter-options.php:578
1103
  #, php-format
1104
  #@ cpd
1105
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1106
  msgstr ""
1107
 
1108
- #: counter-options.php:582
1109
  #@ cpd
1110
  msgid "Delete clients and referers"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1100
1114
  #@ default
1115
  msgid "Front page"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:10+0000\n"
7
  "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Op&ccedil;&otilde;es atualizadas"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Banco de dados limpo. %s linhas apagadas."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALAR o Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabela %s apagada"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Op&ccedil;&otilde;es apagadas"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstalar"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clique aqui"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Per&iacute;odo online"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usu&aacute;rios logados"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar tamb&eacute;m"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Autocontador"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a serem ignorados"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atualizar op&ccedil;&otilde;es"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Limpar o banco de dados"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATEN&Ccedil;&Atilde;O"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sim, quero"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estat&iacute;sticas"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes online"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visitas ontem"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visitas semana passada"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "In&iacute;cio da contagem"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "(m&eacute;dia) de visitas por dia"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitas por m&ecirc;s"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitas por post"
236
  msgid "Mass Bots cleaned. %s counts deleted."
237
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
238
 
239
+ #: counter-options.php:128
240
  #@ cpd
241
  msgid "Counter reseted."
242
  msgstr "Contador reiniciado."
243
 
244
+ #: counter-options.php:889
245
  #@ default
246
  msgid "Dashboard"
247
  msgstr "Painel"
248
 
249
+ #: counter-options.php:925
250
+ #: counter-options.php:929
251
  #@ cpd
252
  msgid "How many posts do you want to see on dashboard page?"
253
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
254
 
255
+ #: counter-options.php:928
256
  #@ cpd
257
  msgid "Latest Counts - Posts"
258
  msgstr "Contagens Recentes - Posts"
259
 
260
+ #: counter-options.php:932
261
  #@ cpd
262
  msgid "Latest Counts - Days"
263
  msgstr "Contagens Recentes - Dias"
264
 
265
+ #: counter-options.php:933
266
+ #: counter-options.php:937
267
+ #: counter-options.php:959
268
  #@ cpd
269
  msgid "How many days do you want look back?"
270
  msgstr "Quantos dias atr&aacute;s você quer ver?"
271
 
272
+ #: counter-options.php:936
273
  #@ cpd
274
  msgid "Chart - Days"
275
  msgstr "Gr&aacute;fico - Dias"
276
 
277
+ #: counter-options.php:940
278
  #@ cpd
279
  msgid "Chart - Height"
280
  msgstr "Gr&aacute;fico - Altura"
281
 
282
+ #: counter-options.php:941
283
  #@ cpd
284
  msgid "Height of the biggest bar"
285
  msgstr "Altura da barra maior"
286
 
287
+ #: counter-options.php:945
288
  #@ cpd
289
  msgid "Countries"
290
  msgstr "Pa&iacute;ses"
291
 
292
+ #: counter-options.php:946
293
  #@ cpd
294
  msgid "How many countries do you want to see on dashboard page?"
295
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
296
 
297
+ #: counter-options.php:973
298
  #@ cpd
299
  msgid "Show in lists"
300
  msgstr "Exibir em listas"
301
 
302
+ #: counter-options.php:974
303
  #@ cpd
304
  msgid "Show \"Reads per Post\" in a new column in post management views."
305
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
306
 
307
+ #: counter-options.php:720
308
  #@ cpd
309
  msgid "GeoIP - Countries"
310
  msgstr "GeoIP - Pa&iacute;ses"
311
 
312
+ #: counter-options.php:729
313
  #@ cpd
314
  msgid "Update old counter data"
315
  msgstr "Atualizar dados de contadores antigos"
316
 
317
+ #: counter-options.php:741
318
  #@ cpd
319
  msgid "Update GeoIP database"
320
  msgstr "Atualizar Base de Dados GeoIP"
321
 
322
+ #: counter-options.php:736
323
  #@ cpd
324
  msgid "Download a new version of GeoIP.dat file."
325
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
326
 
327
+ #: counter-options.php:746
328
  #@ cpd
329
  msgid "More informations about GeoIP"
330
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
331
 
332
+ #: counter-options.php:429
333
  #: massbots.php:46
334
  #@ cpd
335
  msgid "Mass Bots"
336
  msgstr "Mass Bots"
337
 
338
+ #: counter-options.php:433
339
  #, php-format
340
  #@ cpd
341
  msgid "Show all IPs with more than %s page views per day"
342
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
343
 
344
+ #: counter-options.php:434
345
+ #: counter-options.php:498
346
  #: notes.php:84
347
  #: userperspan.php:56
348
  #@ cpd
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
+ #: counter-options.php:442
353
+ #: counter-options.php:506
354
  #@ cpd
355
  msgid "IP"
356
  msgstr "IP"
357
 
358
+ #: counter-options.php:443
359
+ #: counter-options.php:507
360
  #: notes.php:88
361
  #@ cpd
362
  #@ default
363
  msgid "Date"
364
  msgstr "Data"
365
 
366
+ #: counter-options.php:444
367
+ #: counter-options.php:508
368
  #@ cpd
369
  msgid "Client"
370
  msgstr "Cliente"
371
 
372
+ #: counter-options.php:445
373
+ #: counter-options.php:509
374
  #@ cpd
375
  msgid "Views"
376
  msgstr "Exibi&ccedil;&otilde;es"
377
 
378
+ #: counter-options.php:460
379
+ #: counter-options.php:476
380
+ #: counter-options.php:523
381
  #, php-format
382
  #@ cpd
383
  msgid "Delete these %s counts"
384
  msgstr "Deletar estes %s contadores"
385
 
386
+ #: counter-options.php:770
387
+ #: counter-options.php:780
388
  #@ cpd
389
  msgid "Reset the counter"
390
  msgstr "Reiniciar o contador"
391
 
392
+ #: counter-options.php:773
393
  #@ cpd
394
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
395
  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!"
396
 
397
+ #: counter.php:771
398
  #, php-format
399
  #@ cpd
400
  msgid "The %s most visited posts in last %s days:"
401
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
402
 
403
+ #: counter.php:958
404
  #@ cpd
405
  msgid "Other"
406
  msgstr "Outro"
411
  msgid "Front page displays"
412
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
413
 
414
+ #: counter-core.php:641
415
+ #: counter-options.php:409
 
416
  #@ default
417
  msgid "Settings"
418
  msgstr "Configura&ccedil;&otilde;es"
419
 
420
+ #: counter-core.php:1526
421
+ #: counter-options.php:869
422
+ #: counter.php:235
423
+ #: counter.php:1019
424
  #@ cpd
425
  msgid "Reads"
426
  msgstr "Leituras"
427
 
428
+ #: counter.php:1406
429
  #@ cpd
430
  msgid "This post"
431
  msgstr "Este post"
432
 
433
+ #: counter.php:342
434
  #@ cpd
435
  msgid "Reads per day"
436
  msgstr "Leituras por dia"
437
 
438
+ #: counter-core.php:788
439
+ #: counter-options.php:950
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Navegadores"
443
 
444
+ #: counter-core.php:782
445
  #@ cpd
446
  msgid "Latest Counts"
447
  msgstr "Contagens Recentes"
448
 
449
+ #: counter-core.php:793
450
  #@ cpd
451
  msgid "Reads per Country"
452
  msgstr "Leituras por Pa&iacute;s"
466
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
467
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
468
 
469
+ #: counter-options.php:839
470
  #@ cpd
471
  msgid "until User Level"
472
  msgstr "usuários do nível"
473
 
474
+ #: counter-options.php:981
475
  #@ cpd
476
  msgid "Start Values"
477
  msgstr "Valor inicial"
478
 
479
+ #: counter-options.php:985
480
  #@ cpd
481
  msgid "Here you can change the date of first count and add a start count."
482
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
483
 
484
+ #: counter-options.php:989
485
  #@ cpd
486
  msgid "Start date"
487
  msgstr "Data inicial"
488
 
489
+ #: counter-options.php:990
490
  #@ cpd
491
  msgid "Your old Counter starts at?"
492
  msgstr "Sua contagem antiga começa em?"
493
 
494
+ #: counter-options.php:993
495
+ #: counter-options.php:997
496
  #@ cpd
497
  msgid "Start count"
498
  msgstr "Contagem inicial"
499
 
500
+ #: counter-options.php:994
501
  #@ cpd
502
  msgid "Add this value to \"Total visitors\"."
503
  msgstr "Adicione este valor para \"Total visitors\"."
504
 
505
+ #: counter-options.php:811
506
  #@ cpd
507
  msgid "Support"
508
  msgstr "Suporte"
509
 
510
+ #: counter-core.php:743
511
  #@ cpd
512
  msgid "Bug? Problem? Question? Hint? Praise?"
513
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
514
 
515
+ #: counter-core.php:744
516
  #, php-format
517
  #@ cpd
518
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
519
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
520
 
521
+ #: counter.php:888
522
  #@ default
523
  msgid "Show"
524
  msgstr "Mostrar"
525
 
526
+ #: counter.php:890
527
  #: notes.php:55
528
  #: notes.php:89
529
  #@ cpd
530
  msgid "Notes"
531
  msgstr "Notas"
532
 
533
+ #: counter.php:1130
534
  #@ default
535
  msgid "Edit Post"
536
  msgstr "Editar Post"
537
 
538
+ #: counter-core.php:785
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plugin"
542
 
543
+ #: counter-core.php:742
544
  #, php-format
545
  #@ cpd
546
  msgid "Time for Count per Day: <code>%s</code>."
571
  msgid "edit"
572
  msgstr "Editar"
573
 
574
+ #: counter-options.php:858
575
  #@ cpd
576
  msgid "Anonymous IP"
577
  msgstr "IP An&ocirc;nimo"
578
 
579
+ #: counter-options.php:862
580
  #@ cpd
581
  msgid "Cache"
582
  msgstr "Cache"
583
 
584
+ #: counter-options.php:863
585
  #@ cpd
586
  msgid "I use a cache plugin. Count these visits with ajax."
587
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
588
 
589
+ #: counter-options.php:951
590
  #@ cpd
591
  msgid "Substring of the user agent, separated by comma"
592
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
593
 
594
+ #: counter-options.php:998
595
  #@ cpd
596
  msgid "Add this value to \"Total reads\"."
597
  msgstr "Adicione este valor ao \"Total de Leituras\"."
598
 
599
+ #: counter-options.php:1035
600
  #@ cpd
601
  msgid "Debug mode"
602
  msgstr "Modo de depura&ccedil;&atilde;o"
603
 
604
+ #: counter-options.php:1037
605
  #@ cpd
606
  msgid "Show debug informations at the bottom of all pages."
607
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
608
 
609
+ #: counter.php:231
610
+ #: counter.php:1407
611
  #@ cpd
612
  msgid "Total reads"
613
  msgstr "Total de Leituras"
614
 
615
+ #: counter.php:232
616
+ #: counter.php:1408
617
  #@ cpd
618
  msgid "Reads today"
619
  msgstr "Leituras Hoje"
620
 
621
+ #: counter.php:233
622
+ #: counter.php:1409
623
  #@ cpd
624
  msgid "Reads yesterday"
625
  msgstr "Leituras Ontem"
626
 
627
+ #: counter-core.php:794
628
  #@ cpd
629
  msgid "Visitors per Country"
630
  msgstr "Visitantes por Pa&iacute;is"
631
 
632
+ #: counter.php:433
633
+ #: counter.php:1249
634
  #@ cpd
635
  msgid "Map"
636
  msgstr "Mapa"
655
  msgid "no data found"
656
  msgstr "N&atilde;o foram encontrados dados"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "contador"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Clientes e Referências"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "Salvar e Exibir Clientes e Referências"
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "URLs Locais"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Também exibir referência local."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Posts"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Páginas"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Leituras na semana passada"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Categoria"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Teg"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "License"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Leituras por mês"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Referência"
729
 
730
+ #: counter.php:1431
731
  #@ default
732
  msgid "Title"
733
  msgstr "Título"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Referência - entradas"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Quantas referência você quer ver no painel?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Referência - Dias"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "AA %s referências nos últimos %s dias:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Visitantes online"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "Atualizar \"Count per Day\" para a versão %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Backup falhou. O arquivo não abriu"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "Backup da tabela do contador salvo em %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Backup das opções de contador e acumuladores salvas em %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Acumulador em progresso..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Obter visitas por Post..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Instalação do \"Count per Day\" checada"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Ferramentas"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Salvar somente URL, sem sequencia de caracteres"
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Quem pode ver isto"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "Customizar"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "e superior têm permissão para ver a página de estatísticas."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Estilo"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "SEM Estilo na interface pública"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Não carregue o estilo \"counter.css\" na interface pública"
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Backup"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Entradas por passagem"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  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."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Backup da base de dados"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Coletar dados antigos"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "O tamanho atual da sua tabela de contador %s é %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "Atualmente sua coleção contém dados até %s"
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Dados novos são adicionados normalmente à coleção."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Todos os dados coletados até %s serão excluidos."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "Reativação"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "Reativar o plugin"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Visitantes"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Dia mais visitado"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "arrastar e soltar para classificar"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr "Buscar Strings"
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr "Erro ao ler o arquivo de BackUp!"
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr "O backup foi adicionado à tabela de contadores %s"
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr "A tabela de contadores %s foi restaurada do backup."
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr "Opções restauradas do backup."
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr "Sequencias de pesquisas antigas apagadas."
1001
 
1002
+ #: counter-options.php:567
1003
  #@ cpd
1004
  msgid "Download only"
1005
  msgstr "Somente download"
1006
 
1007
+ #: counter-options.php:599
1008
  #@ cpd
1009
  msgid "Settings and collections"
1010
  msgstr "Configurações e Coleções"
1011
 
1012
+ #: counter-options.php:604
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Counter table %s"
1016
  msgstr "Tabela de Contador %s"
1017
 
1018
+ #: counter-options.php:611
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Add data from the backup file %s to existing counter table?"
1022
  msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1023
 
1024
+ #: counter-options.php:611
1025
  #@ cpd
1026
  msgid "Add"
1027
  msgstr "Adicionar"
1028
 
1029
+ #: counter-options.php:615
1030
  #, php-format
1031
  #@ cpd
1032
  msgid "Restore data from the backup file %s ?"
1033
  msgstr "Restaurar dados a partir do backup %s ?"
1034
 
1035
+ #: counter-options.php:615
1036
  #@ default
1037
  msgid "Restore"
1038
  msgstr "Restaurar"
1039
 
1040
+ #: counter-options.php:617
1041
  #@ default
1042
  msgid "Delete"
1043
  msgstr "Apagar"
1044
 
1045
+ #: counter-options.php:618
1046
  #, php-format
1047
  #@ cpd
1048
  msgid "Delete the backup file %s ?"
1049
  msgstr "Apagar arquivo backup %s ?"
1050
 
1051
+ #: counter-options.php:624
1052
  #@ cpd
1053
  msgid "add backup to current counter table"
1054
  msgstr "adicionar backup para a tabela de contador atual"
1055
 
1056
+ #: counter-options.php:625
1057
  #@ cpd
1058
  msgid "replace current counter table with with backup"
1059
  msgstr "substituir a tabela de contador atual pelo backup"
1060
 
1061
+ #: counter-options.php:626
1062
  #@ cpd
1063
  msgid "delete backup file"
1064
  msgstr "apagar arquivo backup"
1065
 
1066
+ #: counter-options.php:651
1067
  #, php-format
1068
  #@ cpd
1069
  msgid "Delete search strings older than %s days."
1070
  msgstr "Apagar sequencias de busca anteriores a %s dias."
1071
 
1072
+ #: counter-options.php:655
1073
  #@ cpd
1074
  msgid "Delete search strings"
1075
  msgstr "Apagar sequencias de busca"
1076
 
1077
+ #: counter.php:1193
1078
  #, php-format
1079
  #@ cpd
1080
  msgid "The %s most searched strings:"
1081
  msgstr "A %s string mais procurada:"
1082
 
1083
+ #: counter.php:1202
1084
  #, php-format
1085
  #@ cpd
1086
  msgid "The search strings of the last %s days:"
1087
  msgstr "A série de busca dos últimos %s dias:"
1088
 
1089
+ #: counter-options.php:352
1090
  #@ cpd
1091
  msgid "Clients and referers deleted"
1092
  msgstr ""
1093
 
1094
+ #: counter-options.php:662
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1098
  msgstr ""
1099
 
1100
+ #: counter-options.php:666
1101
  #@ cpd
1102
  msgid "Delete clients and referers"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1145
1106
  #@ default
1107
  msgid "Front page"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-pt_PT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:29+0000\n"
7
  "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -25,197 +25,196 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Op&ccedil;&otilde;es atualizadas"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Banco de dados limpo. %s linhas apagadas."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALAR o Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabela %s apagada"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Op&ccedil;&otilde;es apagadas"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstalar"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clique aqui"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Per&iacute;odo online"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usu&aacute;rios logados"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar tamb&eacute;m"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Autocontador"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a serem ignorados"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atualizar op&ccedil;&otilde;es"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Limpar o banco de dados"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  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."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATEN&Ccedil;&Atilde;O"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sim, quero"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estat&iacute;sticas"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes online"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visitas ontem"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visitas semana passada"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "In&iacute;cio da contagem"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "(m&eacute;dia) de visitas por dia"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Visitas por m&ecirc;s"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Visitas por post"
@@ -237,165 +236,171 @@ msgstr "Atualizar proximo"
237
  msgid "Mass Bots cleaned. %s counts deleted."
238
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
239
 
240
- #: counter-options.php:123
241
  #@ cpd
242
  msgid "Counter reseted."
243
  msgstr "Contador reiniciado."
244
 
245
- #: counter-options.php:799
246
  #@ default
247
  msgid "Dashboard"
248
  msgstr "Painel"
249
 
250
- #: counter-options.php:835
251
- #: counter-options.php:839
252
  #@ cpd
253
  msgid "How many posts do you want to see on dashboard page?"
254
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
255
 
256
- #: counter-options.php:838
257
  #@ cpd
258
  msgid "Latest Counts - Posts"
259
  msgstr "Contagens Recentes - Posts"
260
 
261
- #: counter-options.php:842
262
  #@ cpd
263
  msgid "Latest Counts - Days"
264
  msgstr "Contagens Recentes - Dias"
265
 
266
- #: counter-options.php:843
267
- #: counter-options.php:847
268
- #: counter-options.php:869
269
  #@ cpd
270
  msgid "How many days do you want look back?"
271
  msgstr "Quantos dias atr&aacute;s você quer ver?"
272
 
273
- #: counter-options.php:846
274
  #@ cpd
275
  msgid "Chart - Days"
276
  msgstr "Gr&aacute;fico - Dias"
277
 
278
- #: counter-options.php:850
279
  #@ cpd
280
  msgid "Chart - Height"
281
  msgstr "Gr&aacute;fico - Altura"
282
 
283
- #: counter-options.php:851
284
  #@ cpd
285
  msgid "Height of the biggest bar"
286
  msgstr "Altura da barra maior"
287
 
288
- #: counter-options.php:855
289
  #@ cpd
290
  msgid "Countries"
291
  msgstr "Pa&iacute;ses"
292
 
293
- #: counter-options.php:856
294
  #@ cpd
295
  msgid "How many countries do you want to see on dashboard page?"
296
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
297
 
298
- #: counter-options.php:883
299
  #@ cpd
300
  msgid "Show in lists"
301
  msgstr "Exibir em listas"
302
 
303
- #: counter-options.php:884
304
  #@ cpd
305
  msgid "Show \"Reads per Post\" in a new column in post management views."
306
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
307
 
308
- #: counter-options.php:636
309
  #@ cpd
310
  msgid "GeoIP - Countries"
311
  msgstr "GeoIP - Pa&iacute;ses"
312
 
313
- #: counter-options.php:645
314
  #@ cpd
315
  msgid "Update old counter data"
316
  msgstr "Atualizar dados de contadores antigos"
317
 
318
- #: counter-options.php:657
319
  #@ cpd
320
  msgid "Update GeoIP database"
321
  msgstr "Atualizar Base de Dados GeoIP"
322
 
323
- #: counter-options.php:652
324
  #@ cpd
325
  msgid "Download a new version of GeoIP.dat file."
326
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
327
 
328
- #: counter-options.php:662
329
  #@ cpd
330
  msgid "More informations about GeoIP"
331
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
332
 
333
- #: counter-options.php:417
334
  #: massbots.php:46
335
  #@ cpd
336
  msgid "Mass Bots"
337
  msgstr "Mass Bots"
338
 
339
- #: counter-options.php:421
340
  #, php-format
341
  #@ cpd
342
  msgid "Show all IPs with more than %s page views per day"
343
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
344
 
345
- #: counter-options.php:422
 
346
  #: notes.php:84
347
  #: userperspan.php:56
348
  #@ cpd
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
- #: counter-options.php:430
 
353
  #@ cpd
354
  msgid "IP"
355
  msgstr "IP"
356
 
357
- #: counter-options.php:431
 
358
  #: notes.php:88
359
  #@ cpd
360
  #@ default
361
  msgid "Date"
362
  msgstr "Data"
363
 
364
- #: counter-options.php:432
 
365
  #@ cpd
366
  msgid "Client"
367
  msgstr "Cliente"
368
 
369
- #: counter-options.php:433
 
370
  #@ cpd
371
  msgid "Views"
372
  msgstr "Exibi&ccedil;&otilde;es"
373
 
374
- #: counter-options.php:448
375
- #: counter-options.php:464
 
376
  #, php-format
377
  #@ cpd
378
  msgid "Delete these %s counts"
379
  msgstr "Deletar estes %s contadores"
380
 
381
- #: counter-options.php:686
382
- #: counter-options.php:696
383
  #@ cpd
384
  msgid "Reset the counter"
385
  msgstr "Reiniciar o contador"
386
 
387
- #: counter-options.php:689
388
  #@ cpd
389
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
390
  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!"
391
 
392
- #: counter.php:756
393
  #, php-format
394
  #@ cpd
395
  msgid "The %s most visited posts in last %s days:"
396
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
397
 
398
- #: counter.php:913
399
  #@ cpd
400
  msgid "Other"
401
  msgstr "Outro"
@@ -406,43 +411,42 @@ msgstr "Outro"
406
  msgid "Front page displays"
407
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
408
 
409
- #: counter-core.php:652
410
- #: counter-options.php:401
411
- #: counter-options.php:740
412
  #@ default
413
  msgid "Settings"
414
  msgstr "Configura&ccedil;&otilde;es"
415
 
416
- #: counter-core.php:1464
417
- #: counter-options.php:789
418
- #: counter.php:222
419
- #: counter.php:974
420
  #@ cpd
421
  msgid "Reads"
422
  msgstr "Leituras"
423
 
424
- #: counter.php:1355
425
  #@ cpd
426
  msgid "This post"
427
  msgstr "Este post"
428
 
429
- #: counter.php:327
430
  #@ cpd
431
  msgid "Reads per day"
432
  msgstr "Leituras por dia"
433
 
434
- #: counter-core.php:799
435
- #: counter-options.php:860
436
  #@ cpd
437
  msgid "Browsers"
438
  msgstr "Navegadores"
439
 
440
- #: counter-core.php:793
441
  #@ cpd
442
  msgid "Latest Counts"
443
  msgstr "Contagens Recentes"
444
 
445
- #: counter-core.php:804
446
  #@ cpd
447
  msgid "Reads per Country"
448
  msgstr "Leituras por Pa&iacute;s"
@@ -462,81 +466,81 @@ msgstr "Nova base de dados GeoIP instalada."
462
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
463
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
464
 
465
- #: counter-options.php:759
466
  #@ cpd
467
  msgid "until User Level"
468
  msgstr "usuários do nível"
469
 
470
- #: counter-options.php:891
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Valor inicial"
474
 
475
- #: counter-options.php:895
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
479
 
480
- #: counter-options.php:899
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Data inicial"
484
 
485
- #: counter-options.php:900
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Sua contagem antiga começa em?"
489
 
490
- #: counter-options.php:903
491
- #: counter-options.php:907
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Contagem inicial"
495
 
496
- #: counter-options.php:904
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Adicione este valor para \"Total visitors\"."
500
 
501
- #: counter-options.php:727
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Suporte"
505
 
506
- #: counter-core.php:754
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
510
 
511
- #: counter-core.php:755
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
516
 
517
- #: counter.php:873
518
  #@ default
519
  msgid "Show"
520
  msgstr "Mostrar"
521
 
522
- #: counter.php:875
523
  #: notes.php:55
524
  #: notes.php:89
525
  #@ cpd
526
  msgid "Notes"
527
  msgstr "Notas"
528
 
529
- #: counter.php:1085
530
  #@ default
531
  msgid "Edit Post"
532
  msgstr "Editar Post"
533
 
534
- #: counter-core.php:796
535
  #@ default
536
  msgid "Plugin"
537
  msgstr "Plugin"
538
 
539
- #: counter-core.php:753
540
  #, php-format
541
  #@ cpd
542
  msgid "Time for Count per Day: <code>%s</code>."
@@ -567,66 +571,66 @@ msgstr "Apagar"
567
  msgid "edit"
568
  msgstr "Editar"
569
 
570
- #: counter-options.php:778
571
  #@ cpd
572
  msgid "Anonymous IP"
573
  msgstr "IP An&ocirc;nimo"
574
 
575
- #: counter-options.php:782
576
  #@ cpd
577
  msgid "Cache"
578
  msgstr "Cache"
579
 
580
- #: counter-options.php:783
581
  #@ cpd
582
  msgid "I use a cache plugin. Count these visits with ajax."
583
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
584
 
585
- #: counter-options.php:861
586
  #@ cpd
587
  msgid "Substring of the user agent, separated by comma"
588
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
589
 
590
- #: counter-options.php:908
591
  #@ cpd
592
  msgid "Add this value to \"Total reads\"."
593
  msgstr "Adicione este valor ao \"Total de Leituras\"."
594
 
595
- #: counter-options.php:945
596
  #@ cpd
597
  msgid "Debug mode"
598
  msgstr "Modo de depura&ccedil;&atilde;o"
599
 
600
- #: counter-options.php:947
601
  #@ cpd
602
  msgid "Show debug informations at the bottom of all pages."
603
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
604
 
605
- #: counter.php:218
606
- #: counter.php:1356
607
  #@ cpd
608
  msgid "Total reads"
609
  msgstr "Total de Leituras"
610
 
611
- #: counter.php:219
612
- #: counter.php:1357
613
  #@ cpd
614
  msgid "Reads today"
615
  msgstr "Leituras Hoje"
616
 
617
- #: counter.php:220
618
- #: counter.php:1358
619
  #@ cpd
620
  msgid "Reads yesterday"
621
  msgstr "Leituras Ontem"
622
 
623
- #: counter-core.php:805
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Visitantes por Pa&iacute;is"
627
 
628
- #: counter.php:418
629
- #: counter.php:1198
630
  #@ cpd
631
  msgid "Map"
632
  msgstr "Mapa"
@@ -651,472 +655,565 @@ msgstr "PostID"
651
  msgid "no data found"
652
  msgstr "N&atilde;o foram encontrados dados"
653
 
654
- #: counter-options.php:639
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 "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!"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "contador"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Clientes e Referências"
668
 
669
- #: counter-options.php:789
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 "Salvar e Exibir Clientes e Referências"
673
 
674
- #: counter-options.php:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "URLs Locais"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Também exibir referência local."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Posts"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Páginas"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Leituras na semana passada"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Categoria"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Teg"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "License"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Leituras por mês"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Referência"
725
 
726
- #: counter.php:1380
727
  #@ default
728
  msgid "Title"
729
  msgstr "Título"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Referência - entradas"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Quantas referência você quer ver no painel?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Referência - Dias"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "AA %s referências nos últimos %s dias:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Visitantes online"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "Atualizar \"Count per Day\" para a versão %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Backup falhou. O arquivo não abriu"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Backup da tabela do contador salvo em %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Backup das opções de contador e acumuladores salvas em %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Acumulador em progresso..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Obter visitas por Post..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Deletar dados antigos..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Instalação do \"Count per Day\" checada"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Ferramentas"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Salvar somente URL, sem sequencia de caracteres"
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Quem pode ver isto"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "Customizar"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "e superior têm permissão para ver a página de estatísticas."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Estilo"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "SEM Estilo na interface pública"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Não carregue o estilo \"counter.css\" na interface pública"
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Backup"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Entradas por passagem"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  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."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Backup da base de dados"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Coletar dados antigos"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "O tamanho atual da sua tabela de contador %s é %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "Atualmente sua coleção contém dados até %s"
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Dados novos são adicionados normalmente à coleção."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Todos os dados coletados até %s serão excluidos."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "Reativação"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "Reativar o plugin"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Visitantes"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Dia mais visitado"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "arrastar e soltar para classificar"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr "Buscar Strings"
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr "Erro ao ler o arquivo de BackUp!"
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr "O backup foi adicionado à tabela de contadores %s"
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr "A tabela de contadores %s foi restaurada do backup."
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr "Opções restauradas do backup."
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr "Sequencias de pesquisas antigas apagadas."
1009
 
1010
- #: counter-options.php:483
1011
  #@ cpd
1012
  msgid "Download only"
1013
  msgstr "Somente download"
1014
 
1015
- #: counter-options.php:515
1016
  #@ cpd
1017
  msgid "Settings and collections"
1018
  msgstr "Configurações e Coleções"
1019
 
1020
- #: counter-options.php:520
1021
  #, php-format
1022
  #@ cpd
1023
  msgid "Counter table %s"
1024
  msgstr "Tabela de Contador %s"
1025
 
1026
- #: counter-options.php:527
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Add data from the backup file %s to existing counter table?"
1030
  msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1031
 
1032
- #: counter-options.php:527
1033
  #@ cpd
1034
  msgid "Add"
1035
  msgstr "Adicionar"
1036
 
1037
- #: counter-options.php:531
1038
  #, php-format
1039
  #@ cpd
1040
  msgid "Restore data from the backup file %s ?"
1041
  msgstr "Restaurar dados a partir do backup %s ?"
1042
 
1043
- #: counter-options.php:531
1044
  #@ default
1045
  msgid "Restore"
1046
  msgstr "Restaurar"
1047
 
1048
- #: counter-options.php:533
1049
  #@ default
1050
  msgid "Delete"
1051
  msgstr "Apagar"
1052
 
1053
- #: counter-options.php:534
1054
  #, php-format
1055
  #@ cpd
1056
  msgid "Delete the backup file %s ?"
1057
  msgstr "Apagar arquivo backup %s ?"
1058
 
1059
- #: counter-options.php:540
1060
  #@ cpd
1061
  msgid "add backup to current counter table"
1062
  msgstr "adicionar backup para a tabela de contador atual"
1063
 
1064
- #: counter-options.php:541
1065
  #@ cpd
1066
  msgid "replace current counter table with with backup"
1067
  msgstr "substituir a tabela de contador atual pelo backup"
1068
 
1069
- #: counter-options.php:542
1070
  #@ cpd
1071
  msgid "delete backup file"
1072
  msgstr "apagar arquivo backup"
1073
 
1074
- #: counter-options.php:567
1075
  #, php-format
1076
  #@ cpd
1077
  msgid "Delete search strings older than %s days."
1078
  msgstr "Apagar sequencias de busca anteriores a %s dias."
1079
 
1080
- #: counter-options.php:571
1081
  #@ cpd
1082
  msgid "Delete search strings"
1083
  msgstr "Apagar sequencias de busca"
1084
 
1085
- #: counter.php:1142
1086
  #, php-format
1087
  #@ cpd
1088
  msgid "The %s most searched strings:"
1089
  msgstr "A %s string mais procurada:"
1090
 
1091
- #: counter.php:1151
1092
  #, php-format
1093
  #@ cpd
1094
  msgid "The search strings of the last %s days:"
1095
  msgstr "A série de busca dos últimos %s dias:"
1096
 
1097
- #: counter-options.php:347
1098
  #@ cpd
1099
  msgid "Clients and referers deleted"
1100
  msgstr ""
1101
 
1102
- #: counter-options.php:578
1103
  #, php-format
1104
  #@ cpd
1105
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1106
  msgstr ""
1107
 
1108
- #: counter-options.php:582
1109
  #@ cpd
1110
  msgid "Delete clients and referers"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1100
1114
  #@ default
1115
  msgid "Front page"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:15+0000\n"
7
  "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Op&ccedil;&otilde;es atualizadas"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Banco de dados limpo. %s linhas apagadas."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALAR o Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabela %s apagada"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Op&ccedil;&otilde;es apagadas"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstalar"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clique aqui"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Per&iacute;odo online"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usu&aacute;rios logados"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar tamb&eacute;m"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Autocontador"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a serem ignorados"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atualizar op&ccedil;&otilde;es"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Limpar o banco de dados"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  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."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATEN&Ccedil;&Atilde;O"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sim, quero"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estat&iacute;sticas"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes online"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visitas ontem"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visitas semana passada"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "In&iacute;cio da contagem"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "(m&eacute;dia) de visitas por dia"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitas por m&ecirc;s"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitas por post"
236
  msgid "Mass Bots cleaned. %s counts deleted."
237
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
238
 
239
+ #: counter-options.php:128
240
  #@ cpd
241
  msgid "Counter reseted."
242
  msgstr "Contador reiniciado."
243
 
244
+ #: counter-options.php:889
245
  #@ default
246
  msgid "Dashboard"
247
  msgstr "Painel"
248
 
249
+ #: counter-options.php:925
250
+ #: counter-options.php:929
251
  #@ cpd
252
  msgid "How many posts do you want to see on dashboard page?"
253
  msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
254
 
255
+ #: counter-options.php:928
256
  #@ cpd
257
  msgid "Latest Counts - Posts"
258
  msgstr "Contagens Recentes - Posts"
259
 
260
+ #: counter-options.php:932
261
  #@ cpd
262
  msgid "Latest Counts - Days"
263
  msgstr "Contagens Recentes - Dias"
264
 
265
+ #: counter-options.php:933
266
+ #: counter-options.php:937
267
+ #: counter-options.php:959
268
  #@ cpd
269
  msgid "How many days do you want look back?"
270
  msgstr "Quantos dias atr&aacute;s você quer ver?"
271
 
272
+ #: counter-options.php:936
273
  #@ cpd
274
  msgid "Chart - Days"
275
  msgstr "Gr&aacute;fico - Dias"
276
 
277
+ #: counter-options.php:940
278
  #@ cpd
279
  msgid "Chart - Height"
280
  msgstr "Gr&aacute;fico - Altura"
281
 
282
+ #: counter-options.php:941
283
  #@ cpd
284
  msgid "Height of the biggest bar"
285
  msgstr "Altura da barra maior"
286
 
287
+ #: counter-options.php:945
288
  #@ cpd
289
  msgid "Countries"
290
  msgstr "Pa&iacute;ses"
291
 
292
+ #: counter-options.php:946
293
  #@ cpd
294
  msgid "How many countries do you want to see on dashboard page?"
295
  msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
296
 
297
+ #: counter-options.php:973
298
  #@ cpd
299
  msgid "Show in lists"
300
  msgstr "Exibir em listas"
301
 
302
+ #: counter-options.php:974
303
  #@ cpd
304
  msgid "Show \"Reads per Post\" in a new column in post management views."
305
  msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
306
 
307
+ #: counter-options.php:720
308
  #@ cpd
309
  msgid "GeoIP - Countries"
310
  msgstr "GeoIP - Pa&iacute;ses"
311
 
312
+ #: counter-options.php:729
313
  #@ cpd
314
  msgid "Update old counter data"
315
  msgstr "Atualizar dados de contadores antigos"
316
 
317
+ #: counter-options.php:741
318
  #@ cpd
319
  msgid "Update GeoIP database"
320
  msgstr "Atualizar Base de Dados GeoIP"
321
 
322
+ #: counter-options.php:736
323
  #@ cpd
324
  msgid "Download a new version of GeoIP.dat file."
325
  msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
326
 
327
+ #: counter-options.php:746
328
  #@ cpd
329
  msgid "More informations about GeoIP"
330
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
331
 
332
+ #: counter-options.php:429
333
  #: massbots.php:46
334
  #@ cpd
335
  msgid "Mass Bots"
336
  msgstr "Mass Bots"
337
 
338
+ #: counter-options.php:433
339
  #, php-format
340
  #@ cpd
341
  msgid "Show all IPs with more than %s page views per day"
342
  msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
343
 
344
+ #: counter-options.php:434
345
+ #: counter-options.php:498
346
  #: notes.php:84
347
  #: userperspan.php:56
348
  #@ cpd
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
+ #: counter-options.php:442
353
+ #: counter-options.php:506
354
  #@ cpd
355
  msgid "IP"
356
  msgstr "IP"
357
 
358
+ #: counter-options.php:443
359
+ #: counter-options.php:507
360
  #: notes.php:88
361
  #@ cpd
362
  #@ default
363
  msgid "Date"
364
  msgstr "Data"
365
 
366
+ #: counter-options.php:444
367
+ #: counter-options.php:508
368
  #@ cpd
369
  msgid "Client"
370
  msgstr "Cliente"
371
 
372
+ #: counter-options.php:445
373
+ #: counter-options.php:509
374
  #@ cpd
375
  msgid "Views"
376
  msgstr "Exibi&ccedil;&otilde;es"
377
 
378
+ #: counter-options.php:460
379
+ #: counter-options.php:476
380
+ #: counter-options.php:523
381
  #, php-format
382
  #@ cpd
383
  msgid "Delete these %s counts"
384
  msgstr "Deletar estes %s contadores"
385
 
386
+ #: counter-options.php:770
387
+ #: counter-options.php:780
388
  #@ cpd
389
  msgid "Reset the counter"
390
  msgstr "Reiniciar o contador"
391
 
392
+ #: counter-options.php:773
393
  #@ cpd
394
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
395
  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!"
396
 
397
+ #: counter.php:771
398
  #, php-format
399
  #@ cpd
400
  msgid "The %s most visited posts in last %s days:"
401
  msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
402
 
403
+ #: counter.php:958
404
  #@ cpd
405
  msgid "Other"
406
  msgstr "Outro"
411
  msgid "Front page displays"
412
  msgstr "Exibi&ccedil;&otilde;es da primeira página"
413
 
414
+ #: counter-core.php:641
415
+ #: counter-options.php:409
 
416
  #@ default
417
  msgid "Settings"
418
  msgstr "Configura&ccedil;&otilde;es"
419
 
420
+ #: counter-core.php:1526
421
+ #: counter-options.php:869
422
+ #: counter.php:235
423
+ #: counter.php:1019
424
  #@ cpd
425
  msgid "Reads"
426
  msgstr "Leituras"
427
 
428
+ #: counter.php:1406
429
  #@ cpd
430
  msgid "This post"
431
  msgstr "Este post"
432
 
433
+ #: counter.php:342
434
  #@ cpd
435
  msgid "Reads per day"
436
  msgstr "Leituras por dia"
437
 
438
+ #: counter-core.php:788
439
+ #: counter-options.php:950
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Navegadores"
443
 
444
+ #: counter-core.php:782
445
  #@ cpd
446
  msgid "Latest Counts"
447
  msgstr "Contagens Recentes"
448
 
449
+ #: counter-core.php:793
450
  #@ cpd
451
  msgid "Reads per Country"
452
  msgstr "Leituras por Pa&iacute;s"
466
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
467
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
468
 
469
+ #: counter-options.php:839
470
  #@ cpd
471
  msgid "until User Level"
472
  msgstr "usuários do nível"
473
 
474
+ #: counter-options.php:981
475
  #@ cpd
476
  msgid "Start Values"
477
  msgstr "Valor inicial"
478
 
479
+ #: counter-options.php:985
480
  #@ cpd
481
  msgid "Here you can change the date of first count and add a start count."
482
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
483
 
484
+ #: counter-options.php:989
485
  #@ cpd
486
  msgid "Start date"
487
  msgstr "Data inicial"
488
 
489
+ #: counter-options.php:990
490
  #@ cpd
491
  msgid "Your old Counter starts at?"
492
  msgstr "Sua contagem antiga começa em?"
493
 
494
+ #: counter-options.php:993
495
+ #: counter-options.php:997
496
  #@ cpd
497
  msgid "Start count"
498
  msgstr "Contagem inicial"
499
 
500
+ #: counter-options.php:994
501
  #@ cpd
502
  msgid "Add this value to \"Total visitors\"."
503
  msgstr "Adicione este valor para \"Total visitors\"."
504
 
505
+ #: counter-options.php:811
506
  #@ cpd
507
  msgid "Support"
508
  msgstr "Suporte"
509
 
510
+ #: counter-core.php:743
511
  #@ cpd
512
  msgid "Bug? Problem? Question? Hint? Praise?"
513
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
514
 
515
+ #: counter-core.php:744
516
  #, php-format
517
  #@ cpd
518
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
519
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
520
 
521
+ #: counter.php:888
522
  #@ default
523
  msgid "Show"
524
  msgstr "Mostrar"
525
 
526
+ #: counter.php:890
527
  #: notes.php:55
528
  #: notes.php:89
529
  #@ cpd
530
  msgid "Notes"
531
  msgstr "Notas"
532
 
533
+ #: counter.php:1130
534
  #@ default
535
  msgid "Edit Post"
536
  msgstr "Editar Post"
537
 
538
+ #: counter-core.php:785
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plugin"
542
 
543
+ #: counter-core.php:742
544
  #, php-format
545
  #@ cpd
546
  msgid "Time for Count per Day: <code>%s</code>."
571
  msgid "edit"
572
  msgstr "Editar"
573
 
574
+ #: counter-options.php:858
575
  #@ cpd
576
  msgid "Anonymous IP"
577
  msgstr "IP An&ocirc;nimo"
578
 
579
+ #: counter-options.php:862
580
  #@ cpd
581
  msgid "Cache"
582
  msgstr "Cache"
583
 
584
+ #: counter-options.php:863
585
  #@ cpd
586
  msgid "I use a cache plugin. Count these visits with ajax."
587
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
588
 
589
+ #: counter-options.php:951
590
  #@ cpd
591
  msgid "Substring of the user agent, separated by comma"
592
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
593
 
594
+ #: counter-options.php:998
595
  #@ cpd
596
  msgid "Add this value to \"Total reads\"."
597
  msgstr "Adicione este valor ao \"Total de Leituras\"."
598
 
599
+ #: counter-options.php:1035
600
  #@ cpd
601
  msgid "Debug mode"
602
  msgstr "Modo de depura&ccedil;&atilde;o"
603
 
604
+ #: counter-options.php:1037
605
  #@ cpd
606
  msgid "Show debug informations at the bottom of all pages."
607
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
608
 
609
+ #: counter.php:231
610
+ #: counter.php:1407
611
  #@ cpd
612
  msgid "Total reads"
613
  msgstr "Total de Leituras"
614
 
615
+ #: counter.php:232
616
+ #: counter.php:1408
617
  #@ cpd
618
  msgid "Reads today"
619
  msgstr "Leituras Hoje"
620
 
621
+ #: counter.php:233
622
+ #: counter.php:1409
623
  #@ cpd
624
  msgid "Reads yesterday"
625
  msgstr "Leituras Ontem"
626
 
627
+ #: counter-core.php:794
628
  #@ cpd
629
  msgid "Visitors per Country"
630
  msgstr "Visitantes por Pa&iacute;is"
631
 
632
+ #: counter.php:433
633
+ #: counter.php:1249
634
  #@ cpd
635
  msgid "Map"
636
  msgstr "Mapa"
655
  msgid "no data found"
656
  msgstr "N&atilde;o foram encontrados dados"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  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!"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "contador"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Clientes e Referências"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "Salvar e Exibir Clientes e Referências"
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "URLs Locais"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Também exibir referência local."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Posts"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Páginas"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Leituras na semana passada"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Categoria"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Teg"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "License"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Leituras por mês"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Referência"
729
 
730
+ #: counter.php:1431
731
  #@ default
732
  msgid "Title"
733
  msgstr "Título"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Referência - entradas"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Quantas referência você quer ver no painel?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Referência - Dias"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "AA %s referências nos últimos %s dias:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Visitantes online"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "Atualizar \"Count per Day\" para a versão %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Backup falhou. O arquivo não abriu"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "Backup da tabela do contador salvo em %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Backup das opções de contador e acumuladores salvas em %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Acumulador em progresso..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Obter visitas por Post..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Instalação do \"Count per Day\" checada"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Ferramentas"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Salvar somente URL, sem sequencia de caracteres"
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Quem pode ver isto"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "Customizar"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "e superior têm permissão para ver a página de estatísticas."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Estilo"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "SEM Estilo na interface pública"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Não carregue o estilo \"counter.css\" na interface pública"
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Backup"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Entradas por passagem"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  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."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Backup da base de dados"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Coletar dados antigos"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "O tamanho atual da sua tabela de contador %s é %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "Atualmente sua coleção contém dados até %s"
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Dados novos são adicionados normalmente à coleção."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Todos os dados coletados até %s serão excluidos."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "Reativação"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "Reativar o plugin"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Visitantes"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Dia mais visitado"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "arrastar e soltar para classificar"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr "Buscar Strings"
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr "Erro ao ler o arquivo de BackUp!"
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr "O backup foi adicionado à tabela de contadores %s"
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr "A tabela de contadores %s foi restaurada do backup."
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr "Opções restauradas do backup."
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr "Sequencias de pesquisas antigas apagadas."
1001
 
1002
+ #: counter-options.php:567
1003
  #@ cpd
1004
  msgid "Download only"
1005
  msgstr "Somente download"
1006
 
1007
+ #: counter-options.php:599
1008
  #@ cpd
1009
  msgid "Settings and collections"
1010
  msgstr "Configurações e Coleções"
1011
 
1012
+ #: counter-options.php:604
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Counter table %s"
1016
  msgstr "Tabela de Contador %s"
1017
 
1018
+ #: counter-options.php:611
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Add data from the backup file %s to existing counter table?"
1022
  msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1023
 
1024
+ #: counter-options.php:611
1025
  #@ cpd
1026
  msgid "Add"
1027
  msgstr "Adicionar"
1028
 
1029
+ #: counter-options.php:615
1030
  #, php-format
1031
  #@ cpd
1032
  msgid "Restore data from the backup file %s ?"
1033
  msgstr "Restaurar dados a partir do backup %s ?"
1034
 
1035
+ #: counter-options.php:615
1036
  #@ default
1037
  msgid "Restore"
1038
  msgstr "Restaurar"
1039
 
1040
+ #: counter-options.php:617
1041
  #@ default
1042
  msgid "Delete"
1043
  msgstr "Apagar"
1044
 
1045
+ #: counter-options.php:618
1046
  #, php-format
1047
  #@ cpd
1048
  msgid "Delete the backup file %s ?"
1049
  msgstr "Apagar arquivo backup %s ?"
1050
 
1051
+ #: counter-options.php:624
1052
  #@ cpd
1053
  msgid "add backup to current counter table"
1054
  msgstr "adicionar backup para a tabela de contador atual"
1055
 
1056
+ #: counter-options.php:625
1057
  #@ cpd
1058
  msgid "replace current counter table with with backup"
1059
  msgstr "substituir a tabela de contador atual pelo backup"
1060
 
1061
+ #: counter-options.php:626
1062
  #@ cpd
1063
  msgid "delete backup file"
1064
  msgstr "apagar arquivo backup"
1065
 
1066
+ #: counter-options.php:651
1067
  #, php-format
1068
  #@ cpd
1069
  msgid "Delete search strings older than %s days."
1070
  msgstr "Apagar sequencias de busca anteriores a %s dias."
1071
 
1072
+ #: counter-options.php:655
1073
  #@ cpd
1074
  msgid "Delete search strings"
1075
  msgstr "Apagar sequencias de busca"
1076
 
1077
+ #: counter.php:1193
1078
  #, php-format
1079
  #@ cpd
1080
  msgid "The %s most searched strings:"
1081
  msgstr "A %s string mais procurada:"
1082
 
1083
+ #: counter.php:1202
1084
  #, php-format
1085
  #@ cpd
1086
  msgid "The search strings of the last %s days:"
1087
  msgstr "A série de busca dos últimos %s dias:"
1088
 
1089
+ #: counter-options.php:352
1090
  #@ cpd
1091
  msgid "Clients and referers deleted"
1092
  msgstr ""
1093
 
1094
+ #: counter-options.php:662
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1098
  msgstr ""
1099
 
1100
+ #: counter-options.php:666
1101
  #@ cpd
1102
  msgid "Delete clients and referers"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1145
1106
  #@ default
1107
  msgid "Front page"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-ro_RO.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:32+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Web Geeks\n"
9
  "MIME-Version: 1.0\n"
@@ -25,279 +25,278 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Opţiuni actualizate"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Baza de date curăţate. %s rânduri şterse."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEZINSTALAŢI conta pe zi"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabelul %s elimină"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opţiuni elimină"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Dezinstalare"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Faceţi clic aici"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Timp online"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr " pagina tabloul de bord."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Logon utilizatori"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "conta prea"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto counter"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Contează automat single-posturi şi paginile, nici o modificare pe şablon necesare."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Roboţii să ignore"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Opţiuni de actualizare"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Curăţaţi baza de date"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  msgstr "Puteţi curăţa tabelul de contorul de a şterge \"spam-ul de date\". <br /> Dacă adăugaţi noi boti de mai sus vechi \"de date de spam\" păstrează în baza de date. <br /> Aici puteţi rula filtrul bot din nou şi să ştergeţi vizitele de boti."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr " numai persoanele cu handicap tabelele din baza de date vor fi păstrate."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr ".Aici aveţi posibilitatea să ştergeţi tabele şi dezactiva \"Numărătoarea pe zi\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "AVERTISMENT"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Aceste tabele (cu toate Contor date) vor fi şterse."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr " re-a instala, contorul începe la 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "da"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Sunteţi sigur de a nu fi de acord conta pe zi şi a şterge toate datele?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistici"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total vizitatori"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Vizitatori online"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Vizitatori astăzi"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Vizitatori ieri"
187
 
188
- #: counter-core.php:790
189
- #: counter.php:1365
190
  #@ cpd
191
  msgid "Visitors per month"
192
  msgstr "Vizitatori pe lună"
193
 
194
- #: counter-core.php:792
195
- #: counter-options.php:834
196
  #@ cpd
197
  msgid "Visitors per post"
198
  msgstr "Vizitatori pe post"
199
 
200
- #: counter-options.php:123
201
  #@ cpd
202
  msgid "Counter reseted."
203
  msgstr "Contor resetat."
204
 
205
- #: counter-options.php:835
206
- #: counter-options.php:839
207
  #@ cpd
208
  msgid "How many posts do you want to see on dashboard page?"
209
  msgstr "Cât de multe posturi doriţi pentru a vedea pagina tabloul de bord?"
210
 
211
- #: counter-options.php:838
212
  #@ cpd
213
  msgid "Latest Counts - Posts"
214
  msgstr "Contează ultimele - posturi"
215
 
216
- #: counter-options.php:842
217
  #@ cpd
218
  msgid "Latest Counts - Days"
219
  msgstr "Contează ultimele - zile"
220
 
221
- #: counter-options.php:843
222
- #: counter-options.php:847
223
- #: counter-options.php:869
224
  #@ cpd
225
  msgid "How many days do you want look back?"
226
  msgstr "Câte zile se va privi înapoi?"
227
 
228
- #: counter-options.php:883
229
  #@ cpd
230
  msgid "Show in lists"
231
  msgstr "Arată în liste"
232
 
233
- #: counter-options.php:884
234
  #@ cpd
235
  msgid "Show \"Reads per Post\" in a new column in post management views."
236
  msgstr " într-o coloană nouă în post gestionare vizualizări."
237
 
238
- #: counter-options.php:686
239
- #: counter-options.php:696
240
  #@ cpd
241
  msgid "Reset the counter"
242
  msgstr "Resetarea contorului de"
243
 
244
- #: counter-options.php:689
245
  #@ cpd
246
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
247
  msgstr "Puteţi reseta contorul de gol tabelul. TOATE la 0! < br / > face o copie de rezervă, dacă aveţi nevoie de datele curente!"
248
 
249
- #: counter.php:756
250
  #, php-format
251
  #@ cpd
252
  msgid "The %s most visited posts in last %s days:"
253
  msgstr "Posturi în ultimele zile de %s %s cel mai vizitat:"
254
 
255
- #: counter-core.php:652
256
- #: counter-options.php:401
257
- #: counter-options.php:740
258
  #@ default
259
  msgid "Settings"
260
  msgstr "Setări"
261
 
262
- #: counter-core.php:1464
263
- #: counter-options.php:789
264
- #: counter.php:222
265
- #: counter.php:974
266
  #@ cpd
267
  msgid "Reads"
268
  msgstr "Citeşte"
269
 
270
- #: counter-core.php:793
271
  #@ cpd
272
  msgid "Latest Counts"
273
  msgstr "Contează mai recente"
274
 
275
- #: counter-options.php:846
276
  #@ cpd
277
  msgid "Chart - Days"
278
  msgstr "Diagramă - zile"
279
 
280
- #: counter-options.php:850
281
  #@ cpd
282
  msgid "Chart - Height"
283
  msgstr "Diagramă - înălţime"
284
 
285
- #: counter-options.php:851
286
  #@ cpd
287
  msgid "Height of the biggest bar"
288
  msgstr "Înălțimea de la bar mai mare"
289
 
290
- #: counter.php:1355
291
  #@ cpd
292
  msgid "This post"
293
  msgstr "Acest post"
294
 
295
- #: counter-options.php:799
296
  #@ default
297
  msgid "Dashboard"
298
  msgstr "Tabloul de bord"
299
 
300
- #: counter.php:327
301
  #@ cpd
302
  msgid "Reads per day"
303
  msgstr "Citeşte pe zi"
@@ -313,32 +312,32 @@ msgstr "Ţări actualizate. intrările <b>%s</b> în %s fără ţară stânga"
313
  msgid "update next"
314
  msgstr "actualizaţi următorul"
315
 
316
- #: counter-options.php:636
317
  #@ cpd
318
  msgid "GeoIP - Countries"
319
  msgstr "GeoIP - ţări"
320
 
321
- #: counter-options.php:645
322
  #@ cpd
323
  msgid "Update old counter data"
324
  msgstr "Actualizaţi datele contor vechi"
325
 
326
- #: counter-options.php:657
327
  #@ cpd
328
  msgid "Update GeoIP database"
329
  msgstr "Actualizare GeoIP database"
330
 
331
- #: counter-options.php:652
332
  #@ cpd
333
  msgid "Download a new version of GeoIP.dat file."
334
  msgstr "Descărcaţi o nouă versiune de dosar GeoIP.dat."
335
 
336
- #: counter-options.php:662
337
  #@ cpd
338
  msgid "More informations about GeoIP"
339
  msgstr "Mai multe informatii despre GeoIP"
340
 
341
- #: counter-core.php:804
342
  #@ cpd
343
  msgid "Reads per Country"
344
  msgstr "Citeşte per tara"
@@ -358,12 +357,12 @@ msgstr "Ne pare rau, a aparut o eroare. Încercaţi din nou sau de a verifica dr
358
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
359
  msgstr "Ne pare rău, funcţiile necesare (zlib) nu instalat sau activat în php.ini."
360
 
361
- #: counter-options.php:855
362
  #@ cpd
363
  msgid "Countries"
364
  msgstr "Ţări"
365
 
366
- #: counter-options.php:856
367
  #@ cpd
368
  msgid "How many countries do you want to see on dashboard page?"
369
  msgstr "Cât de multe ţări doriţi pentru a vedea pagina tabloul de bord?"
@@ -374,33 +373,35 @@ msgstr "Cât de multe ţări doriţi pentru a vedea pagina tabloul de bord?"
374
  msgid "Mass Bots cleaned. %s counts deleted."
375
  msgstr "Masa roboţii curăţate. %s contează elimină."
376
 
377
- #: counter-options.php:417
378
  #: massbots.php:46
379
  #@ cpd
380
  msgid "Mass Bots"
381
  msgstr "Roboţii de masă"
382
 
383
- #: counter-options.php:421
384
  #, php-format
385
  #@ cpd
386
  msgid "Show all IPs with more than %s page views per day"
387
  msgstr "Arată toate IP-uri cu mai mult de %s de vizualizări de pagină pe zi"
388
 
389
- #: counter-options.php:422
 
390
  #: notes.php:84
391
  #: userperspan.php:56
392
  #@ cpd
393
  msgid "show"
394
  msgstr "Arată"
395
 
396
- #: counter-options.php:448
397
- #: counter-options.php:464
 
398
  #, php-format
399
  #@ cpd
400
  msgid "Delete these %s counts"
401
  msgstr "Ştergeţi aceste contează %s"
402
 
403
- #: counter.php:913
404
  #@ cpd
405
  msgid "Other"
406
  msgstr "Alte"
@@ -411,108 +412,112 @@ msgstr "Alte"
411
  msgid "Front page displays"
412
  msgstr "Afişează prima pagină"
413
 
414
- #: counter-core.php:799
415
- #: counter-options.php:860
416
  #@ cpd
417
  msgid "Browsers"
418
  msgstr "Browsere"
419
 
420
- #: counter-options.php:430
 
421
  #@ cpd
422
  msgid "IP"
423
  msgstr "IP"
424
 
425
- #: counter-options.php:431
 
426
  #: notes.php:88
427
  #@ cpd
428
  #@ default
429
  msgid "Date"
430
  msgstr "Data"
431
 
432
- #: counter-options.php:432
 
433
  #@ cpd
434
  msgid "Client"
435
  msgstr "Client"
436
 
437
- #: counter-options.php:433
 
438
  #@ cpd
439
  msgid "Views"
440
  msgstr "Vizualizări"
441
 
442
- #: counter-options.php:891
443
  #@ cpd
444
  msgid "Start Values"
445
  msgstr "Valorile de început"
446
 
447
- #: counter-options.php:895
448
  #@ cpd
449
  msgid "Here you can change the date of first count and add a start count."
450
  msgstr "Aici aveţi posibilitatea să modificaţi data primul conta şi adaugă un număr de început."
451
 
452
- #: counter-options.php:899
453
  #@ cpd
454
  msgid "Start date"
455
  msgstr "Data inceperii"
456
 
457
- #: counter-options.php:900
458
  #@ cpd
459
  msgid "Your old Counter starts at?"
460
  msgstr "Dumneavoastră contor vechi începe la?"
461
 
462
- #: counter-options.php:903
463
- #: counter-options.php:907
464
  #@ cpd
465
  msgid "Start count"
466
  msgstr "Contele de start"
467
 
468
- #: counter-options.php:904
469
  #@ cpd
470
  msgid "Add this value to \"Total visitors\"."
471
  msgstr "Adaugă această valoare la \"Total vizitatori\"."
472
 
473
- #: counter-options.php:727
474
  #@ cpd
475
  msgid "Support"
476
  msgstr "Suport"
477
 
478
- #: counter-core.php:754
479
  #@ cpd
480
  msgid "Bug? Problem? Question? Hint? Praise?"
481
  msgstr "Bug? Problema? Întrebare? Indiciu? Laudă?"
482
 
483
- #: counter-core.php:755
484
  #, php-format
485
  #@ cpd
486
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
487
  msgstr "Scrie un comentariu pe pagina de <a href=\"%s\"> plugin-ul </a>."
488
 
489
- #: counter.php:873
490
  #@ default
491
  msgid "Show"
492
  msgstr "Arată"
493
 
494
- #: counter.php:1085
495
  #@ default
496
  msgid "Edit Post"
497
  msgstr "Editare Post"
498
 
499
- #: counter-core.php:753
500
  #, php-format
501
  #@ cpd
502
  msgid "Time for Count per Day: <code>%s</code>."
503
  msgstr "Timp pentru conta pe zi: <code>%s</code>."
504
 
505
- #: counter-options.php:759
506
  #@ cpd
507
  msgid "until User Level"
508
  msgstr "până la nivel de utilizator"
509
 
510
- #: counter-core.php:796
511
  #@ default
512
  msgid "Plugin"
513
  msgstr "Plugin-ul"
514
 
515
- #: counter.php:875
516
  #: notes.php:55
517
  #: notes.php:89
518
  #@ cpd
@@ -544,66 +549,66 @@ msgstr "Ştergere"
544
  msgid "edit"
545
  msgstr "Editare"
546
 
547
- #: counter-options.php:908
548
  #@ cpd
549
  msgid "Add this value to \"Total reads\"."
550
  msgstr "."
551
 
552
- #: counter.php:218
553
- #: counter.php:1356
554
  #@ cpd
555
  msgid "Total reads"
556
  msgstr "Total Citeşte"
557
 
558
- #: counter.php:219
559
- #: counter.php:1357
560
  #@ cpd
561
  msgid "Reads today"
562
  msgstr "Citeşte astăzi"
563
 
564
- #: counter.php:220
565
- #: counter.php:1358
566
  #@ cpd
567
  msgid "Reads yesterday"
568
  msgstr "Citeşte ieri"
569
 
570
- #: counter-options.php:778
571
  #@ cpd
572
  msgid "Anonymous IP"
573
  msgstr "IP anonim"
574
 
575
- #: counter-options.php:782
576
  #@ cpd
577
  msgid "Cache"
578
  msgstr "Cache-ul"
579
 
580
- #: counter-options.php:783
581
  #@ cpd
582
  msgid "I use a cache plugin. Count these visits with ajax."
583
  msgstr "I folos un cache dop. Conta aceste vizite cu ajax."
584
 
585
- #: counter-options.php:861
586
  #@ cpd
587
  msgid "Substring of the user agent, separated by comma"
588
  msgstr "Subşir al agentului utilizator, separate prin virgulă"
589
 
590
- #: counter-options.php:945
591
  #@ cpd
592
  msgid "Debug mode"
593
  msgstr "Modul Debug"
594
 
595
- #: counter-options.php:947
596
  #@ cpd
597
  msgid "Show debug informations at the bottom of all pages."
598
  msgstr "Arata informatii de debug la partea de jos a tuturor paginilor."
599
 
600
- #: counter-core.php:805
601
  #@ cpd
602
  msgid "Visitors per Country"
603
  msgstr "Vizitatori pe ţară"
604
 
605
- #: counter.php:418
606
- #: counter.php:1198
607
  #@ cpd
608
  msgid "Map"
609
  msgstr "Hartă"
@@ -628,495 +633,587 @@ msgstr "PostID"
628
  msgid "no data found"
629
  msgstr "nu există date găsit"
630
 
631
- #: counter-options.php:639
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 "Puteţi obţine datele ţară pentru toate intrările din baza de date de verificare adresa de IP împotriva GeoIP bazei de date. Acest lucru poate dura un timp!"
635
 
636
- #: counter-options.php:748
637
  #@ cpd
638
  msgid "Counter"
639
  msgstr "Counter"
640
 
641
- #: counter-options.php:786
642
  #@ cpd
643
  msgid "Clients and referrers"
644
  msgstr "Clienti si au venit"
645
 
646
- #: counter-options.php:789
647
  #@ cpd
648
  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."
649
  msgstr "Salvaţi şi arată clienti si referrers. < br / > are nevoie de o mulţime de spaţiu în baza de date, dar vă oferă informaţii mai detaliate de vizitatori."
650
 
651
- #: counter-options.php:872
652
  #@ cpd
653
  msgid "Local URLs"
654
  msgstr "URL-uri locale"
655
 
656
- #: counter-options.php:873
657
  #@ cpd
658
  msgid "Show local referrers too."
659
  msgstr "Arată locale au venit prea."
660
 
661
- #: counter-options.php:880
662
  #@ default
663
  msgid "Posts"
664
  msgstr "Posturi"
665
 
666
- #: counter-options.php:880
667
  #@ default
668
  msgid "Pages"
669
  msgstr "Pagini"
670
 
671
- #: counter.php:221
672
- #: counter.php:1359
673
  #@ cpd
674
  msgid "Reads last week"
675
  msgstr "Citeşte săptămâna trecută"
676
 
677
- #: counter.php:1094
678
  #@ default
679
  msgid "Category"
680
  msgstr "Categoria"
681
 
682
- #: counter.php:1097
683
  #@ default
684
  msgid "Tag"
685
  msgstr "Tag-ul"
686
 
687
- #: counter-core.php:756
688
  #@ default
689
  msgid "License"
690
  msgstr "A da un permis"
691
 
692
- #: counter-core.php:791
693
- #: counter.php:1360
694
  #@ cpd
695
  msgid "Reads per month"
696
  msgstr "Afişări pe lună"
697
 
698
- #: counter-core.php:800
699
  #@ cpd
700
  msgid "Referrer"
701
  msgstr "Referrer"
702
 
703
- #: counter.php:1380
704
  #@ default
705
  msgid "Title"
706
  msgstr "Titlul"
707
 
708
- #: counter-options.php:864
709
  #@ cpd
710
  msgid "Referrers - Entries"
711
  msgstr "Venit - intrări"
712
 
713
- #: counter-options.php:865
714
  #@ cpd
715
  msgid "How many referrers do you want to see on dashboard page?"
716
  msgstr "Cât de multe au venit doriţi pentru a vedea pagina tabloul de bord?"
717
 
718
- #: counter-options.php:868
719
  #@ cpd
720
  msgid "Referrers - Days"
721
  msgstr "Venit - zile"
722
 
723
- #: counter.php:944
724
  #, php-format
725
  #@ cpd
726
  msgid "The %s referrers in last %s days:"
727
  msgstr "%s au venit în ultimele %s zile:"
728
 
729
- #: counter-core.php:789
730
  #@ cpd
731
  msgid "Visitors online"
732
  msgstr "Vizitatori online"
733
 
734
- #: counter-core.php:259
735
  #, php-format
736
  #@ cpd
737
  msgid "\"Count per Day\" updated to version %s."
738
  msgstr "\"Numărătoarea pe zi\" actualizat la versiunea %s."
739
 
740
- #: counter-core.php:1000
741
  #@ cpd
742
  msgid "Backup failed! Cannot open file"
743
  msgstr "Copie de rezervă nu a reușit! Imposibil de deschis fişierul"
744
 
745
- #: counter-core.php:1027
746
- #, php-format
747
- #@ cpd
748
- msgid "Backup of %s entries in progress. Every point complies %s entries."
749
- msgstr "Copie de rezervă a %s intrările în curs de desfăşurare. Fiecare punct respectă %s intrări."
750
-
751
- #: counter-core.php:1118
752
- #: counter-core.php:1126
753
  #, php-format
754
  #@ cpd
755
  msgid "Backup of counter table saved in %s."
756
  msgstr "Copie de rezervă a contracara tabel salvate în % s."
757
 
758
- #: counter-core.php:1120
759
- #: counter-core.php:1128
760
  #, php-format
761
  #@ cpd
762
  msgid "Backup of counter options and collection saved in %s."
763
  msgstr "Copie de rezervă a counter opţiuni şi colectarea salvate în % s."
764
 
765
- #: counter-options.php:169
766
  #@ cpd
767
  msgid "Collection in progress..."
768
  msgstr "Colectare în desfăşurare..."
769
 
770
- #: counter-options.php:263
771
  #@ cpd
772
  msgid "Get Visitors per Post..."
773
  msgstr "Obţineţi de vizitatori pe Post..."
774
 
775
- #: counter-options.php:284
776
- #@ cpd
777
- msgid "Delete old data..."
778
- msgstr "Ştergere date vechi..."
779
-
780
- #: counter-options.php:317
781
  #@ cpd
782
  msgid "Installation of \"Count per Day\" checked"
783
  msgstr "Instalarea de \"Numărătoarea pe zi\" verificat"
784
 
785
- #: counter-options.php:400
786
- #: counter-options.php:739
787
  #@ default
788
  msgid "Tools"
789
  msgstr "Instrumente"
790
 
791
- #: counter-options.php:791
792
  #@ cpd
793
  msgid "Save URL only, no query string."
794
  msgstr "Salva URL-ul doar, nici un şir de interogare."
795
 
796
- #: counter-options.php:815
797
  #@ cpd
798
  msgid "Who can see it"
799
  msgstr "Cine poate vedea it"
800
 
801
- #: counter-options.php:824
802
  #@ cpd
803
  msgid "custom"
804
  msgstr "personalizat"
805
 
806
- #: counter-options.php:826
807
  #@ cpd
808
  msgid "and higher are allowed to see the statistics page."
809
  msgstr "şi mai sunt permise pentru a vedea pagina de statistici."
810
 
811
- #: counter-options.php:828
812
  #, php-format
813
  #@ cpd
814
  msgid "Set the %s capability %s a user need:"
815
  msgstr "Setaţi capacitatea de %s %s nevoie de un utilizator:"
816
 
817
- #: counter-options.php:915
818
  #@ cpd
819
  msgid "Stylesheet"
820
  msgstr "StyleSheet"
821
 
822
- #: counter-options.php:918
823
  #@ cpd
824
  msgid "NO Stylesheet in Frontend"
825
  msgstr "Nici un stil în Frontend"
826
 
827
- #: counter-options.php:919
828
  #@ cpd
829
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
830
  msgstr "Nu încărcaţi stil \"counter.css\" din interfaţă."
831
 
832
- #: counter-options.php:476
833
- #: counter-options.php:926
834
  #@ cpd
835
  msgid "Backup"
836
  msgstr "Copie de rezervă"
837
 
838
- #: counter-options.php:929
839
  #@ cpd
840
  msgid "Entries per pass"
841
  msgstr "Intrările pe pass"
842
 
843
- #: counter-options.php:932
844
  #@ cpd
845
  msgid "How many entries should be saved per pass? Default: 10000"
846
  msgstr "Intrările cât de multe ar trebui să fie salvate trece? Implicit: 10000"
847
 
848
- #: counter-options.php:937
849
  #@ cpd
850
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
851
  msgstr "Dacă PHP memorie limită mai apoi 50 MB şi tu a lua o pagină alb sau mesaje de eroare încercaţi o valoare mai mică."
852
 
853
- #: counter-options.php:480
854
  #, php-format
855
  #@ cpd
856
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
857
  msgstr "Creaţi o copie de rezervă a tabelului contor %s în directorul wp-content (dacă este inscriptibil)."
858
 
859
- #: counter-options.php:487
860
  #@ cpd
861
  msgid "Backup the database"
862
  msgstr "Backup baza de date"
863
 
864
- #: counter-options.php:591
865
- #: counter-options.php:623
866
  #@ cpd
867
  msgid "Collect old data"
868
  msgstr "Colectarea de date vechi"
869
 
870
- #: counter-options.php:577
871
- #: counter-options.php:596
872
  #, php-format
873
  #@ cpd
874
  msgid "Current size of your counter table %s is %s."
875
  msgstr "Dimensiunea actuală a contracara tabel %s este % s."
876
 
877
- #: counter-options.php:598
878
  #@ cpd
879
  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."
880
  msgstr "Puteţi colecta date vechi şi clean up tabelul contor. <br/>Citeşte şi vizitatorii vor fi salvate pe lună, pe ţări şi pe post. <br/>Clienti si au venit se vor şterge."
881
 
882
- #: counter-options.php:603
883
  #, php-format
884
  #@ cpd
885
  msgid "Currently your collection contains data until %s."
886
  msgstr "Colecţia conţine în prezent date până la % s."
887
 
888
- #: counter-options.php:607
889
  #@ cpd
890
  msgid "Normally new data will be added to the collection."
891
  msgstr "Date noi în mod normal va fi adăugate la colecţie."
892
 
893
- #: counter-options.php:613
894
  #@ cpd
895
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
896
  msgstr "Şterge colecţie vechi şi de a crea unul nou, care conţine numai datele în prezent în tabelul contor."
897
 
898
- #: counter-options.php:614
899
  #, php-format
900
  #@ cpd
901
  msgid "All collected data until %s will deleted."
902
  msgstr "Toate datele colectate până când %s va şterge."
903
 
904
- #: counter-options.php:619
905
  #, php-format
906
  #@ cpd
907
  msgid "Keep entries of last %s full months + current month in counter table."
908
  msgstr "Păstraţi intrările din ultimele luni complete %s + luna curentă în tabelul de contor."
909
 
910
- #: counter-options.php:670
911
  #@ cpd
912
  msgid "ReActivation"
913
  msgstr "Reactivare"
914
 
915
- #: counter-options.php:673
916
  #@ cpd
917
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
918
  msgstr "Aici aveţi posibilitatea să porniţi funcţiile de instalare manuală. <br/>Fel ca deactivati si reactivati pluginul."
919
 
920
- #: counter-options.php:678
921
  #@ cpd
922
  msgid "ReActivate the plugin"
923
  msgstr "Reactiva plugin-ul"
924
 
925
- #: counter.php:228
926
- #: counter.php:998
927
  #@ cpd
928
  msgid "Visitors"
929
  msgstr "Vizitatori"
930
 
931
- #: counter.php:231
932
- #: counter.php:232
933
  #@ cpd
934
  msgid "Most visited day"
935
  msgstr "Cele mai vizitate de zi"
936
 
937
- #: counter.php:1399
938
  #@ cpd
939
  msgid "drag and drop to sort"
940
  msgstr "Glisaţi şi fixaţi pentru a sorta"
941
 
942
- #: counter-core.php:794
943
- #: counter.php:229
944
- #: counter.php:328
945
- #: counter.php:1169
946
- #: counter.php:1366
947
  #: userperspan.php:46
948
  #@ cpd
949
  msgid "Visitors per day"
950
  msgstr ""
951
 
952
- #: counter-core.php:795
953
- #: counter-options.php:864
954
- #: counter-options.php:868
955
  #@ cpd
956
  msgid "Search strings"
957
  msgstr ""
958
 
959
- #: counter-core.php:1114
960
  #@ cpd
961
  msgid "Your can download the backup files here and now."
962
  msgstr ""
963
 
964
- #: counter-core.php:1184
965
  #@ cpd
966
  msgid "Error while reading backup file!"
967
  msgstr ""
968
 
969
- #: counter-core.php:1188
970
  #, php-format
971
  #@ cpd
972
  msgid "The backup was added to counter table %s."
973
  msgstr ""
974
 
975
- #: counter-core.php:1190
976
  #, php-format
977
  #@ cpd
978
  msgid "The counter table %s was restored from backup."
979
  msgstr ""
980
 
981
- #: counter-core.php:1207
982
  #@ cpd
983
  msgid "Options restored from backup."
984
  msgstr ""
985
 
986
- #: counter-options.php:308
987
  #, php-format
988
  #@ cpd
989
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
990
  msgstr ""
991
 
992
- #: counter-options.php:332
993
  #@ cpd
994
  msgid "Old search strings deleted"
995
  msgstr ""
996
 
997
- #: counter-options.php:347
998
  #@ cpd
999
  msgid "Clients and referers deleted"
1000
  msgstr ""
1001
 
1002
- #: counter-options.php:483
1003
  #@ cpd
1004
  msgid "Download only"
1005
  msgstr ""
1006
 
1007
- #: counter-options.php:515
1008
  #@ cpd
1009
  msgid "Settings and collections"
1010
  msgstr ""
1011
 
1012
- #: counter-options.php:520
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Counter table %s"
1016
  msgstr ""
1017
 
1018
- #: counter-options.php:527
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Add data from the backup file %s to existing counter table?"
1022
  msgstr ""
1023
 
1024
- #: counter-options.php:527
1025
  #@ cpd
1026
  msgid "Add"
1027
  msgstr ""
1028
 
1029
- #: counter-options.php:531
1030
  #, php-format
1031
  #@ cpd
1032
  msgid "Restore data from the backup file %s ?"
1033
  msgstr ""
1034
 
1035
- #: counter-options.php:531
1036
  #@ default
1037
  msgid "Restore"
1038
  msgstr ""
1039
 
1040
- #: counter-options.php:533
1041
  #@ default
1042
  msgid "Delete"
1043
  msgstr ""
1044
 
1045
- #: counter-options.php:534
1046
  #, php-format
1047
  #@ cpd
1048
  msgid "Delete the backup file %s ?"
1049
  msgstr ""
1050
 
1051
- #: counter-options.php:540
1052
  #@ cpd
1053
  msgid "add backup to current counter table"
1054
  msgstr ""
1055
 
1056
- #: counter-options.php:541
1057
  #@ cpd
1058
  msgid "replace current counter table with with backup"
1059
  msgstr ""
1060
 
1061
- #: counter-options.php:542
1062
  #@ cpd
1063
  msgid "delete backup file"
1064
  msgstr ""
1065
 
1066
- #: counter-options.php:567
1067
  #, php-format
1068
  #@ cpd
1069
  msgid "Delete search strings older than %s days."
1070
  msgstr ""
1071
 
1072
- #: counter-options.php:571
1073
  #@ cpd
1074
  msgid "Delete search strings"
1075
  msgstr ""
1076
 
1077
- #: counter-options.php:578
1078
  #, php-format
1079
  #@ cpd
1080
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1081
  msgstr ""
1082
 
1083
- #: counter-options.php:582
1084
  #@ cpd
1085
  msgid "Delete clients and referers"
1086
  msgstr ""
1087
 
1088
- #: counter.php:227
1089
- #: counter.php:1364
1090
  #@ cpd
1091
  msgid "Visitors last week"
1092
  msgstr ""
1093
 
1094
- #: counter.php:230
1095
- #: counter.php:924
1096
- #: counter.php:1368
1097
  #@ cpd
1098
  msgid "Counter starts on"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:20+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Web Geeks\n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Opţiuni actualizate"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Baza de date curăţate. %s rânduri şterse."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEZINSTALAŢI conta pe zi"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabelul %s elimină"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opţiuni elimină"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Dezinstalare"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Faceţi clic aici"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Timp online"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr " pagina tabloul de bord."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Logon utilizatori"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "conta prea"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto counter"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Contează automat single-posturi şi paginile, nici o modificare pe şablon necesare."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Roboţii să ignore"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Opţiuni de actualizare"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Curăţaţi baza de date"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  msgstr "Puteţi curăţa tabelul de contorul de a şterge \"spam-ul de date\". <br /> Dacă adăugaţi noi boti de mai sus vechi \"de date de spam\" păstrează în baza de date. <br /> Aici puteţi rula filtrul bot din nou şi să ştergeţi vizitele de boti."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr " numai persoanele cu handicap tabelele din baza de date vor fi păstrate."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr ".Aici aveţi posibilitatea să ştergeţi tabele şi dezactiva \"Numărătoarea pe zi\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "AVERTISMENT"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Aceste tabele (cu toate Contor date) vor fi şterse."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr " re-a instala, contorul începe la 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "da"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Sunteţi sigur de a nu fi de acord conta pe zi şi a şterge toate datele?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistici"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total vizitatori"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Vizitatori online"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Vizitatori astăzi"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Vizitatori ieri"
187
 
188
+ #: counter-core.php:779
189
+ #: counter.php:1416
190
  #@ cpd
191
  msgid "Visitors per month"
192
  msgstr "Vizitatori pe lună"
193
 
194
+ #: counter-core.php:781
195
+ #: counter-options.php:924
196
  #@ cpd
197
  msgid "Visitors per post"
198
  msgstr "Vizitatori pe post"
199
 
200
+ #: counter-options.php:128
201
  #@ cpd
202
  msgid "Counter reseted."
203
  msgstr "Contor resetat."
204
 
205
+ #: counter-options.php:925
206
+ #: counter-options.php:929
207
  #@ cpd
208
  msgid "How many posts do you want to see on dashboard page?"
209
  msgstr "Cât de multe posturi doriţi pentru a vedea pagina tabloul de bord?"
210
 
211
+ #: counter-options.php:928
212
  #@ cpd
213
  msgid "Latest Counts - Posts"
214
  msgstr "Contează ultimele - posturi"
215
 
216
+ #: counter-options.php:932
217
  #@ cpd
218
  msgid "Latest Counts - Days"
219
  msgstr "Contează ultimele - zile"
220
 
221
+ #: counter-options.php:933
222
+ #: counter-options.php:937
223
+ #: counter-options.php:959
224
  #@ cpd
225
  msgid "How many days do you want look back?"
226
  msgstr "Câte zile se va privi înapoi?"
227
 
228
+ #: counter-options.php:973
229
  #@ cpd
230
  msgid "Show in lists"
231
  msgstr "Arată în liste"
232
 
233
+ #: counter-options.php:974
234
  #@ cpd
235
  msgid "Show \"Reads per Post\" in a new column in post management views."
236
  msgstr " într-o coloană nouă în post gestionare vizualizări."
237
 
238
+ #: counter-options.php:770
239
+ #: counter-options.php:780
240
  #@ cpd
241
  msgid "Reset the counter"
242
  msgstr "Resetarea contorului de"
243
 
244
+ #: counter-options.php:773
245
  #@ cpd
246
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
247
  msgstr "Puteţi reseta contorul de gol tabelul. TOATE la 0! < br / > face o copie de rezervă, dacă aveţi nevoie de datele curente!"
248
 
249
+ #: counter.php:771
250
  #, php-format
251
  #@ cpd
252
  msgid "The %s most visited posts in last %s days:"
253
  msgstr "Posturi în ultimele zile de %s %s cel mai vizitat:"
254
 
255
+ #: counter-core.php:641
256
+ #: counter-options.php:409
 
257
  #@ default
258
  msgid "Settings"
259
  msgstr "Setări"
260
 
261
+ #: counter-core.php:1526
262
+ #: counter-options.php:869
263
+ #: counter.php:235
264
+ #: counter.php:1019
265
  #@ cpd
266
  msgid "Reads"
267
  msgstr "Citeşte"
268
 
269
+ #: counter-core.php:782
270
  #@ cpd
271
  msgid "Latest Counts"
272
  msgstr "Contează mai recente"
273
 
274
+ #: counter-options.php:936
275
  #@ cpd
276
  msgid "Chart - Days"
277
  msgstr "Diagramă - zile"
278
 
279
+ #: counter-options.php:940
280
  #@ cpd
281
  msgid "Chart - Height"
282
  msgstr "Diagramă - înălţime"
283
 
284
+ #: counter-options.php:941
285
  #@ cpd
286
  msgid "Height of the biggest bar"
287
  msgstr "Înălțimea de la bar mai mare"
288
 
289
+ #: counter.php:1406
290
  #@ cpd
291
  msgid "This post"
292
  msgstr "Acest post"
293
 
294
+ #: counter-options.php:889
295
  #@ default
296
  msgid "Dashboard"
297
  msgstr "Tabloul de bord"
298
 
299
+ #: counter.php:342
300
  #@ cpd
301
  msgid "Reads per day"
302
  msgstr "Citeşte pe zi"
312
  msgid "update next"
313
  msgstr "actualizaţi următorul"
314
 
315
+ #: counter-options.php:720
316
  #@ cpd
317
  msgid "GeoIP - Countries"
318
  msgstr "GeoIP - ţări"
319
 
320
+ #: counter-options.php:729
321
  #@ cpd
322
  msgid "Update old counter data"
323
  msgstr "Actualizaţi datele contor vechi"
324
 
325
+ #: counter-options.php:741
326
  #@ cpd
327
  msgid "Update GeoIP database"
328
  msgstr "Actualizare GeoIP database"
329
 
330
+ #: counter-options.php:736
331
  #@ cpd
332
  msgid "Download a new version of GeoIP.dat file."
333
  msgstr "Descărcaţi o nouă versiune de dosar GeoIP.dat."
334
 
335
+ #: counter-options.php:746
336
  #@ cpd
337
  msgid "More informations about GeoIP"
338
  msgstr "Mai multe informatii despre GeoIP"
339
 
340
+ #: counter-core.php:793
341
  #@ cpd
342
  msgid "Reads per Country"
343
  msgstr "Citeşte per tara"
357
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
358
  msgstr "Ne pare rău, funcţiile necesare (zlib) nu instalat sau activat în php.ini."
359
 
360
+ #: counter-options.php:945
361
  #@ cpd
362
  msgid "Countries"
363
  msgstr "Ţări"
364
 
365
+ #: counter-options.php:946
366
  #@ cpd
367
  msgid "How many countries do you want to see on dashboard page?"
368
  msgstr "Cât de multe ţări doriţi pentru a vedea pagina tabloul de bord?"
373
  msgid "Mass Bots cleaned. %s counts deleted."
374
  msgstr "Masa roboţii curăţate. %s contează elimină."
375
 
376
+ #: counter-options.php:429
377
  #: massbots.php:46
378
  #@ cpd
379
  msgid "Mass Bots"
380
  msgstr "Roboţii de masă"
381
 
382
+ #: counter-options.php:433
383
  #, php-format
384
  #@ cpd
385
  msgid "Show all IPs with more than %s page views per day"
386
  msgstr "Arată toate IP-uri cu mai mult de %s de vizualizări de pagină pe zi"
387
 
388
+ #: counter-options.php:434
389
+ #: counter-options.php:498
390
  #: notes.php:84
391
  #: userperspan.php:56
392
  #@ cpd
393
  msgid "show"
394
  msgstr "Arată"
395
 
396
+ #: counter-options.php:460
397
+ #: counter-options.php:476
398
+ #: counter-options.php:523
399
  #, php-format
400
  #@ cpd
401
  msgid "Delete these %s counts"
402
  msgstr "Ştergeţi aceste contează %s"
403
 
404
+ #: counter.php:958
405
  #@ cpd
406
  msgid "Other"
407
  msgstr "Alte"
412
  msgid "Front page displays"
413
  msgstr "Afişează prima pagină"
414
 
415
+ #: counter-core.php:788
416
+ #: counter-options.php:950
417
  #@ cpd
418
  msgid "Browsers"
419
  msgstr "Browsere"
420
 
421
+ #: counter-options.php:442
422
+ #: counter-options.php:506
423
  #@ cpd
424
  msgid "IP"
425
  msgstr "IP"
426
 
427
+ #: counter-options.php:443
428
+ #: counter-options.php:507
429
  #: notes.php:88
430
  #@ cpd
431
  #@ default
432
  msgid "Date"
433
  msgstr "Data"
434
 
435
+ #: counter-options.php:444
436
+ #: counter-options.php:508
437
  #@ cpd
438
  msgid "Client"
439
  msgstr "Client"
440
 
441
+ #: counter-options.php:445
442
+ #: counter-options.php:509
443
  #@ cpd
444
  msgid "Views"
445
  msgstr "Vizualizări"
446
 
447
+ #: counter-options.php:981
448
  #@ cpd
449
  msgid "Start Values"
450
  msgstr "Valorile de început"
451
 
452
+ #: counter-options.php:985
453
  #@ cpd
454
  msgid "Here you can change the date of first count and add a start count."
455
  msgstr "Aici aveţi posibilitatea să modificaţi data primul conta şi adaugă un număr de început."
456
 
457
+ #: counter-options.php:989
458
  #@ cpd
459
  msgid "Start date"
460
  msgstr "Data inceperii"
461
 
462
+ #: counter-options.php:990
463
  #@ cpd
464
  msgid "Your old Counter starts at?"
465
  msgstr "Dumneavoastră contor vechi începe la?"
466
 
467
+ #: counter-options.php:993
468
+ #: counter-options.php:997
469
  #@ cpd
470
  msgid "Start count"
471
  msgstr "Contele de start"
472
 
473
+ #: counter-options.php:994
474
  #@ cpd
475
  msgid "Add this value to \"Total visitors\"."
476
  msgstr "Adaugă această valoare la \"Total vizitatori\"."
477
 
478
+ #: counter-options.php:811
479
  #@ cpd
480
  msgid "Support"
481
  msgstr "Suport"
482
 
483
+ #: counter-core.php:743
484
  #@ cpd
485
  msgid "Bug? Problem? Question? Hint? Praise?"
486
  msgstr "Bug? Problema? Întrebare? Indiciu? Laudă?"
487
 
488
+ #: counter-core.php:744
489
  #, php-format
490
  #@ cpd
491
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
492
  msgstr "Scrie un comentariu pe pagina de <a href=\"%s\"> plugin-ul </a>."
493
 
494
+ #: counter.php:888
495
  #@ default
496
  msgid "Show"
497
  msgstr "Arată"
498
 
499
+ #: counter.php:1130
500
  #@ default
501
  msgid "Edit Post"
502
  msgstr "Editare Post"
503
 
504
+ #: counter-core.php:742
505
  #, php-format
506
  #@ cpd
507
  msgid "Time for Count per Day: <code>%s</code>."
508
  msgstr "Timp pentru conta pe zi: <code>%s</code>."
509
 
510
+ #: counter-options.php:839
511
  #@ cpd
512
  msgid "until User Level"
513
  msgstr "până la nivel de utilizator"
514
 
515
+ #: counter-core.php:785
516
  #@ default
517
  msgid "Plugin"
518
  msgstr "Plugin-ul"
519
 
520
+ #: counter.php:890
521
  #: notes.php:55
522
  #: notes.php:89
523
  #@ cpd
549
  msgid "edit"
550
  msgstr "Editare"
551
 
552
+ #: counter-options.php:998
553
  #@ cpd
554
  msgid "Add this value to \"Total reads\"."
555
  msgstr "."
556
 
557
+ #: counter.php:231
558
+ #: counter.php:1407
559
  #@ cpd
560
  msgid "Total reads"
561
  msgstr "Total Citeşte"
562
 
563
+ #: counter.php:232
564
+ #: counter.php:1408
565
  #@ cpd
566
  msgid "Reads today"
567
  msgstr "Citeşte astăzi"
568
 
569
+ #: counter.php:233
570
+ #: counter.php:1409
571
  #@ cpd
572
  msgid "Reads yesterday"
573
  msgstr "Citeşte ieri"
574
 
575
+ #: counter-options.php:858
576
  #@ cpd
577
  msgid "Anonymous IP"
578
  msgstr "IP anonim"
579
 
580
+ #: counter-options.php:862
581
  #@ cpd
582
  msgid "Cache"
583
  msgstr "Cache-ul"
584
 
585
+ #: counter-options.php:863
586
  #@ cpd
587
  msgid "I use a cache plugin. Count these visits with ajax."
588
  msgstr "I folos un cache dop. Conta aceste vizite cu ajax."
589
 
590
+ #: counter-options.php:951
591
  #@ cpd
592
  msgid "Substring of the user agent, separated by comma"
593
  msgstr "Subşir al agentului utilizator, separate prin virgulă"
594
 
595
+ #: counter-options.php:1035
596
  #@ cpd
597
  msgid "Debug mode"
598
  msgstr "Modul Debug"
599
 
600
+ #: counter-options.php:1037
601
  #@ cpd
602
  msgid "Show debug informations at the bottom of all pages."
603
  msgstr "Arata informatii de debug la partea de jos a tuturor paginilor."
604
 
605
+ #: counter-core.php:794
606
  #@ cpd
607
  msgid "Visitors per Country"
608
  msgstr "Vizitatori pe ţară"
609
 
610
+ #: counter.php:433
611
+ #: counter.php:1249
612
  #@ cpd
613
  msgid "Map"
614
  msgstr "Hartă"
633
  msgid "no data found"
634
  msgstr "nu există date găsit"
635
 
636
+ #: counter-options.php:723
637
  #@ cpd
638
  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!"
639
  msgstr "Puteţi obţine datele ţară pentru toate intrările din baza de date de verificare adresa de IP împotriva GeoIP bazei de date. Acest lucru poate dura un timp!"
640
 
641
+ #: counter-options.php:828
642
  #@ cpd
643
  msgid "Counter"
644
  msgstr "Counter"
645
 
646
+ #: counter-options.php:866
647
  #@ cpd
648
  msgid "Clients and referrers"
649
  msgstr "Clienti si au venit"
650
 
651
+ #: counter-options.php:869
652
  #@ cpd
653
  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."
654
  msgstr "Salvaţi şi arată clienti si referrers. < br / > are nevoie de o mulţime de spaţiu în baza de date, dar vă oferă informaţii mai detaliate de vizitatori."
655
 
656
+ #: counter-options.php:962
657
  #@ cpd
658
  msgid "Local URLs"
659
  msgstr "URL-uri locale"
660
 
661
+ #: counter-options.php:963
662
  #@ cpd
663
  msgid "Show local referrers too."
664
  msgstr "Arată locale au venit prea."
665
 
666
+ #: counter-options.php:970
667
  #@ default
668
  msgid "Posts"
669
  msgstr "Posturi"
670
 
671
+ #: counter-options.php:970
672
  #@ default
673
  msgid "Pages"
674
  msgstr "Pagini"
675
 
676
+ #: counter.php:234
677
+ #: counter.php:1410
678
  #@ cpd
679
  msgid "Reads last week"
680
  msgstr "Citeşte săptămâna trecută"
681
 
682
+ #: counter.php:1139
683
  #@ default
684
  msgid "Category"
685
  msgstr "Categoria"
686
 
687
+ #: counter.php:1142
688
  #@ default
689
  msgid "Tag"
690
  msgstr "Tag-ul"
691
 
692
+ #: counter-core.php:745
693
  #@ default
694
  msgid "License"
695
  msgstr "A da un permis"
696
 
697
+ #: counter-core.php:780
698
+ #: counter.php:1411
699
  #@ cpd
700
  msgid "Reads per month"
701
  msgstr "Afişări pe lună"
702
 
703
+ #: counter-core.php:789
704
  #@ cpd
705
  msgid "Referrer"
706
  msgstr "Referrer"
707
 
708
+ #: counter.php:1431
709
  #@ default
710
  msgid "Title"
711
  msgstr "Titlul"
712
 
713
+ #: counter-options.php:954
714
  #@ cpd
715
  msgid "Referrers - Entries"
716
  msgstr "Venit - intrări"
717
 
718
+ #: counter-options.php:955
719
  #@ cpd
720
  msgid "How many referrers do you want to see on dashboard page?"
721
  msgstr "Cât de multe au venit doriţi pentru a vedea pagina tabloul de bord?"
722
 
723
+ #: counter-options.php:958
724
  #@ cpd
725
  msgid "Referrers - Days"
726
  msgstr "Venit - zile"
727
 
728
+ #: counter.php:989
729
  #, php-format
730
  #@ cpd
731
  msgid "The %s referrers in last %s days:"
732
  msgstr "%s au venit în ultimele %s zile:"
733
 
734
+ #: counter-core.php:778
735
  #@ cpd
736
  msgid "Visitors online"
737
  msgstr "Vizitatori online"
738
 
739
+ #: counter-core.php:232
740
  #, php-format
741
  #@ cpd
742
  msgid "\"Count per Day\" updated to version %s."
743
  msgstr "\"Numărătoarea pe zi\" actualizat la versiunea %s."
744
 
745
+ #: counter-core.php:1062
746
  #@ cpd
747
  msgid "Backup failed! Cannot open file"
748
  msgstr "Copie de rezervă nu a reușit! Imposibil de deschis fişierul"
749
 
750
+ #: counter-core.php:1180
751
+ #: counter-core.php:1188
 
 
 
 
 
 
752
  #, php-format
753
  #@ cpd
754
  msgid "Backup of counter table saved in %s."
755
  msgstr "Copie de rezervă a contracara tabel salvate în % s."
756
 
757
+ #: counter-core.php:1182
758
+ #: counter-core.php:1190
759
  #, php-format
760
  #@ cpd
761
  msgid "Backup of counter options and collection saved in %s."
762
  msgstr "Copie de rezervă a counter opţiuni şi colectarea salvate în % s."
763
 
764
+ #: counter-options.php:174
765
  #@ cpd
766
  msgid "Collection in progress..."
767
  msgstr "Colectare în desfăşurare..."
768
 
769
+ #: counter-options.php:268
770
  #@ cpd
771
  msgid "Get Visitors per Post..."
772
  msgstr "Obţineţi de vizitatori pe Post..."
773
 
774
+ #: counter-options.php:322
 
 
 
 
 
775
  #@ cpd
776
  msgid "Installation of \"Count per Day\" checked"
777
  msgstr "Instalarea de \"Numărătoarea pe zi\" verificat"
778
 
779
+ #: counter-options.php:408
 
780
  #@ default
781
  msgid "Tools"
782
  msgstr "Instrumente"
783
 
784
+ #: counter-options.php:871
785
  #@ cpd
786
  msgid "Save URL only, no query string."
787
  msgstr "Salva URL-ul doar, nici un şir de interogare."
788
 
789
+ #: counter-options.php:905
790
  #@ cpd
791
  msgid "Who can see it"
792
  msgstr "Cine poate vedea it"
793
 
794
+ #: counter-options.php:914
795
  #@ cpd
796
  msgid "custom"
797
  msgstr "personalizat"
798
 
799
+ #: counter-options.php:916
800
  #@ cpd
801
  msgid "and higher are allowed to see the statistics page."
802
  msgstr "şi mai sunt permise pentru a vedea pagina de statistici."
803
 
804
+ #: counter-options.php:918
805
  #, php-format
806
  #@ cpd
807
  msgid "Set the %s capability %s a user need:"
808
  msgstr "Setaţi capacitatea de %s %s nevoie de un utilizator:"
809
 
810
+ #: counter-options.php:1005
811
  #@ cpd
812
  msgid "Stylesheet"
813
  msgstr "StyleSheet"
814
 
815
+ #: counter-options.php:1008
816
  #@ cpd
817
  msgid "NO Stylesheet in Frontend"
818
  msgstr "Nici un stil în Frontend"
819
 
820
+ #: counter-options.php:1009
821
  #@ cpd
822
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
823
  msgstr "Nu încărcaţi stil \"counter.css\" din interfaţă."
824
 
825
+ #: counter-options.php:560
826
+ #: counter-options.php:1016
827
  #@ cpd
828
  msgid "Backup"
829
  msgstr "Copie de rezervă"
830
 
831
+ #: counter-options.php:1019
832
  #@ cpd
833
  msgid "Entries per pass"
834
  msgstr "Intrările pe pass"
835
 
836
+ #: counter-options.php:1022
837
  #@ cpd
838
  msgid "How many entries should be saved per pass? Default: 10000"
839
  msgstr "Intrările cât de multe ar trebui să fie salvate trece? Implicit: 10000"
840
 
841
+ #: counter-options.php:1027
842
  #@ cpd
843
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
844
  msgstr "Dacă PHP memorie limită mai apoi 50 MB şi tu a lua o pagină alb sau mesaje de eroare încercaţi o valoare mai mică."
845
 
846
+ #: counter-options.php:564
847
  #, php-format
848
  #@ cpd
849
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
850
  msgstr "Creaţi o copie de rezervă a tabelului contor %s în directorul wp-content (dacă este inscriptibil)."
851
 
852
+ #: counter-options.php:571
853
  #@ cpd
854
  msgid "Backup the database"
855
  msgstr "Backup baza de date"
856
 
857
+ #: counter-options.php:675
858
+ #: counter-options.php:707
859
  #@ cpd
860
  msgid "Collect old data"
861
  msgstr "Colectarea de date vechi"
862
 
863
+ #: counter-options.php:661
864
+ #: counter-options.php:680
865
  #, php-format
866
  #@ cpd
867
  msgid "Current size of your counter table %s is %s."
868
  msgstr "Dimensiunea actuală a contracara tabel %s este % s."
869
 
870
+ #: counter-options.php:682
871
  #@ cpd
872
  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."
873
  msgstr "Puteţi colecta date vechi şi clean up tabelul contor. <br/>Citeşte şi vizitatorii vor fi salvate pe lună, pe ţări şi pe post. <br/>Clienti si au venit se vor şterge."
874
 
875
+ #: counter-options.php:687
876
  #, php-format
877
  #@ cpd
878
  msgid "Currently your collection contains data until %s."
879
  msgstr "Colecţia conţine în prezent date până la % s."
880
 
881
+ #: counter-options.php:691
882
  #@ cpd
883
  msgid "Normally new data will be added to the collection."
884
  msgstr "Date noi în mod normal va fi adăugate la colecţie."
885
 
886
+ #: counter-options.php:697
887
  #@ cpd
888
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
889
  msgstr "Şterge colecţie vechi şi de a crea unul nou, care conţine numai datele în prezent în tabelul contor."
890
 
891
+ #: counter-options.php:698
892
  #, php-format
893
  #@ cpd
894
  msgid "All collected data until %s will deleted."
895
  msgstr "Toate datele colectate până când %s va şterge."
896
 
897
+ #: counter-options.php:703
898
  #, php-format
899
  #@ cpd
900
  msgid "Keep entries of last %s full months + current month in counter table."
901
  msgstr "Păstraţi intrările din ultimele luni complete %s + luna curentă în tabelul de contor."
902
 
903
+ #: counter-options.php:754
904
  #@ cpd
905
  msgid "ReActivation"
906
  msgstr "Reactivare"
907
 
908
+ #: counter-options.php:757
909
  #@ cpd
910
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
911
  msgstr "Aici aveţi posibilitatea să porniţi funcţiile de instalare manuală. <br/>Fel ca deactivati si reactivati pluginul."
912
 
913
+ #: counter-options.php:762
914
  #@ cpd
915
  msgid "ReActivate the plugin"
916
  msgstr "Reactiva plugin-ul"
917
 
918
+ #: counter.php:241
919
+ #: counter.php:1043
920
  #@ cpd
921
  msgid "Visitors"
922
  msgstr "Vizitatori"
923
 
924
+ #: counter.php:244
925
+ #: counter.php:245
926
  #@ cpd
927
  msgid "Most visited day"
928
  msgstr "Cele mai vizitate de zi"
929
 
930
+ #: counter.php:1450
931
  #@ cpd
932
  msgid "drag and drop to sort"
933
  msgstr "Glisaţi şi fixaţi pentru a sorta"
934
 
935
+ #: counter-core.php:783
936
+ #: counter.php:242
937
+ #: counter.php:343
938
+ #: counter.php:1220
939
+ #: counter.php:1417
940
  #: userperspan.php:46
941
  #@ cpd
942
  msgid "Visitors per day"
943
  msgstr ""
944
 
945
+ #: counter-core.php:784
946
+ #: counter-options.php:954
947
+ #: counter-options.php:958
948
  #@ cpd
949
  msgid "Search strings"
950
  msgstr ""
951
 
952
+ #: counter-core.php:1176
953
  #@ cpd
954
  msgid "Your can download the backup files here and now."
955
  msgstr ""
956
 
957
+ #: counter-core.php:1246
958
  #@ cpd
959
  msgid "Error while reading backup file!"
960
  msgstr ""
961
 
962
+ #: counter-core.php:1250
963
  #, php-format
964
  #@ cpd
965
  msgid "The backup was added to counter table %s."
966
  msgstr ""
967
 
968
+ #: counter-core.php:1252
969
  #, php-format
970
  #@ cpd
971
  msgid "The counter table %s was restored from backup."
972
  msgstr ""
973
 
974
+ #: counter-core.php:1269
975
  #@ cpd
976
  msgid "Options restored from backup."
977
  msgstr ""
978
 
979
+ #: counter-options.php:313
980
  #, php-format
981
  #@ cpd
982
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
983
  msgstr ""
984
 
985
+ #: counter-options.php:337
986
  #@ cpd
987
  msgid "Old search strings deleted"
988
  msgstr ""
989
 
990
+ #: counter-options.php:352
991
  #@ cpd
992
  msgid "Clients and referers deleted"
993
  msgstr ""
994
 
995
+ #: counter-options.php:567
996
  #@ cpd
997
  msgid "Download only"
998
  msgstr ""
999
 
1000
+ #: counter-options.php:599
1001
  #@ cpd
1002
  msgid "Settings and collections"
1003
  msgstr ""
1004
 
1005
+ #: counter-options.php:604
1006
  #, php-format
1007
  #@ cpd
1008
  msgid "Counter table %s"
1009
  msgstr ""
1010
 
1011
+ #: counter-options.php:611
1012
  #, php-format
1013
  #@ cpd
1014
  msgid "Add data from the backup file %s to existing counter table?"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:611
1018
  #@ cpd
1019
  msgid "Add"
1020
  msgstr ""
1021
 
1022
+ #: counter-options.php:615
1023
  #, php-format
1024
  #@ cpd
1025
  msgid "Restore data from the backup file %s ?"
1026
  msgstr ""
1027
 
1028
+ #: counter-options.php:615
1029
  #@ default
1030
  msgid "Restore"
1031
  msgstr ""
1032
 
1033
+ #: counter-options.php:617
1034
  #@ default
1035
  msgid "Delete"
1036
  msgstr ""
1037
 
1038
+ #: counter-options.php:618
1039
  #, php-format
1040
  #@ cpd
1041
  msgid "Delete the backup file %s ?"
1042
  msgstr ""
1043
 
1044
+ #: counter-options.php:624
1045
  #@ cpd
1046
  msgid "add backup to current counter table"
1047
  msgstr ""
1048
 
1049
+ #: counter-options.php:625
1050
  #@ cpd
1051
  msgid "replace current counter table with with backup"
1052
  msgstr ""
1053
 
1054
+ #: counter-options.php:626
1055
  #@ cpd
1056
  msgid "delete backup file"
1057
  msgstr ""
1058
 
1059
+ #: counter-options.php:651
1060
  #, php-format
1061
  #@ cpd
1062
  msgid "Delete search strings older than %s days."
1063
  msgstr ""
1064
 
1065
+ #: counter-options.php:655
1066
  #@ cpd
1067
  msgid "Delete search strings"
1068
  msgstr ""
1069
 
1070
+ #: counter-options.php:662
1071
  #, php-format
1072
  #@ cpd
1073
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1074
  msgstr ""
1075
 
1076
+ #: counter-options.php:666
1077
  #@ cpd
1078
  msgid "Delete clients and referers"
1079
  msgstr ""
1080
 
1081
+ #: counter.php:240
1082
+ #: counter.php:1415
1083
  #@ cpd
1084
  msgid "Visitors last week"
1085
  msgstr ""
1086
 
1087
+ #: counter.php:969
1088
+ #: counter.php:1419
 
1089
  #@ cpd
1090
  msgid "Counter starts on"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-ru_RU.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:36+0000\n"
7
  "Last-Translator: Ilya Pshenichny\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -25,297 +25,295 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Настройки сохранены"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База данных очищена. %s строчек удалено."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Таблица %s удалена"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Настройки удалены"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Деинсталяция"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Нажмите сюда"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Время онлайн"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Вошедших пользователей"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "также считать"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Автоматический счетчик"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Игнорировать ботов"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Сохранить настройки"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Очистить базу данных"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ВНИМАНИЕ"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Да"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статистика"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Всего посетителей"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Посетителей сейчас на сайте"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Посетителей сегодня"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Посетителей вчера"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Посетителей на прошлой неделе"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Счетчик начинается с"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Посетителей в день"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Посетителей в месяц"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Посетителей записи"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Счетчик обнулен."
227
 
228
- #: counter-options.php:799
229
  #@ default
230
  msgid "Dashboard"
231
  msgstr "Консоль"
232
 
233
- #: counter-options.php:835
234
- #: counter-options.php:839
235
  #@ cpd
236
  msgid "How many posts do you want to see on dashboard page?"
237
  msgstr "Сколько записей вы хотите видеть на странице консоли?"
238
 
239
- #: counter-options.php:838
240
  #@ cpd
241
  msgid "Latest Counts - Posts"
242
  msgstr "Последние счетчики - Записи"
243
 
244
- #: counter-options.php:842
245
  #@ cpd
246
  msgid "Latest Counts - Days"
247
  msgstr "Последние счетчики - Дни"
248
 
249
- #: counter-options.php:843
250
- #: counter-options.php:847
251
- #: counter-options.php:869
252
  #@ cpd
253
  msgid "How many days do you want look back?"
254
  msgstr "Насколько дней назад вы хотите видеть статистику?"
255
 
256
- #: counter-options.php:846
257
  #@ cpd
258
  msgid "Chart - Days"
259
  msgstr "Таблица - Дни"
260
 
261
- #: counter-options.php:850
262
  #@ cpd
263
  msgid "Chart - Height"
264
  msgstr "Таблица - Высота"
265
 
266
- #: counter-options.php:851
267
  #@ cpd
268
  msgid "Height of the biggest bar"
269
  msgstr "Высота самого большого столбика"
270
 
271
- #: counter-options.php:883
272
  #@ cpd
273
  msgid "Show in lists"
274
  msgstr "Показать в списках"
275
 
276
- #: counter-options.php:884
277
  #@ cpd
278
  msgid "Show \"Reads per Post\" in a new column in post management views."
279
  msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
280
 
281
- #: counter-options.php:686
282
- #: counter-options.php:696
283
  #@ cpd
284
  msgid "Reset the counter"
285
  msgstr "Обнулить счетчик"
286
 
287
- #: counter-options.php:689
288
  #@ cpd
289
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
  msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
291
 
292
- #: counter.php:756
293
  #, php-format
294
  #@ cpd
295
  msgid "The %s most visited posts in last %s days:"
296
  msgstr "Самое %s посещаемые записи за последние %s дней:"
297
 
298
- #: counter-core.php:652
299
- #: counter-options.php:401
300
- #: counter-options.php:740
301
  #@ default
302
  msgid "Settings"
303
  msgstr "Настройки"
304
 
305
- #: counter.php:327
306
  #@ cpd
307
  msgid "Reads per day"
308
  msgstr "Прочтений в день"
309
 
310
- #: counter-core.php:1464
311
- #: counter-options.php:789
312
- #: counter.php:222
313
- #: counter.php:974
314
  #@ cpd
315
  msgid "Reads"
316
  msgstr "Прочтений"
317
 
318
- #: counter.php:1355
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "Эта запись"
@@ -337,188 +335,194 @@ msgstr "обновить следующий"
337
  msgid "Mass Bots cleaned. %s counts deleted."
338
  msgstr "Таблица ботов очищена. %s записей удалено"
339
 
340
- #: counter-options.php:759
341
  #@ cpd
342
  msgid "until User Level"
343
  msgstr "до уровня пользователя"
344
 
345
- #: counter-options.php:778
346
  #@ cpd
347
  msgid "Anonymous IP"
348
  msgstr "Анонимный IP"
349
 
350
- #: counter-options.php:855
351
  #@ cpd
352
  msgid "Countries"
353
  msgstr "Страны"
354
 
355
- #: counter-options.php:856
356
  #@ cpd
357
  msgid "How many countries do you want to see on dashboard page?"
358
  msgstr "Сколько стран вы хотите видеть в списке?"
359
 
360
- #: counter-options.php:891
361
  #@ cpd
362
  msgid "Start Values"
363
  msgstr "Начальные данные"
364
 
365
- #: counter-options.php:895
366
  #@ cpd
367
  msgid "Here you can change the date of first count and add a start count."
368
  msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
369
 
370
- #: counter-options.php:899
371
  #@ cpd
372
  msgid "Start date"
373
  msgstr "Дата начала"
374
 
375
- #: counter-options.php:900
376
  #@ cpd
377
  msgid "Your old Counter starts at?"
378
  msgstr "Ваш старый Счетчик начинался с"
379
 
380
- #: counter-options.php:903
381
- #: counter-options.php:907
382
  #@ cpd
383
  msgid "Start count"
384
  msgstr "Начало отсчета"
385
 
386
- #: counter-options.php:904
387
  #@ cpd
388
  msgid "Add this value to \"Total visitors\"."
389
  msgstr "Добавить значение к \"Всего посетителей\"."
390
 
391
- #: counter-options.php:636
392
  #@ cpd
393
  msgid "GeoIP - Countries"
394
  msgstr "GeoIP - Страны"
395
 
396
- #: counter-options.php:645
397
  #@ cpd
398
  msgid "Update old counter data"
399
  msgstr "Обновить данные старого счетчика"
400
 
401
- #: counter-options.php:657
402
  #@ cpd
403
  msgid "Update GeoIP database"
404
  msgstr "Обновить базу данных GeoIP"
405
 
406
- #: counter-options.php:652
407
  #@ cpd
408
  msgid "Download a new version of GeoIP.dat file."
409
  msgstr "Скачать новую версию файла GeoIP.dat."
410
 
411
- #: counter-options.php:662
412
  #@ cpd
413
  msgid "More informations about GeoIP"
414
  msgstr "Больше информации про GeoIP"
415
 
416
- #: counter-options.php:417
417
  #: massbots.php:46
418
  #@ cpd
419
  msgid "Mass Bots"
420
  msgstr "Вероятные боты"
421
 
422
- #: counter-options.php:421
423
  #, php-format
424
  #@ cpd
425
  msgid "Show all IPs with more than %s page views per day"
426
  msgstr "Показать все IP с более чем %s просмотров в сутки"
427
 
428
- #: counter-options.php:422
 
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "показать"
434
 
435
- #: counter-options.php:430
 
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
- #: counter-options.php:431
 
441
  #: notes.php:88
442
  #@ cpd
443
  #@ default
444
  msgid "Date"
445
  msgstr "Дата"
446
 
447
- #: counter-options.php:432
 
448
  #@ cpd
449
  msgid "Client"
450
  msgstr "Клиент"
451
 
452
- #: counter-options.php:433
 
453
  #@ cpd
454
  msgid "Views"
455
  msgstr "Просмотров"
456
 
457
- #: counter-options.php:448
458
- #: counter-options.php:464
 
459
  #, php-format
460
  #@ cpd
461
  msgid "Delete these %s counts"
462
  msgstr "Удалить эти %s счетчиков"
463
 
464
- #: counter-options.php:727
465
  #@ cpd
466
  msgid "Support"
467
  msgstr "Поддержка"
468
 
469
- #: counter-core.php:753
470
  #, php-format
471
  #@ cpd
472
  msgid "Time for Count per Day: <code>%s</code>."
473
  msgstr "Время для Count per Day: <code>%s</code>"
474
 
475
- #: counter-core.php:754
476
  #@ cpd
477
  msgid "Bug? Problem? Question? Hint? Praise?"
478
  msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
479
 
480
- #: counter-core.php:755
481
  #, php-format
482
  #@ cpd
483
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
  msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
485
 
486
- #: counter.php:218
487
- #: counter.php:1356
488
  #@ cpd
489
  msgid "Total reads"
490
  msgstr "Всего прочтений"
491
 
492
- #: counter.php:219
493
- #: counter.php:1357
494
  #@ cpd
495
  msgid "Reads today"
496
  msgstr "Прочтений сегодня"
497
 
498
- #: counter.php:220
499
- #: counter.php:1358
500
  #@ cpd
501
  msgid "Reads yesterday"
502
  msgstr "Прочтений вчера"
503
 
504
- #: counter.php:875
505
  #: notes.php:55
506
  #: notes.php:89
507
  #@ cpd
508
  msgid "Notes"
509
  msgstr "Заметки"
510
 
511
- #: counter.php:873
512
  #@ default
513
  msgid "Show"
514
  msgstr "Показать"
515
 
516
- #: counter.php:913
517
  #@ cpd
518
  msgid "Other"
519
  msgstr "Другие"
520
 
521
- #: counter.php:1085
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Редактировать запись"
@@ -529,29 +533,29 @@ msgstr "Редактировать запись"
529
  msgid "Front page displays"
530
  msgstr "Отображений главной страницы"
531
 
532
- #: counter-core.php:799
533
- #: counter-options.php:860
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "Браузеры"
537
 
538
- #: counter-core.php:793
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "Недавние подсчеты"
542
 
543
- #: counter-core.php:796
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "Плагин"
547
 
548
- #: counter-core.php:804
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "Прочтений по странам"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Карта"
@@ -596,32 +600,32 @@ msgstr "удалить"
596
  msgid "edit"
597
  msgstr "редактировать"
598
 
599
- #: counter-options.php:782
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "Кэш"
603
 
604
- #: counter-options.php:783
605
  #@ cpd
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
608
 
609
- #: counter-options.php:861
610
  #@ cpd
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "Подстрока агента пользователя разделенный запятой"
613
 
614
- #: counter-options.php:945
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "Режим отладки"
618
 
619
- #: counter-options.php:947
620
  #@ cpd
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "Добавить отладочную информацию внизу каждой страницы."
623
 
624
- #: counter-core.php:805
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Посетителей по странам"
@@ -641,12 +645,12 @@ msgstr "Конец"
641
  msgid "PostID"
642
  msgstr "ID сообщения"
643
 
644
- #: counter-options.php:908
645
  #@ cpd
646
  msgid "Add this value to \"Total reads\"."
647
  msgstr "Добавить значение к \"Всего прочтений\"."
648
 
649
- #: counter-options.php:639
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 адреса заново. Может занять некоторое время!"
@@ -656,467 +660,560 @@ msgstr "Вы можете получить данные стран для все
656
  msgid "no data found"
657
  msgstr "ничего не найдено"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Счетчик"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Клиенты и ссылающиеся сайты"
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Локальные URL"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Показывать локальные переходы тоже."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Записи"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Страницы"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Прочтений на прошлой неделе"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Категория"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Тег"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "Лицензия"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Прочтений за месяц"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Ссылающийся сайт"
725
 
726
- #: counter-options.php:864
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "Ссылающиеся сайты - Вхождения"
730
 
731
- #: counter-options.php:865
732
  #@ cpd
733
  msgid "How many referrers do you want to see on dashboard page?"
734
  msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
735
 
736
- #: counter-options.php:868
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "Ссылающиеся сайты - Дни"
740
 
741
- #: counter.php:944
742
  #, php-format
743
  #@ cpd
744
  msgid "The %s referrers in last %s days:"
745
  msgstr "%s ссылающихся сайтов за последние %s дней:"
746
 
747
- #: counter-core.php:789
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "Посетителей на сайте"
751
 
752
- #: counter-core.php:259
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:1000
759
  #@ cpd
760
  msgid "Backup failed! Cannot open file"
761
  msgstr "Обновление не удалось! Не могу открыть файл"
762
 
763
- #: counter-core.php:1027
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:1118
770
- #: counter-core.php:1126
771
  #, php-format
772
  #@ cpd
773
  msgid "Backup of counter table saved in %s."
774
  msgstr "Резервная копия таблицы счетчика сохранена в %s"
775
 
776
- #: counter-core.php:1120
777
- #: counter-core.php:1128
778
  #, php-format
779
  #@ cpd
780
  msgid "Backup of counter options and collection saved in %s."
781
  msgstr "Резервная копия настроек счетчика и коллекции сохранены в %s"
782
 
783
- #: counter-options.php:169
784
  #@ cpd
785
  msgid "Collection in progress..."
786
  msgstr "Происходит сбор данных..."
787
 
788
- #: counter-options.php:263
789
  #@ cpd
790
  msgid "Get Visitors per Post..."
791
  msgstr "Получить посетителей по записям..."
792
 
793
- #: counter-options.php:284
794
- #@ cpd
795
- msgid "Delete old data..."
796
- msgstr "Удалить старые данные..."
797
-
798
- #: counter-options.php:308
799
  #, php-format
800
  #@ cpd
801
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
802
  msgstr "Записи счетчика до %s собраны и оптимизирована таблица счетчика %s (размер перед = %s &gt; размер после = %s)."
803
 
804
- #: counter-options.php:317
805
  #@ cpd
806
  msgid "Installation of \"Count per Day\" checked"
807
  msgstr "Установка \"Count per Day\" проверена"
808
 
809
- #: counter-options.php:400
810
- #: counter-options.php:739
811
  #@ default
812
  msgid "Tools"
813
  msgstr "Инструменты"
814
 
815
- #: counter-options.php:791
816
  #@ cpd
817
  msgid "Save URL only, no query string."
818
  msgstr "Сохранять только URL без строки запроса."
819
 
820
- #: counter-options.php:815
821
  #@ cpd
822
  msgid "Who can see it"
823
  msgstr "Кто может это видеть"
824
 
825
- #: counter-options.php:824
826
  #@ cpd
827
  msgid "custom"
828
  msgstr "пользовательский"
829
 
830
- #: counter-options.php:826
831
  #@ cpd
832
  msgid "and higher are allowed to see the statistics page."
833
  msgstr "и выше могут видеть статистику страницы."
834
 
835
- #: counter-options.php:828
836
  #, php-format
837
  #@ cpd
838
  msgid "Set the %s capability %s a user need:"
839
  msgstr "Установить %s права % необходимые пользователю:"
840
 
841
- #: counter-options.php:915
842
  #@ cpd
843
  msgid "Stylesheet"
844
  msgstr "Стили"
845
 
846
- #: counter-options.php:918
847
  #@ cpd
848
  msgid "NO Stylesheet in Frontend"
849
  msgstr "НЕ использовать стили в интерфейсе"
850
 
851
- #: counter-options.php:919
852
  #@ cpd
853
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
854
  msgstr "Не загружать файл стилей \"counter.css\" для интерфейса."
855
 
856
- #: counter-options.php:476
857
- #: counter-options.php:926
858
  #@ cpd
859
  msgid "Backup"
860
  msgstr "Резервирование"
861
 
862
- #: counter-options.php:929
863
  #@ cpd
864
  msgid "Entries per pass"
865
  msgstr "Записей за один проход"
866
 
867
- #: counter-options.php:932
868
  #@ cpd
869
  msgid "How many entries should be saved per pass? Default: 10000"
870
  msgstr "Сколько записей сохранять за один проход? По умолчанию: 10000"
871
 
872
- #: counter-options.php:937
873
  #@ cpd
874
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
875
  msgstr "Если ограничение памяти вашего PHP меньше 50 MB и вы получаете белую страницу или сообщения об ошибках, то попробуйте меньшее значение."
876
 
877
- #: counter-options.php:480
878
  #, php-format
879
  #@ cpd
880
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
881
  msgstr "Создать резервную копию таблицы счетчика %s в вашей папке wp-content (если она не только для чтения)"
882
 
883
- #: counter-options.php:487
884
  #@ cpd
885
  msgid "Backup the database"
886
  msgstr "Резервирование базы данных"
887
 
888
- #: counter-options.php:591
889
- #: counter-options.php:623
890
  #@ cpd
891
  msgid "Collect old data"
892
  msgstr "Собрать старые данные"
893
 
894
- #: counter-options.php:577
895
- #: counter-options.php:596
896
  #, php-format
897
  #@ cpd
898
  msgid "Current size of your counter table %s is %s."
899
  msgstr "Текущий размер вашей таблицы счетчика %s : %s."
900
 
901
- #: counter-options.php:598
902
  #@ cpd
903
  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."
904
  msgstr "Вы можете собрать старые данные и очистить таблицу счетчика.<br/>Прочтения и посетители будут сохранены за каждый месяц, по стране и по записям.<br/>Клиенты и ссылающиеся сайты будут удалены."
905
 
906
- #: counter-options.php:603
907
  #, php-format
908
  #@ cpd
909
  msgid "Currently your collection contains data until %s."
910
  msgstr "Сейчас ваша коллекция содержит данные до %s."
911
 
912
- #: counter-options.php:607
913
  #@ cpd
914
  msgid "Normally new data will be added to the collection."
915
  msgstr "Если все пройдет успешно, то новые данные будут добавлены в коллекцию."
916
 
917
- #: counter-options.php:613
918
  #@ cpd
919
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
920
  msgstr "Удалить старую коллекцию и создать новую, которая содержит только данные, которые сейчас в таблице счетчика."
921
 
922
- #: counter-options.php:614
923
  #, php-format
924
  #@ cpd
925
  msgid "All collected data until %s will deleted."
926
  msgstr "Все данные до %s будут удалены."
927
 
928
- #: counter-options.php:619
929
  #, php-format
930
  #@ cpd
931
  msgid "Keep entries of last %s full months + current month in counter table."
932
  msgstr "Сохранить записи за последние %s полные месяца + текущий месяц в таблице счетчика."
933
 
934
- #: counter-options.php:670
935
  #@ cpd
936
  msgid "ReActivation"
937
  msgstr "Переактивация"
938
 
939
- #: counter-options.php:673
940
  #@ cpd
941
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
942
  msgstr "Здесь вы можете запустить функции установки вручную.<br/>Точно также, как и деактивация и активация плагина."
943
 
944
- #: counter-options.php:678
945
  #@ cpd
946
  msgid "ReActivate the plugin"
947
  msgstr "Переактивировать плагин"
948
 
949
- #: counter.php:228
950
- #: counter.php:998
951
  #@ cpd
952
  msgid "Visitors"
953
  msgstr "Посетителей"
954
 
955
- #: counter.php:231
956
- #: counter.php:232
957
  #@ cpd
958
  msgid "Most visited day"
959
  msgstr "Самый посещаемый день"
960
 
961
- #: counter.php:1380
962
  #@ default
963
  msgid "Title"
964
  msgstr "Заголовок"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "перетащите для сортировки"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr "Строки поиска"
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr "Вы можете скачать резервные файлы здесь и сейчас."
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr "Ошибка при чтении резервного файла."
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr "Резервная копия была добавлена в таблицу счетчика %s."
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr "Таблица счетчика %s была восстановлена из резервной копии."
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr "Опции восстановлены из резервной копии."
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr "Старые строки поиска были удалены"
1009
 
1010
- #: counter-options.php:483
1011
  #@ cpd
1012
  msgid "Download only"
1013
  msgstr "Только скачать"
1014
 
1015
- #: counter-options.php:515
1016
  #@ cpd
1017
  msgid "Settings and collections"
1018
  msgstr "Настройки и наборы данных"
1019
 
1020
- #: counter-options.php:520
1021
  #, php-format
1022
  #@ cpd
1023
  msgid "Counter table %s"
1024
  msgstr "Таблица счетчика %s"
1025
 
1026
- #: counter-options.php:527
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Add data from the backup file %s to existing counter table?"
1030
  msgstr "Добавить данные из резервного файла %s к существующей таблице счетчика?"
1031
 
1032
- #: counter-options.php:527
1033
  #@ cpd
1034
  msgid "Add"
1035
  msgstr "Добавить"
1036
 
1037
- #: counter-options.php:531
1038
  #, php-format
1039
  #@ cpd
1040
  msgid "Restore data from the backup file %s ?"
1041
  msgstr "Восстановить данные из резервного файла %s ?"
1042
 
1043
- #: counter-options.php:531
1044
  #@ default
1045
  msgid "Restore"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:533
1049
  #@ default
1050
  msgid "Delete"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:534
1054
  #, php-format
1055
  #@ cpd
1056
  msgid "Delete the backup file %s ?"
1057
  msgstr "Удалить резервный файл %s ?"
1058
 
1059
- #: counter-options.php:540
1060
  #@ cpd
1061
  msgid "add backup to current counter table"
1062
  msgstr "добавить резервную копию к существующей таблице счетчика"
1063
 
1064
- #: counter-options.php:541
1065
  #@ cpd
1066
  msgid "replace current counter table with with backup"
1067
  msgstr "заменить текущую таблицу счетчика резервной копией"
1068
 
1069
- #: counter-options.php:542
1070
  #@ cpd
1071
  msgid "delete backup file"
1072
  msgstr "удалить резервный файл"
1073
 
1074
- #: counter-options.php:567
1075
  #, php-format
1076
  #@ cpd
1077
  msgid "Delete search strings older than %s days."
1078
  msgstr "Удалить строки поиска старше %s дней."
1079
 
1080
- #: counter-options.php:571
1081
  #@ cpd
1082
  msgid "Delete search strings"
1083
  msgstr "Удалить строки поиска."
1084
 
1085
- #: counter.php:1142
1086
  #, php-format
1087
  #@ cpd
1088
  msgid "The %s most searched strings:"
1089
  msgstr "Самые часто запрашиваемые строки поиска %s :"
1090
 
1091
- #: counter.php:1151
1092
  #, php-format
1093
  #@ cpd
1094
  msgid "The search strings of the last %s days:"
1095
  msgstr "Строки поиска за последние %s дней:"
1096
 
1097
- #: counter-options.php:347
1098
  #@ cpd
1099
  msgid "Clients and referers deleted"
1100
  msgstr ""
1101
 
1102
- #: counter-options.php:578
1103
  #, php-format
1104
  #@ cpd
1105
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1106
  msgstr ""
1107
 
1108
- #: counter-options.php:582
1109
  #@ cpd
1110
  msgid "Delete clients and referers"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1100
1114
  #@ default
1115
  msgid "Front page"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:25+0000\n"
7
  "Last-Translator: Ilya Pshenichny\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Настройки сохранены"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База данных очищена. %s строчек удалено."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Таблица %s удалена"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Настройки удалены"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Деинсталяция"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Нажмите сюда"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Время онлайн"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Вошедших пользователей"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "также считать"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Автоматический счетчик"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Игнорировать ботов"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Сохранить настройки"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Очистить базу данных"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ВНИМАНИЕ"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Да"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статистика"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Всего посетителей"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Посетителей сейчас на сайте"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Посетителей сегодня"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Посетителей вчера"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Посетителей на прошлой неделе"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Счетчик начинается с"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Посетителей в день"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Посетителей в месяц"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Посетителей записи"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Счетчик обнулен."
226
 
227
+ #: counter-options.php:889
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Консоль"
231
 
232
+ #: counter-options.php:925
233
+ #: counter-options.php:929
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Сколько записей вы хотите видеть на странице консоли?"
237
 
238
+ #: counter-options.php:928
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Последние счетчики - Записи"
242
 
243
+ #: counter-options.php:932
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Последние счетчики - Дни"
247
 
248
+ #: counter-options.php:933
249
+ #: counter-options.php:937
250
+ #: counter-options.php:959
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Насколько дней назад вы хотите видеть статистику?"
254
 
255
+ #: counter-options.php:936
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Таблица - Дни"
259
 
260
+ #: counter-options.php:940
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Таблица - Высота"
264
 
265
+ #: counter-options.php:941
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Высота самого большого столбика"
269
 
270
+ #: counter-options.php:973
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Показать в списках"
274
 
275
+ #: counter-options.php:974
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
279
 
280
+ #: counter-options.php:770
281
+ #: counter-options.php:780
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Обнулить счетчик"
285
 
286
+ #: counter-options.php:773
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:771
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:641
298
+ #: counter-options.php:409
 
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Настройки"
302
 
303
+ #: counter.php:342
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Прочтений в день"
307
 
308
+ #: counter-core.php:1526
309
+ #: counter-options.php:869
310
+ #: counter.php:235
311
+ #: counter.php:1019
312
  #@ cpd
313
  msgid "Reads"
314
  msgstr "Прочтений"
315
 
316
+ #: counter.php:1406
317
  #@ cpd
318
  msgid "This post"
319
  msgstr "Эта запись"
335
  msgid "Mass Bots cleaned. %s counts deleted."
336
  msgstr "Таблица ботов очищена. %s записей удалено"
337
 
338
+ #: counter-options.php:839
339
  #@ cpd
340
  msgid "until User Level"
341
  msgstr "до уровня пользователя"
342
 
343
+ #: counter-options.php:858
344
  #@ cpd
345
  msgid "Anonymous IP"
346
  msgstr "Анонимный IP"
347
 
348
+ #: counter-options.php:945
349
  #@ cpd
350
  msgid "Countries"
351
  msgstr "Страны"
352
 
353
+ #: counter-options.php:946
354
  #@ cpd
355
  msgid "How many countries do you want to see on dashboard page?"
356
  msgstr "Сколько стран вы хотите видеть в списке?"
357
 
358
+ #: counter-options.php:981
359
  #@ cpd
360
  msgid "Start Values"
361
  msgstr "Начальные данные"
362
 
363
+ #: counter-options.php:985
364
  #@ cpd
365
  msgid "Here you can change the date of first count and add a start count."
366
  msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
367
 
368
+ #: counter-options.php:989
369
  #@ cpd
370
  msgid "Start date"
371
  msgstr "Дата начала"
372
 
373
+ #: counter-options.php:990
374
  #@ cpd
375
  msgid "Your old Counter starts at?"
376
  msgstr "Ваш старый Счетчик начинался с"
377
 
378
+ #: counter-options.php:993
379
+ #: counter-options.php:997
380
  #@ cpd
381
  msgid "Start count"
382
  msgstr "Начало отсчета"
383
 
384
+ #: counter-options.php:994
385
  #@ cpd
386
  msgid "Add this value to \"Total visitors\"."
387
  msgstr "Добавить значение к \"Всего посетителей\"."
388
 
389
+ #: counter-options.php:720
390
  #@ cpd
391
  msgid "GeoIP - Countries"
392
  msgstr "GeoIP - Страны"
393
 
394
+ #: counter-options.php:729
395
  #@ cpd
396
  msgid "Update old counter data"
397
  msgstr "Обновить данные старого счетчика"
398
 
399
+ #: counter-options.php:741
400
  #@ cpd
401
  msgid "Update GeoIP database"
402
  msgstr "Обновить базу данных GeoIP"
403
 
404
+ #: counter-options.php:736
405
  #@ cpd
406
  msgid "Download a new version of GeoIP.dat file."
407
  msgstr "Скачать новую версию файла GeoIP.dat."
408
 
409
+ #: counter-options.php:746
410
  #@ cpd
411
  msgid "More informations about GeoIP"
412
  msgstr "Больше информации про GeoIP"
413
 
414
+ #: counter-options.php:429
415
  #: massbots.php:46
416
  #@ cpd
417
  msgid "Mass Bots"
418
  msgstr "Вероятные боты"
419
 
420
+ #: counter-options.php:433
421
  #, php-format
422
  #@ cpd
423
  msgid "Show all IPs with more than %s page views per day"
424
  msgstr "Показать все IP с более чем %s просмотров в сутки"
425
 
426
+ #: counter-options.php:434
427
+ #: counter-options.php:498
428
  #: notes.php:84
429
  #: userperspan.php:56
430
  #@ cpd
431
  msgid "show"
432
  msgstr "показать"
433
 
434
+ #: counter-options.php:442
435
+ #: counter-options.php:506
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
+ #: counter-options.php:443
441
+ #: counter-options.php:507
442
  #: notes.php:88
443
  #@ cpd
444
  #@ default
445
  msgid "Date"
446
  msgstr "Дата"
447
 
448
+ #: counter-options.php:444
449
+ #: counter-options.php:508
450
  #@ cpd
451
  msgid "Client"
452
  msgstr "Клиент"
453
 
454
+ #: counter-options.php:445
455
+ #: counter-options.php:509
456
  #@ cpd
457
  msgid "Views"
458
  msgstr "Просмотров"
459
 
460
+ #: counter-options.php:460
461
+ #: counter-options.php:476
462
+ #: counter-options.php:523
463
  #, php-format
464
  #@ cpd
465
  msgid "Delete these %s counts"
466
  msgstr "Удалить эти %s счетчиков"
467
 
468
+ #: counter-options.php:811
469
  #@ cpd
470
  msgid "Support"
471
  msgstr "Поддержка"
472
 
473
+ #: counter-core.php:742
474
  #, php-format
475
  #@ cpd
476
  msgid "Time for Count per Day: <code>%s</code>."
477
  msgstr "Время для Count per Day: <code>%s</code>"
478
 
479
+ #: counter-core.php:743
480
  #@ cpd
481
  msgid "Bug? Problem? Question? Hint? Praise?"
482
  msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
483
 
484
+ #: counter-core.php:744
485
  #, php-format
486
  #@ cpd
487
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
488
  msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
489
 
490
+ #: counter.php:231
491
+ #: counter.php:1407
492
  #@ cpd
493
  msgid "Total reads"
494
  msgstr "Всего прочтений"
495
 
496
+ #: counter.php:232
497
+ #: counter.php:1408
498
  #@ cpd
499
  msgid "Reads today"
500
  msgstr "Прочтений сегодня"
501
 
502
+ #: counter.php:233
503
+ #: counter.php:1409
504
  #@ cpd
505
  msgid "Reads yesterday"
506
  msgstr "Прочтений вчера"
507
 
508
+ #: counter.php:890
509
  #: notes.php:55
510
  #: notes.php:89
511
  #@ cpd
512
  msgid "Notes"
513
  msgstr "Заметки"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Показать"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Другие"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Редактировать запись"
533
  msgid "Front page displays"
534
  msgstr "Отображений главной страницы"
535
 
536
+ #: counter-core.php:788
537
+ #: counter-options.php:950
538
  #@ cpd
539
  msgid "Browsers"
540
  msgstr "Браузеры"
541
 
542
+ #: counter-core.php:782
543
  #@ cpd
544
  msgid "Latest Counts"
545
  msgstr "Недавние подсчеты"
546
 
547
+ #: counter-core.php:785
548
  #@ default
549
  msgid "Plugin"
550
  msgstr "Плагин"
551
 
552
+ #: counter-core.php:793
553
  #@ cpd
554
  msgid "Reads per Country"
555
  msgstr "Прочтений по странам"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "Карта"
600
  msgid "edit"
601
  msgstr "редактировать"
602
 
603
+ #: counter-options.php:862
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Кэш"
607
 
608
+ #: counter-options.php:863
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
612
 
613
+ #: counter-options.php:951
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Подстрока агента пользователя разделенный запятой"
617
 
618
+ #: counter-options.php:1035
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Режим отладки"
622
 
623
+ #: counter-options.php:1037
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Добавить отладочную информацию внизу каждой страницы."
627
 
628
+ #: counter-core.php:794
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Посетителей по странам"
645
  msgid "PostID"
646
  msgstr "ID сообщения"
647
 
648
+ #: counter-options.php:998
649
  #@ cpd
650
  msgid "Add this value to \"Total reads\"."
651
  msgstr "Добавить значение к \"Всего прочтений\"."
652
 
653
+ #: counter-options.php:723
654
  #@ cpd
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 "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
660
  msgid "no data found"
661
  msgstr "ничего не найдено"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Счетчик"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Клиенты и ссылающиеся сайты"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Локальные URL"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Показывать локальные переходы тоже."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Записи"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Страницы"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Прочтений на прошлой неделе"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Категория"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Тег"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "Лицензия"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Прочтений за месяц"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Ссылающийся сайт"
729
 
730
+ #: counter-options.php:954
731
  #@ cpd
732
  msgid "Referrers - Entries"
733
  msgstr "Ссылающиеся сайты - Вхождения"
734
 
735
+ #: counter-options.php:955
736
  #@ cpd
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
739
 
740
+ #: counter-options.php:958
741
  #@ cpd
742
  msgid "Referrers - Days"
743
  msgstr "Ссылающиеся сайты - Дни"
744
 
745
+ #: counter.php:989
746
  #, php-format
747
  #@ cpd
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "%s ссылающихся сайтов за последние %s дней:"
750
 
751
+ #: counter-core.php:778
752
  #@ cpd
753
  msgid "Visitors online"
754
  msgstr "Посетителей на сайте"
755
 
756
+ #: counter-core.php:232
757
  #, php-format
758
  #@ cpd
759
  msgid "\"Count per Day\" updated to version %s."
760
  msgstr "\"Count per Day\" обновлен до версии %s"
761
 
762
+ #: counter-core.php:1062
763
  #@ cpd
764
  msgid "Backup failed! Cannot open file"
765
  msgstr "Обновление не удалось! Не могу открыть файл"
766
 
767
+ #: counter-core.php:1180
768
+ #: counter-core.php:1188
 
 
 
 
 
 
769
  #, php-format
770
  #@ cpd
771
  msgid "Backup of counter table saved in %s."
772
  msgstr "Резервная копия таблицы счетчика сохранена в %s"
773
 
774
+ #: counter-core.php:1182
775
+ #: counter-core.php:1190
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter options and collection saved in %s."
779
  msgstr "Резервная копия настроек счетчика и коллекции сохранены в %s"
780
 
781
+ #: counter-options.php:174
782
  #@ cpd
783
  msgid "Collection in progress..."
784
  msgstr "Происходит сбор данных..."
785
 
786
+ #: counter-options.php:268
787
  #@ cpd
788
  msgid "Get Visitors per Post..."
789
  msgstr "Получить посетителей по записям..."
790
 
791
+ #: counter-options.php:313
 
 
 
 
 
792
  #, php-format
793
  #@ cpd
794
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
795
  msgstr "Записи счетчика до %s собраны и оптимизирована таблица счетчика %s (размер перед = %s &gt; размер после = %s)."
796
 
797
+ #: counter-options.php:322
798
  #@ cpd
799
  msgid "Installation of \"Count per Day\" checked"
800
  msgstr "Установка \"Count per Day\" проверена"
801
 
802
+ #: counter-options.php:408
 
803
  #@ default
804
  msgid "Tools"
805
  msgstr "Инструменты"
806
 
807
+ #: counter-options.php:871
808
  #@ cpd
809
  msgid "Save URL only, no query string."
810
  msgstr "Сохранять только URL без строки запроса."
811
 
812
+ #: counter-options.php:905
813
  #@ cpd
814
  msgid "Who can see it"
815
  msgstr "Кто может это видеть"
816
 
817
+ #: counter-options.php:914
818
  #@ cpd
819
  msgid "custom"
820
  msgstr "пользовательский"
821
 
822
+ #: counter-options.php:916
823
  #@ cpd
824
  msgid "and higher are allowed to see the statistics page."
825
  msgstr "и выше могут видеть статистику страницы."
826
 
827
+ #: counter-options.php:918
828
  #, php-format
829
  #@ cpd
830
  msgid "Set the %s capability %s a user need:"
831
  msgstr "Установить %s права % необходимые пользователю:"
832
 
833
+ #: counter-options.php:1005
834
  #@ cpd
835
  msgid "Stylesheet"
836
  msgstr "Стили"
837
 
838
+ #: counter-options.php:1008
839
  #@ cpd
840
  msgid "NO Stylesheet in Frontend"
841
  msgstr "НЕ использовать стили в интерфейсе"
842
 
843
+ #: counter-options.php:1009
844
  #@ cpd
845
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
846
  msgstr "Не загружать файл стилей \"counter.css\" для интерфейса."
847
 
848
+ #: counter-options.php:560
849
+ #: counter-options.php:1016
850
  #@ cpd
851
  msgid "Backup"
852
  msgstr "Резервирование"
853
 
854
+ #: counter-options.php:1019
855
  #@ cpd
856
  msgid "Entries per pass"
857
  msgstr "Записей за один проход"
858
 
859
+ #: counter-options.php:1022
860
  #@ cpd
861
  msgid "How many entries should be saved per pass? Default: 10000"
862
  msgstr "Сколько записей сохранять за один проход? По умолчанию: 10000"
863
 
864
+ #: counter-options.php:1027
865
  #@ cpd
866
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
867
  msgstr "Если ограничение памяти вашего PHP меньше 50 MB и вы получаете белую страницу или сообщения об ошибках, то попробуйте меньшее значение."
868
 
869
+ #: counter-options.php:564
870
  #, php-format
871
  #@ cpd
872
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
873
  msgstr "Создать резервную копию таблицы счетчика %s в вашей папке wp-content (если она не только для чтения)"
874
 
875
+ #: counter-options.php:571
876
  #@ cpd
877
  msgid "Backup the database"
878
  msgstr "Резервирование базы данных"
879
 
880
+ #: counter-options.php:675
881
+ #: counter-options.php:707
882
  #@ cpd
883
  msgid "Collect old data"
884
  msgstr "Собрать старые данные"
885
 
886
+ #: counter-options.php:661
887
+ #: counter-options.php:680
888
  #, php-format
889
  #@ cpd
890
  msgid "Current size of your counter table %s is %s."
891
  msgstr "Текущий размер вашей таблицы счетчика %s : %s."
892
 
893
+ #: counter-options.php:682
894
  #@ cpd
895
  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."
896
  msgstr "Вы можете собрать старые данные и очистить таблицу счетчика.<br/>Прочтения и посетители будут сохранены за каждый месяц, по стране и по записям.<br/>Клиенты и ссылающиеся сайты будут удалены."
897
 
898
+ #: counter-options.php:687
899
  #, php-format
900
  #@ cpd
901
  msgid "Currently your collection contains data until %s."
902
  msgstr "Сейчас ваша коллекция содержит данные до %s."
903
 
904
+ #: counter-options.php:691
905
  #@ cpd
906
  msgid "Normally new data will be added to the collection."
907
  msgstr "Если все пройдет успешно, то новые данные будут добавлены в коллекцию."
908
 
909
+ #: counter-options.php:697
910
  #@ cpd
911
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
912
  msgstr "Удалить старую коллекцию и создать новую, которая содержит только данные, которые сейчас в таблице счетчика."
913
 
914
+ #: counter-options.php:698
915
  #, php-format
916
  #@ cpd
917
  msgid "All collected data until %s will deleted."
918
  msgstr "Все данные до %s будут удалены."
919
 
920
+ #: counter-options.php:703
921
  #, php-format
922
  #@ cpd
923
  msgid "Keep entries of last %s full months + current month in counter table."
924
  msgstr "Сохранить записи за последние %s полные месяца + текущий месяц в таблице счетчика."
925
 
926
+ #: counter-options.php:754
927
  #@ cpd
928
  msgid "ReActivation"
929
  msgstr "Переактивация"
930
 
931
+ #: counter-options.php:757
932
  #@ cpd
933
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
934
  msgstr "Здесь вы можете запустить функции установки вручную.<br/>Точно также, как и деактивация и активация плагина."
935
 
936
+ #: counter-options.php:762
937
  #@ cpd
938
  msgid "ReActivate the plugin"
939
  msgstr "Переактивировать плагин"
940
 
941
+ #: counter.php:241
942
+ #: counter.php:1043
943
  #@ cpd
944
  msgid "Visitors"
945
  msgstr "Посетителей"
946
 
947
+ #: counter.php:244
948
+ #: counter.php:245
949
  #@ cpd
950
  msgid "Most visited day"
951
  msgstr "Самый посещаемый день"
952
 
953
+ #: counter.php:1431
954
  #@ default
955
  msgid "Title"
956
  msgstr "Заголовок"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "перетащите для сортировки"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr "Строки поиска"
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr "Вы можете скачать резервные файлы здесь и сейчас."
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr "Ошибка при чтении резервного файла."
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr "Резервная копия была добавлена в таблицу счетчика %s."
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr "Таблица счетчика %s была восстановлена из резервной копии."
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr "Опции восстановлены из резервной копии."
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr "Старые строки поиска были удалены"
1001
 
1002
+ #: counter-options.php:567
1003
  #@ cpd
1004
  msgid "Download only"
1005
  msgstr "Только скачать"
1006
 
1007
+ #: counter-options.php:599
1008
  #@ cpd
1009
  msgid "Settings and collections"
1010
  msgstr "Настройки и наборы данных"
1011
 
1012
+ #: counter-options.php:604
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Counter table %s"
1016
  msgstr "Таблица счетчика %s"
1017
 
1018
+ #: counter-options.php:611
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Add data from the backup file %s to existing counter table?"
1022
  msgstr "Добавить данные из резервного файла %s к существующей таблице счетчика?"
1023
 
1024
+ #: counter-options.php:611
1025
  #@ cpd
1026
  msgid "Add"
1027
  msgstr "Добавить"
1028
 
1029
+ #: counter-options.php:615
1030
  #, php-format
1031
  #@ cpd
1032
  msgid "Restore data from the backup file %s ?"
1033
  msgstr "Восстановить данные из резервного файла %s ?"
1034
 
1035
+ #: counter-options.php:615
1036
  #@ default
1037
  msgid "Restore"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:617
1041
  #@ default
1042
  msgid "Delete"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:618
1046
  #, php-format
1047
  #@ cpd
1048
  msgid "Delete the backup file %s ?"
1049
  msgstr "Удалить резервный файл %s ?"
1050
 
1051
+ #: counter-options.php:624
1052
  #@ cpd
1053
  msgid "add backup to current counter table"
1054
  msgstr "добавить резервную копию к существующей таблице счетчика"
1055
 
1056
+ #: counter-options.php:625
1057
  #@ cpd
1058
  msgid "replace current counter table with with backup"
1059
  msgstr "заменить текущую таблицу счетчика резервной копией"
1060
 
1061
+ #: counter-options.php:626
1062
  #@ cpd
1063
  msgid "delete backup file"
1064
  msgstr "удалить резервный файл"
1065
 
1066
+ #: counter-options.php:651
1067
  #, php-format
1068
  #@ cpd
1069
  msgid "Delete search strings older than %s days."
1070
  msgstr "Удалить строки поиска старше %s дней."
1071
 
1072
+ #: counter-options.php:655
1073
  #@ cpd
1074
  msgid "Delete search strings"
1075
  msgstr "Удалить строки поиска."
1076
 
1077
+ #: counter.php:1193
1078
  #, php-format
1079
  #@ cpd
1080
  msgid "The %s most searched strings:"
1081
  msgstr "Самые часто запрашиваемые строки поиска %s :"
1082
 
1083
+ #: counter.php:1202
1084
  #, php-format
1085
  #@ cpd
1086
  msgid "The search strings of the last %s days:"
1087
  msgstr "Строки поиска за последние %s дней:"
1088
 
1089
+ #: counter-options.php:352
1090
  #@ cpd
1091
  msgid "Clients and referers deleted"
1092
  msgstr ""
1093
 
1094
+ #: counter-options.php:662
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1098
  msgstr ""
1099
 
1100
+ #: counter-options.php:666
1101
  #@ cpd
1102
  msgid "Delete clients and referers"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1145
1106
  #@ default
1107
  msgid "Front page"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-sr_RS.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:45+0000\n"
7
  "Last-Translator: Diana <diana@wpdiscounts.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -25,302 +25,300 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Opcije azurirane "
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Baza podataka ociscena. %s redova izbrisano"
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEINSTALIRANJE broj po danu"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabla %s izbrisana"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opcije izbrisane"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstalirati"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Kliknite ovde"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Da bi zavrsili deinstaliranje i aktivirali \"Brojanje po danu\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Vreme online"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Sekunde online kauntera. Koricseno za \"Posetioci online\" na strani kontrolna tabla "
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Ulogovani korisnici"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Brojanje takodje"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto brojanje"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Broji automatski samostalne postove i stranice, nisu potrebne izmene sablona"
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botovi za ignorisanje"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Azuriraj opcije "
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Ocisti bazu podataka"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  msgstr "Mozete izbrisati tablu brojaca brisanjem e \"spam data\".<br />Ukoliko dodate nove botoce izned starih \"spam data\" se zadrzava u bazi podataka. <br /> Ovde mozete pokrenuti bot filter ponovo i izbrisati posete botova"
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Ukoliko \"Brojac po danu\" bude samo onesposobljen table u bazi podataka ce biti sacuvane "
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Ovde mozete izbrisati table i onesposobiti \"Brojac po danu\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "UPOZORENJE"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ove table (sa svim podacima brojanja) bice izbrisane"
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Ako je \"brojac po danu\" reinstaliran, brojac pocinje od 0. "
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Da"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Sigurni ste da zelite da onesposobiti Brojac po danu i izbrisete sve podatke? "
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistike "
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Ukupno poseta"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Posetioci trenutno online"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Posetioci danas"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Posetioci juce"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Posetioci prosle nedelje"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Projac pocinje"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Posetioca po danu"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Posetioca po mesecu "
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Posetioca po postu "
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Brojac resetovan "
227
 
228
- #: counter-options.php:835
229
- #: counter-options.php:839
230
  #@ cpd
231
  msgid "How many posts do you want to see on dashboard page?"
232
  msgstr "Koliko postova zelite da vidite na kontrolnoj tabli? "
233
 
234
- #: counter-options.php:838
235
  #@ cpd
236
  msgid "Latest Counts - Posts"
237
  msgstr "Najnoviji brojaci - Postovi "
238
 
239
- #: counter-options.php:842
240
  #@ cpd
241
  msgid "Latest Counts - Days"
242
  msgstr "Najnoviji brojaci - Dani"
243
 
244
- #: counter-options.php:843
245
- #: counter-options.php:847
246
- #: counter-options.php:869
247
  #@ cpd
248
  msgid "How many days do you want look back?"
249
  msgstr "Koliko dana unazad zelite da pogledate? "
250
 
251
- #: counter-options.php:883
252
  #@ cpd
253
  msgid "Show in lists"
254
  msgstr "POkazi u listama"
255
 
256
- #: counter-options.php:884
257
  #@ cpd
258
  msgid "Show \"Reads per Post\" in a new column in post management views."
259
  msgstr "Pokazi \"Citanja po Postu\" u novoj koloni u upravljanju pogleda posta"
260
 
261
- #: counter-options.php:686
262
- #: counter-options.php:696
263
  #@ cpd
264
  msgid "Reset the counter"
265
  msgstr "Resetuj brojac"
266
 
267
- #: counter-options.php:689
268
  #@ cpd
269
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
270
  msgstr "Mozete resetovati brojac praznjenjem table. SVE ZA 0!<br /> Napravite rezervnu kopiju ukoliko vam trebaju trenutni podaci "
271
 
272
- #: counter.php:756
273
  #, php-format
274
  #@ cpd
275
  msgid "The %s most visited posts in last %s days:"
276
  msgstr "%s najposeceniji postovi u poslednjih %s dana"
277
 
278
- #: counter-core.php:652
279
- #: counter-options.php:401
280
- #: counter-options.php:740
281
  #@ default
282
  msgid "Settings"
283
  msgstr "Podesavanja"
284
 
285
- #: counter-core.php:1464
286
- #: counter-options.php:789
287
- #: counter.php:222
288
- #: counter.php:974
289
  #@ cpd
290
  msgid "Reads"
291
  msgstr "Citanja"
292
 
293
- #: counter-core.php:793
294
  #@ cpd
295
  msgid "Latest Counts"
296
  msgstr "Poslednji brojaci "
297
 
298
- #: counter-options.php:846
299
  #@ cpd
300
  msgid "Chart - Days"
301
  msgstr "Grafikon - Dani"
302
 
303
- #: counter-options.php:850
304
  #@ cpd
305
  msgid "Chart - Height"
306
  msgstr "Grafikon - Visina"
307
 
308
- #: counter-options.php:851
309
  #@ cpd
310
  msgid "Height of the biggest bar"
311
  msgstr "Visina najviseg bara"
312
 
313
- #: counter.php:1355
314
  #@ cpd
315
  msgid "This post"
316
  msgstr "Ovaj post"
317
 
318
- #: counter-options.php:799
319
  #@ default
320
  msgid "Dashboard"
321
  msgstr "KOntrolna tabla"
322
 
323
- #: counter.php:327
324
  #@ cpd
325
  msgid "Reads per day"
326
  msgstr "Citanja po danu "
@@ -336,32 +334,32 @@ msgstr "Zemlje azurirane. <b>%s</b> unosa u %s bez ostale zemlje "
336
  msgid "update next"
337
  msgstr "Azuriraj sledece"
338
 
339
- #: counter-options.php:636
340
  #@ cpd
341
  msgid "GeoIP - Countries"
342
  msgstr "GeoIP - Zemlje "
343
 
344
- #: counter-options.php:645
345
  #@ cpd
346
  msgid "Update old counter data"
347
  msgstr "Azuriraj stare podatke brojaca"
348
 
349
- #: counter-options.php:657
350
  #@ cpd
351
  msgid "Update GeoIP database"
352
  msgstr "Azuriraj GeoIP bazu podataka"
353
 
354
- #: counter-options.php:652
355
  #@ cpd
356
  msgid "Download a new version of GeoIP.dat file."
357
  msgstr "SKini novu verziju GeoIP.dat fajla"
358
 
359
- #: counter-options.php:662
360
  #@ cpd
361
  msgid "More informations about GeoIP"
362
  msgstr "Vise informacija o GeoIP"
363
 
364
- #: counter-core.php:804
365
  #@ cpd
366
  msgid "Reads per Country"
367
  msgstr "Citanja po zemlji "
@@ -381,12 +379,12 @@ msgstr "Izvinite, doslo je do greske. Pokusajte ponovo ili proverite prava prist
381
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
382
  msgstr "Izvinite, neophodne funkcije (zlib) nisu instalirate ili omogucene u php.ini"
383
 
384
- #: counter-options.php:855
385
  #@ cpd
386
  msgid "Countries"
387
  msgstr "Zemlje"
388
 
389
- #: counter-options.php:856
390
  #@ cpd
391
  msgid "How many countries do you want to see on dashboard page?"
392
  msgstr "Koliko zemalja zelite da vidite na kontrolnoj tabli? "
@@ -397,33 +395,35 @@ msgstr "Koliko zemalja zelite da vidite na kontrolnoj tabli? "
397
  msgid "Mass Bots cleaned. %s counts deleted."
398
  msgstr "Mass Botoci ocisceni. %s zemlje izbrisane"
399
 
400
- #: counter-options.php:417
401
  #: massbots.php:46
402
  #@ cpd
403
  msgid "Mass Bots"
404
  msgstr "Mass botovi "
405
 
406
- #: counter-options.php:421
407
  #, php-format
408
  #@ cpd
409
  msgid "Show all IPs with more than %s page views per day"
410
  msgstr "Pokazi sve IP sa vise od %s pogleda po danu "
411
 
412
- #: counter-options.php:422
 
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "pokazi "
418
 
419
- #: counter-options.php:448
420
- #: counter-options.php:464
 
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Izbrisi ove %s brojace"
425
 
426
- #: counter.php:913
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "druge"
@@ -434,108 +434,112 @@ msgstr "druge"
434
  msgid "Front page displays"
435
  msgstr "Displej naslovne stranice "
436
 
437
- #: counter-core.php:799
438
- #: counter-options.php:860
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Pretrazivaci "
442
 
443
- #: counter-options.php:430
 
444
  #@ cpd
445
  msgid "IP"
446
  msgstr "IP"
447
 
448
- #: counter-options.php:431
 
449
  #: notes.php:88
450
  #@ cpd
451
  #@ default
452
  msgid "Date"
453
  msgstr "Datum"
454
 
455
- #: counter-options.php:432
 
456
  #@ cpd
457
  msgid "Client"
458
  msgstr "Klijent"
459
 
460
- #: counter-options.php:433
 
461
  #@ cpd
462
  msgid "Views"
463
  msgstr "Pogledi "
464
 
465
- #: counter-options.php:891
466
  #@ cpd
467
  msgid "Start Values"
468
  msgstr "Pocetne vrednosti "
469
 
470
- #: counter-options.php:895
471
  #@ cpd
472
  msgid "Here you can change the date of first count and add a start count."
473
  msgstr "Ovde mozete promeniti datum prvog brojanja i dodati startno brojanje"
474
 
475
- #: counter-options.php:899
476
  #@ cpd
477
  msgid "Start date"
478
  msgstr "Pocetni datum"
479
 
480
- #: counter-options.php:900
481
  #@ cpd
482
  msgid "Your old Counter starts at?"
483
  msgstr "Vas stari brojac pocinje na? "
484
 
485
- #: counter-options.php:903
486
- #: counter-options.php:907
487
  #@ cpd
488
  msgid "Start count"
489
  msgstr "Pocni brojanje"
490
 
491
- #: counter-options.php:904
492
  #@ cpd
493
  msgid "Add this value to \"Total visitors\"."
494
  msgstr "Dodaj ovu vrednost u \"Ukupni posetioci\""
495
 
496
- #: counter-options.php:727
497
  #@ cpd
498
  msgid "Support"
499
  msgstr "Podrska"
500
 
501
- #: counter-core.php:754
502
  #@ cpd
503
  msgid "Bug? Problem? Question? Hint? Praise?"
504
  msgstr "Bag? Problem? Pitanje? Savet? Pohvala?"
505
 
506
- #: counter-core.php:755
507
  #, php-format
508
  #@ cpd
509
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
  msgstr "Napisite komentar o <a href=\"%s\">plagin strana</a>."
511
 
512
- #: counter.php:873
513
  #@ default
514
  msgid "Show"
515
  msgstr "Pokazi "
516
 
517
- #: counter.php:1085
518
  #@ default
519
  msgid "Edit Post"
520
  msgstr "Izmeni postove "
521
 
522
- #: counter-core.php:753
523
  #, php-format
524
  #@ cpd
525
  msgid "Time for Count per Day: <code>%s</code>."
526
  msgstr "Vreme za brojac po danu: <code>%s</code>."
527
 
528
- #: counter-options.php:759
529
  #@ cpd
530
  msgid "until User Level"
531
  msgstr "Jedinica nivoa korisnika "
532
 
533
- #: counter-core.php:796
534
  #@ default
535
  msgid "Plugin"
536
  msgstr "Plagin"
537
 
538
- #: counter.php:875
539
  #: notes.php:55
540
  #: notes.php:89
541
  #@ cpd
@@ -567,66 +571,66 @@ msgstr "izbrisi "
567
  msgid "edit"
568
  msgstr "izmeni"
569
 
570
- #: counter-options.php:908
571
  #@ cpd
572
  msgid "Add this value to \"Total reads\"."
573
  msgstr "Dodaj ovu vrednost u \"Ukupni pregledi\"."
574
 
575
- #: counter.php:218
576
- #: counter.php:1356
577
  #@ cpd
578
  msgid "Total reads"
579
  msgstr "Ukupni pregledi "
580
 
581
- #: counter.php:219
582
- #: counter.php:1357
583
  #@ cpd
584
  msgid "Reads today"
585
  msgstr "Pregledi danas"
586
 
587
- #: counter.php:220
588
- #: counter.php:1358
589
  #@ cpd
590
  msgid "Reads yesterday"
591
  msgstr "Pregledi juce"
592
 
593
- #: counter.php:418
594
- #: counter.php:1198
595
  #@ cpd
596
  msgid "Map"
597
  msgstr "Mapa"
598
 
599
- #: counter-options.php:778
600
  #@ cpd
601
  msgid "Anonymous IP"
602
  msgstr "Anonimni IP"
603
 
604
- #: counter-options.php:782
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Kes"
608
 
609
- #: counter-options.php:783
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Koristim plagin za kes. Prebroj ove posete uz pomoc ajaxa."
613
 
614
- #: counter-options.php:861
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Podred agenta korisnika, razdvojen zapetom "
618
 
619
- #: counter-core.php:805
620
  #@ cpd
621
  msgid "Visitors per Country"
622
  msgstr "Posetioca po zemlji "
623
 
624
- #: counter-options.php:945
625
  #@ cpd
626
  msgid "Debug mode"
627
  msgstr "Debug mod"
628
 
629
- #: counter-options.php:947
630
  #@ cpd
631
  msgid "Show debug informations at the bottom of all pages."
632
  msgstr "Pokazi debug informacije na dnu ove strane "
@@ -651,472 +655,565 @@ msgstr "PostID "
651
  msgid "no data found"
652
  msgstr "Nema pronadjenih podataka"
653
 
654
- #: counter-options.php:639
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 "Mozete dobiti podatke o zemlji za sve unose u bazi podataka proveravanjem IP adrese iz GeoIP baze podataka. Ovo moze malo potrajati. "
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Brojac"
663
 
664
- #: counter-options.php:872
665
  #@ cpd
666
  msgid "Local URLs"
667
  msgstr "Lokalno URL"
668
 
669
- #: counter-options.php:873
670
  #@ cpd
671
  msgid "Show local referrers too."
672
  msgstr "Pokazi lokalne reference takodje"
673
 
674
- #: counter-options.php:880
675
  #@ default
676
  msgid "Posts"
677
  msgstr "Postovi "
678
 
679
- #: counter-options.php:880
680
  #@ default
681
  msgid "Pages"
682
  msgstr "Stranice"
683
 
684
- #: counter.php:1094
685
  #@ default
686
  msgid "Category"
687
  msgstr "Kategorije"
688
 
689
- #: counter.php:1097
690
  #@ default
691
  msgid "Tag"
692
  msgstr "Tagovi"
693
 
694
- #: counter-core.php:756
695
  #@ default
696
  msgid "License"
697
  msgstr "Dozvole "
698
 
699
- #: counter-core.php:800
700
  #@ cpd
701
  msgid "Referrer"
702
  msgstr "Reference "
703
 
704
- #: counter.php:1380
705
  #@ default
706
  msgid "Title"
707
  msgstr "Naslov"
708
 
709
- #: counter-options.php:789
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 "Sacuvaj i pokazi klijente i reference. <br /> Treba puno mesta u bazi podataka ali dobijate mnogo detaljnije informacije o vasim posetiocima "
713
 
714
- #: counter-options.php:786
715
  #@ cpd
716
  msgid "Clients and referrers"
717
  msgstr "Klijenti i reference"
718
 
719
- #: counter.php:221
720
- #: counter.php:1359
721
  #@ cpd
722
  msgid "Reads last week"
723
  msgstr "Citanja prosle nedelje"
724
 
725
- #: counter-core.php:791
726
- #: counter.php:1360
727
  #@ cpd
728
  msgid "Reads per month"
729
  msgstr "Citanja po mesecu "
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Reference - unosi"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Koliko referenci zelite videti na kontrolnoj tabli?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Reference - Dani "
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s reference u zadnjih %s dana "
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Posetioci online"
756
 
757
- #: counter-options.php:915
758
  #@ cpd
759
  msgid "Stylesheet"
760
  msgstr "Stil prikaza"
761
 
762
- #: counter-options.php:918
763
  #@ cpd
764
  msgid "NO Stylesheet in Frontend"
765
  msgstr "Nema stila prikaza u Frontendu"
766
 
767
- #: counter-options.php:919
768
  #@ cpd
769
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
770
  msgstr "nemojte ucitavati stil prikaza \"counter.css\" u frontendu "
771
 
772
- #: counter-options.php:815
773
  #@ cpd
774
  msgid "Who can see it"
775
  msgstr "Ko moze videti "
776
 
777
- #: counter-options.php:824
778
  #@ cpd
779
  msgid "custom"
780
  msgstr "prilagodjen"
781
 
782
- #: counter-options.php:826
783
  #@ cpd
784
  msgid "and higher are allowed to see the statistics page."
785
  msgstr "i vise mogu videti stranicu sa statistikama"
786
 
787
- #: counter-options.php:828
788
  #, php-format
789
  #@ cpd
790
  msgid "Set the %s capability %s a user need:"
791
  msgstr "Podesi %s sposobnost %s posetiocu treba:"
792
 
793
- #: counter-core.php:259
794
  #, php-format
795
  #@ cpd
796
  msgid "\"Count per Day\" updated to version %s."
797
  msgstr "\"brojac po danu\" azuriran na verziju %s"
798
 
799
- #: counter-core.php:1000
800
  #@ cpd
801
  msgid "Backup failed! Cannot open file"
802
  msgstr "Bekap neuspesan! Ne mogu otvoriti fajl"
803
 
804
- #: counter-core.php:1027
805
- #, php-format
806
- #@ cpd
807
- msgid "Backup of %s entries in progress. Every point complies %s entries."
808
- msgstr "Bekap %s unosa je u toku. Svaka tacka oznacava %s unos"
809
-
810
- #: counter-core.php:1118
811
- #: counter-core.php:1126
812
  #, php-format
813
  #@ cpd
814
  msgid "Backup of counter table saved in %s."
815
  msgstr "Bekap table brojaca sacuvan na %s"
816
 
817
- #: counter-core.php:1120
818
- #: counter-core.php:1128
819
  #, php-format
820
  #@ cpd
821
  msgid "Backup of counter options and collection saved in %s."
822
  msgstr "Bekap opcija brojaca i kolekcije sacuvan na %s."
823
 
824
- #: counter-options.php:169
825
  #@ cpd
826
  msgid "Collection in progress..."
827
  msgstr "Kolekcija u toku..."
828
 
829
- #: counter-options.php:263
830
  #@ cpd
831
  msgid "Get Visitors per Post..."
832
  msgstr "Dobijte posetioce po postu"
833
 
834
- #: counter-options.php:284
835
- #@ cpd
836
- msgid "Delete old data..."
837
- msgstr "Izbirsi stare podatke"
838
-
839
- #: counter-options.php:308
840
  #, php-format
841
  #@ cpd
842
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
843
  msgstr "Unosi brojaca do %s sakupljeni i tabla brojaca %s optimizirana (velicina pre = %s &gt; velicina posle= %s)."
844
 
845
- #: counter-options.php:317
846
  #@ cpd
847
  msgid "Installation of \"Count per Day\" checked"
848
  msgstr "Instalacija \"Brojac po Danu\" proverena"
849
 
850
- #: counter-options.php:400
851
- #: counter-options.php:739
852
  #@ default
853
  msgid "Tools"
854
  msgstr "Alati"
855
 
856
- #: counter-options.php:791
857
  #@ cpd
858
  msgid "Save URL only, no query string."
859
  msgstr "Sacuvaj samo URL bez reda za ispitivanje"
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Bekap"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Unosi po pass-u"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Koliko unosa bi trebalo da bude sacuvano po pass-u? Predodredjeno: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr "Ako je limit vase PHP memorije manji od 50MB i dobijete belu stranicu ili poruke s greskom probajte manju vrednost"
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Kreirajte bekap table brojaca %s u vasem wp-sadrzaj direktorijumu (ukoliko je upisiv)"
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Kreiraj bekap baze podataka"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Sakupi stare podatke"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "Trenutna velicine vase table brojaca %s je %s"
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr "Mozete da sakupite podatke i ocistite tablu brojaca. <br/> Citanja i posetioci ce biti sacuvani po mesecu, po zemlji i po postu. <br/> Klijenti i reference ce biti izbrisane"
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "Trenutno vasa kolekcija sadrzi podatke do %s"
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Normalno novi podaci bice dodati kolekciji "
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Izbrisi staru kolekciju i kreiraj novu koja sadrzi samo podatke koji su trenutno na tabli brojaca"
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Svi prikupljeni podaci do %s ce biti izbrisani "
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Sacuvaj unose od zadnjih %s meseci + tekuci mesec u tabli brojaca"
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "Reaktivacija"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Ovde mozete poceti instalaciju funckija rucno. <br/> Isto kao akticiranje i deaktiviranje plagina"
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "Reaktivirajte plagin"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Posetioci"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Najposeceniji dan"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "POvuci i spusti da bi sortirali "
970
 
971
- #: counter-core.php:1114
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr "Mozete skinuti bekap fajlove ovde i sada."
975
 
976
- #: counter-options.php:483
977
  #@ cpd
978
  msgid "Download only"
979
  msgstr "Samo download"
980
 
981
- #: counter-options.php:533
982
  #@ default
983
  msgid "Delete"
984
  msgstr "Izbrisi "
985
 
986
- #: counter-options.php:534
987
  #, php-format
988
  #@ cpd
989
  msgid "Delete the backup file %s ?"
990
  msgstr "Izbrisati bekap fajl %s?"
991
 
992
- #: counter-core.php:795
993
- #: counter-options.php:864
994
- #: counter-options.php:868
995
  #@ cpd
996
  msgid "Search strings"
997
  msgstr "Trazi redove"
998
 
999
- #: counter-core.php:1184
1000
  #@ cpd
1001
  msgid "Error while reading backup file!"
1002
  msgstr "Greska u citanju bekap fajla!"
1003
 
1004
- #: counter-core.php:1188
1005
  #, php-format
1006
  #@ cpd
1007
  msgid "The backup was added to counter table %s."
1008
  msgstr "Bekap je dodat tabli brojaca %s."
1009
 
1010
- #: counter-core.php:1190
1011
  #, php-format
1012
  #@ cpd
1013
  msgid "The counter table %s was restored from backup."
1014
  msgstr "Tabla brojaca %s je povracena s bekapa"
1015
 
1016
- #: counter-core.php:1207
1017
  #@ cpd
1018
  msgid "Options restored from backup."
1019
  msgstr "Opcije povracene s bekapa"
1020
 
1021
- #: counter-options.php:515
1022
  #@ cpd
1023
  msgid "Settings and collections"
1024
  msgstr "Podesavanja i kolekcije"
1025
 
1026
- #: counter-options.php:520
1027
  #, php-format
1028
  #@ cpd
1029
  msgid "Counter table %s"
1030
  msgstr "Tabla brojaca %s"
1031
 
1032
- #: counter-options.php:527
1033
  #, php-format
1034
  #@ cpd
1035
  msgid "Add data from the backup file %s to existing counter table?"
1036
  msgstr "Dodati podatke s bekap fajla %s postojecoj tabli brojaca? "
1037
 
1038
- #: counter-options.php:531
1039
  #, php-format
1040
  #@ cpd
1041
  msgid "Restore data from the backup file %s ?"
1042
  msgstr "POvratiti podatke s bekap fajla %s?"
1043
 
1044
- #: counter-options.php:531
1045
  #@ default
1046
  msgid "Restore"
1047
  msgstr "Povrati "
1048
 
1049
- #: counter-options.php:540
1050
  #@ cpd
1051
  msgid "add backup to current counter table"
1052
  msgstr "dodaj bekap trenutnoj tabli brojaca"
1053
 
1054
- #: counter-options.php:541
1055
  #@ cpd
1056
  msgid "replace current counter table with with backup"
1057
  msgstr "Zameni trenutnu tablu brojaca s bekapom"
1058
 
1059
- #: counter-options.php:542
1060
  #@ cpd
1061
  msgid "delete backup file"
1062
  msgstr "izbrisi bekap fajl"
1063
 
1064
- #: counter.php:1142
1065
  #, php-format
1066
  #@ cpd
1067
  msgid "The %s most searched strings:"
1068
  msgstr "%s najtrazeniji redovi "
1069
 
1070
- #: counter.php:1151
1071
  #, php-format
1072
  #@ cpd
1073
  msgid "The search strings of the last %s days:"
1074
  msgstr "Trazeni redovi u poslednjih %s dana"
1075
 
1076
- #: counter-options.php:332
1077
  #@ cpd
1078
  msgid "Old search strings deleted"
1079
  msgstr "Stari trazeni redovi izbrisani "
1080
 
1081
- #: counter-options.php:567
1082
  #, php-format
1083
  #@ cpd
1084
  msgid "Delete search strings older than %s days."
1085
  msgstr "Izbrisi trazene redove starije od %s dana"
1086
 
1087
- #: counter-options.php:571
1088
  #@ cpd
1089
  msgid "Delete search strings"
1090
  msgstr "Izbrisi trazene redove"
1091
 
1092
- #: counter-options.php:527
1093
  #@ cpd
1094
  msgid "Add"
1095
  msgstr "Dodaj "
1096
 
1097
- #: counter-options.php:347
1098
  #@ cpd
1099
  msgid "Clients and referers deleted"
1100
  msgstr ""
1101
 
1102
- #: counter-options.php:578
1103
  #, php-format
1104
  #@ cpd
1105
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1106
  msgstr ""
1107
 
1108
- #: counter-options.php:582
1109
  #@ cpd
1110
  msgid "Delete clients and referers"
1111
  msgstr ""
1112
 
1113
- #: counter.php:1100
1114
  #@ default
1115
  msgid "Front page"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:31+0000\n"
7
  "Last-Translator: Diana <diana@wpdiscounts.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Opcije azurirane "
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Baza podataka ociscena. %s redova izbrisano"
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEINSTALIRANJE broj po danu"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabla %s izbrisana"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opcije izbrisane"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstalirati"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Kliknite ovde"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Da bi zavrsili deinstaliranje i aktivirali \"Brojanje po danu\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Vreme online"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Sekunde online kauntera. Koricseno za \"Posetioci online\" na strani kontrolna tabla "
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Ulogovani korisnici"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Brojanje takodje"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto brojanje"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Broji automatski samostalne postove i stranice, nisu potrebne izmene sablona"
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botovi za ignorisanje"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Azuriraj opcije "
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Ocisti bazu podataka"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  msgstr "Mozete izbrisati tablu brojaca brisanjem e \"spam data\".<br />Ukoliko dodate nove botoce izned starih \"spam data\" se zadrzava u bazi podataka. <br /> Ovde mozete pokrenuti bot filter ponovo i izbrisati posete botova"
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Ukoliko \"Brojac po danu\" bude samo onesposobljen table u bazi podataka ce biti sacuvane "
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Ovde mozete izbrisati table i onesposobiti \"Brojac po danu\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "UPOZORENJE"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ove table (sa svim podacima brojanja) bice izbrisane"
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Ako je \"brojac po danu\" reinstaliran, brojac pocinje od 0. "
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Da"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Sigurni ste da zelite da onesposobiti Brojac po danu i izbrisete sve podatke? "
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistike "
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Ukupno poseta"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Posetioci trenutno online"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Posetioci danas"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Posetioci juce"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Posetioci prosle nedelje"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Projac pocinje"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Posetioca po danu"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Posetioca po mesecu "
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Posetioca po postu "
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Brojac resetovan "
226
 
227
+ #: counter-options.php:925
228
+ #: counter-options.php:929
229
  #@ cpd
230
  msgid "How many posts do you want to see on dashboard page?"
231
  msgstr "Koliko postova zelite da vidite na kontrolnoj tabli? "
232
 
233
+ #: counter-options.php:928
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Najnoviji brojaci - Postovi "
237
 
238
+ #: counter-options.php:932
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Najnoviji brojaci - Dani"
242
 
243
+ #: counter-options.php:933
244
+ #: counter-options.php:937
245
+ #: counter-options.php:959
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "Koliko dana unazad zelite da pogledate? "
249
 
250
+ #: counter-options.php:973
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "POkazi u listama"
254
 
255
+ #: counter-options.php:974
256
  #@ cpd
257
  msgid "Show \"Reads per Post\" in a new column in post management views."
258
  msgstr "Pokazi \"Citanja po Postu\" u novoj koloni u upravljanju pogleda posta"
259
 
260
+ #: counter-options.php:770
261
+ #: counter-options.php:780
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Resetuj brojac"
265
 
266
+ #: counter-options.php:773
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 "Mozete resetovati brojac praznjenjem table. SVE ZA 0!<br /> Napravite rezervnu kopiju ukoliko vam trebaju trenutni podaci "
270
 
271
+ #: counter.php:771
272
  #, php-format
273
  #@ cpd
274
  msgid "The %s most visited posts in last %s days:"
275
  msgstr "%s najposeceniji postovi u poslednjih %s dana"
276
 
277
+ #: counter-core.php:641
278
+ #: counter-options.php:409
 
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Podesavanja"
282
 
283
+ #: counter-core.php:1526
284
+ #: counter-options.php:869
285
+ #: counter.php:235
286
+ #: counter.php:1019
287
  #@ cpd
288
  msgid "Reads"
289
  msgstr "Citanja"
290
 
291
+ #: counter-core.php:782
292
  #@ cpd
293
  msgid "Latest Counts"
294
  msgstr "Poslednji brojaci "
295
 
296
+ #: counter-options.php:936
297
  #@ cpd
298
  msgid "Chart - Days"
299
  msgstr "Grafikon - Dani"
300
 
301
+ #: counter-options.php:940
302
  #@ cpd
303
  msgid "Chart - Height"
304
  msgstr "Grafikon - Visina"
305
 
306
+ #: counter-options.php:941
307
  #@ cpd
308
  msgid "Height of the biggest bar"
309
  msgstr "Visina najviseg bara"
310
 
311
+ #: counter.php:1406
312
  #@ cpd
313
  msgid "This post"
314
  msgstr "Ovaj post"
315
 
316
+ #: counter-options.php:889
317
  #@ default
318
  msgid "Dashboard"
319
  msgstr "KOntrolna tabla"
320
 
321
+ #: counter.php:342
322
  #@ cpd
323
  msgid "Reads per day"
324
  msgstr "Citanja po danu "
334
  msgid "update next"
335
  msgstr "Azuriraj sledece"
336
 
337
+ #: counter-options.php:720
338
  #@ cpd
339
  msgid "GeoIP - Countries"
340
  msgstr "GeoIP - Zemlje "
341
 
342
+ #: counter-options.php:729
343
  #@ cpd
344
  msgid "Update old counter data"
345
  msgstr "Azuriraj stare podatke brojaca"
346
 
347
+ #: counter-options.php:741
348
  #@ cpd
349
  msgid "Update GeoIP database"
350
  msgstr "Azuriraj GeoIP bazu podataka"
351
 
352
+ #: counter-options.php:736
353
  #@ cpd
354
  msgid "Download a new version of GeoIP.dat file."
355
  msgstr "SKini novu verziju GeoIP.dat fajla"
356
 
357
+ #: counter-options.php:746
358
  #@ cpd
359
  msgid "More informations about GeoIP"
360
  msgstr "Vise informacija o GeoIP"
361
 
362
+ #: counter-core.php:793
363
  #@ cpd
364
  msgid "Reads per Country"
365
  msgstr "Citanja po zemlji "
379
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
  msgstr "Izvinite, neophodne funkcije (zlib) nisu instalirate ili omogucene u php.ini"
381
 
382
+ #: counter-options.php:945
383
  #@ cpd
384
  msgid "Countries"
385
  msgstr "Zemlje"
386
 
387
+ #: counter-options.php:946
388
  #@ cpd
389
  msgid "How many countries do you want to see on dashboard page?"
390
  msgstr "Koliko zemalja zelite da vidite na kontrolnoj tabli? "
395
  msgid "Mass Bots cleaned. %s counts deleted."
396
  msgstr "Mass Botoci ocisceni. %s zemlje izbrisane"
397
 
398
+ #: counter-options.php:429
399
  #: massbots.php:46
400
  #@ cpd
401
  msgid "Mass Bots"
402
  msgstr "Mass botovi "
403
 
404
+ #: counter-options.php:433
405
  #, php-format
406
  #@ cpd
407
  msgid "Show all IPs with more than %s page views per day"
408
  msgstr "Pokazi sve IP sa vise od %s pogleda po danu "
409
 
410
+ #: counter-options.php:434
411
+ #: counter-options.php:498
412
  #: notes.php:84
413
  #: userperspan.php:56
414
  #@ cpd
415
  msgid "show"
416
  msgstr "pokazi "
417
 
418
+ #: counter-options.php:460
419
+ #: counter-options.php:476
420
+ #: counter-options.php:523
421
  #, php-format
422
  #@ cpd
423
  msgid "Delete these %s counts"
424
  msgstr "Izbrisi ove %s brojace"
425
 
426
+ #: counter.php:958
427
  #@ cpd
428
  msgid "Other"
429
  msgstr "druge"
434
  msgid "Front page displays"
435
  msgstr "Displej naslovne stranice "
436
 
437
+ #: counter-core.php:788
438
+ #: counter-options.php:950
439
  #@ cpd
440
  msgid "Browsers"
441
  msgstr "Pretrazivaci "
442
 
443
+ #: counter-options.php:442
444
+ #: counter-options.php:506
445
  #@ cpd
446
  msgid "IP"
447
  msgstr "IP"
448
 
449
+ #: counter-options.php:443
450
+ #: counter-options.php:507
451
  #: notes.php:88
452
  #@ cpd
453
  #@ default
454
  msgid "Date"
455
  msgstr "Datum"
456
 
457
+ #: counter-options.php:444
458
+ #: counter-options.php:508
459
  #@ cpd
460
  msgid "Client"
461
  msgstr "Klijent"
462
 
463
+ #: counter-options.php:445
464
+ #: counter-options.php:509
465
  #@ cpd
466
  msgid "Views"
467
  msgstr "Pogledi "
468
 
469
+ #: counter-options.php:981
470
  #@ cpd
471
  msgid "Start Values"
472
  msgstr "Pocetne vrednosti "
473
 
474
+ #: counter-options.php:985
475
  #@ cpd
476
  msgid "Here you can change the date of first count and add a start count."
477
  msgstr "Ovde mozete promeniti datum prvog brojanja i dodati startno brojanje"
478
 
479
+ #: counter-options.php:989
480
  #@ cpd
481
  msgid "Start date"
482
  msgstr "Pocetni datum"
483
 
484
+ #: counter-options.php:990
485
  #@ cpd
486
  msgid "Your old Counter starts at?"
487
  msgstr "Vas stari brojac pocinje na? "
488
 
489
+ #: counter-options.php:993
490
+ #: counter-options.php:997
491
  #@ cpd
492
  msgid "Start count"
493
  msgstr "Pocni brojanje"
494
 
495
+ #: counter-options.php:994
496
  #@ cpd
497
  msgid "Add this value to \"Total visitors\"."
498
  msgstr "Dodaj ovu vrednost u \"Ukupni posetioci\""
499
 
500
+ #: counter-options.php:811
501
  #@ cpd
502
  msgid "Support"
503
  msgstr "Podrska"
504
 
505
+ #: counter-core.php:743
506
  #@ cpd
507
  msgid "Bug? Problem? Question? Hint? Praise?"
508
  msgstr "Bag? Problem? Pitanje? Savet? Pohvala?"
509
 
510
+ #: counter-core.php:744
511
  #, php-format
512
  #@ cpd
513
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
  msgstr "Napisite komentar o <a href=\"%s\">plagin strana</a>."
515
 
516
+ #: counter.php:888
517
  #@ default
518
  msgid "Show"
519
  msgstr "Pokazi "
520
 
521
+ #: counter.php:1130
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Izmeni postove "
525
 
526
+ #: counter-core.php:742
527
  #, php-format
528
  #@ cpd
529
  msgid "Time for Count per Day: <code>%s</code>."
530
  msgstr "Vreme za brojac po danu: <code>%s</code>."
531
 
532
+ #: counter-options.php:839
533
  #@ cpd
534
  msgid "until User Level"
535
  msgstr "Jedinica nivoa korisnika "
536
 
537
+ #: counter-core.php:785
538
  #@ default
539
  msgid "Plugin"
540
  msgstr "Plagin"
541
 
542
+ #: counter.php:890
543
  #: notes.php:55
544
  #: notes.php:89
545
  #@ cpd
571
  msgid "edit"
572
  msgstr "izmeni"
573
 
574
+ #: counter-options.php:998
575
  #@ cpd
576
  msgid "Add this value to \"Total reads\"."
577
  msgstr "Dodaj ovu vrednost u \"Ukupni pregledi\"."
578
 
579
+ #: counter.php:231
580
+ #: counter.php:1407
581
  #@ cpd
582
  msgid "Total reads"
583
  msgstr "Ukupni pregledi "
584
 
585
+ #: counter.php:232
586
+ #: counter.php:1408
587
  #@ cpd
588
  msgid "Reads today"
589
  msgstr "Pregledi danas"
590
 
591
+ #: counter.php:233
592
+ #: counter.php:1409
593
  #@ cpd
594
  msgid "Reads yesterday"
595
  msgstr "Pregledi juce"
596
 
597
+ #: counter.php:433
598
+ #: counter.php:1249
599
  #@ cpd
600
  msgid "Map"
601
  msgstr "Mapa"
602
 
603
+ #: counter-options.php:858
604
  #@ cpd
605
  msgid "Anonymous IP"
606
  msgstr "Anonimni IP"
607
 
608
+ #: counter-options.php:862
609
  #@ cpd
610
  msgid "Cache"
611
  msgstr "Kes"
612
 
613
+ #: counter-options.php:863
614
  #@ cpd
615
  msgid "I use a cache plugin. Count these visits with ajax."
616
  msgstr "Koristim plagin za kes. Prebroj ove posete uz pomoc ajaxa."
617
 
618
+ #: counter-options.php:951
619
  #@ cpd
620
  msgid "Substring of the user agent, separated by comma"
621
  msgstr "Podred agenta korisnika, razdvojen zapetom "
622
 
623
+ #: counter-core.php:794
624
  #@ cpd
625
  msgid "Visitors per Country"
626
  msgstr "Posetioca po zemlji "
627
 
628
+ #: counter-options.php:1035
629
  #@ cpd
630
  msgid "Debug mode"
631
  msgstr "Debug mod"
632
 
633
+ #: counter-options.php:1037
634
  #@ cpd
635
  msgid "Show debug informations at the bottom of all pages."
636
  msgstr "Pokazi debug informacije na dnu ove strane "
655
  msgid "no data found"
656
  msgstr "Nema pronadjenih podataka"
657
 
658
+ #: counter-options.php:723
659
  #@ cpd
660
  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!"
661
  msgstr "Mozete dobiti podatke o zemlji za sve unose u bazi podataka proveravanjem IP adrese iz GeoIP baze podataka. Ovo moze malo potrajati. "
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Brojac"
667
 
668
+ #: counter-options.php:962
669
  #@ cpd
670
  msgid "Local URLs"
671
  msgstr "Lokalno URL"
672
 
673
+ #: counter-options.php:963
674
  #@ cpd
675
  msgid "Show local referrers too."
676
  msgstr "Pokazi lokalne reference takodje"
677
 
678
+ #: counter-options.php:970
679
  #@ default
680
  msgid "Posts"
681
  msgstr "Postovi "
682
 
683
+ #: counter-options.php:970
684
  #@ default
685
  msgid "Pages"
686
  msgstr "Stranice"
687
 
688
+ #: counter.php:1139
689
  #@ default
690
  msgid "Category"
691
  msgstr "Kategorije"
692
 
693
+ #: counter.php:1142
694
  #@ default
695
  msgid "Tag"
696
  msgstr "Tagovi"
697
 
698
+ #: counter-core.php:745
699
  #@ default
700
  msgid "License"
701
  msgstr "Dozvole "
702
 
703
+ #: counter-core.php:789
704
  #@ cpd
705
  msgid "Referrer"
706
  msgstr "Reference "
707
 
708
+ #: counter.php:1431
709
  #@ default
710
  msgid "Title"
711
  msgstr "Naslov"
712
 
713
+ #: counter-options.php:869
714
  #@ cpd
715
  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."
716
  msgstr "Sacuvaj i pokazi klijente i reference. <br /> Treba puno mesta u bazi podataka ali dobijate mnogo detaljnije informacije o vasim posetiocima "
717
 
718
+ #: counter-options.php:866
719
  #@ cpd
720
  msgid "Clients and referrers"
721
  msgstr "Klijenti i reference"
722
 
723
+ #: counter.php:234
724
+ #: counter.php:1410
725
  #@ cpd
726
  msgid "Reads last week"
727
  msgstr "Citanja prosle nedelje"
728
 
729
+ #: counter-core.php:780
730
+ #: counter.php:1411
731
  #@ cpd
732
  msgid "Reads per month"
733
  msgstr "Citanja po mesecu "
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Reference - unosi"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Koliko referenci zelite videti na kontrolnoj tabli?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Reference - Dani "
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "%s reference u zadnjih %s dana "
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Posetioci online"
760
 
761
+ #: counter-options.php:1005
762
  #@ cpd
763
  msgid "Stylesheet"
764
  msgstr "Stil prikaza"
765
 
766
+ #: counter-options.php:1008
767
  #@ cpd
768
  msgid "NO Stylesheet in Frontend"
769
  msgstr "Nema stila prikaza u Frontendu"
770
 
771
+ #: counter-options.php:1009
772
  #@ cpd
773
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
774
  msgstr "nemojte ucitavati stil prikaza \"counter.css\" u frontendu "
775
 
776
+ #: counter-options.php:905
777
  #@ cpd
778
  msgid "Who can see it"
779
  msgstr "Ko moze videti "
780
 
781
+ #: counter-options.php:914
782
  #@ cpd
783
  msgid "custom"
784
  msgstr "prilagodjen"
785
 
786
+ #: counter-options.php:916
787
  #@ cpd
788
  msgid "and higher are allowed to see the statistics page."
789
  msgstr "i vise mogu videti stranicu sa statistikama"
790
 
791
+ #: counter-options.php:918
792
  #, php-format
793
  #@ cpd
794
  msgid "Set the %s capability %s a user need:"
795
  msgstr "Podesi %s sposobnost %s posetiocu treba:"
796
 
797
+ #: counter-core.php:232
798
  #, php-format
799
  #@ cpd
800
  msgid "\"Count per Day\" updated to version %s."
801
  msgstr "\"brojac po danu\" azuriran na verziju %s"
802
 
803
+ #: counter-core.php:1062
804
  #@ cpd
805
  msgid "Backup failed! Cannot open file"
806
  msgstr "Bekap neuspesan! Ne mogu otvoriti fajl"
807
 
808
+ #: counter-core.php:1180
809
+ #: counter-core.php:1188
 
 
 
 
 
 
810
  #, php-format
811
  #@ cpd
812
  msgid "Backup of counter table saved in %s."
813
  msgstr "Bekap table brojaca sacuvan na %s"
814
 
815
+ #: counter-core.php:1182
816
+ #: counter-core.php:1190
817
  #, php-format
818
  #@ cpd
819
  msgid "Backup of counter options and collection saved in %s."
820
  msgstr "Bekap opcija brojaca i kolekcije sacuvan na %s."
821
 
822
+ #: counter-options.php:174
823
  #@ cpd
824
  msgid "Collection in progress..."
825
  msgstr "Kolekcija u toku..."
826
 
827
+ #: counter-options.php:268
828
  #@ cpd
829
  msgid "Get Visitors per Post..."
830
  msgstr "Dobijte posetioce po postu"
831
 
832
+ #: counter-options.php:313
 
 
 
 
 
833
  #, php-format
834
  #@ cpd
835
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
836
  msgstr "Unosi brojaca do %s sakupljeni i tabla brojaca %s optimizirana (velicina pre = %s &gt; velicina posle= %s)."
837
 
838
+ #: counter-options.php:322
839
  #@ cpd
840
  msgid "Installation of \"Count per Day\" checked"
841
  msgstr "Instalacija \"Brojac po Danu\" proverena"
842
 
843
+ #: counter-options.php:408
 
844
  #@ default
845
  msgid "Tools"
846
  msgstr "Alati"
847
 
848
+ #: counter-options.php:871
849
  #@ cpd
850
  msgid "Save URL only, no query string."
851
  msgstr "Sacuvaj samo URL bez reda za ispitivanje"
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Bekap"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Unosi po pass-u"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Koliko unosa bi trebalo da bude sacuvano po pass-u? Predodredjeno: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr "Ako je limit vase PHP memorije manji od 50MB i dobijete belu stranicu ili poruke s greskom probajte manju vrednost"
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Kreirajte bekap table brojaca %s u vasem wp-sadrzaj direktorijumu (ukoliko je upisiv)"
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Kreiraj bekap baze podataka"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Sakupi stare podatke"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "Trenutna velicine vase table brojaca %s je %s"
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr "Mozete da sakupite podatke i ocistite tablu brojaca. <br/> Citanja i posetioci ce biti sacuvani po mesecu, po zemlji i po postu. <br/> Klijenti i reference ce biti izbrisane"
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "Trenutno vasa kolekcija sadrzi podatke do %s"
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Normalno novi podaci bice dodati kolekciji "
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Izbrisi staru kolekciju i kreiraj novu koja sadrzi samo podatke koji su trenutno na tabli brojaca"
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Svi prikupljeni podaci do %s ce biti izbrisani "
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Sacuvaj unose od zadnjih %s meseci + tekuci mesec u tabli brojaca"
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "Reaktivacija"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Ovde mozete poceti instalaciju funckija rucno. <br/> Isto kao akticiranje i deaktiviranje plagina"
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "Reaktivirajte plagin"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Posetioci"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Najposeceniji dan"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "POvuci i spusti da bi sortirali "
962
 
963
+ #: counter-core.php:1176
964
  #@ cpd
965
  msgid "Your can download the backup files here and now."
966
  msgstr "Mozete skinuti bekap fajlove ovde i sada."
967
 
968
+ #: counter-options.php:567
969
  #@ cpd
970
  msgid "Download only"
971
  msgstr "Samo download"
972
 
973
+ #: counter-options.php:617
974
  #@ default
975
  msgid "Delete"
976
  msgstr "Izbrisi "
977
 
978
+ #: counter-options.php:618
979
  #, php-format
980
  #@ cpd
981
  msgid "Delete the backup file %s ?"
982
  msgstr "Izbrisati bekap fajl %s?"
983
 
984
+ #: counter-core.php:784
985
+ #: counter-options.php:954
986
+ #: counter-options.php:958
987
  #@ cpd
988
  msgid "Search strings"
989
  msgstr "Trazi redove"
990
 
991
+ #: counter-core.php:1246
992
  #@ cpd
993
  msgid "Error while reading backup file!"
994
  msgstr "Greska u citanju bekap fajla!"
995
 
996
+ #: counter-core.php:1250
997
  #, php-format
998
  #@ cpd
999
  msgid "The backup was added to counter table %s."
1000
  msgstr "Bekap je dodat tabli brojaca %s."
1001
 
1002
+ #: counter-core.php:1252
1003
  #, php-format
1004
  #@ cpd
1005
  msgid "The counter table %s was restored from backup."
1006
  msgstr "Tabla brojaca %s je povracena s bekapa"
1007
 
1008
+ #: counter-core.php:1269
1009
  #@ cpd
1010
  msgid "Options restored from backup."
1011
  msgstr "Opcije povracene s bekapa"
1012
 
1013
+ #: counter-options.php:599
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr "Podesavanja i kolekcije"
1017
 
1018
+ #: counter-options.php:604
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr "Tabla brojaca %s"
1023
 
1024
+ #: counter-options.php:611
1025
  #, php-format
1026
  #@ cpd
1027
  msgid "Add data from the backup file %s to existing counter table?"
1028
  msgstr "Dodati podatke s bekap fajla %s postojecoj tabli brojaca? "
1029
 
1030
+ #: counter-options.php:615
1031
  #, php-format
1032
  #@ cpd
1033
  msgid "Restore data from the backup file %s ?"
1034
  msgstr "POvratiti podatke s bekap fajla %s?"
1035
 
1036
+ #: counter-options.php:615
1037
  #@ default
1038
  msgid "Restore"
1039
  msgstr "Povrati "
1040
 
1041
+ #: counter-options.php:624
1042
  #@ cpd
1043
  msgid "add backup to current counter table"
1044
  msgstr "dodaj bekap trenutnoj tabli brojaca"
1045
 
1046
+ #: counter-options.php:625
1047
  #@ cpd
1048
  msgid "replace current counter table with with backup"
1049
  msgstr "Zameni trenutnu tablu brojaca s bekapom"
1050
 
1051
+ #: counter-options.php:626
1052
  #@ cpd
1053
  msgid "delete backup file"
1054
  msgstr "izbrisi bekap fajl"
1055
 
1056
+ #: counter.php:1193
1057
  #, php-format
1058
  #@ cpd
1059
  msgid "The %s most searched strings:"
1060
  msgstr "%s najtrazeniji redovi "
1061
 
1062
+ #: counter.php:1202
1063
  #, php-format
1064
  #@ cpd
1065
  msgid "The search strings of the last %s days:"
1066
  msgstr "Trazeni redovi u poslednjih %s dana"
1067
 
1068
+ #: counter-options.php:337
1069
  #@ cpd
1070
  msgid "Old search strings deleted"
1071
  msgstr "Stari trazeni redovi izbrisani "
1072
 
1073
+ #: counter-options.php:651
1074
  #, php-format
1075
  #@ cpd
1076
  msgid "Delete search strings older than %s days."
1077
  msgstr "Izbrisi trazene redove starije od %s dana"
1078
 
1079
+ #: counter-options.php:655
1080
  #@ cpd
1081
  msgid "Delete search strings"
1082
  msgstr "Izbrisi trazene redove"
1083
 
1084
+ #: counter-options.php:611
1085
  #@ cpd
1086
  msgid "Add"
1087
  msgstr "Dodaj "
1088
 
1089
+ #: counter-options.php:352
1090
  #@ cpd
1091
  msgid "Clients and referers deleted"
1092
  msgstr ""
1093
 
1094
+ #: counter-options.php:662
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1098
  msgstr ""
1099
 
1100
+ #: counter-options.php:666
1101
  #@ cpd
1102
  msgid "Delete clients and referers"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1145
1106
  #@ default
1107
  msgid "Front page"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-sv_SE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-02-20 10:51+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:18:50+0000\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"
@@ -20,138 +20,137 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter.php:218
24
- #: counter.php:1356
25
  #@ cpd
26
  msgid "Total reads"
27
  msgstr "Antal läsningar totalt"
28
 
29
- #: counter.php:219
30
- #: counter.php:1357
31
  #@ cpd
32
  msgid "Reads today"
33
  msgstr "Läsningar idag"
34
 
35
- #: counter.php:220
36
- #: counter.php:1358
37
  #@ cpd
38
  msgid "Reads yesterday"
39
  msgstr "Läsningar igår"
40
 
41
- #: counter.php:221
42
- #: counter.php:1359
43
  #@ cpd
44
  msgid "Reads last week"
45
  msgstr "Läsningar förra veckan"
46
 
47
- #: counter-core.php:1464
48
- #: counter-options.php:789
49
- #: counter.php:222
50
- #: counter.php:974
51
  #@ cpd
52
  msgid "Reads"
53
  msgstr "Visningar"
54
 
55
- #: counter-core.php:788
56
- #: counter.php:223
57
- #: counter.php:1167
58
- #: counter.php:1361
59
  #@ cpd
60
  msgid "Total visitors"
61
  msgstr "Antal besökare totalt"
62
 
63
- #: counter.php:224
64
- #: counter.php:1367
65
  #@ cpd
66
  msgid "Visitors currently online"
67
  msgstr "Besökare online nu"
68
 
69
- #: counter.php:225
70
- #: counter.php:1362
71
  #@ cpd
72
  msgid "Visitors today"
73
  msgstr "Besökare idag"
74
 
75
- #: counter.php:226
76
- #: counter.php:1363
77
  #@ cpd
78
  msgid "Visitors yesterday"
79
  msgstr "Besökare igår"
80
 
81
- #: counter.php:227
82
- #: counter.php:1364
83
  #@ cpd
84
  msgid "Visitors last week"
85
  msgstr "Besökare förra veckan"
86
 
87
- #: counter-core.php:794
88
- #: counter.php:229
89
- #: counter.php:328
90
- #: counter.php:1169
91
- #: counter.php:1366
92
  #: userperspan.php:46
93
  #@ cpd
94
  msgid "Visitors per day"
95
  msgstr "Besök per dag"
96
 
97
- #: counter.php:230
98
- #: counter.php:924
99
- #: counter.php:1368
100
  #@ cpd
101
  msgid "Counter starts on"
102
  msgstr "Räknaren startar den"
103
 
104
- #: counter.php:327
105
  #@ cpd
106
  msgid "Reads per day"
107
  msgstr "Läsningar per dag"
108
 
109
- #: counter.php:875
110
  #: notes.php:55
111
  #: notes.php:89
112
  #@ cpd
113
  msgid "Notes"
114
  msgstr "Anteckningar"
115
 
116
- #: counter.php:418
117
- #: counter.php:1198
118
  #@ cpd
119
  msgid "Map"
120
  msgstr "Karta"
121
 
122
- #: counter.php:756
123
  #, php-format
124
  #@ cpd
125
  msgid "The %s most visited posts in last %s days:"
126
  msgstr "De %s mest visade inläggen de senaste %s dagarna:"
127
 
128
- #: counter.php:873
129
  #@ default
130
  msgid "Show"
131
  msgstr "Visa"
132
 
133
- #: counter.php:913
134
  #@ cpd
135
  msgid "Other"
136
  msgstr "Övriga"
137
 
138
- #: counter.php:944
139
  #, php-format
140
  #@ cpd
141
  msgid "The %s referrers in last %s days:"
142
  msgstr "De %s senaste hänvisningarna de senaste %s dagarna:"
143
 
144
- #: counter.php:1085
145
  #@ default
146
  msgid "Edit Post"
147
  msgstr "Redigera inlägg"
148
 
149
- #: counter.php:1094
150
  #@ default
151
  msgid "Category"
152
  msgstr "Kategori"
153
 
154
- #: counter.php:1097
155
  #@ default
156
  msgid "Tag"
157
  msgstr "Tag"
@@ -162,113 +161,114 @@ msgstr "Tag"
162
  msgid "Front page displays"
163
  msgstr "Visningar av framsidan"
164
 
165
- #: counter-core.php:652
166
- #: counter-options.php:401
167
- #: counter-options.php:740
168
  #@ default
169
  msgid "Settings"
170
  msgstr "Inställningar"
171
 
172
- #: counter-core.php:753
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:754
179
  #@ cpd
180
  msgid "Bug? Problem? Question? Hint? Praise?"
181
  msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
182
 
183
- #: counter-core.php:755
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:756
190
  #@ default
191
  msgid "License"
192
  msgstr "Licens"
193
 
194
- #: counter-core.php:789
195
  #@ cpd
196
  msgid "Visitors online"
197
  msgstr "Besökare online"
198
 
199
- #: counter-core.php:790
200
- #: counter.php:1365
201
  #@ cpd
202
  msgid "Visitors per month"
203
  msgstr "Besökare per månad"
204
 
205
- #: counter-core.php:791
206
- #: counter.php:1360
207
  #@ cpd
208
  msgid "Reads per month"
209
  msgstr "Läsningar per månad"
210
 
211
- #: counter-core.php:792
212
- #: counter-options.php:834
213
  #@ cpd
214
  msgid "Visitors per post"
215
  msgstr "Besökare per inlägg"
216
 
217
- #: counter-core.php:793
218
  #@ cpd
219
  msgid "Latest Counts"
220
  msgstr "Senaste besöken"
221
 
222
- #: counter-core.php:796
223
  #@ default
224
  msgid "Plugin"
225
  msgstr "Plugin"
226
 
227
- #: counter-core.php:799
228
- #: counter-options.php:860
229
  #@ cpd
230
  msgid "Browsers"
231
  msgstr "Webbläsare"
232
 
233
- #: counter-core.php:800
234
  #@ cpd
235
  msgid "Referrer"
236
  msgstr "Hänvisare"
237
 
238
- #: counter-core.php:804
239
  #@ cpd
240
  msgid "Reads per Country"
241
  msgstr "Visningar per land"
242
 
243
- #: counter-core.php:805
244
  #@ cpd
245
  msgid "Visitors per Country"
246
  msgstr "Besökare per land"
247
 
248
- #: counter-core.php:820
249
- #: counter.php:1283
250
  #@ cpd
251
  msgid "Statistics"
252
  msgstr "Statistik"
253
 
254
- #: counter.php:1355
255
  #@ cpd
256
  msgid "This post"
257
  msgstr "Det här inlägget"
258
 
259
- #: counter.php:1380
260
  #@ default
261
  msgid "Title"
262
  msgstr "Titel"
263
 
264
- #: counter-options.php:422
 
265
  #: notes.php:84
266
  #: userperspan.php:56
267
  #@ cpd
268
  msgid "show"
269
  msgstr "visa"
270
 
271
- #: counter-options.php:431
 
272
  #: notes.php:88
273
  #@ cpd
274
  #@ default
@@ -300,7 +300,7 @@ msgstr "ta bort"
300
  msgid "edit"
301
  msgstr "redigera"
302
 
303
- #: counter-options.php:417
304
  #: massbots.php:46
305
  #@ cpd
306
  msgid "Mass Bots"
@@ -348,393 +348,397 @@ msgstr "uppdatera nästa"
348
  msgid "Mass Bots cleaned. %s counts deleted."
349
  msgstr "Massbotar rensades. %s stycken togs bort."
350
 
351
- #: counter-options.php:113
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:123
358
  #@ cpd
359
  msgid "Counter reseted."
360
  msgstr "Räknaren återställdes."
361
 
362
- #: counter-options.php:128
363
- #: counter-options.php:719
364
  #@ cpd
365
  msgid "UNINSTALL Count per Day"
366
  msgstr "AVINSTALLERA Count per Day"
367
 
368
- #: counter-options.php:133
369
- #: counter-options.php:134
370
- #: counter-options.php:135
371
  #, php-format
372
  #@ cpd
373
  msgid "Table %s deleted"
374
  msgstr "Tabellen %s raderades"
375
 
376
- #: counter-options.php:136
377
  #@ cpd
378
  msgid "Options deleted"
379
  msgstr "Inställningarna togs bort"
380
 
381
- #: counter-options.php:377
382
- #: counter-options.php:705
383
  #@ cpd
384
  msgid "Uninstall"
385
  msgstr "Avinstallera"
386
 
387
- #: counter-options.php:378
388
  #@ cpd
389
  msgid "Click here"
390
  msgstr "Klicka här"
391
 
392
- #: counter-options.php:378
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:748
398
  #@ cpd
399
  msgid "Counter"
400
  msgstr "Räknare"
401
 
402
- #: counter-options.php:752
403
  #@ cpd
404
  msgid "Online time"
405
  msgstr "Tid online"
406
 
407
- #: counter-options.php:753
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:756
413
  #@ cpd
414
  msgid "Logged on Users"
415
  msgstr "Inloggade användare"
416
 
417
- #: counter-options.php:758
418
  #@ cpd
419
  msgid "count too"
420
  msgstr "räkna med"
421
 
422
- #: counter-options.php:759
423
  #@ cpd
424
  msgid "until User Level"
425
  msgstr "upp till användarbehörighet"
426
 
427
- #: counter-options.php:770
428
  #@ cpd
429
  msgid "Auto counter"
430
  msgstr "Automatisk räknare"
431
 
432
- #: counter-options.php:771
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:774
438
  #@ cpd
439
  msgid "Bots to ignore"
440
  msgstr "Bots att ignorera"
441
 
442
- #: counter-options.php:778
443
  #@ cpd
444
  msgid "Anonymous IP"
445
  msgstr "Anonym IP-adress"
446
 
447
- #: counter-options.php:782
448
  #@ cpd
449
  msgid "Cache"
450
  msgstr "Cache"
451
 
452
- #: counter-options.php:783
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:786
458
  #@ cpd
459
  msgid "Clients and referrers"
460
  msgstr "Klienter och hänvisare"
461
 
462
- #: counter-options.php:789
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:799
468
  #@ default
469
  msgid "Dashboard"
470
  msgstr "Panel"
471
 
472
- #: counter-options.php:835
473
- #: counter-options.php:839
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:838
479
  #@ cpd
480
  msgid "Latest Counts - Posts"
481
  msgstr "Senaste träffar - Inlägg"
482
 
483
- #: counter-options.php:842
484
  #@ cpd
485
  msgid "Latest Counts - Days"
486
  msgstr "Senaste träffar - Dagar"
487
 
488
- #: counter-options.php:843
489
- #: counter-options.php:847
490
- #: counter-options.php:869
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:846
496
  #@ cpd
497
  msgid "Chart - Days"
498
  msgstr "Diagram - Dagar"
499
 
500
- #: counter-options.php:850
501
  #@ cpd
502
  msgid "Chart - Height"
503
  msgstr "Diagram - Höjd"
504
 
505
- #: counter-options.php:851
506
  #@ cpd
507
  msgid "Height of the biggest bar"
508
  msgstr "Den högsta stapelns höjd"
509
 
510
- #: counter-options.php:855
511
  #@ cpd
512
  msgid "Countries"
513
  msgstr "Länder"
514
 
515
- #: counter-options.php:856
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:861
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:864
526
  #@ cpd
527
  msgid "Referrers - Entries"
528
  msgstr "Hänvisare - Inlägg"
529
 
530
- #: counter-options.php:865
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:868
536
  #@ cpd
537
  msgid "Referrers - Days"
538
  msgstr "Hänvisare - Dagar"
539
 
540
- #: counter-options.php:872
541
  #@ cpd
542
  msgid "Local URLs"
543
  msgstr "Lokala URL:er"
544
 
545
- #: counter-options.php:873
546
  #@ cpd
547
  msgid "Show local referrers too."
548
  msgstr "Visa även lokala hänvisare."
549
 
550
- #: counter-options.php:880
551
  #@ default
552
  msgid "Posts"
553
  msgstr "Inlägg"
554
 
555
- #: counter-options.php:880
556
  #@ default
557
  msgid "Pages"
558
  msgstr "Sidor"
559
 
560
- #: counter-options.php:883
561
  #@ cpd
562
  msgid "Show in lists"
563
  msgstr "Visa i listor"
564
 
565
- #: counter-options.php:884
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:891
571
  #@ cpd
572
  msgid "Start Values"
573
  msgstr "Startvärden"
574
 
575
- #: counter-options.php:895
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:899
581
  #@ cpd
582
  msgid "Start date"
583
  msgstr "Startdatum"
584
 
585
- #: counter-options.php:900
586
  #@ cpd
587
  msgid "Your old Counter starts at?"
588
  msgstr "Din gamla räknare startar den?"
589
 
590
- #: counter-options.php:903
591
- #: counter-options.php:907
592
  #@ cpd
593
  msgid "Start count"
594
  msgstr "Starta räknaren"
595
 
596
- #: counter-options.php:904
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:908
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:945
607
  #@ cpd
608
  msgid "Debug mode"
609
  msgstr "Felsökningsläge"
610
 
611
- #: counter-options.php:947
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:952
617
  #@ cpd
618
  msgid "Update options"
619
  msgstr "Uppdatera inställningarna"
620
 
621
- #: counter-options.php:636
622
  #@ cpd
623
  msgid "GeoIP - Countries"
624
  msgstr "GeoIP - Länder"
625
 
626
- #: counter-options.php:645
627
  #@ cpd
628
  msgid "Update old counter data"
629
  msgstr "Uppdatera gammal räknardata"
630
 
631
- #: counter-options.php:639
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:657
637
  #@ cpd
638
  msgid "Update GeoIP database"
639
  msgstr "Uppdatera GeoIP-databasen"
640
 
641
- #: counter-options.php:652
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:662
647
  #@ cpd
648
  msgid "More informations about GeoIP"
649
  msgstr "Mer information om GeoIP"
650
 
651
- #: counter-options.php:421
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:430
 
658
  #@ cpd
659
  msgid "IP"
660
  msgstr "IP"
661
 
662
- #: counter-options.php:432
 
663
  #@ cpd
664
  msgid "Client"
665
  msgstr "Klient"
666
 
667
- #: counter-options.php:433
 
668
  #@ cpd
669
  msgid "Views"
670
  msgstr "Visningar"
671
 
672
- #: counter-options.php:448
673
- #: counter-options.php:464
 
674
  #, php-format
675
  #@ cpd
676
  msgid "Delete these %s counts"
677
  msgstr "Ta bort bort %s stycken"
678
 
679
- #: counter-options.php:553
680
- #: counter-options.php:561
681
  #@ cpd
682
  msgid "Clean the database"
683
  msgstr "Städa databasen"
684
 
685
- #: counter-options.php:557
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:686
691
- #: counter-options.php:696
692
  #@ cpd
693
  msgid "Reset the counter"
694
  msgstr "Nollställ räknaren"
695
 
696
- #: counter-options.php:689
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:708
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:709
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:712
712
  #@ cpd
713
  msgid "WARNING"
714
  msgstr "VARNING"
715
 
716
- #: counter-options.php:713
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:715
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:695
727
- #: counter-options.php:718
728
  #@ cpd
729
  msgid "Yes"
730
  msgstr "Ja"
731
 
732
- #: counter-options.php:719
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:727
738
  #@ cpd
739
  msgid "Support"
740
  msgstr "Support"
@@ -754,369 +758,462 @@ msgstr "Ny GeoIP-databas installerades."
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:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr ""
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr ""
767
 
768
- #: counter-core.php:1027
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:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr ""
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr ""
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr ""
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr ""
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr ""
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr ""
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr ""
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr ""
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr ""
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr ""
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr ""
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr ""
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr ""
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr ""
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr ""
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr ""
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr ""
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr ""
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr ""
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr ""
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr ""
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr ""
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr ""
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr ""
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr ""
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr ""
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr ""
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr ""
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr ""
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr ""
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr ""
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr ""
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr ""
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr ""
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr ""
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr ""
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-02-20 10:51+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:37+0000\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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter.php:231
24
+ #: counter.php:1407
25
  #@ cpd
26
  msgid "Total reads"
27
  msgstr "Antal läsningar totalt"
28
 
29
+ #: counter.php:232
30
+ #: counter.php:1408
31
  #@ cpd
32
  msgid "Reads today"
33
  msgstr "Läsningar idag"
34
 
35
+ #: counter.php:233
36
+ #: counter.php:1409
37
  #@ cpd
38
  msgid "Reads yesterday"
39
  msgstr "Läsningar igår"
40
 
41
+ #: counter.php:234
42
+ #: counter.php:1410
43
  #@ cpd
44
  msgid "Reads last week"
45
  msgstr "Läsningar förra veckan"
46
 
47
+ #: counter-core.php:1526
48
+ #: counter-options.php:869
49
+ #: counter.php:235
50
+ #: counter.php:1019
51
  #@ cpd
52
  msgid "Reads"
53
  msgstr "Visningar"
54
 
55
+ #: counter-core.php:777
56
+ #: counter.php:236
57
+ #: counter.php:1218
58
+ #: counter.php:1412
59
  #@ cpd
60
  msgid "Total visitors"
61
  msgstr "Antal besökare totalt"
62
 
63
+ #: counter.php:237
64
+ #: counter.php:1418
65
  #@ cpd
66
  msgid "Visitors currently online"
67
  msgstr "Besökare online nu"
68
 
69
+ #: counter.php:238
70
+ #: counter.php:1413
71
  #@ cpd
72
  msgid "Visitors today"
73
  msgstr "Besökare idag"
74
 
75
+ #: counter.php:239
76
+ #: counter.php:1414
77
  #@ cpd
78
  msgid "Visitors yesterday"
79
  msgstr "Besökare igår"
80
 
81
+ #: counter.php:240
82
+ #: counter.php:1415
83
  #@ cpd
84
  msgid "Visitors last week"
85
  msgstr "Besökare förra veckan"
86
 
87
+ #: counter-core.php:783
88
+ #: counter.php:242
89
+ #: counter.php:343
90
+ #: counter.php:1220
91
+ #: counter.php:1417
92
  #: userperspan.php:46
93
  #@ cpd
94
  msgid "Visitors per day"
95
  msgstr "Besök per dag"
96
 
97
+ #: counter.php:969
98
+ #: counter.php:1419
 
99
  #@ cpd
100
  msgid "Counter starts on"
101
  msgstr "Räknaren startar den"
102
 
103
+ #: counter.php:342
104
  #@ cpd
105
  msgid "Reads per day"
106
  msgstr "Läsningar per dag"
107
 
108
+ #: counter.php:890
109
  #: notes.php:55
110
  #: notes.php:89
111
  #@ cpd
112
  msgid "Notes"
113
  msgstr "Anteckningar"
114
 
115
+ #: counter.php:433
116
+ #: counter.php:1249
117
  #@ cpd
118
  msgid "Map"
119
  msgstr "Karta"
120
 
121
+ #: counter.php:771
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:888
128
  #@ default
129
  msgid "Show"
130
  msgstr "Visa"
131
 
132
+ #: counter.php:958
133
  #@ cpd
134
  msgid "Other"
135
  msgstr "Övriga"
136
 
137
+ #: counter.php:989
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:1130
144
  #@ default
145
  msgid "Edit Post"
146
  msgstr "Redigera inlägg"
147
 
148
+ #: counter.php:1139
149
  #@ default
150
  msgid "Category"
151
  msgstr "Kategori"
152
 
153
+ #: counter.php:1142
154
  #@ default
155
  msgid "Tag"
156
  msgstr "Tag"
161
  msgid "Front page displays"
162
  msgstr "Visningar av framsidan"
163
 
164
+ #: counter-core.php:641
165
+ #: counter-options.php:409
 
166
  #@ default
167
  msgid "Settings"
168
  msgstr "Inställningar"
169
 
170
+ #: counter-core.php:742
171
  #, php-format
172
  #@ cpd
173
  msgid "Time for Count per Day: <code>%s</code>."
174
  msgstr "Tid för Count per Day: <code>%s</code>."
175
 
176
+ #: counter-core.php:743
177
  #@ cpd
178
  msgid "Bug? Problem? Question? Hint? Praise?"
179
  msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
180
 
181
+ #: counter-core.php:744
182
  #, php-format
183
  #@ cpd
184
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
185
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
186
 
187
+ #: counter-core.php:745
188
  #@ default
189
  msgid "License"
190
  msgstr "Licens"
191
 
192
+ #: counter-core.php:778
193
  #@ cpd
194
  msgid "Visitors online"
195
  msgstr "Besökare online"
196
 
197
+ #: counter-core.php:779
198
+ #: counter.php:1416
199
  #@ cpd
200
  msgid "Visitors per month"
201
  msgstr "Besökare per månad"
202
 
203
+ #: counter-core.php:780
204
+ #: counter.php:1411
205
  #@ cpd
206
  msgid "Reads per month"
207
  msgstr "Läsningar per månad"
208
 
209
+ #: counter-core.php:781
210
+ #: counter-options.php:924
211
  #@ cpd
212
  msgid "Visitors per post"
213
  msgstr "Besökare per inlägg"
214
 
215
+ #: counter-core.php:782
216
  #@ cpd
217
  msgid "Latest Counts"
218
  msgstr "Senaste besöken"
219
 
220
+ #: counter-core.php:785
221
  #@ default
222
  msgid "Plugin"
223
  msgstr "Plugin"
224
 
225
+ #: counter-core.php:788
226
+ #: counter-options.php:950
227
  #@ cpd
228
  msgid "Browsers"
229
  msgstr "Webbläsare"
230
 
231
+ #: counter-core.php:789
232
  #@ cpd
233
  msgid "Referrer"
234
  msgstr "Hänvisare"
235
 
236
+ #: counter-core.php:793
237
  #@ cpd
238
  msgid "Reads per Country"
239
  msgstr "Visningar per land"
240
 
241
+ #: counter-core.php:794
242
  #@ cpd
243
  msgid "Visitors per Country"
244
  msgstr "Besökare per land"
245
 
246
+ #: counter-core.php:809
247
+ #: counter.php:1334
248
  #@ cpd
249
  msgid "Statistics"
250
  msgstr "Statistik"
251
 
252
+ #: counter.php:1406
253
  #@ cpd
254
  msgid "This post"
255
  msgstr "Det här inlägget"
256
 
257
+ #: counter.php:1431
258
  #@ default
259
  msgid "Title"
260
  msgstr "Titel"
261
 
262
+ #: counter-options.php:434
263
+ #: counter-options.php:498
264
  #: notes.php:84
265
  #: userperspan.php:56
266
  #@ cpd
267
  msgid "show"
268
  msgstr "visa"
269
 
270
+ #: counter-options.php:443
271
+ #: counter-options.php:507
272
  #: notes.php:88
273
  #@ cpd
274
  #@ default
300
  msgid "edit"
301
  msgstr "redigera"
302
 
303
+ #: counter-options.php:429
304
  #: massbots.php:46
305
  #@ cpd
306
  msgid "Mass Bots"
348
  msgid "Mass Bots cleaned. %s counts deleted."
349
  msgstr "Massbotar rensades. %s stycken togs bort."
350
 
351
+ #: counter-options.php:118
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:128
358
  #@ cpd
359
  msgid "Counter reseted."
360
  msgstr "Räknaren återställdes."
361
 
362
+ #: counter-options.php:133
363
+ #: counter-options.php:803
364
  #@ cpd
365
  msgid "UNINSTALL Count per Day"
366
  msgstr "AVINSTALLERA Count per Day"
367
 
368
+ #: counter-options.php:138
369
+ #: counter-options.php:139
370
+ #: counter-options.php:140
371
  #, php-format
372
  #@ cpd
373
  msgid "Table %s deleted"
374
  msgstr "Tabellen %s raderades"
375
 
376
+ #: counter-options.php:141
377
  #@ cpd
378
  msgid "Options deleted"
379
  msgstr "Inställningarna togs bort"
380
 
381
+ #: counter-options.php:382
382
+ #: counter-options.php:789
383
  #@ cpd
384
  msgid "Uninstall"
385
  msgstr "Avinstallera"
386
 
387
+ #: counter-options.php:383
388
  #@ cpd
389
  msgid "Click here"
390
  msgstr "Klicka här"
391
 
392
+ #: counter-options.php:383
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:828
398
  #@ cpd
399
  msgid "Counter"
400
  msgstr "Räknare"
401
 
402
+ #: counter-options.php:832
403
  #@ cpd
404
  msgid "Online time"
405
  msgstr "Tid online"
406
 
407
+ #: counter-options.php:833
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:836
413
  #@ cpd
414
  msgid "Logged on Users"
415
  msgstr "Inloggade användare"
416
 
417
+ #: counter-options.php:838
418
  #@ cpd
419
  msgid "count too"
420
  msgstr "räkna med"
421
 
422
+ #: counter-options.php:839
423
  #@ cpd
424
  msgid "until User Level"
425
  msgstr "upp till användarbehörighet"
426
 
427
+ #: counter-options.php:850
428
  #@ cpd
429
  msgid "Auto counter"
430
  msgstr "Automatisk räknare"
431
 
432
+ #: counter-options.php:851
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:854
438
  #@ cpd
439
  msgid "Bots to ignore"
440
  msgstr "Bots att ignorera"
441
 
442
+ #: counter-options.php:858
443
  #@ cpd
444
  msgid "Anonymous IP"
445
  msgstr "Anonym IP-adress"
446
 
447
+ #: counter-options.php:862
448
  #@ cpd
449
  msgid "Cache"
450
  msgstr "Cache"
451
 
452
+ #: counter-options.php:863
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:866
458
  #@ cpd
459
  msgid "Clients and referrers"
460
  msgstr "Klienter och hänvisare"
461
 
462
+ #: counter-options.php:869
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:889
468
  #@ default
469
  msgid "Dashboard"
470
  msgstr "Panel"
471
 
472
+ #: counter-options.php:925
473
+ #: counter-options.php:929
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:928
479
  #@ cpd
480
  msgid "Latest Counts - Posts"
481
  msgstr "Senaste träffar - Inlägg"
482
 
483
+ #: counter-options.php:932
484
  #@ cpd
485
  msgid "Latest Counts - Days"
486
  msgstr "Senaste träffar - Dagar"
487
 
488
+ #: counter-options.php:933
489
+ #: counter-options.php:937
490
+ #: counter-options.php:959
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:936
496
  #@ cpd
497
  msgid "Chart - Days"
498
  msgstr "Diagram - Dagar"
499
 
500
+ #: counter-options.php:940
501
  #@ cpd
502
  msgid "Chart - Height"
503
  msgstr "Diagram - Höjd"
504
 
505
+ #: counter-options.php:941
506
  #@ cpd
507
  msgid "Height of the biggest bar"
508
  msgstr "Den högsta stapelns höjd"
509
 
510
+ #: counter-options.php:945
511
  #@ cpd
512
  msgid "Countries"
513
  msgstr "Länder"
514
 
515
+ #: counter-options.php:946
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:951
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:954
526
  #@ cpd
527
  msgid "Referrers - Entries"
528
  msgstr "Hänvisare - Inlägg"
529
 
530
+ #: counter-options.php:955
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:958
536
  #@ cpd
537
  msgid "Referrers - Days"
538
  msgstr "Hänvisare - Dagar"
539
 
540
+ #: counter-options.php:962
541
  #@ cpd
542
  msgid "Local URLs"
543
  msgstr "Lokala URL:er"
544
 
545
+ #: counter-options.php:963
546
  #@ cpd
547
  msgid "Show local referrers too."
548
  msgstr "Visa även lokala hänvisare."
549
 
550
+ #: counter-options.php:970
551
  #@ default
552
  msgid "Posts"
553
  msgstr "Inlägg"
554
 
555
+ #: counter-options.php:970
556
  #@ default
557
  msgid "Pages"
558
  msgstr "Sidor"
559
 
560
+ #: counter-options.php:973
561
  #@ cpd
562
  msgid "Show in lists"
563
  msgstr "Visa i listor"
564
 
565
+ #: counter-options.php:974
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:981
571
  #@ cpd
572
  msgid "Start Values"
573
  msgstr "Startvärden"
574
 
575
+ #: counter-options.php:985
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:989
581
  #@ cpd
582
  msgid "Start date"
583
  msgstr "Startdatum"
584
 
585
+ #: counter-options.php:990
586
  #@ cpd
587
  msgid "Your old Counter starts at?"
588
  msgstr "Din gamla räknare startar den?"
589
 
590
+ #: counter-options.php:993
591
+ #: counter-options.php:997
592
  #@ cpd
593
  msgid "Start count"
594
  msgstr "Starta räknaren"
595
 
596
+ #: counter-options.php:994
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:998
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:1035
607
  #@ cpd
608
  msgid "Debug mode"
609
  msgstr "Felsökningsläge"
610
 
611
+ #: counter-options.php:1037
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:1042
617
  #@ cpd
618
  msgid "Update options"
619
  msgstr "Uppdatera inställningarna"
620
 
621
+ #: counter-options.php:720
622
  #@ cpd
623
  msgid "GeoIP - Countries"
624
  msgstr "GeoIP - Länder"
625
 
626
+ #: counter-options.php:729
627
  #@ cpd
628
  msgid "Update old counter data"
629
  msgstr "Uppdatera gammal räknardata"
630
 
631
+ #: counter-options.php:723
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:741
637
  #@ cpd
638
  msgid "Update GeoIP database"
639
  msgstr "Uppdatera GeoIP-databasen"
640
 
641
+ #: counter-options.php:736
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:746
647
  #@ cpd
648
  msgid "More informations about GeoIP"
649
  msgstr "Mer information om GeoIP"
650
 
651
+ #: counter-options.php:433
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:442
658
+ #: counter-options.php:506
659
  #@ cpd
660
  msgid "IP"
661
  msgstr "IP"
662
 
663
+ #: counter-options.php:444
664
+ #: counter-options.php:508
665
  #@ cpd
666
  msgid "Client"
667
  msgstr "Klient"
668
 
669
+ #: counter-options.php:445
670
+ #: counter-options.php:509
671
  #@ cpd
672
  msgid "Views"
673
  msgstr "Visningar"
674
 
675
+ #: counter-options.php:460
676
+ #: counter-options.php:476
677
+ #: counter-options.php:523
678
  #, php-format
679
  #@ cpd
680
  msgid "Delete these %s counts"
681
  msgstr "Ta bort bort %s stycken"
682
 
683
+ #: counter-options.php:637
684
+ #: counter-options.php:645
685
  #@ cpd
686
  msgid "Clean the database"
687
  msgstr "Städa databasen"
688
 
689
+ #: counter-options.php:641
690
  #@ cpd
691
  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."
692
  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."
693
 
694
+ #: counter-options.php:770
695
+ #: counter-options.php:780
696
  #@ cpd
697
  msgid "Reset the counter"
698
  msgstr "Nollställ räknaren"
699
 
700
+ #: counter-options.php:773
701
  #@ cpd
702
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
703
  msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
704
 
705
+ #: counter-options.php:792
706
  #@ cpd
707
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
708
  msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
709
 
710
+ #: counter-options.php:793
711
  #@ cpd
712
  msgid "Here you can delete the tables and disable \"Count per Day\"."
713
  msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
714
 
715
+ #: counter-options.php:796
716
  #@ cpd
717
  msgid "WARNING"
718
  msgstr "VARNING"
719
 
720
+ #: counter-options.php:797
721
  #@ cpd
722
  msgid "These tables (with ALL counter data) will be deleted."
723
  msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
724
 
725
+ #: counter-options.php:799
726
  #@ cpd
727
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
728
  msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
729
 
730
+ #: counter-options.php:779
731
+ #: counter-options.php:802
732
  #@ cpd
733
  msgid "Yes"
734
  msgstr "Ja"
735
 
736
+ #: counter-options.php:803
737
  #@ cpd
738
  msgid "You are sure to disable Count per Day and delete all data?"
739
  msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
740
 
741
+ #: counter-options.php:811
742
  #@ cpd
743
  msgid "Support"
744
  msgstr "Support"
758
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
759
  msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr ""
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr ""
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr ""
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr ""
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr ""
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr ""
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr ""
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr ""
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr ""
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr ""
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr ""
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr ""
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr ""
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr ""
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr ""
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr ""
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr ""
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr ""
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr ""
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr ""
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr ""
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr ""
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr ""
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr ""
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr ""
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr ""
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr ""
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr ""
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr ""
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr ""
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr ""
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr ""
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr ""
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr ""
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr ""
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr ""
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr ""
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-tr_TR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-05-08 08:18:54+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -42,529 +42,534 @@ msgstr "sonraki güncelleme"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Botlar temizlendi. %s adet silindi."
44
 
45
- #: counter-options.php:113
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Veritabanı temizlendi. %s satır silindi."
50
 
51
- #: counter-options.php:123
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Sayaç sıfırlandı."
55
 
56
- #: counter-options.php:128
57
- #: counter-options.php:719
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "Count per Day'i kaldır."
61
 
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #: counter-options.php:135
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "%s tablo silindi."
69
 
70
- #: counter-options.php:136
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Seçenekler silindi"
74
 
75
- #: counter-options.php:377
76
- #: counter-options.php:705
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Kaldır"
80
 
81
- #: counter-options.php:378
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Burayı tıklayın"
85
 
86
- #: counter-options.php:378
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "\"Count per Day\" kaldırmak ve etkisizleştirmek için."
90
 
91
- #: counter-options.php:748
92
  #@ cpd
93
  msgid "Counter"
94
  msgstr "Sayaç"
95
 
96
- #: counter-options.php:752
97
  #@ cpd
98
  msgid "Online time"
99
  msgstr "Online süresi"
100
 
101
- #: counter-options.php:753
102
  #@ cpd
103
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
104
  msgstr "Online sayaç için saniye. Kontrol sayfasındaki \"Visitors online\" kullan."
105
 
106
- #: counter-options.php:756
107
  #@ cpd
108
  msgid "Logged on Users"
109
  msgstr "Giriş yapmış kullanıcılar"
110
 
111
- #: counter-options.php:758
112
  #@ cpd
113
  msgid "count too"
114
  msgstr "saymak"
115
 
116
- #: counter-options.php:759
117
  #@ cpd
118
  msgid "until User Level"
119
  msgstr "kullanıcı seviye kadar"
120
 
121
- #: counter-options.php:770
122
  #@ cpd
123
  msgid "Auto counter"
124
  msgstr "Otomatik sayaç"
125
 
126
- #: counter-options.php:771
127
  #@ cpd
128
  msgid "Counts automatically single-posts and pages, no changes on template needed."
129
  msgstr "Otomatik olarak tek-gönderileri ve sayfaları sayar, şablonda değişiklik gerekmez."
130
 
131
- #: counter-options.php:774
132
  #@ cpd
133
  msgid "Bots to ignore"
134
  msgstr "Botları önemseme"
135
 
136
- #: counter-options.php:778
137
  #@ cpd
138
  msgid "Anonymous IP"
139
  msgstr "Anonim IP"
140
 
141
- #: counter-options.php:782
142
  #@ cpd
143
  msgid "Cache"
144
  msgstr "Önbellek"
145
 
146
- #: counter-options.php:783
147
  #@ cpd
148
  msgid "I use a cache plugin. Count these visits with ajax."
149
  msgstr "Önbellek eklentisi kullanıyorum. Ziyaretçileri AJAX ile say."
150
 
151
- #: counter-options.php:786
152
  #@ cpd
153
  msgid "Clients and referrers"
154
  msgstr "Yönlendirmeler ve kullanıcılar"
155
 
156
- #: counter-options.php:789
157
  #@ cpd
158
  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."
159
  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."
160
 
161
- #: counter-core.php:1464
162
- #: counter-options.php:789
163
- #: counter.php:222
164
- #: counter.php:974
165
  #@ cpd
166
  msgid "Reads"
167
  msgstr "Okunma"
168
 
169
- #: counter-options.php:799
170
  #@ default
171
  msgid "Dashboard"
172
  msgstr "Kontrol paneli"
173
 
174
- #: counter-core.php:792
175
- #: counter-options.php:834
176
  #@ cpd
177
  msgid "Visitors per post"
178
  msgstr "Gönderi başına ziyaretçi"
179
 
180
- #: counter-options.php:835
181
- #: counter-options.php:839
182
  #@ cpd
183
  msgid "How many posts do you want to see on dashboard page?"
184
  msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
185
 
186
- #: counter-options.php:838
187
  #@ cpd
188
  msgid "Latest Counts - Posts"
189
  msgstr "Son sayım - Gönderi"
190
 
191
- #: counter-options.php:842
192
  #@ cpd
193
  msgid "Latest Counts - Days"
194
  msgstr "Son sayaç - Gün"
195
 
196
- #: counter-options.php:843
197
- #: counter-options.php:847
198
- #: counter-options.php:869
199
  #@ cpd
200
  msgid "How many days do you want look back?"
201
  msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
202
 
203
- #: counter-options.php:846
204
  #@ cpd
205
  msgid "Chart - Days"
206
  msgstr "Grafik - Gün"
207
 
208
- #: counter-options.php:850
209
  #@ cpd
210
  msgid "Chart - Height"
211
  msgstr "Grafik - Yükseklik"
212
 
213
- #: counter-options.php:851
214
  #@ cpd
215
  msgid "Height of the biggest bar"
216
  msgstr "En büyük bar'ın yüksekliği"
217
 
218
- #: counter-options.php:855
219
  #@ cpd
220
  msgid "Countries"
221
  msgstr "Ülkeler"
222
 
223
- #: counter-options.php:856
224
  #@ cpd
225
  msgid "How many countries do you want to see on dashboard page?"
226
  msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
227
 
228
- #: counter-core.php:799
229
- #: counter-options.php:860
230
  #@ cpd
231
  msgid "Browsers"
232
  msgstr "Tarayıcılar"
233
 
234
- #: counter-options.php:861
235
  #@ cpd
236
  msgid "Substring of the user agent, separated by comma"
237
  msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
238
 
239
- #: counter-options.php:872
240
  #@ cpd
241
  msgid "Local URLs"
242
  msgstr "Websitenizdeki URL'ler"
243
 
244
- #: counter-options.php:873
245
  #@ cpd
246
  msgid "Show local referrers too."
247
  msgstr "Websitenizden yönlenenler."
248
 
249
- #: counter-options.php:880
250
  #@ default
251
  msgid "Posts"
252
  msgstr "Gönderiler"
253
 
254
- #: counter-options.php:880
255
  #@ default
256
  msgid "Pages"
257
  msgstr "Sayfalar"
258
 
259
- #: counter-options.php:883
260
  #@ cpd
261
  msgid "Show in lists"
262
  msgstr "Liste içinde göster"
263
 
264
- #: counter-options.php:884
265
  #@ cpd
266
  msgid "Show \"Reads per Post\" in a new column in post management views."
267
  msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
268
 
269
- #: counter-options.php:891
270
  #@ cpd
271
  msgid "Start Values"
272
  msgstr "Başlangıç değeri"
273
 
274
- #: counter-options.php:895
275
  #@ cpd
276
  msgid "Here you can change the date of first count and add a start count."
277
  msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
278
 
279
- #: counter-options.php:899
280
  #@ cpd
281
  msgid "Start date"
282
  msgstr "Başlama tarihi"
283
 
284
- #: counter-options.php:900
285
  #@ cpd
286
  msgid "Your old Counter starts at?"
287
  msgstr "Eski sayacının başlangıç değeri ?"
288
 
289
- #: counter-options.php:903
290
- #: counter-options.php:907
291
  #@ cpd
292
  msgid "Start count"
293
  msgstr "Başlama sayacı"
294
 
295
- #: counter-options.php:904
296
  #@ cpd
297
  msgid "Add this value to \"Total visitors\"."
298
  msgstr "Bu değeri ekle \"Total visitors\"."
299
 
300
- #: counter-options.php:908
301
  #@ cpd
302
  msgid "Add this value to \"Total reads\"."
303
  msgstr "Bu değeri ekle \"Total reads\"."
304
 
305
- #: counter-options.php:945
306
  #@ cpd
307
  msgid "Debug mode"
308
  msgstr "Problem çözme modu"
309
 
310
- #: counter-options.php:947
311
  #@ cpd
312
  msgid "Show debug informations at the bottom of all pages."
313
  msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
314
 
315
- #: counter-options.php:952
316
  #@ cpd
317
  msgid "Update options"
318
  msgstr "Seçenekleri güncelle"
319
 
320
- #: counter-options.php:636
321
  #@ cpd
322
  msgid "GeoIP - Countries"
323
  msgstr "GeoIP - Ülkeler"
324
 
325
- #: counter-options.php:645
326
  #@ cpd
327
  msgid "Update old counter data"
328
  msgstr "Eski sayaç verilerini güncelle"
329
 
330
- #: counter-options.php:639
331
  #@ cpd
332
  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!"
333
  msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
334
 
335
- #: counter-options.php:657
336
  #@ cpd
337
  msgid "Update GeoIP database"
338
  msgstr "GeoIP veritabanını günce.elle."
339
 
340
- #: counter-options.php:652
341
  #@ cpd
342
  msgid "Download a new version of GeoIP.dat file."
343
  msgstr "En son GeoIP.dat dosyasını indir."
344
 
345
- #: counter-options.php:662
346
  #@ cpd
347
  msgid "More informations about GeoIP"
348
  msgstr "GeoIP hakkında daha fazla bilgi"
349
 
350
- #: counter-options.php:417
351
  #: massbots.php:46
352
  #@ cpd
353
  msgid "Mass Bots"
354
  msgstr "Kitle botları"
355
 
356
- #: counter-options.php:421
357
  #, php-format
358
  #@ cpd
359
  msgid "Show all IPs with more than %s page views per day"
360
  msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
361
 
362
- #: counter-options.php:422
 
363
  #: notes.php:84
364
  #: userperspan.php:56
365
  #@ cpd
366
  msgid "show"
367
  msgstr "göster"
368
 
369
- #: counter-options.php:430
 
370
  #@ cpd
371
  msgid "IP"
372
  msgstr "IP"
373
 
374
- #: counter-options.php:431
 
375
  #: notes.php:88
376
  #@ cpd
377
  #@ default
378
  msgid "Date"
379
  msgstr "Tarih"
380
 
381
- #: counter-options.php:432
 
382
  #@ cpd
383
  msgid "Client"
384
  msgstr "Müşteri/Kullanıcı"
385
 
386
- #: counter-options.php:433
 
387
  #@ cpd
388
  msgid "Views"
389
  msgstr "Görünümler"
390
 
391
- #: counter-options.php:448
392
- #: counter-options.php:464
 
393
  #, php-format
394
  #@ cpd
395
  msgid "Delete these %s counts"
396
  msgstr "%s sayaçları sil"
397
 
398
- #: counter-options.php:553
399
- #: counter-options.php:561
400
  #@ cpd
401
  msgid "Clean the database"
402
  msgstr "Veritabanını temizle."
403
 
404
- #: counter-options.php:557
405
  #@ cpd
406
  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."
407
  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."
408
 
409
- #: counter-options.php:686
410
- #: counter-options.php:696
411
  #@ cpd
412
  msgid "Reset the counter"
413
  msgstr "Sayacı resetle"
414
 
415
- #: counter-options.php:689
416
  #@ cpd
417
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
418
  msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
419
 
420
- #: counter-options.php:708
421
  #@ cpd
422
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
423
  msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
424
 
425
- #: counter-options.php:709
426
  #@ cpd
427
  msgid "Here you can delete the tables and disable \"Count per Day\"."
428
  msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
429
 
430
- #: counter-options.php:712
431
  #@ cpd
432
  msgid "WARNING"
433
  msgstr "UYARI"
434
 
435
- #: counter-options.php:713
436
  #@ cpd
437
  msgid "These tables (with ALL counter data) will be deleted."
438
  msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
439
 
440
- #: counter-options.php:715
441
  #@ cpd
442
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
443
  msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
444
 
445
- #: counter-options.php:695
446
- #: counter-options.php:718
447
  #@ cpd
448
  msgid "Yes"
449
  msgstr "Evet"
450
 
451
- #: counter-options.php:719
452
  #@ cpd
453
  msgid "You are sure to disable Count per Day and delete all data?"
454
  msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
455
 
456
- #: counter-options.php:727
457
  #@ cpd
458
  msgid "Support"
459
  msgstr "Destek"
460
 
461
- #: counter.php:218
462
- #: counter.php:1356
463
  #@ cpd
464
  msgid "Total reads"
465
  msgstr "Toplam okunan."
466
 
467
- #: counter.php:219
468
- #: counter.php:1357
469
  #@ cpd
470
  msgid "Reads today"
471
  msgstr "Bugün okunanlar"
472
 
473
- #: counter.php:220
474
- #: counter.php:1358
475
  #@ cpd
476
  msgid "Reads yesterday"
477
  msgstr "Dün okunanlar"
478
 
479
- #: counter.php:221
480
- #: counter.php:1359
481
  #@ cpd
482
  msgid "Reads last week"
483
  msgstr "Geçen hafta okunanlar"
484
 
485
- #: counter-core.php:788
486
- #: counter.php:223
487
- #: counter.php:1167
488
- #: counter.php:1361
489
  #@ cpd
490
  msgid "Total visitors"
491
  msgstr "Toplam ziyaretçi"
492
 
493
- #: counter.php:224
494
- #: counter.php:1367
495
  #@ cpd
496
  msgid "Visitors currently online"
497
  msgstr "Şu anda online olan ziyatçiler"
498
 
499
- #: counter.php:225
500
- #: counter.php:1362
501
  #@ cpd
502
  msgid "Visitors today"
503
  msgstr "Bugün kü ziyaretçiler"
504
 
505
- #: counter.php:226
506
- #: counter.php:1363
507
  #@ cpd
508
  msgid "Visitors yesterday"
509
  msgstr "Dünkü ziyaretçiler"
510
 
511
- #: counter.php:227
512
- #: counter.php:1364
513
  #@ cpd
514
  msgid "Visitors last week"
515
  msgstr "Geçen haftaki ziyaretçiler"
516
 
517
- #: counter-core.php:794
518
- #: counter.php:229
519
- #: counter.php:328
520
- #: counter.php:1169
521
- #: counter.php:1366
522
  #: userperspan.php:46
523
  #@ cpd
524
  msgid "Visitors per day"
525
  msgstr "Günlük ziyaretçi"
526
 
527
- #: counter.php:230
528
- #: counter.php:924
529
- #: counter.php:1368
530
  #@ cpd
531
  msgid "Counter starts on"
532
  msgstr "Sayaç başlıyacak"
533
 
534
- #: counter.php:875
535
  #: notes.php:55
536
  #: notes.php:89
537
  #@ cpd
538
  msgid "Notes"
539
  msgstr "Notlar"
540
 
541
- #: counter.php:756
542
  #, php-format
543
  #@ cpd
544
  msgid "The %s most visited posts in last %s days:"
545
  msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
546
 
547
- #: counter.php:873
548
  #@ default
549
  msgid "Show"
550
  msgstr "Göster"
551
 
552
- #: counter.php:913
553
  #@ cpd
554
  msgid "Other"
555
  msgstr "Diğer"
556
 
557
- #: counter.php:1085
558
  #@ default
559
  msgid "Edit Post"
560
  msgstr "Gönderi düzenle"
561
 
562
- #: counter.php:1094
563
  #@ default
564
  msgid "Category"
565
  msgstr "Katogori"
566
 
567
- #: counter.php:1097
568
  #@ default
569
  msgid "Tag"
570
  msgstr "Таg"
@@ -575,95 +580,94 @@ msgstr "Таg"
575
  msgid "Front page displays"
576
  msgstr "Ön sayfa görüntüleri"
577
 
578
- #: counter-core.php:652
579
- #: counter-options.php:401
580
- #: counter-options.php:740
581
  #@ default
582
  msgid "Settings"
583
  msgstr "Ayarlar"
584
 
585
- #: counter-core.php:753
586
  #, php-format
587
  #@ cpd
588
  msgid "Time for Count per Day: <code>%s</code>."
589
  msgstr "Günlük sayım için zaman: <code>%s</code>."
590
 
591
- #: counter-core.php:754
592
  #@ cpd
593
  msgid "Bug? Problem? Question? Hint? Praise?"
594
  msgstr "Problem? Soru? Fikir? Övgü?"
595
 
596
- #: counter-core.php:755
597
  #, php-format
598
  #@ cpd
599
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
600
  msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
601
 
602
- #: counter-core.php:756
603
  #@ default
604
  msgid "License"
605
  msgstr "Lisans"
606
 
607
- #: counter.php:327
608
  #@ cpd
609
  msgid "Reads per day"
610
  msgstr "Günlük ortalama okunma"
611
 
612
- #: counter-core.php:790
613
- #: counter.php:1365
614
  #@ cpd
615
  msgid "Visitors per month"
616
  msgstr "Aylık ziyaretçi"
617
 
618
- #: counter-core.php:791
619
- #: counter.php:1360
620
  #@ cpd
621
  msgid "Reads per month"
622
  msgstr "Aylık okunma"
623
 
624
- #: counter-core.php:793
625
  #@ cpd
626
  msgid "Latest Counts"
627
  msgstr "Son sayım"
628
 
629
- #: counter-core.php:796
630
  #@ default
631
  msgid "Plugin"
632
  msgstr "Eklenti"
633
 
634
- #: counter-core.php:800
635
  #@ cpd
636
  msgid "Referrer"
637
  msgstr "Yönlendirme"
638
 
639
- #: counter-core.php:804
640
  #@ cpd
641
  msgid "Reads per Country"
642
  msgstr "Ülke bazında okuma"
643
 
644
- #: counter-core.php:805
645
  #@ cpd
646
  msgid "Visitors per Country"
647
  msgstr "Ülke bazında ziyaretçi"
648
 
649
- #: counter-core.php:820
650
- #: counter.php:1283
651
  #@ cpd
652
  msgid "Statistics"
653
  msgstr "İstatislikler"
654
 
655
- #: counter.php:418
656
- #: counter.php:1198
657
  #@ cpd
658
  msgid "Map"
659
  msgstr "Harita"
660
 
661
- #: counter.php:1355
662
  #@ cpd
663
  msgid "This post"
664
  msgstr "Bu gönderi"
665
 
666
- #: counter.php:1380
667
  #@ default
668
  msgid "Title"
669
  msgstr "Başlık"
@@ -728,395 +732,488 @@ msgstr "Gönderi ID"
728
  msgid "no data found"
729
  msgstr "veri bulunamadı"
730
 
731
- #: counter-options.php:864
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Yönlendirmeleri - Girişler"
735
 
736
- #: counter-options.php:865
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
740
 
741
- #: counter-options.php:868
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Yönlendirmeler - Günler"
745
 
746
- #: counter.php:944
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "Son %s günkü yönlendirmeler:"
751
 
752
- #: counter-core.php:789
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Online ziyaretçiler."
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" %s sürümüne güncellendi."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Yedekleme başarısız ! Dosya açılamadı."
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "%s adet giriş yedeklme işleminde. Her nokta, %s giriş uygundur."
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "%s süre içerisinde sayaç tablosu yedeklendi."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "%s'de sayaç seçenekleri ve koleksiyon kaydedildi."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Toplama devam ediyor..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Yazı başına ziyaretçi"
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Eski verileri sil..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "%s'den bu yada sayaç girişleri toplandı ve sayaç tablosu optimize edildi."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "\"Count per Day\" yüklemesi kontrol edildi."
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Araçlar"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "URL'yi kaydet, sorgu dizisini değil."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Kimi görebilirsiniz"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "Özel"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "ve yüksek istatistikleri görmek için izin verilir."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "%s kullanıcının ihtiyacı olan %s kapasiteyi ayarlayın:"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Stil"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "Önyüzde stil yok"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Önyüze \"counter.css\" stilini yükleme."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Yedek"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "İzin için giriş"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Kaç adet giriş her geçiş için saklanmalıdır ? Normal değeri : 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr "Eğer PHP hafıza limiti 50 MB'den az ise veboş sayfa veya hata mesajı alıyorsanız, ufak değerleri deneyin."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  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)"
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Veritabanını yedekle"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Eski verileri toplama"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "Sayı tablonuzın şu anki büyüklüğü %s 'dir."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  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."
910
 
911
- #: counter-options.php:607
912
  #@ cpd
913
  msgid "Normally new data will be added to the collection."
914
  msgstr "Normalde, yeni veriler kolsiyona ekliniyor olacak."
915
 
916
- #: counter-options.php:613
917
  #@ cpd
918
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
919
  msgstr "Eski koleksiyonu sil ve yeni bir tane oluştur. Bu yeni koleysiyonun içinde sadece şu anki sayaç tablosundaki veriler olsun."
920
 
921
- #: counter-options.php:614
922
  #, php-format
923
  #@ cpd
924
  msgid "All collected data until %s will deleted."
925
  msgstr "%s tarihine kadarki tüm koleksiyon verileri silindi."
926
 
927
- #: counter-options.php:619
928
  #, php-format
929
  #@ cpd
930
  msgid "Keep entries of last %s full months + current month in counter table."
931
  msgstr "%s ay için son girişleri sakla + sayaç tablosundaki bu ay."
932
 
933
- #: counter-options.php:670
934
  #@ cpd
935
  msgid "ReActivation"
936
  msgstr "Yeniden etkinleştirme"
937
 
938
- #: counter-options.php:673
939
  #@ cpd
940
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
941
  msgstr "Burada el ile yükleme işlevlerine başlayabilirsiniz. <br/> Eklentiyi devre dışı bırakmak ve yeniden aktif etkmek aynıdır."
942
 
943
- #: counter-options.php:678
944
  #@ cpd
945
  msgid "ReActivate the plugin"
946
  msgstr "Eklentiyi tekrar etkinleştirmek."
947
 
948
- #: counter.php:228
949
- #: counter.php:998
950
  #@ cpd
951
  msgid "Visitors"
952
  msgstr "Ziyaretçiler"
953
 
954
- #: counter.php:231
955
- #: counter.php:232
956
  #@ cpd
957
  msgid "Most visited day"
958
  msgstr "En ziyaret edilen gün"
959
 
960
- #: counter.php:1399
961
  #@ cpd
962
  msgid "drag and drop to sort"
963
  msgstr "Sıralamak için sürekle bırak"
964
 
965
- #: counter-core.php:795
966
- #: counter-options.php:864
967
- #: counter-options.php:868
968
  #@ cpd
969
  msgid "Search strings"
970
  msgstr ""
971
 
972
- #: counter-core.php:1114
973
  #@ cpd
974
  msgid "Your can download the backup files here and now."
975
  msgstr ""
976
 
977
- #: counter-core.php:1184
978
  #@ cpd
979
  msgid "Error while reading backup file!"
980
  msgstr ""
981
 
982
- #: counter-core.php:1188
983
  #, php-format
984
  #@ cpd
985
  msgid "The backup was added to counter table %s."
986
  msgstr ""
987
 
988
- #: counter-core.php:1190
989
  #, php-format
990
  #@ cpd
991
  msgid "The counter table %s was restored from backup."
992
  msgstr ""
993
 
994
- #: counter-core.php:1207
995
  #@ cpd
996
  msgid "Options restored from backup."
997
  msgstr ""
998
 
999
- #: counter-options.php:332
1000
  #@ cpd
1001
  msgid "Old search strings deleted"
1002
  msgstr ""
1003
 
1004
- #: counter-options.php:347
1005
  #@ cpd
1006
  msgid "Clients and referers deleted"
1007
  msgstr ""
1008
 
1009
- #: counter-options.php:483
1010
  #@ cpd
1011
  msgid "Download only"
1012
  msgstr ""
1013
 
1014
- #: counter-options.php:515
1015
  #@ cpd
1016
  msgid "Settings and collections"
1017
  msgstr ""
1018
 
1019
- #: counter-options.php:520
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Counter table %s"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:527
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Add data from the backup file %s to existing counter table?"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #@ cpd
1033
  msgid "Add"
1034
  msgstr ""
1035
 
1036
- #: counter-options.php:531
1037
  #, php-format
1038
  #@ cpd
1039
  msgid "Restore data from the backup file %s ?"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #@ default
1044
  msgid "Restore"
1045
  msgstr ""
1046
 
1047
- #: counter-options.php:533
1048
  #@ default
1049
  msgid "Delete"
1050
  msgstr ""
1051
 
1052
- #: counter-options.php:534
1053
  #, php-format
1054
  #@ cpd
1055
  msgid "Delete the backup file %s ?"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:540
1059
  #@ cpd
1060
  msgid "add backup to current counter table"
1061
  msgstr ""
1062
 
1063
- #: counter-options.php:541
1064
  #@ cpd
1065
  msgid "replace current counter table with with backup"
1066
  msgstr ""
1067
 
1068
- #: counter-options.php:542
1069
  #@ cpd
1070
  msgid "delete backup file"
1071
  msgstr ""
1072
 
1073
- #: counter-options.php:567
1074
  #, php-format
1075
  #@ cpd
1076
  msgid "Delete search strings older than %s days."
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:571
1080
  #@ cpd
1081
  msgid "Delete search strings"
1082
  msgstr ""
1083
 
1084
- #: counter-options.php:578
1085
  #, php-format
1086
  #@ cpd
1087
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:582
1091
  #@ cpd
1092
  msgid "Delete clients and referers"
1093
  msgstr ""
1094
 
1095
- #: counter-options.php:603
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Currently your collection contains data until %s."
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:42+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Botlar temizlendi. %s adet silindi."
44
 
45
+ #: counter-options.php:118
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Veritabanı temizlendi. %s satır silindi."
50
 
51
+ #: counter-options.php:128
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Sayaç sıfırlandı."
55
 
56
+ #: counter-options.php:133
57
+ #: counter-options.php:803
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "Count per Day'i kaldır."
61
 
62
+ #: counter-options.php:138
63
+ #: counter-options.php:139
64
+ #: counter-options.php:140
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "%s tablo silindi."
69
 
70
+ #: counter-options.php:141
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Seçenekler silindi"
74
 
75
+ #: counter-options.php:382
76
+ #: counter-options.php:789
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Kaldır"
80
 
81
+ #: counter-options.php:383
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Burayı tıklayın"
85
 
86
+ #: counter-options.php:383
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "\"Count per Day\" kaldırmak ve etkisizleştirmek için."
90
 
91
+ #: counter-options.php:828
92
  #@ cpd
93
  msgid "Counter"
94
  msgstr "Sayaç"
95
 
96
+ #: counter-options.php:832
97
  #@ cpd
98
  msgid "Online time"
99
  msgstr "Online süresi"
100
 
101
+ #: counter-options.php:833
102
  #@ cpd
103
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
104
  msgstr "Online sayaç için saniye. Kontrol sayfasındaki \"Visitors online\" kullan."
105
 
106
+ #: counter-options.php:836
107
  #@ cpd
108
  msgid "Logged on Users"
109
  msgstr "Giriş yapmış kullanıcılar"
110
 
111
+ #: counter-options.php:838
112
  #@ cpd
113
  msgid "count too"
114
  msgstr "saymak"
115
 
116
+ #: counter-options.php:839
117
  #@ cpd
118
  msgid "until User Level"
119
  msgstr "kullanıcı seviye kadar"
120
 
121
+ #: counter-options.php:850
122
  #@ cpd
123
  msgid "Auto counter"
124
  msgstr "Otomatik sayaç"
125
 
126
+ #: counter-options.php:851
127
  #@ cpd
128
  msgid "Counts automatically single-posts and pages, no changes on template needed."
129
  msgstr "Otomatik olarak tek-gönderileri ve sayfaları sayar, şablonda değişiklik gerekmez."
130
 
131
+ #: counter-options.php:854
132
  #@ cpd
133
  msgid "Bots to ignore"
134
  msgstr "Botları önemseme"
135
 
136
+ #: counter-options.php:858
137
  #@ cpd
138
  msgid "Anonymous IP"
139
  msgstr "Anonim IP"
140
 
141
+ #: counter-options.php:862
142
  #@ cpd
143
  msgid "Cache"
144
  msgstr "Önbellek"
145
 
146
+ #: counter-options.php:863
147
  #@ cpd
148
  msgid "I use a cache plugin. Count these visits with ajax."
149
  msgstr "Önbellek eklentisi kullanıyorum. Ziyaretçileri AJAX ile say."
150
 
151
+ #: counter-options.php:866
152
  #@ cpd
153
  msgid "Clients and referrers"
154
  msgstr "Yönlendirmeler ve kullanıcılar"
155
 
156
+ #: counter-options.php:869
157
  #@ cpd
158
  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."
159
  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."
160
 
161
+ #: counter-core.php:1526
162
+ #: counter-options.php:869
163
+ #: counter.php:235
164
+ #: counter.php:1019
165
  #@ cpd
166
  msgid "Reads"
167
  msgstr "Okunma"
168
 
169
+ #: counter-options.php:889
170
  #@ default
171
  msgid "Dashboard"
172
  msgstr "Kontrol paneli"
173
 
174
+ #: counter-core.php:781
175
+ #: counter-options.php:924
176
  #@ cpd
177
  msgid "Visitors per post"
178
  msgstr "Gönderi başına ziyaretçi"
179
 
180
+ #: counter-options.php:925
181
+ #: counter-options.php:929
182
  #@ cpd
183
  msgid "How many posts do you want to see on dashboard page?"
184
  msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
185
 
186
+ #: counter-options.php:928
187
  #@ cpd
188
  msgid "Latest Counts - Posts"
189
  msgstr "Son sayım - Gönderi"
190
 
191
+ #: counter-options.php:932
192
  #@ cpd
193
  msgid "Latest Counts - Days"
194
  msgstr "Son sayaç - Gün"
195
 
196
+ #: counter-options.php:933
197
+ #: counter-options.php:937
198
+ #: counter-options.php:959
199
  #@ cpd
200
  msgid "How many days do you want look back?"
201
  msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
202
 
203
+ #: counter-options.php:936
204
  #@ cpd
205
  msgid "Chart - Days"
206
  msgstr "Grafik - Gün"
207
 
208
+ #: counter-options.php:940
209
  #@ cpd
210
  msgid "Chart - Height"
211
  msgstr "Grafik - Yükseklik"
212
 
213
+ #: counter-options.php:941
214
  #@ cpd
215
  msgid "Height of the biggest bar"
216
  msgstr "En büyük bar'ın yüksekliği"
217
 
218
+ #: counter-options.php:945
219
  #@ cpd
220
  msgid "Countries"
221
  msgstr "Ülkeler"
222
 
223
+ #: counter-options.php:946
224
  #@ cpd
225
  msgid "How many countries do you want to see on dashboard page?"
226
  msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
227
 
228
+ #: counter-core.php:788
229
+ #: counter-options.php:950
230
  #@ cpd
231
  msgid "Browsers"
232
  msgstr "Tarayıcılar"
233
 
234
+ #: counter-options.php:951
235
  #@ cpd
236
  msgid "Substring of the user agent, separated by comma"
237
  msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
238
 
239
+ #: counter-options.php:962
240
  #@ cpd
241
  msgid "Local URLs"
242
  msgstr "Websitenizdeki URL'ler"
243
 
244
+ #: counter-options.php:963
245
  #@ cpd
246
  msgid "Show local referrers too."
247
  msgstr "Websitenizden yönlenenler."
248
 
249
+ #: counter-options.php:970
250
  #@ default
251
  msgid "Posts"
252
  msgstr "Gönderiler"
253
 
254
+ #: counter-options.php:970
255
  #@ default
256
  msgid "Pages"
257
  msgstr "Sayfalar"
258
 
259
+ #: counter-options.php:973
260
  #@ cpd
261
  msgid "Show in lists"
262
  msgstr "Liste içinde göster"
263
 
264
+ #: counter-options.php:974
265
  #@ cpd
266
  msgid "Show \"Reads per Post\" in a new column in post management views."
267
  msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
268
 
269
+ #: counter-options.php:981
270
  #@ cpd
271
  msgid "Start Values"
272
  msgstr "Başlangıç değeri"
273
 
274
+ #: counter-options.php:985
275
  #@ cpd
276
  msgid "Here you can change the date of first count and add a start count."
277
  msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
278
 
279
+ #: counter-options.php:989
280
  #@ cpd
281
  msgid "Start date"
282
  msgstr "Başlama tarihi"
283
 
284
+ #: counter-options.php:990
285
  #@ cpd
286
  msgid "Your old Counter starts at?"
287
  msgstr "Eski sayacının başlangıç değeri ?"
288
 
289
+ #: counter-options.php:993
290
+ #: counter-options.php:997
291
  #@ cpd
292
  msgid "Start count"
293
  msgstr "Başlama sayacı"
294
 
295
+ #: counter-options.php:994
296
  #@ cpd
297
  msgid "Add this value to \"Total visitors\"."
298
  msgstr "Bu değeri ekle \"Total visitors\"."
299
 
300
+ #: counter-options.php:998
301
  #@ cpd
302
  msgid "Add this value to \"Total reads\"."
303
  msgstr "Bu değeri ekle \"Total reads\"."
304
 
305
+ #: counter-options.php:1035
306
  #@ cpd
307
  msgid "Debug mode"
308
  msgstr "Problem çözme modu"
309
 
310
+ #: counter-options.php:1037
311
  #@ cpd
312
  msgid "Show debug informations at the bottom of all pages."
313
  msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
314
 
315
+ #: counter-options.php:1042
316
  #@ cpd
317
  msgid "Update options"
318
  msgstr "Seçenekleri güncelle"
319
 
320
+ #: counter-options.php:720
321
  #@ cpd
322
  msgid "GeoIP - Countries"
323
  msgstr "GeoIP - Ülkeler"
324
 
325
+ #: counter-options.php:729
326
  #@ cpd
327
  msgid "Update old counter data"
328
  msgstr "Eski sayaç verilerini güncelle"
329
 
330
+ #: counter-options.php:723
331
  #@ cpd
332
  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!"
333
  msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
334
 
335
+ #: counter-options.php:741
336
  #@ cpd
337
  msgid "Update GeoIP database"
338
  msgstr "GeoIP veritabanını günce.elle."
339
 
340
+ #: counter-options.php:736
341
  #@ cpd
342
  msgid "Download a new version of GeoIP.dat file."
343
  msgstr "En son GeoIP.dat dosyasını indir."
344
 
345
+ #: counter-options.php:746
346
  #@ cpd
347
  msgid "More informations about GeoIP"
348
  msgstr "GeoIP hakkında daha fazla bilgi"
349
 
350
+ #: counter-options.php:429
351
  #: massbots.php:46
352
  #@ cpd
353
  msgid "Mass Bots"
354
  msgstr "Kitle botları"
355
 
356
+ #: counter-options.php:433
357
  #, php-format
358
  #@ cpd
359
  msgid "Show all IPs with more than %s page views per day"
360
  msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
361
 
362
+ #: counter-options.php:434
363
+ #: counter-options.php:498
364
  #: notes.php:84
365
  #: userperspan.php:56
366
  #@ cpd
367
  msgid "show"
368
  msgstr "göster"
369
 
370
+ #: counter-options.php:442
371
+ #: counter-options.php:506
372
  #@ cpd
373
  msgid "IP"
374
  msgstr "IP"
375
 
376
+ #: counter-options.php:443
377
+ #: counter-options.php:507
378
  #: notes.php:88
379
  #@ cpd
380
  #@ default
381
  msgid "Date"
382
  msgstr "Tarih"
383
 
384
+ #: counter-options.php:444
385
+ #: counter-options.php:508
386
  #@ cpd
387
  msgid "Client"
388
  msgstr "Müşteri/Kullanıcı"
389
 
390
+ #: counter-options.php:445
391
+ #: counter-options.php:509
392
  #@ cpd
393
  msgid "Views"
394
  msgstr "Görünümler"
395
 
396
+ #: counter-options.php:460
397
+ #: counter-options.php:476
398
+ #: counter-options.php:523
399
  #, php-format
400
  #@ cpd
401
  msgid "Delete these %s counts"
402
  msgstr "%s sayaçları sil"
403
 
404
+ #: counter-options.php:637
405
+ #: counter-options.php:645
406
  #@ cpd
407
  msgid "Clean the database"
408
  msgstr "Veritabanını temizle."
409
 
410
+ #: counter-options.php:641
411
  #@ cpd
412
  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."
413
  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."
414
 
415
+ #: counter-options.php:770
416
+ #: counter-options.php:780
417
  #@ cpd
418
  msgid "Reset the counter"
419
  msgstr "Sayacı resetle"
420
 
421
+ #: counter-options.php:773
422
  #@ cpd
423
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
424
  msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
425
 
426
+ #: counter-options.php:792
427
  #@ cpd
428
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
429
  msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
430
 
431
+ #: counter-options.php:793
432
  #@ cpd
433
  msgid "Here you can delete the tables and disable \"Count per Day\"."
434
  msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
435
 
436
+ #: counter-options.php:796
437
  #@ cpd
438
  msgid "WARNING"
439
  msgstr "UYARI"
440
 
441
+ #: counter-options.php:797
442
  #@ cpd
443
  msgid "These tables (with ALL counter data) will be deleted."
444
  msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
445
 
446
+ #: counter-options.php:799
447
  #@ cpd
448
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
449
  msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
450
 
451
+ #: counter-options.php:779
452
+ #: counter-options.php:802
453
  #@ cpd
454
  msgid "Yes"
455
  msgstr "Evet"
456
 
457
+ #: counter-options.php:803
458
  #@ cpd
459
  msgid "You are sure to disable Count per Day and delete all data?"
460
  msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
461
 
462
+ #: counter-options.php:811
463
  #@ cpd
464
  msgid "Support"
465
  msgstr "Destek"
466
 
467
+ #: counter.php:231
468
+ #: counter.php:1407
469
  #@ cpd
470
  msgid "Total reads"
471
  msgstr "Toplam okunan."
472
 
473
+ #: counter.php:232
474
+ #: counter.php:1408
475
  #@ cpd
476
  msgid "Reads today"
477
  msgstr "Bugün okunanlar"
478
 
479
+ #: counter.php:233
480
+ #: counter.php:1409
481
  #@ cpd
482
  msgid "Reads yesterday"
483
  msgstr "Dün okunanlar"
484
 
485
+ #: counter.php:234
486
+ #: counter.php:1410
487
  #@ cpd
488
  msgid "Reads last week"
489
  msgstr "Geçen hafta okunanlar"
490
 
491
+ #: counter-core.php:777
492
+ #: counter.php:236
493
+ #: counter.php:1218
494
+ #: counter.php:1412
495
  #@ cpd
496
  msgid "Total visitors"
497
  msgstr "Toplam ziyaretçi"
498
 
499
+ #: counter.php:237
500
+ #: counter.php:1418
501
  #@ cpd
502
  msgid "Visitors currently online"
503
  msgstr "Şu anda online olan ziyatçiler"
504
 
505
+ #: counter.php:238
506
+ #: counter.php:1413
507
  #@ cpd
508
  msgid "Visitors today"
509
  msgstr "Bugün kü ziyaretçiler"
510
 
511
+ #: counter.php:239
512
+ #: counter.php:1414
513
  #@ cpd
514
  msgid "Visitors yesterday"
515
  msgstr "Dünkü ziyaretçiler"
516
 
517
+ #: counter.php:240
518
+ #: counter.php:1415
519
  #@ cpd
520
  msgid "Visitors last week"
521
  msgstr "Geçen haftaki ziyaretçiler"
522
 
523
+ #: counter-core.php:783
524
+ #: counter.php:242
525
+ #: counter.php:343
526
+ #: counter.php:1220
527
+ #: counter.php:1417
528
  #: userperspan.php:46
529
  #@ cpd
530
  msgid "Visitors per day"
531
  msgstr "Günlük ziyaretçi"
532
 
533
+ #: counter.php:969
534
+ #: counter.php:1419
 
535
  #@ cpd
536
  msgid "Counter starts on"
537
  msgstr "Sayaç başlıyacak"
538
 
539
+ #: counter.php:890
540
  #: notes.php:55
541
  #: notes.php:89
542
  #@ cpd
543
  msgid "Notes"
544
  msgstr "Notlar"
545
 
546
+ #: counter.php:771
547
  #, php-format
548
  #@ cpd
549
  msgid "The %s most visited posts in last %s days:"
550
  msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
551
 
552
+ #: counter.php:888
553
  #@ default
554
  msgid "Show"
555
  msgstr "Göster"
556
 
557
+ #: counter.php:958
558
  #@ cpd
559
  msgid "Other"
560
  msgstr "Diğer"
561
 
562
+ #: counter.php:1130
563
  #@ default
564
  msgid "Edit Post"
565
  msgstr "Gönderi düzenle"
566
 
567
+ #: counter.php:1139
568
  #@ default
569
  msgid "Category"
570
  msgstr "Katogori"
571
 
572
+ #: counter.php:1142
573
  #@ default
574
  msgid "Tag"
575
  msgstr "Таg"
580
  msgid "Front page displays"
581
  msgstr "Ön sayfa görüntüleri"
582
 
583
+ #: counter-core.php:641
584
+ #: counter-options.php:409
 
585
  #@ default
586
  msgid "Settings"
587
  msgstr "Ayarlar"
588
 
589
+ #: counter-core.php:742
590
  #, php-format
591
  #@ cpd
592
  msgid "Time for Count per Day: <code>%s</code>."
593
  msgstr "Günlük sayım için zaman: <code>%s</code>."
594
 
595
+ #: counter-core.php:743
596
  #@ cpd
597
  msgid "Bug? Problem? Question? Hint? Praise?"
598
  msgstr "Problem? Soru? Fikir? Övgü?"
599
 
600
+ #: counter-core.php:744
601
  #, php-format
602
  #@ cpd
603
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
604
  msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
605
 
606
+ #: counter-core.php:745
607
  #@ default
608
  msgid "License"
609
  msgstr "Lisans"
610
 
611
+ #: counter.php:342
612
  #@ cpd
613
  msgid "Reads per day"
614
  msgstr "Günlük ortalama okunma"
615
 
616
+ #: counter-core.php:779
617
+ #: counter.php:1416
618
  #@ cpd
619
  msgid "Visitors per month"
620
  msgstr "Aylık ziyaretçi"
621
 
622
+ #: counter-core.php:780
623
+ #: counter.php:1411
624
  #@ cpd
625
  msgid "Reads per month"
626
  msgstr "Aylık okunma"
627
 
628
+ #: counter-core.php:782
629
  #@ cpd
630
  msgid "Latest Counts"
631
  msgstr "Son sayım"
632
 
633
+ #: counter-core.php:785
634
  #@ default
635
  msgid "Plugin"
636
  msgstr "Eklenti"
637
 
638
+ #: counter-core.php:789
639
  #@ cpd
640
  msgid "Referrer"
641
  msgstr "Yönlendirme"
642
 
643
+ #: counter-core.php:793
644
  #@ cpd
645
  msgid "Reads per Country"
646
  msgstr "Ülke bazında okuma"
647
 
648
+ #: counter-core.php:794
649
  #@ cpd
650
  msgid "Visitors per Country"
651
  msgstr "Ülke bazında ziyaretçi"
652
 
653
+ #: counter-core.php:809
654
+ #: counter.php:1334
655
  #@ cpd
656
  msgid "Statistics"
657
  msgstr "İstatislikler"
658
 
659
+ #: counter.php:433
660
+ #: counter.php:1249
661
  #@ cpd
662
  msgid "Map"
663
  msgstr "Harita"
664
 
665
+ #: counter.php:1406
666
  #@ cpd
667
  msgid "This post"
668
  msgstr "Bu gönderi"
669
 
670
+ #: counter.php:1431
671
  #@ default
672
  msgid "Title"
673
  msgstr "Başlık"
732
  msgid "no data found"
733
  msgstr "veri bulunamadı"
734
 
735
+ #: counter-options.php:954
736
  #@ cpd
737
  msgid "Referrers - Entries"
738
  msgstr "Yönlendirmeleri - Girişler"
739
 
740
+ #: counter-options.php:955
741
  #@ cpd
742
  msgid "How many referrers do you want to see on dashboard page?"
743
  msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
744
 
745
+ #: counter-options.php:958
746
  #@ cpd
747
  msgid "Referrers - Days"
748
  msgstr "Yönlendirmeler - Günler"
749
 
750
+ #: counter.php:989
751
  #, php-format
752
  #@ cpd
753
  msgid "The %s referrers in last %s days:"
754
  msgstr "Son %s günkü yönlendirmeler:"
755
 
756
+ #: counter-core.php:778
757
  #@ cpd
758
  msgid "Visitors online"
759
  msgstr "Online ziyaretçiler."
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" %s sürümüne güncellendi."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Yedekleme başarısız ! Dosya açılamadı."
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "%s süre içerisinde sayaç tablosu yedeklendi."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "%s'de sayaç seçenekleri ve koleksiyon kaydedildi."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Toplama devam ediyor..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Yazı başına ziyaretçi"
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "%s'den bu yada sayaç girişleri toplandı ve sayaç tablosu optimize edildi."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "\"Count per Day\" yüklemesi kontrol edildi."
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Araçlar"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "URL'yi kaydet, sorgu dizisini değil."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Kimi görebilirsiniz"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "Özel"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "ve yüksek istatistikleri görmek için izin verilir."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "%s kullanıcının ihtiyacı olan %s kapasiteyi ayarlayın:"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Stil"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "Önyüzde stil yok"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Önyüze \"counter.css\" stilini yükleme."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Yedek"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "İzin için giriş"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Kaç adet giriş her geçiş için saklanmalıdır ? Normal değeri : 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr "Eğer PHP hafıza limiti 50 MB'den az ise veboş sayfa veya hata mesajı alıyorsanız, ufak değerleri deneyin."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  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)"
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Veritabanını yedekle"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Eski verileri toplama"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "Sayı tablonuzın şu anki büyüklüğü %s 'dir."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  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."
902
 
903
+ #: counter-options.php:691
904
  #@ cpd
905
  msgid "Normally new data will be added to the collection."
906
  msgstr "Normalde, yeni veriler kolsiyona ekliniyor olacak."
907
 
908
+ #: counter-options.php:697
909
  #@ cpd
910
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
911
  msgstr "Eski koleksiyonu sil ve yeni bir tane oluştur. Bu yeni koleysiyonun içinde sadece şu anki sayaç tablosundaki veriler olsun."
912
 
913
+ #: counter-options.php:698
914
  #, php-format
915
  #@ cpd
916
  msgid "All collected data until %s will deleted."
917
  msgstr "%s tarihine kadarki tüm koleksiyon verileri silindi."
918
 
919
+ #: counter-options.php:703
920
  #, php-format
921
  #@ cpd
922
  msgid "Keep entries of last %s full months + current month in counter table."
923
  msgstr "%s ay için son girişleri sakla + sayaç tablosundaki bu ay."
924
 
925
+ #: counter-options.php:754
926
  #@ cpd
927
  msgid "ReActivation"
928
  msgstr "Yeniden etkinleştirme"
929
 
930
+ #: counter-options.php:757
931
  #@ cpd
932
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
933
  msgstr "Burada el ile yükleme işlevlerine başlayabilirsiniz. <br/> Eklentiyi devre dışı bırakmak ve yeniden aktif etkmek aynıdır."
934
 
935
+ #: counter-options.php:762
936
  #@ cpd
937
  msgid "ReActivate the plugin"
938
  msgstr "Eklentiyi tekrar etkinleştirmek."
939
 
940
+ #: counter.php:241
941
+ #: counter.php:1043
942
  #@ cpd
943
  msgid "Visitors"
944
  msgstr "Ziyaretçiler"
945
 
946
+ #: counter.php:244
947
+ #: counter.php:245
948
  #@ cpd
949
  msgid "Most visited day"
950
  msgstr "En ziyaret edilen gün"
951
 
952
+ #: counter.php:1450
953
  #@ cpd
954
  msgid "drag and drop to sort"
955
  msgstr "Sıralamak için sürekle bırak"
956
 
957
+ #: counter-core.php:784
958
+ #: counter-options.php:954
959
+ #: counter-options.php:958
960
  #@ cpd
961
  msgid "Search strings"
962
  msgstr ""
963
 
964
+ #: counter-core.php:1176
965
  #@ cpd
966
  msgid "Your can download the backup files here and now."
967
  msgstr ""
968
 
969
+ #: counter-core.php:1246
970
  #@ cpd
971
  msgid "Error while reading backup file!"
972
  msgstr ""
973
 
974
+ #: counter-core.php:1250
975
  #, php-format
976
  #@ cpd
977
  msgid "The backup was added to counter table %s."
978
  msgstr ""
979
 
980
+ #: counter-core.php:1252
981
  #, php-format
982
  #@ cpd
983
  msgid "The counter table %s was restored from backup."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1269
987
  #@ cpd
988
  msgid "Options restored from backup."
989
  msgstr ""
990
 
991
+ #: counter-options.php:337
992
  #@ cpd
993
  msgid "Old search strings deleted"
994
  msgstr ""
995
 
996
+ #: counter-options.php:352
997
  #@ cpd
998
  msgid "Clients and referers deleted"
999
  msgstr ""
1000
 
1001
+ #: counter-options.php:567
1002
  #@ cpd
1003
  msgid "Download only"
1004
  msgstr ""
1005
 
1006
+ #: counter-options.php:599
1007
  #@ cpd
1008
  msgid "Settings and collections"
1009
  msgstr ""
1010
 
1011
+ #: counter-options.php:604
1012
  #, php-format
1013
  #@ cpd
1014
  msgid "Counter table %s"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:611
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Add data from the backup file %s to existing counter table?"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #@ cpd
1025
  msgid "Add"
1026
  msgstr ""
1027
 
1028
+ #: counter-options.php:615
1029
  #, php-format
1030
  #@ cpd
1031
  msgid "Restore data from the backup file %s ?"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #@ default
1036
  msgid "Restore"
1037
  msgstr ""
1038
 
1039
+ #: counter-options.php:617
1040
  #@ default
1041
  msgid "Delete"
1042
  msgstr ""
1043
 
1044
+ #: counter-options.php:618
1045
  #, php-format
1046
  #@ cpd
1047
  msgid "Delete the backup file %s ?"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:624
1051
  #@ cpd
1052
  msgid "add backup to current counter table"
1053
  msgstr ""
1054
 
1055
+ #: counter-options.php:625
1056
  #@ cpd
1057
  msgid "replace current counter table with with backup"
1058
  msgstr ""
1059
 
1060
+ #: counter-options.php:626
1061
  #@ cpd
1062
  msgid "delete backup file"
1063
  msgstr ""
1064
 
1065
+ #: counter-options.php:651
1066
  #, php-format
1067
  #@ cpd
1068
  msgid "Delete search strings older than %s days."
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:655
1072
  #@ cpd
1073
  msgid "Delete search strings"
1074
  msgstr ""
1075
 
1076
+ #: counter-options.php:662
1077
  #, php-format
1078
  #@ cpd
1079
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:666
1083
  #@ cpd
1084
  msgid "Delete clients and referers"
1085
  msgstr ""
1086
 
1087
+ #: counter-options.php:687
1088
  #, php-format
1089
  #@ cpd
1090
  msgid "Currently your collection contains data until %s."
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-ua_UA.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2014-05-08 08:19:02+0000\n"
7
  "Last-Translator: Igor <djsoldier1988@gmail.com>\n"
8
  "Language-Team: Iflexion design <iflexion.1@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -25,297 +25,295 @@ msgstr ""
25
  msgid "Options updated"
26
  msgstr "Налаштування збереженні"
27
 
28
- #: counter-options.php:113
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База даних очищена. %s строк видалено."
33
 
34
- #: counter-options.php:128
35
- #: counter-options.php:719
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Видалити Count per Day"
39
 
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #: counter-options.php:135
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Таблиця %s видалена"
47
 
48
- #: counter-options.php:136
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Параметри видалено"
52
 
53
- #: counter-options.php:377
54
- #: counter-options.php:705
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Видалити"
58
 
59
- #: counter-options.php:378
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Натисніть тут"
63
 
64
- #: counter-options.php:378
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завершення видалення і відключення \"Count per Day\"."
68
 
69
- #: counter-options.php:752
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Час з'єднання"
73
 
74
- #: counter-options.php:753
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Секунд для он-лайн лічильника. Використовується для \" Відвідувачей онлайн \" на приладовій панелі сторінки."
78
 
79
- #: counter-options.php:756
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Зареєстрованих користувачів"
83
 
84
- #: counter-options.php:758
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Враховувати також"
88
 
89
- #: counter-options.php:770
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Авто лічильник"
93
 
94
- #: counter-options.php:771
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Рахує автоматично окремі повідомлення і сторінки, ніяких змін в шаблон не потрібно\"."
98
 
99
- #: counter-options.php:774
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Ігнорувати пошукові системи"
103
 
104
- #: counter-options.php:952
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Параметри оновлення"
108
 
109
- #: counter-options.php:553
110
- #: counter-options.php:561
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Очистити бази даних"
114
 
115
- #: counter-options.php:557
116
  #@ cpd
117
  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."
118
  msgstr "Ви можете очистити лічильник таблиці видаливши \"Спам\". <br />Якщо ви додаєте нових ботів над старими \"Спам\" які є в базі даних. <br />Тут ви можете запустити бот-фільтр знову і видалити візити ботів\"."
119
 
120
- #: counter-options.php:708
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Якщо \"Count per Day\" активований, таблиці в базі даних будуть збережені."
124
 
125
- #: counter-options.php:709
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут можна видалити таблиці і відключити \"Count per Day\"."
129
 
130
- #: counter-options.php:712
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "УВАГА"
134
 
135
- #: counter-options.php:713
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ці таблиці (з усіма даними лічильника), будуть видалені."
139
 
140
- #: counter-options.php:715
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Якщо \"Count per Day\" було перевстановлено, лічильник починається з 0."
144
 
145
- #: counter-options.php:695
146
- #: counter-options.php:718
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Так"
150
 
151
- #: counter-options.php:719
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ви впевнені, що хочете відключити Count per Day і видалити всі дані?"
155
 
156
- #: counter-core.php:820
157
- #: counter.php:1283
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статистика"
161
 
162
- #: counter-core.php:788
163
- #: counter.php:223
164
- #: counter.php:1167
165
- #: counter.php:1361
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Усього користувачів"
169
 
170
- #: counter.php:224
171
- #: counter.php:1367
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Відвідувачі даний час в мережі"
175
 
176
- #: counter.php:225
177
- #: counter.php:1362
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Відвідувачів сьогодні"
181
 
182
- #: counter.php:226
183
- #: counter.php:1363
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Відвідувачів вчора"
187
 
188
- #: counter.php:227
189
- #: counter.php:1364
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Відвідувачів на минулому тижні"
193
 
194
- #: counter.php:230
195
- #: counter.php:924
196
- #: counter.php:1368
197
  #@ cpd
198
  msgid "Counter starts on"
199
  msgstr "Лічильник починається з"
200
 
201
- #: counter-core.php:794
202
- #: counter.php:229
203
- #: counter.php:328
204
- #: counter.php:1169
205
- #: counter.php:1366
206
  #: userperspan.php:46
207
  #@ cpd
208
  msgid "Visitors per day"
209
  msgstr "Відвідувачів у день"
210
 
211
- #: counter-core.php:790
212
- #: counter.php:1365
213
  #@ cpd
214
  msgid "Visitors per month"
215
  msgstr "Відвідувачів за місяць"
216
 
217
- #: counter-core.php:792
218
- #: counter-options.php:834
219
  #@ cpd
220
  msgid "Visitors per post"
221
  msgstr "Відвідувачів повідомлення"
222
 
223
- #: counter-options.php:123
224
  #@ cpd
225
  msgid "Counter reseted."
226
  msgstr "Лічильник оновлено"
227
 
228
- #: counter-options.php:799
229
  #@ default
230
  msgid "Dashboard"
231
  msgstr "Панель"
232
 
233
- #: counter-options.php:835
234
- #: counter-options.php:839
235
  #@ cpd
236
  msgid "How many posts do you want to see on dashboard page?"
237
  msgstr "Скільки повідомлень ви хочете бачити на приладовій панелі сторінки?"
238
 
239
- #: counter-options.php:838
240
  #@ cpd
241
  msgid "Latest Counts - Posts"
242
  msgstr "Останні рахунки - Повідомлення"
243
 
244
- #: counter-options.php:842
245
  #@ cpd
246
  msgid "Latest Counts - Days"
247
  msgstr "Останні рахунки - Дні"
248
 
249
- #: counter-options.php:843
250
- #: counter-options.php:847
251
- #: counter-options.php:869
252
  #@ cpd
253
  msgid "How many days do you want look back?"
254
  msgstr "На скільки днів ви хочете озирнутися назад?"
255
 
256
- #: counter-options.php:846
257
  #@ cpd
258
  msgid "Chart - Days"
259
  msgstr "Графік - Дні"
260
 
261
- #: counter-options.php:850
262
  #@ cpd
263
  msgid "Chart - Height"
264
  msgstr "Графік - висота"
265
 
266
- #: counter-options.php:851
267
  #@ cpd
268
  msgid "Height of the biggest bar"
269
  msgstr "Висота найбільшого стовпчика"
270
 
271
- #: counter-options.php:883
272
  #@ cpd
273
  msgid "Show in lists"
274
  msgstr "Показувати в списках"
275
 
276
- #: counter-options.php:884
277
  #@ cpd
278
  msgid "Show \"Reads per Post\" in a new column in post management views."
279
  msgstr "Показати \"Читачів на повідомлення\" в новій колонці в управлінні записами."
280
 
281
- #: counter-options.php:686
282
- #: counter-options.php:696
283
  #@ cpd
284
  msgid "Reset the counter"
285
  msgstr "Скидання лічильника"
286
 
287
- #: counter-options.php:689
288
  #@ cpd
289
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
290
  msgstr "Ви можете скинути лічильник шляхом очищення таблиці. ВСІ НА 0! <br />Зробіть резервну копію, якщо вам потрібні поточні дані!"
291
 
292
- #: counter.php:756
293
  #, php-format
294
  #@ cpd
295
  msgid "The %s most visited posts in last %s days:"
296
  msgstr "%s самих відвідуваних повідомлень за останні %s днів."
297
 
298
- #: counter-core.php:652
299
- #: counter-options.php:401
300
- #: counter-options.php:740
301
  #@ default
302
  msgid "Settings"
303
  msgstr "Настройки"
304
 
305
- #: counter.php:327
306
  #@ cpd
307
  msgid "Reads per day"
308
  msgstr "Читання в день"
309
 
310
- #: counter-core.php:1464
311
- #: counter-options.php:789
312
- #: counter.php:222
313
- #: counter.php:974
314
  #@ cpd
315
  msgid "Reads"
316
  msgstr "Читання"
317
 
318
- #: counter.php:1355
319
  #@ cpd
320
  msgid "This post"
321
  msgstr "Це повідомлення"
@@ -337,188 +335,194 @@ msgstr "Оновити наступний"
337
  msgid "Mass Bots cleaned. %s counts deleted."
338
  msgstr "Таблиця Пошукових систем очищена. %s записів видалено."
339
 
340
- #: counter-options.php:759
341
  #@ cpd
342
  msgid "until User Level"
343
  msgstr "до рівня користувача"
344
 
345
- #: counter-options.php:778
346
  #@ cpd
347
  msgid "Anonymous IP"
348
  msgstr "Анонімний IP"
349
 
350
- #: counter-options.php:855
351
  #@ cpd
352
  msgid "Countries"
353
  msgstr "Країни"
354
 
355
- #: counter-options.php:856
356
  #@ cpd
357
  msgid "How many countries do you want to see on dashboard page?"
358
  msgstr "Скільки країн ви хотіли б бачити на приладовій панелі сторінки?"
359
 
360
- #: counter-options.php:891
361
  #@ cpd
362
  msgid "Start Values"
363
  msgstr "Початкові дані"
364
 
365
- #: counter-options.php:895
366
  #@ cpd
367
  msgid "Here you can change the date of first count and add a start count."
368
  msgstr "Тут ви можете змінити дату першого відрахунку і задати початок відрахунку."
369
 
370
- #: counter-options.php:899
371
  #@ cpd
372
  msgid "Start date"
373
  msgstr "Дата початку"
374
 
375
- #: counter-options.php:900
376
  #@ cpd
377
  msgid "Your old Counter starts at?"
378
  msgstr "Ваш старий лічильник починався з?"
379
 
380
- #: counter-options.php:903
381
- #: counter-options.php:907
382
  #@ cpd
383
  msgid "Start count"
384
  msgstr "Почати рахувати"
385
 
386
- #: counter-options.php:904
387
  #@ cpd
388
  msgid "Add this value to \"Total visitors\"."
389
  msgstr "Установка цього значення в \"Усього користувачів\"."
390
 
391
- #: counter-options.php:636
392
  #@ cpd
393
  msgid "GeoIP - Countries"
394
  msgstr "GeoIP - Країни"
395
 
396
- #: counter-options.php:645
397
  #@ cpd
398
  msgid "Update old counter data"
399
  msgstr "Оновлення старих даних лічильника"
400
 
401
- #: counter-options.php:657
402
  #@ cpd
403
  msgid "Update GeoIP database"
404
  msgstr "Оновлення бази даних GeoIP"
405
 
406
- #: counter-options.php:652
407
  #@ cpd
408
  msgid "Download a new version of GeoIP.dat file."
409
  msgstr "Завантажити нову версію файла GeoIP.dat"
410
 
411
- #: counter-options.php:662
412
  #@ cpd
413
  msgid "More informations about GeoIP"
414
  msgstr "Більш детальна інформація про GeoIP"
415
 
416
- #: counter-options.php:417
417
  #: massbots.php:46
418
  #@ cpd
419
  msgid "Mass Bots"
420
  msgstr "Масові Пошукові системи"
421
 
422
- #: counter-options.php:421
423
  #, php-format
424
  #@ cpd
425
  msgid "Show all IPs with more than %s page views per day"
426
  msgstr "Показати всі IP-адреси з більш ніж %s переглядів сторінок на день"
427
 
428
- #: counter-options.php:422
 
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "показати"
434
 
435
- #: counter-options.php:430
 
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
- #: counter-options.php:431
 
441
  #: notes.php:88
442
  #@ cpd
443
  #@ default
444
  msgid "Date"
445
  msgstr "Дата"
446
 
447
- #: counter-options.php:432
 
448
  #@ cpd
449
  msgid "Client"
450
  msgstr "Клієнт"
451
 
452
- #: counter-options.php:433
 
453
  #@ cpd
454
  msgid "Views"
455
  msgstr "Переглядів"
456
 
457
- #: counter-options.php:448
458
- #: counter-options.php:464
 
459
  #, php-format
460
  #@ cpd
461
  msgid "Delete these %s counts"
462
  msgstr "Видалити ц і%s лічильників"
463
 
464
- #: counter-options.php:727
465
  #@ cpd
466
  msgid "Support"
467
  msgstr "Підтримка"
468
 
469
- #: counter-core.php:753
470
  #, php-format
471
  #@ cpd
472
  msgid "Time for Count per Day: <code>%s</code>."
473
  msgstr "Час для Count per Day: <code>%s</code>."
474
 
475
- #: counter-core.php:754
476
  #@ cpd
477
  msgid "Bug? Problem? Question? Hint? Praise?"
478
  msgstr "Помилка? Проблема? Питання? Підказка? Хвала?"
479
 
480
- #: counter-core.php:755
481
  #, php-format
482
  #@ cpd
483
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
484
  msgstr "Написати коментар на <a href=\"%s\">сторінці плагіна</a>."
485
 
486
- #: counter.php:218
487
- #: counter.php:1356
488
  #@ cpd
489
  msgid "Total reads"
490
  msgstr "Всього читаннь"
491
 
492
- #: counter.php:219
493
- #: counter.php:1357
494
  #@ cpd
495
  msgid "Reads today"
496
  msgstr "Читаннь сьогодні"
497
 
498
- #: counter.php:220
499
- #: counter.php:1358
500
  #@ cpd
501
  msgid "Reads yesterday"
502
  msgstr "Читаннь вчора"
503
 
504
- #: counter.php:875
505
  #: notes.php:55
506
  #: notes.php:89
507
  #@ cpd
508
  msgid "Notes"
509
  msgstr "Записки"
510
 
511
- #: counter.php:873
512
  #@ default
513
  msgid "Show"
514
  msgstr "Показати"
515
 
516
- #: counter.php:913
517
  #@ cpd
518
  msgid "Other"
519
  msgstr "Інші"
520
 
521
- #: counter.php:1085
522
  #@ default
523
  msgid "Edit Post"
524
  msgstr "Редагувати повідомлення"
@@ -529,29 +533,29 @@ msgstr "Редагувати повідомлення"
529
  msgid "Front page displays"
530
  msgstr "Відображати на першій сторінці"
531
 
532
- #: counter-core.php:799
533
- #: counter-options.php:860
534
  #@ cpd
535
  msgid "Browsers"
536
  msgstr "Браузери"
537
 
538
- #: counter-core.php:793
539
  #@ cpd
540
  msgid "Latest Counts"
541
  msgstr "Останні підрахунки"
542
 
543
- #: counter-core.php:796
544
  #@ default
545
  msgid "Plugin"
546
  msgstr "Плагін"
547
 
548
- #: counter-core.php:804
549
  #@ cpd
550
  msgid "Reads per Country"
551
  msgstr "Читання по країнам"
552
 
553
- #: counter.php:418
554
- #: counter.php:1198
555
  #@ cpd
556
  msgid "Map"
557
  msgstr "Карта"
@@ -596,32 +600,32 @@ msgstr "Видалити"
596
  msgid "edit"
597
  msgstr "Змінити"
598
 
599
- #: counter-options.php:782
600
  #@ cpd
601
  msgid "Cache"
602
  msgstr "Кеш"
603
 
604
- #: counter-options.php:783
605
  #@ cpd
606
  msgid "I use a cache plugin. Count these visits with ajax."
607
  msgstr "Я використовую кеш плагінів. Рахувати ці візити за допомогою Ajax."
608
 
609
- #: counter-options.php:861
610
  #@ cpd
611
  msgid "Substring of the user agent, separated by comma"
612
  msgstr "Підрядок агента користувача, розділених комою"
613
 
614
- #: counter-options.php:945
615
  #@ cpd
616
  msgid "Debug mode"
617
  msgstr "Режим відлагодження"
618
 
619
- #: counter-options.php:947
620
  #@ cpd
621
  msgid "Show debug informations at the bottom of all pages."
622
  msgstr "Показати відлагоджувальну інофрмацію в нижній частині всіх сторінок."
623
 
624
- #: counter-core.php:805
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Відвідувачів по країнах"
@@ -641,12 +645,12 @@ msgstr "Кінець"
641
  msgid "PostID"
642
  msgstr "ID повідомлення"
643
 
644
- #: counter-options.php:908
645
  #@ cpd
646
  msgid "Add this value to \"Total reads\"."
647
  msgstr "Установити це значення в \"Всього читаннь\"."
648
 
649
- #: counter-options.php:639
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. Це може зайняти деякий час!"
@@ -656,467 +660,560 @@ msgstr "Ви можете отримати дані по країнах для
656
  msgid "no data found"
657
  msgstr "Нічого не знайдено"
658
 
659
- #: counter-options.php:748
660
  #@ cpd
661
  msgid "Counter"
662
  msgstr "Лічильник"
663
 
664
- #: counter-options.php:786
665
  #@ cpd
666
  msgid "Clients and referrers"
667
  msgstr "Клієнти та джерела"
668
 
669
- #: counter-options.php:789
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:872
675
  #@ cpd
676
  msgid "Local URLs"
677
  msgstr "Місцеві URL"
678
 
679
- #: counter-options.php:873
680
  #@ cpd
681
  msgid "Show local referrers too."
682
  msgstr "Показати місцеві джерела теж."
683
 
684
- #: counter-options.php:880
685
  #@ default
686
  msgid "Posts"
687
  msgstr "Повідомлення"
688
 
689
- #: counter-options.php:880
690
  #@ default
691
  msgid "Pages"
692
  msgstr "Сторінки"
693
 
694
- #: counter.php:221
695
- #: counter.php:1359
696
  #@ cpd
697
  msgid "Reads last week"
698
  msgstr "Читаннь минулого тижня"
699
 
700
- #: counter.php:1094
701
  #@ default
702
  msgid "Category"
703
  msgstr "Категорія"
704
 
705
- #: counter.php:1097
706
  #@ default
707
  msgid "Tag"
708
  msgstr "Тег"
709
 
710
- #: counter-core.php:756
711
  #@ default
712
  msgid "License"
713
  msgstr "Ліцензія"
714
 
715
- #: counter-core.php:791
716
- #: counter.php:1360
717
  #@ cpd
718
  msgid "Reads per month"
719
  msgstr "Читаннь в місяць"
720
 
721
- #: counter-core.php:800
722
  #@ cpd
723
  msgid "Referrer"
724
  msgstr "Джерела"
725
 
726
- #: counter-options.php:864
727
  #@ cpd
728
  msgid "Referrers - Entries"
729
  msgstr "Джерела - Входження"
730
 
731
- #: counter-options.php:865
732
  #@ cpd
733
  msgid "How many referrers do you want to see on dashboard page?"
734
  msgstr "Скільки джерел ви хочете бачити на приладовій панелі сторінки?"
735
 
736
- #: counter-options.php:868
737
  #@ cpd
738
  msgid "Referrers - Days"
739
  msgstr "Джерела - Дні"
740
 
741
- #: counter.php:944
742
  #, php-format
743
  #@ cpd
744
  msgid "The %s referrers in last %s days:"
745
  msgstr "%s джерел в останні %s днів:"
746
 
747
- #: counter-core.php:789
748
  #@ cpd
749
  msgid "Visitors online"
750
  msgstr "Відвідувачів онлайн"
751
 
752
- #: counter.php:1380
753
  #@ default
754
  msgid "Title"
755
  msgstr "Назва"
756
 
757
- #: counter-core.php:259
758
  #, php-format
759
  #@ cpd
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" Оновлено до версії %s."
762
 
763
- #: counter-core.php:1000
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Резервне копіювання не вдалося! Не вдається відкрити файл"
767
 
768
- #: counter-core.php:1027
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Резервне копіювання %s записи в прогрес. Відповідає кожній точці %s записи."
773
-
774
- #: counter-core.php:1118
775
- #: counter-core.php:1126
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Резервне копіювання таблиці лічильник, збережені у %s."
780
 
781
- #: counter-core.php:1120
782
- #: counter-core.php:1128
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Резервне копіювання лічильник варіантів і колекції, збережені у %s."
787
 
788
- #: counter-options.php:169
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Триває збір..."
792
 
793
- #: counter-options.php:263
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Отримати відвідувачів на посаду..."
797
 
798
- #: counter-options.php:284
799
- #@ cpd
800
- msgid "Delete old data..."
801
- msgstr "Видалити старі дані..."
802
-
803
- #: counter-options.php:308
804
  #, php-format
805
  #@ cpd
806
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
807
  msgstr "Лічильник записів до %s зібрані та боротьби таблиці %s оптимізований (Розмір перед = %s &gt; Розмір після = %s)."
808
 
809
- #: counter-options.php:317
810
  #@ cpd
811
  msgid "Installation of \"Count per Day\" checked"
812
  msgstr "Установка \"Count per Day\" перевірено"
813
 
814
- #: counter-options.php:400
815
- #: counter-options.php:739
816
  #@ default
817
  msgid "Tools"
818
  msgstr "Інструменти"
819
 
820
- #: counter-options.php:791
821
  #@ cpd
822
  msgid "Save URL only, no query string."
823
  msgstr "Збережіть URL тільки, немає рядка запиту."
824
 
825
- #: counter-options.php:815
826
  #@ cpd
827
  msgid "Who can see it"
828
  msgstr "Хто це може побачити"
829
 
830
- #: counter-options.php:824
831
  #@ cpd
832
  msgid "custom"
833
  msgstr "Користувальницькі"
834
 
835
- #: counter-options.php:826
836
  #@ cpd
837
  msgid "and higher are allowed to see the statistics page."
838
  msgstr "і вище, можуть побачити на сторінці статистики."
839
 
840
- #: counter-options.php:828
841
  #, php-format
842
  #@ cpd
843
  msgid "Set the %s capability %s a user need:"
844
  msgstr "Встановити на %s можливості %s користувачеві необхідно:"
845
 
846
- #: counter-options.php:915
847
  #@ cpd
848
  msgid "Stylesheet"
849
  msgstr "Таблиця стилів"
850
 
851
- #: counter-options.php:918
852
  #@ cpd
853
  msgid "NO Stylesheet in Frontend"
854
  msgstr "НЕМАЄ стилів в інтерфейс"
855
 
856
- #: counter-options.php:919
857
  #@ cpd
858
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
859
  msgstr "Не завантажити стиль \"counter.css\" у інтерфейс."
860
 
861
- #: counter-options.php:476
862
- #: counter-options.php:926
863
  #@ cpd
864
  msgid "Backup"
865
  msgstr "Резервне копіювання"
866
 
867
- #: counter-options.php:929
868
  #@ cpd
869
  msgid "Entries per pass"
870
  msgstr "Записи за пас"
871
 
872
- #: counter-options.php:932
873
  #@ cpd
874
  msgid "How many entries should be saved per pass? Default: 10000"
875
  msgstr "Скільки записів повинна бути збережена за пас? Default: 10000"
876
 
877
- #: counter-options.php:937
878
  #@ cpd
879
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
880
  msgstr "Якщо ваш PHP пам'яті обмежити менше потім 50 МБ і ви отримаєте білу сторінку або повідомлення про помилку, спробуйте менші значення."
881
 
882
- #: counter-options.php:480
883
  #, php-format
884
  #@ cpd
885
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
886
  msgstr "Створити резервну копію таблиці лічильник %s в каталозі wp зміст (якщо для запису)."
887
 
888
- #: counter-options.php:487
889
  #@ cpd
890
  msgid "Backup the database"
891
  msgstr "Резервне копіювання бази даних"
892
 
893
- #: counter-options.php:591
894
- #: counter-options.php:623
895
  #@ cpd
896
  msgid "Collect old data"
897
  msgstr "Збирати старі дані"
898
 
899
- #: counter-options.php:577
900
- #: counter-options.php:596
901
  #, php-format
902
  #@ cpd
903
  msgid "Current size of your counter table %s is %s."
904
  msgstr "Поточний розмір таблиці лічильник %s є %s."
905
 
906
- #: counter-options.php:598
907
  #@ cpd
908
  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."
909
  msgstr "Можна збирати старі дані та очищення таблиці лічильник.<br/>Переглядів і відвідувачів буде збережено на місяць, в країні і за пост.<br/>Клієнтів і посилаються, буде видалено. "
910
 
911
- #: counter-options.php:603
912
  #, php-format
913
  #@ cpd
914
  msgid "Currently your collection contains data until %s."
915
  msgstr "В даний час вашої колекції містить дані до %s."
916
 
917
- #: counter-options.php:607
918
  #@ cpd
919
  msgid "Normally new data will be added to the collection."
920
  msgstr "Зазвичай нові дані будуть додані до колекції."
921
 
922
- #: counter-options.php:613
923
  #@ cpd
924
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
  msgstr "Видалення старої колекції і створити новий список, який містить лише дані в даний час лічильник таблиці."
926
 
927
- #: counter-options.php:614
928
  #, php-format
929
  #@ cpd
930
  msgid "All collected data until %s will deleted."
931
  msgstr "Всі зібрані дані до %s буде видалено."
932
 
933
- #: counter-options.php:619
934
  #, php-format
935
  #@ cpd
936
  msgid "Keep entries of last %s full months + current month in counter table."
937
  msgstr "Зберегти записи останнього %s повний місяць поточний місяць в таблиці лічильник."
938
 
939
- #: counter-options.php:670
940
  #@ cpd
941
  msgid "ReActivation"
942
  msgstr "Реактивація"
943
 
944
- #: counter-options.php:673
945
  #@ cpd
946
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
  msgstr "Тут ви можете почати установку функції вручну.<br/>Так само, як відключити і повторно активувати плагін. "
948
 
949
- #: counter-options.php:678
950
  #@ cpd
951
  msgid "ReActivate the plugin"
952
  msgstr "Активувати плагін"
953
 
954
- #: counter.php:228
955
- #: counter.php:998
956
  #@ cpd
957
  msgid "Visitors"
958
  msgstr "Відвідувачі"
959
 
960
- #: counter.php:231
961
- #: counter.php:232
962
  #@ cpd
963
  msgid "Most visited day"
964
  msgstr "Найбільш відвідуваних день"
965
 
966
- #: counter.php:1399
967
  #@ cpd
968
  msgid "drag and drop to sort"
969
  msgstr "перетягування для сортування"
970
 
971
- #: counter-core.php:795
972
- #: counter-options.php:864
973
- #: counter-options.php:868
974
  #@ cpd
975
  msgid "Search strings"
976
  msgstr ""
977
 
978
- #: counter-core.php:1114
979
  #@ cpd
980
  msgid "Your can download the backup files here and now."
981
  msgstr ""
982
 
983
- #: counter-core.php:1184
984
  #@ cpd
985
  msgid "Error while reading backup file!"
986
  msgstr ""
987
 
988
- #: counter-core.php:1188
989
  #, php-format
990
  #@ cpd
991
  msgid "The backup was added to counter table %s."
992
  msgstr ""
993
 
994
- #: counter-core.php:1190
995
  #, php-format
996
  #@ cpd
997
  msgid "The counter table %s was restored from backup."
998
  msgstr ""
999
 
1000
- #: counter-core.php:1207
1001
  #@ cpd
1002
  msgid "Options restored from backup."
1003
  msgstr ""
1004
 
1005
- #: counter-options.php:332
1006
  #@ cpd
1007
  msgid "Old search strings deleted"
1008
  msgstr ""
1009
 
1010
- #: counter-options.php:347
1011
  #@ cpd
1012
  msgid "Clients and referers deleted"
1013
  msgstr ""
1014
 
1015
- #: counter-options.php:483
1016
  #@ cpd
1017
  msgid "Download only"
1018
  msgstr ""
1019
 
1020
- #: counter-options.php:515
1021
  #@ cpd
1022
  msgid "Settings and collections"
1023
  msgstr ""
1024
 
1025
- #: counter-options.php:520
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Counter table %s"
1029
  msgstr ""
1030
 
1031
- #: counter-options.php:527
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Add data from the backup file %s to existing counter table?"
1035
  msgstr ""
1036
 
1037
- #: counter-options.php:527
1038
  #@ cpd
1039
  msgid "Add"
1040
  msgstr ""
1041
 
1042
- #: counter-options.php:531
1043
  #, php-format
1044
  #@ cpd
1045
  msgid "Restore data from the backup file %s ?"
1046
  msgstr ""
1047
 
1048
- #: counter-options.php:531
1049
  #@ default
1050
  msgid "Restore"
1051
  msgstr ""
1052
 
1053
- #: counter-options.php:533
1054
  #@ default
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
1058
- #: counter-options.php:534
1059
  #, php-format
1060
  #@ cpd
1061
  msgid "Delete the backup file %s ?"
1062
  msgstr ""
1063
 
1064
- #: counter-options.php:540
1065
  #@ cpd
1066
  msgid "add backup to current counter table"
1067
  msgstr ""
1068
 
1069
- #: counter-options.php:541
1070
  #@ cpd
1071
  msgid "replace current counter table with with backup"
1072
  msgstr ""
1073
 
1074
- #: counter-options.php:542
1075
  #@ cpd
1076
  msgid "delete backup file"
1077
  msgstr ""
1078
 
1079
- #: counter-options.php:567
1080
  #, php-format
1081
  #@ cpd
1082
  msgid "Delete search strings older than %s days."
1083
  msgstr ""
1084
 
1085
- #: counter-options.php:571
1086
  #@ cpd
1087
  msgid "Delete search strings"
1088
  msgstr ""
1089
 
1090
- #: counter-options.php:578
1091
  #, php-format
1092
  #@ cpd
1093
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1094
  msgstr ""
1095
 
1096
- #: counter-options.php:582
1097
  #@ cpd
1098
  msgid "Delete clients and referers"
1099
  msgstr ""
1100
 
1101
- #: counter.php:1100
1102
  #@ default
1103
  msgid "Front page"
1104
  msgstr ""
1105
 
1106
- #: counter.php:1142
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The %s most searched strings:"
1110
  msgstr ""
1111
 
1112
- #: counter.php:1151
1113
  #, php-format
1114
  #@ cpd
1115
  msgid "The search strings of the last %s days:"
1116
  msgstr ""
1117
 
1118
- #: counter.php:1315
1119
  #@ default
1120
  msgid "_name"
1121
  msgstr ""
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:48+0000\n"
7
  "Last-Translator: Igor <djsoldier1988@gmail.com>\n"
8
  "Language-Team: Iflexion design <iflexion.1@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
25
  msgid "Options updated"
26
  msgstr "Налаштування збереженні"
27
 
28
+ #: counter-options.php:118
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База даних очищена. %s строк видалено."
33
 
34
+ #: counter-options.php:133
35
+ #: counter-options.php:803
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Видалити Count per Day"
39
 
40
+ #: counter-options.php:138
41
+ #: counter-options.php:139
42
+ #: counter-options.php:140
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Таблиця %s видалена"
47
 
48
+ #: counter-options.php:141
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Параметри видалено"
52
 
53
+ #: counter-options.php:382
54
+ #: counter-options.php:789
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Видалити"
58
 
59
+ #: counter-options.php:383
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Натисніть тут"
63
 
64
+ #: counter-options.php:383
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завершення видалення і відключення \"Count per Day\"."
68
 
69
+ #: counter-options.php:832
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Час з'єднання"
73
 
74
+ #: counter-options.php:833
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Секунд для он-лайн лічильника. Використовується для \" Відвідувачей онлайн \" на приладовій панелі сторінки."
78
 
79
+ #: counter-options.php:836
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Зареєстрованих користувачів"
83
 
84
+ #: counter-options.php:838
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Враховувати також"
88
 
89
+ #: counter-options.php:850
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Авто лічильник"
93
 
94
+ #: counter-options.php:851
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Рахує автоматично окремі повідомлення і сторінки, ніяких змін в шаблон не потрібно\"."
98
 
99
+ #: counter-options.php:854
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Ігнорувати пошукові системи"
103
 
104
+ #: counter-options.php:1042
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Параметри оновлення"
108
 
109
+ #: counter-options.php:637
110
+ #: counter-options.php:645
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Очистити бази даних"
114
 
115
+ #: counter-options.php:641
116
  #@ cpd
117
  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."
118
  msgstr "Ви можете очистити лічильник таблиці видаливши \"Спам\". <br />Якщо ви додаєте нових ботів над старими \"Спам\" які є в базі даних. <br />Тут ви можете запустити бот-фільтр знову і видалити візити ботів\"."
119
 
120
+ #: counter-options.php:792
121
  #@ cpd
122
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
123
  msgstr "Якщо \"Count per Day\" активований, таблиці в базі даних будуть збережені."
124
 
125
+ #: counter-options.php:793
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут можна видалити таблиці і відключити \"Count per Day\"."
129
 
130
+ #: counter-options.php:796
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "УВАГА"
134
 
135
+ #: counter-options.php:797
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ці таблиці (з усіма даними лічильника), будуть видалені."
139
 
140
+ #: counter-options.php:799
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Якщо \"Count per Day\" було перевстановлено, лічильник починається з 0."
144
 
145
+ #: counter-options.php:779
146
+ #: counter-options.php:802
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Так"
150
 
151
+ #: counter-options.php:803
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ви впевнені, що хочете відключити Count per Day і видалити всі дані?"
155
 
156
+ #: counter-core.php:809
157
+ #: counter.php:1334
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статистика"
161
 
162
+ #: counter-core.php:777
163
+ #: counter.php:236
164
+ #: counter.php:1218
165
+ #: counter.php:1412
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Усього користувачів"
169
 
170
+ #: counter.php:237
171
+ #: counter.php:1418
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Відвідувачі даний час в мережі"
175
 
176
+ #: counter.php:238
177
+ #: counter.php:1413
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Відвідувачів сьогодні"
181
 
182
+ #: counter.php:239
183
+ #: counter.php:1414
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Відвідувачів вчора"
187
 
188
+ #: counter.php:240
189
+ #: counter.php:1415
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Відвідувачів на минулому тижні"
193
 
194
+ #: counter.php:969
195
+ #: counter.php:1419
 
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Лічильник починається з"
199
 
200
+ #: counter-core.php:783
201
+ #: counter.php:242
202
+ #: counter.php:343
203
+ #: counter.php:1220
204
+ #: counter.php:1417
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Відвідувачів у день"
209
 
210
+ #: counter-core.php:779
211
+ #: counter.php:1416
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Відвідувачів за місяць"
215
 
216
+ #: counter-core.php:781
217
+ #: counter-options.php:924
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Відвідувачів повідомлення"
221
 
222
+ #: counter-options.php:128
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Лічильник оновлено"
226
 
227
+ #: counter-options.php:889
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Панель"
231
 
232
+ #: counter-options.php:925
233
+ #: counter-options.php:929
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Скільки повідомлень ви хочете бачити на приладовій панелі сторінки?"
237
 
238
+ #: counter-options.php:928
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Останні рахунки - Повідомлення"
242
 
243
+ #: counter-options.php:932
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Останні рахунки - Дні"
247
 
248
+ #: counter-options.php:933
249
+ #: counter-options.php:937
250
+ #: counter-options.php:959
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "На скільки днів ви хочете озирнутися назад?"
254
 
255
+ #: counter-options.php:936
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Графік - Дні"
259
 
260
+ #: counter-options.php:940
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Графік - висота"
264
 
265
+ #: counter-options.php:941
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Висота найбільшого стовпчика"
269
 
270
+ #: counter-options.php:973
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Показувати в списках"
274
 
275
+ #: counter-options.php:974
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Показати \"Читачів на повідомлення\" в новій колонці в управлінні записами."
279
 
280
+ #: counter-options.php:770
281
+ #: counter-options.php:780
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Скидання лічильника"
285
 
286
+ #: counter-options.php:773
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:771
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:641
298
+ #: counter-options.php:409
 
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Настройки"
302
 
303
+ #: counter.php:342
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Читання в день"
307
 
308
+ #: counter-core.php:1526
309
+ #: counter-options.php:869
310
+ #: counter.php:235
311
+ #: counter.php:1019
312
  #@ cpd
313
  msgid "Reads"
314
  msgstr "Читання"
315
 
316
+ #: counter.php:1406
317
  #@ cpd
318
  msgid "This post"
319
  msgstr "Це повідомлення"
335
  msgid "Mass Bots cleaned. %s counts deleted."
336
  msgstr "Таблиця Пошукових систем очищена. %s записів видалено."
337
 
338
+ #: counter-options.php:839
339
  #@ cpd
340
  msgid "until User Level"
341
  msgstr "до рівня користувача"
342
 
343
+ #: counter-options.php:858
344
  #@ cpd
345
  msgid "Anonymous IP"
346
  msgstr "Анонімний IP"
347
 
348
+ #: counter-options.php:945
349
  #@ cpd
350
  msgid "Countries"
351
  msgstr "Країни"
352
 
353
+ #: counter-options.php:946
354
  #@ cpd
355
  msgid "How many countries do you want to see on dashboard page?"
356
  msgstr "Скільки країн ви хотіли б бачити на приладовій панелі сторінки?"
357
 
358
+ #: counter-options.php:981
359
  #@ cpd
360
  msgid "Start Values"
361
  msgstr "Початкові дані"
362
 
363
+ #: counter-options.php:985
364
  #@ cpd
365
  msgid "Here you can change the date of first count and add a start count."
366
  msgstr "Тут ви можете змінити дату першого відрахунку і задати початок відрахунку."
367
 
368
+ #: counter-options.php:989
369
  #@ cpd
370
  msgid "Start date"
371
  msgstr "Дата початку"
372
 
373
+ #: counter-options.php:990
374
  #@ cpd
375
  msgid "Your old Counter starts at?"
376
  msgstr "Ваш старий лічильник починався з?"
377
 
378
+ #: counter-options.php:993
379
+ #: counter-options.php:997
380
  #@ cpd
381
  msgid "Start count"
382
  msgstr "Почати рахувати"
383
 
384
+ #: counter-options.php:994
385
  #@ cpd
386
  msgid "Add this value to \"Total visitors\"."
387
  msgstr "Установка цього значення в \"Усього користувачів\"."
388
 
389
+ #: counter-options.php:720
390
  #@ cpd
391
  msgid "GeoIP - Countries"
392
  msgstr "GeoIP - Країни"
393
 
394
+ #: counter-options.php:729
395
  #@ cpd
396
  msgid "Update old counter data"
397
  msgstr "Оновлення старих даних лічильника"
398
 
399
+ #: counter-options.php:741
400
  #@ cpd
401
  msgid "Update GeoIP database"
402
  msgstr "Оновлення бази даних GeoIP"
403
 
404
+ #: counter-options.php:736
405
  #@ cpd
406
  msgid "Download a new version of GeoIP.dat file."
407
  msgstr "Завантажити нову версію файла GeoIP.dat"
408
 
409
+ #: counter-options.php:746
410
  #@ cpd
411
  msgid "More informations about GeoIP"
412
  msgstr "Більш детальна інформація про GeoIP"
413
 
414
+ #: counter-options.php:429
415
  #: massbots.php:46
416
  #@ cpd
417
  msgid "Mass Bots"
418
  msgstr "Масові Пошукові системи"
419
 
420
+ #: counter-options.php:433
421
  #, php-format
422
  #@ cpd
423
  msgid "Show all IPs with more than %s page views per day"
424
  msgstr "Показати всі IP-адреси з більш ніж %s переглядів сторінок на день"
425
 
426
+ #: counter-options.php:434
427
+ #: counter-options.php:498
428
  #: notes.php:84
429
  #: userperspan.php:56
430
  #@ cpd
431
  msgid "show"
432
  msgstr "показати"
433
 
434
+ #: counter-options.php:442
435
+ #: counter-options.php:506
436
  #@ cpd
437
  msgid "IP"
438
  msgstr "IP"
439
 
440
+ #: counter-options.php:443
441
+ #: counter-options.php:507
442
  #: notes.php:88
443
  #@ cpd
444
  #@ default
445
  msgid "Date"
446
  msgstr "Дата"
447
 
448
+ #: counter-options.php:444
449
+ #: counter-options.php:508
450
  #@ cpd
451
  msgid "Client"
452
  msgstr "Клієнт"
453
 
454
+ #: counter-options.php:445
455
+ #: counter-options.php:509
456
  #@ cpd
457
  msgid "Views"
458
  msgstr "Переглядів"
459
 
460
+ #: counter-options.php:460
461
+ #: counter-options.php:476
462
+ #: counter-options.php:523
463
  #, php-format
464
  #@ cpd
465
  msgid "Delete these %s counts"
466
  msgstr "Видалити ц і%s лічильників"
467
 
468
+ #: counter-options.php:811
469
  #@ cpd
470
  msgid "Support"
471
  msgstr "Підтримка"
472
 
473
+ #: counter-core.php:742
474
  #, php-format
475
  #@ cpd
476
  msgid "Time for Count per Day: <code>%s</code>."
477
  msgstr "Час для Count per Day: <code>%s</code>."
478
 
479
+ #: counter-core.php:743
480
  #@ cpd
481
  msgid "Bug? Problem? Question? Hint? Praise?"
482
  msgstr "Помилка? Проблема? Питання? Підказка? Хвала?"
483
 
484
+ #: counter-core.php:744
485
  #, php-format
486
  #@ cpd
487
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
488
  msgstr "Написати коментар на <a href=\"%s\">сторінці плагіна</a>."
489
 
490
+ #: counter.php:231
491
+ #: counter.php:1407
492
  #@ cpd
493
  msgid "Total reads"
494
  msgstr "Всього читаннь"
495
 
496
+ #: counter.php:232
497
+ #: counter.php:1408
498
  #@ cpd
499
  msgid "Reads today"
500
  msgstr "Читаннь сьогодні"
501
 
502
+ #: counter.php:233
503
+ #: counter.php:1409
504
  #@ cpd
505
  msgid "Reads yesterday"
506
  msgstr "Читаннь вчора"
507
 
508
+ #: counter.php:890
509
  #: notes.php:55
510
  #: notes.php:89
511
  #@ cpd
512
  msgid "Notes"
513
  msgstr "Записки"
514
 
515
+ #: counter.php:888
516
  #@ default
517
  msgid "Show"
518
  msgstr "Показати"
519
 
520
+ #: counter.php:958
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Інші"
524
 
525
+ #: counter.php:1130
526
  #@ default
527
  msgid "Edit Post"
528
  msgstr "Редагувати повідомлення"
533
  msgid "Front page displays"
534
  msgstr "Відображати на першій сторінці"
535
 
536
+ #: counter-core.php:788
537
+ #: counter-options.php:950
538
  #@ cpd
539
  msgid "Browsers"
540
  msgstr "Браузери"
541
 
542
+ #: counter-core.php:782
543
  #@ cpd
544
  msgid "Latest Counts"
545
  msgstr "Останні підрахунки"
546
 
547
+ #: counter-core.php:785
548
  #@ default
549
  msgid "Plugin"
550
  msgstr "Плагін"
551
 
552
+ #: counter-core.php:793
553
  #@ cpd
554
  msgid "Reads per Country"
555
  msgstr "Читання по країнам"
556
 
557
+ #: counter.php:433
558
+ #: counter.php:1249
559
  #@ cpd
560
  msgid "Map"
561
  msgstr "Карта"
600
  msgid "edit"
601
  msgstr "Змінити"
602
 
603
+ #: counter-options.php:862
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Кеш"
607
 
608
+ #: counter-options.php:863
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Я використовую кеш плагінів. Рахувати ці візити за допомогою Ajax."
612
 
613
+ #: counter-options.php:951
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Підрядок агента користувача, розділених комою"
617
 
618
+ #: counter-options.php:1035
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Режим відлагодження"
622
 
623
+ #: counter-options.php:1037
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Показати відлагоджувальну інофрмацію в нижній частині всіх сторінок."
627
 
628
+ #: counter-core.php:794
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Відвідувачів по країнах"
645
  msgid "PostID"
646
  msgstr "ID повідомлення"
647
 
648
+ #: counter-options.php:998
649
  #@ cpd
650
  msgid "Add this value to \"Total reads\"."
651
  msgstr "Установити це значення в \"Всього читаннь\"."
652
 
653
+ #: counter-options.php:723
654
  #@ cpd
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 "Ви можете отримати дані по країнах для всіх записів в базі даних, перевіряючи IP-адреси по базі даних GeoIP. Це може зайняти деякий час!"
660
  msgid "no data found"
661
  msgstr "Нічого не знайдено"
662
 
663
+ #: counter-options.php:828
664
  #@ cpd
665
  msgid "Counter"
666
  msgstr "Лічильник"
667
 
668
+ #: counter-options.php:866
669
  #@ cpd
670
  msgid "Clients and referrers"
671
  msgstr "Клієнти та джерела"
672
 
673
+ #: counter-options.php:869
674
  #@ cpd
675
  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."
676
  msgstr "Зберегти і показати клієнтів і джерела. <br />Потребує багато місця в базі даних, але надає більш детальну інформацію про ваших відвідувачів."
677
 
678
+ #: counter-options.php:962
679
  #@ cpd
680
  msgid "Local URLs"
681
  msgstr "Місцеві URL"
682
 
683
+ #: counter-options.php:963
684
  #@ cpd
685
  msgid "Show local referrers too."
686
  msgstr "Показати місцеві джерела теж."
687
 
688
+ #: counter-options.php:970
689
  #@ default
690
  msgid "Posts"
691
  msgstr "Повідомлення"
692
 
693
+ #: counter-options.php:970
694
  #@ default
695
  msgid "Pages"
696
  msgstr "Сторінки"
697
 
698
+ #: counter.php:234
699
+ #: counter.php:1410
700
  #@ cpd
701
  msgid "Reads last week"
702
  msgstr "Читаннь минулого тижня"
703
 
704
+ #: counter.php:1139
705
  #@ default
706
  msgid "Category"
707
  msgstr "Категорія"
708
 
709
+ #: counter.php:1142
710
  #@ default
711
  msgid "Tag"
712
  msgstr "Тег"
713
 
714
+ #: counter-core.php:745
715
  #@ default
716
  msgid "License"
717
  msgstr "Ліцензія"
718
 
719
+ #: counter-core.php:780
720
+ #: counter.php:1411
721
  #@ cpd
722
  msgid "Reads per month"
723
  msgstr "Читаннь в місяць"
724
 
725
+ #: counter-core.php:789
726
  #@ cpd
727
  msgid "Referrer"
728
  msgstr "Джерела"
729
 
730
+ #: counter-options.php:954
731
  #@ cpd
732
  msgid "Referrers - Entries"
733
  msgstr "Джерела - Входження"
734
 
735
+ #: counter-options.php:955
736
  #@ cpd
737
  msgid "How many referrers do you want to see on dashboard page?"
738
  msgstr "Скільки джерел ви хочете бачити на приладовій панелі сторінки?"
739
 
740
+ #: counter-options.php:958
741
  #@ cpd
742
  msgid "Referrers - Days"
743
  msgstr "Джерела - Дні"
744
 
745
+ #: counter.php:989
746
  #, php-format
747
  #@ cpd
748
  msgid "The %s referrers in last %s days:"
749
  msgstr "%s джерел в останні %s днів:"
750
 
751
+ #: counter-core.php:778
752
  #@ cpd
753
  msgid "Visitors online"
754
  msgstr "Відвідувачів онлайн"
755
 
756
+ #: counter.php:1431
757
  #@ default
758
  msgid "Title"
759
  msgstr "Назва"
760
 
761
+ #: counter-core.php:232
762
  #, php-format
763
  #@ cpd
764
  msgid "\"Count per Day\" updated to version %s."
765
  msgstr "\"Count per Day\" Оновлено до версії %s."
766
 
767
+ #: counter-core.php:1062
768
  #@ cpd
769
  msgid "Backup failed! Cannot open file"
770
  msgstr "Резервне копіювання не вдалося! Не вдається відкрити файл"
771
 
772
+ #: counter-core.php:1180
773
+ #: counter-core.php:1188
 
 
 
 
 
 
774
  #, php-format
775
  #@ cpd
776
  msgid "Backup of counter table saved in %s."
777
  msgstr "Резервне копіювання таблиці лічильник, збережені у %s."
778
 
779
+ #: counter-core.php:1182
780
+ #: counter-core.php:1190
781
  #, php-format
782
  #@ cpd
783
  msgid "Backup of counter options and collection saved in %s."
784
  msgstr "Резервне копіювання лічильник варіантів і колекції, збережені у %s."
785
 
786
+ #: counter-options.php:174
787
  #@ cpd
788
  msgid "Collection in progress..."
789
  msgstr "Триває збір..."
790
 
791
+ #: counter-options.php:268
792
  #@ cpd
793
  msgid "Get Visitors per Post..."
794
  msgstr "Отримати відвідувачів на посаду..."
795
 
796
+ #: counter-options.php:313
 
 
 
 
 
797
  #, php-format
798
  #@ cpd
799
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
800
  msgstr "Лічильник записів до %s зібрані та боротьби таблиці %s оптимізований (Розмір перед = %s &gt; Розмір після = %s)."
801
 
802
+ #: counter-options.php:322
803
  #@ cpd
804
  msgid "Installation of \"Count per Day\" checked"
805
  msgstr "Установка \"Count per Day\" перевірено"
806
 
807
+ #: counter-options.php:408
 
808
  #@ default
809
  msgid "Tools"
810
  msgstr "Інструменти"
811
 
812
+ #: counter-options.php:871
813
  #@ cpd
814
  msgid "Save URL only, no query string."
815
  msgstr "Збережіть URL тільки, немає рядка запиту."
816
 
817
+ #: counter-options.php:905
818
  #@ cpd
819
  msgid "Who can see it"
820
  msgstr "Хто це може побачити"
821
 
822
+ #: counter-options.php:914
823
  #@ cpd
824
  msgid "custom"
825
  msgstr "Користувальницькі"
826
 
827
+ #: counter-options.php:916
828
  #@ cpd
829
  msgid "and higher are allowed to see the statistics page."
830
  msgstr "і вище, можуть побачити на сторінці статистики."
831
 
832
+ #: counter-options.php:918
833
  #, php-format
834
  #@ cpd
835
  msgid "Set the %s capability %s a user need:"
836
  msgstr "Встановити на %s можливості %s користувачеві необхідно:"
837
 
838
+ #: counter-options.php:1005
839
  #@ cpd
840
  msgid "Stylesheet"
841
  msgstr "Таблиця стилів"
842
 
843
+ #: counter-options.php:1008
844
  #@ cpd
845
  msgid "NO Stylesheet in Frontend"
846
  msgstr "НЕМАЄ стилів в інтерфейс"
847
 
848
+ #: counter-options.php:1009
849
  #@ cpd
850
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
851
  msgstr "Не завантажити стиль \"counter.css\" у інтерфейс."
852
 
853
+ #: counter-options.php:560
854
+ #: counter-options.php:1016
855
  #@ cpd
856
  msgid "Backup"
857
  msgstr "Резервне копіювання"
858
 
859
+ #: counter-options.php:1019
860
  #@ cpd
861
  msgid "Entries per pass"
862
  msgstr "Записи за пас"
863
 
864
+ #: counter-options.php:1022
865
  #@ cpd
866
  msgid "How many entries should be saved per pass? Default: 10000"
867
  msgstr "Скільки записів повинна бути збережена за пас? Default: 10000"
868
 
869
+ #: counter-options.php:1027
870
  #@ cpd
871
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
872
  msgstr "Якщо ваш PHP пам'яті обмежити менше потім 50 МБ і ви отримаєте білу сторінку або повідомлення про помилку, спробуйте менші значення."
873
 
874
+ #: counter-options.php:564
875
  #, php-format
876
  #@ cpd
877
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
878
  msgstr "Створити резервну копію таблиці лічильник %s в каталозі wp зміст (якщо для запису)."
879
 
880
+ #: counter-options.php:571
881
  #@ cpd
882
  msgid "Backup the database"
883
  msgstr "Резервне копіювання бази даних"
884
 
885
+ #: counter-options.php:675
886
+ #: counter-options.php:707
887
  #@ cpd
888
  msgid "Collect old data"
889
  msgstr "Збирати старі дані"
890
 
891
+ #: counter-options.php:661
892
+ #: counter-options.php:680
893
  #, php-format
894
  #@ cpd
895
  msgid "Current size of your counter table %s is %s."
896
  msgstr "Поточний розмір таблиці лічильник %s є %s."
897
 
898
+ #: counter-options.php:682
899
  #@ cpd
900
  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."
901
  msgstr "Можна збирати старі дані та очищення таблиці лічильник.<br/>Переглядів і відвідувачів буде збережено на місяць, в країні і за пост.<br/>Клієнтів і посилаються, буде видалено. "
902
 
903
+ #: counter-options.php:687
904
  #, php-format
905
  #@ cpd
906
  msgid "Currently your collection contains data until %s."
907
  msgstr "В даний час вашої колекції містить дані до %s."
908
 
909
+ #: counter-options.php:691
910
  #@ cpd
911
  msgid "Normally new data will be added to the collection."
912
  msgstr "Зазвичай нові дані будуть додані до колекції."
913
 
914
+ #: counter-options.php:697
915
  #@ cpd
916
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
  msgstr "Видалення старої колекції і створити новий список, який містить лише дані в даний час лічильник таблиці."
918
 
919
+ #: counter-options.php:698
920
  #, php-format
921
  #@ cpd
922
  msgid "All collected data until %s will deleted."
923
  msgstr "Всі зібрані дані до %s буде видалено."
924
 
925
+ #: counter-options.php:703
926
  #, php-format
927
  #@ cpd
928
  msgid "Keep entries of last %s full months + current month in counter table."
929
  msgstr "Зберегти записи останнього %s повний місяць поточний місяць в таблиці лічильник."
930
 
931
+ #: counter-options.php:754
932
  #@ cpd
933
  msgid "ReActivation"
934
  msgstr "Реактивація"
935
 
936
+ #: counter-options.php:757
937
  #@ cpd
938
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
  msgstr "Тут ви можете почати установку функції вручну.<br/>Так само, як відключити і повторно активувати плагін. "
940
 
941
+ #: counter-options.php:762
942
  #@ cpd
943
  msgid "ReActivate the plugin"
944
  msgstr "Активувати плагін"
945
 
946
+ #: counter.php:241
947
+ #: counter.php:1043
948
  #@ cpd
949
  msgid "Visitors"
950
  msgstr "Відвідувачі"
951
 
952
+ #: counter.php:244
953
+ #: counter.php:245
954
  #@ cpd
955
  msgid "Most visited day"
956
  msgstr "Найбільш відвідуваних день"
957
 
958
+ #: counter.php:1450
959
  #@ cpd
960
  msgid "drag and drop to sort"
961
  msgstr "перетягування для сортування"
962
 
963
+ #: counter-core.php:784
964
+ #: counter-options.php:954
965
+ #: counter-options.php:958
966
  #@ cpd
967
  msgid "Search strings"
968
  msgstr ""
969
 
970
+ #: counter-core.php:1176
971
  #@ cpd
972
  msgid "Your can download the backup files here and now."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1246
976
  #@ cpd
977
  msgid "Error while reading backup file!"
978
  msgstr ""
979
 
980
+ #: counter-core.php:1250
981
  #, php-format
982
  #@ cpd
983
  msgid "The backup was added to counter table %s."
984
  msgstr ""
985
 
986
+ #: counter-core.php:1252
987
  #, php-format
988
  #@ cpd
989
  msgid "The counter table %s was restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-core.php:1269
993
  #@ cpd
994
  msgid "Options restored from backup."
995
  msgstr ""
996
 
997
+ #: counter-options.php:337
998
  #@ cpd
999
  msgid "Old search strings deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:352
1003
  #@ cpd
1004
  msgid "Clients and referers deleted"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:567
1008
  #@ cpd
1009
  msgid "Download only"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:599
1013
  #@ cpd
1014
  msgid "Settings and collections"
1015
  msgstr ""
1016
 
1017
+ #: counter-options.php:604
1018
  #, php-format
1019
  #@ cpd
1020
  msgid "Counter table %s"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:611
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Add data from the backup file %s to existing counter table?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:611
1030
  #@ cpd
1031
  msgid "Add"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:615
1035
  #, php-format
1036
  #@ cpd
1037
  msgid "Restore data from the backup file %s ?"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:615
1041
  #@ default
1042
  msgid "Restore"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:617
1046
  #@ default
1047
  msgid "Delete"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:618
1051
  #, php-format
1052
  #@ cpd
1053
  msgid "Delete the backup file %s ?"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:624
1057
  #@ cpd
1058
  msgid "add backup to current counter table"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:625
1062
  #@ cpd
1063
  msgid "replace current counter table with with backup"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:626
1067
  #@ cpd
1068
  msgid "delete backup file"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:651
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete search strings older than %s days."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:655
1078
  #@ cpd
1079
  msgid "Delete search strings"
1080
  msgstr ""
1081
 
1082
+ #: counter-options.php:662
1083
  #, php-format
1084
  #@ cpd
1085
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:666
1089
  #@ cpd
1090
  msgid "Delete clients and referers"
1091
  msgstr ""
1092
 
1093
+ #: counter.php:1145
1094
  #@ default
1095
  msgid "Front page"
1096
  msgstr ""
1097
 
1098
+ #: counter.php:1193
1099
  #, php-format
1100
  #@ cpd
1101
  msgid "The %s most searched strings:"
1102
  msgstr ""
1103
 
1104
+ #: counter.php:1202
1105
  #, php-format
1106
  #@ cpd
1107
  msgid "The search strings of the last %s days:"
1108
  msgstr ""
1109
 
1110
+ #: counter.php:1366
1111
  #@ default
1112
  msgid "_name"
1113
  msgstr ""
1114
 
1115
+ #: counter-core.php:986
1116
+ #@ cpd
1117
+ msgid "Export failed! Cannot open file."
1118
+ msgstr ""
1119
+
1120
+ #: counter-core.php:1034
1121
+ #@ cpd
1122
+ msgid "Download the export file:"
1123
+ msgstr ""
1124
+
1125
+ #: counter-core.php:1089
1126
+ #, php-format
1127
+ #@ cpd
1128
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1129
+ msgstr ""
1130
+
1131
+ #: counter-options.php:289
1132
+ #@ cpd
1133
+ msgid "Deleting old data..."
1134
+ msgstr ""
1135
+
1136
+ #: counter-options.php:493
1137
+ #@ cpd
1138
+ msgid "Most Industrious Visitors"
1139
+ msgstr ""
1140
+
1141
+ #: counter-options.php:497
1142
+ #, php-format
1143
+ #@ cpd
1144
+ msgid "Show the %s most industrious visitors of the last %s days"
1145
+ msgstr ""
1146
+
1147
+ #: counter-options.php:544
1148
+ #@ cpd
1149
+ msgid "Export"
1150
+ msgstr ""
1151
+
1152
+ #: counter-options.php:548
1153
+ #, php-format
1154
+ #@ cpd
1155
+ msgid "Export the last %s days as CSV-File"
1156
+ msgstr ""
1157
+
1158
+ #: counter-options.php:552
1159
+ #@ cpd
1160
+ msgid "Export entries"
1161
+ msgstr ""
1162
+
1163
+ #: counter-options.php:875
1164
+ #@ cpd
1165
+ msgid "Post types"
1166
+ msgstr ""
1167
+
1168
+ #: counter-options.php:878
1169
+ #@ cpd
1170
+ msgid "Only count these post types. Leave empty to count them all."
1171
+ msgstr ""
1172
+
1173
+ #: counter-options.php:879
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Current post types: %s"
1177
+ msgstr ""
1178
+
1179
+ #: counter.php:243
1180
+ #@ cpd
1181
+ msgid "Since"
1182
+ msgstr ""
1183
+
1184
+ #: counter.php:1502
1185
+ #: counter.php:1534
1186
+ #@ cpd
1187
+ msgid "Popular Posts"
1188
+ msgstr ""
1189
+
1190
+ #: counter.php:1504
1191
+ #@ cpd
1192
+ msgid "List of Popular Posts"
1193
+ msgstr ""
1194
+
1195
+ #: counter.php:1542
1196
+ #@ cpd
1197
+ msgid "Title:"
1198
+ msgstr ""
1199
+
1200
+ #: counter.php:1546
1201
+ #@ cpd
1202
+ msgid "Days:"
1203
+ msgstr ""
1204
+
1205
+ #: counter.php:1550
1206
+ #@ cpd
1207
+ msgid "Limit:"
1208
+ msgstr ""
1209
+
1210
+ #: counter.php:1554
1211
+ #@ cpd
1212
+ msgid "Show header:"
1213
+ msgstr ""
1214
+
1215
+ #: counter.php:1558
1216
+ #@ cpd
1217
+ msgid "Show counters:"
1218
+ msgstr ""
1219
+
locale/cpd-zh_CN.mo ADDED
Binary file
locale/cpd-zh_CN.po ADDED
@@ -0,0 +1,1220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.3\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-02 02:25-0500\n"
6
+ "PO-Revision-Date: 2014-09-11 07:27:53+0000\n"
7
+ "Last-Translator: MopBear <syt1100@gmail.com>\n"
8
+ "Language-Team: MopBear <syt1100@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-Generator: Poedit 1.5.7\n"
14
+ "X-Poedit-Language: \n"
15
+ "X-Poedit-Country: \n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "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"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-Bookmarks: \n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Textdomain-Support: yes"
22
+
23
+ #: counter-core.php:232
24
+ #, php-format
25
+ #@ cpd
26
+ msgid "\"Count per Day\" updated to version %s."
27
+ msgstr "\"Count per Day\" 最新版本为 %s。"
28
+
29
+ #: counter-core.php:641
30
+ #: counter-options.php:409
31
+ #@ default
32
+ msgid "Settings"
33
+ msgstr "设定"
34
+
35
+ #: counter-core.php:742
36
+ #, php-format
37
+ #@ cpd
38
+ msgid "Time for Count per Day: <code>%s</code>."
39
+ msgstr "Count per Day的时间: <code>%s</code>."
40
+
41
+ #: counter-core.php:743
42
+ #@ cpd
43
+ msgid "Bug? Problem? Question? Hint? Praise?"
44
+ msgstr "BUG?出错?疑问?提示?评价?"
45
+
46
+ #: counter-core.php:744
47
+ #, php-format
48
+ #@ cpd
49
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
50
+ msgstr "填写你的评论在<a href=\"%s\">plugin page</a>。"
51
+
52
+ #: counter-core.php:745
53
+ #@ default
54
+ msgid "License"
55
+ msgstr "许可"
56
+
57
+ #: counter-core.php:777
58
+ #: counter.php:236
59
+ #: counter.php:1218
60
+ #: counter.php:1412
61
+ #@ cpd
62
+ msgid "Total visitors"
63
+ msgstr "总访问数"
64
+
65
+ #: counter-core.php:778
66
+ #@ cpd
67
+ msgid "Visitors online"
68
+ msgstr "在线访问者数"
69
+
70
+ #: counter-core.php:779
71
+ #: counter.php:1416
72
+ #@ cpd
73
+ msgid "Visitors per month"
74
+ msgstr "每月访问者数"
75
+
76
+ #: counter-core.php:780
77
+ #: counter.php:1411
78
+ #@ cpd
79
+ msgid "Reads per month"
80
+ msgstr "每月阅读量"
81
+
82
+ #: counter-core.php:781
83
+ #: counter-options.php:924
84
+ #@ cpd
85
+ msgid "Visitors per post"
86
+ msgstr "每篇文章的访问者数"
87
+
88
+ #: counter-core.php:782
89
+ #@ cpd
90
+ msgid "Latest Counts"
91
+ msgstr "最新统计"
92
+
93
+ #: counter-core.php:783
94
+ #: counter.php:242
95
+ #: counter.php:343
96
+ #: counter.php:1220
97
+ #: counter.php:1417
98
+ #: userperspan.php:46
99
+ #@ cpd
100
+ msgid "Visitors per day"
101
+ msgstr "每日访问者数"
102
+
103
+ #: counter-core.php:784
104
+ #: counter-options.php:954
105
+ #: counter-options.php:958
106
+ #@ cpd
107
+ msgid "Search strings"
108
+ msgstr "搜索字符串"
109
+
110
+ #: counter-core.php:785
111
+ #@ default
112
+ msgid "Plugin"
113
+ msgstr "插件"
114
+
115
+ #: counter-core.php:788
116
+ #: counter-options.php:950
117
+ #@ cpd
118
+ msgid "Browsers"
119
+ msgstr "浏览器"
120
+
121
+ #: counter-core.php:789
122
+ #@ cpd
123
+ msgid "Referrer"
124
+ msgstr "反向链接"
125
+
126
+ #: counter-core.php:793
127
+ #@ cpd
128
+ msgid "Reads per Country"
129
+ msgstr "每个国家阅读数"
130
+
131
+ #: counter-core.php:794
132
+ #@ cpd
133
+ msgid "Visitors per Country"
134
+ msgstr "每个国家访问者数"
135
+
136
+ #: counter-core.php:809
137
+ #: counter.php:1334
138
+ #@ cpd
139
+ msgid "Statistics"
140
+ msgstr "统计"
141
+
142
+ #: counter-core.php:1062
143
+ #@ cpd
144
+ msgid "Backup failed! Cannot open file"
145
+ msgstr "备份失败!无法打开文件"
146
+
147
+ #: counter-core.php:1176
148
+ #@ cpd
149
+ msgid "Your can download the backup files here and now."
150
+ msgstr "你现在可以在此处下载你的备份文档。"
151
+
152
+ #: counter-core.php:1180
153
+ #: counter-core.php:1188
154
+ #, php-format
155
+ #@ cpd
156
+ msgid "Backup of counter table saved in %s."
157
+ msgstr "计数器表的备份文档保存于 %s。"
158
+
159
+ #: counter-core.php:1182
160
+ #: counter-core.php:1190
161
+ #, php-format
162
+ #@ cpd
163
+ msgid "Backup of counter options and collection saved in %s."
164
+ msgstr "计数选项和收集的备份数据保存于 %s。"
165
+
166
+ #: counter-core.php:1246
167
+ #@ cpd
168
+ msgid "Error while reading backup file!"
169
+ msgstr "读取备份文件错误!"
170
+
171
+ #: counter-core.php:1250
172
+ #, php-format
173
+ #@ cpd
174
+ msgid "The backup was added to counter table %s."
175
+ msgstr "新的备份已被添加于计数器 %s 。"
176
+
177
+ #: counter-core.php:1252
178
+ #, php-format
179
+ #@ cpd
180
+ msgid "The counter table %s was restored from backup."
181
+ msgstr "计数器表 %s 已经被重置。"
182
+
183
+ #: counter-core.php:1269
184
+ #@ cpd
185
+ msgid "Options restored from backup."
186
+ msgstr "已从备份中恢复选项。"
187
+
188
+ #: counter-core.php:1526
189
+ #: counter-options.php:869
190
+ #: counter.php:235
191
+ #: counter.php:1019
192
+ #@ cpd
193
+ msgid "Reads"
194
+ msgstr "阅读总数"
195
+
196
+ #: counter-options.php:52
197
+ #@ cpd
198
+ msgid "Options updated"
199
+ msgstr "选项已更新"
200
+
201
+ # 此处不知道如何翻译@ cpd
202
+ #: counter-options.php:63
203
+ #, php-format
204
+ #@ cpd
205
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
206
+ msgstr "访问者国家已更新。%s 上的 <b>%s</b> 已无未被分类的其他国家访问者。"
207
+
208
+ #: counter-options.php:66
209
+ #@ cpd
210
+ msgid "update next"
211
+ msgstr "下一次更新"
212
+
213
+ #: counter-options.php:106
214
+ #, php-format
215
+ #@ cpd
216
+ msgid "Mass Bots cleaned. %s counts deleted."
217
+ msgstr "恶意访问机器人已被清理。 %s 访问被删除。"
218
+
219
+ #: counter-options.php:118
220
+ #, php-format
221
+ #@ cpd
222
+ msgid "Database cleaned. %s rows deleted."
223
+ msgstr "数据库已被清理。 %s 行被删除。"
224
+
225
+ #: counter-options.php:128
226
+ #@ cpd
227
+ msgid "Counter reseted."
228
+ msgstr "计数器被重置。"
229
+
230
+ #: counter-options.php:133
231
+ #: counter-options.php:803
232
+ #@ cpd
233
+ msgid "UNINSTALL Count per Day"
234
+ msgstr "删除 Count per Day "
235
+
236
+ #: counter-options.php:138
237
+ #: counter-options.php:139
238
+ #: counter-options.php:140
239
+ #, php-format
240
+ #@ cpd
241
+ msgid "Table %s deleted"
242
+ msgstr "%s 表被删除"
243
+
244
+ #: counter-options.php:141
245
+ #@ cpd
246
+ msgid "Options deleted"
247
+ msgstr "选项被删除"
248
+
249
+ #: counter-options.php:174
250
+ #@ cpd
251
+ msgid "Collection in progress..."
252
+ msgstr "整理中..."
253
+
254
+ #: counter-options.php:268
255
+ #@ cpd
256
+ msgid "Get Visitors per Post..."
257
+ msgstr "正在获取每篇文章的访问者数…"
258
+
259
+ #: counter-options.php:313
260
+ #, php-format
261
+ #@ cpd
262
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
263
+ msgstr "直到%s 所整理的数据输入已被更新。计数器 %s 已被最优化 (最优化前 = %s &gt; 最优化后 = %s)。"
264
+
265
+ #: counter-options.php:322
266
+ #@ cpd
267
+ msgid "Installation of \"Count per Day\" checked"
268
+ msgstr "\"Count per Day\" 的安装检查完毕。"
269
+
270
+ #: counter-options.php:337
271
+ #@ cpd
272
+ msgid "Old search strings deleted"
273
+ msgstr "旧的搜索字符串已被删除"
274
+
275
+ #: counter-options.php:382
276
+ #: counter-options.php:789
277
+ #@ cpd
278
+ msgid "Uninstall"
279
+ msgstr "删除"
280
+
281
+ #: counter-options.php:383
282
+ #@ cpd
283
+ msgid "Click here"
284
+ msgstr "猛击这里"
285
+
286
+ #: counter-options.php:383
287
+ #@ cpd
288
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
289
+ msgstr "完成删除并取消激活\"Count per Day\" "
290
+
291
+ #: counter-options.php:408
292
+ #@ default
293
+ msgid "Tools"
294
+ msgstr "工具"
295
+
296
+ #: counter-options.php:429
297
+ #: massbots.php:46
298
+ #@ cpd
299
+ msgid "Mass Bots"
300
+ msgstr "恶意机器人"
301
+
302
+ #: counter-options.php:433
303
+ #, php-format
304
+ #@ cpd
305
+ msgid "Show all IPs with more than %s page views per day"
306
+ msgstr "显示所有每日阅读超过 %s 阅读着的IP地址"
307
+
308
+ #: counter-options.php:434
309
+ #: counter-options.php:498
310
+ #: notes.php:84
311
+ #: userperspan.php:56
312
+ #@ cpd
313
+ msgid "show"
314
+ msgstr "显示"
315
+
316
+ #: counter-options.php:442
317
+ #: counter-options.php:506
318
+ #@ cpd
319
+ msgid "IP"
320
+ msgstr "IP"
321
+
322
+ #: counter-options.php:443
323
+ #: counter-options.php:507
324
+ #: notes.php:88
325
+ #@ cpd
326
+ #@ default
327
+ msgid "Date"
328
+ msgstr "日期"
329
+
330
+ #: counter-options.php:444
331
+ #: counter-options.php:508
332
+ #@ cpd
333
+ msgid "Client"
334
+ msgstr "客户端"
335
+
336
+ #: counter-options.php:445
337
+ #: counter-options.php:509
338
+ #@ cpd
339
+ msgid "Views"
340
+ msgstr "阅读数"
341
+
342
+ #: counter-options.php:460
343
+ #: counter-options.php:476
344
+ #: counter-options.php:523
345
+ #, php-format
346
+ #@ cpd
347
+ msgid "Delete these %s counts"
348
+ msgstr "删除 %s 计数"
349
+
350
+ #: counter-options.php:560
351
+ #: counter-options.php:1016
352
+ #@ cpd
353
+ msgid "Backup"
354
+ msgstr "备份文件"
355
+
356
+ #: counter-options.php:564
357
+ #, php-format
358
+ #@ cpd
359
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
360
+ msgstr "创建一个关于计数器 %s 的备份并保存于你的wp-content目录下(如果可以被写入)。"
361
+
362
+ #: counter-options.php:567
363
+ #@ cpd
364
+ msgid "Download only"
365
+ msgstr "只可以被下载"
366
+
367
+ #: counter-options.php:571
368
+ #@ cpd
369
+ msgid "Backup the database"
370
+ msgstr "备份数据库"
371
+
372
+ #: counter-options.php:599
373
+ #@ cpd
374
+ msgid "Settings and collections"
375
+ msgstr "设定与收集"
376
+
377
+ #: counter-options.php:604
378
+ #, php-format
379
+ #@ cpd
380
+ msgid "Counter table %s"
381
+ msgstr "计数器 %s"
382
+
383
+ #: counter-options.php:611
384
+ #, php-format
385
+ #@ cpd
386
+ msgid "Add data from the backup file %s to existing counter table?"
387
+ msgstr "是否从备份文件添加一个数据 %s 至已存在的计数器中?"
388
+
389
+ #: counter-options.php:611
390
+ #@ cpd
391
+ msgid "Add"
392
+ msgstr "添加"
393
+
394
+ #: counter-options.php:615
395
+ #, php-format
396
+ #@ cpd
397
+ msgid "Restore data from the backup file %s ?"
398
+ msgstr "是否从辈分文件中 %s 恢复数据?"
399
+
400
+ #: counter-options.php:615
401
+ #@ default
402
+ msgid "Restore"
403
+ msgstr "恢复"
404
+
405
+ #: counter-options.php:617
406
+ #@ default
407
+ msgid "Delete"
408
+ msgstr "删除"
409
+
410
+ #: counter-options.php:618
411
+ #, php-format
412
+ #@ cpd
413
+ msgid "Delete the backup file %s ?"
414
+ msgstr "是否删除备份文件 %s ?"
415
+
416
+ #: counter-options.php:624
417
+ #@ cpd
418
+ msgid "add backup to current counter table"
419
+ msgstr "添加一个新的备份至现在的计数器"
420
+
421
+ #: counter-options.php:625
422
+ #@ cpd
423
+ msgid "replace current counter table with with backup"
424
+ msgstr "替换现在的计数器为备份文档"
425
+
426
+ #: counter-options.php:626
427
+ #@ cpd
428
+ msgid "delete backup file"
429
+ msgstr "删除备份文档"
430
+
431
+ #: counter-options.php:637
432
+ #: counter-options.php:645
433
+ #@ cpd
434
+ msgid "Clean the database"
435
+ msgstr "清理数据库"
436
+
437
+ #: counter-options.php:641
438
+ #@ cpd
439
+ 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."
440
+ msgstr "你可以通过删除\"spam data\"来清理的计数器。<br />添加新的恶意机器人黑名单于旧的数据库\"spam data\"。<br />这里你可以运行恶意机器人过滤器并且删除这些恶意机器人的访问"
441
+
442
+ #: counter-options.php:651
443
+ #, php-format
444
+ #@ cpd
445
+ msgid "Delete search strings older than %s days."
446
+ msgstr "%s 日以前的搜索字符串被删除"
447
+
448
+ #: counter-options.php:655
449
+ #@ cpd
450
+ msgid "Delete search strings"
451
+ msgstr "删除搜索字符串"
452
+
453
+ #: counter-options.php:675
454
+ #: counter-options.php:707
455
+ #@ cpd
456
+ msgid "Collect old data"
457
+ msgstr "收集旧数据"
458
+
459
+ #: counter-options.php:661
460
+ #: counter-options.php:680
461
+ #, php-format
462
+ #@ cpd
463
+ msgid "Current size of your counter table %s is %s."
464
+ msgstr "现在计数器 %s 的文件大小是 %s 。"
465
+
466
+ #: counter-options.php:682
467
+ #@ cpd
468
+ 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."
469
+ msgstr "你可以收集旧数据并清理计数器。<br/>阅读量和访问者会按月份,国家,文章的分类被保存。<br/>客户端与反向链接会被删除。"
470
+
471
+ #: counter-options.php:687
472
+ #, php-format
473
+ #@ cpd
474
+ msgid "Currently your collection contains data until %s."
475
+ msgstr "直到%s 的数据已被包含在整理中。"
476
+
477
+ #: counter-options.php:691
478
+ #@ cpd
479
+ msgid "Normally new data will be added to the collection."
480
+ msgstr "一般新的数据会被添加于收集中并加入肯德基豪华午餐XD。"
481
+
482
+ #: counter-options.php:697
483
+ #@ cpd
484
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
485
+ msgstr "删除旧的数据收集并创建一个只包含现有数据的计数器。"
486
+
487
+ #: counter-options.php:698
488
+ #, php-format
489
+ #@ cpd
490
+ msgid "All collected data until %s will deleted."
491
+ msgstr "直到%s 所有被收集的数据已经被删除 。"
492
+
493
+ #: counter-options.php:703
494
+ #, php-format
495
+ #@ cpd
496
+ msgid "Keep entries of last %s full months + current month in counter table."
497
+ msgstr "保留上一个和这一个月 %s 计数器中的所有数据。"
498
+
499
+ #: counter-options.php:720
500
+ #@ cpd
501
+ msgid "GeoIP - Countries"
502
+ msgstr "GeoIP - 国家统计"
503
+
504
+ #: counter-options.php:723
505
+ #@ cpd
506
+ 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!"
507
+ msgstr "你可以通过检查数据库中所有来访者的 IP地址来收集那些你可能认为与 GeoIP 数据库不符的国家信息。这将需要一段时间。"
508
+
509
+ #: counter-options.php:729
510
+ #@ cpd
511
+ msgid "Update old counter data"
512
+ msgstr "更新旧的计数器信息"
513
+
514
+ #: counter-options.php:736
515
+ #@ cpd
516
+ msgid "Download a new version of GeoIP.dat file."
517
+ msgstr "下载新版本的 GeoIP.dat文件。"
518
+
519
+ #: counter-options.php:741
520
+ #@ cpd
521
+ msgid "Update GeoIP database"
522
+ msgstr "GeoIP 数据库更新"
523
+
524
+ #: counter-options.php:746
525
+ #@ cpd
526
+ msgid "More informations about GeoIP"
527
+ msgstr "GeoIP的详细信息"
528
+
529
+ #: counter-options.php:754
530
+ #@ cpd
531
+ msgid "ReActivation"
532
+ msgstr "再次激活"
533
+
534
+ #: counter-options.php:757
535
+ #@ cpd
536
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
537
+ msgstr "在这里你可以手动进行安装功能。<br/>同时你也可以进行激活与取消激活插件。"
538
+
539
+ #: counter-options.php:762
540
+ #@ cpd
541
+ msgid "ReActivate the plugin"
542
+ msgstr "重新激活插件"
543
+
544
+ #: counter-options.php:770
545
+ #: counter-options.php:780
546
+ #@ cpd
547
+ msgid "Reset the counter"
548
+ msgstr "重置计数器"
549
+
550
+ #: counter-options.php:773
551
+ #@ cpd
552
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
553
+ msgstr "你可以通过清除表格来重置计数。全部都变成 998 哦!其实是 0 啦!<br />如果你想保存现有数据请进行备份。"
554
+
555
+ #: counter-options.php:779
556
+ #: counter-options.php:802
557
+ #@ cpd
558
+ msgid "Yes"
559
+ msgstr "是"
560
+
561
+ #: counter-options.php:792
562
+ #@ cpd
563
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
564
+ msgstr "\"Count per Day\"如果只是在数据库表格中被禁用,它将任然发挥功效。"
565
+
566
+ #: counter-options.php:793
567
+ #@ cpd
568
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
569
+ msgstr "在这里你可以删除计数表格并取消使用\"Count per Day\"。"
570
+
571
+ #: counter-options.php:796
572
+ #@ cpd
573
+ msgid "WARNING"
574
+ msgstr "警告"
575
+
576
+ #: counter-options.php:797
577
+ #@ cpd
578
+ msgid "These tables (with ALL counter data) will be deleted."
579
+ msgstr "这些表格(所有的计数数据)将被删除。"
580
+
581
+ #: counter-options.php:799
582
+ #@ cpd
583
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
584
+ msgstr "如果重新安装\"Count per Day\",计数器将会从0开始重新计数。"
585
+
586
+ #: counter-options.php:803
587
+ #@ cpd
588
+ msgid "You are sure to disable Count per Day and delete all data?"
589
+ msgstr "你确定需要停止使用Count per Day并删除所有数据么?"
590
+
591
+ #: counter-options.php:811
592
+ #@ cpd
593
+ msgid "Support"
594
+ msgstr "技术支持"
595
+
596
+ #: counter-options.php:828
597
+ #@ cpd
598
+ msgid "Counter"
599
+ msgstr "计数器"
600
+
601
+ #: counter-options.php:832
602
+ #@ cpd
603
+ msgid "Online time"
604
+ msgstr "在线时间"
605
+
606
+ #: counter-options.php:833
607
+ #@ cpd
608
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
609
+ msgstr "统计在线人数的秒数。 在\"在线访问者数\"仪表盘里使用。"
610
+
611
+ #: counter-options.php:836
612
+ #@ cpd
613
+ msgid "Logged on Users"
614
+ msgstr "已登陆的用户"
615
+
616
+ #: counter-options.php:838
617
+ #@ cpd
618
+ msgid "count too"
619
+ msgstr "同样被计数"
620
+
621
+ #: counter-options.php:839
622
+ #@ cpd
623
+ msgid "until User Level"
624
+ msgstr "用户级"
625
+
626
+ #: counter-options.php:850
627
+ #@ cpd
628
+ msgid "Auto counter"
629
+ msgstr "自动计数器"
630
+
631
+ #: counter-options.php:851
632
+ #@ cpd
633
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
634
+ msgstr "计数会根据每一篇文章和页面进行自动改变,不需要在模版上进行改变。"
635
+
636
+ #: counter-options.php:854
637
+ #@ cpd
638
+ msgid "Bots to ignore"
639
+ msgstr "恶意机器人黑名单"
640
+
641
+ #: counter-options.php:858
642
+ #@ cpd
643
+ msgid "Anonymous IP"
644
+ msgstr "匿名IP"
645
+
646
+ #: counter-options.php:862
647
+ #@ cpd
648
+ msgid "Cache"
649
+ msgstr "缓存"
650
+
651
+ #: counter-options.php:863
652
+ #@ cpd
653
+ msgid "I use a cache plugin. Count these visits with ajax."
654
+ msgstr "我使用一个缓存插件。通过ajax来对这些访问进行计数。"
655
+
656
+ #: counter-options.php:866
657
+ #@ cpd
658
+ msgid "Clients and referrers"
659
+ msgstr "客户端与反向链接"
660
+
661
+ #: counter-options.php:869
662
+ #@ cpd
663
+ 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."
664
+ msgstr "保存并显示客户端与反向链接。<br />在数据库中需要大量的空间并提供更多关于访问者的具体信息。"
665
+
666
+ #: counter-options.php:871
667
+ #@ cpd
668
+ msgid "Save URL only, no query string."
669
+ msgstr "仅保存URL,不保存查询字符串。"
670
+
671
+ #: counter-options.php:889
672
+ #@ default
673
+ msgid "Dashboard"
674
+ msgstr "仪表盘"
675
+
676
+ #: counter-options.php:905
677
+ #@ cpd
678
+ msgid "Who can see it"
679
+ msgstr "允许查看的人"
680
+
681
+ #: counter-options.php:914
682
+ #@ cpd
683
+ msgid "custom"
684
+ msgstr "自定义"
685
+
686
+ #: counter-options.php:916
687
+ #@ cpd
688
+ msgid "and higher are allowed to see the statistics page."
689
+ msgstr "或者更高级的授权才被允许查看统计页。"
690
+
691
+ #: counter-options.php:918
692
+ #, php-format
693
+ #@ cpd
694
+ msgid "Set the %s capability %s a user need:"
695
+ msgstr "设定用户所需%s 权限 %s :"
696
+
697
+ #: counter-options.php:925
698
+ #: counter-options.php:929
699
+ #@ cpd
700
+ msgid "How many posts do you want to see on dashboard page?"
701
+ msgstr "你需要在仪表片上查看多少文章?"
702
+
703
+ #: counter-options.php:928
704
+ #@ cpd
705
+ msgid "Latest Counts - Posts"
706
+ msgstr "最新统计 - 文章"
707
+
708
+ #: counter-options.php:932
709
+ #@ cpd
710
+ msgid "Latest Counts - Days"
711
+ msgstr "最新统计 - 日期"
712
+
713
+ #: counter-options.php:933
714
+ #: counter-options.php:937
715
+ #: counter-options.php:959
716
+ #@ cpd
717
+ msgid "How many days do you want look back?"
718
+ msgstr "你需要查看多少天以前的记录?"
719
+
720
+ #: counter-options.php:936
721
+ #@ cpd
722
+ msgid "Chart - Days"
723
+ msgstr "图表 - 日期"
724
+
725
+ #: counter-options.php:940
726
+ #@ cpd
727
+ msgid "Chart - Height"
728
+ msgstr "图表 - 高度"
729
+
730
+ #: counter-options.php:941
731
+ #@ cpd
732
+ msgid "Height of the biggest bar"
733
+ msgstr "最高统计条的高度"
734
+
735
+ #: counter-options.php:945
736
+ #@ cpd
737
+ msgid "Countries"
738
+ msgstr "国家"
739
+
740
+ #: counter-options.php:946
741
+ #@ cpd
742
+ msgid "How many countries do you want to see on dashboard page?"
743
+ msgstr "你需要在仪表盘上查看多少国家?"
744
+
745
+ #: counter-options.php:951
746
+ #@ cpd
747
+ msgid "Substring of the user agent, separated by comma"
748
+ msgstr "用户的子字符串,通过逗号来进行分开"
749
+
750
+ #: counter-options.php:954
751
+ #@ cpd
752
+ msgid "Referrers - Entries"
753
+ msgstr "反向链接 - 输入"
754
+
755
+ #: counter-options.php:955
756
+ #@ cpd
757
+ msgid "How many referrers do you want to see on dashboard page?"
758
+ msgstr "你需要在仪表盘上查看多少反向链接?"
759
+
760
+ #: counter-options.php:958
761
+ #@ cpd
762
+ msgid "Referrers - Days"
763
+ msgstr "反向链接 - 日期"
764
+
765
+ #: counter-options.php:962
766
+ #@ cpd
767
+ msgid "Local URLs"
768
+ msgstr "本地 URLs"
769
+
770
+ #: counter-options.php:963
771
+ #@ cpd
772
+ msgid "Show local referrers too."
773
+ msgstr "同样显示本地反向链接"
774
+
775
+ #: counter-options.php:970
776
+ #@ default
777
+ msgid "Posts"
778
+ msgstr "文章"
779
+
780
+ #: counter-options.php:970
781
+ #@ default
782
+ msgid "Pages"
783
+ msgstr "页面"
784
+
785
+ #: counter-options.php:973
786
+ #@ cpd
787
+ msgid "Show in lists"
788
+ msgstr "列表形式表示"
789
+
790
+ #: counter-options.php:974
791
+ #@ cpd
792
+ msgid "Show \"Reads per Post\" in a new column in post management views."
793
+ msgstr "在查看文章管理中添加并显示新栏目\"每篇文章的阅读总数\"。"
794
+
795
+ #: counter-options.php:981
796
+ #@ cpd
797
+ msgid "Start Values"
798
+ msgstr "开始值"
799
+
800
+ #: counter-options.php:985
801
+ #@ cpd
802
+ msgid "Here you can change the date of first count and add a start count."
803
+ msgstr "在这里更改你的起始日期并且添加一个其实数值。"
804
+
805
+ #: counter-options.php:989
806
+ #@ cpd
807
+ msgid "Start date"
808
+ msgstr "开始日期"
809
+
810
+ #: counter-options.php:990
811
+ #@ cpd
812
+ msgid "Your old Counter starts at?"
813
+ msgstr "你原计数器开始于何日?"
814
+
815
+ #: counter-options.php:993
816
+ #: counter-options.php:997
817
+ #@ cpd
818
+ msgid "Start count"
819
+ msgstr "开始计数"
820
+
821
+ #: counter-options.php:994
822
+ #@ cpd
823
+ msgid "Add this value to \"Total visitors\"."
824
+ msgstr "添加这个值到 \"总访问数\"。"
825
+
826
+ #: counter-options.php:998
827
+ #@ cpd
828
+ msgid "Add this value to \"Total reads\"."
829
+ msgstr "添加这个值到 \"总阅览数\"。"
830
+
831
+ #: counter-options.php:1005
832
+ #@ cpd
833
+ msgid "Stylesheet"
834
+ msgstr "Stylesheet"
835
+
836
+ #: counter-options.php:1008
837
+ #@ cpd
838
+ msgid "NO Stylesheet in Frontend"
839
+ msgstr "不要在 fronttend 载入stylesheet。"
840
+
841
+ #: counter-options.php:1009
842
+ #@ cpd
843
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
844
+ msgstr "不要在 fronttend 载入stylesheet \"counter.css\"。"
845
+
846
+ #: counter-options.php:1019
847
+ #@ cpd
848
+ msgid "Entries per pass"
849
+ msgstr "每次许可的记录次数"
850
+
851
+ #: counter-options.php:1022
852
+ #@ cpd
853
+ msgid "How many entries should be saved per pass? Default: 10000"
854
+ msgstr "你需要在每一次许可保存多少次记录? 预设值: 10000"
855
+
856
+ #: counter-options.php:1027
857
+ #@ cpd
858
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
859
+ msgstr "如果你的PHP的存储上限小于 50 MB,在你产生空白页面或者错误信息的时候尝试更小的值。"
860
+
861
+ #: counter-options.php:1035
862
+ #@ cpd
863
+ msgid "Debug mode"
864
+ msgstr "调试模式"
865
+
866
+ #: counter-options.php:1037
867
+ #@ cpd
868
+ msgid "Show debug informations at the bottom of all pages."
869
+ msgstr "在所有页面的下方显示调试功能。"
870
+
871
+ #: counter-options.php:1042
872
+ #@ cpd
873
+ msgid "Update options"
874
+ msgstr "更新选项"
875
+
876
+ #: counter.php:231
877
+ #: counter.php:1407
878
+ #@ cpd
879
+ msgid "Total reads"
880
+ msgstr "总阅览数"
881
+
882
+ #: counter.php:232
883
+ #: counter.php:1408
884
+ #@ cpd
885
+ msgid "Reads today"
886
+ msgstr "今天阅读数量"
887
+
888
+ #: counter.php:233
889
+ #: counter.php:1409
890
+ #@ cpd
891
+ msgid "Reads yesterday"
892
+ msgstr "昨天阅读数量"
893
+
894
+ #: counter.php:234
895
+ #: counter.php:1410
896
+ #@ cpd
897
+ msgid "Reads last week"
898
+ msgstr "上周阅读数量"
899
+
900
+ #: counter.php:237
901
+ #: counter.php:1418
902
+ #@ cpd
903
+ msgid "Visitors currently online"
904
+ msgstr "现在在线的访问者数"
905
+
906
+ #: counter.php:238
907
+ #: counter.php:1413
908
+ #@ cpd
909
+ msgid "Visitors today"
910
+ msgstr "今天访问者数"
911
+
912
+ #: counter.php:239
913
+ #: counter.php:1414
914
+ #@ cpd
915
+ msgid "Visitors yesterday"
916
+ msgstr "昨日访问者数"
917
+
918
+ #: counter.php:240
919
+ #: counter.php:1415
920
+ #@ cpd
921
+ msgid "Visitors last week"
922
+ msgstr "上周访问者数"
923
+
924
+ #: counter.php:241
925
+ #: counter.php:1043
926
+ #@ cpd
927
+ msgid "Visitors"
928
+ msgstr "访问者数"
929
+
930
+ #: counter.php:969
931
+ #: counter.php:1419
932
+ #@ cpd
933
+ msgid "Counter starts on"
934
+ msgstr "计数起始于"
935
+
936
+ #: counter.php:244
937
+ #: counter.php:245
938
+ #@ cpd
939
+ msgid "Most visited day"
940
+ msgstr "最近被访问的日期"
941
+
942
+ #: counter.php:342
943
+ #@ cpd
944
+ msgid "Reads per day"
945
+ msgstr "每日阅读总数"
946
+
947
+ #: counter.php:433
948
+ #: counter.php:1249
949
+ #@ cpd
950
+ msgid "Map"
951
+ msgstr "地图"
952
+
953
+ #: counter.php:771
954
+ #, php-format
955
+ #@ cpd
956
+ msgid "The %s most visited posts in last %s days:"
957
+ msgstr "访问最多的文章 %s 篇 (过去 %s 天内)"
958
+
959
+ #: counter.php:888
960
+ #@ default
961
+ msgid "Show"
962
+ msgstr "显示"
963
+
964
+ #: counter.php:890
965
+ #: notes.php:55
966
+ #: notes.php:89
967
+ #@ cpd
968
+ msgid "Notes"
969
+ msgstr "标注"
970
+
971
+ #: counter.php:958
972
+ #@ cpd
973
+ msgid "Other"
974
+ msgstr "其他"
975
+
976
+ #: counter.php:989
977
+ #, php-format
978
+ #@ cpd
979
+ msgid "The %s referrers in last %s days:"
980
+ msgstr " %s 反向链接 (过去 %s 天内)"
981
+
982
+ #: counter.php:1130
983
+ #@ default
984
+ msgid "Edit Post"
985
+ msgstr "编辑文章"
986
+
987
+ #: counter.php:1139
988
+ #@ default
989
+ msgid "Category"
990
+ msgstr "分类"
991
+
992
+ #: counter.php:1142
993
+ #@ default
994
+ msgid "Tag"
995
+ msgstr "Tag"
996
+
997
+ #: massbots.php:63
998
+ #: userperspan.php:75
999
+ #@ default
1000
+ msgid "Front page displays"
1001
+ msgstr "首页显示"
1002
+
1003
+ #: counter.php:1193
1004
+ #, php-format
1005
+ #@ cpd
1006
+ msgid "The %s most searched strings:"
1007
+ msgstr "搜索最频繁的字符串 (过去 %s 天)"
1008
+
1009
+ #: counter.php:1202
1010
+ #, php-format
1011
+ #@ cpd
1012
+ msgid "The search strings of the last %s days:"
1013
+ msgstr "最近 %s 天内的搜索字符串"
1014
+
1015
+ #: counter.php:1406
1016
+ #@ cpd
1017
+ msgid "This post"
1018
+ msgstr "这篇文章"
1019
+
1020
+ #: counter.php:1431
1021
+ #@ default
1022
+ msgid "Title"
1023
+ msgstr "标题"
1024
+
1025
+ #: counter.php:1450
1026
+ #@ cpd
1027
+ msgid "drag and drop to sort"
1028
+ msgstr "拖放进行分类"
1029
+
1030
+ #: notes.php:90
1031
+ #@ default
1032
+ msgid "Action"
1033
+ msgstr "动作"
1034
+
1035
+ #: notes.php:95
1036
+ #@ cpd
1037
+ msgid "add"
1038
+ msgstr "添加"
1039
+
1040
+ #: notes.php:111
1041
+ #@ cpd
1042
+ msgid "save"
1043
+ msgstr "保存"
1044
+
1045
+ #: notes.php:112
1046
+ #@ cpd
1047
+ msgid "delete"
1048
+ msgstr "删除"
1049
+
1050
+ #: notes.php:123
1051
+ #@ cpd
1052
+ msgid "edit"
1053
+ msgstr "编辑"
1054
+
1055
+ #: userperspan.php:50
1056
+ #@ cpd
1057
+ msgid "Start"
1058
+ msgstr "开始"
1059
+
1060
+ #: userperspan.php:52
1061
+ #@ cpd
1062
+ msgid "End"
1063
+ msgstr "完结"
1064
+
1065
+ #: userperspan.php:54
1066
+ #@ cpd
1067
+ msgid "PostID"
1068
+ msgstr "文章ID"
1069
+
1070
+ #: userperspan.php:62
1071
+ #@ cpd
1072
+ msgid "no data found"
1073
+ msgstr "查找不到数据"
1074
+
1075
+ #: geoip/geoip.php:117
1076
+ #@ cpd
1077
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
1078
+ msgstr "对不起, 必要的组件(zlib)没有在 php.ini 中安装或者启用。"
1079
+
1080
+ #: geoip/geoip.php:142
1081
+ #@ cpd
1082
+ msgid "New GeoIP database installed."
1083
+ msgstr "新的GeoIP已经被安装。"
1084
+
1085
+ #: geoip/geoip.php:144
1086
+ #@ cpd
1087
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
1088
+ msgstr "对不起,产生错误。 请重新尝试或者检查链接目录\"geoip\" 的权限是否为 777。"
1089
+
1090
+ #: counter-core.php:986
1091
+ #@ cpd
1092
+ msgid "Export failed! Cannot open file."
1093
+ msgstr ""
1094
+
1095
+ #: counter-core.php:1034
1096
+ #@ cpd
1097
+ msgid "Download the export file:"
1098
+ msgstr ""
1099
+
1100
+ #: counter-core.php:1089
1101
+ #, php-format
1102
+ #@ cpd
1103
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
1104
+ msgstr ""
1105
+
1106
+ #: counter-options.php:289
1107
+ #@ cpd
1108
+ msgid "Deleting old data..."
1109
+ msgstr ""
1110
+
1111
+ #: counter-options.php:352
1112
+ #@ cpd
1113
+ msgid "Clients and referers deleted"
1114
+ msgstr ""
1115
+
1116
+ #: counter-options.php:493
1117
+ #@ cpd
1118
+ msgid "Most Industrious Visitors"
1119
+ msgstr ""
1120
+
1121
+ #: counter-options.php:497
1122
+ #, php-format
1123
+ #@ cpd
1124
+ msgid "Show the %s most industrious visitors of the last %s days"
1125
+ msgstr ""
1126
+
1127
+ #: counter-options.php:544
1128
+ #@ cpd
1129
+ msgid "Export"
1130
+ msgstr ""
1131
+
1132
+ #: counter-options.php:548
1133
+ #, php-format
1134
+ #@ cpd
1135
+ msgid "Export the last %s days as CSV-File"
1136
+ msgstr ""
1137
+
1138
+ #: counter-options.php:552
1139
+ #@ cpd
1140
+ msgid "Export entries"
1141
+ msgstr ""
1142
+
1143
+ #: counter-options.php:662
1144
+ #, php-format
1145
+ #@ cpd
1146
+ msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1147
+ msgstr ""
1148
+
1149
+ #: counter-options.php:666
1150
+ #@ cpd
1151
+ msgid "Delete clients and referers"
1152
+ msgstr ""
1153
+
1154
+ #: counter-options.php:875
1155
+ #@ cpd
1156
+ msgid "Post types"
1157
+ msgstr ""
1158
+
1159
+ #: counter-options.php:878
1160
+ #@ cpd
1161
+ msgid "Only count these post types. Leave empty to count them all."
1162
+ msgstr ""
1163
+
1164
+ #: counter-options.php:879
1165
+ #, php-format
1166
+ #@ cpd
1167
+ msgid "Current post types: %s"
1168
+ msgstr ""
1169
+
1170
+ #: counter.php:243
1171
+ #@ cpd
1172
+ msgid "Since"
1173
+ msgstr ""
1174
+
1175
+ #: counter.php:1145
1176
+ #@ default
1177
+ msgid "Front page"
1178
+ msgstr ""
1179
+
1180
+ #: counter.php:1366
1181
+ #@ default
1182
+ msgid "_name"
1183
+ msgstr ""
1184
+
1185
+ #: counter.php:1502
1186
+ #: counter.php:1534
1187
+ #@ cpd
1188
+ msgid "Popular Posts"
1189
+ msgstr ""
1190
+
1191
+ #: counter.php:1504
1192
+ #@ cpd
1193
+ msgid "List of Popular Posts"
1194
+ msgstr ""
1195
+
1196
+ #: counter.php:1542
1197
+ #@ cpd
1198
+ msgid "Title:"
1199
+ msgstr ""
1200
+
1201
+ #: counter.php:1546
1202
+ #@ cpd
1203
+ msgid "Days:"
1204
+ msgstr ""
1205
+
1206
+ #: counter.php:1550
1207
+ #@ cpd
1208
+ msgid "Limit:"
1209
+ msgstr ""
1210
+
1211
+ #: counter.php:1554
1212
+ #@ cpd
1213
+ msgid "Show header:"
1214
+ msgstr ""
1215
+
1216
+ #: counter.php:1558
1217
+ #@ cpd
1218
+ msgid "Show counters:"
1219
+ msgstr ""
1220
+
locale/cpd.pot ADDED
@@ -0,0 +1,922 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014
2
+ # This file is distributed under the same license as the package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: \n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/count-per-day\n"
7
+ "POT-Creation-Date: 2014-09-11 08:47:50+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+
15
+ #: counter-core.php:232
16
+ msgid "\"Count per Day\" updated to version %s."
17
+ msgstr ""
18
+
19
+ #: counter-core.php:641 counter-options.php:409
20
+ msgid "Settings"
21
+ msgstr ""
22
+
23
+ #: counter-core.php:742
24
+ msgid "Time for Count per Day: <code>%s</code>."
25
+ msgstr ""
26
+
27
+ #: counter-core.php:743
28
+ msgid "Bug? Problem? Question? Hint? Praise?"
29
+ msgstr ""
30
+
31
+ #: counter-core.php:744
32
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
33
+ msgstr ""
34
+
35
+ #: counter-core.php:745
36
+ msgid "License"
37
+ msgstr ""
38
+
39
+ #: counter-core.php:777 counter.php:236 counter.php:1218 counter.php:1412
40
+ msgid "Total visitors"
41
+ msgstr ""
42
+
43
+ #: counter-core.php:778
44
+ msgid "Visitors online"
45
+ msgstr ""
46
+
47
+ #: counter-core.php:779 counter.php:1416
48
+ msgid "Visitors per month"
49
+ msgstr ""
50
+
51
+ #: counter-core.php:780 counter.php:1411
52
+ msgid "Reads per month"
53
+ msgstr ""
54
+
55
+ #: counter-core.php:781 counter-options.php:924
56
+ msgid "Visitors per post"
57
+ msgstr ""
58
+
59
+ #: counter-core.php:782
60
+ msgid "Latest Counts"
61
+ msgstr ""
62
+
63
+ #: counter-core.php:783 counter.php:242 counter.php:343 counter.php:1220
64
+ #: counter.php:1417 userperspan.php:46
65
+ msgid "Visitors per day"
66
+ msgstr ""
67
+
68
+ #: counter-core.php:784 counter-options.php:954 counter-options.php:958
69
+ msgid "Search strings"
70
+ msgstr ""
71
+
72
+ #: counter-core.php:785
73
+ msgid "Plugin"
74
+ msgstr ""
75
+
76
+ #: counter-core.php:788 counter-options.php:950
77
+ msgid "Browsers"
78
+ msgstr ""
79
+
80
+ #: counter-core.php:789
81
+ msgid "Referrer"
82
+ msgstr ""
83
+
84
+ #: counter-core.php:793
85
+ msgid "Reads per Country"
86
+ msgstr ""
87
+
88
+ #: counter-core.php:794
89
+ msgid "Visitors per Country"
90
+ msgstr ""
91
+
92
+ #: counter-core.php:809 counter.php:1334
93
+ msgid "Statistics"
94
+ msgstr ""
95
+
96
+ #: counter-core.php:986
97
+ msgid "Export failed! Cannot open file."
98
+ msgstr ""
99
+
100
+ #: counter-core.php:1034
101
+ msgid "Download the export file:"
102
+ msgstr ""
103
+
104
+ #: counter-core.php:1062
105
+ msgid "Backup failed! Cannot open file"
106
+ msgstr ""
107
+
108
+ #: counter-core.php:1089
109
+ msgid "Backup of %s entries in progress. Every point comprises %s entries."
110
+ msgstr ""
111
+
112
+ #: counter-core.php:1176
113
+ msgid "Your can download the backup files here and now."
114
+ msgstr ""
115
+
116
+ #: counter-core.php:1180 counter-core.php:1188
117
+ msgid "Backup of counter table saved in %s."
118
+ msgstr ""
119
+
120
+ #: counter-core.php:1182 counter-core.php:1190
121
+ msgid "Backup of counter options and collection saved in %s."
122
+ msgstr ""
123
+
124
+ #: counter-core.php:1246
125
+ msgid "Error while reading backup file!"
126
+ msgstr ""
127
+
128
+ #: counter-core.php:1250
129
+ msgid "The backup was added to counter table %s."
130
+ msgstr ""
131
+
132
+ #: counter-core.php:1252
133
+ msgid "The counter table %s was restored from backup."
134
+ msgstr ""
135
+
136
+ #: counter-core.php:1269
137
+ msgid "Options restored from backup."
138
+ msgstr ""
139
+
140
+ #: counter-core.php:1526 counter-options.php:869 counter.php:235
141
+ #: counter.php:1019
142
+ msgid "Reads"
143
+ msgstr ""
144
+
145
+ #: counter-options.php:52
146
+ msgid "Options updated"
147
+ msgstr ""
148
+
149
+ #: counter-options.php:63
150
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
151
+ msgstr ""
152
+
153
+ #: counter-options.php:66
154
+ msgid "update next"
155
+ msgstr ""
156
+
157
+ #: counter-options.php:106
158
+ msgid "Mass Bots cleaned. %s counts deleted."
159
+ msgstr ""
160
+
161
+ #: counter-options.php:118
162
+ msgid "Database cleaned. %s rows deleted."
163
+ msgstr ""
164
+
165
+ #: counter-options.php:128
166
+ msgid "Counter reseted."
167
+ msgstr ""
168
+
169
+ #: counter-options.php:133 counter-options.php:803
170
+ msgid "UNINSTALL Count per Day"
171
+ msgstr ""
172
+
173
+ #: counter-options.php:138 counter-options.php:139 counter-options.php:140
174
+ msgid "Table %s deleted"
175
+ msgstr ""
176
+
177
+ #: counter-options.php:141
178
+ msgid "Options deleted"
179
+ msgstr ""
180
+
181
+ #: counter-options.php:174
182
+ msgid "Collection in progress..."
183
+ msgstr ""
184
+
185
+ #: counter-options.php:268
186
+ msgid "Get Visitors per Post..."
187
+ msgstr ""
188
+
189
+ #: counter-options.php:289
190
+ msgid "Deleting old data..."
191
+ msgstr ""
192
+
193
+ #: counter-options.php:313
194
+ msgid ""
195
+ "Counter entries until %s collected and counter table %s optimized (size "
196
+ "before = %s &gt; size after = %s)."
197
+ msgstr ""
198
+
199
+ #: counter-options.php:322
200
+ msgid "Installation of \"Count per Day\" checked"
201
+ msgstr ""
202
+
203
+ #: counter-options.php:337
204
+ msgid "Old search strings deleted"
205
+ msgstr ""
206
+
207
+ #: counter-options.php:352
208
+ msgid "Clients and referers deleted"
209
+ msgstr ""
210
+
211
+ #: counter-options.php:382 counter-options.php:789
212
+ msgid "Uninstall"
213
+ msgstr ""
214
+
215
+ #: counter-options.php:383
216
+ msgid "Click here"
217
+ msgstr ""
218
+
219
+ #: counter-options.php:383
220
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
221
+ msgstr ""
222
+
223
+ #: counter-options.php:408
224
+ msgid "Tools"
225
+ msgstr ""
226
+
227
+ #: counter-options.php:429 massbots.php:46
228
+ msgid "Mass Bots"
229
+ msgstr ""
230
+
231
+ #: counter-options.php:433
232
+ msgid "Show all IPs with more than %s page views per day"
233
+ msgstr ""
234
+
235
+ #: counter-options.php:434 counter-options.php:498 notes.php:84
236
+ #: userperspan.php:56
237
+ msgid "show"
238
+ msgstr ""
239
+
240
+ #: counter-options.php:442 counter-options.php:506
241
+ msgid "IP"
242
+ msgstr ""
243
+
244
+ #: counter-options.php:443 counter-options.php:507 notes.php:88
245
+ msgid "Date"
246
+ msgstr ""
247
+
248
+ #: counter-options.php:444 counter-options.php:508
249
+ msgid "Client"
250
+ msgstr ""
251
+
252
+ #: counter-options.php:445 counter-options.php:509
253
+ msgid "Views"
254
+ msgstr ""
255
+
256
+ #: counter-options.php:460 counter-options.php:476 counter-options.php:523
257
+ msgid "Delete these %s counts"
258
+ msgstr ""
259
+
260
+ #: counter-options.php:493
261
+ msgid "Most Industrious Visitors"
262
+ msgstr ""
263
+
264
+ #: counter-options.php:497
265
+ msgid "Show the %s most industrious visitors of the last %s days"
266
+ msgstr ""
267
+
268
+ #: counter-options.php:544
269
+ msgid "Export"
270
+ msgstr ""
271
+
272
+ #: counter-options.php:548
273
+ msgid "Export the last %s days as CSV-File"
274
+ msgstr ""
275
+
276
+ #: counter-options.php:552
277
+ msgid "Export entries"
278
+ msgstr ""
279
+
280
+ #: counter-options.php:560 counter-options.php:1016
281
+ msgid "Backup"
282
+ msgstr ""
283
+
284
+ #: counter-options.php:564
285
+ msgid ""
286
+ "Create a backup of the counter table %s in your wp-content directory (if "
287
+ "writable)."
288
+ msgstr ""
289
+
290
+ #: counter-options.php:567
291
+ msgid "Download only"
292
+ msgstr ""
293
+
294
+ #: counter-options.php:571
295
+ msgid "Backup the database"
296
+ msgstr ""
297
+
298
+ #: counter-options.php:599
299
+ msgid "Settings and collections"
300
+ msgstr ""
301
+
302
+ #: counter-options.php:604
303
+ msgid "Counter table %s"
304
+ msgstr ""
305
+
306
+ #: counter-options.php:611
307
+ msgid "Add data from the backup file %s to existing counter table?"
308
+ msgstr ""
309
+
310
+ #: counter-options.php:611
311
+ msgid "Add"
312
+ msgstr ""
313
+
314
+ #: counter-options.php:615
315
+ msgid "Restore data from the backup file %s ?"
316
+ msgstr ""
317
+
318
+ #: counter-options.php:615
319
+ msgid "Restore"
320
+ msgstr ""
321
+
322
+ #: counter-options.php:617
323
+ msgid "Delete"
324
+ msgstr ""
325
+
326
+ #: counter-options.php:618
327
+ msgid "Delete the backup file %s ?"
328
+ msgstr ""
329
+
330
+ #: counter-options.php:624
331
+ msgid "add backup to current counter table"
332
+ msgstr ""
333
+
334
+ #: counter-options.php:625
335
+ msgid "replace current counter table with with backup"
336
+ msgstr ""
337
+
338
+ #: counter-options.php:626
339
+ msgid "delete backup file"
340
+ msgstr ""
341
+
342
+ #: counter-options.php:637 counter-options.php:645
343
+ msgid "Clean the database"
344
+ msgstr ""
345
+
346
+ #: counter-options.php:641
347
+ msgid ""
348
+ "You can clean the counter table by delete the \"spam data\".<br />If you add "
349
+ "new bots above the old \"spam data\" keeps in the database.<br />Here you "
350
+ "can run the bot filter again and delete the visits of the bots."
351
+ msgstr ""
352
+
353
+ #: counter-options.php:651
354
+ msgid "Delete search strings older than %s days."
355
+ msgstr ""
356
+
357
+ #: counter-options.php:655
358
+ msgid "Delete search strings"
359
+ msgstr ""
360
+
361
+ #: counter-options.php:661 counter-options.php:680
362
+ msgid "Current size of your counter table %s is %s."
363
+ msgstr ""
364
+
365
+ #: counter-options.php:662
366
+ msgid ""
367
+ "Delete clients and referers older than %s days to reduce the size of the "
368
+ "counter table."
369
+ msgstr ""
370
+
371
+ #: counter-options.php:666
372
+ msgid "Delete clients and referers"
373
+ msgstr ""
374
+
375
+ #: counter-options.php:675 counter-options.php:707
376
+ msgid "Collect old data"
377
+ msgstr ""
378
+
379
+ #: counter-options.php:682
380
+ msgid ""
381
+ "You can collect old data and clean up the counter table.<br/>Reads and "
382
+ "visitors will be saved per month, per country and per post.<br/>Clients and "
383
+ "referrers will deleted."
384
+ msgstr ""
385
+
386
+ #: counter-options.php:687
387
+ msgid "Currently your collection contains data until %s."
388
+ msgstr ""
389
+
390
+ #: counter-options.php:691
391
+ msgid "Normally new data will be added to the collection."
392
+ msgstr ""
393
+
394
+ #: counter-options.php:697
395
+ msgid ""
396
+ "Delete old collection and create a new one which contains only the data "
397
+ "currently in counter table."
398
+ msgstr ""
399
+
400
+ #: counter-options.php:698
401
+ msgid "All collected data until %s will deleted."
402
+ msgstr ""
403
+
404
+ #: counter-options.php:703
405
+ msgid "Keep entries of last %s full months + current month in counter table."
406
+ msgstr ""
407
+
408
+ #: counter-options.php:720
409
+ msgid "GeoIP - Countries"
410
+ msgstr ""
411
+
412
+ #: counter-options.php:723
413
+ msgid ""
414
+ "You can get the country data for all entries in database by checking the IP "
415
+ "adress against the GeoIP database. This can take a while!"
416
+ msgstr ""
417
+
418
+ #: counter-options.php:729
419
+ msgid "Update old counter data"
420
+ msgstr ""
421
+
422
+ #: counter-options.php:736
423
+ msgid "Download a new version of GeoIP.dat file."
424
+ msgstr ""
425
+
426
+ #: counter-options.php:741
427
+ msgid "Update GeoIP database"
428
+ msgstr ""
429
+
430
+ #: counter-options.php:746
431
+ msgid "More informations about GeoIP"
432
+ msgstr ""
433
+
434
+ #: counter-options.php:754
435
+ msgid "ReActivation"
436
+ msgstr ""
437
+
438
+ #: counter-options.php:757
439
+ msgid ""
440
+ "Here you can start the installation functions manually.<br/>Same as "
441
+ "deactivate and reactivate the plugin."
442
+ msgstr ""
443
+
444
+ #: counter-options.php:762
445
+ msgid "ReActivate the plugin"
446
+ msgstr ""
447
+
448
+ #: counter-options.php:770 counter-options.php:780
449
+ msgid "Reset the counter"
450
+ msgstr ""
451
+
452
+ #: counter-options.php:773
453
+ msgid ""
454
+ "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup "
455
+ "if you need the current data!"
456
+ msgstr ""
457
+
458
+ #: counter-options.php:779 counter-options.php:802
459
+ msgid "Yes"
460
+ msgstr ""
461
+
462
+ #: counter-options.php:792
463
+ msgid ""
464
+ "If \"Count per Day\" only disabled the tables in the database will be "
465
+ "preserved."
466
+ msgstr ""
467
+
468
+ #: counter-options.php:793
469
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
470
+ msgstr ""
471
+
472
+ #: counter-options.php:796
473
+ msgid "WARNING"
474
+ msgstr ""
475
+
476
+ #: counter-options.php:797
477
+ msgid "These tables (with ALL counter data) will be deleted."
478
+ msgstr ""
479
+
480
+ #: counter-options.php:799
481
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
482
+ msgstr ""
483
+
484
+ #: counter-options.php:803
485
+ msgid "You are sure to disable Count per Day and delete all data?"
486
+ msgstr ""
487
+
488
+ #: counter-options.php:811
489
+ msgid "Support"
490
+ msgstr ""
491
+
492
+ #: counter-options.php:828
493
+ msgid "Counter"
494
+ msgstr ""
495
+
496
+ #: counter-options.php:832
497
+ msgid "Online time"
498
+ msgstr ""
499
+
500
+ #: counter-options.php:833
501
+ msgid ""
502
+ "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
503
+ msgstr ""
504
+
505
+ #: counter-options.php:836
506
+ msgid "Logged on Users"
507
+ msgstr ""
508
+
509
+ #: counter-options.php:838
510
+ msgid "count too"
511
+ msgstr ""
512
+
513
+ #: counter-options.php:839
514
+ msgid "until User Level"
515
+ msgstr ""
516
+
517
+ #: counter-options.php:850
518
+ msgid "Auto counter"
519
+ msgstr ""
520
+
521
+ #: counter-options.php:851
522
+ msgid ""
523
+ "Counts automatically single-posts and pages, no changes on template needed."
524
+ msgstr ""
525
+
526
+ #: counter-options.php:854
527
+ msgid "Bots to ignore"
528
+ msgstr ""
529
+
530
+ #: counter-options.php:858
531
+ msgid "Anonymous IP"
532
+ msgstr ""
533
+
534
+ #: counter-options.php:862
535
+ msgid "Cache"
536
+ msgstr ""
537
+
538
+ #: counter-options.php:863
539
+ msgid "I use a cache plugin. Count these visits with ajax."
540
+ msgstr ""
541
+
542
+ #: counter-options.php:866
543
+ msgid "Clients and referrers"
544
+ msgstr ""
545
+
546
+ #: counter-options.php:869
547
+ msgid ""
548
+ "Save and show clients and referrers.<br />Needs a lot of space in the "
549
+ "database but gives you more detailed informations of your visitors."
550
+ msgstr ""
551
+
552
+ #: counter-options.php:871
553
+ msgid "Save URL only, no query string."
554
+ msgstr ""
555
+
556
+ #: counter-options.php:875
557
+ msgid "Post types"
558
+ msgstr ""
559
+
560
+ #: counter-options.php:878
561
+ msgid "Only count these post types. Leave empty to count them all."
562
+ msgstr ""
563
+
564
+ #: counter-options.php:879
565
+ msgid "Current post types: %s"
566
+ msgstr ""
567
+
568
+ #: counter-options.php:889
569
+ msgid "Dashboard"
570
+ msgstr ""
571
+
572
+ #: counter-options.php:905
573
+ msgid "Who can see it"
574
+ msgstr ""
575
+
576
+ #: counter-options.php:914
577
+ msgid "custom"
578
+ msgstr ""
579
+
580
+ #: counter-options.php:916
581
+ msgid "and higher are allowed to see the statistics page."
582
+ msgstr ""
583
+
584
+ #: counter-options.php:918
585
+ msgid "Set the %s capability %s a user need:"
586
+ msgstr ""
587
+
588
+ #: counter-options.php:925 counter-options.php:929
589
+ msgid "How many posts do you want to see on dashboard page?"
590
+ msgstr ""
591
+
592
+ #: counter-options.php:928
593
+ msgid "Latest Counts - Posts"
594
+ msgstr ""
595
+
596
+ #: counter-options.php:932
597
+ msgid "Latest Counts - Days"
598
+ msgstr ""
599
+
600
+ #: counter-options.php:933 counter-options.php:937 counter-options.php:959
601
+ msgid "How many days do you want look back?"
602
+ msgstr ""
603
+
604
+ #: counter-options.php:936
605
+ msgid "Chart - Days"
606
+ msgstr ""
607
+
608
+ #: counter-options.php:940
609
+ msgid "Chart - Height"
610
+ msgstr ""
611
+
612
+ #: counter-options.php:941
613
+ msgid "Height of the biggest bar"
614
+ msgstr ""
615
+
616
+ #: counter-options.php:945
617
+ msgid "Countries"
618
+ msgstr ""
619
+
620
+ #: counter-options.php:946
621
+ msgid "How many countries do you want to see on dashboard page?"
622
+ msgstr ""
623
+
624
+ #: counter-options.php:951
625
+ msgid "Substring of the user agent, separated by comma"
626
+ msgstr ""
627
+
628
+ #: counter-options.php:954
629
+ msgid "Referrers - Entries"
630
+ msgstr ""
631
+
632
+ #: counter-options.php:955
633
+ msgid "How many referrers do you want to see on dashboard page?"
634
+ msgstr ""
635
+
636
+ #: counter-options.php:958
637
+ msgid "Referrers - Days"
638
+ msgstr ""
639
+
640
+ #: counter-options.php:962
641
+ msgid "Local URLs"
642
+ msgstr ""
643
+
644
+ #: counter-options.php:963
645
+ msgid "Show local referrers too."
646
+ msgstr ""
647
+
648
+ #: counter-options.php:970
649
+ msgid "Posts"
650
+ msgstr ""
651
+
652
+ #: counter-options.php:970
653
+ msgid "Pages"
654
+ msgstr ""
655
+
656
+ #: counter-options.php:973
657
+ msgid "Show in lists"
658
+ msgstr ""
659
+
660
+ #: counter-options.php:974
661
+ msgid "Show \"Reads per Post\" in a new column in post management views."
662
+ msgstr ""
663
+
664
+ #: counter-options.php:981
665
+ msgid "Start Values"
666
+ msgstr ""
667
+
668
+ #: counter-options.php:985
669
+ msgid "Here you can change the date of first count and add a start count."
670
+ msgstr ""
671
+
672
+ #: counter-options.php:989
673
+ msgid "Start date"
674
+ msgstr ""
675
+
676
+ #: counter-options.php:990
677
+ msgid "Your old Counter starts at?"
678
+ msgstr ""
679
+
680
+ #: counter-options.php:993 counter-options.php:997
681
+ msgid "Start count"
682
+ msgstr ""
683
+
684
+ #: counter-options.php:994
685
+ msgid "Add this value to \"Total visitors\"."
686
+ msgstr ""
687
+
688
+ #: counter-options.php:998
689
+ msgid "Add this value to \"Total reads\"."
690
+ msgstr ""
691
+
692
+ #: counter-options.php:1005
693
+ msgid "Stylesheet"
694
+ msgstr ""
695
+
696
+ #: counter-options.php:1008
697
+ msgid "NO Stylesheet in Frontend"
698
+ msgstr ""
699
+
700
+ #: counter-options.php:1009
701
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
702
+ msgstr ""
703
+
704
+ #: counter-options.php:1019
705
+ msgid "Entries per pass"
706
+ msgstr ""
707
+
708
+ #: counter-options.php:1022
709
+ msgid "How many entries should be saved per pass? Default: 10000"
710
+ msgstr ""
711
+
712
+ #: counter-options.php:1027
713
+ msgid ""
714
+ "If your PHP memory limit less then 50 MB and you get a white page or error "
715
+ "messages try a smaller value."
716
+ msgstr ""
717
+
718
+ #: counter-options.php:1035
719
+ msgid "Debug mode"
720
+ msgstr ""
721
+
722
+ #: counter-options.php:1037
723
+ msgid "Show debug informations at the bottom of all pages."
724
+ msgstr ""
725
+
726
+ #: counter-options.php:1042
727
+ msgid "Update options"
728
+ msgstr ""
729
+
730
+ #: counter.php:231 counter.php:1407
731
+ msgid "Total reads"
732
+ msgstr ""
733
+
734
+ #: counter.php:232 counter.php:1408
735
+ msgid "Reads today"
736
+ msgstr ""
737
+
738
+ #: counter.php:233 counter.php:1409
739
+ msgid "Reads yesterday"
740
+ msgstr ""
741
+
742
+ #: counter.php:234 counter.php:1410
743
+ msgid "Reads last week"
744
+ msgstr ""
745
+
746
+ #: counter.php:237 counter.php:1418
747
+ msgid "Visitors currently online"
748
+ msgstr ""
749
+
750
+ #: counter.php:238 counter.php:1413
751
+ msgid "Visitors today"
752
+ msgstr ""
753
+
754
+ #: counter.php:239 counter.php:1414
755
+ msgid "Visitors yesterday"
756
+ msgstr ""
757
+
758
+ #: counter.php:240 counter.php:1415
759
+ msgid "Visitors last week"
760
+ msgstr ""
761
+
762
+ #: counter.php:241 counter.php:1043
763
+ msgid "Visitors"
764
+ msgstr ""
765
+
766
+ #: counter.php:243
767
+ msgid "Since"
768
+ msgstr ""
769
+
770
+ #: counter.php:244 counter.php:245
771
+ msgid "Most visited day"
772
+ msgstr ""
773
+
774
+ #: counter.php:342
775
+ msgid "Reads per day"
776
+ msgstr ""
777
+
778
+ #: counter.php:433 counter.php:1249
779
+ msgid "Map"
780
+ msgstr ""
781
+
782
+ #: counter.php:771
783
+ msgid "The %s most visited posts in last %s days:"
784
+ msgstr ""
785
+
786
+ #: counter.php:888
787
+ msgid "Show"
788
+ msgstr ""
789
+
790
+ #: counter.php:890 notes.php:55 notes.php:89
791
+ msgid "Notes"
792
+ msgstr ""
793
+
794
+ #: counter.php:958
795
+ msgid "Other"
796
+ msgstr ""
797
+
798
+ #: counter.php:969 counter.php:1419
799
+ msgid "Counter starts on"
800
+ msgstr ""
801
+
802
+ #: counter.php:989
803
+ msgid "The %s referrers in last %s days:"
804
+ msgstr ""
805
+
806
+ #: counter.php:1130
807
+ msgid "Edit Post"
808
+ msgstr ""
809
+
810
+ #: counter.php:1139
811
+ msgid "Category"
812
+ msgstr ""
813
+
814
+ #: counter.php:1142
815
+ msgid "Tag"
816
+ msgstr ""
817
+
818
+ #: counter.php:1145
819
+ msgid "Front page"
820
+ msgstr ""
821
+
822
+ #: counter.php:1193
823
+ msgid "The %s most searched strings:"
824
+ msgstr ""
825
+
826
+ #: counter.php:1202
827
+ msgid "The search strings of the last %s days:"
828
+ msgstr ""
829
+
830
+ #: counter.php:1406
831
+ msgid "This post"
832
+ msgstr ""
833
+
834
+ #: counter.php:1431
835
+ msgid "Title"
836
+ msgstr ""
837
+
838
+ #: counter.php:1450
839
+ msgid "drag and drop to sort"
840
+ msgstr ""
841
+
842
+ #: counter.php:1502 counter.php:1534
843
+ msgid "Popular Posts"
844
+ msgstr ""
845
+
846
+ #: counter.php:1504
847
+ msgid "List of Popular Posts"
848
+ msgstr ""
849
+
850
+ #: counter.php:1542
851
+ msgid "Title:"
852
+ msgstr ""
853
+
854
+ #: counter.php:1546
855
+ msgid "Days:"
856
+ msgstr ""
857
+
858
+ #: counter.php:1550
859
+ msgid "Limit:"
860
+ msgstr ""
861
+
862
+ #: counter.php:1554
863
+ msgid "Show header:"
864
+ msgstr ""
865
+
866
+ #: counter.php:1558
867
+ msgid "Show counters:"
868
+ msgstr ""
869
+
870
+ #: geoip/geoip.php:117
871
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
872
+ msgstr ""
873
+
874
+ #: geoip/geoip.php:142
875
+ msgid "New GeoIP database installed."
876
+ msgstr ""
877
+
878
+ #: geoip/geoip.php:144
879
+ msgid ""
880
+ "Sorry, an error occurred. Try again or check the access rights of directory "
881
+ "\"geoip\" is 777."
882
+ msgstr ""
883
+
884
+ #: massbots.php:63 userperspan.php:75
885
+ msgid "Front page displays"
886
+ msgstr ""
887
+
888
+ #: notes.php:90
889
+ msgid "Action"
890
+ msgstr ""
891
+
892
+ #: notes.php:95
893
+ msgid "add"
894
+ msgstr ""
895
+
896
+ #: notes.php:111
897
+ msgid "save"
898
+ msgstr ""
899
+
900
+ #: notes.php:112
901
+ msgid "delete"
902
+ msgstr ""
903
+
904
+ #: notes.php:123
905
+ msgid "edit"
906
+ msgstr ""
907
+
908
+ #: userperspan.php:50
909
+ msgid "Start"
910
+ msgstr ""
911
+
912
+ #: userperspan.php:52
913
+ msgid "End"
914
+ msgstr ""
915
+
916
+ #: userperspan.php:54
917
+ msgid "PostID"
918
+ msgstr ""
919
+
920
+ #: userperspan.php:62
921
+ msgid "no data found"
922
+ msgstr ""
notes.php CHANGED
@@ -28,8 +28,8 @@ else if ( isset($_GET['year']) )
28
  else
29
  $year = date_i18n('Y');
30
 
31
- $date = strip_tags($_POST['date']);
32
- $note = strip_tags($_POST['note']);
33
 
34
  // load notes
35
  $n = (array) get_option('count_per_day_notes');
28
  else
29
  $year = date_i18n('Y');
30
 
31
+ $date = isset($_POST['date']) ? strip_tags($_POST['date']) : '';
32
+ $note = isset($_POST['note']) ? strip_tags($_POST['note']) : '';
33
 
34
  // load notes
35
  $n = (array) get_option('count_per_day_notes');
readme.txt CHANGED
@@ -2,8 +2,8 @@
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.9
6
- Stable tag: 3.2.10
7
  License: Postcardware :)
8
  Donate link: http://www.tomsdimension.de/postcards
9
 
@@ -25,12 +25,13 @@ Visit Counter, shows reads and visitors per page, visitors today, yesterday, las
25
 
26
  = Languages, Translators =
27
 
28
- - up to date translations:
29
  - Bulgarian - joro - http://www.joro711.com
 
30
  - Finnish - Jani Alha - http://www.wysiwyg.fi
31
  - German - Tom - http://www.tomsdimension.de
32
  - Japanese - Juno Hayami - http://juno.main.jp/blog/
33
- - Persian - Mahmoud Zooroofchi - www.zooroofchi.ir
34
  - Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
35
  - Russian - Ilya Pshenichny - http://iluhis.com
36
  - Serbian - Diana - http://wpdiscounts.com
@@ -58,7 +59,6 @@ Visit Counter, shows reads and visitors per page, visitors today, yesterday, las
58
 
59
  1. unzip plugin directory into the '/wp-content/plugins/' directory
60
  1. activate the plugin through the 'Plugins' menu in WordPress
61
- 1. on every update you have to deactivate and reactivate the plugin to update some settings!
62
 
63
  The activation will create or update a table wp_cpd_counter.
64
 
@@ -68,6 +68,8 @@ The Visitors-per-Day function use 7 days as default. So don't surprise about a w
68
 
69
  See the Options Page and check the default values.
70
 
 
 
71
  == Frequently Asked Questions ==
72
 
73
  = Need Help? Find Bug? =
@@ -114,6 +116,7 @@ To use the shortcodes within a text widget you have to add 'add_filter("widget_t
114
  [CPD_COUNTRIES]
115
  [CPD_COUNTRIES_USERS]
116
  [CPD_REFERERS]
 
117
  [CPD_MOST_VISITED_POSTS limit="5" days="30" postsonly="1" posttypes="posts,pages"]
118
  - limit (optional): max records to show, default = all
119
  - days (optional), show last x days
@@ -307,6 +310,18 @@ show( $before, $after, $show, $count, $page )'
307
 
308
  == Changelog ==
309
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  = 3.2.10 =
311
  + Bugfix: Plugin dir path fixed
312
  + Bugfix: CSS path fixed
2
  Contributors: Tom Braider
3
  Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
4
  Requires at least: 3.0
5
+ Tested up to: 4.1
6
+ Stable tag: 3.3
7
  License: Postcardware :)
8
  Donate link: http://www.tomsdimension.de/postcards
9
 
25
 
26
  = Languages, Translators =
27
 
28
+ - nearly up to date translations:
29
  - Bulgarian - joro - http://www.joro711.com
30
+ - Chinese - Siyuan Tang - http://mopbear.com
31
  - Finnish - Jani Alha - http://www.wysiwyg.fi
32
  - German - Tom - http://www.tomsdimension.de
33
  - Japanese - Juno Hayami - http://juno.main.jp/blog/
34
+ - Persian - Mahmoud Zooroofchi - http://www.zooroofchi.ir
35
  - Portuguese - Beto Ribeiro - http://www.sevenarts.com.br
36
  - Russian - Ilya Pshenichny - http://iluhis.com
37
  - Serbian - Diana - http://wpdiscounts.com
59
 
60
  1. unzip plugin directory into the '/wp-content/plugins/' directory
61
  1. activate the plugin through the 'Plugins' menu in WordPress
 
62
 
63
  The activation will create or update a table wp_cpd_counter.
64
 
68
 
69
  See the Options Page and check the default values.
70
 
71
+
72
+
73
  == Frequently Asked Questions ==
74
 
75
  = Need Help? Find Bug? =
116
  [CPD_COUNTRIES]
117
  [CPD_COUNTRIES_USERS]
118
  [CPD_REFERERS]
119
+ [CPD_FLOTCHART]
120
  [CPD_MOST_VISITED_POSTS limit="5" days="30" postsonly="1" posttypes="posts,pages"]
121
  - limit (optional): max records to show, default = all
122
  - days (optional), show last x days
310
 
311
  == Changelog ==
312
 
313
+ = 3.3 =
314
+ + New: List of most industrious Visitors
315
+ + New: Export data as CSV file
316
+ + New: count given post types only
317
+ + New: Shortcode CPD_FLOTCHART to show the big chart
318
+ + New: Popular Posts Widget, thanks to Maurits van der Schee http://www.leaseweblabs.com/2014/01/popular-posts-count-per-day-wordpress-plugin
319
+ + New: Part of IP adresses in Bot List, '192.168' will block all visitors from '192.168.x.x'
320
+ + New language: Chinese, thanks to Siyuan Tang
321
+ + Bugfix: counting of cached pages
322
+ + Bugfix: cleaning database, delete entries per IP in bot list
323
+ + some little fixes
324
+
325
  = 3.2.10 =
326
  + Bugfix: Plugin dir path fixed
327
  + Bugfix: CSS path fixed