Count per Day - Version 3.4

Version Description

  • New: limit the length of client and referer to reduce database size and eliminate MySql strict mode errors
  • New: exclude countries you not want to count
  • New: Flash free World map
  • New: Flag of Malawi
  • Bugfix: language support without WPLANG constant
  • Bugfix: get temp directory
Download this release

Release Info

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

Code changes from version 3.3 to 3.4

counter-core.php CHANGED
@@ -89,8 +89,8 @@ function init()
89
  }
90
 
91
  // locale support
92
- if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
93
- load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
94
 
95
  // adds stylesheet
96
  if (is_admin())
@@ -249,9 +249,12 @@ function anonymize_ip( $ip )
249
  if ($this->options['anoip'])
250
  {
251
  $i = explode('.', $ip);
252
- $i[3] += round( array_sum($i) / 4 + date_i18n('d') );
253
- if ( $i[3] > 255 )
254
- $i[3] -= 255;
 
 
 
255
  return implode('.', $i);
256
  }
257
  else
@@ -281,7 +284,7 @@ function getPostID()
281
  else if (is_singular())
282
  // single page with template tag show() or count()
283
  $p = get_the_ID();
284
- // "index" pages only with autocount
285
  else if ( is_category() || is_tag() )
286
  // category or tag => negativ ID in CpD DB
287
  $p = 0 - $wp_query->get_queried_object_id();
@@ -390,11 +393,11 @@ function createTables()
390
  $sql = "CREATE TABLE IF NOT EXISTS `$cpd_c` (
391
  `id` int(10) NOT NULL auto_increment,
392
  `ip` int(10) unsigned NOT NULL,
393
- `client` varchar(150) NOT NULL,
394
  `date` date NOT NULL,
395
  `page` mediumint(9) NOT NULL,
396
  `country` CHAR(2) NOT NULL,
397
- `referer` varchar(100) NOT NULL,
398
  PRIMARY KEY (`id`),
399
  KEY `idx_page` (`page`),
400
  KEY `idx_dateip` (`date`,`ip`) )
@@ -412,11 +415,20 @@ function createTables()
412
  "ALTER TABLE `$cpd_c` DROP `ip`",
413
  "ALTER TABLE `$cpd_c` CHANGE `ip2` `ip` INT( 10 ) UNSIGNED NOT NULL",
414
  "ALTER TABLE `$cpd_c` CHANGE `date` `date` date NOT NULL",
415
- "ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL");
 
 
 
416
  foreach ($queries as $sql)
417
  $this->mysqlQuery('', $sql, 'update old fields '.__LINE__);
418
  }
419
 
 
 
 
 
 
 
420
  // make new keys
421
  $keys = $this->mysqlQuery('rows', "SHOW KEYS FROM `$cpd_c`", 'make keys '.__LINE__);
422
  $s = array();
@@ -666,6 +678,7 @@ function updateOptions()
666
  'chart_days' => 60,
667
  'chart_height' => 200,
668
  'countries' => 20,
 
669
  'startdate' => '',
670
  'startcount' => '',
671
  'startreads' => '',
@@ -676,6 +689,7 @@ function updateOptions()
676
  'debug' => 0,
677
  'referers' => 1,
678
  'referers_cut' => 0,
 
679
  'localref' => 1,
680
  'dashboard_referers' => 20,
681
  'referers_last_days' => 7,
@@ -977,7 +991,7 @@ function export( $days = 180 )
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');
@@ -1053,7 +1067,7 @@ function backup()
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');
@@ -1113,7 +1127,8 @@ function backup()
1113
  // add values
1114
  $v = '';
1115
  foreach ($row as $val)
1116
- $v .= "'".mysql_real_escape_string($val)."',";
 
1117
  $v = '('.substr($v,0,-1).'),';
1118
 
1119
  if ( strlen($line) < 50000 - strlen($v) )
@@ -1157,7 +1172,7 @@ function backup()
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)
89
  }
90
 
91
  // locale support
92
+ // if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
93
+ load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
94
 
95
  // adds stylesheet
96
  if (is_admin())
249
  if ($this->options['anoip'])
250
  {
251
  $i = explode('.', $ip);
252
+ if (isset($i[3]))
253
+ {
254
+ $i[3] += round( array_sum($i) / 4 + date_i18n('d') );
255
+ if ( $i[3] > 255 )
256
+ $i[3] -= 255;
257
+ }
258
  return implode('.', $i);
259
  }
260
  else
284
  else if (is_singular())
285
  // single page with template tag show() or count()
286
  $p = get_the_ID();
287
+ // "index" pages only with autocount
288
  else if ( is_category() || is_tag() )
289
  // category or tag => negativ ID in CpD DB
290
  $p = 0 - $wp_query->get_queried_object_id();
393
  $sql = "CREATE TABLE IF NOT EXISTS `$cpd_c` (
394
  `id` int(10) NOT NULL auto_increment,
395
  `ip` int(10) unsigned NOT NULL,
396
+ `client` varchar(250) NOT NULL,
397
  `date` date NOT NULL,
398
  `page` mediumint(9) NOT NULL,
399
  `country` CHAR(2) NOT NULL,
400
+ `referer` varchar(250) NOT NULL,
401
  PRIMARY KEY (`id`),
402
  KEY `idx_page` (`page`),
403
  KEY `idx_dateip` (`date`,`ip`) )
415
  "ALTER TABLE `$cpd_c` DROP `ip`",
416
  "ALTER TABLE `$cpd_c` CHANGE `ip2` `ip` INT( 10 ) UNSIGNED NOT NULL",
417
  "ALTER TABLE `$cpd_c` CHANGE `date` `date` date NOT NULL",
418
+ "ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL",
419
+ "ALTER TABLE `$cpd_c` CHANGE `client` `client` VARCHAR( 250 ) NOT NULL",
420
+ "ALTER TABLE `$cpd_c` CHANGE `referer` `referer` VARCHAR( 250 ) NOT NULL"
421
+ );
422
  foreach ($queries as $sql)
423
  $this->mysqlQuery('', $sql, 'update old fields '.__LINE__);
424
  }
425
 
426
+ // change textfield limit
427
+ $sql = "ALTER TABLE `$cpd_c`
428
+ CHANGE `client` `client` VARCHAR( 500 ) NOT NULL ,
429
+ CHANGE `referer` `referer` VARCHAR( 500 ) NOT NULL;";
430
+ $this->mysqlQuery('', $sql, 'change textfield limit '.__LINE__);
431
+
432
  // make new keys
433
  $keys = $this->mysqlQuery('rows', "SHOW KEYS FROM `$cpd_c`", 'make keys '.__LINE__);
434
  $s = array();
678
  'chart_days' => 60,
679
  'chart_height' => 200,
680
  'countries' => 20,
681
+ 'exclude_countries' => '',
682
  'startdate' => '',
683
  'startcount' => '',
684
  'startreads' => '',
689
  'debug' => 0,
690
  'referers' => 1,
691
  'referers_cut' => 0,
692
+ 'fieldlen' => 150,
693
  'localref' => 1,
694
  'dashboard_referers' => 20,
695
  'referers_last_days' => 7,
991
  global $wpdb;
992
  $t = $wpdb->cpd_counter;
993
  $tname = $t.'_last_'.$days.'_days_'.date_i18n('Y-m-d_H-i-s').'.csv';
994
+ $path = tempnam(sys_get_temp_dir(), 'cpdexport');
995
 
996
  // open file
997
  $f = fopen($path,'w');
1067
  $name = '/'.$tname;
1068
 
1069
  // wp-content or tempdir?
1070
+ $path = ( empty($_POST['downloadonly']) && is_writable(WP_CONTENT_DIR) ) ? WP_CONTENT_DIR.$name : tempnam(sys_get_temp_dir(), 'cpdbackup');
1071
 
1072
  // open file
1073
  $f = ($gz) ? gzopen($path,'w9') : fopen($path,'w');
1127
  // add values
1128
  $v = '';
1129
  foreach ($row as $val)
1130
+ // $v .= "'".mysql_real_escape_string($val)."',";
1131
+ $v .= "'".esc_sql($val)."',";
1132
  $v = '('.substr($v,0,-1).'),';
1133
 
1134
  if ( strlen($line) < 50000 - strlen($v) )
1172
  $toname = 'count_per_day_options_'.date_i18n('Y-m-d_H-i-s').'.txt';
1173
  if ($gz) $toname .= '.gz';
1174
  $oname = '/'.$toname;
1175
+ $opath = ( empty($_POST['downloadonly']) && is_writable(WP_CONTENT_DIR) ) ? WP_CONTENT_DIR.$oname : tempnam(sys_get_temp_dir(), 'cpdbackup');
1176
  $f = ($gz) ? gzopen($opath,'w9') : fopen($opath,'w');
1177
 
1178
  foreach (array('count_per_day', 'count_per_day_summary', 'count_per_day_collected', 'count_per_day_posts', 'count_per_day_notes') as $o)
counter-options.php CHANGED
@@ -29,11 +29,13 @@ if(!empty($_POST['do']))
29
  $count_per_day->options['startreads'] = $_POST['cpd_startreads'];
30
  $count_per_day->options['anoip'] = empty( $_POST['cpd_anoip'] ) ? 0 : 1 ;
31
  $count_per_day->options['clients'] = $_POST['cpd_clients'];
 
32
  $count_per_day->options['ajax'] = empty( $_POST['cpd_ajax'] ) ? 0 : 1 ;
33
  $count_per_day->options['debug'] = empty( $_POST['cpd_debug'] ) ? 0 : 1 ;
34
  $count_per_day->options['localref'] = empty( $_POST['cpd_localref'] ) ? 0 : 1 ;
35
  $count_per_day->options['referers'] = empty( $_POST['cpd_referers'] ) ? 0 : 1 ;
36
  $count_per_day->options['referers_cut'] = empty( $_POST['cpd_referers_cut'] ) ? 0 : 1 ;
 
37
  $count_per_day->options['dashboard_referers'] = $_POST['cpd_dashboard_referers'];
38
  $count_per_day->options['referers_last_days'] = $_POST['cpd_referers_last_days'];
39
  $count_per_day->options['chart_old'] = empty( $_POST['cpd_chart_old'] ) ? 0 : 1 ;
@@ -58,6 +60,7 @@ if(!empty($_POST['do']))
58
  {
59
  $count_per_day->queries[] = 'cpd_countries - class "CpdGeoIp" exists';
60
  $rest = CpdGeoIp::updateDB();
 
61
  echo '<div class="updated">
62
  <form name="cpdcountries" method="post" action="'.$mysiteurl.'">
63
  <p>'.sprintf(__('Countries updated. <b>%s</b> entries in %s without country left', 'cpd'), $rest, $wpdb->cpd_counter);
@@ -854,6 +857,13 @@ switch($mode) {
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>
@@ -867,8 +877,11 @@ switch($mode) {
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/>
870
- <label for="cpd_referers_cut"><input type="checkbox" name="cpd_referers_cut" id="cpd_referers_cut" <?php checked($o['referers_cut'], 1) ?> />
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>
29
  $count_per_day->options['startreads'] = $_POST['cpd_startreads'];
30
  $count_per_day->options['anoip'] = empty( $_POST['cpd_anoip'] ) ? 0 : 1 ;
31
  $count_per_day->options['clients'] = $_POST['cpd_clients'];
32
+ $count_per_day->options['exclude_countries'] = strtolower(str_replace(' ', '', $_POST['cpd_exclude_countries']));
33
  $count_per_day->options['ajax'] = empty( $_POST['cpd_ajax'] ) ? 0 : 1 ;
34
  $count_per_day->options['debug'] = empty( $_POST['cpd_debug'] ) ? 0 : 1 ;
35
  $count_per_day->options['localref'] = empty( $_POST['cpd_localref'] ) ? 0 : 1 ;
36
  $count_per_day->options['referers'] = empty( $_POST['cpd_referers'] ) ? 0 : 1 ;
37
  $count_per_day->options['referers_cut'] = empty( $_POST['cpd_referers_cut'] ) ? 0 : 1 ;
38
+ $count_per_day->options['fieldlen'] = min( array(intval($_POST['cpd_fieldlen']), 500) );
39
  $count_per_day->options['dashboard_referers'] = $_POST['cpd_dashboard_referers'];
40
  $count_per_day->options['referers_last_days'] = $_POST['cpd_referers_last_days'];
41
  $count_per_day->options['chart_old'] = empty( $_POST['cpd_chart_old'] ) ? 0 : 1 ;
60
  {
61
  $count_per_day->queries[] = 'cpd_countries - class "CpdGeoIp" exists';
62
  $rest = CpdGeoIp::updateDB();
63
+ $mysiteurl = substr($_SERVER['REQUEST_URI'], 0, strpos($_SERVER['REQUEST_URI'], 'counter-options.php') + 19).'&amp;tab=tools';
64
  echo '<div class="updated">
65
  <form name="cpdcountries" method="post" action="'.$mysiteurl.'">
66
  <p>'.sprintf(__('Countries updated. <b>%s</b> entries in %s without country left', 'cpd'), $rest, $wpdb->cpd_counter);
857
  <th scope="row" style="white-space:nowrap"><?php _e('Bots to ignore', 'cpd') ?>:</th>
858
  <td><textarea name="cpd_bots" cols="50" rows="10"><?php echo $o['bots']; ?></textarea></td>
859
  </tr>
860
+ <tr>
861
+ <th scope="row" style="white-space:nowrap"><?php _e('Exclude Countries', 'cpd') ?>:</th>
862
+ <td>
863
+ <input class="code" type="text" name="cpd_exclude_countries" size="50" value="<?php echo str_replace(',', ', ', $o['exclude_countries']); ?>" /><br/>
864
+ <?php _e('Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all.', 'cpd') ?>
865
+ </td>
866
+ </tr>
867
  <tr>
868
  <th scope="row" style="white-space:nowrap"><?php _e('Anonymous IP', 'cpd') ?>:</th>
869
  <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>
877
  <td>
878
  <label for="cpd_referers"><input type="checkbox" name="cpd_referers" id="cpd_referers" <?php checked($o['referers'], 1) ?> />
879
  <?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/>
880
+ <label style="padding-top:10px" for="cpd_referers_cut"><input type="checkbox" name="cpd_referers_cut" id="cpd_referers_cut" <?php checked($o['referers_cut'], 1) ?> />
881
+ <?php _e('Save URL only, no query string.', 'cpd') ?><br/>
882
+ <code>http://example.com/webhp?hl=de#sclient=psy&amp;hl=de...</code> &gt; <code>http://example.com/webhp</code></label><br/>
883
+ <input class="code" style="margin-top:10px" type="text" name="cpd_fieldlen" size="3" value="<?php echo $o['fieldlen'] ?>" />
884
+ <?php _e('Limit the length to reduce database size. (max. 500 chars)', 'cpd') ?><br/>
885
  </td>
886
  </tr>
887
  <tr>
counter.css CHANGED
@@ -447,7 +447,7 @@ h2 .cpd_icon {
447
  .cpd-flag-ng{background-position:0 -1625px;}
448
  .cpd-flag-kh{background-position:0 -1638px;}
449
  .cpd-flag-sd{background-position:0 -1651px;}
450
-
451
 
452
 
453
 
447
  .cpd-flag-ng{background-position:0 -1625px;}
448
  .cpd-flag-kh{background-position:0 -1638px;}
449
  .cpd-flag-sd{background-position:0 -1651px;}
450
+ .cpd-flag-mw{background-position:0 -1664px;}
451
 
452
 
453
 
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.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.'/');
@@ -134,9 +134,12 @@ function count( $x, $page = 'x' )
134
  $userip = $this->anonymize_ip($real_ip);
135
 
136
  $client = ($this->options['referers']) ? wp_strip_all_tags($_SERVER['HTTP_USER_AGENT']) : '';
 
 
137
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? wp_strip_all_tags($_SERVER['HTTP_REFERER']) : '';
138
  if ($this->options['referers_cut'])
139
  $referer = substr( $referer, 0, strpos($referer,'?') );
 
140
 
141
  // new visitor on page?
142
  $count = $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE ip=$this->aton(%s) AND date=%s AND page=%d", $userip, $date, $page), 'count check '.__LINE__);
@@ -174,13 +177,15 @@ function count( $x, $page = 'x' )
174
  if (empty($country))
175
  $country = '-';
176
 
177
- $this->mysqlQuery('', $wpdb->prepare("INSERT INTO $wpdb->cpd_counter (page, ip, client, date, country, referer)
178
- VALUES (%s, $this->aton(%s), %s, %s, %s, %s)", $page, $userip2, $client, $date, $country, $referer), 'count insert '.__LINE__);
 
 
179
  }
180
  else
181
  // without country
182
  $this->mysqlQuery('', $wpdb->prepare("INSERT INTO $wpdb->cpd_counter (page, ip, client, date, referer)
183
- VALUES (%s, $this->aton(%s), %s, %s, %s)", $page, $userip2, $client, $date, $referer), 'count insert '.__LINE__);
184
  }
185
  // online counter
186
  $oc = (array) get_option('count_per_day_online');
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.4
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.4';
14
 
15
  if (strpos($_SERVER['SERVER_NAME'], '.test'))
16
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
134
  $userip = $this->anonymize_ip($real_ip);
135
 
136
  $client = ($this->options['referers']) ? wp_strip_all_tags($_SERVER['HTTP_USER_AGENT']) : '';
137
+ $client = substr( $client, 0, $this->options['fieldlen'] );
138
+
139
  $referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? wp_strip_all_tags($_SERVER['HTTP_REFERER']) : '';
140
  if ($this->options['referers_cut'])
141
  $referer = substr( $referer, 0, strpos($referer,'?') );
142
+ $referer = substr( $referer, 0, $this->options['fieldlen'] );
143
 
144
  // new visitor on page?
145
  $count = $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE ip=$this->aton(%s) AND date=%s AND page=%d", $userip, $date, $page), 'count check '.__LINE__);
177
  if (empty($country))
178
  $country = '-';
179
 
180
+ // insert if not an excluded country
181
+ if ( !in_array($country, explode(',', $this->options['exclude_countries'])) )
182
+ $this->mysqlQuery('', $wpdb->prepare("INSERT INTO $wpdb->cpd_counter (page, ip, client, date, country, referer)
183
+ VALUES (%d, $this->aton(%s), %s, %s, %s, %s)", $page, $userip2, $client, $date, $country, $referer), 'count insert '.__LINE__);
184
  }
185
  else
186
  // without country
187
  $this->mysqlQuery('', $wpdb->prepare("INSERT INTO $wpdb->cpd_counter (page, ip, client, date, referer)
188
+ VALUES (%d, $this->aton(%s), %s, %s, %s)", $page, $userip2, $client, $date, $referer), 'count insert '.__LINE__);
189
  }
190
  // online counter
191
  $oc = (array) get_option('count_per_day_online');
geoip/GeoIP.dat CHANGED
Binary file
geoip/geoip.php CHANGED
@@ -17,7 +17,7 @@ class CpdGeoIp
17
  * @param $ip IP
18
  * @return array e.g. ( 'de', image div , 'Germany' )
19
  */
20
- function getCountry( $ip )
21
  {
22
  global $cpd_path;
23
 
@@ -47,7 +47,7 @@ function getCountry( $ip )
47
  /**
48
  * updates CountPerDay table
49
  */
50
- function updateDB()
51
  {
52
  global $count_per_day, $cpd_path, $wpdb;
53
 
@@ -105,7 +105,7 @@ function updateDB()
105
  * updates the GeoIP database file
106
  * works only if directory geoip has rights 777, set it in ftp client
107
  */
108
- function updateGeoIpFile()
109
  {
110
  global $cpd_path;
111
 
17
  * @param $ip IP
18
  * @return array e.g. ( 'de', image div , 'Germany' )
19
  */
20
+ static function getCountry( $ip )
21
  {
22
  global $cpd_path;
23
 
47
  /**
48
  * updates CountPerDay table
49
  */
50
+ static function updateDB()
51
  {
52
  global $count_per_day, $cpd_path, $wpdb;
53
 
105
  * updates the GeoIP database file
106
  * works only if directory geoip has rights 777, set it in ftp client
107
  */
108
+ static function updateGeoIpFile()
109
  {
110
  global $cpd_path;
111
 
img/cpd_flags.png CHANGED
Binary file
locale/cpd-az_AZ.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,510 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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ı"
320
 
321
- #: counter-options.php:63
322
  #, php-format
323
  #@ cpd
324
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
325
  msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
326
 
327
- #: counter-options.php:66
328
  #@ cpd
329
  msgid "update next"
330
  msgstr "sonraki yeniləşdirmək"
331
 
332
- #: counter-options.php:106
333
  #, php-format
334
  #@ cpd
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,29 +534,29 @@ 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,32 +601,32 @@ msgstr "silmək"
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,12 +646,12 @@ msgstr "Son"
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,100 +661,100 @@ msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələ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"
@@ -764,456 +765,471 @@ msgstr "Başlıq"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:18:53+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Opsiyalar yaddaşda saxlanılıb"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Cədvəl %s silinib"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opsiyalar silinib"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstalyasiya"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Bura basın"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Onlayn vaxt"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Daxil olmuş istifadəçilər"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "onu da saymaq"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Avtomatik sayğac"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botları əhəmiyyət verməmək"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Opsiyaları yeniləşdirmək"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Məlumat bazasının silmək"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "DİQQƏT"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Bəli"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistika"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Ümümi qonaqların sayı"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "İndi qonaqların sayı saytda "
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Qonaqlar sayı bu gün"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Qonaqların sayı dünən"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Qonaqların sayı keçən həftə"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Sayğac başlanır -dan"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Gonaqlarn sayı gündə"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Qonaqların sayı ayda"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Qonaqların sayı yazışa görə"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Sayğac yenidən başlayıb"
226
 
227
+ #: counter-options.php:902
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Konsol"
231
 
232
+ #: counter-options.php:938
233
+ #: counter-options.php:942
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:941
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Son sayğaclar - Yazılar"
242
 
243
+ #: counter-options.php:945
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Son sayğaclar - Günlər"
247
 
248
+ #: counter-options.php:946
249
+ #: counter-options.php:950
250
+ #: counter-options.php:972
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:949
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Cədvəl - Günlər"
259
 
260
+ #: counter-options.php:953
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Cədvəl - Hündürlük"
264
 
265
+ #: counter-options.php:954
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:986
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Siyahıda göstərmək"
274
 
275
+ #: counter-options.php:987
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:773
281
+ #: counter-options.php:783
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Sayğacı yenidən 0 qoymaq"
285
 
286
+ #: counter-options.php:776
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:776
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:653
298
+ #: counter-options.php:412
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Kökləmələr"
302
 
303
+ #: counter.php:347
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Gün ərzində oxunuş"
307
 
308
+ #: counter-core.php:1541
309
+ #: counter-options.php:879
310
+ #: counter.php:240
311
+ #: counter.php:1024
312
+ #: map/map.php:60
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "Oxumalar"
316
 
317
+ #: counter.php:1411
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "Bu yazı"
321
 
322
+ #: counter-options.php:66
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
327
 
328
+ #: counter-options.php:69
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "sonraki yeniləşdirmək"
332
 
333
+ #: counter-options.php:109
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
338
 
339
+ #: counter-options.php:842
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr "istifadəçi səviyyəsinə qədər"
343
 
344
+ #: counter-options.php:868
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "Anonim IP"
348
 
349
+ #: counter-options.php:958
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "Ölkələr"
353
 
354
+ #: counter-options.php:959
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
358
 
359
+ #: counter-options.php:994
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "Başlanğıc məlumatlar"
363
 
364
+ #: counter-options.php:998
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
368
 
369
+ #: counter-options.php:1002
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "Başlanğıc tarix"
373
 
374
+ #: counter-options.php:1003
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "Sizin köhnə Sayğacınız başlanır?"
378
 
379
+ #: counter-options.php:1006
380
+ #: counter-options.php:1010
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "Sayın başlanğıcı"
384
 
385
+ #: counter-options.php:1007
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
389
 
390
+ #: counter-options.php:723
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - Ölkələr"
394
 
395
+ #: counter-options.php:732
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
399
 
400
+ #: counter-options.php:744
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "GeoIP məlumat bazasını yeniləşdirmək"
404
 
405
+ #: counter-options.php:739
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
409
 
410
+ #: counter-options.php:749
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr " GeoIP haqqında daha da çox məlumat"
414
 
415
+ #: counter-options.php:432
416
  #: massbots.php:46
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "Mümkün olan botlar"
420
 
421
+ #: counter-options.php:436
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
426
 
427
+ #: counter-options.php:437
428
+ #: counter-options.php:501
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "göstərməkl"
434
 
435
+ #: counter-options.php:445
436
+ #: counter-options.php:509
437
  #@ cpd
438
  msgid "IP"
439
  msgstr "IP"
440
 
441
+ #: counter-options.php:446
442
+ #: counter-options.php:510
443
  #: notes.php:88
444
  #@ cpd
445
  #@ default
446
  msgid "Date"
447
  msgstr "Tarix"
448
 
449
+ #: counter-options.php:447
450
+ #: counter-options.php:511
451
  #@ cpd
452
  msgid "Client"
453
  msgstr "Müştəri"
454
 
455
+ #: counter-options.php:448
456
+ #: counter-options.php:512
457
  #@ cpd
458
  msgid "Views"
459
  msgstr "Baxış"
460
 
461
+ #: counter-options.php:463
462
+ #: counter-options.php:479
463
+ #: counter-options.php:526
464
  #, php-format
465
  #@ cpd
466
  msgid "Delete these %s counts"
467
  msgstr "Bu %s sayğacları silmək"
468
 
469
+ #: counter-options.php:814
470
  #@ cpd
471
  msgid "Support"
472
  msgstr "Dəstək"
473
 
474
+ #: counter-core.php:756
475
  #, php-format
476
  #@ cpd
477
  msgid "Time for Count per Day: <code>%s</code>."
478
  msgstr " Count per Day üçün vaxt: <code>%s</code>"
479
 
480
+ #: counter-core.php:757
481
  #@ cpd
482
  msgid "Bug? Problem? Question? Hint? Praise?"
483
  msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
484
 
485
+ #: counter-core.php:758
486
  #, php-format
487
  #@ cpd
488
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
489
  msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
490
 
491
+ #: counter.php:236
492
+ #: counter.php:1412
493
  #@ cpd
494
  msgid "Total reads"
495
  msgstr "Ümumi oxunuş"
496
 
497
+ #: counter.php:237
498
+ #: counter.php:1413
499
  #@ cpd
500
  msgid "Reads today"
501
  msgstr "Bu günkü oxunuş"
502
 
503
+ #: counter.php:238
504
+ #: counter.php:1414
505
  #@ cpd
506
  msgid "Reads yesterday"
507
  msgstr "Dünənki oxunuş"
508
 
509
+ #: counter.php:895
510
  #: notes.php:55
511
  #: notes.php:89
512
  #@ cpd
513
  msgid "Notes"
514
  msgstr "Qeydlər"
515
 
516
+ #: counter.php:893
517
  #@ default
518
  msgid "Show"
519
  msgstr "Göstərmək"
520
 
521
+ #: counter.php:963
522
  #@ cpd
523
  msgid "Other"
524
  msgstr "Digər"
525
 
526
+ #: counter.php:1135
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr "Yazışı redaktə etmək"
534
  msgid "Front page displays"
535
  msgstr "Əsas səhifənin göstərişi"
536
 
537
+ #: counter-core.php:802
538
+ #: counter-options.php:963
539
  #@ cpd
540
  msgid "Browsers"
541
  msgstr "Brauzerlər"
542
 
543
+ #: counter-core.php:796
544
  #@ cpd
545
  msgid "Latest Counts"
546
  msgstr "Yaxında keçirilmiş hesablamalar"
547
 
548
+ #: counter-core.php:799
549
  #@ default
550
  msgid "Plugin"
551
  msgstr "Plagin"
552
 
553
+ #: counter-core.php:807
554
  #@ cpd
555
  msgid "Reads per Country"
556
  msgstr "Ölkələr üzrə oxunuşlar"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "Xəritə"
601
  msgid "edit"
602
  msgstr "redaktə etmək"
603
 
604
+ #: counter-options.php:872
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Keş"
608
 
609
+ #: counter-options.php:873
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
613
 
614
+ #: counter-options.php:964
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
618
 
619
+ #: counter-options.php:1048
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Düzəliş rejimi"
623
 
624
+ #: counter-options.php:1050
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
628
 
629
+ #: counter-core.php:808
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Ölkə üzrə gəlişlər"
646
  msgid "PostID"
647
  msgstr "ID məlumatlar"
648
 
649
+ #: counter-options.php:1011
650
  #@ cpd
651
  msgid "Add this value to \"Total reads\"."
652
  msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
653
 
654
+ #: counter-options.php:726
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 "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!"
661
  msgid "no data found"
662
  msgstr "heç bir məlumat tapılmayıb"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Sayğac"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Müştərilər və istinad olan saytlar"
673
 
674
+ #: counter-options.php:879
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 "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."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Lokal URL"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Lokal keçidləri də göstərmək."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Yazılar"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Səhifələr"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Ötən həftənin oxunuşları"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Kateqoriyalar"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Teq"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "Lisenziya"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Ay ərzində oxunuşlar"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "İstinad olunan sayt"
730
 
731
+ #: counter-options.php:967
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "İstenad olan saytlar - Girişlər"
735
 
736
+ #: counter-options.php:968
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
740
 
741
+ #: counter-options.php:971
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "İstenad olan saytlar - Günlər"
745
 
746
+ #: counter.php:994
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s istenad olan saytlar son %s günlər:"
751
 
752
+ #: counter-core.php:792
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Qonaq onlayn"
756
 
757
+ #: counter.php:1436
758
  #@ default
759
  msgid "Title"
760
  msgstr "Başlıq"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr ""
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr ""
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr ""
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr ""
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr ""
796
 
797
+ #: counter-options.php:316
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:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr ""
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr ""
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr ""
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr ""
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr ""
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr ""
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr ""
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr ""
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr ""
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr ""
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr ""
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr ""
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr ""
869
 
870
+ #: counter-options.php:1040
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:567
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:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr ""
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr ""
898
 
899
+ #: counter-options.php:685
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:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr ""
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr ""
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr ""
925
 
926
+ #: counter-options.php:706
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:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr ""
936
 
937
+ #: counter-options.php:760
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:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr ""
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr ""
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr ""
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr ""
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-be_BY.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,510 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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 "Гэтая запіс"
320
 
321
- #: counter-options.php:63
322
  #, php-format
323
  #@ cpd
324
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
325
  msgstr "Краіны <b>абноўлены.% s</b> запісаў у% s засталося без краін"
326
 
327
- #: counter-options.php:66
328
  #@ cpd
329
  msgid "update next"
330
  msgstr "Абнавіць наступны"
331
 
332
- #: counter-options.php:106
333
  #, php-format
334
  #@ cpd
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,29 +534,29 @@ 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,32 +601,32 @@ 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,12 +646,12 @@ 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,100 +661,100 @@ msgstr "Вы можаце атрымаць дадзеныя краін для ў
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 "Загаловак"
@@ -764,456 +765,471 @@ msgstr "Загаловак"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:18:59+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Налады захаваныя"
27
 
28
+ #: counter-options.php:121
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
33
 
34
+ #: counter-options.php:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Выдаліць Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Табліца% s выдалена"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Налады выдалены"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Деинсталяция"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Націсніце сюды"
63
 
64
+ #: counter-options.php:386
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
68
 
69
+ #: counter-options.php:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Час онлайн"
73
 
74
+ #: counter-options.php:836
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
78
 
79
+ #: counter-options.php:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Якія ўвайшлі карыстальнікаў"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Таксама лічыць"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Аўтаматычны лічыльнік"
93
 
94
+ #: counter-options.php:854
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Лічыць аўтаматычна асобныя публікацыі і старонкі, ніякіх зменаў у шаблон не спатрэбіцца."
98
 
99
+ #: counter-options.php:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Ігнараваць робатаў"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Захаваць наладкі"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Ачысьціць базу даных"
114
 
115
+ #: counter-options.php:644
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:795
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:796
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут вы можаце выдаліць табліцы і адключыць \" Штодзённы лічыльнік \"."
129
 
130
+ #: counter-options.php:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "УВАГА"
134
 
135
+ #: counter-options.php:800
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Гэтыя табліцы (са усімі дадзенымі лічыльніка), будуць выдаленыя."
139
 
140
+ #: counter-options.php:802
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Калі \" Штодзённы лічыльнік \"переинсталлирован, лічыльнік пачынаецца з 0."
144
 
145
+ #: counter-options.php:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Так"
150
 
151
+ #: counter-options.php:806
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Ці вы ўпэўненыя, што жадаеце адключыць \" Штодзённы лічыльнік \"і выдаліць усе дадзеныя?"
155
 
156
+ #: counter-core.php:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статыстыка"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Усяго наведвальнікаў"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Наведвальнікаў зараз на сайце"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Наведвальнікаў сёння"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Наведвальнікаў ўчора"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Наведвальнікаў на мінулым тыдні"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Лічыльнік пачынаецца з"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Наведвальнікаў у дзень"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Наведвальнікаў у месяц"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Наведвальнікаў запісы"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Лічыльнік абнулены"
226
 
227
+ #: counter-options.php:902
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Кансоль"
231
 
232
+ #: counter-options.php:938
233
+ #: counter-options.php:942
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Колькі запісаў вы хочаце бачыць на старонцы кансолі?"
237
 
238
+ #: counter-options.php:941
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Апошнія лічыльнікі - Запісы"
242
 
243
+ #: counter-options.php:945
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Апошнія лічыльнікі - Дні"
247
 
248
+ #: counter-options.php:946
249
+ #: counter-options.php:950
250
+ #: counter-options.php:972
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Наколькі дзён таму вы хочаце бачыць статыстыку?"
254
 
255
+ #: counter-options.php:949
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Табліца - Дні"
259
 
260
+ #: counter-options.php:953
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Табліца - Вышыня"
264
 
265
+ #: counter-options.php:954
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Вышыня самага вялікага слупка"
269
 
270
+ #: counter-options.php:986
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Паказаць ў спісах"
274
 
275
+ #: counter-options.php:987
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Паказаць \" чытанне паведамленняў\"у новай калонцы ва ўпраўленні запісамі"
279
 
280
+ #: counter-options.php:773
281
+ #: counter-options.php:783
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Абнуліць лічыльнік"
285
 
286
+ #: counter-options.php:776
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:776
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:653
298
+ #: counter-options.php:412
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Налады"
302
 
303
+ #: counter.php:347
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Чытанне ў дзень"
307
 
308
+ #: counter-core.php:1541
309
+ #: counter-options.php:879
310
+ #: counter.php:240
311
+ #: counter.php:1024
312
+ #: map/map.php:60
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "Чытанне"
316
 
317
+ #: counter.php:1411
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "Гэтая запіс"
321
 
322
+ #: counter-options.php:66
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "Краіны <b>абноўлены.% s</b> запісаў у% s засталося без краін"
327
 
328
+ #: counter-options.php:69
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "Абнавіць наступны"
332
 
333
+ #: counter-options.php:109
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "Табліца робатаў ачышчана.% s запісаў выдаленае"
338
 
339
+ #: counter-options.php:842
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr "Да ўзроўню карыстальніка"
343
 
344
+ #: counter-options.php:868
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "Ананімны IP"
348
 
349
+ #: counter-options.php:958
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "Краіны"
353
 
354
+ #: counter-options.php:959
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "Колькі краін вы хочаце бачыць у спісе?"
358
 
359
+ #: counter-options.php:994
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "Пачатковыя дадзеныя"
363
 
364
+ #: counter-options.php:998
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "Тут вы можаце памяняць дату пачатку адліку і дадаць пачатковы лічыльнік"
368
 
369
+ #: counter-options.php:1002
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "Дата пачатку"
373
 
374
+ #: counter-options.php:1003
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "Ваш стары Лічыльнік пачынаўся з"
378
 
379
+ #: counter-options.php:1006
380
+ #: counter-options.php:1010
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "Пачатак адліку"
384
 
385
+ #: counter-options.php:1007
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr "Дадаць значэнне да \" Усяго наведвальнікаў \"."
389
 
390
+ #: counter-options.php:723
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - Краіны"
394
 
395
+ #: counter-options.php:732
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "Абнавіць дадзеныя старога лічыльніка"
399
 
400
+ #: counter-options.php:744
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "Абнавіць базу дадзеных GeoIP"
404
 
405
+ #: counter-options.php:739
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "Запампаваць новую версію файла GeoIP.dat."
409
 
410
+ #: counter-options.php:749
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr "Больш інфармацыі пра GeoIP"
414
 
415
+ #: counter-options.php:432
416
  #: massbots.php:46
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "Верагодныя боты"
420
 
421
+ #: counter-options.php:436
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "Паказаць усе IP з больш чым% s праглядаў у суткі"
426
 
427
+ #: counter-options.php:437
428
+ #: counter-options.php:501
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "Паказаць"
434
 
435
+ #: counter-options.php:445
436
+ #: counter-options.php:509
437
  #@ cpd
438
  msgid "IP"
439
  msgstr "IP"
440
 
441
+ #: counter-options.php:446
442
+ #: counter-options.php:510
443
  #: notes.php:88
444
  #@ cpd
445
  #@ default
446
  msgid "Date"
447
  msgstr "Дата"
448
 
449
+ #: counter-options.php:447
450
+ #: counter-options.php:511
451
  #@ cpd
452
  msgid "Client"
453
  msgstr "Кліент"
454
 
455
+ #: counter-options.php:448
456
+ #: counter-options.php:512
457
  #@ cpd
458
  msgid "Views"
459
  msgstr "Праглядаў"
460
 
461
+ #: counter-options.php:463
462
+ #: counter-options.php:479
463
+ #: counter-options.php:526
464
  #, php-format
465
  #@ cpd
466
  msgid "Delete these %s counts"
467
  msgstr "Выдаліць гэтыя% s лічыльнікаў"
468
 
469
+ #: counter-options.php:814
470
  #@ cpd
471
  msgid "Support"
472
  msgstr "Падтрымка"
473
 
474
+ #: counter-core.php:756
475
  #, php-format
476
  #@ cpd
477
  msgid "Time for Count per Day: <code>%s</code>."
478
  msgstr "Час для Count per Day: <code>%s</code> "
479
 
480
+ #: counter-core.php:757
481
  #@ cpd
482
  msgid "Bug? Problem? Question? Hint? Praise?"
483
  msgstr "Памылка? Праблема? Пытанне? Савет? Хвала?"
484
 
485
+ #: counter-core.php:758
486
  #, php-format
487
  #@ cpd
488
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
489
  msgstr "Напішыце каментар на <a href=\"%s\">старонцы плагіна</a> "
490
 
491
+ #: counter.php:236
492
+ #: counter.php:1412
493
  #@ cpd
494
  msgid "Total reads"
495
  msgstr "Усяго чытанняў"
496
 
497
+ #: counter.php:237
498
+ #: counter.php:1413
499
  #@ cpd
500
  msgid "Reads today"
501
  msgstr "Чытанне сёння"
502
 
503
+ #: counter.php:238
504
+ #: counter.php:1414
505
  #@ cpd
506
  msgid "Reads yesterday"
507
  msgstr "Чытанне ўчора"
508
 
509
+ #: counter.php:895
510
  #: notes.php:55
511
  #: notes.php:89
512
  #@ cpd
513
  msgid "Notes"
514
  msgstr "Нататкі"
515
 
516
+ #: counter.php:893
517
  #@ default
518
  msgid "Show"
519
  msgstr "Паказаць"
520
 
521
+ #: counter.php:963
522
  #@ cpd
523
  msgid "Other"
524
  msgstr "Іншыя"
525
 
526
+ #: counter.php:1135
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr "Рэдагаваць запіс"
534
  msgid "Front page displays"
535
  msgstr "Адлюстраванне галоўнай старонкі"
536
 
537
+ #: counter-core.php:802
538
+ #: counter-options.php:963
539
  #@ cpd
540
  msgid "Browsers"
541
  msgstr "Браўзэры"
542
 
543
+ #: counter-core.php:796
544
  #@ cpd
545
  msgid "Latest Counts"
546
  msgstr "Нядаўнія падлікі"
547
 
548
+ #: counter-core.php:799
549
  #@ default
550
  msgid "Plugin"
551
  msgstr "Плагін"
552
 
553
+ #: counter-core.php:807
554
  #@ cpd
555
  msgid "Reads per Country"
556
  msgstr "Чытанне па краінах"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "Карта"
601
  msgid "edit"
602
  msgstr "Рэдагаваць"
603
 
604
+ #: counter-options.php:872
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Кэш"
608
 
609
+ #: counter-options.php:873
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Я выкарыстоўваю кэшавання убудова. Лічыць гэтыя наведвання пры дапамозе ajax"
613
 
614
+ #: counter-options.php:964
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Падрадок агента карыстальніка падзелены коскі"
618
 
619
+ #: counter-options.php:1048
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Рэжым адладкі"
623
 
624
+ #: counter-options.php:1050
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Дадаць дапаможную інфармацыю ўнізе кожнай старонкі."
628
 
629
+ #: counter-core.php:808
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Наведвальнікаў па краінах"
646
  msgid "PostID"
647
  msgstr "ID паведамлення"
648
 
649
+ #: counter-options.php:1011
650
  #@ cpd
651
  msgid "Add this value to \"Total reads\"."
652
  msgstr "Дадаць значэнне да \" Усяго разоў прачытана \"."
653
 
654
+ #: counter-options.php:726
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 "Вы можаце атрымаць дадзеныя краін для ўсіх запісаў праверыўшы IP адрасы зноўку. Можа заняць некаторы час!"
661
  msgid "no data found"
662
  msgstr "Нічога не знойдзена"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Лічыльнік"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Кліенты і якія спасылаюцца сайты"
673
 
674
+ #: counter-options.php:879
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 "Захаваць і паказаць кліентаў і якія спасылаюцца сайты. <br /> Патрабуе шмат дыскавай прасторы ў базе дадзеных, але дае больш дэталёвую інфармацыю аб вашых наведвальніках. "
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Лакальныя URL"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Паказваць лакальныя пераходы таксама."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Запісы"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Старонкі"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Чытанне на мінулым тыдні"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Катэгорыя"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Тег"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "Ліцэнзія"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Чытанне за месяц"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Спасылаецца сайт"
730
 
731
+ #: counter-options.php:967
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Старонкі, якія спасылаюцца сайты - Уваходжанне"
735
 
736
+ #: counter-options.php:968
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Колькі спасылаюцца сайтаў вы хочаце ўбачыць на старонцы статыстыкі?"
740
 
741
+ #: counter-options.php:971
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Старонкі, якія спасылаюцца сайты - Дні"
745
 
746
+ #: counter.php:994
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s спасылаюцца сайтаў за апошнія% s дзён:"
751
 
752
+ #: counter-core.php:792
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Наведвальнікаў на сайце"
756
 
757
+ #: counter.php:1436
758
  #@ default
759
  msgid "Title"
760
  msgstr "Загаловак"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:798
769
+ #: counter-options.php:967
770
+ #: counter-options.php:971
771
  #@ cpd
772
  msgid "Search strings"
773
  msgstr ""
774
 
775
+ #: counter-core.php:1076
776
  #@ cpd
777
  msgid "Backup failed! Cannot open file"
778
  msgstr ""
779
 
780
+ #: counter-core.php:1191
781
  #@ cpd
782
  msgid "Your can download the backup files here and now."
783
  msgstr ""
784
 
785
+ #: counter-core.php:1195
786
+ #: counter-core.php:1203
787
  #, php-format
788
  #@ cpd
789
  msgid "Backup of counter table saved in %s."
790
  msgstr ""
791
 
792
+ #: counter-core.php:1197
793
+ #: counter-core.php:1205
794
  #, php-format
795
  #@ cpd
796
  msgid "Backup of counter options and collection saved in %s."
797
  msgstr ""
798
 
799
+ #: counter-core.php:1261
800
  #@ cpd
801
  msgid "Error while reading backup file!"
802
  msgstr ""
803
 
804
+ #: counter-core.php:1265
805
  #, php-format
806
  #@ cpd
807
  msgid "The backup was added to counter table %s."
808
  msgstr ""
809
 
810
+ #: counter-core.php:1267
811
  #, php-format
812
  #@ cpd
813
  msgid "The counter table %s was restored from backup."
814
  msgstr ""
815
 
816
+ #: counter-core.php:1284
817
  #@ cpd
818
  msgid "Options restored from backup."
819
  msgstr ""
820
 
821
+ #: counter-options.php:177
822
  #@ cpd
823
  msgid "Collection in progress..."
824
  msgstr ""
825
 
826
+ #: counter-options.php:271
827
  #@ cpd
828
  msgid "Get Visitors per Post..."
829
  msgstr ""
830
 
831
+ #: counter-options.php:316
832
  #, php-format
833
  #@ cpd
834
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
835
  msgstr ""
836
 
837
+ #: counter-options.php:325
838
  #@ cpd
839
  msgid "Installation of \"Count per Day\" checked"
840
  msgstr ""
841
 
842
+ #: counter-options.php:340
843
  #@ cpd
844
  msgid "Old search strings deleted"
845
  msgstr ""
846
 
847
+ #: counter-options.php:355
848
  #@ cpd
849
  msgid "Clients and referers deleted"
850
  msgstr ""
851
 
852
+ #: counter-options.php:411
853
  #@ default
854
  msgid "Tools"
855
  msgstr ""
856
 
857
+ #: counter-options.php:563
858
+ #: counter-options.php:1029
859
  #@ cpd
860
  msgid "Backup"
861
  msgstr ""
862
 
863
+ #: counter-options.php:567
864
  #, php-format
865
  #@ cpd
866
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
867
  msgstr ""
868
 
869
+ #: counter-options.php:570
870
  #@ cpd
871
  msgid "Download only"
872
  msgstr ""
873
 
874
+ #: counter-options.php:574
875
  #@ cpd
876
  msgid "Backup the database"
877
  msgstr ""
878
 
879
+ #: counter-options.php:602
880
  #@ cpd
881
  msgid "Settings and collections"
882
  msgstr ""
883
 
884
+ #: counter-options.php:607
885
  #, php-format
886
  #@ cpd
887
  msgid "Counter table %s"
888
  msgstr ""
889
 
890
+ #: counter-options.php:614
891
  #, php-format
892
  #@ cpd
893
  msgid "Add data from the backup file %s to existing counter table?"
894
  msgstr ""
895
 
896
+ #: counter-options.php:614
897
  #@ cpd
898
  msgid "Add"
899
  msgstr ""
900
 
901
+ #: counter-options.php:618
902
  #, php-format
903
  #@ cpd
904
  msgid "Restore data from the backup file %s ?"
905
  msgstr ""
906
 
907
+ #: counter-options.php:618
908
  #@ default
909
  msgid "Restore"
910
  msgstr ""
911
 
912
+ #: counter-options.php:620
913
  #@ default
914
  msgid "Delete"
915
  msgstr ""
916
 
917
+ #: counter-options.php:621
918
  #, php-format
919
  #@ cpd
920
  msgid "Delete the backup file %s ?"
921
  msgstr ""
922
 
923
+ #: counter-options.php:627
924
  #@ cpd
925
  msgid "add backup to current counter table"
926
  msgstr ""
927
 
928
+ #: counter-options.php:628
929
  #@ cpd
930
  msgid "replace current counter table with with backup"
931
  msgstr ""
932
 
933
+ #: counter-options.php:629
934
  #@ cpd
935
  msgid "delete backup file"
936
  msgstr ""
937
 
938
+ #: counter-options.php:654
939
  #, php-format
940
  #@ cpd
941
  msgid "Delete search strings older than %s days."
942
  msgstr ""
943
 
944
+ #: counter-options.php:658
945
  #@ cpd
946
  msgid "Delete search strings"
947
  msgstr ""
948
 
949
+ #: counter-options.php:664
950
+ #: counter-options.php:683
951
  #, php-format
952
  #@ cpd
953
  msgid "Current size of your counter table %s is %s."
954
  msgstr ""
955
 
956
+ #: counter-options.php:665
957
  #, php-format
958
  #@ cpd
959
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
960
  msgstr ""
961
 
962
+ #: counter-options.php:669
963
  #@ cpd
964
  msgid "Delete clients and referers"
965
  msgstr ""
966
 
967
+ #: counter-options.php:678
968
+ #: counter-options.php:710
969
  #@ cpd
970
  msgid "Collect old data"
971
  msgstr ""
972
 
973
+ #: counter-options.php:685
974
  #@ cpd
975
  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."
976
  msgstr ""
977
 
978
+ #: counter-options.php:690
979
  #, php-format
980
  #@ cpd
981
  msgid "Currently your collection contains data until %s."
982
  msgstr ""
983
 
984
+ #: counter-options.php:694
985
  #@ cpd
986
  msgid "Normally new data will be added to the collection."
987
  msgstr ""
988
 
989
+ #: counter-options.php:700
990
  #@ cpd
991
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
992
  msgstr ""
993
 
994
+ #: counter-options.php:701
995
  #, php-format
996
  #@ cpd
997
  msgid "All collected data until %s will deleted."
998
  msgstr ""
999
 
1000
+ #: counter-options.php:706
1001
  #, php-format
1002
  #@ cpd
1003
  msgid "Keep entries of last %s full months + current month in counter table."
1004
  msgstr ""
1005
 
1006
+ #: counter-options.php:757
1007
  #@ cpd
1008
  msgid "ReActivation"
1009
  msgstr ""
1010
 
1011
+ #: counter-options.php:760
1012
  #@ cpd
1013
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1014
  msgstr ""
1015
 
1016
+ #: counter-options.php:765
1017
  #@ cpd
1018
  msgid "ReActivate the plugin"
1019
  msgstr ""
1020
 
1021
+ #: counter-options.php:881
1022
  #@ cpd
1023
  msgid "Save URL only, no query string."
1024
  msgstr ""
1025
 
1026
+ #: counter-options.php:918
1027
  #@ cpd
1028
  msgid "Who can see it"
1029
  msgstr ""
1030
 
1031
+ #: counter-options.php:927
1032
  #@ cpd
1033
  msgid "custom"
1034
  msgstr ""
1035
 
1036
+ #: counter-options.php:929
1037
  #@ cpd
1038
  msgid "and higher are allowed to see the statistics page."
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:931
1042
  #, php-format
1043
  #@ cpd
1044
  msgid "Set the %s capability %s a user need:"
1045
  msgstr ""
1046
 
1047
+ #: counter-options.php:1018
1048
  #@ cpd
1049
  msgid "Stylesheet"
1050
  msgstr ""
1051
 
1052
+ #: counter-options.php:1021
1053
  #@ cpd
1054
  msgid "NO Stylesheet in Frontend"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:1022
1058
  #@ cpd
1059
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:1032
1063
  #@ cpd
1064
  msgid "Entries per pass"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:1035
1068
  #@ cpd
1069
  msgid "How many entries should be saved per pass? Default: 10000"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:1040
1073
  #@ cpd
1074
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
1075
  msgstr ""
1076
 
1077
+ #: counter.php:246
1078
+ #: counter.php:1048
1079
  #@ cpd
1080
  msgid "Visitors"
1081
  msgstr ""
1082
 
1083
+ #: counter.php:249
1084
+ #: counter.php:250
1085
  #@ cpd
1086
  msgid "Most visited day"
1087
  msgstr ""
1088
 
1089
+ #: counter.php:1150
1090
  #@ default
1091
  msgid "Front page"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1198
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "The %s most searched strings:"
1098
  msgstr ""
1099
 
1100
+ #: counter.php:1207
1101
  #, php-format
1102
  #@ cpd
1103
  msgid "The search strings of the last %s days:"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1371
1107
  #@ default
1108
  msgid "_name"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1455
1112
  #@ cpd
1113
  msgid "drag and drop to sort"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-bg_BG.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,556 +20,557 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Настройките са обновени"
27
 
28
- #: counter-options.php:63
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
33
 
34
- #: counter-options.php:66
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "следващо обновяване"
38
 
39
- #: counter-options.php:106
40
  #, php-format
41
  #@ cpd
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,94 +581,94 @@ 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,28 +733,28 @@ msgstr "PostID"
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 "Посетители на линия"
@@ -764,456 +765,471 @@ msgstr "Посетители на линия"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:04+0000\n"
7
  "Last-Translator: Joro <Joro2007@Gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Настройките са обновени"
27
 
28
+ #: counter-options.php:66
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
33
 
34
+ #: counter-options.php:69
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "следващо обновяване"
38
 
39
+ #: counter-options.php:109
40
  #, php-format
41
  #@ cpd
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Ботовете са изчистени. %s броячите изтрити."
44
 
45
+ #: counter-options.php:121
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Базата-данни е изчистена. %s редовете са премахнати."
50
 
51
+ #: counter-options.php:131
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Броячът е нулиран."
55
 
56
+ #: counter-options.php:136
57
+ #: counter-options.php:806
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "Деинсталирай Count per Day"
61
 
62
+ #: counter-options.php:141
63
+ #: counter-options.php:142
64
+ #: counter-options.php:143
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Таблицата %s премахната"
69
 
70
+ #: counter-options.php:144
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Настройките са премахнати"
74
 
75
+ #: counter-options.php:385
76
+ #: counter-options.php:792
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Деинсталиране"
80
 
81
+ #: counter-options.php:386
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Натиснете тук"
85
 
86
+ #: counter-options.php:386
87
  #@ cpd
88
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
89
  msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
90
 
91
+ #: counter-options.php:831
92
  #@ cpd
93
  msgid "Counter"
94
  msgstr "Брояч"
95
 
96
+ #: counter-options.php:835
97
  #@ cpd
98
  msgid "Online time"
99
  msgstr "Време онлайн"
100
 
101
+ #: counter-options.php:836
102
  #@ cpd
103
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
104
  msgstr "Време онлайн"
105
 
106
+ #: counter-options.php:839
107
  #@ cpd
108
  msgid "Logged on Users"
109
  msgstr "Включени потребители"
110
 
111
+ #: counter-options.php:841
112
  #@ cpd
113
  msgid "count too"
114
  msgstr "преброявай също"
115
 
116
+ #: counter-options.php:842
117
  #@ cpd
118
  msgid "until User Level"
119
  msgstr "до нивото на потребителя"
120
 
121
+ #: counter-options.php:853
122
  #@ cpd
123
  msgid "Auto counter"
124
  msgstr "Автоматичен брояч"
125
 
126
+ #: counter-options.php:854
127
  #@ cpd
128
  msgid "Counts automatically single-posts and pages, no changes on template needed."
129
  msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
130
 
131
+ #: counter-options.php:857
132
  #@ cpd
133
  msgid "Bots to ignore"
134
  msgstr "Игнорирай тези Ботове"
135
 
136
+ #: counter-options.php:868
137
  #@ cpd
138
  msgid "Anonymous IP"
139
  msgstr "Анонимно IP"
140
 
141
+ #: counter-options.php:872
142
  #@ cpd
143
  msgid "Cache"
144
  msgstr "Кеш"
145
 
146
+ #: counter-options.php:873
147
  #@ cpd
148
  msgid "I use a cache plugin. Count these visits with ajax."
149
  msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
150
 
151
+ #: counter-options.php:876
152
  #@ cpd
153
  msgid "Clients and referrers"
154
  msgstr "Потребители и препращащи сайтове"
155
 
156
+ #: counter-options.php:879
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:1541
162
+ #: counter-options.php:879
163
+ #: counter.php:240
164
+ #: counter.php:1024
165
+ #: map/map.php:60
166
  #@ cpd
167
  msgid "Reads"
168
  msgstr "Прочетени"
169
 
170
+ #: counter-options.php:902
171
  #@ default
172
  msgid "Dashboard"
173
  msgstr "Табло"
174
 
175
+ #: counter-core.php:795
176
+ #: counter-options.php:937
177
  #@ cpd
178
  msgid "Visitors per post"
179
  msgstr "Посетители за публикация"
180
 
181
+ #: counter-options.php:938
182
+ #: counter-options.php:942
183
  #@ cpd
184
  msgid "How many posts do you want to see on dashboard page?"
185
  msgstr "Колко публикации искате се покажат на таблото?"
186
 
187
+ #: counter-options.php:941
188
  #@ cpd
189
  msgid "Latest Counts - Posts"
190
  msgstr "Последни преброявания - Публикации"
191
 
192
+ #: counter-options.php:945
193
  #@ cpd
194
  msgid "Latest Counts - Days"
195
  msgstr "Последни преброявания - Дни"
196
 
197
+ #: counter-options.php:946
198
+ #: counter-options.php:950
199
+ #: counter-options.php:972
200
  #@ cpd
201
  msgid "How many days do you want look back?"
202
  msgstr "Колко дни искате да бъдат показани?"
203
 
204
+ #: counter-options.php:949
205
  #@ cpd
206
  msgid "Chart - Days"
207
  msgstr "Графика - Дни"
208
 
209
+ #: counter-options.php:953
210
  #@ cpd
211
  msgid "Chart - Height"
212
  msgstr "Графика - Височина"
213
 
214
+ #: counter-options.php:954
215
  #@ cpd
216
  msgid "Height of the biggest bar"
217
  msgstr "Височина на най-голямото показание"
218
 
219
+ #: counter-options.php:958
220
  #@ cpd
221
  msgid "Countries"
222
  msgstr "Държави"
223
 
224
+ #: counter-options.php:959
225
  #@ cpd
226
  msgid "How many countries do you want to see on dashboard page?"
227
  msgstr "Колко държави искате да виждате на таблото?"
228
 
229
+ #: counter-core.php:802
230
+ #: counter-options.php:963
231
  #@ cpd
232
  msgid "Browsers"
233
  msgstr "Браузъри"
234
 
235
+ #: counter-options.php:964
236
  #@ cpd
237
  msgid "Substring of the user agent, separated by comma"
238
  msgstr "Поднизове на потребителя, разделени със запетая"
239
 
240
+ #: counter-options.php:975
241
  #@ cpd
242
  msgid "Local URLs"
243
  msgstr "Локални URLs"
244
 
245
+ #: counter-options.php:976
246
  #@ cpd
247
  msgid "Show local referrers too."
248
  msgstr "Покажи и местните препращащи сайтове."
249
 
250
+ #: counter-options.php:983
251
  #@ default
252
  msgid "Posts"
253
  msgstr "Публикации"
254
 
255
+ #: counter-options.php:983
256
  #@ default
257
  msgid "Pages"
258
  msgstr "Страници"
259
 
260
+ #: counter-options.php:986
261
  #@ cpd
262
  msgid "Show in lists"
263
  msgstr "Покажи в списъците"
264
 
265
+ #: counter-options.php:987
266
  #@ cpd
267
  msgid "Show \"Reads per Post\" in a new column in post management views."
268
  msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
269
 
270
+ #: counter-options.php:994
271
  #@ cpd
272
  msgid "Start Values"
273
  msgstr "Начални стойности"
274
 
275
+ #: counter-options.php:998
276
  #@ cpd
277
  msgid "Here you can change the date of first count and add a start count."
278
  msgstr "Тук можете да промените началната дата и да добавите нова дата."
279
 
280
+ #: counter-options.php:1002
281
  #@ cpd
282
  msgid "Start date"
283
  msgstr "Начална дата"
284
 
285
+ #: counter-options.php:1003
286
  #@ cpd
287
  msgid "Your old Counter starts at?"
288
  msgstr "Кога да стартира броячът?"
289
 
290
+ #: counter-options.php:1006
291
+ #: counter-options.php:1010
292
  #@ cpd
293
  msgid "Start count"
294
  msgstr "Стартиране на брояча"
295
 
296
+ #: counter-options.php:1007
297
  #@ cpd
298
  msgid "Add this value to \"Total visitors\"."
299
  msgstr "Добави тази стойност към \"Общо посетители\"."
300
 
301
+ #: counter-options.php:1011
302
  #@ cpd
303
  msgid "Add this value to \"Total reads\"."
304
  msgstr "Добави тази стойност към \"Общо прочетени\"."
305
 
306
+ #: counter-options.php:1048
307
  #@ cpd
308
  msgid "Debug mode"
309
  msgstr "Дебъг режим"
310
 
311
+ #: counter-options.php:1050
312
  #@ cpd
313
  msgid "Show debug informations at the bottom of all pages."
314
  msgstr "Покажи дебъг информация в дъното на всяка страница."
315
 
316
+ #: counter-options.php:1055
317
  #@ cpd
318
  msgid "Update options"
319
  msgstr "Обнови настройките"
320
 
321
+ #: counter-options.php:723
322
  #@ cpd
323
  msgid "GeoIP - Countries"
324
  msgstr "GeoIP - Държави"
325
 
326
+ #: counter-options.php:732
327
  #@ cpd
328
  msgid "Update old counter data"
329
  msgstr "Обнови старите данни на брояча"
330
 
331
+ #: counter-options.php:726
332
  #@ cpd
333
  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!"
334
  msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
335
 
336
+ #: counter-options.php:744
337
  #@ cpd
338
  msgid "Update GeoIP database"
339
  msgstr "Обнови GeoIP базата-данни"
340
 
341
+ #: counter-options.php:739
342
  #@ cpd
343
  msgid "Download a new version of GeoIP.dat file."
344
  msgstr "Изтегли нова версия на GeoIP.dat"
345
 
346
+ #: counter-options.php:749
347
  #@ cpd
348
  msgid "More informations about GeoIP"
349
  msgstr "Повече информация за GeoIP"
350
 
351
+ #: counter-options.php:432
352
  #: massbots.php:46
353
  #@ cpd
354
  msgid "Mass Bots"
355
  msgstr "Ботове"
356
 
357
+ #: counter-options.php:436
358
  #, php-format
359
  #@ cpd
360
  msgid "Show all IPs with more than %s page views per day"
361
  msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
362
 
363
+ #: counter-options.php:437
364
+ #: counter-options.php:501
365
  #: notes.php:84
366
  #: userperspan.php:56
367
  #@ cpd
368
  msgid "show"
369
  msgstr "покажи"
370
 
371
+ #: counter-options.php:445
372
+ #: counter-options.php:509
373
  #@ cpd
374
  msgid "IP"
375
  msgstr "IP"
376
 
377
+ #: counter-options.php:446
378
+ #: counter-options.php:510
379
  #: notes.php:88
380
  #@ cpd
381
  #@ default
382
  msgid "Date"
383
  msgstr "Дата"
384
 
385
+ #: counter-options.php:447
386
+ #: counter-options.php:511
387
  #@ cpd
388
  msgid "Client"
389
  msgstr "Потребител"
390
 
391
+ #: counter-options.php:448
392
+ #: counter-options.php:512
393
  #@ cpd
394
  msgid "Views"
395
  msgstr "Прегледи"
396
 
397
+ #: counter-options.php:463
398
+ #: counter-options.php:479
399
+ #: counter-options.php:526
400
  #, php-format
401
  #@ cpd
402
  msgid "Delete these %s counts"
403
  msgstr "Изтрий тези %s броячи"
404
 
405
+ #: counter-options.php:640
406
+ #: counter-options.php:648
407
  #@ cpd
408
  msgid "Clean the database"
409
  msgstr "Изчисти базата-данни"
410
 
411
+ #: counter-options.php:644
412
  #@ cpd
413
  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."
414
  msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
415
 
416
+ #: counter-options.php:773
417
+ #: counter-options.php:783
418
  #@ cpd
419
  msgid "Reset the counter"
420
  msgstr "Изтрий брояча"
421
 
422
+ #: counter-options.php:776
423
  #@ cpd
424
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
425
  msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
426
 
427
+ #: counter-options.php:795
428
  #@ cpd
429
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
430
  msgstr "Ако \"Count per Day\" е изключено, само изключените таблици в базата-данни ще бъдат запазени."
431
 
432
+ #: counter-options.php:796
433
  #@ cpd
434
  msgid "Here you can delete the tables and disable \"Count per Day\"."
435
  msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
436
 
437
+ #: counter-options.php:799
438
  #@ cpd
439
  msgid "WARNING"
440
  msgstr "ПРЕДУПРЕЖДЕНИЕ"
441
 
442
+ #: counter-options.php:800
443
  #@ cpd
444
  msgid "These tables (with ALL counter data) will be deleted."
445
  msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
446
 
447
+ #: counter-options.php:802
448
  #@ cpd
449
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
450
  msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
451
 
452
+ #: counter-options.php:782
453
+ #: counter-options.php:805
454
  #@ cpd
455
  msgid "Yes"
456
  msgstr "Да"
457
 
458
+ #: counter-options.php:806
459
  #@ cpd
460
  msgid "You are sure to disable Count per Day and delete all data?"
461
  msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
462
 
463
+ #: counter-options.php:814
464
  #@ cpd
465
  msgid "Support"
466
  msgstr "Поддръжка"
467
 
468
+ #: counter.php:236
469
+ #: counter.php:1412
470
  #@ cpd
471
  msgid "Total reads"
472
  msgstr "Общо прочетени"
473
 
474
+ #: counter.php:237
475
+ #: counter.php:1413
476
  #@ cpd
477
  msgid "Reads today"
478
  msgstr "Прочетени днес"
479
 
480
+ #: counter.php:238
481
+ #: counter.php:1414
482
  #@ cpd
483
  msgid "Reads yesterday"
484
  msgstr "Прочетени вчера"
485
 
486
+ #: counter.php:239
487
+ #: counter.php:1415
488
  #@ cpd
489
  msgid "Reads last week"
490
  msgstr "Прочетени последната седмица"
491
 
492
+ #: counter-core.php:791
493
+ #: counter.php:241
494
+ #: counter.php:1223
495
+ #: counter.php:1417
496
  #@ cpd
497
  msgid "Total visitors"
498
  msgstr "Общо посетители"
499
 
500
+ #: counter.php:242
501
+ #: counter.php:1423
502
  #@ cpd
503
  msgid "Visitors currently online"
504
  msgstr "Посетители онлайн"
505
 
506
+ #: counter.php:243
507
+ #: counter.php:1418
508
  #@ cpd
509
  msgid "Visitors today"
510
  msgstr "Посетители днес"
511
 
512
+ #: counter.php:244
513
+ #: counter.php:1419
514
  #@ cpd
515
  msgid "Visitors yesterday"
516
  msgstr "Посетители вчера"
517
 
518
+ #: counter.php:245
519
+ #: counter.php:1420
520
  #@ cpd
521
  msgid "Visitors last week"
522
  msgstr "Посетители през последната седмица"
523
 
524
+ #: counter-core.php:797
525
+ #: counter.php:247
526
+ #: counter.php:348
527
+ #: counter.php:1225
528
+ #: counter.php:1422
529
  #: userperspan.php:46
530
  #@ cpd
531
  msgid "Visitors per day"
532
  msgstr "Посетители по дни"
533
 
534
+ #: counter.php:974
535
+ #: counter.php:1424
536
  #@ cpd
537
  msgid "Counter starts on"
538
  msgstr "Броячът е стартиран"
539
 
540
+ #: counter.php:895
541
  #: notes.php:55
542
  #: notes.php:89
543
  #@ cpd
544
  msgid "Notes"
545
  msgstr "Забележки"
546
 
547
+ #: counter.php:776
548
  #, php-format
549
  #@ cpd
550
  msgid "The %s most visited posts in last %s days:"
551
  msgstr "Най-много %s посетени публикации в последните %s дни:"
552
 
553
+ #: counter.php:893
554
  #@ default
555
  msgid "Show"
556
  msgstr "Показване"
557
 
558
+ #: counter.php:963
559
  #@ cpd
560
  msgid "Other"
561
  msgstr "Други"
562
 
563
+ #: counter.php:1135
564
  #@ default
565
  msgid "Edit Post"
566
  msgstr "Редактиране на публикацията"
567
 
568
+ #: counter.php:1144
569
  #@ default
570
  msgid "Category"
571
  msgstr "Категория"
572
 
573
+ #: counter.php:1147
574
  #@ default
575
  msgid "Tag"
576
  msgstr "Етикет"
581
  msgid "Front page displays"
582
  msgstr "Изобразяване на заглавна страница"
583
 
584
+ #: counter-core.php:653
585
+ #: counter-options.php:412
586
  #@ default
587
  msgid "Settings"
588
  msgstr "Настройки"
589
 
590
+ #: counter-core.php:756
591
  #, php-format
592
  #@ cpd
593
  msgid "Time for Count per Day: <code>%s</code>."
594
  msgstr "Време за Count per Day: <code>%s</code>."
595
 
596
+ #: counter-core.php:757
597
  #@ cpd
598
  msgid "Bug? Problem? Question? Hint? Praise?"
599
  msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
600
 
601
+ #: counter-core.php:758
602
  #, php-format
603
  #@ cpd
604
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
605
  msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
606
 
607
+ #: counter-core.php:759
608
  #@ default
609
  msgid "License"
610
  msgstr "Лиценз"
611
 
612
+ #: counter.php:347
613
  #@ cpd
614
  msgid "Reads per day"
615
  msgstr "Прочетени по дни"
616
 
617
+ #: counter-core.php:793
618
+ #: counter.php:1421
619
  #@ cpd
620
  msgid "Visitors per month"
621
  msgstr "Посетители по месеци"
622
 
623
+ #: counter-core.php:794
624
+ #: counter.php:1416
625
  #@ cpd
626
  msgid "Reads per month"
627
  msgstr "Прочетени по месеци"
628
 
629
+ #: counter-core.php:796
630
  #@ cpd
631
  msgid "Latest Counts"
632
  msgstr "Последни броячи"
633
 
634
+ #: counter-core.php:799
635
  #@ default
636
  msgid "Plugin"
637
  msgstr "Разширение"
638
 
639
+ #: counter-core.php:803
640
  #@ cpd
641
  msgid "Referrer"
642
  msgstr "Препращащ сайт"
643
 
644
+ #: counter-core.php:807
645
  #@ cpd
646
  msgid "Reads per Country"
647
  msgstr "Прочитания по държави"
648
 
649
+ #: counter-core.php:808
650
  #@ cpd
651
  msgid "Visitors per Country"
652
  msgstr "Посетители по държави"
653
 
654
+ #: counter-core.php:823
655
+ #: counter.php:1339
656
  #@ cpd
657
  msgid "Statistics"
658
  msgstr "Статистика"
659
 
660
+ #: counter.php:438
661
+ #: counter.php:1254
662
  #@ cpd
663
  msgid "Map"
664
  msgstr "Карта"
665
 
666
+ #: counter.php:1411
667
  #@ cpd
668
  msgid "This post"
669
  msgstr "Тази публикация"
670
 
671
+ #: counter.php:1436
672
  #@ default
673
  msgid "Title"
674
  msgstr "Заглавие"
733
  msgid "no data found"
734
  msgstr "няма намерени данни"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Референти - Вписвания"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Брой референти, показвани на страницата на таблото?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Референти - Дни"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "%s Референти в последните %s дни:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Посетители на линия"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" е обновен до версия %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Архивирането е неуспешно! Файлът не може да се отвори"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Архивът на таблицата е запазен в %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Архивът на опциите на броячите е запазено в %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Събирането е стартирано..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Прегледай посетителите за публикация"
796
 
797
+ #: counter-options.php:316
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 "Броячът на вписвания до%s събира и броячът на таблицата%s е оптимизиран (размер, преди> размер =%s след =%s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Инсталацията на \"Count per Day\" е проверена"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Инструменти"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Запази само URL, без стринг за запитване."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Кой има право да вижда това"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "по избор"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "и по-високо е позволено да вижде статистиката."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Задайте способност %s %s ако потребителят има необходимост:"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Таблица"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "БЕЗ таблица в началната страница"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Не зареждай таблицата \"counter.css\" в началната страница."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Архивиране"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Влизания"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Колко посещения трябва да бъдат запазени? По подразбиране: 10000"
869
 
870
+ #: counter-options.php:1040
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 "Ако лимитът на PHP паметта е по-малък от 50 МВ и получавате бяла страница или съобщения за грешки, опитайте с по-малка стойност."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Създаване на резервно копие на брояча %s в WP-съдържанието на директорията (ако е с права за запис)."
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Архивиране на базата-данни"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Събиране на стари данни"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Съществуващият размер на таблицата %s е %s."
898
 
899
+ #: counter-options.php:685
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 "Можете да съберете стари данни и да почистите таблицата. <br/> Прочитанията и посетителите ще бъдат запазени по месеци, по страни и по публикации. <br/> Клиенти и референти ще се премахват."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "В момента вашата колекция съдържа данни до %s."
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Обикновено новите данни ще бъдат добавени към колекцията."
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Всички събрани данни до%s ще бъдат премахнати."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Пазене на записи за всички месеци на миналата%s и текущия месец в таблицата."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "Активиране отново"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Тук можете да стартирате инсталацията ръчно. <br/> Също можете да деактивирате и да реактивирате добавка."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "Включване отново на тази добавка"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Посетители"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Най-много посещения"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "провлачете и пуснете, за да сортирате"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-da_DK.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,509 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Indstillingerne er blevet gemt"
27
 
28
- #: counter-options.php:63
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
33
 
34
- #: counter-options.php:66
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "opdatér næste"
38
 
39
- #: counter-options.php:106
40
  #, php-format
41
  #@ cpd
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,65 +533,66 @@ 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,105 +657,105 @@ msgstr "Ny GeoIP-database installeret."
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"
@@ -765,456 +766,471 @@ msgstr "Brugere online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:08+0000\n"
7
  "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Indstillingerne er blevet gemt"
27
 
28
+ #: counter-options.php:66
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
33
 
34
+ #: counter-options.php:69
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "opdatér næste"
38
 
39
+ #: counter-options.php:109
40
  #, php-format
41
  #@ cpd
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Massebots renset. %s rækker slettet."
44
 
45
+ #: counter-options.php:121
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:131
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Tæller nulstillet."
55
 
56
+ #: counter-options.php:136
57
+ #: counter-options.php:806
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "AFINSTALLÉR Count per Day"
61
 
62
+ #: counter-options.php:141
63
+ #: counter-options.php:142
64
+ #: counter-options.php:143
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabellen %s blev slettet"
69
 
70
+ #: counter-options.php:144
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Indstillinger slettet"
74
 
75
+ #: counter-options.php:385
76
+ #: counter-options.php:792
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Afinstallér"
80
 
81
+ #: counter-options.php:386
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Klik her"
85
 
86
+ #: counter-options.php:386
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:835
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Tid online"
95
 
96
+ #: counter-options.php:836
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:839
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Indloggede brugere"
105
 
106
+ #: counter-options.php:841
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "tæl også"
110
 
111
+ #: counter-options.php:842
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "til og med brugerniveau"
115
 
116
+ #: counter-options.php:853
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Auto-tæller"
120
 
121
+ #: counter-options.php:854
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:857
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Ignorér følgende bots"
130
 
131
+ #: counter-options.php:868
132
  #@ cpd
133
  msgid "Anonymous IP"
134
  msgstr "Anonymt IP-nummer"
135
 
136
+ #: counter-options.php:872
137
  #@ cpd
138
  msgid "Cache"
139
  msgstr "Cache"
140
 
141
+ #: counter-options.php:873
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:1055
147
  #@ cpd
148
  msgid "Update options"
149
  msgstr "Opdatér indstillinger"
150
 
151
+ #: counter-options.php:902
152
  #@ default
153
  msgid "Dashboard"
154
  msgstr "Kontrolpanel"
155
 
156
+ #: counter-core.php:795
157
+ #: counter-options.php:937
158
  #@ cpd
159
  msgid "Visitors per post"
160
  msgstr "Besøgende per indlæg"
161
 
162
+ #: counter-options.php:938
163
+ #: counter-options.php:942
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:941
169
  #@ cpd
170
  msgid "Latest Counts - Posts"
171
  msgstr "Seneste læste - Indlæg"
172
 
173
+ #: counter-options.php:945
174
  #@ cpd
175
  msgid "Latest Counts - Days"
176
  msgstr "Seneste læste - Dage"
177
 
178
+ #: counter-options.php:946
179
+ #: counter-options.php:950
180
+ #: counter-options.php:972
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:949
186
  #@ cpd
187
  msgid "Chart - Days"
188
  msgstr "Diagram - Dage"
189
 
190
+ #: counter-options.php:953
191
  #@ cpd
192
  msgid "Chart - Height"
193
  msgstr "Diagram - Højde"
194
 
195
+ #: counter-options.php:954
196
  #@ cpd
197
  msgid "Height of the biggest bar"
198
  msgstr "Højde på den største søjle"
199
 
200
+ #: counter-options.php:958
201
  #@ cpd
202
  msgid "Countries"
203
  msgstr "Lande"
204
 
205
+ #: counter-options.php:959
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:802
211
+ #: counter-options.php:963
212
  #@ cpd
213
  msgid "Browsers"
214
  msgstr "Browsere"
215
 
216
+ #: counter-options.php:964
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:986
222
  #@ cpd
223
  msgid "Show in lists"
224
  msgstr "Vis som liste"
225
 
226
+ #: counter-options.php:987
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:994
232
  #@ cpd
233
  msgid "Start Values"
234
  msgstr "Startværdier"
235
 
236
+ #: counter-options.php:998
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:1002
242
  #@ cpd
243
  msgid "Start date"
244
  msgstr "Startdato"
245
 
246
+ #: counter-options.php:1003
247
  #@ cpd
248
  msgid "Your old Counter starts at?"
249
  msgstr "Hvornår starter din gamle tæller?"
250
 
251
+ #: counter-options.php:1006
252
+ #: counter-options.php:1010
253
  #@ cpd
254
  msgid "Start count"
255
  msgstr "Start-tæller"
256
 
257
+ #: counter-options.php:1007
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:1011
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:1048
268
  #@ cpd
269
  msgid "Debug mode"
270
  msgstr "Debug-modus"
271
 
272
+ #: counter-options.php:1050
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:723
278
  #@ cpd
279
  msgid "GeoIP - Countries"
280
  msgstr "GeoIP - Lande"
281
 
282
+ #: counter-options.php:732
283
  #@ cpd
284
  msgid "Update old counter data"
285
  msgstr "Opdatér gamle tællerdata"
286
 
287
+ #: counter-options.php:744
288
  #@ cpd
289
  msgid "Update GeoIP database"
290
  msgstr "Opdatér GeoIP-database"
291
 
292
+ #: counter-options.php:739
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:749
298
  #@ cpd
299
  msgid "More informations about GeoIP"
300
  msgstr "Flere oplysninger om GeoIP"
301
 
302
+ #: counter-options.php:432
303
  #: massbots.php:46
304
  #@ cpd
305
  msgid "Mass Bots"
306
  msgstr "Massebots"
307
 
308
+ #: counter-options.php:436
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:437
315
+ #: counter-options.php:501
316
  #: notes.php:84
317
  #: userperspan.php:56
318
  #@ cpd
319
  msgid "show"
320
  msgstr "vis"
321
 
322
+ #: counter-options.php:445
323
+ #: counter-options.php:509
324
  #@ cpd
325
  msgid "IP"
326
  msgstr "IP"
327
 
328
+ #: counter-options.php:446
329
+ #: counter-options.php:510
330
  #: notes.php:88
331
  #@ cpd
332
  #@ default
333
  msgid "Date"
334
  msgstr "Dato"
335
 
336
+ #: counter-options.php:447
337
+ #: counter-options.php:511
338
  #@ cpd
339
  msgid "Client"
340
  msgstr "Klient"
341
 
342
+ #: counter-options.php:448
343
+ #: counter-options.php:512
344
  #@ cpd
345
  msgid "Views"
346
  msgstr "Visninger"
347
 
348
+ #: counter-options.php:463
349
+ #: counter-options.php:479
350
+ #: counter-options.php:526
351
  #, php-format
352
  #@ cpd
353
  msgid "Delete these %s counts"
354
  msgstr "Slet disse %s hits"
355
 
356
+ #: counter-options.php:640
357
+ #: counter-options.php:648
358
  #@ cpd
359
  msgid "Clean the database"
360
  msgstr "Rens databasen"
361
 
362
+ #: counter-options.php:644
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:773
368
+ #: counter-options.php:783
369
  #@ cpd
370
  msgid "Reset the counter"
371
  msgstr "Nulstil tælleren"
372
 
373
+ #: counter-options.php:776
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:795
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:796
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:799
389
  #@ cpd
390
  msgid "WARNING"
391
  msgstr "ADVARSEL"
392
 
393
+ #: counter-options.php:800
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:802
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:782
404
+ #: counter-options.php:805
405
  #@ cpd
406
  msgid "Yes"
407
  msgstr "Ja"
408
 
409
+ #: counter-options.php:806
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:814
415
  #@ cpd
416
  msgid "Support"
417
  msgstr "Support"
418
 
419
+ #: counter-core.php:756
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:757
426
  #@ cpd
427
  msgid "Bug? Problem? Question? Hint? Praise?"
428
  msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
429
 
430
+ #: counter-core.php:758
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:236
437
+ #: counter.php:1412
438
  #@ cpd
439
  msgid "Total reads"
440
  msgstr "Læsninger i alt"
441
 
442
+ #: counter.php:237
443
+ #: counter.php:1413
444
  #@ cpd
445
  msgid "Reads today"
446
  msgstr "Læsninger i dag"
447
 
448
+ #: counter.php:238
449
+ #: counter.php:1414
450
  #@ cpd
451
  msgid "Reads yesterday"
452
  msgstr "Læsninger i går"
453
 
454
+ #: counter-core.php:791
455
+ #: counter.php:241
456
+ #: counter.php:1223
457
+ #: counter.php:1417
458
  #@ cpd
459
  msgid "Total visitors"
460
  msgstr "Antal besøgende i alt"
461
 
462
+ #: counter.php:242
463
+ #: counter.php:1423
464
  #@ cpd
465
  msgid "Visitors currently online"
466
  msgstr "Besøgende online lige nu"
467
 
468
+ #: counter.php:243
469
+ #: counter.php:1418
470
  #@ cpd
471
  msgid "Visitors today"
472
  msgstr "Besøgende i dag"
473
 
474
+ #: counter.php:244
475
+ #: counter.php:1419
476
  #@ cpd
477
  msgid "Visitors yesterday"
478
  msgstr "Besøgende i går"
479
 
480
+ #: counter.php:245
481
+ #: counter.php:1420
482
  #@ cpd
483
  msgid "Visitors last week"
484
  msgstr "Besøgende sidste weekend"
485
 
486
+ #: counter-core.php:797
487
+ #: counter.php:247
488
+ #: counter.php:348
489
+ #: counter.php:1225
490
+ #: counter.php:1422
491
  #: userperspan.php:46
492
  #@ cpd
493
  msgid "Visitors per day"
494
  msgstr "Besøgende per dag"
495
 
496
+ #: counter.php:974
497
+ #: counter.php:1424
498
  #@ cpd
499
  msgid "Counter starts on"
500
  msgstr "Tæller starter på"
501
 
502
+ #: counter.php:895
503
  #: notes.php:55
504
  #: notes.php:89
505
  #@ cpd
506
  msgid "Notes"
507
  msgstr "Noter"
508
 
509
+ #: counter.php:776
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:893
516
  #@ default
517
  msgid "Show"
518
  msgstr "Vis"
519
 
520
+ #: counter.php:963
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Andre"
524
 
525
+ #: counter.php:1135
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:653
537
+ #: counter-options.php:412
538
  #@ default
539
  msgid "Settings"
540
  msgstr "Indstillinger"
541
 
542
  # tjekkes
543
+ #: counter-core.php:1541
544
+ #: counter-options.php:879
545
+ #: counter.php:240
546
+ #: counter.php:1024
547
+ #: map/map.php:60
548
  #@ cpd
549
  msgid "Reads"
550
  msgstr "Læsninger"
551
 
552
+ #: counter.php:1411
553
  #@ cpd
554
  msgid "This post"
555
  msgstr "Dette indlæg"
556
 
557
+ #: counter.php:347
558
  #@ cpd
559
  msgid "Reads per day"
560
  msgstr "Læsninger per dag"
561
 
562
+ #: counter-core.php:793
563
+ #: counter.php:1421
564
  #@ cpd
565
  msgid "Visitors per month"
566
  msgstr "Besøgende per måned"
567
 
568
+ #: counter-core.php:796
569
  #@ cpd
570
  msgid "Latest Counts"
571
  msgstr "Seneste læste"
572
 
573
+ #: counter-core.php:799
574
  #@ default
575
  msgid "Plugin"
576
  msgstr "Plugin"
577
 
578
+ #: counter-core.php:807
579
  #@ cpd
580
  msgid "Reads per Country"
581
  msgstr "Læsninger per land"
582
 
583
+ #: counter-core.php:808
584
  #@ cpd
585
  msgid "Visitors per Country"
586
  msgstr "Besøgende per land"
587
 
588
+ #: counter-core.php:823
589
+ #: counter.php:1339
590
  #@ cpd
591
  msgid "Statistics"
592
  msgstr "Statistik"
593
 
594
+ #: counter.php:438
595
+ #: counter.php:1254
596
  #@ cpd
597
  msgid "Map"
598
  msgstr "Kort"
657
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
658
  msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
659
 
660
+ #: counter-options.php:726
661
  #@ cpd
662
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
663
  msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
664
 
665
+ #: counter-options.php:831
666
  #@ cpd
667
  msgid "Counter"
668
  msgstr "Tæller"
669
 
670
+ #: counter-options.php:876
671
  #@ cpd
672
  msgid "Clients and referrers"
673
  msgstr "Klienter og henvisere"
674
 
675
+ #: counter-options.php:879
676
  #@ cpd
677
  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."
678
  msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
679
 
680
+ #: counter-options.php:975
681
  #@ cpd
682
  msgid "Local URLs"
683
  msgstr "Lokale adresser"
684
 
685
+ #: counter-options.php:976
686
  #@ cpd
687
  msgid "Show local referrers too."
688
  msgstr "Vis også lokale henvisninger"
689
 
690
+ #: counter-options.php:983
691
  #@ default
692
  msgid "Posts"
693
  msgstr "Indlæg"
694
 
695
+ #: counter-options.php:983
696
  #@ default
697
  msgid "Pages"
698
  msgstr "Sider"
699
 
700
+ #: counter.php:239
701
+ #: counter.php:1415
702
  #@ cpd
703
  msgid "Reads last week"
704
  msgstr "Læsninger i sidste uge"
705
 
706
+ #: counter.php:1144
707
  #@ default
708
  msgid "Category"
709
  msgstr "Kategori"
710
 
711
+ #: counter.php:1147
712
  #@ default
713
  msgid "Tag"
714
  msgstr "Tag"
715
 
716
+ #: counter-core.php:759
717
  #@ default
718
  msgid "License"
719
  msgstr "Licens"
720
 
721
+ #: counter-core.php:794
722
+ #: counter.php:1416
723
  #@ cpd
724
  msgid "Reads per month"
725
  msgstr "Læsninger per måned"
726
 
727
+ #: counter-core.php:803
728
  #@ cpd
729
  msgid "Referrer"
730
  msgstr "Henviser"
731
 
732
+ #: counter.php:1436
733
  #@ default
734
  msgid "Title"
735
  msgstr "Titel"
736
 
737
+ #: counter-options.php:967
738
  #@ cpd
739
  msgid "Referrers - Entries"
740
  msgstr "Henvisere - poster"
741
 
742
+ #: counter-options.php:968
743
  #@ cpd
744
  msgid "How many referrers do you want to see on dashboard page?"
745
  msgstr "Hvor mange henvisere vil du se på dashboardet?"
746
 
747
+ #: counter-options.php:971
748
  #@ cpd
749
  msgid "Referrers - Days"
750
  msgstr "Henvisere - Dage"
751
 
752
+ #: counter.php:994
753
  #, php-format
754
  #@ cpd
755
  msgid "The %s referrers in last %s days:"
756
  msgstr "De %s henvisere i de sidste %s dage:"
757
 
758
+ #: counter-core.php:792
759
  #@ cpd
760
  msgid "Visitors online"
761
  msgstr "Brugere online"
766
  msgid "\"Count per Day\" updated to version %s."
767
  msgstr ""
768
 
769
+ #: counter-core.php:1076
770
  #@ cpd
771
  msgid "Backup failed! Cannot open file"
772
  msgstr ""
773
 
774
+ #: counter-core.php:1195
775
+ #: counter-core.php:1203
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr ""
780
 
781
+ #: counter-core.php:1197
782
+ #: counter-core.php:1205
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr ""
787
 
788
+ #: counter-options.php:177
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr ""
792
 
793
+ #: counter-options.php:271
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr ""
797
 
798
+ #: counter-options.php:316
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 ""
803
 
804
+ #: counter-options.php:325
805
  #@ cpd
806
  msgid "Installation of \"Count per Day\" checked"
807
  msgstr ""
808
 
809
+ #: counter-options.php:411
810
  #@ default
811
  msgid "Tools"
812
  msgstr ""
813
 
814
+ #: counter-options.php:881
815
  #@ cpd
816
  msgid "Save URL only, no query string."
817
  msgstr ""
818
 
819
+ #: counter-options.php:918
820
  #@ cpd
821
  msgid "Who can see it"
822
  msgstr ""
823
 
824
+ #: counter-options.php:927
825
  #@ cpd
826
  msgid "custom"
827
  msgstr ""
828
 
829
+ #: counter-options.php:929
830
  #@ cpd
831
  msgid "and higher are allowed to see the statistics page."
832
  msgstr ""
833
 
834
+ #: counter-options.php:931
835
  #, php-format
836
  #@ cpd
837
  msgid "Set the %s capability %s a user need:"
838
  msgstr ""
839
 
840
+ #: counter-options.php:1018
841
  #@ cpd
842
  msgid "Stylesheet"
843
  msgstr ""
844
 
845
+ #: counter-options.php:1021
846
  #@ cpd
847
  msgid "NO Stylesheet in Frontend"
848
  msgstr ""
849
 
850
+ #: counter-options.php:1022
851
  #@ cpd
852
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
853
  msgstr ""
854
 
855
+ #: counter-options.php:563
856
+ #: counter-options.php:1029
857
  #@ cpd
858
  msgid "Backup"
859
  msgstr ""
860
 
861
+ #: counter-options.php:1032
862
  #@ cpd
863
  msgid "Entries per pass"
864
  msgstr ""
865
 
866
+ #: counter-options.php:1035
867
  #@ cpd
868
  msgid "How many entries should be saved per pass? Default: 10000"
869
  msgstr ""
870
 
871
+ #: counter-options.php:1040
872
  #@ cpd
873
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
874
  msgstr ""
875
 
876
+ #: counter-options.php:567
877
  #, php-format
878
  #@ cpd
879
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
880
  msgstr ""
881
 
882
+ #: counter-options.php:574
883
  #@ cpd
884
  msgid "Backup the database"
885
  msgstr ""
886
 
887
+ #: counter-options.php:678
888
+ #: counter-options.php:710
889
  #@ cpd
890
  msgid "Collect old data"
891
  msgstr ""
892
 
893
+ #: counter-options.php:664
894
+ #: counter-options.php:683
895
  #, php-format
896
  #@ cpd
897
  msgid "Current size of your counter table %s is %s."
898
  msgstr ""
899
 
900
+ #: counter-options.php:685
901
  #@ cpd
902
  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."
903
  msgstr ""
904
 
905
+ #: counter-options.php:690
906
  #, php-format
907
  #@ cpd
908
  msgid "Currently your collection contains data until %s."
909
  msgstr ""
910
 
911
+ #: counter-options.php:694
912
  #@ cpd
913
  msgid "Normally new data will be added to the collection."
914
  msgstr ""
915
 
916
+ #: counter-options.php:700
917
  #@ cpd
918
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
919
  msgstr ""
920
 
921
+ #: counter-options.php:701
922
  #, php-format
923
  #@ cpd
924
  msgid "All collected data until %s will deleted."
925
  msgstr ""
926
 
927
+ #: counter-options.php:706
928
  #, php-format
929
  #@ cpd
930
  msgid "Keep entries of last %s full months + current month in counter table."
931
  msgstr ""
932
 
933
+ #: counter-options.php:757
934
  #@ cpd
935
  msgid "ReActivation"
936
  msgstr ""
937
 
938
+ #: counter-options.php:760
939
  #@ cpd
940
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
941
  msgstr ""
942
 
943
+ #: counter-options.php:765
944
  #@ cpd
945
  msgid "ReActivate the plugin"
946
  msgstr ""
947
 
948
+ #: counter.php:246
949
+ #: counter.php:1048
950
  #@ cpd
951
  msgid "Visitors"
952
  msgstr ""
953
 
954
+ #: counter.php:249
955
+ #: counter.php:250
956
  #@ cpd
957
  msgid "Most visited day"
958
  msgstr ""
959
 
960
+ #: counter.php:1455
961
  #@ cpd
962
  msgid "drag and drop to sort"
963
  msgstr ""
964
 
965
+ #: counter-core.php:798
966
+ #: counter-options.php:967
967
+ #: counter-options.php:971
968
  #@ cpd
969
  msgid "Search strings"
970
  msgstr ""
971
 
972
+ #: counter-core.php:1191
973
  #@ cpd
974
  msgid "Your can download the backup files here and now."
975
  msgstr ""
976
 
977
+ #: counter-core.php:1261
978
  #@ cpd
979
  msgid "Error while reading backup file!"
980
  msgstr ""
981
 
982
+ #: counter-core.php:1265
983
  #, php-format
984
  #@ cpd
985
  msgid "The backup was added to counter table %s."
986
  msgstr ""
987
 
988
+ #: counter-core.php:1267
989
  #, php-format
990
  #@ cpd
991
  msgid "The counter table %s was restored from backup."
992
  msgstr ""
993
 
994
+ #: counter-core.php:1284
995
  #@ cpd
996
  msgid "Options restored from backup."
997
  msgstr ""
998
 
999
+ #: counter-options.php:340
1000
  #@ cpd
1001
  msgid "Old search strings deleted"
1002
  msgstr ""
1003
 
1004
+ #: counter-options.php:355
1005
  #@ cpd
1006
  msgid "Clients and referers deleted"
1007
  msgstr ""
1008
 
1009
+ #: counter-options.php:570
1010
  #@ cpd
1011
  msgid "Download only"
1012
  msgstr ""
1013
 
1014
+ #: counter-options.php:602
1015
  #@ cpd
1016
  msgid "Settings and collections"
1017
  msgstr ""
1018
 
1019
+ #: counter-options.php:607
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Counter table %s"
1023
  msgstr ""
1024
 
1025
+ #: counter-options.php:614
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:614
1032
  #@ cpd
1033
  msgid "Add"
1034
  msgstr ""
1035
 
1036
+ #: counter-options.php:618
1037
  #, php-format
1038
  #@ cpd
1039
  msgid "Restore data from the backup file %s ?"
1040
  msgstr ""
1041
 
1042
+ #: counter-options.php:618
1043
  #@ default
1044
  msgid "Restore"
1045
  msgstr ""
1046
 
1047
+ #: counter-options.php:620
1048
  #@ default
1049
  msgid "Delete"
1050
  msgstr ""
1051
 
1052
+ #: counter-options.php:621
1053
  #, php-format
1054
  #@ cpd
1055
  msgid "Delete the backup file %s ?"
1056
  msgstr ""
1057
 
1058
+ #: counter-options.php:627
1059
  #@ cpd
1060
  msgid "add backup to current counter table"
1061
  msgstr ""
1062
 
1063
+ #: counter-options.php:628
1064
  #@ cpd
1065
  msgid "replace current counter table with with backup"
1066
  msgstr ""
1067
 
1068
+ #: counter-options.php:629
1069
  #@ cpd
1070
  msgid "delete backup file"
1071
  msgstr ""
1072
 
1073
+ #: counter-options.php:654
1074
  #, php-format
1075
  #@ cpd
1076
  msgid "Delete search strings older than %s days."
1077
  msgstr ""
1078
 
1079
+ #: counter-options.php:658
1080
  #@ cpd
1081
  msgid "Delete search strings"
1082
  msgstr ""
1083
 
1084
+ #: counter-options.php:665
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:669
1091
  #@ cpd
1092
  msgid "Delete clients and referers"
1093
  msgstr ""
1094
 
1095
+ #: counter.php:1150
1096
  #@ default
1097
  msgid "Front page"
1098
  msgstr ""
1099
 
1100
+ #: counter.php:1198
1101
  #, php-format
1102
  #@ cpd
1103
  msgid "The %s most searched strings:"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1207
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The search strings of the last %s days:"
1110
  msgstr ""
1111
 
1112
+ #: counter.php:1371
1113
  #@ default
1114
  msgid "_name"
1115
  msgstr ""
1116
 
1117
+ #: counter-core.php:1000
1118
  #@ cpd
1119
  msgid "Export failed! Cannot open file."
1120
  msgstr ""
1121
 
1122
+ #: counter-core.php:1048
1123
  #@ cpd
1124
  msgid "Download the export file:"
1125
  msgstr ""
1126
 
1127
+ #: counter-core.php:1103
1128
  #, php-format
1129
  #@ cpd
1130
  msgid "Backup of %s entries in progress. Every point comprises %s entries."
1131
  msgstr ""
1132
 
1133
+ #: counter-options.php:292
1134
  #@ cpd
1135
  msgid "Deleting old data..."
1136
  msgstr ""
1137
 
1138
+ #: counter-options.php:496
1139
  #@ cpd
1140
  msgid "Most Industrious Visitors"
1141
  msgstr ""
1142
 
1143
+ #: counter-options.php:500
1144
  #, php-format
1145
  #@ cpd
1146
  msgid "Show the %s most industrious visitors of the last %s days"
1147
  msgstr ""
1148
 
1149
+ #: counter-options.php:547
1150
  #@ cpd
1151
  msgid "Export"
1152
  msgstr ""
1153
 
1154
+ #: counter-options.php:551
1155
  #, php-format
1156
  #@ cpd
1157
  msgid "Export the last %s days as CSV-File"
1158
  msgstr ""
1159
 
1160
+ #: counter-options.php:555
1161
  #@ cpd
1162
  msgid "Export entries"
1163
  msgstr ""
1164
 
1165
+ #: counter-options.php:888
1166
  #@ cpd
1167
  msgid "Post types"
1168
  msgstr ""
1169
 
1170
+ #: counter-options.php:891
1171
  #@ cpd
1172
  msgid "Only count these post types. Leave empty to count them all."
1173
  msgstr ""
1174
 
1175
+ #: counter-options.php:892
1176
  #, php-format
1177
  #@ cpd
1178
  msgid "Current post types: %s"
1179
  msgstr ""
1180
 
1181
+ #: counter.php:248
1182
  #@ cpd
1183
  msgid "Since"
1184
  msgstr ""
1185
 
1186
+ #: counter.php:1507
1187
+ #: counter.php:1539
1188
  #@ cpd
1189
  msgid "Popular Posts"
1190
  msgstr ""
1191
 
1192
+ #: counter.php:1509
1193
  #@ cpd
1194
  msgid "List of Popular Posts"
1195
  msgstr ""
1196
 
1197
+ #: counter.php:1547
1198
  #@ cpd
1199
  msgid "Title:"
1200
  msgstr ""
1201
 
1202
+ #: counter.php:1551
1203
  #@ cpd
1204
  msgid "Days:"
1205
  msgstr ""
1206
 
1207
+ #: counter.php:1555
1208
  #@ cpd
1209
  msgid "Limit:"
1210
  msgstr ""
1211
 
1212
+ #: counter.php:1559
1213
  #@ cpd
1214
  msgid "Show header:"
1215
  msgstr ""
1216
 
1217
+ #: counter.php:1563
1218
  #@ cpd
1219
  msgid "Show counters:"
1220
  msgstr ""
1221
 
1222
+ #: counter-options.php:861
1223
+ #@ cpd
1224
+ msgid "Exclude Countries"
1225
+ msgstr ""
1226
+
1227
+ #: counter-options.php:864
1228
+ #@ cpd
1229
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1230
+ msgstr ""
1231
+
1232
+ #: counter-options.php:884
1233
+ #@ cpd
1234
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1235
+ msgstr ""
1236
+
locale/cpd-de_DE.mo CHANGED
Binary file
locale/cpd-de_DE.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,346 +20,347 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
325
 
326
- #: counter-options.php:63
327
  #, php-format
328
  #@ cpd
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
331
 
332
- #: counter-options.php:66
333
  #@ cpd
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,51 +380,51 @@ msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder &uuml;berpr&uum
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?"
391
 
392
- #: counter-options.php:106
393
  #, php-format
394
  #@ cpd
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,112 +435,112 @@ 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,66 +572,66 @@ msgstr "l&ouml;schen"
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,140 +656,140 @@ msgstr "Artikel-ID"
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:"
@@ -800,424 +801,435 @@ msgstr "Gibt die benötigte %s Rolle %s ein."
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:17:28+0000\n"
7
  "Last-Translator: Tom Braider <post@tomsdimension.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Einstellungen aktualisiert"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEINSTALLIERE Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabelle %s gel&ouml;scht"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Einstellungen gel&ouml;scht"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstallation"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Klick hier"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Onlinezeit"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Angemeldete Benutzer"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "auch mit z&auml;hlen"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto-Counter"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Spam/Suchmaschinen Bots ignorieren"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Einstellungen aktualisieren"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Datenbank aufr&auml;umen"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "WARNUNG"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Ja, los!"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistiken"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Besucher gesamt"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Besucher momentan online"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Besucher heute"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Besucher gestern"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Besucher letzte Woche"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "gez&auml;hlt ab"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Besucher pro Tag"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Besucher pro Monat"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Besucher pro Artikel"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Z&auml;hler zur&uuml;ckgesetzt."
226
 
227
+ #: counter-options.php:938
228
+ #: counter-options.php:942
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:941
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Aktuelle Besuche - Artikel"
237
 
238
+ #: counter-options.php:945
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Aktuelle Besuche - Tage"
242
 
243
+ #: counter-options.php:946
244
+ #: counter-options.php:950
245
+ #: counter-options.php:972
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:986
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "In &Uuml;bersichten anzeigen"
254
 
255
+ #: counter-options.php:987
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:773
261
+ #: counter-options.php:783
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Z&auml;hler zur&uuml;cksetzen"
265
 
266
+ #: counter-options.php:776
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:776
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:653
278
+ #: counter-options.php:412
279
  #@ default
280
  msgid "Settings"
281
  msgstr ""
282
 
283
+ #: counter-core.php:1541
284
+ #: counter-options.php:879
285
+ #: counter.php:240
286
+ #: counter.php:1024
287
+ #: map/map.php:60
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Seitenaufrufe"
291
 
292
+ #: counter-core.php:796
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Letzte Seitenaufrufe"
296
 
297
+ #: counter-options.php:949
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Diagramm - Tage"
301
 
302
+ #: counter-options.php:953
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Diagramm - H&ouml;he"
306
 
307
+ #: counter-options.php:954
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
311
 
312
+ #: counter.php:1411
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Diese Seite"
316
 
317
+ #: counter-options.php:902
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr ""
321
 
322
+ #: counter.php:347
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Seitenaufrufe pro Tag"
326
 
327
+ #: counter-options.php:66
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
332
 
333
+ #: counter-options.php:69
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "weiter aktualisieren"
337
 
338
+ #: counter-options.php:723
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - L&auml;nder"
342
 
343
+ #: counter-options.php:732
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Aktualisiere alte Z&auml;hlerdaten"
347
 
348
+ #: counter-options.php:744
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Aktualisiere GeoIP Datenbank"
352
 
353
+ #: counter-options.php:739
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Neue Version von GeoIP.dat herunterladen."
357
 
358
+ #: counter-options.php:749
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Mehr Informationen über GeoIP"
362
 
363
+ #: counter-core.php:807
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Seitenaufrufe pro Land"
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
382
 
383
+ #: counter-options.php:958
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "L&auml;nder"
387
 
388
+ #: counter-options.php:959
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
392
 
393
+ #: counter-options.php:109
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
398
 
399
+ #: counter-options.php:432
400
  #: massbots.php:46
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Massen-Bots"
404
 
405
+ #: counter-options.php:436
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
410
 
411
+ #: counter-options.php:437
412
+ #: counter-options.php:501
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "anzeigen"
418
 
419
+ #: counter-options.php:463
420
+ #: counter-options.php:479
421
+ #: counter-options.php:526
422
  #, php-format
423
  #@ cpd
424
  msgid "Delete these %s counts"
425
  msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
426
 
427
+ #: counter.php:963
428
  #@ cpd
429
  msgid "Other"
430
  msgstr "Sonstige"
435
  msgid "Front page displays"
436
  msgstr ""
437
 
438
+ #: counter-core.php:802
439
+ #: counter-options.php:963
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Browser"
443
 
444
+ #: counter-options.php:445
445
+ #: counter-options.php:509
446
  #@ cpd
447
  msgid "IP"
448
  msgstr "IP"
449
 
450
+ #: counter-options.php:446
451
+ #: counter-options.php:510
452
  #: notes.php:88
453
  #@ cpd
454
  #@ default
455
  msgid "Date"
456
  msgstr "Datum"
457
 
458
+ #: counter-options.php:447
459
+ #: counter-options.php:511
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Browser"
463
 
464
+ #: counter-options.php:448
465
+ #: counter-options.php:512
466
  #@ cpd
467
  msgid "Views"
468
  msgstr "Seitenaufrufe"
469
 
470
+ #: counter-options.php:994
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Startwerte"
474
 
475
+ #: counter-options.php:998
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
479
 
480
+ #: counter-options.php:1002
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Startdatum"
484
 
485
+ #: counter-options.php:1003
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Dein alter Z&auml;hler begann am?"
489
 
490
+ #: counter-options.php:1006
491
+ #: counter-options.php:1010
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Startz&auml;hlerstand"
495
 
496
+ #: counter-options.php:1007
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
500
 
501
+ #: counter-options.php:814
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Kontakt"
505
 
506
+ #: counter-core.php:757
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Bug? Problem? Frage? Tipp? Lob?"
510
 
511
+ #: counter-core.php:758
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
516
 
517
+ #: counter.php:893
518
  #@ default
519
  msgid "Show"
520
  msgstr ""
521
 
522
+ #: counter.php:1135
523
  #@ default
524
  msgid "Edit Post"
525
  msgstr ""
526
 
527
+ #: counter-core.php:756
528
  #, php-format
529
  #@ cpd
530
  msgid "Time for Count per Day: <code>%s</code>."
531
  msgstr "Zeit bei Count per Day: <code>%s</code>"
532
 
533
+ #: counter-options.php:842
534
  #@ cpd
535
  msgid "until User Level"
536
  msgstr "bis Benutzerlevel"
537
 
538
+ #: counter-core.php:799
539
  #@ default
540
  msgid "Plugin"
541
  msgstr ""
542
 
543
+ #: counter.php:895
544
  #: notes.php:55
545
  #: notes.php:89
546
  #@ cpd
572
  msgid "edit"
573
  msgstr "&auml;ndern"
574
 
575
+ #: counter-options.php:1011
576
  #@ cpd
577
  msgid "Add this value to \"Total reads\"."
578
  msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
579
 
580
+ #: counter.php:236
581
+ #: counter.php:1412
582
  #@ cpd
583
  msgid "Total reads"
584
  msgstr "Seitenaufrufe gesamt"
585
 
586
+ #: counter.php:237
587
+ #: counter.php:1413
588
  #@ cpd
589
  msgid "Reads today"
590
  msgstr "Seitenaufrufe heute"
591
 
592
+ #: counter.php:238
593
+ #: counter.php:1414
594
  #@ cpd
595
  msgid "Reads yesterday"
596
  msgstr "Seitenaufrufe gestern"
597
 
598
+ #: counter.php:438
599
+ #: counter.php:1254
600
  #@ cpd
601
  msgid "Map"
602
  msgstr "Weltkarte"
603
 
604
+ #: counter-options.php:868
605
  #@ cpd
606
  msgid "Anonymous IP"
607
  msgstr "Anonyme IP-Adresse"
608
 
609
+ #: counter-options.php:872
610
  #@ cpd
611
  msgid "Cache"
612
  msgstr "Cache"
613
 
614
+ #: counter-options.php:873
615
  #@ cpd
616
  msgid "I use a cache plugin. Count these visits with ajax."
617
  msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
618
 
619
+ #: counter-options.php:964
620
  #@ cpd
621
  msgid "Substring of the user agent, separated by comma"
622
  msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
623
 
624
+ #: counter-core.php:808
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Besucher pro Land"
628
 
629
+ #: counter-options.php:1048
630
  #@ cpd
631
  msgid "Debug mode"
632
  msgstr "Debug Modus"
633
 
634
+ #: counter-options.php:1050
635
  #@ cpd
636
  msgid "Show debug informations at the bottom of all pages."
637
  msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
656
  msgid "no data found"
657
  msgstr "keine passenden Daten gefunden"
658
 
659
+ #: counter-options.php:726
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 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."
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Z&auml;hler"
668
 
669
+ #: counter-options.php:975
670
  #@ cpd
671
  msgid "Local URLs"
672
  msgstr "Lokale URLs"
673
 
674
+ #: counter-options.php:976
675
  #@ cpd
676
  msgid "Show local referrers too."
677
  msgstr "Zeige auch lokale Referrer."
678
 
679
+ #: counter-options.php:983
680
  #@ default
681
  msgid "Posts"
682
  msgstr ""
683
 
684
+ #: counter-options.php:983
685
  #@ default
686
  msgid "Pages"
687
  msgstr ""
688
 
689
+ #: counter.php:1144
690
  #@ default
691
  msgid "Category"
692
  msgstr ""
693
 
694
+ #: counter.php:1147
695
  #@ default
696
  msgid "Tag"
697
  msgstr ""
698
 
699
+ #: counter-core.php:759
700
  #@ default
701
  msgid "License"
702
  msgstr ""
703
 
704
+ #: counter-core.php:803
705
  #@ cpd
706
  msgid "Referrer"
707
  msgstr "Herkunft"
708
 
709
+ #: counter.php:1436
710
  #@ default
711
  msgid "Title"
712
  msgstr ""
713
 
714
+ #: counter-options.php:879
715
  #@ cpd
716
  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."
717
  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."
718
 
719
+ #: counter-options.php:876
720
  #@ cpd
721
  msgid "Clients and referrers"
722
  msgstr "Browser und Herkunft"
723
 
724
+ #: counter.php:239
725
+ #: counter.php:1415
726
  #@ cpd
727
  msgid "Reads last week"
728
  msgstr "Seitenaufrufe letzte Woche"
729
 
730
+ #: counter-core.php:794
731
+ #: counter.php:1416
732
  #@ cpd
733
  msgid "Reads per month"
734
  msgstr "Seitenaufrufe pro Monat"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Herkunft - Einträge"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Herkunft - Tage"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Besucher online"
761
 
762
+ #: counter-options.php:1018
763
  #@ cpd
764
  msgid "Stylesheet"
765
  msgstr "Stylesheet"
766
 
767
+ #: counter-options.php:1021
768
  #@ cpd
769
  msgid "NO Stylesheet in Frontend"
770
  msgstr "KEIN Stylesheet im Frontend"
771
 
772
+ #: counter-options.php:1022
773
  #@ cpd
774
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
775
  msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
776
 
777
+ #: counter-options.php:918
778
  #@ cpd
779
  msgid "Who can see it"
780
  msgstr "Wer darf es sehen"
781
 
782
+ #: counter-options.php:927
783
  #@ cpd
784
  msgid "custom"
785
  msgstr "benutzerdefiniert"
786
 
787
+ #: counter-options.php:929
788
  #@ cpd
789
  msgid "and higher are allowed to see the statistics page."
790
  msgstr "und höher haben Zugriff auf die Statistikseite."
791
 
792
+ #: counter-options.php:931
793
  #, php-format
794
  #@ cpd
795
  msgid "Set the %s capability %s a user need:"
801
  msgid "\"Count per Day\" updated to version %s."
802
  msgstr "&quot;Count per Day&quot; aktualisiert auf Version %s."
803
 
804
+ #: counter-core.php:1076
805
  #@ cpd
806
  msgid "Backup failed! Cannot open file"
807
  msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
808
 
809
+ #: counter-core.php:1195
810
+ #: counter-core.php:1203
811
  #, php-format
812
  #@ cpd
813
  msgid "Backup of counter table saved in %s."
814
  msgstr "Die Zähler-Tabelle wurde in %s gesichert."
815
 
816
+ #: counter-core.php:1197
817
+ #: counter-core.php:1205
818
  #, php-format
819
  #@ cpd
820
  msgid "Backup of counter options and collection saved in %s."
821
  msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
822
 
823
+ #: counter-options.php:177
824
  #@ cpd
825
  msgid "Collection in progress..."
826
  msgstr "Zusammenfassung erfolgt ..."
827
 
828
+ #: counter-options.php:271
829
  #@ cpd
830
  msgid "Get Visitors per Post..."
831
  msgstr "Besucher pro Artikel bearbeiten..."
832
 
833
+ #: counter-options.php:316
834
  #, php-format
835
  #@ cpd
836
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
837
  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)."
838
 
839
+ #: counter-options.php:325
840
  #@ cpd
841
  msgid "Installation of \"Count per Day\" checked"
842
  msgstr "Installation von &quot;Count per Day&quot; überpr&uuml;ft"
843
 
844
+ #: counter-options.php:411
845
  #@ default
846
  msgid "Tools"
847
  msgstr ""
848
 
849
+ #: counter-options.php:881
850
  #@ cpd
851
  msgid "Save URL only, no query string."
852
  msgstr "Speichere nur die URL, keinen Query-String."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Backup"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Einträge pro Durchgang"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Wie viele Eintr&auml;ge sollen pro Durchgang bearbeitet werden? Standard: 10000"
869
 
870
+ #: counter-options.php:1040
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 "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."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Erstelle eine Sicherungskopie der Z&auml;hler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Datenbank sichern"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Alte Daten zusammenfassen"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Die aktuelle Gr&ouml;&szlig;e der Z&auml;hler-Tabelle %s ist %s."
898
 
899
+ #: counter-options.php:685
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 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."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Momentan enth&auml;lt die Zusammenfassung Daten bis %s."
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugef&uuml;gt."
914
 
915
+ #: counter-options.php:700
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  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."
919
 
920
+ #: counter-options.php:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Alle zusammengefassten Daten bis %s werden gel&ouml;scht."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Behalte die Eintr&auml;ge der letzten %s vollen Monate plus des aktuellen Monats in der Z&auml;hler-Tabelle."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "ReAktivierung"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "ReAktiviere das Plugin"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Besucher"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "meistbesuchter Tag"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "per Drag &amp; Drop sortieren"
963
 
964
+ #: counter-core.php:1191
965
  #@ cpd
966
  msgid "Your can download the backup files here and now."
967
  msgstr "Du kannst die Sicherungen nur hier und jetzt herunterladen."
968
 
969
+ #: counter-options.php:570
970
  #@ cpd
971
  msgid "Download only"
972
  msgstr "nur zum Download anbieten, nicht speichern"
973
 
974
+ #: counter-options.php:620
975
  #@ default
976
  msgid "Delete"
977
  msgstr ""
978
 
979
+ #: counter-options.php:621
980
  #, php-format
981
  #@ cpd
982
  msgid "Delete the backup file %s ?"
983
  msgstr "Sicherung %s l&ouml;schen?"
984
 
985
+ #: counter-core.php:798
986
+ #: counter-options.php:967
987
+ #: counter-options.php:971
988
  #@ cpd
989
  msgid "Search strings"
990
  msgstr "Suchw&ouml;rter"
991
 
992
+ #: counter-core.php:1261
993
  #@ cpd
994
  msgid "Error while reading backup file!"
995
  msgstr "Fehler beim Lesen der Sicherungsdatei!"
996
 
997
+ #: counter-core.php:1265
998
  #, php-format
999
  #@ cpd
1000
  msgid "The backup was added to counter table %s."
1001
  msgstr "Die Sicherung wurde zur Tabelle %s hinzugef&uuml;gt."
1002
 
1003
+ #: counter-core.php:1267
1004
  #, php-format
1005
  #@ cpd
1006
  msgid "The counter table %s was restored from backup."
1007
  msgstr "Die Z&auml;hlertabelle %s wurde wiederhergestellt."
1008
 
1009
+ #: counter-core.php:1284
1010
  #@ cpd
1011
  msgid "Options restored from backup."
1012
  msgstr "Einstellungen wiederhergestellt."
1013
 
1014
+ #: counter-options.php:602
1015
  #@ cpd
1016
  msgid "Settings and collections"
1017
  msgstr "Einstellungen und Zusammenfassung"
1018
 
1019
+ #: counter-options.php:607
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Counter table %s"
1023
  msgstr "Z&auml;hlertabelle %s"
1024
 
1025
+ #: counter-options.php:614
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Add data from the backup file %s to existing counter table?"
1029
  msgstr "Die Daten der Sicherung zur vorhandenen Z&auml;hlertabelle %s hinzuf&uuml;gen?"
1030
 
1031
+ #: counter-options.php:618
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Restore data from the backup file %s ?"
1035
  msgstr "Daten aus der Sicherung %s wiederherstellen?"
1036
 
1037
+ #: counter-options.php:618
1038
  #@ default
1039
  msgid "Restore"
1040
  msgstr ""
1041
 
1042
+ #: counter-options.php:627
1043
  #@ cpd
1044
  msgid "add backup to current counter table"
1045
  msgstr "Sicherung zu aktuellen Daten hinzuf&uuml;gen"
1046
 
1047
+ #: counter-options.php:628
1048
  #@ cpd
1049
  msgid "replace current counter table with with backup"
1050
  msgstr "aktuelle Daten durch Sicherung ersetzen"
1051
 
1052
+ #: counter-options.php:629
1053
  #@ cpd
1054
  msgid "delete backup file"
1055
  msgstr "Sicherung l&ouml;schen"
1056
 
1057
+ #: counter.php:1198
1058
  #, php-format
1059
  #@ cpd
1060
  msgid "The %s most searched strings:"
1061
  msgstr "Die %s am meisten gesuchten W&ouml;rter:"
1062
 
1063
+ #: counter.php:1207
1064
  #, php-format
1065
  #@ cpd
1066
  msgid "The search strings of the last %s days:"
1067
  msgstr "Die Suchw&ouml;rter der letzten %s Tage:"
1068
 
1069
+ #: counter-options.php:340
1070
  #@ cpd
1071
  msgid "Old search strings deleted"
1072
  msgstr "Alte Suchw&ouml;rter wurden gel&ouml;scht."
1073
 
1074
+ #: counter-options.php:654
1075
  #, php-format
1076
  #@ cpd
1077
  msgid "Delete search strings older than %s days."
1078
  msgstr "L&ouml;sche Suchw&ouml;rter die älter als %s Tage sind!"
1079
 
1080
+ #: counter-options.php:658
1081
  #@ cpd
1082
  msgid "Delete search strings"
1083
  msgstr "L&ouml;sche Suchw&ouml;rter"
1084
 
1085
+ #: counter-options.php:614
1086
  #@ cpd
1087
  msgid "Add"
1088
  msgstr "Hinzuf&uuml;gen"
1089
 
1090
+ #: counter-options.php:355
1091
  #@ cpd
1092
  msgid "Clients and referers deleted"
1093
  msgstr "Browser und Herkunftsdaten gelöscht"
1094
 
1095
+ #: counter-options.php:665
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1099
  msgstr "Lösche Browser und Herkunftsdaten bei Einträgen die älter als %s Tage sind um die Datenbank zu verkleinern."
1100
 
1101
+ #: counter-options.php:669
1102
  #@ cpd
1103
  msgid "Delete clients and referers"
1104
  msgstr "Browser und Herkunftsdaten löschen"
1105
 
1106
+ #: counter.php:1150
1107
  #@ default
1108
  msgid "Front page"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1048
1117
  #@ cpd
1118
  msgid "Download the export file:"
1119
  msgstr "Export-Datei herunterladen:"
1120
 
1121
+ #: counter-core.php:1103
1122
  #, php-format
1123
  #@ cpd
1124
  msgid "Backup of %s entries in progress. Every point comprises %s entries."
1125
  msgstr "Backup von %s Datensätzen. Jeder Punkt entspricht %s Einträgen."
1126
 
1127
+ #: counter-options.php:292
1128
  #@ cpd
1129
  msgid "Deleting old data..."
1130
  msgstr "Alte Daten werden gelöscht..."
1131
 
1132
+ #: counter-options.php:496
1133
  #@ cpd
1134
  msgid "Most Industrious Visitors"
1135
  msgstr "Die fleißigsten Besucher"
1136
 
1137
+ #: counter-options.php:500
1138
  #, php-format
1139
  #@ cpd
1140
  msgid "Show the %s most industrious visitors of the last %s days"
1141
  msgstr "Zeige die %s fleißigsten Besucher der letzten %s Tage"
1142
 
1143
+ #: counter-options.php:547
1144
  #@ cpd
1145
  msgid "Export"
1146
  msgstr "Exportieren"
1147
 
1148
+ #: counter-options.php:551
1149
  #, php-format
1150
  #@ cpd
1151
  msgid "Export the last %s days as CSV-File"
1152
  msgstr "Exportiere die Einträge der letzten %s Tage als CSV-Datei"
1153
 
1154
+ #: counter-options.php:555
1155
  #@ cpd
1156
  msgid "Export entries"
1157
  msgstr "Datensätze exportieren"
1158
 
1159
+ #: counter-options.php:888
1160
  #@ cpd
1161
  msgid "Post types"
1162
  msgstr "Beitragstypen"
1163
 
1164
+ #: counter-options.php:891
1165
  #@ cpd
1166
  msgid "Only count these post types. Leave empty to count them all."
1167
  msgstr "Nur diese Beitragstypen zählen. Leer lassen um alle zu zählen."
1168
 
1169
+ #: counter-options.php:892
1170
  #, php-format
1171
  #@ cpd
1172
  msgid "Current post types: %s"
1173
  msgstr "Aktuelle Beitragstypen: %s"
1174
 
1175
+ #: counter.php:248
1176
  #@ cpd
1177
  msgid "Since"
1178
  msgstr "Seit"
1179
 
1180
+ #: counter.php:1509
 
 
 
 
 
1181
  #@ cpd
1182
  msgid "List of Popular Posts"
1183
  msgstr "Liste der populärsten Beiträge"
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr "Populäre Beiträge"
1190
 
1191
+ #: counter.php:1547
1192
  #@ cpd
1193
  msgid "Title:"
1194
  msgstr "Titel:"
1195
 
1196
+ #: counter.php:1551
1197
  #@ cpd
1198
  msgid "Days:"
1199
  msgstr "Tage:"
1200
 
1201
+ #: counter.php:1555
1202
  #@ cpd
1203
  msgid "Limit:"
1204
  msgstr "Anzahl:"
1205
 
1206
+ #: counter.php:1559
1207
  #@ cpd
1208
  msgid "Show header:"
1209
  msgstr "Zeige Einleitung:"
1210
 
1211
+ #: counter.php:1563
1212
  #@ cpd
1213
  msgid "Show counters:"
1214
  msgstr "Zeige Anzahl:"
1215
 
1216
+ #: counter-core.php:1000
1217
  #@ cpd
1218
  msgid "Export failed! Cannot open file."
1219
  msgstr "Export fehlgeschlagen! Auf die Datei kann nicht zugegriffen werden."
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr "Länder ausschließen"
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr "Besucher aus diesen Ländern nicht zählen. Benutze den Länder-Code (de, us, cn, ...). Leer lassen um alle zu zählen."
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr "Die Länge der Daten begrenzen um die die Größe der Datenbank zu reduzieren. (max. 500 Zeichen)"
1235
+
locale/cpd-es_ES.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,346 +20,347 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
325
 
326
- #: counter-options.php:63
327
  #, php-format
328
  #@ cpd
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
331
 
332
- #: counter-options.php:66
333
  #@ cpd
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,51 +380,51 @@ msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos d
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?"
391
 
392
- #: counter-options.php:106
393
  #, php-format
394
  #@ cpd
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,112 +435,112 @@ 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,66 +572,66 @@ msgstr "borra"
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,105 +656,105 @@ msgstr "ID entrada"
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 ""
@@ -764,456 +765,471 @@ msgstr ""
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:12+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Las opciones han sido guardadas"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALA Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "La tabla %s ha sido borrada"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Las opciones han sido canceladas"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstala"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Hacer click aquí"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Tiempo online"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usuarios conectados"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar también"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto contador"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a ignorar"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Actualiza las opciones"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Borrar la base de datos"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATENCIÓN"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sí"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estadísticas"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes conectados"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Hoy"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Ayer"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "La semana anterior"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "El contador comenzó el"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visitantes por día"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitantes por mes"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitantes por entrada"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "El contador ha sido reinicializado."
226
 
227
+ #: counter-options.php:938
228
+ #: counter-options.php:942
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:941
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Últimos conteos - Entradas"
237
 
238
+ #: counter-options.php:945
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Últimos conteos - Días"
242
 
243
+ #: counter-options.php:946
244
+ #: counter-options.php:950
245
+ #: counter-options.php:972
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:986
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Mostrar en las listas"
254
 
255
+ #: counter-options.php:987
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:773
261
+ #: counter-options.php:783
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Reinicia el contador"
265
 
266
+ #: counter-options.php:776
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:776
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:653
278
+ #: counter-options.php:412
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Configuración"
282
 
283
+ #: counter-core.php:1541
284
+ #: counter-options.php:879
285
+ #: counter.php:240
286
+ #: counter.php:1024
287
+ #: map/map.php:60
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Visitas"
291
 
292
+ #: counter-core.php:796
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Últimos conteos"
296
 
297
+ #: counter-options.php:949
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Gráfica - Días"
301
 
302
+ #: counter-options.php:953
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Gráfica - Altura"
306
 
307
+ #: counter-options.php:954
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "Altura de la categoría mayor"
311
 
312
+ #: counter.php:1411
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Este artículo"
316
 
317
+ #: counter-options.php:902
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr "Escritorio"
321
 
322
+ #: counter.php:347
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Lecturas por día"
326
 
327
+ #: counter-options.php:66
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
332
 
333
+ #: counter-options.php:69
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "actualiza el próximo"
337
 
338
+ #: counter-options.php:723
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - Países"
342
 
343
+ #: counter-options.php:732
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Actualiza los datos antiguos"
347
 
348
+ #: counter-options.php:744
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Actualiza la base de datos de GeoIP"
352
 
353
+ #: counter-options.php:739
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Decarga la nueva versión del archivo GeoIP.dat."
357
 
358
+ #: counter-options.php:749
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Más información sobre GeoIP"
362
 
363
+ #: counter-core.php:807
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Lecturas por país"
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
382
 
383
+ #: counter-options.php:958
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "Países"
387
 
388
+ #: counter-options.php:959
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "¿Cuántos países desea ver en el escritorio?"
392
 
393
+ #: counter-options.php:109
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Robots borrados. %s conteos borrados."
398
 
399
+ #: counter-options.php:432
400
  #: massbots.php:46
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Robots"
404
 
405
+ #: counter-options.php:436
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
410
 
411
+ #: counter-options.php:437
412
+ #: counter-options.php:501
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "muestra"
418
 
419
+ #: counter-options.php:463
420
+ #: counter-options.php:479
421
+ #: counter-options.php:526
422
  #, php-format
423
  #@ cpd
424
  msgid "Delete these %s counts"
425
  msgstr "Borra estos %s conteos"
426
 
427
+ #: counter.php:963
428
  #@ cpd
429
  msgid "Other"
430
  msgstr "Otro"
435
  msgid "Front page displays"
436
  msgstr "Página inicial mostradas"
437
 
438
+ #: counter-core.php:802
439
+ #: counter-options.php:963
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Navegador"
443
 
444
+ #: counter-options.php:445
445
+ #: counter-options.php:509
446
  #@ cpd
447
  msgid "IP"
448
  msgstr "IP"
449
 
450
+ #: counter-options.php:446
451
+ #: counter-options.php:510
452
  #: notes.php:88
453
  #@ cpd
454
  #@ default
455
  msgid "Date"
456
  msgstr "Fecha"
457
 
458
+ #: counter-options.php:447
459
+ #: counter-options.php:511
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Cliente"
463
 
464
+ #: counter-options.php:448
465
+ #: counter-options.php:512
466
  #@ cpd
467
  msgid "Views"
468
  msgstr "Vistas"
469
 
470
+ #: counter-options.php:994
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Valores de inicio"
474
 
475
+ #: counter-options.php:998
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
479
 
480
+ #: counter-options.php:1002
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Fecha de inicio"
484
 
485
+ #: counter-options.php:1003
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Su antiguo contador comienza el"
489
 
490
+ #: counter-options.php:1006
491
+ #: counter-options.php:1010
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Iniciar el conteo"
495
 
496
+ #: counter-options.php:1007
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Añadir este valor al \"Total de visitas\"."
500
 
501
+ #: counter-options.php:814
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Soporte"
505
 
506
+ #: counter-core.php:757
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
510
 
511
+ #: counter-core.php:758
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
516
 
517
+ #: counter.php:893
518
  #@ default
519
  msgid "Show"
520
  msgstr "Muestra"
521
 
522
+ #: counter.php:1135
523
  #@ default
524
  msgid "Edit Post"
525
  msgstr "Modifica entrada"
526
 
527
+ #: counter-core.php:756
528
  #, php-format
529
  #@ cpd
530
  msgid "Time for Count per Day: <code>%s</code>."
531
  msgstr "Huso horario para Count per Day: <code>%s</code>."
532
 
533
+ #: counter-options.php:842
534
  #@ cpd
535
  msgid "until User Level"
536
  msgstr "hasta el Nivel de Usuario"
537
 
538
+ #: counter-core.php:799
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plugin"
542
 
543
+ #: counter.php:895
544
  #: notes.php:55
545
  #: notes.php:89
546
  #@ cpd
572
  msgid "edit"
573
  msgstr "modifica"
574
 
575
+ #: counter-options.php:1011
576
  #@ cpd
577
  msgid "Add this value to \"Total reads\"."
578
  msgstr "Añade este valor a \"Total de lecturas\"."
579
 
580
+ #: counter.php:236
581
+ #: counter.php:1412
582
  #@ cpd
583
  msgid "Total reads"
584
  msgstr "Total de lecturas"
585
 
586
+ #: counter.php:237
587
+ #: counter.php:1413
588
  #@ cpd
589
  msgid "Reads today"
590
  msgstr "Lecturas hoy"
591
 
592
+ #: counter.php:238
593
+ #: counter.php:1414
594
  #@ cpd
595
  msgid "Reads yesterday"
596
  msgstr "Lecturas ayer"
597
 
598
+ #: counter.php:438
599
+ #: counter.php:1254
600
  #@ cpd
601
  msgid "Map"
602
  msgstr "Mapa"
603
 
604
+ #: counter-options.php:868
605
  #@ cpd
606
  msgid "Anonymous IP"
607
  msgstr "IP anónimo"
608
 
609
+ #: counter-options.php:872
610
  #@ cpd
611
  msgid "Cache"
612
  msgstr "Cache"
613
 
614
+ #: counter-options.php:873
615
  #@ cpd
616
  msgid "I use a cache plugin. Count these visits with ajax."
617
  msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
618
 
619
+ #: counter-options.php:964
620
  #@ cpd
621
  msgid "Substring of the user agent, separated by comma"
622
  msgstr "Subcadena del user agent, separados por comas"
623
 
624
+ #: counter-options.php:1048
625
  #@ cpd
626
  msgid "Debug mode"
627
  msgstr "Modo debug"
628
 
629
+ #: counter-options.php:1050
630
  #@ cpd
631
  msgid "Show debug informations at the bottom of all pages."
632
  msgstr "Muestra información de debug al final de todas las páginas."
633
 
634
+ #: counter-core.php:808
635
  #@ cpd
636
  msgid "Visitors per Country"
637
  msgstr "Visitas por país"
656
  msgid "no data found"
657
  msgstr "no se han encontrado datos"
658
 
659
+ #: counter-options.php:726
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 "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!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr ""
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr ""
673
 
674
+ #: counter-options.php:879
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 ""
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr ""
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr ""
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr ""
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr ""
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr ""
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr ""
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr ""
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr ""
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr ""
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr ""
730
 
731
+ #: counter.php:1436
732
  #@ default
733
  msgid "Title"
734
  msgstr ""
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr ""
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr ""
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr ""
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr ""
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr ""
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr ""
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr ""
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr ""
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr ""
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr ""
796
 
797
+ #: counter-options.php:316
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:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr ""
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr ""
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr ""
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr ""
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr ""
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr ""
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr ""
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr ""
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr ""
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr ""
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr ""
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr ""
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr ""
869
 
870
+ #: counter-options.php:1040
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:567
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:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr ""
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr ""
898
 
899
+ #: counter-options.php:685
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:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr ""
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr ""
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr ""
925
 
926
+ #: counter-options.php:706
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:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr ""
936
 
937
+ #: counter-options.php:760
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:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr ""
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr ""
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr ""
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr ""
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-fa_IR.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,510 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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 "این نوشته"
320
 
321
- #: counter-options.php:63
322
  #, php-format
323
  #@ cpd
324
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
325
  msgstr "کشورها بروز شد. <b>%s</b> ورودی ها در %s بدون ترک کشور!"
326
 
327
- #: counter-options.php:66
328
  #@ cpd
329
  msgid "update next"
330
  msgstr "بروزرسانی بعدی"
331
 
332
- #: counter-options.php:106
333
  #, php-format
334
  #@ cpd
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,29 +534,29 @@ 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,32 +601,32 @@ 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,12 +646,12 @@ 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,100 +661,100 @@ msgstr "شما می توانید داده ی کشورها را برای تمام
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 "عنوان"
@@ -764,456 +765,471 @@ msgstr "عنوان"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:18+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "تنظیمات بروز شد"
27
 
28
+ #: counter-options.php:121
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "بانک اطلاعات پاک شد. %s سطر پاک شد."
33
 
34
+ #: counter-options.php:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "حذف Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "جدول %s حذف شد"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "تنظیمات حذف شد"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "حذف نصب"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "اینجا کلیک کنید"
63
 
64
+ #: counter-options.php:386
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "به اتمام نصب و غیرفعالسازی \"Count per Day\"."
68
 
69
+ #: counter-options.php:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "زمان آنلاین"
73
 
74
+ #: counter-options.php:836
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "ثانیه برای شمارنده آنلاین. برای \"بازدیدکنندگان آنلاین\" در صفحه ی پیشخوان مورد استفاده قرار می گیرد."
78
 
79
+ #: counter-options.php:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr ""
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr ""
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "شمارش خودکار"
93
 
94
+ #: counter-options.php:854
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "شمارش خودکار تک نوشته ها و صفحات، تغییری بر روی پوسته مورد نیاز نیست."
98
 
99
+ #: counter-options.php:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "نادیده گرفتن ربوتها"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "بروزرسانی تنظیمات"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "پاک کردن بانک اطلاعات"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "هشدار"
134
 
135
+ #: counter-options.php:800
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "این جداول (با تمام اطلاعات شمارنده) حذف خواهد شد."
139
 
140
+ #: counter-options.php:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "بله"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "آمار"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "تمام بازدیدکنندگان"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "بازدیدکنندگان حاضر"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "بازدیدکنندگان امروز"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "بازدیدکنندگان دیروز"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "بازدیدکنندگان هفته"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "آغاز شمارش در"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "بازدیدکننده در روز"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "بازدیدکننده در ماه"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "بازدیدکننده نوشته"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "شمارش تنظیم شد."
226
 
227
+ #: counter-options.php:902
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "پیشخوان"
231
 
232
+ #: counter-options.php:938
233
+ #: counter-options.php:942
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "میخواهید چه تعداد از نوشته ها را در پیشخوان خود مشاهده کنید؟"
237
 
238
+ #: counter-options.php:941
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "آخرین شمارش - نوشته ها"
242
 
243
+ #: counter-options.php:945
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "آخرین شمارش - روزها"
247
 
248
+ #: counter-options.php:946
249
+ #: counter-options.php:950
250
+ #: counter-options.php:972
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "میخواهید اطلاعات چند روز قبل را مشاهده کنید؟"
254
 
255
+ #: counter-options.php:949
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "نمودار - روزها"
259
 
260
+ #: counter-options.php:953
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "نمودار - ارتفاع"
264
 
265
+ #: counter-options.php:954
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "ارتفاع از بزرگترین نوار"
269
 
270
+ #: counter-options.php:986
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "نمایش در لیستها"
274
 
275
+ #: counter-options.php:987
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "نمایش شمارنده ی هر نوشته در در یک ستون جدید در قسمت نوشته ها"
279
 
280
+ #: counter-options.php:773
281
+ #: counter-options.php:783
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "تنظیم مجدد شمارنده"
285
 
286
+ #: counter-options.php:776
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:776
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:653
298
+ #: counter-options.php:412
299
  #@ default
300
  msgid "Settings"
301
  msgstr "تنظیمات"
302
 
303
+ #: counter.php:347
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "خوانده شده در روز"
307
 
308
+ #: counter-core.php:1541
309
+ #: counter-options.php:879
310
+ #: counter.php:240
311
+ #: counter.php:1024
312
+ #: map/map.php:60
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "خوانده شده در"
316
 
317
+ #: counter.php:1411
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "این نوشته"
321
 
322
+ #: counter-options.php:66
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "کشورها بروز شد. <b>%s</b> ورودی ها در %s بدون ترک کشور!"
327
 
328
+ #: counter-options.php:69
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "بروزرسانی بعدی"
332
 
333
+ #: counter-options.php:109
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "انبوه رباتها پاک شده اند. %s شماره حذف شده است."
338
 
339
+ #: counter-options.php:842
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr ""
343
 
344
+ #: counter-options.php:868
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "آی پی ناشناس"
348
 
349
+ #: counter-options.php:958
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "کشورها"
353
 
354
+ #: counter-options.php:959
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "میخواهید چه تعداد از کشورها را در صفحه ی پیشخوان خود مشاهده کنید؟"
358
 
359
+ #: counter-options.php:994
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "شروع مقادیر"
363
 
364
+ #: counter-options.php:998
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "شما در اینجا می توانید تاریخ شروع شمارش و مقادیر دیگر را تغییر دهید."
368
 
369
+ #: counter-options.php:1002
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "شروع روز"
373
 
374
+ #: counter-options.php:1003
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "شمارشگر قدیمی شما شروع می شود در؟"
378
 
379
+ #: counter-options.php:1006
380
+ #: counter-options.php:1010
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "شروع شمارش"
384
 
385
+ #: counter-options.php:1007
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr "اضافه کردن این مقدار به \"مجموع بازدیدکنندگان\""
389
 
390
+ #: counter-options.php:723
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - کشورها"
394
 
395
+ #: counter-options.php:732
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "بروزرسانی اطلاعات شمارش قدیمی"
399
 
400
+ #: counter-options.php:744
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "بروزرسانی بانک اطلاعات GeoIP"
404
 
405
+ #: counter-options.php:739
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "دانلود نسخه جدید GeoIP. فایل DAT"
409
 
410
+ #: counter-options.php:749
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr "اطلاعات دیگر در مورد GeoIP"
414
 
415
+ #: counter-options.php:432
416
  #: massbots.php:46
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "انبوه روبوتها"
420
 
421
+ #: counter-options.php:436
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "نمایش تمام IPها با بیش از %s بازدید از صفحه در روز"
426
 
427
+ #: counter-options.php:437
428
+ #: counter-options.php:501
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "نمایش"
434
 
435
+ #: counter-options.php:445
436
+ #: counter-options.php:509
437
  #@ cpd
438
  msgid "IP"
439
  msgstr "آی پی"
440
 
441
+ #: counter-options.php:446
442
+ #: counter-options.php:510
443
  #: notes.php:88
444
  #@ cpd
445
  #@ default
446
  msgid "Date"
447
  msgstr "روز"
448
 
449
+ #: counter-options.php:447
450
+ #: counter-options.php:511
451
  #@ cpd
452
  msgid "Client"
453
  msgstr "مشتری"
454
 
455
+ #: counter-options.php:448
456
+ #: counter-options.php:512
457
  #@ cpd
458
  msgid "Views"
459
  msgstr "بازدیدها"
460
 
461
+ #: counter-options.php:463
462
+ #: counter-options.php:479
463
+ #: counter-options.php:526
464
  #, php-format
465
  #@ cpd
466
  msgid "Delete these %s counts"
467
  msgstr "حذف %s شمارش"
468
 
469
+ #: counter-options.php:814
470
  #@ cpd
471
  msgid "Support"
472
  msgstr "پشتیبانی"
473
 
474
+ #: counter-core.php:756
475
  #, php-format
476
  #@ cpd
477
  msgid "Time for Count per Day: <code>%s</code>."
478
  msgstr "زمان برای Count per Day: <code>%s</code>."
479
 
480
+ #: counter-core.php:757
481
  #@ cpd
482
  msgid "Bug? Problem? Question? Hint? Praise?"
483
  msgstr "باگ؟ مشکل؟ سوال؟ راهنمایی؟ تحسین؟"
484
 
485
+ #: counter-core.php:758
486
  #, php-format
487
  #@ cpd
488
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
489
  msgstr "نظر خود را در <a href=\"%s\">صفحه ی افزونه</a> بنویسید."
490
 
491
+ #: counter.php:236
492
+ #: counter.php:1412
493
  #@ cpd
494
  msgid "Total reads"
495
  msgstr "مجموع خوانده شده ها"
496
 
497
+ #: counter.php:237
498
+ #: counter.php:1413
499
  #@ cpd
500
  msgid "Reads today"
501
  msgstr "خوانده شده های امروز"
502
 
503
+ #: counter.php:238
504
+ #: counter.php:1414
505
  #@ cpd
506
  msgid "Reads yesterday"
507
  msgstr "خوانده شده ی دیروز"
508
 
509
+ #: counter.php:895
510
  #: notes.php:55
511
  #: notes.php:89
512
  #@ cpd
513
  msgid "Notes"
514
  msgstr "یادداشت ها"
515
 
516
+ #: counter.php:893
517
  #@ default
518
  msgid "Show"
519
  msgstr "نمایش"
520
 
521
+ #: counter.php:963
522
  #@ cpd
523
  msgid "Other"
524
  msgstr "دیگر"
525
 
526
+ #: counter.php:1135
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr "ویرایش نوشته"
534
  msgid "Front page displays"
535
  msgstr "نمایش های اولین صفحه"
536
 
537
+ #: counter-core.php:802
538
+ #: counter-options.php:963
539
  #@ cpd
540
  msgid "Browsers"
541
  msgstr "مرورگرها"
542
 
543
+ #: counter-core.php:796
544
  #@ cpd
545
  msgid "Latest Counts"
546
  msgstr "جدیدترین شمارش"
547
 
548
+ #: counter-core.php:799
549
  #@ default
550
  msgid "Plugin"
551
  msgstr "افزونه"
552
 
553
+ #: counter-core.php:807
554
  #@ cpd
555
  msgid "Reads per Country"
556
  msgstr "خوانندگان هر کشور"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "نقشه"
601
  msgid "edit"
602
  msgstr "ویرایش"
603
 
604
+ #: counter-options.php:872
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "نهانگاه(کش)"
608
 
609
+ #: counter-options.php:873
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "من از نهانگاه افزونه استفاده می کنم. شمارش بازدیدها با استفاده از آجاکس."
613
 
614
+ #: counter-options.php:964
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "نام مرورگرها را با کاما (,) از هم جدا کنید"
618
 
619
+ #: counter-options.php:1048
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "حالت رفع اشکال"
623
 
624
+ #: counter-options.php:1050
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "نمایش اطلاعات اشکال زدایی در پایین تمام صفحات."
628
 
629
+ #: counter-core.php:808
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "بازدیدکنندگان هر کشور"
646
  msgid "PostID"
647
  msgstr "آی دی نوشته"
648
 
649
+ #: counter-options.php:1011
650
  #@ cpd
651
  msgid "Add this value to \"Total reads\"."
652
  msgstr "اضافه کردن این مقدار به \"مجموع خوانده شده ها\""
653
 
654
+ #: counter-options.php:726
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 "شما می توانید داده ی کشورها را برای تمام ورودی ها در پایگاه داده از طریق چک کردن IP در مقابل پایگاه داده GeoIP دریافت کنید. این کار ممکن است مدتی طول بکشد!"
661
  msgid "no data found"
662
  msgstr "اطلاعاتی یافت نشد"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "شمارشگر"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "مشتریان و مراجعه کنندگان"
673
 
674
+ #: counter-options.php:879
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 "ذخیره و مشاهده ی مشتریان و مراجعه کنندگان.<br />به فضای زیادی در پایگاه داده نیاز دارد، اما اطلاعات کاملی از بازدیدکنندگان به شما می دهد."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "لینکهای محلی"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "نمایش ارجاعات محلی"
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "نوشته ها"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "صفحات"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "خوانده شده ی هفته"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "دسته ها"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "برچسب"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "مجوز"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "خوانده شده در ماه"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "ارجاع دهنده"
730
 
731
+ #: counter-options.php:967
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "ارجاع دهنده - مطالب"
735
 
736
+ #: counter-options.php:968
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "میخواهید چه تعداد از ارجاعات را در صفحه ی پیشخوان خود مشاهده کنید؟"
740
 
741
+ #: counter-options.php:971
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "ارجاع دهنده ها - روزها"
745
 
746
+ #: counter.php:994
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s مراجعه کننده در %s روز پیش:"
751
 
752
+ #: counter-core.php:792
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "بازدیدکنندگان آنلاین"
756
 
757
+ #: counter.php:1436
758
  #@ default
759
  msgid "Title"
760
  msgstr "عنوان"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" بروزرسانی شد به نسخه ی %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "پشتیبان گیری با مشکل مواجه شد! نمیتوانم فایل را باز کرد"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "پشتیبان از جدول شمارنده ذخیره شد در %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "پشتیبان گیری از تنظیمات شمارشگر و مجموعه ذخیره شد در %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "در حال انجام جمع آوری"
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "بازدید کننده در هر پست ..."
796
 
797
+ #: counter-options.php:316
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 "ورودی های شمارشگر تا %s جمع آوری شد و جدول شمارشگر %s بهینه سازی شد. (حجم قبل = %s &gt; حجم بعد = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "مراحل نصب \"Count per Day\" چک شد"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "ابزار"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "تنها ذخیره ی URL، بدون متغیر رشته درخواست."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "چه کسی می تواند پیشخوان را ببیند"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "سفارشی"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "بالاتر از کدام گروه قادر به مشاهده ی صفحه ی آمار هستند."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "تنظیم %s قابلیت %s که یک کاربر نیازدارد"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "شیوه نامه"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "بدون شیوه نامه"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "بارگذاری نشدن شیوه نامه ی \"counter.css\" "
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "پشتیبان"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr ""
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "چه تعداد ورودی باید در هر گذر ذخیره شود؟ پیشفرض: 1000"
869
 
870
+ #: counter-options.php:1040
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 "اگر حافظه ی PHP شما کمتر از 50 MB است و به صفحه ی سفید و یا خطا مواجه می شوید، از مقدار کوچکتر استفاده کنید."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "ایجاد نسخه ی پشتیبان از جدول شمارشگر %s در دایرکتوری wp-content (اگر قابل نوشتن باشد)"
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "پشتیبان از بانک اطلاعات"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "جمع آوری داده های قدیمی"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "اندازه ی فعلی جدول شمارنده ی شما %s است %s."
898
 
899
+ #: counter-options.php:685
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 "شما می توانید اطلاعات قدیمی و پاکسازی جدول را جمع آوری کنید.<br/>خوانده ها و بازدیدکنندگان به ازای ماه، کشور و نوشته ذخیره خواهند شد.<br/>مشتریان و مراجعه کنندگان حذف خواهند شد."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "در حال حاضر مجموعه ی شما شامل داده تا %s."
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "به صورت معمول داده های جدید به مجموعه اضافه خواهد شد."
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "همه ی داده های جمع آوری شده تا %s حذف خواهد شد."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "حفظ ورودی های کامل %s ماه پیش + ماه فعلی در جدول شمارنده"
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "فعالسازی مجدد"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "در اینجا شما می توانید توابع نصب دستی را اجرا کنید.<br />مانند فعال و غیرفعال کردن افزونه."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "فعالسازی مجدد افزونه"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "بازدیدکنندگان"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "بیشترین بازدید در روز"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "کشیدن و رها کردن برای مرتب سازی"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-fr_FR.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,346 +20,347 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
325
 
326
- #: counter-options.php:63
327
  #, php-format
328
  #@ cpd
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
331
 
332
- #: counter-options.php:66
333
  #@ cpd
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,51 +380,51 @@ msgstr "Désolé,une erreur est survenue. Merci de réessayer ou de vérifier qu
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?"
391
 
392
- #: counter-options.php:106
393
  #, php-format
394
  #@ cpd
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,112 +435,112 @@ 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,66 +572,66 @@ msgstr "supprimer"
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,105 +656,105 @@ msgstr "PostID"
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"
@@ -764,456 +765,471 @@ msgstr "Visiteurs en ligne"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:31+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Bjork - Habbzone.fr <bjork@habbzone.fr>\n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Paramètres mis à jour"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Désinstaller Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Table %s supprimée"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Paramètres supprimés"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Désinstaller"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Cliquez ici"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Temps en ligne"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Utilisateurs Connectés"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "compter aussi"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Compteur automatique"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Robots à ignorer"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Mettre à jour les options"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Nettoyer la base de données"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATTENTION"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Oui"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistiques"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Visiteurs Total"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visiteur actuellement en ligne"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visiteurs aujourd'hui"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visiteurs hier"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visiteurs la semaine dernière"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Compteur activé le "
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visiteurs par jour"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visiteurs par mois"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visiteurs par articles"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Compteur remis à zéro."
226
 
227
+ #: counter-options.php:938
228
+ #: counter-options.php:942
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:941
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Dernier Comptes - Articles"
237
 
238
+ #: counter-options.php:945
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Dernier Compte - Jours"
242
 
243
+ #: counter-options.php:946
244
+ #: counter-options.php:950
245
+ #: counter-options.php:972
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:986
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Montrer dans la liste"
254
 
255
+ #: counter-options.php:987
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:773
261
+ #: counter-options.php:783
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Remise à zéro du compteur"
265
 
266
+ #: counter-options.php:776
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:776
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:653
278
+ #: counter-options.php:412
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Options"
282
 
283
+ #: counter-core.php:1541
284
+ #: counter-options.php:879
285
+ #: counter.php:240
286
+ #: counter.php:1024
287
+ #: map/map.php:60
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Lectures"
291
 
292
+ #: counter-core.php:796
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Dernier Comptes"
296
 
297
+ #: counter-options.php:949
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Graphique - Jours"
301
 
302
+ #: counter-options.php:953
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Graphique - Hauteur"
306
 
307
+ #: counter-options.php:954
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "Hauteur de la plus grande barre"
311
 
312
+ #: counter.php:1411
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Cet article"
316
 
317
+ #: counter-options.php:902
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr "Tableau de bord"
321
 
322
+ #: counter.php:347
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Lectures par jour"
326
 
327
+ #: counter-options.php:66
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
332
 
333
+ #: counter-options.php:69
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "mettre à jour le prochain"
337
 
338
+ #: counter-options.php:723
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - Pays"
342
 
343
+ #: counter-options.php:732
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Mettre à jour les données du vieux compteur"
347
 
348
+ #: counter-options.php:744
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Mettre à jour les données de GeoIP"
352
 
353
+ #: counter-options.php:739
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
357
 
358
+ #: counter-options.php:749
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Plus d'infos sur GeoIP"
362
 
363
+ #: counter-core.php:807
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Lectures par Pays"
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
382
 
383
+ #: counter-options.php:958
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "Pays"
387
 
388
+ #: counter-options.php:959
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
392
 
393
+ #: counter-options.php:109
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Robots nettoyés en masse. %s comptes supprimés."
398
 
399
+ #: counter-options.php:432
400
  #: massbots.php:46
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Robots en masse"
404
 
405
+ #: counter-options.php:436
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
410
 
411
+ #: counter-options.php:437
412
+ #: counter-options.php:501
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "montrer"
418
 
419
+ #: counter-options.php:463
420
+ #: counter-options.php:479
421
+ #: counter-options.php:526
422
  #, php-format
423
  #@ cpd
424
  msgid "Delete these %s counts"
425
  msgstr "Supprimer ces %s comptes"
426
 
427
+ #: counter.php:963
428
  #@ cpd
429
  msgid "Other"
430
  msgstr "Autre"
435
  msgid "Front page displays"
436
  msgstr "Page d'accueil affiche"
437
 
438
+ #: counter-core.php:802
439
+ #: counter-options.php:963
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Navigateurs"
443
 
444
+ #: counter-options.php:445
445
+ #: counter-options.php:509
446
  #@ cpd
447
  msgid "IP"
448
  msgstr "IP"
449
 
450
+ #: counter-options.php:446
451
+ #: counter-options.php:510
452
  #: notes.php:88
453
  #@ cpd
454
  #@ default
455
  msgid "Date"
456
  msgstr "Date"
457
 
458
+ #: counter-options.php:447
459
+ #: counter-options.php:511
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Client"
463
 
464
+ #: counter-options.php:448
465
+ #: counter-options.php:512
466
  #@ cpd
467
  msgid "Views"
468
  msgstr "Vues"
469
 
470
+ #: counter-options.php:994
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Valeurs de départ"
474
 
475
+ #: counter-options.php:998
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
479
 
480
+ #: counter-options.php:1002
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Date de départ"
484
 
485
+ #: counter-options.php:1003
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Votre vieux compteur commence à?"
489
 
490
+ #: counter-options.php:1006
491
+ #: counter-options.php:1010
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Commencer le compte"
495
 
496
+ #: counter-options.php:1007
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Ajouter cette valeur à \"visiteurs totals\"."
500
 
501
+ #: counter-options.php:814
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Support"
505
 
506
+ #: counter-core.php:757
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Bug? Problème? Question? Allusion? Hommage?"
510
 
511
+ #: counter-core.php:758
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
516
 
517
+ #: counter.php:893
518
  #@ default
519
  msgid "Show"
520
  msgstr "Montrer"
521
 
522
+ #: counter.php:1135
523
  #@ default
524
  msgid "Edit Post"
525
  msgstr "Editer"
526
 
527
+ #: counter-core.php:756
528
  #, php-format
529
  #@ cpd
530
  msgid "Time for Count per Day: <code>%s</code>."
531
  msgstr "Temps pour Count Per Day: <code>%s</code>."
532
 
533
+ #: counter-options.php:842
534
  #@ cpd
535
  msgid "until User Level"
536
  msgstr "jusqu'au niveau de l'utilisateur"
537
 
538
+ #: counter-core.php:799
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plugin"
542
 
543
+ #: counter.php:895
544
  #: notes.php:55
545
  #: notes.php:89
546
  #@ cpd
572
  msgid "edit"
573
  msgstr "éditer"
574
 
575
+ #: counter-options.php:1011
576
  #@ cpd
577
  msgid "Add this value to \"Total reads\"."
578
  msgstr "Ajouter cette valeur à \"Lectures totales\"."
579
 
580
+ #: counter.php:236
581
+ #: counter.php:1412
582
  #@ cpd
583
  msgid "Total reads"
584
  msgstr "Lectures totales"
585
 
586
+ #: counter.php:237
587
+ #: counter.php:1413
588
  #@ cpd
589
  msgid "Reads today"
590
  msgstr "Lectures aujourd'hui"
591
 
592
+ #: counter.php:238
593
+ #: counter.php:1414
594
  #@ cpd
595
  msgid "Reads yesterday"
596
  msgstr "Lectures hier"
597
 
598
+ #: counter-options.php:868
599
  #@ cpd
600
  msgid "Anonymous IP"
601
  msgstr "Adresse IP Anonyme"
602
 
603
+ #: counter-options.php:872
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Cache"
607
 
608
+ #: counter-options.php:873
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
612
 
613
+ #: counter-options.php:964
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
617
 
618
+ #: counter-options.php:1048
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Mode Debug"
622
 
623
+ #: counter-options.php:1050
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Afficher les informations de débogage au bas de toutes les pages."
627
 
628
+ #: counter-core.php:808
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Visiteurs par Pays"
632
 
633
+ #: counter.php:438
634
+ #: counter.php:1254
635
  #@ cpd
636
  msgid "Map"
637
  msgstr "Carte"
656
  msgid "no data found"
657
  msgstr "aucune donnée trouvée"
658
 
659
+ #: counter-options.php:726
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 "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!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Compteur"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Clients et Référents"
673
 
674
+ #: counter-options.php:879
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 "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."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Liens Locals"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Montrer les référents locals également."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Articles"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Pages"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Lectures - Semaine Dernière"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Catégorie"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Tag"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "License"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Lectures par mois"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Référent"
730
 
731
+ #: counter.php:1436
732
  #@ default
733
  msgid "Title"
734
  msgstr "Titre"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Référents - Entrées"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Référents - Jours"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "Les %s référents des %s derniers jours:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Visiteurs en ligne"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" mis à jour en version %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Sauvegarde échouée! Impossible d'ouvrir le fichier"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "ASAuve"
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Sauvegarde des entrées du compteur et collectes enregistrés dans %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Collecte en cours..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Voir Visiteurs par Article..."
796
 
797
+ #: counter-options.php:316
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 "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s &gt; taille après = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Installation de \"Count per Day\" cochée"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Outils"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Enregistrer le lien seulement, pas de chaine de requête."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Qui peut le voir?"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "personnalisée"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "et plus sont autorisés à voir la page de statistiques."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Set the %s capability %s a user need:"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Stylesheet"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "PAS de Stylesheet en Frontend"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Ne pas charger le fichier de style \"counter.css\" en frontend."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Sauvegarde"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Entrées par passe"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Combien d'entrées doivent être enregistrées par passe? Par défaut: 10000"
869
 
870
+ #: counter-options.php:1040
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 "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."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Créer une sauvegarde du compteur %s dans le dossier wp-content (si possible en écriture)."
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Sauvegarde de la base de données"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Collecter les vieilles données"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "La taille actuelle de la table compteur %s est de %s."
898
 
899
+ #: counter-options.php:685
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 "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."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Actuellement, votre collection contient des données jusqu'à %s."
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Normalement les nouvelles données seront ajoutées à la collection."
914
 
915
+ #: counter-options.php:700
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr "Supprimer une collection ancienne et en créer un nouveau qui ne contient que les données actuellement dans le tableau du compteur."
919
 
920
+ #: counter-options.php:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Toutes les collectes jusqu'à %s seront supprimées"
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Garder les entrées des dernièrs %s mois + mois actuel dans la table compteur."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "Ré-Activation"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Ici vous pouvez lancer les fonctions d'installation manuellement.<br/> La même chose pour désactiver et réactiver le plugin."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "Ré-Activer le Plugin"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Visiteurs"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Le jours le plus visité"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "drag et drop pour trier"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-it_IT.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,346 +20,347 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
325
 
326
- #: counter-options.php:63
327
  #, php-format
328
  #@ cpd
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
331
 
332
- #: counter-options.php:66
333
  #@ cpd
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,51 +380,51 @@ msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della
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?"
391
 
392
- #: counter-options.php:106
393
  #, php-format
394
  #@ cpd
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,112 +435,112 @@ 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,66 +572,66 @@ msgstr "cancella"
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,105 +656,105 @@ msgstr "ID articolo"
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"
@@ -764,456 +765,471 @@ msgstr "Visitatori online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:37+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Le opzioni sono state aggiornate"
27
 
28
+ #: counter-options.php:121
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Database svuotato. %s record cancellato."
33
 
34
+ #: counter-options.php:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DISINSTALLA Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "La tabella %s é stata cancellata"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Le opzioni sono state cancellate"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Disinstalla"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clicca qui"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Durata del collegamento"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Utenti accreditati"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "conteggia anche loro"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Contatore-automatico"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots da ignorare"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Aggiorna le opzioni"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Svuota il database"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATTENZIONE"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sì"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Satistiche"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Totale visitatori"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Utenti attualmente in linea"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Oggi"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Ieri"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "La scorsa settimana"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Il contatore parte dal"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Visitatori per giorno"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitatori per mese"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitatori per articolo"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Il contatore é stato azzerato."
226
 
227
+ #: counter-options.php:938
228
+ #: counter-options.php:942
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:941
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Totale corrente - Articoli"
237
 
238
+ #: counter-options.php:945
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Totale corrente - pagine"
242
 
243
+ #: counter-options.php:946
244
+ #: counter-options.php:950
245
+ #: counter-options.php:972
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:986
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Mostra nelle liste"
254
 
255
+ #: counter-options.php:987
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:773
261
+ #: counter-options.php:783
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Azzera il contatore"
265
 
266
+ #: counter-options.php:776
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:776
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:653
278
+ #: counter-options.php:412
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Impostazioni"
282
 
283
+ #: counter-core.php:1541
284
+ #: counter-options.php:879
285
+ #: counter.php:240
286
+ #: counter.php:1024
287
+ #: map/map.php:60
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Visitatori"
291
 
292
+ #: counter-core.php:796
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Totale corrente"
296
 
297
+ #: counter-options.php:949
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Diagramma - Giorni"
301
 
302
+ #: counter-options.php:953
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Diagramma - Altezza"
306
 
307
+ #: counter-options.php:954
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "Altezza della categoria maggiore"
311
 
312
+ #: counter.php:1411
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Questo articolo"
316
 
317
+ #: counter-options.php:902
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr "Bacheca"
321
 
322
+ #: counter.php:347
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Letture per giorno"
326
 
327
+ #: counter-options.php:66
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
332
 
333
+ #: counter-options.php:69
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "aggiorna il prossimo"
337
 
338
+ #: counter-options.php:723
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - Stati"
342
 
343
+ #: counter-options.php:732
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Aggiorna i vecchi dati per gli stati"
347
 
348
+ #: counter-options.php:744
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Aggiorna database GeoIP"
352
 
353
+ #: counter-options.php:739
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Scarica la nuova versione del file GeoIP.dat."
357
 
358
+ #: counter-options.php:749
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Informazioni su GeoIP"
362
 
363
+ #: counter-core.php:807
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Letture per stato"
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
382
 
383
+ #: counter-options.php:958
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "Stati"
387
 
388
+ #: counter-options.php:959
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "Quanti stati desideri siano visibili nella bacheca?"
392
 
393
+ #: counter-options.php:109
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Mass Bots svuotato. %s totali cancellati."
398
 
399
+ #: counter-options.php:432
400
  #: massbots.php:46
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Mass Bots"
404
 
405
+ #: counter-options.php:436
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
410
 
411
+ #: counter-options.php:437
412
+ #: counter-options.php:501
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "mostra"
418
 
419
+ #: counter-options.php:463
420
+ #: counter-options.php:479
421
+ #: counter-options.php:526
422
  #, php-format
423
  #@ cpd
424
  msgid "Delete these %s counts"
425
  msgstr "Cancella questi %s totali"
426
 
427
+ #: counter.php:963
428
  #@ cpd
429
  msgid "Other"
430
  msgstr "Altro"
435
  msgid "Front page displays"
436
  msgstr "Mostra nella front page"
437
 
438
+ #: counter-core.php:802
439
+ #: counter-options.php:963
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Browser"
443
 
444
+ #: counter-options.php:445
445
+ #: counter-options.php:509
446
  #@ cpd
447
  msgid "IP"
448
  msgstr "IP"
449
 
450
+ #: counter-options.php:446
451
+ #: counter-options.php:510
452
  #: notes.php:88
453
  #@ cpd
454
  #@ default
455
  msgid "Date"
456
  msgstr "Data"
457
 
458
+ #: counter-options.php:447
459
+ #: counter-options.php:511
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Client"
463
 
464
+ #: counter-options.php:448
465
+ #: counter-options.php:512
466
  #@ cpd
467
  msgid "Views"
468
  msgstr "Visualizzazioni"
469
 
470
+ #: counter-options.php:994
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Valori di partenza"
474
 
475
+ #: counter-options.php:998
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
479
 
480
+ #: counter-options.php:1002
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Data di inizio"
484
 
485
+ #: counter-options.php:1003
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Il vecchio contatore parte da?"
489
 
490
+ #: counter-options.php:1006
491
+ #: counter-options.php:1010
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Avvia conteggio"
495
 
496
+ #: counter-options.php:1007
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Aggiungi questo valore a \"Totale visitatori\"."
500
 
501
+ #: counter-options.php:814
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Supporto"
505
 
506
+ #: counter-core.php:757
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
510
 
511
+ #: counter-core.php:758
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
516
 
517
+ #: counter.php:893
518
  #@ default
519
  msgid "Show"
520
  msgstr "Mostra"
521
 
522
+ #: counter.php:1135
523
  #@ default
524
  msgid "Edit Post"
525
  msgstr "modifica articolo"
526
 
527
+ #: counter-core.php:756
528
  #, php-format
529
  #@ cpd
530
  msgid "Time for Count per Day: <code>%s</code>."
531
  msgstr "Fuso orario Count per Day: <code>%s</code>."
532
 
533
+ #: counter-options.php:842
534
  #@ cpd
535
  msgid "until User Level"
536
  msgstr "sino a livello utente"
537
 
538
+ #: counter-core.php:799
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plugin"
542
 
543
+ #: counter.php:895
544
  #: notes.php:55
545
  #: notes.php:89
546
  #@ cpd
572
  msgid "edit"
573
  msgstr "modifica"
574
 
575
+ #: counter-options.php:1011
576
  #@ cpd
577
  msgid "Add this value to \"Total reads\"."
578
  msgstr "Aggiungi questo valore a \"Totale letture\"."
579
 
580
+ #: counter.php:236
581
+ #: counter.php:1412
582
  #@ cpd
583
  msgid "Total reads"
584
  msgstr "Totale letture"
585
 
586
+ #: counter.php:237
587
+ #: counter.php:1413
588
  #@ cpd
589
  msgid "Reads today"
590
  msgstr "Letture odierne"
591
 
592
+ #: counter.php:238
593
+ #: counter.php:1414
594
  #@ cpd
595
  msgid "Reads yesterday"
596
  msgstr "Letture di ieri"
597
 
598
+ #: counter.php:438
599
+ #: counter.php:1254
600
  #@ cpd
601
  msgid "Map"
602
  msgstr "Mappa"
603
 
604
+ #: counter-options.php:868
605
  #@ cpd
606
  msgid "Anonymous IP"
607
  msgstr "IP anonimo"
608
 
609
+ #: counter-options.php:872
610
  #@ cpd
611
  msgid "Cache"
612
  msgstr "Cache"
613
 
614
+ #: counter-options.php:873
615
  #@ cpd
616
  msgid "I use a cache plugin. Count these visits with ajax."
617
  msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
618
 
619
+ #: counter-options.php:964
620
  #@ cpd
621
  msgid "Substring of the user agent, separated by comma"
622
  msgstr "Sub-stringa user agent, separa con una virgola"
623
 
624
+ #: counter-core.php:808
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Visitatori per paese"
628
 
629
+ #: counter-options.php:1048
630
  #@ cpd
631
  msgid "Debug mode"
632
  msgstr "Modalità debug"
633
 
634
+ #: counter-options.php:1050
635
  #@ cpd
636
  msgid "Show debug informations at the bottom of all pages."
637
  msgstr "Mostra info debug al fondo di tutte le pagine."
656
  msgid "no data found"
657
  msgstr "nessun dato trovato"
658
 
659
+ #: counter-options.php:726
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 "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Contatore"
668
 
669
+ #: counter-options.php:975
670
  #@ cpd
671
  msgid "Local URLs"
672
  msgstr "URL locali"
673
 
674
+ #: counter-options.php:976
675
  #@ cpd
676
  msgid "Show local referrers too."
677
  msgstr "Mostra anche i referenti locali."
678
 
679
+ #: counter-options.php:983
680
  #@ default
681
  msgid "Posts"
682
  msgstr "Articoli"
683
 
684
+ #: counter-options.php:983
685
  #@ default
686
  msgid "Pages"
687
  msgstr "Pagine"
688
 
689
+ #: counter.php:1144
690
  #@ default
691
  msgid "Category"
692
  msgstr "Categoria"
693
 
694
+ #: counter.php:1147
695
  #@ default
696
  msgid "Tag"
697
  msgstr "Tag"
698
 
699
+ #: counter-core.php:759
700
  #@ default
701
  msgid "License"
702
  msgstr "Licenza"
703
 
704
+ #: counter-core.php:803
705
  #@ cpd
706
  msgid "Referrer"
707
  msgstr "Referente"
708
 
709
+ #: counter.php:1436
710
  #@ default
711
  msgid "Title"
712
  msgstr "Titolo"
713
 
714
+ #: counter-options.php:879
715
  #@ cpd
716
  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."
717
  msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
718
 
719
+ #: counter-options.php:876
720
  #@ cpd
721
  msgid "Clients and referrers"
722
  msgstr "Client e referenti"
723
 
724
+ #: counter.php:239
725
+ #: counter.php:1415
726
  #@ cpd
727
  msgid "Reads last week"
728
  msgstr "Letture scorsa settimana"
729
 
730
+ #: counter-core.php:794
731
+ #: counter.php:1416
732
  #@ cpd
733
  msgid "Reads per month"
734
  msgstr "Letture scorso mese"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Referenti - Pubblicazioni"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Referenti - Giorni"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "I %s referenti degli ultimi %s giorni:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Visitatori online"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" é stato aggiornato alla versione %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Il backup é fallito! Non é possibile aprire il file"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Backup della tabella salvato in %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Backup delle opzioni e raccolta dati salvato in %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Raccolta in corso..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Visitatori per post..."
796
 
797
+ #: counter-options.php:316
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 "Computo dati collezionati sino al %s e tabella %s ottimizzati (dimensione precedente = %s &gt; attuale = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Installazione di \"Count per Day\" selezionata"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Strumenti"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Salva solo gli URL, no query string."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Chi può vedere"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "personalizzato"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "e superiore hanno il permesso per potere vedere le stat."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Imposta %s ruolo %s necessario per l'utente:"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Foglio di stile"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "NO foglio di stile nel Frontend"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Non caricare il foglio di stile \"counter.css\" nel frontend."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Backup"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Elementi per pass"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Quanti elementi salvare per pass? Predefinito: 10000"
869
 
870
+ #: counter-options.php:1040
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 "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."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Crea un backup della tabella %s nella cartella wp-content (se scrivibile)."
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Backup del database"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Raccogli i vecchi dati"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "La dimensione attuale della tabella %s é %s."
898
 
899
+ #: counter-options.php:685
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 "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."
903
 
904
+ #: counter-options.php:694
905
  #@ cpd
906
  msgid "Normally new data will be added to the collection."
907
  msgstr "Generalmente, i nuovi dati saranno aggiunti alla collezione."
908
 
909
+ #: counter-options.php:700
910
  #@ cpd
911
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
912
  msgstr "Cancella la vecchia raccolta e creane una nuova che contenga solamente i dati attuali della tabella."
913
 
914
+ #: counter-options.php:701
915
  #, php-format
916
  #@ cpd
917
  msgid "All collected data until %s will deleted."
918
  msgstr "Tutti i dati raccolti sino al %s saranno cancellati."
919
 
920
+ #: counter-options.php:706
921
  #, php-format
922
  #@ cpd
923
  msgid "Keep entries of last %s full months + current month in counter table."
924
  msgstr "Conserva nella tabella i dati per gli ultimi %s mesi completi + mese corrente."
925
 
926
+ #: counter-options.php:757
927
  #@ cpd
928
  msgid "ReActivation"
929
  msgstr "Riattivazione"
930
 
931
+ #: counter-options.php:760
932
  #@ cpd
933
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
934
  msgstr "Qui puoi iniziare l'installazione manuale delle funzioni.<br/>Come attivare e riattivare il plugin."
935
 
936
+ #: counter-options.php:765
937
  #@ cpd
938
  msgid "ReActivate the plugin"
939
  msgstr "Riattiva il plugin"
940
 
941
+ #: counter.php:246
942
+ #: counter.php:1048
943
  #@ cpd
944
  msgid "Visitors"
945
  msgstr "Visitatori"
946
 
947
+ #: counter.php:249
948
+ #: counter.php:250
949
  #@ cpd
950
  msgid "Most visited day"
951
  msgstr "Giorno maggiori visite"
952
 
953
+ #: counter.php:1455
954
  #@ cpd
955
  msgid "drag and drop to sort"
956
  msgstr "drag and drop per ordinare"
957
 
958
+ #: counter-core.php:798
959
+ #: counter-options.php:967
960
+ #: counter-options.php:971
961
  #@ cpd
962
  msgid "Search strings"
963
  msgstr ""
964
 
965
+ #: counter-core.php:1191
966
  #@ cpd
967
  msgid "Your can download the backup files here and now."
968
  msgstr ""
969
 
970
+ #: counter-core.php:1261
971
  #@ cpd
972
  msgid "Error while reading backup file!"
973
  msgstr ""
974
 
975
+ #: counter-core.php:1265
976
  #, php-format
977
  #@ cpd
978
  msgid "The backup was added to counter table %s."
979
  msgstr ""
980
 
981
+ #: counter-core.php:1267
982
  #, php-format
983
  #@ cpd
984
  msgid "The counter table %s was restored from backup."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1284
988
  #@ cpd
989
  msgid "Options restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-options.php:340
993
  #@ cpd
994
  msgid "Old search strings deleted"
995
  msgstr ""
996
 
997
+ #: counter-options.php:355
998
  #@ cpd
999
  msgid "Clients and referers deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:570
1003
  #@ cpd
1004
  msgid "Download only"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:602
1008
  #@ cpd
1009
  msgid "Settings and collections"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:607
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Counter table %s"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:614
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:614
1025
  #@ cpd
1026
  msgid "Add"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:618
1030
  #, php-format
1031
  #@ cpd
1032
  msgid "Restore data from the backup file %s ?"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #@ default
1037
  msgid "Restore"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:620
1041
  #@ default
1042
  msgid "Delete"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:621
1046
  #, php-format
1047
  #@ cpd
1048
  msgid "Delete the backup file %s ?"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:627
1052
  #@ cpd
1053
  msgid "add backup to current counter table"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:628
1057
  #@ cpd
1058
  msgid "replace current counter table with with backup"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:629
1062
  #@ cpd
1063
  msgid "delete backup file"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:654
1067
  #, php-format
1068
  #@ cpd
1069
  msgid "Delete search strings older than %s days."
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:658
1073
  #@ cpd
1074
  msgid "Delete search strings"
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:665
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:669
1084
  #@ cpd
1085
  msgid "Delete clients and referers"
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:690
1089
  #, php-format
1090
  #@ cpd
1091
  msgid "Currently your collection contains data until %s."
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-lt_LT.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,510 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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ė"
320
 
321
- #: counter-options.php:63
322
  #, php-format
323
  #@ cpd
324
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
325
  msgstr "Šalys atnaujintos. <b>%s</b> įrašų %s liko be šalies"
326
 
327
- #: counter-options.php:66
328
  #@ cpd
329
  msgid "update next"
330
  msgstr "Atnaujinti sekantį"
331
 
332
- #: counter-options.php:106
333
  #, php-format
334
  #@ cpd
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,29 +534,29 @@ 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,32 +601,32 @@ msgstr "pašalinti"
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,12 +646,12 @@ msgstr "Pabaiga"
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,100 +661,100 @@ msgstr "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrint
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"
@@ -764,456 +765,471 @@ msgstr "Pavadinimas"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:41+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Parinktys atnaujintos"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "PAŠALINTI dienos skaičių"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Lentelė %s pašalinta"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Parinktys ištrintos"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Pašalinti"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Spauskite čia"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Online laikas"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Prisijungę vartotojai"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "taipogi skaičiuoti"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Automatinis skaičiuotuvas"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botus ignoruoti"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atnaujinti parinktis"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Išvalyti duomenų bazę"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "DĖMESIO"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Taip"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistika"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Viso lankytojų"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Šiuo metu lankytojų svetainėje"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Lankytojų šiandien"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Lankytojų vakar"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Lankytojų praeitą savaitę"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Skaitiklis prasideda nuo"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Lankytojų per dieną"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Lankytojų per mėnesį"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Žinutės lankytojai"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Skaitliukas išvalytas."
226
 
227
+ #: counter-options.php:902
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Konsolė"
231
 
232
+ #: counter-options.php:938
233
+ #: counter-options.php:942
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:941
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Paskutiniai skaitliukai - žinutės"
242
 
243
+ #: counter-options.php:945
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Paskutiniai skaitliukai - Dienos"
247
 
248
+ #: counter-options.php:946
249
+ #: counter-options.php:950
250
+ #: counter-options.php:972
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:949
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Diagrama - dienos"
259
 
260
+ #: counter-options.php:953
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Diagrama - Aukštis"
264
 
265
+ #: counter-options.php:954
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Didžiausio baro aukštis"
269
 
270
+ #: counter-options.php:986
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Rodyti sąrašuose"
274
 
275
+ #: counter-options.php:987
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:773
281
+ #: counter-options.php:783
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Atstatyti skaitliuką"
285
 
286
+ #: counter-options.php:776
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:776
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:653
298
+ #: counter-options.php:412
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Nustatymai"
302
 
303
+ #: counter.php:347
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Skaitymų per dieną"
307
 
308
+ #: counter-core.php:1541
309
+ #: counter-options.php:879
310
+ #: counter.php:240
311
+ #: counter.php:1024
312
+ #: map/map.php:60
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "Skaitymų"
316
 
317
+ #: counter.php:1411
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "Ši žinutė"
321
 
322
+ #: counter-options.php:66
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "Šalys atnaujintos. <b>%s</b> įrašų %s liko be šalies"
327
 
328
+ #: counter-options.php:69
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "Atnaujinti sekantį"
332
 
333
+ #: counter-options.php:109
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "Botų lentelė išvalyta. %s išbraukta."
338
 
339
+ #: counter-options.php:842
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr "iki vartotojo lygmens"
343
 
344
+ #: counter-options.php:868
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "Anoniminis IP"
348
 
349
+ #: counter-options.php:958
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "Šalys"
353
 
354
+ #: counter-options.php:959
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "Kiek šalių tu nori matyti puslapyje prietaisų skydelyje?"
358
 
359
+ #: counter-options.php:994
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "Pradėti reikšmes"
363
 
364
+ #: counter-options.php:998
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "Čia galite pakeisti pirmo skaičiavimo datą ir pradėti skaičiavimą."
368
 
369
+ #: counter-options.php:1002
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "Pradėti datą"
373
 
374
+ #: counter-options.php:1003
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "Jūsų senas skaitliukas prasideda nuo?"
378
 
379
+ #: counter-options.php:1006
380
+ #: counter-options.php:1010
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "Pradėti skaičiavimą"
384
 
385
+ #: counter-options.php:1007
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr "Pridėti šią reikšmę \"Iš viso apsilankė\"."
389
 
390
+ #: counter-options.php:723
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - Šalys"
394
 
395
+ #: counter-options.php:732
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "Atnaujinti senus skaitliuko duomenis"
399
 
400
+ #: counter-options.php:744
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "Atnaujinti GeoIP duomenų bazę"
404
 
405
+ #: counter-options.php:739
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "Atsisiųsti naują GeoIP.dat failo versiją."
409
 
410
+ #: counter-options.php:749
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr "Daugiau informacijos apie GeoIP"
414
 
415
+ #: counter-options.php:432
416
  #: massbots.php:46
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "Botai"
420
 
421
+ #: counter-options.php:436
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "Rodyti visus IP su daugiau nei %s peržiūrų per parą"
426
 
427
+ #: counter-options.php:437
428
+ #: counter-options.php:501
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "parodyti"
434
 
435
+ #: counter-options.php:445
436
+ #: counter-options.php:509
437
  #@ cpd
438
  msgid "IP"
439
  msgstr "IP"
440
 
441
+ #: counter-options.php:446
442
+ #: counter-options.php:510
443
  #: notes.php:88
444
  #@ cpd
445
  #@ default
446
  msgid "Date"
447
  msgstr "Data"
448
 
449
+ #: counter-options.php:447
450
+ #: counter-options.php:511
451
  #@ cpd
452
  msgid "Client"
453
  msgstr "Klientas"
454
 
455
+ #: counter-options.php:448
456
+ #: counter-options.php:512
457
  #@ cpd
458
  msgid "Views"
459
  msgstr "Peržiūrų"
460
 
461
+ #: counter-options.php:463
462
+ #: counter-options.php:479
463
+ #: counter-options.php:526
464
  #, php-format
465
  #@ cpd
466
  msgid "Delete these %s counts"
467
  msgstr "Pašalinti šiuos %s skaitliukų"
468
 
469
+ #: counter-options.php:814
470
  #@ cpd
471
  msgid "Support"
472
  msgstr "Palaikymas"
473
 
474
+ #: counter-core.php:756
475
  #, php-format
476
  #@ cpd
477
  msgid "Time for Count per Day: <code>%s</code>."
478
  msgstr "Laikas skaičiaus per dieną: <code>%s</code>"
479
 
480
+ #: counter-core.php:757
481
  #@ cpd
482
  msgid "Bug? Problem? Question? Hint? Praise?"
483
  msgstr "Klaida? Problema? Klausimas? Patarimas? Pagirimas?"
484
 
485
+ #: counter-core.php:758
486
  #, php-format
487
  #@ cpd
488
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
489
  msgstr "Rašyti komentarą <a href=\"%s\">įskiepio puslapyje</a> ."
490
 
491
+ #: counter.php:236
492
+ #: counter.php:1412
493
  #@ cpd
494
  msgid "Total reads"
495
  msgstr "Viso skaityta"
496
 
497
+ #: counter.php:237
498
+ #: counter.php:1413
499
  #@ cpd
500
  msgid "Reads today"
501
  msgstr "Skaityta šiandien"
502
 
503
+ #: counter.php:238
504
+ #: counter.php:1414
505
  #@ cpd
506
  msgid "Reads yesterday"
507
  msgstr "Vakar skaityta"
508
 
509
+ #: counter.php:895
510
  #: notes.php:55
511
  #: notes.php:89
512
  #@ cpd
513
  msgid "Notes"
514
  msgstr "Pastabos"
515
 
516
+ #: counter.php:893
517
  #@ default
518
  msgid "Show"
519
  msgstr "Parodyti"
520
 
521
+ #: counter.php:963
522
  #@ cpd
523
  msgid "Other"
524
  msgstr "Kiti"
525
 
526
+ #: counter.php:1135
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr "Redaguoti žinutę"
534
  msgid "Front page displays"
535
  msgstr "Pirminio puslapio rodymas"
536
 
537
+ #: counter-core.php:802
538
+ #: counter-options.php:963
539
  #@ cpd
540
  msgid "Browsers"
541
  msgstr "Naršyklės"
542
 
543
+ #: counter-core.php:796
544
  #@ cpd
545
  msgid "Latest Counts"
546
  msgstr "Paskutinieji skaičiavimai"
547
 
548
+ #: counter-core.php:799
549
  #@ default
550
  msgid "Plugin"
551
  msgstr "Įskiepis"
552
 
553
+ #: counter-core.php:807
554
  #@ cpd
555
  msgid "Reads per Country"
556
  msgstr "Peržiūrų per šalis"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "Žemėlapis"
601
  msgid "edit"
602
  msgstr "redaguoti"
603
 
604
+ #: counter-options.php:872
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Talpykla"
608
 
609
+ #: counter-options.php:873
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Aš naudojutalpinamą įskiepį. Skaičiuoti šiuos apsilankymus ajax pagalba."
613
 
614
+ #: counter-options.php:964
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Vartotojo agento fragmentas, atskirtas kableliais"
618
 
619
+ #: counter-options.php:1048
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Derinimo režimu"
623
 
624
+ #: counter-options.php:1050
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Rodyti derinimo informacijas visų puslapių apačioje."
628
 
629
+ #: counter-core.php:808
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Vartotojai pagal šalis"
646
  msgid "PostID"
647
  msgstr "ŽinutėsID"
648
 
649
+ #: counter-options.php:1011
650
  #@ cpd
651
  msgid "Add this value to \"Total reads\"."
652
  msgstr "Pridėti šią reikšmę, \"Viso skaityta\"."
653
 
654
+ #: counter-options.php:726
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 "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrinti IP adresą prieš GeoIP duomenų bazę. Tai gali užtrukti!"
661
  msgid "no data found"
662
  msgstr "Nėra duomenų"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Skaitliukas"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Klientai ir referalai"
673
 
674
+ #: counter-options.php:879
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 "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."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Vietiniai URL"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Taipat rodyti vietinisu referalus."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Žinutės"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Puslapiai"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Skaitymų praeitą savaitę"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Kategorija"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Žyma"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "Licenzija"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Skaitymų per mėnesį"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Referalas"
730
 
731
+ #: counter-options.php:967
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Referalai - Įrašai"
735
 
736
+ #: counter-options.php:968
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Kiek referalų jūs norite pamatyti puslapio prietaisų skydelyje?"
740
 
741
+ #: counter-options.php:971
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Referalai - Dienos"
745
 
746
+ #: counter.php:994
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s referalų paskutinius %s dienų:"
751
 
752
+ #: counter-core.php:792
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Lankytojų svetainėje"
756
 
757
+ #: counter.php:1436
758
  #@ default
759
  msgid "Title"
760
  msgstr "Pavadinimas"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:798
769
+ #: counter-options.php:967
770
+ #: counter-options.php:971
771
  #@ cpd
772
  msgid "Search strings"
773
  msgstr ""
774
 
775
+ #: counter-core.php:1076
776
  #@ cpd
777
  msgid "Backup failed! Cannot open file"
778
  msgstr ""
779
 
780
+ #: counter-core.php:1191
781
  #@ cpd
782
  msgid "Your can download the backup files here and now."
783
  msgstr ""
784
 
785
+ #: counter-core.php:1195
786
+ #: counter-core.php:1203
787
  #, php-format
788
  #@ cpd
789
  msgid "Backup of counter table saved in %s."
790
  msgstr ""
791
 
792
+ #: counter-core.php:1197
793
+ #: counter-core.php:1205
794
  #, php-format
795
  #@ cpd
796
  msgid "Backup of counter options and collection saved in %s."
797
  msgstr ""
798
 
799
+ #: counter-core.php:1261
800
  #@ cpd
801
  msgid "Error while reading backup file!"
802
  msgstr ""
803
 
804
+ #: counter-core.php:1265
805
  #, php-format
806
  #@ cpd
807
  msgid "The backup was added to counter table %s."
808
  msgstr ""
809
 
810
+ #: counter-core.php:1267
811
  #, php-format
812
  #@ cpd
813
  msgid "The counter table %s was restored from backup."
814
  msgstr ""
815
 
816
+ #: counter-core.php:1284
817
  #@ cpd
818
  msgid "Options restored from backup."
819
  msgstr ""
820
 
821
+ #: counter-options.php:177
822
  #@ cpd
823
  msgid "Collection in progress..."
824
  msgstr ""
825
 
826
+ #: counter-options.php:271
827
  #@ cpd
828
  msgid "Get Visitors per Post..."
829
  msgstr ""
830
 
831
+ #: counter-options.php:316
832
  #, php-format
833
  #@ cpd
834
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
835
  msgstr ""
836
 
837
+ #: counter-options.php:325
838
  #@ cpd
839
  msgid "Installation of \"Count per Day\" checked"
840
  msgstr ""
841
 
842
+ #: counter-options.php:340
843
  #@ cpd
844
  msgid "Old search strings deleted"
845
  msgstr ""
846
 
847
+ #: counter-options.php:355
848
  #@ cpd
849
  msgid "Clients and referers deleted"
850
  msgstr ""
851
 
852
+ #: counter-options.php:411
853
  #@ default
854
  msgid "Tools"
855
  msgstr ""
856
 
857
+ #: counter-options.php:563
858
+ #: counter-options.php:1029
859
  #@ cpd
860
  msgid "Backup"
861
  msgstr ""
862
 
863
+ #: counter-options.php:567
864
  #, php-format
865
  #@ cpd
866
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
867
  msgstr ""
868
 
869
+ #: counter-options.php:570
870
  #@ cpd
871
  msgid "Download only"
872
  msgstr ""
873
 
874
+ #: counter-options.php:574
875
  #@ cpd
876
  msgid "Backup the database"
877
  msgstr ""
878
 
879
+ #: counter-options.php:602
880
  #@ cpd
881
  msgid "Settings and collections"
882
  msgstr ""
883
 
884
+ #: counter-options.php:607
885
  #, php-format
886
  #@ cpd
887
  msgid "Counter table %s"
888
  msgstr ""
889
 
890
+ #: counter-options.php:614
891
  #, php-format
892
  #@ cpd
893
  msgid "Add data from the backup file %s to existing counter table?"
894
  msgstr ""
895
 
896
+ #: counter-options.php:614
897
  #@ cpd
898
  msgid "Add"
899
  msgstr ""
900
 
901
+ #: counter-options.php:618
902
  #, php-format
903
  #@ cpd
904
  msgid "Restore data from the backup file %s ?"
905
  msgstr ""
906
 
907
+ #: counter-options.php:618
908
  #@ default
909
  msgid "Restore"
910
  msgstr ""
911
 
912
+ #: counter-options.php:620
913
  #@ default
914
  msgid "Delete"
915
  msgstr ""
916
 
917
+ #: counter-options.php:621
918
  #, php-format
919
  #@ cpd
920
  msgid "Delete the backup file %s ?"
921
  msgstr ""
922
 
923
+ #: counter-options.php:627
924
  #@ cpd
925
  msgid "add backup to current counter table"
926
  msgstr ""
927
 
928
+ #: counter-options.php:628
929
  #@ cpd
930
  msgid "replace current counter table with with backup"
931
  msgstr ""
932
 
933
+ #: counter-options.php:629
934
  #@ cpd
935
  msgid "delete backup file"
936
  msgstr ""
937
 
938
+ #: counter-options.php:654
939
  #, php-format
940
  #@ cpd
941
  msgid "Delete search strings older than %s days."
942
  msgstr ""
943
 
944
+ #: counter-options.php:658
945
  #@ cpd
946
  msgid "Delete search strings"
947
  msgstr ""
948
 
949
+ #: counter-options.php:664
950
+ #: counter-options.php:683
951
  #, php-format
952
  #@ cpd
953
  msgid "Current size of your counter table %s is %s."
954
  msgstr ""
955
 
956
+ #: counter-options.php:665
957
  #, php-format
958
  #@ cpd
959
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
960
  msgstr ""
961
 
962
+ #: counter-options.php:669
963
  #@ cpd
964
  msgid "Delete clients and referers"
965
  msgstr ""
966
 
967
+ #: counter-options.php:678
968
+ #: counter-options.php:710
969
  #@ cpd
970
  msgid "Collect old data"
971
  msgstr ""
972
 
973
+ #: counter-options.php:685
974
  #@ cpd
975
  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."
976
  msgstr ""
977
 
978
+ #: counter-options.php:690
979
  #, php-format
980
  #@ cpd
981
  msgid "Currently your collection contains data until %s."
982
  msgstr ""
983
 
984
+ #: counter-options.php:694
985
  #@ cpd
986
  msgid "Normally new data will be added to the collection."
987
  msgstr ""
988
 
989
+ #: counter-options.php:700
990
  #@ cpd
991
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
992
  msgstr ""
993
 
994
+ #: counter-options.php:701
995
  #, php-format
996
  #@ cpd
997
  msgid "All collected data until %s will deleted."
998
  msgstr ""
999
 
1000
+ #: counter-options.php:706
1001
  #, php-format
1002
  #@ cpd
1003
  msgid "Keep entries of last %s full months + current month in counter table."
1004
  msgstr ""
1005
 
1006
+ #: counter-options.php:757
1007
  #@ cpd
1008
  msgid "ReActivation"
1009
  msgstr ""
1010
 
1011
+ #: counter-options.php:760
1012
  #@ cpd
1013
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1014
  msgstr ""
1015
 
1016
+ #: counter-options.php:765
1017
  #@ cpd
1018
  msgid "ReActivate the plugin"
1019
  msgstr ""
1020
 
1021
+ #: counter-options.php:881
1022
  #@ cpd
1023
  msgid "Save URL only, no query string."
1024
  msgstr ""
1025
 
1026
+ #: counter-options.php:918
1027
  #@ cpd
1028
  msgid "Who can see it"
1029
  msgstr ""
1030
 
1031
+ #: counter-options.php:927
1032
  #@ cpd
1033
  msgid "custom"
1034
  msgstr ""
1035
 
1036
+ #: counter-options.php:929
1037
  #@ cpd
1038
  msgid "and higher are allowed to see the statistics page."
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:931
1042
  #, php-format
1043
  #@ cpd
1044
  msgid "Set the %s capability %s a user need:"
1045
  msgstr ""
1046
 
1047
+ #: counter-options.php:1018
1048
  #@ cpd
1049
  msgid "Stylesheet"
1050
  msgstr ""
1051
 
1052
+ #: counter-options.php:1021
1053
  #@ cpd
1054
  msgid "NO Stylesheet in Frontend"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:1022
1058
  #@ cpd
1059
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:1032
1063
  #@ cpd
1064
  msgid "Entries per pass"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:1035
1068
  #@ cpd
1069
  msgid "How many entries should be saved per pass? Default: 10000"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:1040
1073
  #@ cpd
1074
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
1075
  msgstr ""
1076
 
1077
+ #: counter.php:246
1078
+ #: counter.php:1048
1079
  #@ cpd
1080
  msgid "Visitors"
1081
  msgstr ""
1082
 
1083
+ #: counter.php:249
1084
+ #: counter.php:250
1085
  #@ cpd
1086
  msgid "Most visited day"
1087
  msgstr ""
1088
 
1089
+ #: counter.php:1150
1090
  #@ default
1091
  msgid "Front page"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1198
1095
  #, php-format
1096
  #@ cpd
1097
  msgid "The %s most searched strings:"
1098
  msgstr ""
1099
 
1100
+ #: counter.php:1207
1101
  #, php-format
1102
  #@ cpd
1103
  msgid "The search strings of the last %s days:"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1371
1107
  #@ default
1108
  msgid "_name"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1455
1112
  #@ cpd
1113
  msgid "drag and drop to sort"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-nb_NO.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,509 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: f:/wordpress/plugins/count-per-day\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Innstillingene er oppdatert"
27
 
28
- #: counter-options.php:63
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Land oppdatert. <strong>%s</strong> poster i %s har stadig ingen angivelse av land."
33
 
34
- #: counter-options.php:66
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "oppdater neste"
38
 
39
- #: counter-options.php:106
40
  #, php-format
41
  #@ cpd
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,65 +533,66 @@ 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,105 +657,105 @@ msgstr "Ny GeoIP-database installert."
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"
@@ -765,456 +766,471 @@ msgstr "Gjester online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:47+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"
20
  "X-Poedit-SearchPath-0: f:/wordpress/plugins/count-per-day\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Innstillingene er oppdatert"
27
 
28
+ #: counter-options.php:66
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Land oppdatert. <strong>%s</strong> poster i %s har stadig ingen angivelse av land."
33
 
34
+ #: counter-options.php:69
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "oppdater neste"
38
 
39
+ #: counter-options.php:109
40
  #, php-format
41
  #@ cpd
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Massebotter renset. %s rader slettet."
44
 
45
+ #: counter-options.php:121
46
  #, php-format
47
  #@ cpd
48
  msgid "Database cleaned. %s rows deleted."
49
  msgstr "Databasen renset. %s rader slettet."
50
 
51
+ #: counter-options.php:131
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Teller nullstilt."
55
 
56
+ #: counter-options.php:136
57
+ #: counter-options.php:806
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "AVINSTALLER Count per Day"
61
 
62
+ #: counter-options.php:141
63
+ #: counter-options.php:142
64
+ #: counter-options.php:143
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabellen %s ble slettet"
69
 
70
+ #: counter-options.php:144
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Innstillinger slettet"
74
 
75
+ #: counter-options.php:385
76
+ #: counter-options.php:792
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Avinstaller"
80
 
81
+ #: counter-options.php:386
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Klikk her"
85
 
86
+ #: counter-options.php:386
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:835
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Tid online"
95
 
96
+ #: counter-options.php:836
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:839
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Innloggede brukere"
105
 
106
+ #: counter-options.php:841
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "tell også"
110
 
111
+ #: counter-options.php:842
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "til og med brukernivå"
115
 
116
+ #: counter-options.php:853
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Auto-teller"
120
 
121
+ #: counter-options.php:854
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:857
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Ignorer følgende botter"
130
 
131
+ #: counter-options.php:868
132
  #@ cpd
133
  msgid "Anonymous IP"
134
  msgstr "Anonym IP"
135
 
136
+ #: counter-options.php:872
137
  #@ cpd
138
  msgid "Cache"
139
  msgstr "Buffer"
140
 
141
+ #: counter-options.php:873
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:1055
147
  #@ cpd
148
  msgid "Update options"
149
  msgstr "Oppdater innstillinger"
150
 
151
+ #: counter-options.php:902
152
  #@ default
153
  msgid "Dashboard"
154
  msgstr "Kontrollpanel"
155
 
156
+ #: counter-core.php:795
157
+ #: counter-options.php:937
158
  #@ cpd
159
  msgid "Visitors per post"
160
  msgstr "Besøkende pr innlegg"
161
 
162
+ #: counter-options.php:938
163
+ #: counter-options.php:942
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:941
169
  #@ cpd
170
  msgid "Latest Counts - Posts"
171
  msgstr "Sist leste - innlegg"
172
 
173
+ #: counter-options.php:945
174
  #@ cpd
175
  msgid "Latest Counts - Days"
176
  msgstr "Sist leste - dager"
177
 
178
+ #: counter-options.php:946
179
+ #: counter-options.php:950
180
+ #: counter-options.php:972
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:949
186
  #@ cpd
187
  msgid "Chart - Days"
188
  msgstr "Diagram - dager"
189
 
190
+ #: counter-options.php:953
191
  #@ cpd
192
  msgid "Chart - Height"
193
  msgstr "Diagram - høyde"
194
 
195
+ #: counter-options.php:954
196
  #@ cpd
197
  msgid "Height of the biggest bar"
198
  msgstr "Høyde på den største søylen"
199
 
200
+ #: counter-options.php:958
201
  #@ cpd
202
  msgid "Countries"
203
  msgstr "Land"
204
 
205
+ #: counter-options.php:959
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:802
211
+ #: counter-options.php:963
212
  #@ cpd
213
  msgid "Browsers"
214
  msgstr "Nettlesere"
215
 
216
+ #: counter-options.php:964
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:986
222
  #@ cpd
223
  msgid "Show in lists"
224
  msgstr "Vis som liste"
225
 
226
+ #: counter-options.php:987
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:994
232
  #@ cpd
233
  msgid "Start Values"
234
  msgstr "Startverdier"
235
 
236
+ #: counter-options.php:998
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:1002
242
  #@ cpd
243
  msgid "Start date"
244
  msgstr "Startdato"
245
 
246
+ #: counter-options.php:1003
247
  #@ cpd
248
  msgid "Your old Counter starts at?"
249
  msgstr "Din gamle teller starter når?"
250
 
251
+ #: counter-options.php:1006
252
+ #: counter-options.php:1010
253
  #@ cpd
254
  msgid "Start count"
255
  msgstr "Start på antall treff"
256
 
257
+ #: counter-options.php:1007
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:1011
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:1048
268
  #@ cpd
269
  msgid "Debug mode"
270
  msgstr "Feilsøkingsmodus"
271
 
272
+ #: counter-options.php:1050
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:723
278
  #@ cpd
279
  msgid "GeoIP - Countries"
280
  msgstr "GeoIP - Land"
281
 
282
+ #: counter-options.php:732
283
  #@ cpd
284
  msgid "Update old counter data"
285
  msgstr "Oppdater gamle tellerdata"
286
 
287
+ #: counter-options.php:744
288
  #@ cpd
289
  msgid "Update GeoIP database"
290
  msgstr "Oppdater GeoIP-database"
291
 
292
+ #: counter-options.php:739
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:749
298
  #@ cpd
299
  msgid "More informations about GeoIP"
300
  msgstr "Flere opplysninger om GeoIP"
301
 
302
+ #: counter-options.php:432
303
  #: massbots.php:46
304
  #@ cpd
305
  msgid "Mass Bots"
306
  msgstr "Massebotter"
307
 
308
+ #: counter-options.php:436
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:437
315
+ #: counter-options.php:501
316
  #: notes.php:84
317
  #: userperspan.php:56
318
  #@ cpd
319
  msgid "show"
320
  msgstr "vis"
321
 
322
+ #: counter-options.php:445
323
+ #: counter-options.php:509
324
  #@ cpd
325
  msgid "IP"
326
  msgstr "IP"
327
 
328
+ #: counter-options.php:446
329
+ #: counter-options.php:510
330
  #: notes.php:88
331
  #@ cpd
332
  #@ default
333
  msgid "Date"
334
  msgstr "Dato"
335
 
336
+ #: counter-options.php:447
337
+ #: counter-options.php:511
338
  #@ cpd
339
  msgid "Client"
340
  msgstr "Klient"
341
 
342
+ #: counter-options.php:448
343
+ #: counter-options.php:512
344
  #@ cpd
345
  msgid "Views"
346
  msgstr "Visninger"
347
 
348
+ #: counter-options.php:463
349
+ #: counter-options.php:479
350
+ #: counter-options.php:526
351
  #, php-format
352
  #@ cpd
353
  msgid "Delete these %s counts"
354
  msgstr "Slett disse %s treffene"
355
 
356
+ #: counter-options.php:640
357
+ #: counter-options.php:648
358
  #@ cpd
359
  msgid "Clean the database"
360
  msgstr "Rens databasen"
361
 
362
+ #: counter-options.php:644
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:773
368
+ #: counter-options.php:783
369
  #@ cpd
370
  msgid "Reset the counter"
371
  msgstr "Nullstill telleren"
372
 
373
+ #: counter-options.php:776
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:795
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:796
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:799
389
  #@ cpd
390
  msgid "WARNING"
391
  msgstr "ADVARSEL"
392
 
393
+ #: counter-options.php:800
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:802
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:782
404
+ #: counter-options.php:805
405
  #@ cpd
406
  msgid "Yes"
407
  msgstr "Ja"
408
 
409
+ #: counter-options.php:806
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:814
415
  #@ cpd
416
  msgid "Support"
417
  msgstr "Støtte"
418
 
419
+ #: counter-core.php:756
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:757
426
  #@ cpd
427
  msgid "Bug? Problem? Question? Hint? Praise?"
428
  msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
429
 
430
+ #: counter-core.php:758
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:236
437
+ #: counter.php:1412
438
  #@ cpd
439
  msgid "Total reads"
440
  msgstr "Visninger i alt"
441
 
442
+ #: counter.php:237
443
+ #: counter.php:1413
444
  #@ cpd
445
  msgid "Reads today"
446
  msgstr "Visninger i dag"
447
 
448
+ #: counter.php:238
449
+ #: counter.php:1414
450
  #@ cpd
451
  msgid "Reads yesterday"
452
  msgstr "Visninger i går"
453
 
454
+ #: counter-core.php:791
455
+ #: counter.php:241
456
+ #: counter.php:1223
457
+ #: counter.php:1417
458
  #@ cpd
459
  msgid "Total visitors"
460
  msgstr "Antall besøkende i alt"
461
 
462
+ #: counter.php:242
463
+ #: counter.php:1423
464
  #@ cpd
465
  msgid "Visitors currently online"
466
  msgstr "besøkende online akkurat nå"
467
 
468
+ #: counter.php:243
469
+ #: counter.php:1418
470
  #@ cpd
471
  msgid "Visitors today"
472
  msgstr "besøkende i dag"
473
 
474
+ #: counter.php:244
475
+ #: counter.php:1419
476
  #@ cpd
477
  msgid "Visitors yesterday"
478
  msgstr "besøkende i går"
479
 
480
+ #: counter.php:245
481
+ #: counter.php:1420
482
  #@ cpd
483
  msgid "Visitors last week"
484
  msgstr "besøkende siste uke"
485
 
486
+ #: counter-core.php:797
487
+ #: counter.php:247
488
+ #: counter.php:348
489
+ #: counter.php:1225
490
+ #: counter.php:1422
491
  #: userperspan.php:46
492
  #@ cpd
493
  msgid "Visitors per day"
494
  msgstr "besøkende pr dag"
495
 
496
+ #: counter.php:974
497
+ #: counter.php:1424
498
  #@ cpd
499
  msgid "Counter starts on"
500
  msgstr "Teller starter på"
501
 
502
+ #: counter.php:895
503
  #: notes.php:55
504
  #: notes.php:89
505
  #@ cpd
506
  msgid "Notes"
507
  msgstr "Merknader"
508
 
509
+ #: counter.php:776
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:893
516
  #@ default
517
  msgid "Show"
518
  msgstr "Vis"
519
 
520
+ #: counter.php:963
521
  #@ cpd
522
  msgid "Other"
523
  msgstr "Andre"
524
 
525
+ #: counter.php:1135
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:653
537
+ #: counter-options.php:412
538
  #@ default
539
  msgid "Settings"
540
  msgstr "Innstillinger"
541
 
542
  # tjekkes
543
+ #: counter-core.php:1541
544
+ #: counter-options.php:879
545
+ #: counter.php:240
546
+ #: counter.php:1024
547
+ #: map/map.php:60
548
  #@ cpd
549
  msgid "Reads"
550
  msgstr "Visninger"
551
 
552
+ #: counter.php:1411
553
  #@ cpd
554
  msgid "This post"
555
  msgstr "Dette innlegget"
556
 
557
+ #: counter.php:347
558
  #@ cpd
559
  msgid "Reads per day"
560
  msgstr "Visninger pr dag"
561
 
562
+ #: counter-core.php:793
563
+ #: counter.php:1421
564
  #@ cpd
565
  msgid "Visitors per month"
566
  msgstr "besøkende pr måned"
567
 
568
+ #: counter-core.php:796
569
  #@ cpd
570
  msgid "Latest Counts"
571
  msgstr "Siste treff"
572
 
573
+ #: counter-core.php:799
574
  #@ default
575
  msgid "Plugin"
576
  msgstr "Innstikk"
577
 
578
+ #: counter-core.php:807
579
  #@ cpd
580
  msgid "Reads per Country"
581
  msgstr "Visninger pr land"
582
 
583
+ #: counter-core.php:808
584
  #@ cpd
585
  msgid "Visitors per Country"
586
  msgstr "besøkende pr land"
587
 
588
+ #: counter-core.php:823
589
+ #: counter.php:1339
590
  #@ cpd
591
  msgid "Statistics"
592
  msgstr "Statistikk"
593
 
594
+ #: counter.php:438
595
+ #: counter.php:1254
596
  #@ cpd
597
  msgid "Map"
598
  msgstr "Kart"
657
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
658
  msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
659
 
660
+ #: counter-options.php:726
661
  #@ cpd
662
  msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
663
  msgstr "Du kan få land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
664
 
665
+ #: counter-options.php:831
666
  #@ cpd
667
  msgid "Counter"
668
  msgstr "Teller"
669
 
670
+ #: counter-options.php:876
671
  #@ cpd
672
  msgid "Clients and referrers"
673
  msgstr "Klienter og henvisere"
674
 
675
+ #: counter-options.php:879
676
  #@ cpd
677
  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."
678
  msgstr "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
679
 
680
+ #: counter-options.php:975
681
  #@ cpd
682
  msgid "Local URLs"
683
  msgstr "Lokale URL-er"
684
 
685
+ #: counter-options.php:976
686
  #@ cpd
687
  msgid "Show local referrers too."
688
  msgstr "Vis også lokale henvisere."
689
 
690
+ #: counter-options.php:983
691
  #@ default
692
  msgid "Posts"
693
  msgstr "Innlegg"
694
 
695
+ #: counter-options.php:983
696
  #@ default
697
  msgid "Pages"
698
  msgstr "Sider"
699
 
700
+ #: counter.php:239
701
+ #: counter.php:1415
702
  #@ cpd
703
  msgid "Reads last week"
704
  msgstr "Visninger siste uke"
705
 
706
+ #: counter.php:1144
707
  #@ default
708
  msgid "Category"
709
  msgstr "Kategori"
710
 
711
+ #: counter.php:1147
712
  #@ default
713
  msgid "Tag"
714
  msgstr "Stikkord"
715
 
716
+ #: counter-core.php:759
717
  #@ default
718
  msgid "License"
719
  msgstr "Lisens"
720
 
721
+ #: counter-core.php:794
722
+ #: counter.php:1416
723
  #@ cpd
724
  msgid "Reads per month"
725
  msgstr "Visninger pr måned"
726
 
727
+ #: counter-core.php:803
728
  #@ cpd
729
  msgid "Referrer"
730
  msgstr "Henviser"
731
 
732
+ #: counter.php:1436
733
  #@ default
734
  msgid "Title"
735
  msgstr "Tittel"
736
 
737
+ #: counter-options.php:967
738
  #@ cpd
739
  msgid "Referrers - Entries"
740
  msgstr "Henvisere - Oppføringer"
741
 
742
+ #: counter-options.php:968
743
  #@ cpd
744
  msgid "How many referrers do you want to see on dashboard page?"
745
  msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
746
 
747
+ #: counter-options.php:971
748
  #@ cpd
749
  msgid "Referrers - Days"
750
  msgstr "Henvisere - Dager"
751
 
752
+ #: counter.php:994
753
  #, php-format
754
  #@ cpd
755
  msgid "The %s referrers in last %s days:"
756
  msgstr "De %s henviserne de siste %s dager:"
757
 
758
+ #: counter-core.php:792
759
  #@ cpd
760
  msgid "Visitors online"
761
  msgstr "Gjester online"
766
  msgid "\"Count per Day\" updated to version %s."
767
  msgstr "\"Count per Day\" oppdatert til versjon %s."
768
 
769
+ #: counter-core.php:1076
770
  #@ cpd
771
  msgid "Backup failed! Cannot open file"
772
  msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
773
 
774
+ #: counter-core.php:1195
775
+ #: counter-core.php:1203
776
  #, php-format
777
  #@ cpd
778
  msgid "Backup of counter table saved in %s."
779
  msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
780
 
781
+ #: counter-core.php:1197
782
+ #: counter-core.php:1205
783
  #, php-format
784
  #@ cpd
785
  msgid "Backup of counter options and collection saved in %s."
786
  msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
787
 
788
+ #: counter-options.php:177
789
  #@ cpd
790
  msgid "Collection in progress..."
791
  msgstr "Innsamling pågår ..:"
792
 
793
+ #: counter-options.php:271
794
  #@ cpd
795
  msgid "Get Visitors per Post..."
796
  msgstr "Hent besøkende per innlegg ..."
797
 
798
+ #: counter-options.php:316
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 "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s &gt; størrelse etter = %s)."
803
 
804
+ #: counter-options.php:325
805
  #@ cpd
806
  msgid "Installation of \"Count per Day\" checked"
807
  msgstr "Installasjon av \"Count per day\" sjekket"
808
 
809
+ #: counter-options.php:411
810
  #@ default
811
  msgid "Tools"
812
  msgstr "Verktøy"
813
 
814
+ #: counter-options.php:881
815
  #@ cpd
816
  msgid "Save URL only, no query string."
817
  msgstr "Lagre kun URL, ingen søkestreng."
818
 
819
+ #: counter-options.php:918
820
  #@ cpd
821
  msgid "Who can see it"
822
  msgstr "Hvem kan se det"
823
 
824
+ #: counter-options.php:927
825
  #@ cpd
826
  msgid "custom"
827
  msgstr "tilpasset"
828
 
829
+ #: counter-options.php:929
830
  #@ cpd
831
  msgid "and higher are allowed to see the statistics page."
832
  msgstr "og høyere får lov til å se statistikk side."
833
 
834
+ #: counter-options.php:931
835
  #, php-format
836
  #@ cpd
837
  msgid "Set the %s capability %s a user need:"
838
  msgstr "Sett %s evne %s en bruker trenger:"
839
 
840
+ #: counter-options.php:1018
841
  #@ cpd
842
  msgid "Stylesheet"
843
  msgstr "Stilark"
844
 
845
+ #: counter-options.php:1021
846
  #@ cpd
847
  msgid "NO Stylesheet in Frontend"
848
  msgstr "INGEN stilark i Frontend"
849
 
850
+ #: counter-options.php:1022
851
  #@ cpd
852
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
853
  msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
854
 
855
+ #: counter-options.php:563
856
+ #: counter-options.php:1029
857
  #@ cpd
858
  msgid "Backup"
859
  msgstr "Sikkerhetskopi"
860
 
861
+ #: counter-options.php:1032
862
  #@ cpd
863
  msgid "Entries per pass"
864
  msgstr "Oppføringer per hendelse"
865
 
866
+ #: counter-options.php:1035
867
  #@ cpd
868
  msgid "How many entries should be saved per pass? Default: 10000"
869
  msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
870
 
871
+ #: counter-options.php:1040
872
  #@ cpd
873
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
874
  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."
875
 
876
+ #: counter-options.php:567
877
  #, php-format
878
  #@ cpd
879
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
880
  msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
881
 
882
+ #: counter-options.php:574
883
  #@ cpd
884
  msgid "Backup the database"
885
  msgstr "Sikkerhetskopier databasen"
886
 
887
+ #: counter-options.php:678
888
+ #: counter-options.php:710
889
  #@ cpd
890
  msgid "Collect old data"
891
  msgstr "Samle inn gamle data"
892
 
893
+ #: counter-options.php:664
894
+ #: counter-options.php:683
895
  #, php-format
896
  #@ cpd
897
  msgid "Current size of your counter table %s is %s."
898
  msgstr "Nåværende størrelse på teller tabellen %s er %s."
899
 
900
+ #: counter-options.php:685
901
  #@ cpd
902
  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."
903
  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."
904
 
905
+ #: counter-options.php:690
906
  #, php-format
907
  #@ cpd
908
  msgid "Currently your collection contains data until %s."
909
  msgstr "Foreløpig din innsamling inneholder data inntil %s."
910
 
911
+ #: counter-options.php:694
912
  #@ cpd
913
  msgid "Normally new data will be added to the collection."
914
  msgstr "Normalt vil nye data bli lagt til i samlingen."
915
 
916
+ #: counter-options.php:700
917
  #@ cpd
918
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
919
  msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
920
 
921
+ #: counter-options.php:701
922
  #, php-format
923
  #@ cpd
924
  msgid "All collected data until %s will deleted."
925
  msgstr "Alle innsamlede data inntil %s slettes."
926
 
927
+ #: counter-options.php:706
928
  #, php-format
929
  #@ cpd
930
  msgid "Keep entries of last %s full months + current month in counter table."
931
  msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
932
 
933
+ #: counter-options.php:757
934
  #@ cpd
935
  msgid "ReActivation"
936
  msgstr "ReAktivering"
937
 
938
+ #: counter-options.php:760
939
  #@ cpd
940
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
941
  msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
942
 
943
+ #: counter-options.php:765
944
  #@ cpd
945
  msgid "ReActivate the plugin"
946
  msgstr "ReAktiver innstikket"
947
 
948
+ #: counter.php:246
949
+ #: counter.php:1048
950
  #@ cpd
951
  msgid "Visitors"
952
  msgstr "Besøkende"
953
 
954
+ #: counter.php:249
955
+ #: counter.php:250
956
  #@ cpd
957
  msgid "Most visited day"
958
  msgstr "Mest besøkt dag"
959
 
960
+ #: counter.php:1455
961
  #@ cpd
962
  msgid "drag and drop to sort"
963
  msgstr "dra og slipp for å sortere"
964
 
965
+ #: counter-core.php:798
966
+ #: counter-options.php:967
967
+ #: counter-options.php:971
968
  #@ cpd
969
  msgid "Search strings"
970
  msgstr ""
971
 
972
+ #: counter-core.php:1191
973
  #@ cpd
974
  msgid "Your can download the backup files here and now."
975
  msgstr ""
976
 
977
+ #: counter-core.php:1261
978
  #@ cpd
979
  msgid "Error while reading backup file!"
980
  msgstr ""
981
 
982
+ #: counter-core.php:1265
983
  #, php-format
984
  #@ cpd
985
  msgid "The backup was added to counter table %s."
986
  msgstr ""
987
 
988
+ #: counter-core.php:1267
989
  #, php-format
990
  #@ cpd
991
  msgid "The counter table %s was restored from backup."
992
  msgstr ""
993
 
994
+ #: counter-core.php:1284
995
  #@ cpd
996
  msgid "Options restored from backup."
997
  msgstr ""
998
 
999
+ #: counter-options.php:340
1000
  #@ cpd
1001
  msgid "Old search strings deleted"
1002
  msgstr ""
1003
 
1004
+ #: counter-options.php:355
1005
  #@ cpd
1006
  msgid "Clients and referers deleted"
1007
  msgstr ""
1008
 
1009
+ #: counter-options.php:570
1010
  #@ cpd
1011
  msgid "Download only"
1012
  msgstr ""
1013
 
1014
+ #: counter-options.php:602
1015
  #@ cpd
1016
  msgid "Settings and collections"
1017
  msgstr ""
1018
 
1019
+ #: counter-options.php:607
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Counter table %s"
1023
  msgstr ""
1024
 
1025
+ #: counter-options.php:614
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:614
1032
  #@ cpd
1033
  msgid "Add"
1034
  msgstr ""
1035
 
1036
+ #: counter-options.php:618
1037
  #, php-format
1038
  #@ cpd
1039
  msgid "Restore data from the backup file %s ?"
1040
  msgstr ""
1041
 
1042
+ #: counter-options.php:618
1043
  #@ default
1044
  msgid "Restore"
1045
  msgstr ""
1046
 
1047
+ #: counter-options.php:620
1048
  #@ default
1049
  msgid "Delete"
1050
  msgstr ""
1051
 
1052
+ #: counter-options.php:621
1053
  #, php-format
1054
  #@ cpd
1055
  msgid "Delete the backup file %s ?"
1056
  msgstr ""
1057
 
1058
+ #: counter-options.php:627
1059
  #@ cpd
1060
  msgid "add backup to current counter table"
1061
  msgstr ""
1062
 
1063
+ #: counter-options.php:628
1064
  #@ cpd
1065
  msgid "replace current counter table with with backup"
1066
  msgstr ""
1067
 
1068
+ #: counter-options.php:629
1069
  #@ cpd
1070
  msgid "delete backup file"
1071
  msgstr ""
1072
 
1073
+ #: counter-options.php:654
1074
  #, php-format
1075
  #@ cpd
1076
  msgid "Delete search strings older than %s days."
1077
  msgstr ""
1078
 
1079
+ #: counter-options.php:658
1080
  #@ cpd
1081
  msgid "Delete search strings"
1082
  msgstr ""
1083
 
1084
+ #: counter-options.php:665
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:669
1091
  #@ cpd
1092
  msgid "Delete clients and referers"
1093
  msgstr ""
1094
 
1095
+ #: counter.php:1150
1096
  #@ default
1097
  msgid "Front page"
1098
  msgstr ""
1099
 
1100
+ #: counter.php:1198
1101
  #, php-format
1102
  #@ cpd
1103
  msgid "The %s most searched strings:"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1207
1107
  #, php-format
1108
  #@ cpd
1109
  msgid "The search strings of the last %s days:"
1110
  msgstr ""
1111
 
1112
+ #: counter.php:1371
1113
  #@ default
1114
  msgid "_name"
1115
  msgstr ""
1116
 
1117
+ #: counter-core.php:1000
1118
  #@ cpd
1119
  msgid "Export failed! Cannot open file."
1120
  msgstr ""
1121
 
1122
+ #: counter-core.php:1048
1123
  #@ cpd
1124
  msgid "Download the export file:"
1125
  msgstr ""
1126
 
1127
+ #: counter-core.php:1103
1128
  #, php-format
1129
  #@ cpd
1130
  msgid "Backup of %s entries in progress. Every point comprises %s entries."
1131
  msgstr ""
1132
 
1133
+ #: counter-options.php:292
1134
  #@ cpd
1135
  msgid "Deleting old data..."
1136
  msgstr ""
1137
 
1138
+ #: counter-options.php:496
1139
  #@ cpd
1140
  msgid "Most Industrious Visitors"
1141
  msgstr ""
1142
 
1143
+ #: counter-options.php:500
1144
  #, php-format
1145
  #@ cpd
1146
  msgid "Show the %s most industrious visitors of the last %s days"
1147
  msgstr ""
1148
 
1149
+ #: counter-options.php:547
1150
  #@ cpd
1151
  msgid "Export"
1152
  msgstr ""
1153
 
1154
+ #: counter-options.php:551
1155
  #, php-format
1156
  #@ cpd
1157
  msgid "Export the last %s days as CSV-File"
1158
  msgstr ""
1159
 
1160
+ #: counter-options.php:555
1161
  #@ cpd
1162
  msgid "Export entries"
1163
  msgstr ""
1164
 
1165
+ #: counter-options.php:888
1166
  #@ cpd
1167
  msgid "Post types"
1168
  msgstr ""
1169
 
1170
+ #: counter-options.php:891
1171
  #@ cpd
1172
  msgid "Only count these post types. Leave empty to count them all."
1173
  msgstr ""
1174
 
1175
+ #: counter-options.php:892
1176
  #, php-format
1177
  #@ cpd
1178
  msgid "Current post types: %s"
1179
  msgstr ""
1180
 
1181
+ #: counter.php:248
1182
  #@ cpd
1183
  msgid "Since"
1184
  msgstr ""
1185
 
1186
+ #: counter.php:1507
1187
+ #: counter.php:1539
1188
  #@ cpd
1189
  msgid "Popular Posts"
1190
  msgstr ""
1191
 
1192
+ #: counter.php:1509
1193
  #@ cpd
1194
  msgid "List of Popular Posts"
1195
  msgstr ""
1196
 
1197
+ #: counter.php:1547
1198
  #@ cpd
1199
  msgid "Title:"
1200
  msgstr ""
1201
 
1202
+ #: counter.php:1551
1203
  #@ cpd
1204
  msgid "Days:"
1205
  msgstr ""
1206
 
1207
+ #: counter.php:1555
1208
  #@ cpd
1209
  msgid "Limit:"
1210
  msgstr ""
1211
 
1212
+ #: counter.php:1559
1213
  #@ cpd
1214
  msgid "Show header:"
1215
  msgstr ""
1216
 
1217
+ #: counter.php:1563
1218
  #@ cpd
1219
  msgid "Show counters:"
1220
  msgstr ""
1221
 
1222
+ #: counter-options.php:861
1223
+ #@ cpd
1224
+ msgid "Exclude Countries"
1225
+ msgstr ""
1226
+
1227
+ #: counter-options.php:864
1228
+ #@ cpd
1229
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1230
+ msgstr ""
1231
+
1232
+ #: counter-options.php:884
1233
+ #@ cpd
1234
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1235
+ msgstr ""
1236
+
locale/cpd-nl_NL.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,346 +20,347 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
325
 
326
- #: counter-options.php:63
327
  #, php-format
328
  #@ cpd
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
331
 
332
- #: counter-options.php:66
333
  #@ cpd
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,51 +380,51 @@ msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of d
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?"
391
 
392
- #: counter-options.php:106
393
  #, php-format
394
  #@ cpd
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,112 +435,112 @@ 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,66 +572,66 @@ msgstr "verwijderen"
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,105 +656,105 @@ msgstr "PostID"
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"
@@ -764,456 +765,471 @@ msgstr "Bezoekers online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:19:59+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: translation by WordPressWebshop.com <info@wppg.me>\n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Instellingen bijgewerkt"
27
 
28
+ #: counter-options.php:121
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "Database schoongemaakt. %s rijen verwijderd."
33
 
34
+ #: counter-options.php:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEÏNSTALLEREN Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "eTabel %s verwijderd"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opties verwijderd"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstallatie"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Klik hier"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Tijd online"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Aangemelde Gebruikers"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "ook tellen"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Automatisch tellen"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots te negeren"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Aktualiseren opties"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Database schoonmaken"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "WAARSCHUWING"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Ja"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistieken"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Totaal aantal bezoekers"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Bezoekers op dit moment online"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Bezoekers vandaag"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Bezoekers gisteren"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Bezoekers vorige week"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Teller start bij"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Bezoekers per dag"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Bezoekers per maand"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Bezoekers per bericht"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Teller gereset"
226
 
227
+ #: counter-options.php:938
228
+ #: counter-options.php:942
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:941
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Laatste Tellingen - Berichten"
237
 
238
+ #: counter-options.php:945
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Laatste Tellingen - Dagen"
242
 
243
+ #: counter-options.php:946
244
+ #: counter-options.php:950
245
+ #: counter-options.php:972
246
  #@ cpd
247
  msgid "How many days do you want look back?"
248
  msgstr "Hoeveel dagen wil je terugkijken?"
249
 
250
+ #: counter-options.php:986
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "Laat in lijsten zien"
254
 
255
+ #: counter-options.php:987
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:773
261
+ #: counter-options.php:783
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Reset de teller"
265
 
266
+ #: counter-options.php:776
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:776
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:653
278
+ #: counter-options.php:412
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Instellingen"
282
 
283
+ #: counter-core.php:1541
284
+ #: counter-options.php:879
285
+ #: counter.php:240
286
+ #: counter.php:1024
287
+ #: map/map.php:60
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Vertoningen"
291
 
292
+ #: counter-core.php:796
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Laatste Tellingen"
296
 
297
+ #: counter-options.php:949
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Grafiek - Dagen"
301
 
302
+ #: counter-options.php:953
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Grafiek - Hoogte"
306
 
307
+ #: counter-options.php:954
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "Hoogte van de grootste staaf"
311
 
312
+ #: counter.php:1411
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Dit bericht"
316
 
317
+ #: counter-options.php:902
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr "Dashboard"
321
 
322
+ #: counter.php:347
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Hits per dag"
326
 
327
+ #: counter-options.php:66
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
332
 
333
+ #: counter-options.php:69
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "volgende aktualiseren"
337
 
338
+ #: counter-options.php:723
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - Landen"
342
 
343
+ #: counter-options.php:732
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Aktualiseren data van oude tellingen"
347
 
348
+ #: counter-options.php:744
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Aktualiseren GeoIP databank"
352
 
353
+ #: counter-options.php:739
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
357
 
358
+ #: counter-options.php:749
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Meer informatie over GeoIP"
362
 
363
+ #: counter-core.php:807
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "vertoningen per Land"
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
382
 
383
+ #: counter-options.php:958
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "Landen"
387
 
388
+ #: counter-options.php:959
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
392
 
393
+ #: counter-options.php:109
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
398
 
399
+ #: counter-options.php:432
400
  #: massbots.php:46
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Massa Bots"
404
 
405
+ #: counter-options.php:436
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
410
 
411
+ #: counter-options.php:437
412
+ #: counter-options.php:501
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "laat zien"
418
 
419
+ #: counter-options.php:463
420
+ #: counter-options.php:479
421
+ #: counter-options.php:526
422
  #, php-format
423
  #@ cpd
424
  msgid "Delete these %s counts"
425
  msgstr "Verwijder deze %s tellingen"
426
 
427
+ #: counter.php:963
428
  #@ cpd
429
  msgid "Other"
430
  msgstr "Andere"
435
  msgid "Front page displays"
436
  msgstr "Voorpagina weergaves"
437
 
438
+ #: counter-core.php:802
439
+ #: counter-options.php:963
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Browser"
443
 
444
+ #: counter-options.php:445
445
+ #: counter-options.php:509
446
  #@ cpd
447
  msgid "IP"
448
  msgstr "IP"
449
 
450
+ #: counter-options.php:446
451
+ #: counter-options.php:510
452
  #: notes.php:88
453
  #@ cpd
454
  #@ default
455
  msgid "Date"
456
  msgstr "Datum"
457
 
458
+ #: counter-options.php:447
459
+ #: counter-options.php:511
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Browser"
463
 
464
+ #: counter-options.php:448
465
+ #: counter-options.php:512
466
  #@ cpd
467
  msgid "Views"
468
  msgstr "Hits"
469
 
470
+ #: counter-options.php:994
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Beginwaarden"
474
 
475
+ #: counter-options.php:998
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
479
 
480
+ #: counter-options.php:1002
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Startdatum"
484
 
485
+ #: counter-options.php:1003
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Je oude teller start op?"
489
 
490
+ #: counter-options.php:1006
491
+ #: counter-options.php:1010
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Beginwaarde van de telling"
495
 
496
+ #: counter-options.php:1007
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
500
 
501
+ #: counter-options.php:814
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Ondersteuning"
505
 
506
+ #: counter-core.php:757
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
510
 
511
+ #: counter-core.php:758
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
516
 
517
+ #: counter.php:893
518
  #@ default
519
  msgid "Show"
520
  msgstr "Vertonen"
521
 
522
+ #: counter.php:1135
523
  #@ default
524
  msgid "Edit Post"
525
  msgstr "Bericht Bewerken"
526
 
527
+ #: counter-core.php:756
528
  #, php-format
529
  #@ cpd
530
  msgid "Time for Count per Day: <code>%s</code>."
531
  msgstr "Tijd voor Count per Day: <code>%s</code>."
532
 
533
+ #: counter-options.php:842
534
  #@ cpd
535
  msgid "until User Level"
536
  msgstr "Tot Gebruikers Niveau"
537
 
538
+ #: counter-core.php:799
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plugin"
542
 
543
+ #: counter.php:895
544
  #: notes.php:55
545
  #: notes.php:89
546
  #@ cpd
572
  msgid "edit"
573
  msgstr "bewerken"
574
 
575
+ #: counter-options.php:1011
576
  #@ cpd
577
  msgid "Add this value to \"Total reads\"."
578
  msgstr "Voeg deze waarde toe aan \"Totale vertoningen\"."
579
 
580
+ #: counter.php:236
581
+ #: counter.php:1412
582
  #@ cpd
583
  msgid "Total reads"
584
  msgstr "Totale vertoningen"
585
 
586
+ #: counter.php:237
587
+ #: counter.php:1413
588
  #@ cpd
589
  msgid "Reads today"
590
  msgstr "vertoningen vandaag"
591
 
592
+ #: counter.php:238
593
+ #: counter.php:1414
594
  #@ cpd
595
  msgid "Reads yesterday"
596
  msgstr "vertoningen gisteren"
597
 
598
+ #: counter-options.php:868
599
  #@ cpd
600
  msgid "Anonymous IP"
601
  msgstr "Anonieme IP"
602
 
603
+ #: counter-options.php:872
604
  #@ cpd
605
  msgid "Cache"
606
  msgstr "Cache"
607
 
608
+ #: counter-options.php:873
609
  #@ cpd
610
  msgid "I use a cache plugin. Count these visits with ajax."
611
  msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
612
 
613
+ #: counter-options.php:964
614
  #@ cpd
615
  msgid "Substring of the user agent, separated by comma"
616
  msgstr "Substring van de user agent, gescheiden door een comma"
617
 
618
+ #: counter-options.php:1048
619
  #@ cpd
620
  msgid "Debug mode"
621
  msgstr "Debugmodus"
622
 
623
+ #: counter-options.php:1050
624
  #@ cpd
625
  msgid "Show debug informations at the bottom of all pages."
626
  msgstr "Geef debug informatie weer op de bodem van elke pagina."
627
 
628
+ #: counter-core.php:808
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Bezoekers per Land"
632
 
633
+ #: counter.php:438
634
+ #: counter.php:1254
635
  #@ cpd
636
  msgid "Map"
637
  msgstr "Kaart"
656
  msgid "no data found"
657
  msgstr "geen data gevonden"
658
 
659
+ #: counter-options.php:726
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 "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!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Teller"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Clients en verwijzingen"
673
 
674
+ #: counter-options.php:879
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 "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Lokale URLs"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Geef lokale verwijzingen ook weer."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Berichten"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Pagina's"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "vertoningen vorige week"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Categorie"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Tag"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "Licentie"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "vertoningen per maand"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Verwijzing"
730
 
731
+ #: counter.php:1436
732
  #@ default
733
  msgid "Title"
734
  msgstr "Titel"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Verwijzingen - Entries"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Verwijzingen - Dagen"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "De %s verwijzingen in de laatste %s dagen:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Bezoekers online"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" bijgewerkt naar versie %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Backup mislukt! Kan bestand niet openen"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Backup van teller tabel opgeslagen in %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Backup van teller opties en verzameling opgeslagen in %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Bezig met verzamelen..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Verkrijg Bezoekers per Bericht..."
796
 
797
+ #: counter-options.php:316
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 registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s &gt; grootte na = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Installatie van \"Count per Day\" gecontroleerd"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Hulpmiddelen"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Bewaar alleen de URL, geen query string."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Wie het kan zien"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "aangepast"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "en hoger kunnen de statistieken pagina zien."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Stylesheet"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "Geen Stylesheet in Frontend"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Backup"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Registraties per keer"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
869
 
870
+ #: counter-options.php:1040
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 "Als je PHP geheugen limiet minder is dan 50 MB en je krijgt een witte pagina of een foutmelding probeer dan een lagere waarde."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Maak een backup van de database"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Verzamel oude data"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Huidige grootte van je teller tabel %s is %s."
898
 
899
+ #: counter-options.php:685
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 "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."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Je verzameling bevat data tot %s."
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
914
 
915
+ #: counter-options.php:700
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
919
 
920
+ #: counter-options.php:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Alle verzamelde data tot %s wordt verwijderd."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "ReActivatie"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "ReActiveer de plugin"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Bezoekers"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Meest bezochte dag"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "slepen en neerzetten om te sorteren"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-pl_PL.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,473 +20,473 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Opcje zaktualizowane"
27
 
28
- #: counter-options.php:63
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Kraje zaktualizowane. <b>%s</b> wpisów w %s bez kraju"
33
 
34
- #: counter-options.php:66
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "Następna aktualizacja"
38
 
39
- #: counter-options.php:106
40
  #, php-format
41
  #@ cpd
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,65 +497,66 @@ 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,37 +601,37 @@ msgstr "usunąć"
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,105 +656,105 @@ msgstr "ID wpisu"
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 ""
@@ -764,456 +765,471 @@ msgstr ""
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:04+0000\n"
7
  "Last-Translator: LeXuS <lexus@intrakardial.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Opcje zaktualizowane"
27
 
28
+ #: counter-options.php:66
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Kraje zaktualizowane. <b>%s</b> wpisów w %s bez kraju"
33
 
34
+ #: counter-options.php:69
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "Następna aktualizacja"
38
 
39
+ #: counter-options.php:109
40
  #, php-format
41
  #@ cpd
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Masowe boty wymazane. %s wpisów usuniętych."
44
 
45
+ #: counter-options.php:121
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:131
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Licznik skasowany"
55
 
56
+ #: counter-options.php:136
57
+ #: counter-options.php:806
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "USUŃ Count per Day"
61
 
62
+ #: counter-options.php:141
63
+ #: counter-options.php:142
64
+ #: counter-options.php:143
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "Tabela %s usunięta"
69
 
70
+ #: counter-options.php:144
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Opcje usunięte"
74
 
75
+ #: counter-options.php:385
76
+ #: counter-options.php:792
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Odinstalowanie"
80
 
81
+ #: counter-options.php:386
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Kliknij tutaj"
85
 
86
+ #: counter-options.php:386
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:835
92
  #@ cpd
93
  msgid "Online time"
94
  msgstr "Czas bycia online"
95
 
96
+ #: counter-options.php:836
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:839
102
  #@ cpd
103
  msgid "Logged on Users"
104
  msgstr "Zalogowani użytkownicy"
105
 
106
+ #: counter-options.php:841
107
  #@ cpd
108
  msgid "count too"
109
  msgstr "również liczyć"
110
 
111
+ #: counter-options.php:842
112
  #@ cpd
113
  msgid "until User Level"
114
  msgstr "do poziomu użytkownika"
115
 
116
+ #: counter-options.php:853
117
  #@ cpd
118
  msgid "Auto counter"
119
  msgstr "Licznik"
120
 
121
+ #: counter-options.php:854
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:857
127
  #@ cpd
128
  msgid "Bots to ignore"
129
  msgstr "Boty do ignorowania"
130
 
131
+ #: counter-options.php:902
132
  #@ default
133
  msgid "Dashboard"
134
  msgstr ""
135
 
136
+ #: counter-core.php:795
137
+ #: counter-options.php:937
138
  #@ cpd
139
  msgid "Visitors per post"
140
  msgstr "Gości na wpisie"
141
 
142
+ #: counter-options.php:938
143
+ #: counter-options.php:942
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:941
149
  #@ cpd
150
  msgid "Latest Counts - Posts"
151
  msgstr "Ostatnie Odsłony - Wpisy"
152
 
153
+ #: counter-options.php:945
154
  #@ cpd
155
  msgid "Latest Counts - Days"
156
  msgstr "Ostatnie Odsłony - Dni"
157
 
158
+ #: counter-options.php:946
159
+ #: counter-options.php:950
160
+ #: counter-options.php:972
161
  #@ cpd
162
  msgid "How many days do you want look back?"
163
  msgstr "Ile dni chcesz patrzeć wstecz?"
164
 
165
+ #: counter-options.php:949
166
  #@ cpd
167
  msgid "Chart - Days"
168
  msgstr "Wykres - Dni"
169
 
170
+ #: counter-options.php:953
171
  #@ cpd
172
  msgid "Chart - Height"
173
  msgstr "Wykres - Wysokość"
174
 
175
+ #: counter-options.php:954
176
  #@ cpd
177
  msgid "Height of the biggest bar"
178
  msgstr "Wysokość najwyższego słupka"
179
 
180
+ #: counter-options.php:958
181
  #@ cpd
182
  msgid "Countries"
183
  msgstr "Państwa"
184
 
185
+ #: counter-options.php:959
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:986
191
  #@ cpd
192
  msgid "Show in lists"
193
  msgstr "Pokaż na listach"
194
 
195
+ #: counter-options.php:987
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:994
201
  #@ cpd
202
  msgid "Start Values"
203
  msgstr "Startowe Wartości"
204
 
205
+ #: counter-options.php:998
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:1002
211
  #@ cpd
212
  msgid "Start date"
213
  msgstr "Data rozpoczęcia"
214
 
215
+ #: counter-options.php:1003
216
  #@ cpd
217
  msgid "Your old Counter starts at?"
218
  msgstr "Stary licznik zaczął w?"
219
 
220
+ #: counter-options.php:1006
221
+ #: counter-options.php:1010
222
  #@ cpd
223
  msgid "Start count"
224
  msgstr "Stan początkowy licznika"
225
 
226
+ #: counter-options.php:1007
227
  #@ cpd
228
  msgid "Add this value to \"Total visitors\"."
229
  msgstr "Dodaj tą wartość do \"Gości razem\"."
230
 
231
+ #: counter-options.php:1011
232
  #@ cpd
233
  msgid "Add this value to \"Total reads\"."
234
  msgstr "Dodaj tą wartość do \"Odsłon razem\"."
235
 
236
+ #: counter-options.php:1055
237
  #@ cpd
238
  msgid "Update options"
239
  msgstr "Aktualizuj opcje"
240
 
241
+ #: counter-options.php:723
242
  #@ cpd
243
  msgid "GeoIP - Countries"
244
  msgstr "GeoIP - Państwa"
245
 
246
+ #: counter-options.php:732
247
  #@ cpd
248
  msgid "Update old counter data"
249
  msgstr "Aktualizuj stare dane licznika"
250
 
251
+ #: counter-options.php:744
252
  #@ cpd
253
  msgid "Update GeoIP database"
254
  msgstr "Aktualizuj bazę danych GeoIP"
255
 
256
+ #: counter-options.php:739
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:749
262
  #@ cpd
263
  msgid "More informations about GeoIP"
264
  msgstr "Więcej informacji o GeoIP"
265
 
266
+ #: counter-options.php:432
267
  #: massbots.php:46
268
  #@ cpd
269
  msgid "Mass Bots"
270
  msgstr "Masowe boty"
271
 
272
+ #: counter-options.php:436
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:437
279
+ #: counter-options.php:501
280
  #: notes.php:84
281
  #: userperspan.php:56
282
  #@ cpd
283
  msgid "show"
284
  msgstr "pokaż"
285
 
286
+ #: counter-options.php:445
287
+ #: counter-options.php:509
288
  #@ cpd
289
  msgid "IP"
290
  msgstr "IP"
291
 
292
+ #: counter-options.php:446
293
+ #: counter-options.php:510
294
  #: notes.php:88
295
  #@ cpd
296
  #@ default
297
  msgid "Date"
298
  msgstr "Data"
299
 
300
+ #: counter-options.php:447
301
+ #: counter-options.php:511
302
  #@ cpd
303
  msgid "Client"
304
  msgstr "Klient"
305
 
306
+ #: counter-options.php:448
307
+ #: counter-options.php:512
308
  #@ cpd
309
  msgid "Views"
310
  msgstr "Wyświetlenia"
311
 
312
+ #: counter-options.php:463
313
+ #: counter-options.php:479
314
+ #: counter-options.php:526
315
  #, php-format
316
  #@ cpd
317
  msgid "Delete these %s counts"
318
  msgstr "Usuń te s% dane"
319
 
320
+ #: counter-options.php:640
321
+ #: counter-options.php:648
322
  #@ cpd
323
  msgid "Clean the database"
324
  msgstr "Wyczyść bazę danych"
325
 
326
+ #: counter-options.php:644
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:773
332
+ #: counter-options.php:783
333
  #@ cpd
334
  msgid "Reset the counter"
335
  msgstr "Skasuj licznik"
336
 
337
+ #: counter-options.php:776
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:795
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:796
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:799
353
  #@ cpd
354
  msgid "WARNING"
355
  msgstr "UWAGA"
356
 
357
+ #: counter-options.php:800
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:802
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:782
368
+ #: counter-options.php:805
369
  #@ cpd
370
  msgid "Yes"
371
  msgstr "Tak"
372
 
373
+ #: counter-options.php:806
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:814
379
  #@ cpd
380
  msgid "Support"
381
  msgstr "Wsparcie"
382
 
383
+ #: counter-core.php:756
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:757
390
  #@ cpd
391
  msgid "Bug? Problem? Question? Hint? Praise?"
392
  msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
393
 
394
+ #: counter-core.php:758
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:236
401
+ #: counter.php:1412
402
  #@ cpd
403
  msgid "Total reads"
404
  msgstr "Odsłon razem"
405
 
406
+ #: counter.php:237
407
+ #: counter.php:1413
408
  #@ cpd
409
  msgid "Reads today"
410
  msgstr "Odsłon dzisiaj"
411
 
412
+ #: counter.php:238
413
+ #: counter.php:1414
414
  #@ cpd
415
  msgid "Reads yesterday"
416
  msgstr "Odsłon wczoraj"
417
 
418
+ #: counter-core.php:791
419
+ #: counter.php:241
420
+ #: counter.php:1223
421
+ #: counter.php:1417
422
  #@ cpd
423
  msgid "Total visitors"
424
  msgstr "Gości razem"
425
 
426
+ #: counter.php:242
427
+ #: counter.php:1423
428
  #@ cpd
429
  msgid "Visitors currently online"
430
  msgstr "Goście obecnie online"
431
 
432
+ #: counter.php:243
433
+ #: counter.php:1418
434
  #@ cpd
435
  msgid "Visitors today"
436
  msgstr "Gości dzisiaj"
437
 
438
+ #: counter.php:244
439
+ #: counter.php:1419
440
  #@ cpd
441
  msgid "Visitors yesterday"
442
  msgstr "Gości wczoraj"
443
 
444
+ #: counter.php:245
445
+ #: counter.php:1420
446
  #@ cpd
447
  msgid "Visitors last week"
448
  msgstr "Gości w preszłym tygodniu"
449
 
450
+ #: counter-core.php:797
451
+ #: counter.php:247
452
+ #: counter.php:348
453
+ #: counter.php:1225
454
+ #: counter.php:1422
455
  #: userperspan.php:46
456
  #@ cpd
457
  msgid "Visitors per day"
458
  msgstr "Gości dziennie"
459
 
460
+ #: counter.php:974
461
+ #: counter.php:1424
462
  #@ cpd
463
  msgid "Counter starts on"
464
  msgstr "Licznone od"
465
 
466
+ #: counter.php:895
467
  #: notes.php:55
468
  #: notes.php:89
469
  #@ cpd
470
  msgid "Notes"
471
  msgstr "Notatka"
472
 
473
+ #: counter.php:776
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:893
480
  #@ default
481
  msgid "Show"
482
  msgstr ""
483
 
484
+ #: counter.php:963
485
  #@ cpd
486
  msgid "Other"
487
  msgstr "Inne"
488
 
489
+ #: counter.php:1135
490
  #@ default
491
  msgid "Edit Post"
492
  msgstr ""
497
  msgid "Front page displays"
498
  msgstr ""
499
 
500
+ #: counter-core.php:653
501
+ #: counter-options.php:412
502
  #@ default
503
  msgid "Settings"
504
  msgstr ""
505
 
506
+ #: counter-core.php:1541
507
+ #: counter-options.php:879
508
+ #: counter.php:240
509
+ #: counter.php:1024
510
+ #: map/map.php:60
511
  #@ cpd
512
  msgid "Reads"
513
  msgstr "Odsłon"
514
 
515
+ #: counter.php:1411
516
  #@ cpd
517
  msgid "This post"
518
  msgstr "Ten wpis"
519
 
520
+ #: counter.php:347
521
  #@ cpd
522
  msgid "Reads per day"
523
  msgstr "Odsłon dziennie"
524
 
525
+ #: counter-core.php:793
526
+ #: counter.php:1421
527
  #@ cpd
528
  msgid "Visitors per month"
529
  msgstr "Gości miesięcznie"
530
 
531
+ #: counter-core.php:802
532
+ #: counter-options.php:963
533
  #@ cpd
534
  msgid "Browsers"
535
  msgstr "Przeglądarki"
536
 
537
+ #: counter-core.php:796
538
  #@ cpd
539
  msgid "Latest Counts"
540
  msgstr "Ostatnie Odsłony"
541
 
542
+ #: counter-core.php:799
543
  #@ default
544
  msgid "Plugin"
545
  msgstr ""
546
 
547
+ #: counter-core.php:807
548
  #@ cpd
549
  msgid "Reads per Country"
550
  msgstr "Odsłon na państwo"
551
 
552
+ #: counter-core.php:823
553
+ #: counter.php:1339
554
  #@ cpd
555
  msgid "Statistics"
556
  msgstr "Statystyki"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "Mapa"
601
  msgid "edit"
602
  msgstr "edytować"
603
 
604
+ #: counter-options.php:868
605
  #@ cpd
606
  msgid "Anonymous IP"
607
  msgstr "Anonimowy IP"
608
 
609
+ #: counter-options.php:872
610
  #@ cpd
611
  msgid "Cache"
612
  msgstr "Cache"
613
 
614
+ #: counter-options.php:873
615
  #@ cpd
616
  msgid "I use a cache plugin. Count these visits with ajax."
617
  msgstr "Używam cache plugin. Licz wizyty z AJAX."
618
 
619
+ #: counter-options.php:964
620
  #@ cpd
621
  msgid "Substring of the user agent, separated by comma"
622
  msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
623
 
624
+ #: counter-options.php:1048
625
  #@ cpd
626
  msgid "Debug mode"
627
  msgstr "Tryb debugowania"
628
 
629
+ #: counter-options.php:1050
630
  #@ cpd
631
  msgid "Show debug informations at the bottom of all pages."
632
  msgstr "Pokaż debug analizę na dole wszystkich stron."
633
 
634
+ #: counter-core.php:808
635
  #@ cpd
636
  msgid "Visitors per Country"
637
  msgstr "Gości na państwo"
656
  msgid "no data found"
657
  msgstr "Nie znaleziono danych"
658
 
659
+ #: counter-options.php:726
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 "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ć!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Licznik"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Przeglądarka i referrer"
673
 
674
+ #: counter-options.php:879
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 "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."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Lokalne adresy URL"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Pokaż też lokalny referrer."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr ""
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr ""
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Odsłon w zeszłym tygodniu"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr ""
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr ""
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr ""
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Odsłon miesięcznie"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Referrer"
730
 
731
+ #: counter.php:1436
732
  #@ default
733
  msgid "Title"
734
  msgstr ""
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr ""
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr ""
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr ""
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr ""
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr ""
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr ""
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr ""
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr ""
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr ""
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr ""
796
 
797
+ #: counter-options.php:316
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:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr ""
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr ""
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr ""
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr ""
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr ""
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr ""
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr ""
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr ""
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr ""
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr ""
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr ""
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr ""
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr ""
869
 
870
+ #: counter-options.php:1040
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:567
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:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr ""
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr ""
898
 
899
+ #: counter-options.php:685
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:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr ""
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr ""
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr ""
925
 
926
+ #: counter-options.php:706
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:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr ""
936
 
937
+ #: counter-options.php:760
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:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr ""
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr ""
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr ""
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr ""
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-pt_BR.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,387 +20,387 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
221
 
222
- #: counter-options.php:63
223
  #, php-format
224
  #@ cpd
225
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
226
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
227
 
228
- #: counter-options.php:66
229
  #@ cpd
230
  msgid "update next"
231
  msgstr "Atualizar proximo"
232
 
233
- #: counter-options.php:106
234
  #, php-format
235
  #@ cpd
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,42 +411,43 @@ 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,81 +467,81 @@ msgstr "Nova base de dados GeoIP instalada."
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,66 +572,66 @@ msgstr "Apagar"
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,105 +656,105 @@ msgstr "PostID"
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"
@@ -764,456 +765,471 @@ msgstr "Visitantes online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:23+0000\n"
7
  "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Op&ccedil;&otilde;es atualizadas"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALAR o Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabela %s apagada"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Op&ccedil;&otilde;es apagadas"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstalar"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clique aqui"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Per&iacute;odo online"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usu&aacute;rios logados"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar tamb&eacute;m"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Autocontador"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a serem ignorados"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atualizar op&ccedil;&otilde;es"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Limpar o banco de dados"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATEN&Ccedil;&Atilde;O"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sim, quero"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estat&iacute;sticas"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes online"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visitas ontem"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visitas semana passada"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "In&iacute;cio da contagem"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
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:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitas por m&ecirc;s"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitas por post"
221
 
222
+ #: counter-options.php:66
223
  #, php-format
224
  #@ cpd
225
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
226
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
227
 
228
+ #: counter-options.php:69
229
  #@ cpd
230
  msgid "update next"
231
  msgstr "Atualizar proximo"
232
 
233
+ #: counter-options.php:109
234
  #, php-format
235
  #@ cpd
236
  msgid "Mass Bots cleaned. %s counts deleted."
237
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
238
 
239
+ #: counter-options.php:131
240
  #@ cpd
241
  msgid "Counter reseted."
242
  msgstr "Contador reiniciado."
243
 
244
+ #: counter-options.php:902
245
  #@ default
246
  msgid "Dashboard"
247
  msgstr "Painel"
248
 
249
+ #: counter-options.php:938
250
+ #: counter-options.php:942
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:941
256
  #@ cpd
257
  msgid "Latest Counts - Posts"
258
  msgstr "Contagens Recentes - Posts"
259
 
260
+ #: counter-options.php:945
261
  #@ cpd
262
  msgid "Latest Counts - Days"
263
  msgstr "Contagens Recentes - Dias"
264
 
265
+ #: counter-options.php:946
266
+ #: counter-options.php:950
267
+ #: counter-options.php:972
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:949
273
  #@ cpd
274
  msgid "Chart - Days"
275
  msgstr "Gr&aacute;fico - Dias"
276
 
277
+ #: counter-options.php:953
278
  #@ cpd
279
  msgid "Chart - Height"
280
  msgstr "Gr&aacute;fico - Altura"
281
 
282
+ #: counter-options.php:954
283
  #@ cpd
284
  msgid "Height of the biggest bar"
285
  msgstr "Altura da barra maior"
286
 
287
+ #: counter-options.php:958
288
  #@ cpd
289
  msgid "Countries"
290
  msgstr "Pa&iacute;ses"
291
 
292
+ #: counter-options.php:959
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:986
298
  #@ cpd
299
  msgid "Show in lists"
300
  msgstr "Exibir em listas"
301
 
302
+ #: counter-options.php:987
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:723
308
  #@ cpd
309
  msgid "GeoIP - Countries"
310
  msgstr "GeoIP - Pa&iacute;ses"
311
 
312
+ #: counter-options.php:732
313
  #@ cpd
314
  msgid "Update old counter data"
315
  msgstr "Atualizar dados de contadores antigos"
316
 
317
+ #: counter-options.php:744
318
  #@ cpd
319
  msgid "Update GeoIP database"
320
  msgstr "Atualizar Base de Dados GeoIP"
321
 
322
+ #: counter-options.php:739
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:749
328
  #@ cpd
329
  msgid "More informations about GeoIP"
330
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
331
 
332
+ #: counter-options.php:432
333
  #: massbots.php:46
334
  #@ cpd
335
  msgid "Mass Bots"
336
  msgstr "Mass Bots"
337
 
338
+ #: counter-options.php:436
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:437
345
+ #: counter-options.php:501
346
  #: notes.php:84
347
  #: userperspan.php:56
348
  #@ cpd
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
+ #: counter-options.php:445
353
+ #: counter-options.php:509
354
  #@ cpd
355
  msgid "IP"
356
  msgstr "IP"
357
 
358
+ #: counter-options.php:446
359
+ #: counter-options.php:510
360
  #: notes.php:88
361
  #@ cpd
362
  #@ default
363
  msgid "Date"
364
  msgstr "Data"
365
 
366
+ #: counter-options.php:447
367
+ #: counter-options.php:511
368
  #@ cpd
369
  msgid "Client"
370
  msgstr "Cliente"
371
 
372
+ #: counter-options.php:448
373
+ #: counter-options.php:512
374
  #@ cpd
375
  msgid "Views"
376
  msgstr "Exibi&ccedil;&otilde;es"
377
 
378
+ #: counter-options.php:463
379
+ #: counter-options.php:479
380
+ #: counter-options.php:526
381
  #, php-format
382
  #@ cpd
383
  msgid "Delete these %s counts"
384
  msgstr "Deletar estes %s contadores"
385
 
386
+ #: counter-options.php:773
387
+ #: counter-options.php:783
388
  #@ cpd
389
  msgid "Reset the counter"
390
  msgstr "Reiniciar o contador"
391
 
392
+ #: counter-options.php:776
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:776
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:963
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:653
415
+ #: counter-options.php:412
416
  #@ default
417
  msgid "Settings"
418
  msgstr "Configura&ccedil;&otilde;es"
419
 
420
+ #: counter-core.php:1541
421
+ #: counter-options.php:879
422
+ #: counter.php:240
423
+ #: counter.php:1024
424
+ #: map/map.php:60
425
  #@ cpd
426
  msgid "Reads"
427
  msgstr "Leituras"
428
 
429
+ #: counter.php:1411
430
  #@ cpd
431
  msgid "This post"
432
  msgstr "Este post"
433
 
434
+ #: counter.php:347
435
  #@ cpd
436
  msgid "Reads per day"
437
  msgstr "Leituras por dia"
438
 
439
+ #: counter-core.php:802
440
+ #: counter-options.php:963
441
  #@ cpd
442
  msgid "Browsers"
443
  msgstr "Navegadores"
444
 
445
+ #: counter-core.php:796
446
  #@ cpd
447
  msgid "Latest Counts"
448
  msgstr "Contagens Recentes"
449
 
450
+ #: counter-core.php:807
451
  #@ cpd
452
  msgid "Reads per Country"
453
  msgstr "Leituras por Pa&iacute;s"
467
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
468
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
469
 
470
+ #: counter-options.php:842
471
  #@ cpd
472
  msgid "until User Level"
473
  msgstr "usuários do nível"
474
 
475
+ #: counter-options.php:994
476
  #@ cpd
477
  msgid "Start Values"
478
  msgstr "Valor inicial"
479
 
480
+ #: counter-options.php:998
481
  #@ cpd
482
  msgid "Here you can change the date of first count and add a start count."
483
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
484
 
485
+ #: counter-options.php:1002
486
  #@ cpd
487
  msgid "Start date"
488
  msgstr "Data inicial"
489
 
490
+ #: counter-options.php:1003
491
  #@ cpd
492
  msgid "Your old Counter starts at?"
493
  msgstr "Sua contagem antiga começa em?"
494
 
495
+ #: counter-options.php:1006
496
+ #: counter-options.php:1010
497
  #@ cpd
498
  msgid "Start count"
499
  msgstr "Contagem inicial"
500
 
501
+ #: counter-options.php:1007
502
  #@ cpd
503
  msgid "Add this value to \"Total visitors\"."
504
  msgstr "Adicione este valor para \"Total visitors\"."
505
 
506
+ #: counter-options.php:814
507
  #@ cpd
508
  msgid "Support"
509
  msgstr "Suporte"
510
 
511
+ #: counter-core.php:757
512
  #@ cpd
513
  msgid "Bug? Problem? Question? Hint? Praise?"
514
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
515
 
516
+ #: counter-core.php:758
517
  #, php-format
518
  #@ cpd
519
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
520
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
521
 
522
+ #: counter.php:893
523
  #@ default
524
  msgid "Show"
525
  msgstr "Mostrar"
526
 
527
+ #: counter.php:895
528
  #: notes.php:55
529
  #: notes.php:89
530
  #@ cpd
531
  msgid "Notes"
532
  msgstr "Notas"
533
 
534
+ #: counter.php:1135
535
  #@ default
536
  msgid "Edit Post"
537
  msgstr "Editar Post"
538
 
539
+ #: counter-core.php:799
540
  #@ default
541
  msgid "Plugin"
542
  msgstr "Plugin"
543
 
544
+ #: counter-core.php:756
545
  #, php-format
546
  #@ cpd
547
  msgid "Time for Count per Day: <code>%s</code>."
572
  msgid "edit"
573
  msgstr "Editar"
574
 
575
+ #: counter-options.php:868
576
  #@ cpd
577
  msgid "Anonymous IP"
578
  msgstr "IP An&ocirc;nimo"
579
 
580
+ #: counter-options.php:872
581
  #@ cpd
582
  msgid "Cache"
583
  msgstr "Cache"
584
 
585
+ #: counter-options.php:873
586
  #@ cpd
587
  msgid "I use a cache plugin. Count these visits with ajax."
588
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
589
 
590
+ #: counter-options.php:964
591
  #@ cpd
592
  msgid "Substring of the user agent, separated by comma"
593
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
594
 
595
+ #: counter-options.php:1011
596
  #@ cpd
597
  msgid "Add this value to \"Total reads\"."
598
  msgstr "Adicione este valor ao \"Total de Leituras\"."
599
 
600
+ #: counter-options.php:1048
601
  #@ cpd
602
  msgid "Debug mode"
603
  msgstr "Modo de depura&ccedil;&atilde;o"
604
 
605
+ #: counter-options.php:1050
606
  #@ cpd
607
  msgid "Show debug informations at the bottom of all pages."
608
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
609
 
610
+ #: counter.php:236
611
+ #: counter.php:1412
612
  #@ cpd
613
  msgid "Total reads"
614
  msgstr "Total de Leituras"
615
 
616
+ #: counter.php:237
617
+ #: counter.php:1413
618
  #@ cpd
619
  msgid "Reads today"
620
  msgstr "Leituras Hoje"
621
 
622
+ #: counter.php:238
623
+ #: counter.php:1414
624
  #@ cpd
625
  msgid "Reads yesterday"
626
  msgstr "Leituras Ontem"
627
 
628
+ #: counter-core.php:808
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Visitantes por Pa&iacute;is"
632
 
633
+ #: counter.php:438
634
+ #: counter.php:1254
635
  #@ cpd
636
  msgid "Map"
637
  msgstr "Mapa"
656
  msgid "no data found"
657
  msgstr "N&atilde;o foram encontrados dados"
658
 
659
+ #: counter-options.php:726
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 "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!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "contador"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Clientes e Referências"
673
 
674
+ #: counter-options.php:879
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 "Salvar e Exibir Clientes e Referências"
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "URLs Locais"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Também exibir referência local."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Posts"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Páginas"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Leituras na semana passada"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Categoria"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Teg"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "License"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Leituras por mês"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Referência"
730
 
731
+ #: counter.php:1436
732
  #@ default
733
  msgid "Title"
734
  msgstr "Título"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Referência - entradas"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Quantas referência você quer ver no painel?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Referência - Dias"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "AA %s referências nos últimos %s dias:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Visitantes online"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "Atualizar \"Count per Day\" para a versão %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Backup falhou. O arquivo não abriu"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Backup da tabela do contador salvo em %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Backup das opções de contador e acumuladores salvas em %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Acumulador em progresso..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Obter visitas por Post..."
796
 
797
+ #: counter-options.php:316
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 "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Instalação do \"Count per Day\" checada"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Ferramentas"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Salvar somente URL, sem sequencia de caracteres"
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Quem pode ver isto"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "Customizar"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "e superior têm permissão para ver a página de estatísticas."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Estilo"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "SEM Estilo na interface pública"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Não carregue o estilo \"counter.css\" na interface pública"
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Backup"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Entradas por passagem"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
869
 
870
+ #: counter-options.php:1040
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 "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."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Backup da base de dados"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Coletar dados antigos"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "O tamanho atual da sua tabela de contador %s é %s."
898
 
899
+ #: counter-options.php:685
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 "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."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Atualmente sua coleção contém dados até %s"
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Dados novos são adicionados normalmente à coleção."
914
 
915
+ #: counter-options.php:700
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
919
 
920
+ #: counter-options.php:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Todos os dados coletados até %s serão excluidos."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "Reativação"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "Reativar o plugin"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Visitantes"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Dia mais visitado"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "arrastar e soltar para classificar"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr "Buscar Strings"
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr "Erro ao ler o arquivo de BackUp!"
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr "O backup foi adicionado à tabela de contadores %s"
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr "A tabela de contadores %s foi restaurada do backup."
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr "Opções restauradas do backup."
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr "Sequencias de pesquisas antigas apagadas."
1002
 
1003
+ #: counter-options.php:570
1004
  #@ cpd
1005
  msgid "Download only"
1006
  msgstr "Somente download"
1007
 
1008
+ #: counter-options.php:602
1009
  #@ cpd
1010
  msgid "Settings and collections"
1011
  msgstr "Configurações e Coleções"
1012
 
1013
+ #: counter-options.php:607
1014
  #, php-format
1015
  #@ cpd
1016
  msgid "Counter table %s"
1017
  msgstr "Tabela de Contador %s"
1018
 
1019
+ #: counter-options.php:614
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Add data from the backup file %s to existing counter table?"
1023
  msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1024
 
1025
+ #: counter-options.php:614
1026
  #@ cpd
1027
  msgid "Add"
1028
  msgstr "Adicionar"
1029
 
1030
+ #: counter-options.php:618
1031
  #, php-format
1032
  #@ cpd
1033
  msgid "Restore data from the backup file %s ?"
1034
  msgstr "Restaurar dados a partir do backup %s ?"
1035
 
1036
+ #: counter-options.php:618
1037
  #@ default
1038
  msgid "Restore"
1039
  msgstr "Restaurar"
1040
 
1041
+ #: counter-options.php:620
1042
  #@ default
1043
  msgid "Delete"
1044
  msgstr "Apagar"
1045
 
1046
+ #: counter-options.php:621
1047
  #, php-format
1048
  #@ cpd
1049
  msgid "Delete the backup file %s ?"
1050
  msgstr "Apagar arquivo backup %s ?"
1051
 
1052
+ #: counter-options.php:627
1053
  #@ cpd
1054
  msgid "add backup to current counter table"
1055
  msgstr "adicionar backup para a tabela de contador atual"
1056
 
1057
+ #: counter-options.php:628
1058
  #@ cpd
1059
  msgid "replace current counter table with with backup"
1060
  msgstr "substituir a tabela de contador atual pelo backup"
1061
 
1062
+ #: counter-options.php:629
1063
  #@ cpd
1064
  msgid "delete backup file"
1065
  msgstr "apagar arquivo backup"
1066
 
1067
+ #: counter-options.php:654
1068
  #, php-format
1069
  #@ cpd
1070
  msgid "Delete search strings older than %s days."
1071
  msgstr "Apagar sequencias de busca anteriores a %s dias."
1072
 
1073
+ #: counter-options.php:658
1074
  #@ cpd
1075
  msgid "Delete search strings"
1076
  msgstr "Apagar sequencias de busca"
1077
 
1078
+ #: counter.php:1198
1079
  #, php-format
1080
  #@ cpd
1081
  msgid "The %s most searched strings:"
1082
  msgstr "A %s string mais procurada:"
1083
 
1084
+ #: counter.php:1207
1085
  #, php-format
1086
  #@ cpd
1087
  msgid "The search strings of the last %s days:"
1088
  msgstr "A série de busca dos últimos %s dias:"
1089
 
1090
+ #: counter-options.php:355
1091
  #@ cpd
1092
  msgid "Clients and referers deleted"
1093
  msgstr ""
1094
 
1095
+ #: counter-options.php:665
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1099
  msgstr ""
1100
 
1101
+ #: counter-options.php:669
1102
  #@ cpd
1103
  msgid "Delete clients and referers"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1150
1107
  #@ default
1108
  msgid "Front page"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-pt_PT.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,387 +20,387 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
221
 
222
- #: counter-options.php:63
223
  #, php-format
224
  #@ cpd
225
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
226
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
227
 
228
- #: counter-options.php:66
229
  #@ cpd
230
  msgid "update next"
231
  msgstr "Atualizar proximo"
232
 
233
- #: counter-options.php:106
234
  #, php-format
235
  #@ cpd
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,42 +411,43 @@ 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,81 +467,81 @@ msgstr "Nova base de dados GeoIP instalada."
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,66 +572,66 @@ msgstr "Apagar"
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,105 +656,105 @@ msgstr "PostID"
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"
@@ -764,456 +765,471 @@ msgstr "Visitantes online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:15+0000\n"
7
  "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Op&ccedil;&otilde;es atualizadas"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DESINSTALAR o Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabela %s apagada"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Op&ccedil;&otilde;es apagadas"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Desinstalar"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Clique aqui"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Per&iacute;odo online"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Usu&aacute;rios logados"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "contar tamb&eacute;m"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Autocontador"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Bots a serem ignorados"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Atualizar op&ccedil;&otilde;es"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Limpar o banco de dados"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ATEN&Ccedil;&Atilde;O"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Sim, quero"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Estat&iacute;sticas"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total de visitas"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Visitantes online"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Visitas hoje"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Visitas ontem"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Visitas semana passada"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "In&iacute;cio da contagem"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
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:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Visitas por m&ecirc;s"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Visitas por post"
221
 
222
+ #: counter-options.php:66
223
  #, php-format
224
  #@ cpd
225
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
226
  msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
227
 
228
+ #: counter-options.php:69
229
  #@ cpd
230
  msgid "update next"
231
  msgstr "Atualizar proximo"
232
 
233
+ #: counter-options.php:109
234
  #, php-format
235
  #@ cpd
236
  msgid "Mass Bots cleaned. %s counts deleted."
237
  msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
238
 
239
+ #: counter-options.php:131
240
  #@ cpd
241
  msgid "Counter reseted."
242
  msgstr "Contador reiniciado."
243
 
244
+ #: counter-options.php:902
245
  #@ default
246
  msgid "Dashboard"
247
  msgstr "Painel"
248
 
249
+ #: counter-options.php:938
250
+ #: counter-options.php:942
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:941
256
  #@ cpd
257
  msgid "Latest Counts - Posts"
258
  msgstr "Contagens Recentes - Posts"
259
 
260
+ #: counter-options.php:945
261
  #@ cpd
262
  msgid "Latest Counts - Days"
263
  msgstr "Contagens Recentes - Dias"
264
 
265
+ #: counter-options.php:946
266
+ #: counter-options.php:950
267
+ #: counter-options.php:972
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:949
273
  #@ cpd
274
  msgid "Chart - Days"
275
  msgstr "Gr&aacute;fico - Dias"
276
 
277
+ #: counter-options.php:953
278
  #@ cpd
279
  msgid "Chart - Height"
280
  msgstr "Gr&aacute;fico - Altura"
281
 
282
+ #: counter-options.php:954
283
  #@ cpd
284
  msgid "Height of the biggest bar"
285
  msgstr "Altura da barra maior"
286
 
287
+ #: counter-options.php:958
288
  #@ cpd
289
  msgid "Countries"
290
  msgstr "Pa&iacute;ses"
291
 
292
+ #: counter-options.php:959
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:986
298
  #@ cpd
299
  msgid "Show in lists"
300
  msgstr "Exibir em listas"
301
 
302
+ #: counter-options.php:987
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:723
308
  #@ cpd
309
  msgid "GeoIP - Countries"
310
  msgstr "GeoIP - Pa&iacute;ses"
311
 
312
+ #: counter-options.php:732
313
  #@ cpd
314
  msgid "Update old counter data"
315
  msgstr "Atualizar dados de contadores antigos"
316
 
317
+ #: counter-options.php:744
318
  #@ cpd
319
  msgid "Update GeoIP database"
320
  msgstr "Atualizar Base de Dados GeoIP"
321
 
322
+ #: counter-options.php:739
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:749
328
  #@ cpd
329
  msgid "More informations about GeoIP"
330
  msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
331
 
332
+ #: counter-options.php:432
333
  #: massbots.php:46
334
  #@ cpd
335
  msgid "Mass Bots"
336
  msgstr "Mass Bots"
337
 
338
+ #: counter-options.php:436
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:437
345
+ #: counter-options.php:501
346
  #: notes.php:84
347
  #: userperspan.php:56
348
  #@ cpd
349
  msgid "show"
350
  msgstr "exibir"
351
 
352
+ #: counter-options.php:445
353
+ #: counter-options.php:509
354
  #@ cpd
355
  msgid "IP"
356
  msgstr "IP"
357
 
358
+ #: counter-options.php:446
359
+ #: counter-options.php:510
360
  #: notes.php:88
361
  #@ cpd
362
  #@ default
363
  msgid "Date"
364
  msgstr "Data"
365
 
366
+ #: counter-options.php:447
367
+ #: counter-options.php:511
368
  #@ cpd
369
  msgid "Client"
370
  msgstr "Cliente"
371
 
372
+ #: counter-options.php:448
373
+ #: counter-options.php:512
374
  #@ cpd
375
  msgid "Views"
376
  msgstr "Exibi&ccedil;&otilde;es"
377
 
378
+ #: counter-options.php:463
379
+ #: counter-options.php:479
380
+ #: counter-options.php:526
381
  #, php-format
382
  #@ cpd
383
  msgid "Delete these %s counts"
384
  msgstr "Deletar estes %s contadores"
385
 
386
+ #: counter-options.php:773
387
+ #: counter-options.php:783
388
  #@ cpd
389
  msgid "Reset the counter"
390
  msgstr "Reiniciar o contador"
391
 
392
+ #: counter-options.php:776
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:776
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:963
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:653
415
+ #: counter-options.php:412
416
  #@ default
417
  msgid "Settings"
418
  msgstr "Configura&ccedil;&otilde;es"
419
 
420
+ #: counter-core.php:1541
421
+ #: counter-options.php:879
422
+ #: counter.php:240
423
+ #: counter.php:1024
424
+ #: map/map.php:60
425
  #@ cpd
426
  msgid "Reads"
427
  msgstr "Leituras"
428
 
429
+ #: counter.php:1411
430
  #@ cpd
431
  msgid "This post"
432
  msgstr "Este post"
433
 
434
+ #: counter.php:347
435
  #@ cpd
436
  msgid "Reads per day"
437
  msgstr "Leituras por dia"
438
 
439
+ #: counter-core.php:802
440
+ #: counter-options.php:963
441
  #@ cpd
442
  msgid "Browsers"
443
  msgstr "Navegadores"
444
 
445
+ #: counter-core.php:796
446
  #@ cpd
447
  msgid "Latest Counts"
448
  msgstr "Contagens Recentes"
449
 
450
+ #: counter-core.php:807
451
  #@ cpd
452
  msgid "Reads per Country"
453
  msgstr "Leituras por Pa&iacute;s"
467
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
468
  msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
469
 
470
+ #: counter-options.php:842
471
  #@ cpd
472
  msgid "until User Level"
473
  msgstr "usuários do nível"
474
 
475
+ #: counter-options.php:994
476
  #@ cpd
477
  msgid "Start Values"
478
  msgstr "Valor inicial"
479
 
480
+ #: counter-options.php:998
481
  #@ cpd
482
  msgid "Here you can change the date of first count and add a start count."
483
  msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
484
 
485
+ #: counter-options.php:1002
486
  #@ cpd
487
  msgid "Start date"
488
  msgstr "Data inicial"
489
 
490
+ #: counter-options.php:1003
491
  #@ cpd
492
  msgid "Your old Counter starts at?"
493
  msgstr "Sua contagem antiga começa em?"
494
 
495
+ #: counter-options.php:1006
496
+ #: counter-options.php:1010
497
  #@ cpd
498
  msgid "Start count"
499
  msgstr "Contagem inicial"
500
 
501
+ #: counter-options.php:1007
502
  #@ cpd
503
  msgid "Add this value to \"Total visitors\"."
504
  msgstr "Adicione este valor para \"Total visitors\"."
505
 
506
+ #: counter-options.php:814
507
  #@ cpd
508
  msgid "Support"
509
  msgstr "Suporte"
510
 
511
+ #: counter-core.php:757
512
  #@ cpd
513
  msgid "Bug? Problem? Question? Hint? Praise?"
514
  msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
515
 
516
+ #: counter-core.php:758
517
  #, php-format
518
  #@ cpd
519
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
520
  msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
521
 
522
+ #: counter.php:893
523
  #@ default
524
  msgid "Show"
525
  msgstr "Mostrar"
526
 
527
+ #: counter.php:895
528
  #: notes.php:55
529
  #: notes.php:89
530
  #@ cpd
531
  msgid "Notes"
532
  msgstr "Notas"
533
 
534
+ #: counter.php:1135
535
  #@ default
536
  msgid "Edit Post"
537
  msgstr "Editar Post"
538
 
539
+ #: counter-core.php:799
540
  #@ default
541
  msgid "Plugin"
542
  msgstr "Plugin"
543
 
544
+ #: counter-core.php:756
545
  #, php-format
546
  #@ cpd
547
  msgid "Time for Count per Day: <code>%s</code>."
572
  msgid "edit"
573
  msgstr "Editar"
574
 
575
+ #: counter-options.php:868
576
  #@ cpd
577
  msgid "Anonymous IP"
578
  msgstr "IP An&ocirc;nimo"
579
 
580
+ #: counter-options.php:872
581
  #@ cpd
582
  msgid "Cache"
583
  msgstr "Cache"
584
 
585
+ #: counter-options.php:873
586
  #@ cpd
587
  msgid "I use a cache plugin. Count these visits with ajax."
588
  msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
589
 
590
+ #: counter-options.php:964
591
  #@ cpd
592
  msgid "Substring of the user agent, separated by comma"
593
  msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
594
 
595
+ #: counter-options.php:1011
596
  #@ cpd
597
  msgid "Add this value to \"Total reads\"."
598
  msgstr "Adicione este valor ao \"Total de Leituras\"."
599
 
600
+ #: counter-options.php:1048
601
  #@ cpd
602
  msgid "Debug mode"
603
  msgstr "Modo de depura&ccedil;&atilde;o"
604
 
605
+ #: counter-options.php:1050
606
  #@ cpd
607
  msgid "Show debug informations at the bottom of all pages."
608
  msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
609
 
610
+ #: counter.php:236
611
+ #: counter.php:1412
612
  #@ cpd
613
  msgid "Total reads"
614
  msgstr "Total de Leituras"
615
 
616
+ #: counter.php:237
617
+ #: counter.php:1413
618
  #@ cpd
619
  msgid "Reads today"
620
  msgstr "Leituras Hoje"
621
 
622
+ #: counter.php:238
623
+ #: counter.php:1414
624
  #@ cpd
625
  msgid "Reads yesterday"
626
  msgstr "Leituras Ontem"
627
 
628
+ #: counter-core.php:808
629
  #@ cpd
630
  msgid "Visitors per Country"
631
  msgstr "Visitantes por Pa&iacute;is"
632
 
633
+ #: counter.php:438
634
+ #: counter.php:1254
635
  #@ cpd
636
  msgid "Map"
637
  msgstr "Mapa"
656
  msgid "no data found"
657
  msgstr "N&atilde;o foram encontrados dados"
658
 
659
+ #: counter-options.php:726
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 "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!"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "contador"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Clientes e Referências"
673
 
674
+ #: counter-options.php:879
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 "Salvar e Exibir Clientes e Referências"
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "URLs Locais"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Também exibir referência local."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Posts"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Páginas"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Leituras na semana passada"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Categoria"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Teg"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "License"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Leituras por mês"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Referência"
730
 
731
+ #: counter.php:1436
732
  #@ default
733
  msgid "Title"
734
  msgstr "Título"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Referência - entradas"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Quantas referência você quer ver no painel?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Referência - Dias"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "AA %s referências nos últimos %s dias:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Visitantes online"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "Atualizar \"Count per Day\" para a versão %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Backup falhou. O arquivo não abriu"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Backup da tabela do contador salvo em %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Backup das opções de contador e acumuladores salvas em %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Acumulador em progresso..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Obter visitas por Post..."
796
 
797
+ #: counter-options.php:316
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 "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Instalação do \"Count per Day\" checada"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Ferramentas"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Salvar somente URL, sem sequencia de caracteres"
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Quem pode ver isto"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "Customizar"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "e superior têm permissão para ver a página de estatísticas."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Estilo"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "SEM Estilo na interface pública"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Não carregue o estilo \"counter.css\" na interface pública"
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Backup"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Entradas por passagem"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
869
 
870
+ #: counter-options.php:1040
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 "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."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Backup da base de dados"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Coletar dados antigos"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "O tamanho atual da sua tabela de contador %s é %s."
898
 
899
+ #: counter-options.php:685
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 "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."
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Atualmente sua coleção contém dados até %s"
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Dados novos são adicionados normalmente à coleção."
914
 
915
+ #: counter-options.php:700
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
919
 
920
+ #: counter-options.php:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Todos os dados coletados até %s serão excluidos."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "Reativação"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "Reativar o plugin"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Visitantes"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Dia mais visitado"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "arrastar e soltar para classificar"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr "Buscar Strings"
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr "Erro ao ler o arquivo de BackUp!"
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr "O backup foi adicionado à tabela de contadores %s"
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr "A tabela de contadores %s foi restaurada do backup."
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr "Opções restauradas do backup."
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr "Sequencias de pesquisas antigas apagadas."
1002
 
1003
+ #: counter-options.php:570
1004
  #@ cpd
1005
  msgid "Download only"
1006
  msgstr "Somente download"
1007
 
1008
+ #: counter-options.php:602
1009
  #@ cpd
1010
  msgid "Settings and collections"
1011
  msgstr "Configurações e Coleções"
1012
 
1013
+ #: counter-options.php:607
1014
  #, php-format
1015
  #@ cpd
1016
  msgid "Counter table %s"
1017
  msgstr "Tabela de Contador %s"
1018
 
1019
+ #: counter-options.php:614
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Add data from the backup file %s to existing counter table?"
1023
  msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1024
 
1025
+ #: counter-options.php:614
1026
  #@ cpd
1027
  msgid "Add"
1028
  msgstr "Adicionar"
1029
 
1030
+ #: counter-options.php:618
1031
  #, php-format
1032
  #@ cpd
1033
  msgid "Restore data from the backup file %s ?"
1034
  msgstr "Restaurar dados a partir do backup %s ?"
1035
 
1036
+ #: counter-options.php:618
1037
  #@ default
1038
  msgid "Restore"
1039
  msgstr "Restaurar"
1040
 
1041
+ #: counter-options.php:620
1042
  #@ default
1043
  msgid "Delete"
1044
  msgstr "Apagar"
1045
 
1046
+ #: counter-options.php:621
1047
  #, php-format
1048
  #@ cpd
1049
  msgid "Delete the backup file %s ?"
1050
  msgstr "Apagar arquivo backup %s ?"
1051
 
1052
+ #: counter-options.php:627
1053
  #@ cpd
1054
  msgid "add backup to current counter table"
1055
  msgstr "adicionar backup para a tabela de contador atual"
1056
 
1057
+ #: counter-options.php:628
1058
  #@ cpd
1059
  msgid "replace current counter table with with backup"
1060
  msgstr "substituir a tabela de contador atual pelo backup"
1061
 
1062
+ #: counter-options.php:629
1063
  #@ cpd
1064
  msgid "delete backup file"
1065
  msgstr "apagar arquivo backup"
1066
 
1067
+ #: counter-options.php:654
1068
  #, php-format
1069
  #@ cpd
1070
  msgid "Delete search strings older than %s days."
1071
  msgstr "Apagar sequencias de busca anteriores a %s dias."
1072
 
1073
+ #: counter-options.php:658
1074
  #@ cpd
1075
  msgid "Delete search strings"
1076
  msgstr "Apagar sequencias de busca"
1077
 
1078
+ #: counter.php:1198
1079
  #, php-format
1080
  #@ cpd
1081
  msgid "The %s most searched strings:"
1082
  msgstr "A %s string mais procurada:"
1083
 
1084
+ #: counter.php:1207
1085
  #, php-format
1086
  #@ cpd
1087
  msgid "The search strings of the last %s days:"
1088
  msgstr "A série de busca dos últimos %s dias:"
1089
 
1090
+ #: counter-options.php:355
1091
  #@ cpd
1092
  msgid "Clients and referers deleted"
1093
  msgstr ""
1094
 
1095
+ #: counter-options.php:665
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1099
  msgstr ""
1100
 
1101
+ #: counter-options.php:669
1102
  #@ cpd
1103
  msgid "Delete clients and referers"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1150
1107
  #@ default
1108
  msgid "Front page"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-ro_RO.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,324 +20,325 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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"
303
 
304
- #: counter-options.php:63
305
  #, php-format
306
  #@ cpd
307
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
308
  msgstr "Ţări actualizate. intrările <b>%s</b> în %s fără ţară stânga"
309
 
310
- #: counter-options.php:66
311
  #@ cpd
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,51 +358,51 @@ msgstr "Ne pare rau, a aparut o eroare. Încercaţi din nou sau de a verifica dr
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?"
369
 
370
- #: counter-options.php:106
371
  #, php-format
372
  #@ cpd
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,112 +413,112 @@ 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,66 +550,66 @@ msgstr "Ştergere"
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,105 +634,105 @@ msgstr "PostID"
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"
@@ -742,478 +743,493 @@ msgstr "Vizitatori online"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:28+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Web Geeks\n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Opţiuni actualizate"
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEZINSTALAŢI conta pe zi"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabelul %s elimină"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opţiuni elimină"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Dezinstalare"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Faceţi clic aici"
63
 
64
+ #: counter-options.php:386
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "."
68
 
69
+ #: counter-options.php:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Timp online"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Logon utilizatori"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "conta prea"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto counter"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Roboţii să ignore"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Opţiuni de actualizare"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Curăţaţi baza de date"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "AVERTISMENT"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "da"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistici"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Total vizitatori"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Vizitatori online"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Vizitatori astăzi"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Vizitatori ieri"
187
 
188
+ #: counter-core.php:793
189
+ #: counter.php:1421
190
  #@ cpd
191
  msgid "Visitors per month"
192
  msgstr "Vizitatori pe lună"
193
 
194
+ #: counter-core.php:795
195
+ #: counter-options.php:937
196
  #@ cpd
197
  msgid "Visitors per post"
198
  msgstr "Vizitatori pe post"
199
 
200
+ #: counter-options.php:131
201
  #@ cpd
202
  msgid "Counter reseted."
203
  msgstr "Contor resetat."
204
 
205
+ #: counter-options.php:938
206
+ #: counter-options.php:942
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:941
212
  #@ cpd
213
  msgid "Latest Counts - Posts"
214
  msgstr "Contează ultimele - posturi"
215
 
216
+ #: counter-options.php:945
217
  #@ cpd
218
  msgid "Latest Counts - Days"
219
  msgstr "Contează ultimele - zile"
220
 
221
+ #: counter-options.php:946
222
+ #: counter-options.php:950
223
+ #: counter-options.php:972
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:986
229
  #@ cpd
230
  msgid "Show in lists"
231
  msgstr "Arată în liste"
232
 
233
+ #: counter-options.php:987
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:773
239
+ #: counter-options.php:783
240
  #@ cpd
241
  msgid "Reset the counter"
242
  msgstr "Resetarea contorului de"
243
 
244
+ #: counter-options.php:776
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:776
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:653
256
+ #: counter-options.php:412
257
  #@ default
258
  msgid "Settings"
259
  msgstr "Setări"
260
 
261
+ #: counter-core.php:1541
262
+ #: counter-options.php:879
263
+ #: counter.php:240
264
+ #: counter.php:1024
265
+ #: map/map.php:60
266
  #@ cpd
267
  msgid "Reads"
268
  msgstr "Citeşte"
269
 
270
+ #: counter-core.php:796
271
  #@ cpd
272
  msgid "Latest Counts"
273
  msgstr "Contează mai recente"
274
 
275
+ #: counter-options.php:949
276
  #@ cpd
277
  msgid "Chart - Days"
278
  msgstr "Diagramă - zile"
279
 
280
+ #: counter-options.php:953
281
  #@ cpd
282
  msgid "Chart - Height"
283
  msgstr "Diagramă - înălţime"
284
 
285
+ #: counter-options.php:954
286
  #@ cpd
287
  msgid "Height of the biggest bar"
288
  msgstr "Înălțimea de la bar mai mare"
289
 
290
+ #: counter.php:1411
291
  #@ cpd
292
  msgid "This post"
293
  msgstr "Acest post"
294
 
295
+ #: counter-options.php:902
296
  #@ default
297
  msgid "Dashboard"
298
  msgstr "Tabloul de bord"
299
 
300
+ #: counter.php:347
301
  #@ cpd
302
  msgid "Reads per day"
303
  msgstr "Citeşte pe zi"
304
 
305
+ #: counter-options.php:66
306
  #, php-format
307
  #@ cpd
308
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
309
  msgstr "Ţări actualizate. intrările <b>%s</b> în %s fără ţară stânga"
310
 
311
+ #: counter-options.php:69
312
  #@ cpd
313
  msgid "update next"
314
  msgstr "actualizaţi următorul"
315
 
316
+ #: counter-options.php:723
317
  #@ cpd
318
  msgid "GeoIP - Countries"
319
  msgstr "GeoIP - ţări"
320
 
321
+ #: counter-options.php:732
322
  #@ cpd
323
  msgid "Update old counter data"
324
  msgstr "Actualizaţi datele contor vechi"
325
 
326
+ #: counter-options.php:744
327
  #@ cpd
328
  msgid "Update GeoIP database"
329
  msgstr "Actualizare GeoIP database"
330
 
331
+ #: counter-options.php:739
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:749
337
  #@ cpd
338
  msgid "More informations about GeoIP"
339
  msgstr "Mai multe informatii despre GeoIP"
340
 
341
+ #: counter-core.php:807
342
  #@ cpd
343
  msgid "Reads per Country"
344
  msgstr "Citeşte per tara"
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:958
362
  #@ cpd
363
  msgid "Countries"
364
  msgstr "Ţări"
365
 
366
+ #: counter-options.php:959
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?"
370
 
371
+ #: counter-options.php:109
372
  #, php-format
373
  #@ cpd
374
  msgid "Mass Bots cleaned. %s counts deleted."
375
  msgstr "Masa roboţii curăţate. %s contează elimină."
376
 
377
+ #: counter-options.php:432
378
  #: massbots.php:46
379
  #@ cpd
380
  msgid "Mass Bots"
381
  msgstr "Roboţii de masă"
382
 
383
+ #: counter-options.php:436
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:437
390
+ #: counter-options.php:501
391
  #: notes.php:84
392
  #: userperspan.php:56
393
  #@ cpd
394
  msgid "show"
395
  msgstr "Arată"
396
 
397
+ #: counter-options.php:463
398
+ #: counter-options.php:479
399
+ #: counter-options.php:526
400
  #, php-format
401
  #@ cpd
402
  msgid "Delete these %s counts"
403
  msgstr "Ştergeţi aceste contează %s"
404
 
405
+ #: counter.php:963
406
  #@ cpd
407
  msgid "Other"
408
  msgstr "Alte"
413
  msgid "Front page displays"
414
  msgstr "Afişează prima pagină"
415
 
416
+ #: counter-core.php:802
417
+ #: counter-options.php:963
418
  #@ cpd
419
  msgid "Browsers"
420
  msgstr "Browsere"
421
 
422
+ #: counter-options.php:445
423
+ #: counter-options.php:509
424
  #@ cpd
425
  msgid "IP"
426
  msgstr "IP"
427
 
428
+ #: counter-options.php:446
429
+ #: counter-options.php:510
430
  #: notes.php:88
431
  #@ cpd
432
  #@ default
433
  msgid "Date"
434
  msgstr "Data"
435
 
436
+ #: counter-options.php:447
437
+ #: counter-options.php:511
438
  #@ cpd
439
  msgid "Client"
440
  msgstr "Client"
441
 
442
+ #: counter-options.php:448
443
+ #: counter-options.php:512
444
  #@ cpd
445
  msgid "Views"
446
  msgstr "Vizualizări"
447
 
448
+ #: counter-options.php:994
449
  #@ cpd
450
  msgid "Start Values"
451
  msgstr "Valorile de început"
452
 
453
+ #: counter-options.php:998
454
  #@ cpd
455
  msgid "Here you can change the date of first count and add a start count."
456
  msgstr "Aici aveţi posibilitatea să modificaţi data primul conta şi adaugă un număr de început."
457
 
458
+ #: counter-options.php:1002
459
  #@ cpd
460
  msgid "Start date"
461
  msgstr "Data inceperii"
462
 
463
+ #: counter-options.php:1003
464
  #@ cpd
465
  msgid "Your old Counter starts at?"
466
  msgstr "Dumneavoastră contor vechi începe la?"
467
 
468
+ #: counter-options.php:1006
469
+ #: counter-options.php:1010
470
  #@ cpd
471
  msgid "Start count"
472
  msgstr "Contele de start"
473
 
474
+ #: counter-options.php:1007
475
  #@ cpd
476
  msgid "Add this value to \"Total visitors\"."
477
  msgstr "Adaugă această valoare la \"Total vizitatori\"."
478
 
479
+ #: counter-options.php:814
480
  #@ cpd
481
  msgid "Support"
482
  msgstr "Suport"
483
 
484
+ #: counter-core.php:757
485
  #@ cpd
486
  msgid "Bug? Problem? Question? Hint? Praise?"
487
  msgstr "Bug? Problema? Întrebare? Indiciu? Laudă?"
488
 
489
+ #: counter-core.php:758
490
  #, php-format
491
  #@ cpd
492
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
493
  msgstr "Scrie un comentariu pe pagina de <a href=\"%s\"> plugin-ul </a>."
494
 
495
+ #: counter.php:893
496
  #@ default
497
  msgid "Show"
498
  msgstr "Arată"
499
 
500
+ #: counter.php:1135
501
  #@ default
502
  msgid "Edit Post"
503
  msgstr "Editare Post"
504
 
505
+ #: counter-core.php:756
506
  #, php-format
507
  #@ cpd
508
  msgid "Time for Count per Day: <code>%s</code>."
509
  msgstr "Timp pentru conta pe zi: <code>%s</code>."
510
 
511
+ #: counter-options.php:842
512
  #@ cpd
513
  msgid "until User Level"
514
  msgstr "până la nivel de utilizator"
515
 
516
+ #: counter-core.php:799
517
  #@ default
518
  msgid "Plugin"
519
  msgstr "Plugin-ul"
520
 
521
+ #: counter.php:895
522
  #: notes.php:55
523
  #: notes.php:89
524
  #@ cpd
550
  msgid "edit"
551
  msgstr "Editare"
552
 
553
+ #: counter-options.php:1011
554
  #@ cpd
555
  msgid "Add this value to \"Total reads\"."
556
  msgstr "."
557
 
558
+ #: counter.php:236
559
+ #: counter.php:1412
560
  #@ cpd
561
  msgid "Total reads"
562
  msgstr "Total Citeşte"
563
 
564
+ #: counter.php:237
565
+ #: counter.php:1413
566
  #@ cpd
567
  msgid "Reads today"
568
  msgstr "Citeşte astăzi"
569
 
570
+ #: counter.php:238
571
+ #: counter.php:1414
572
  #@ cpd
573
  msgid "Reads yesterday"
574
  msgstr "Citeşte ieri"
575
 
576
+ #: counter-options.php:868
577
  #@ cpd
578
  msgid "Anonymous IP"
579
  msgstr "IP anonim"
580
 
581
+ #: counter-options.php:872
582
  #@ cpd
583
  msgid "Cache"
584
  msgstr "Cache-ul"
585
 
586
+ #: counter-options.php:873
587
  #@ cpd
588
  msgid "I use a cache plugin. Count these visits with ajax."
589
  msgstr "I folos un cache dop. Conta aceste vizite cu ajax."
590
 
591
+ #: counter-options.php:964
592
  #@ cpd
593
  msgid "Substring of the user agent, separated by comma"
594
  msgstr "Subşir al agentului utilizator, separate prin virgulă"
595
 
596
+ #: counter-options.php:1048
597
  #@ cpd
598
  msgid "Debug mode"
599
  msgstr "Modul Debug"
600
 
601
+ #: counter-options.php:1050
602
  #@ cpd
603
  msgid "Show debug informations at the bottom of all pages."
604
  msgstr "Arata informatii de debug la partea de jos a tuturor paginilor."
605
 
606
+ #: counter-core.php:808
607
  #@ cpd
608
  msgid "Visitors per Country"
609
  msgstr "Vizitatori pe ţară"
610
 
611
+ #: counter.php:438
612
+ #: counter.php:1254
613
  #@ cpd
614
  msgid "Map"
615
  msgstr "Hartă"
634
  msgid "no data found"
635
  msgstr "nu există date găsit"
636
 
637
+ #: counter-options.php:726
638
  #@ cpd
639
  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!"
640
  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!"
641
 
642
+ #: counter-options.php:831
643
  #@ cpd
644
  msgid "Counter"
645
  msgstr "Counter"
646
 
647
+ #: counter-options.php:876
648
  #@ cpd
649
  msgid "Clients and referrers"
650
  msgstr "Clienti si au venit"
651
 
652
+ #: counter-options.php:879
653
  #@ cpd
654
  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."
655
  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."
656
 
657
+ #: counter-options.php:975
658
  #@ cpd
659
  msgid "Local URLs"
660
  msgstr "URL-uri locale"
661
 
662
+ #: counter-options.php:976
663
  #@ cpd
664
  msgid "Show local referrers too."
665
  msgstr "Arată locale au venit prea."
666
 
667
+ #: counter-options.php:983
668
  #@ default
669
  msgid "Posts"
670
  msgstr "Posturi"
671
 
672
+ #: counter-options.php:983
673
  #@ default
674
  msgid "Pages"
675
  msgstr "Pagini"
676
 
677
+ #: counter.php:239
678
+ #: counter.php:1415
679
  #@ cpd
680
  msgid "Reads last week"
681
  msgstr "Citeşte săptămâna trecută"
682
 
683
+ #: counter.php:1144
684
  #@ default
685
  msgid "Category"
686
  msgstr "Categoria"
687
 
688
+ #: counter.php:1147
689
  #@ default
690
  msgid "Tag"
691
  msgstr "Tag-ul"
692
 
693
+ #: counter-core.php:759
694
  #@ default
695
  msgid "License"
696
  msgstr "A da un permis"
697
 
698
+ #: counter-core.php:794
699
+ #: counter.php:1416
700
  #@ cpd
701
  msgid "Reads per month"
702
  msgstr "Afişări pe lună"
703
 
704
+ #: counter-core.php:803
705
  #@ cpd
706
  msgid "Referrer"
707
  msgstr "Referrer"
708
 
709
+ #: counter.php:1436
710
  #@ default
711
  msgid "Title"
712
  msgstr "Titlul"
713
 
714
+ #: counter-options.php:967
715
  #@ cpd
716
  msgid "Referrers - Entries"
717
  msgstr "Venit - intrări"
718
 
719
+ #: counter-options.php:968
720
  #@ cpd
721
  msgid "How many referrers do you want to see on dashboard page?"
722
  msgstr "Cât de multe au venit doriţi pentru a vedea pagina tabloul de bord?"
723
 
724
+ #: counter-options.php:971
725
  #@ cpd
726
  msgid "Referrers - Days"
727
  msgstr "Venit - zile"
728
 
729
+ #: counter.php:994
730
  #, php-format
731
  #@ cpd
732
  msgid "The %s referrers in last %s days:"
733
  msgstr "%s au venit în ultimele %s zile:"
734
 
735
+ #: counter-core.php:792
736
  #@ cpd
737
  msgid "Visitors online"
738
  msgstr "Vizitatori online"
743
  msgid "\"Count per Day\" updated to version %s."
744
  msgstr "\"Numărătoarea pe zi\" actualizat la versiunea %s."
745
 
746
+ #: counter-core.php:1076
747
  #@ cpd
748
  msgid "Backup failed! Cannot open file"
749
  msgstr "Copie de rezervă nu a reușit! Imposibil de deschis fişierul"
750
 
751
+ #: counter-core.php:1195
752
+ #: counter-core.php:1203
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:1197
759
+ #: counter-core.php:1205
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:177
766
  #@ cpd
767
  msgid "Collection in progress..."
768
  msgstr "Colectare în desfăşurare..."
769
 
770
+ #: counter-options.php:271
771
  #@ cpd
772
  msgid "Get Visitors per Post..."
773
  msgstr "Obţineţi de vizitatori pe Post..."
774
 
775
+ #: counter-options.php:325
776
  #@ cpd
777
  msgid "Installation of \"Count per Day\" checked"
778
  msgstr "Instalarea de \"Numărătoarea pe zi\" verificat"
779
 
780
+ #: counter-options.php:411
781
  #@ default
782
  msgid "Tools"
783
  msgstr "Instrumente"
784
 
785
+ #: counter-options.php:881
786
  #@ cpd
787
  msgid "Save URL only, no query string."
788
  msgstr "Salva URL-ul doar, nici un şir de interogare."
789
 
790
+ #: counter-options.php:918
791
  #@ cpd
792
  msgid "Who can see it"
793
  msgstr "Cine poate vedea it"
794
 
795
+ #: counter-options.php:927
796
  #@ cpd
797
  msgid "custom"
798
  msgstr "personalizat"
799
 
800
+ #: counter-options.php:929
801
  #@ cpd
802
  msgid "and higher are allowed to see the statistics page."
803
  msgstr "şi mai sunt permise pentru a vedea pagina de statistici."
804
 
805
+ #: counter-options.php:931
806
  #, php-format
807
  #@ cpd
808
  msgid "Set the %s capability %s a user need:"
809
  msgstr "Setaţi capacitatea de %s %s nevoie de un utilizator:"
810
 
811
+ #: counter-options.php:1018
812
  #@ cpd
813
  msgid "Stylesheet"
814
  msgstr "StyleSheet"
815
 
816
+ #: counter-options.php:1021
817
  #@ cpd
818
  msgid "NO Stylesheet in Frontend"
819
  msgstr "Nici un stil în Frontend"
820
 
821
+ #: counter-options.php:1022
822
  #@ cpd
823
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
824
  msgstr "Nu încărcaţi stil \"counter.css\" din interfaţă."
825
 
826
+ #: counter-options.php:563
827
+ #: counter-options.php:1029
828
  #@ cpd
829
  msgid "Backup"
830
  msgstr "Copie de rezervă"
831
 
832
+ #: counter-options.php:1032
833
  #@ cpd
834
  msgid "Entries per pass"
835
  msgstr "Intrările pe pass"
836
 
837
+ #: counter-options.php:1035
838
  #@ cpd
839
  msgid "How many entries should be saved per pass? Default: 10000"
840
  msgstr "Intrările cât de multe ar trebui să fie salvate trece? Implicit: 10000"
841
 
842
+ #: counter-options.php:1040
843
  #@ cpd
844
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
845
  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ă."
846
 
847
+ #: counter-options.php:567
848
  #, php-format
849
  #@ cpd
850
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
851
  msgstr "Creaţi o copie de rezervă a tabelului contor %s în directorul wp-content (dacă este inscriptibil)."
852
 
853
+ #: counter-options.php:574
854
  #@ cpd
855
  msgid "Backup the database"
856
  msgstr "Backup baza de date"
857
 
858
+ #: counter-options.php:678
859
+ #: counter-options.php:710
860
  #@ cpd
861
  msgid "Collect old data"
862
  msgstr "Colectarea de date vechi"
863
 
864
+ #: counter-options.php:664
865
+ #: counter-options.php:683
866
  #, php-format
867
  #@ cpd
868
  msgid "Current size of your counter table %s is %s."
869
  msgstr "Dimensiunea actuală a contracara tabel %s este % s."
870
 
871
+ #: counter-options.php:685
872
  #@ cpd
873
  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."
874
  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."
875
 
876
+ #: counter-options.php:690
877
  #, php-format
878
  #@ cpd
879
  msgid "Currently your collection contains data until %s."
880
  msgstr "Colecţia conţine în prezent date până la % s."
881
 
882
+ #: counter-options.php:694
883
  #@ cpd
884
  msgid "Normally new data will be added to the collection."
885
  msgstr "Date noi în mod normal va fi adăugate la colecţie."
886
 
887
+ #: counter-options.php:700
888
  #@ cpd
889
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
890
  msgstr "Şterge colecţie vechi şi de a crea unul nou, care conţine numai datele în prezent în tabelul contor."
891
 
892
+ #: counter-options.php:701
893
  #, php-format
894
  #@ cpd
895
  msgid "All collected data until %s will deleted."
896
  msgstr "Toate datele colectate până când %s va şterge."
897
 
898
+ #: counter-options.php:706
899
  #, php-format
900
  #@ cpd
901
  msgid "Keep entries of last %s full months + current month in counter table."
902
  msgstr "Păstraţi intrările din ultimele luni complete %s + luna curentă în tabelul de contor."
903
 
904
+ #: counter-options.php:757
905
  #@ cpd
906
  msgid "ReActivation"
907
  msgstr "Reactivare"
908
 
909
+ #: counter-options.php:760
910
  #@ cpd
911
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
912
  msgstr "Aici aveţi posibilitatea să porniţi funcţiile de instalare manuală. <br/>Fel ca deactivati si reactivati pluginul."
913
 
914
+ #: counter-options.php:765
915
  #@ cpd
916
  msgid "ReActivate the plugin"
917
  msgstr "Reactiva plugin-ul"
918
 
919
+ #: counter.php:246
920
+ #: counter.php:1048
921
  #@ cpd
922
  msgid "Visitors"
923
  msgstr "Vizitatori"
924
 
925
+ #: counter.php:249
926
+ #: counter.php:250
927
  #@ cpd
928
  msgid "Most visited day"
929
  msgstr "Cele mai vizitate de zi"
930
 
931
+ #: counter.php:1455
932
  #@ cpd
933
  msgid "drag and drop to sort"
934
  msgstr "Glisaţi şi fixaţi pentru a sorta"
935
 
936
+ #: counter-core.php:797
937
+ #: counter.php:247
938
+ #: counter.php:348
939
+ #: counter.php:1225
940
+ #: counter.php:1422
941
  #: userperspan.php:46
942
  #@ cpd
943
  msgid "Visitors per day"
944
  msgstr ""
945
 
946
+ #: counter-core.php:798
947
+ #: counter-options.php:967
948
+ #: counter-options.php:971
949
  #@ cpd
950
  msgid "Search strings"
951
  msgstr ""
952
 
953
+ #: counter-core.php:1191
954
  #@ cpd
955
  msgid "Your can download the backup files here and now."
956
  msgstr ""
957
 
958
+ #: counter-core.php:1261
959
  #@ cpd
960
  msgid "Error while reading backup file!"
961
  msgstr ""
962
 
963
+ #: counter-core.php:1265
964
  #, php-format
965
  #@ cpd
966
  msgid "The backup was added to counter table %s."
967
  msgstr ""
968
 
969
+ #: counter-core.php:1267
970
  #, php-format
971
  #@ cpd
972
  msgid "The counter table %s was restored from backup."
973
  msgstr ""
974
 
975
+ #: counter-core.php:1284
976
  #@ cpd
977
  msgid "Options restored from backup."
978
  msgstr ""
979
 
980
+ #: counter-options.php:316
981
  #, php-format
982
  #@ cpd
983
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
984
  msgstr ""
985
 
986
+ #: counter-options.php:340
987
  #@ cpd
988
  msgid "Old search strings deleted"
989
  msgstr ""
990
 
991
+ #: counter-options.php:355
992
  #@ cpd
993
  msgid "Clients and referers deleted"
994
  msgstr ""
995
 
996
+ #: counter-options.php:570
997
  #@ cpd
998
  msgid "Download only"
999
  msgstr ""
1000
 
1001
+ #: counter-options.php:602
1002
  #@ cpd
1003
  msgid "Settings and collections"
1004
  msgstr ""
1005
 
1006
+ #: counter-options.php:607
1007
  #, php-format
1008
  #@ cpd
1009
  msgid "Counter table %s"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:614
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Add data from the backup file %s to existing counter table?"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:614
1019
  #@ cpd
1020
  msgid "Add"
1021
  msgstr ""
1022
 
1023
+ #: counter-options.php:618
1024
  #, php-format
1025
  #@ cpd
1026
  msgid "Restore data from the backup file %s ?"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:618
1030
  #@ default
1031
  msgid "Restore"
1032
  msgstr ""
1033
 
1034
+ #: counter-options.php:620
1035
  #@ default
1036
  msgid "Delete"
1037
  msgstr ""
1038
 
1039
+ #: counter-options.php:621
1040
  #, php-format
1041
  #@ cpd
1042
  msgid "Delete the backup file %s ?"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:627
1046
  #@ cpd
1047
  msgid "add backup to current counter table"
1048
  msgstr ""
1049
 
1050
+ #: counter-options.php:628
1051
  #@ cpd
1052
  msgid "replace current counter table with with backup"
1053
  msgstr ""
1054
 
1055
+ #: counter-options.php:629
1056
  #@ cpd
1057
  msgid "delete backup file"
1058
  msgstr ""
1059
 
1060
+ #: counter-options.php:654
1061
  #, php-format
1062
  #@ cpd
1063
  msgid "Delete search strings older than %s days."
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:658
1067
  #@ cpd
1068
  msgid "Delete search strings"
1069
  msgstr ""
1070
 
1071
+ #: counter-options.php:665
1072
  #, php-format
1073
  #@ cpd
1074
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:669
1078
  #@ cpd
1079
  msgid "Delete clients and referers"
1080
  msgstr ""
1081
 
1082
+ #: counter.php:245
1083
+ #: counter.php:1420
1084
  #@ cpd
1085
  msgid "Visitors last week"
1086
  msgstr ""
1087
 
1088
+ #: counter.php:974
1089
+ #: counter.php:1424
1090
  #@ cpd
1091
  msgid "Counter starts on"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,510 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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 "Эта запись"
320
 
321
- #: counter-options.php:63
322
  #, php-format
323
  #@ cpd
324
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
325
  msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
326
 
327
- #: counter-options.php:66
328
  #@ cpd
329
  msgid "update next"
330
  msgstr "обновить следующий"
331
 
332
- #: counter-options.php:106
333
  #, php-format
334
  #@ cpd
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,29 +534,29 @@ 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,32 +601,32 @@ 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,12 +646,12 @@ 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,95 +661,95 @@ msgstr "Вы можете получить данные стран для все
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 "Посетителей на сайте"
@@ -759,461 +760,476 @@ msgstr "Посетителей на сайте"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:33+0000\n"
7
  "Last-Translator: Ilya Pshenichny\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Настройки сохранены"
27
 
28
+ #: counter-options.php:121
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База данных очищена. %s строчек удалено."
33
 
34
+ #: counter-options.php:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Таблица %s удалена"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Настройки удалены"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Деинсталяция"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Нажмите сюда"
63
 
64
+ #: counter-options.php:386
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
68
 
69
+ #: counter-options.php:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Время онлайн"
73
 
74
+ #: counter-options.php:836
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
78
 
79
+ #: counter-options.php:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Вошедших пользователей"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "также считать"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Автоматический счетчик"
93
 
94
+ #: counter-options.php:854
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
98
 
99
+ #: counter-options.php:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Игнорировать ботов"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Сохранить настройки"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Очистить базу данных"
114
 
115
+ #: counter-options.php:644
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:795
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:796
126
  #@ cpd
127
  msgid "Here you can delete the tables and disable \"Count per Day\"."
128
  msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
129
 
130
+ #: counter-options.php:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "ВНИМАНИЕ"
134
 
135
+ #: counter-options.php:800
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
139
 
140
+ #: counter-options.php:802
141
  #@ cpd
142
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
143
  msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
144
 
145
+ #: counter-options.php:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Да"
150
 
151
+ #: counter-options.php:806
152
  #@ cpd
153
  msgid "You are sure to disable Count per Day and delete all data?"
154
  msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
155
 
156
+ #: counter-core.php:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статистика"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Всего посетителей"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Посетителей сейчас на сайте"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Посетителей сегодня"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Посетителей вчера"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Посетителей на прошлой неделе"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Счетчик начинается с"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Посетителей в день"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Посетителей в месяц"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Посетителей записи"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Счетчик обнулен."
226
 
227
+ #: counter-options.php:902
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Консоль"
231
 
232
+ #: counter-options.php:938
233
+ #: counter-options.php:942
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Сколько записей вы хотите видеть на странице консоли?"
237
 
238
+ #: counter-options.php:941
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Последние счетчики - Записи"
242
 
243
+ #: counter-options.php:945
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Последние счетчики - Дни"
247
 
248
+ #: counter-options.php:946
249
+ #: counter-options.php:950
250
+ #: counter-options.php:972
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "Насколько дней назад вы хотите видеть статистику?"
254
 
255
+ #: counter-options.php:949
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Таблица - Дни"
259
 
260
+ #: counter-options.php:953
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Таблица - Высота"
264
 
265
+ #: counter-options.php:954
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Высота самого большого столбика"
269
 
270
+ #: counter-options.php:986
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Показать в списках"
274
 
275
+ #: counter-options.php:987
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
279
 
280
+ #: counter-options.php:773
281
+ #: counter-options.php:783
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Обнулить счетчик"
285
 
286
+ #: counter-options.php:776
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:776
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:653
298
+ #: counter-options.php:412
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Настройки"
302
 
303
+ #: counter.php:347
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Прочтений в день"
307
 
308
+ #: counter-core.php:1541
309
+ #: counter-options.php:879
310
+ #: counter.php:240
311
+ #: counter.php:1024
312
+ #: map/map.php:60
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "Прочтений"
316
 
317
+ #: counter.php:1411
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "Эта запись"
321
 
322
+ #: counter-options.php:66
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
327
 
328
+ #: counter-options.php:69
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "обновить следующий"
332
 
333
+ #: counter-options.php:109
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "Таблица ботов очищена. %s записей удалено"
338
 
339
+ #: counter-options.php:842
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr "до уровня пользователя"
343
 
344
+ #: counter-options.php:868
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "Анонимный IP"
348
 
349
+ #: counter-options.php:958
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "Страны"
353
 
354
+ #: counter-options.php:959
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "Сколько стран вы хотите видеть в списке?"
358
 
359
+ #: counter-options.php:994
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "Начальные данные"
363
 
364
+ #: counter-options.php:998
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
368
 
369
+ #: counter-options.php:1002
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "Дата начала"
373
 
374
+ #: counter-options.php:1003
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "Ваш старый Счетчик начинался с"
378
 
379
+ #: counter-options.php:1006
380
+ #: counter-options.php:1010
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "Начало отсчета"
384
 
385
+ #: counter-options.php:1007
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr "Добавить значение к \"Всего посетителей\"."
389
 
390
+ #: counter-options.php:723
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - Страны"
394
 
395
+ #: counter-options.php:732
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "Обновить данные старого счетчика"
399
 
400
+ #: counter-options.php:744
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "Обновить базу данных GeoIP"
404
 
405
+ #: counter-options.php:739
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "Скачать новую версию файла GeoIP.dat."
409
 
410
+ #: counter-options.php:749
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr "Больше информации про GeoIP"
414
 
415
+ #: counter-options.php:432
416
  #: massbots.php:46
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "Вероятные боты"
420
 
421
+ #: counter-options.php:436
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "Показать все IP с более чем %s просмотров в сутки"
426
 
427
+ #: counter-options.php:437
428
+ #: counter-options.php:501
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "показать"
434
 
435
+ #: counter-options.php:445
436
+ #: counter-options.php:509
437
  #@ cpd
438
  msgid "IP"
439
  msgstr "IP"
440
 
441
+ #: counter-options.php:446
442
+ #: counter-options.php:510
443
  #: notes.php:88
444
  #@ cpd
445
  #@ default
446
  msgid "Date"
447
  msgstr "Дата"
448
 
449
+ #: counter-options.php:447
450
+ #: counter-options.php:511
451
  #@ cpd
452
  msgid "Client"
453
  msgstr "Клиент"
454
 
455
+ #: counter-options.php:448
456
+ #: counter-options.php:512
457
  #@ cpd
458
  msgid "Views"
459
  msgstr "Просмотров"
460
 
461
+ #: counter-options.php:463
462
+ #: counter-options.php:479
463
+ #: counter-options.php:526
464
  #, php-format
465
  #@ cpd
466
  msgid "Delete these %s counts"
467
  msgstr "Удалить эти %s счетчиков"
468
 
469
+ #: counter-options.php:814
470
  #@ cpd
471
  msgid "Support"
472
  msgstr "Поддержка"
473
 
474
+ #: counter-core.php:756
475
  #, php-format
476
  #@ cpd
477
  msgid "Time for Count per Day: <code>%s</code>."
478
  msgstr "Время для Count per Day: <code>%s</code>"
479
 
480
+ #: counter-core.php:757
481
  #@ cpd
482
  msgid "Bug? Problem? Question? Hint? Praise?"
483
  msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
484
 
485
+ #: counter-core.php:758
486
  #, php-format
487
  #@ cpd
488
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
489
  msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
490
 
491
+ #: counter.php:236
492
+ #: counter.php:1412
493
  #@ cpd
494
  msgid "Total reads"
495
  msgstr "Всего прочтений"
496
 
497
+ #: counter.php:237
498
+ #: counter.php:1413
499
  #@ cpd
500
  msgid "Reads today"
501
  msgstr "Прочтений сегодня"
502
 
503
+ #: counter.php:238
504
+ #: counter.php:1414
505
  #@ cpd
506
  msgid "Reads yesterday"
507
  msgstr "Прочтений вчера"
508
 
509
+ #: counter.php:895
510
  #: notes.php:55
511
  #: notes.php:89
512
  #@ cpd
513
  msgid "Notes"
514
  msgstr "Заметки"
515
 
516
+ #: counter.php:893
517
  #@ default
518
  msgid "Show"
519
  msgstr "Показать"
520
 
521
+ #: counter.php:963
522
  #@ cpd
523
  msgid "Other"
524
  msgstr "Другие"
525
 
526
+ #: counter.php:1135
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr "Редактировать запись"
534
  msgid "Front page displays"
535
  msgstr "Отображений главной страницы"
536
 
537
+ #: counter-core.php:802
538
+ #: counter-options.php:963
539
  #@ cpd
540
  msgid "Browsers"
541
  msgstr "Браузеры"
542
 
543
+ #: counter-core.php:796
544
  #@ cpd
545
  msgid "Latest Counts"
546
  msgstr "Недавние подсчеты"
547
 
548
+ #: counter-core.php:799
549
  #@ default
550
  msgid "Plugin"
551
  msgstr "Плагин"
552
 
553
+ #: counter-core.php:807
554
  #@ cpd
555
  msgid "Reads per Country"
556
  msgstr "Прочтений по странам"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "Карта"
601
  msgid "edit"
602
  msgstr "редактировать"
603
 
604
+ #: counter-options.php:872
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Кэш"
608
 
609
+ #: counter-options.php:873
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
613
 
614
+ #: counter-options.php:964
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Подстрока агента пользователя разделенный запятой"
618
 
619
+ #: counter-options.php:1048
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Режим отладки"
623
 
624
+ #: counter-options.php:1050
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Добавить отладочную информацию внизу каждой страницы."
628
 
629
+ #: counter-core.php:808
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Посетителей по странам"
646
  msgid "PostID"
647
  msgstr "ID сообщения"
648
 
649
+ #: counter-options.php:1011
650
  #@ cpd
651
  msgid "Add this value to \"Total reads\"."
652
  msgstr "Добавить значение к \"Всего прочтений\"."
653
 
654
+ #: counter-options.php:726
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 "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
661
  msgid "no data found"
662
  msgstr "ничего не найдено"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Счетчик"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Клиенты и ссылающиеся сайты"
673
 
674
+ #: counter-options.php:879
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 "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Локальные URL"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Показывать локальные переходы тоже."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Записи"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Страницы"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Прочтений на прошлой неделе"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Категория"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Тег"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "Лицензия"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Прочтений за месяц"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Ссылающийся сайт"
730
 
731
+ #: counter-options.php:967
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Ссылающиеся сайты - Вхождения"
735
 
736
+ #: counter-options.php:968
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
740
 
741
+ #: counter-options.php:971
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Ссылающиеся сайты - Дни"
745
 
746
+ #: counter.php:994
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s ссылающихся сайтов за последние %s дней:"
751
 
752
+ #: counter-core.php:792
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Посетителей на сайте"
760
  msgid "\"Count per Day\" updated to version %s."
761
  msgstr "\"Count per Day\" обновлен до версии %s"
762
 
763
+ #: counter-core.php:1076
764
  #@ cpd
765
  msgid "Backup failed! Cannot open file"
766
  msgstr "Обновление не удалось! Не могу открыть файл"
767
 
768
+ #: counter-core.php:1195
769
+ #: counter-core.php:1203
770
  #, php-format
771
  #@ cpd
772
  msgid "Backup of counter table saved in %s."
773
  msgstr "Резервная копия таблицы счетчика сохранена в %s"
774
 
775
+ #: counter-core.php:1197
776
+ #: counter-core.php:1205
777
  #, php-format
778
  #@ cpd
779
  msgid "Backup of counter options and collection saved in %s."
780
  msgstr "Резервная копия настроек счетчика и коллекции сохранены в %s"
781
 
782
+ #: counter-options.php:177
783
  #@ cpd
784
  msgid "Collection in progress..."
785
  msgstr "Происходит сбор данных..."
786
 
787
+ #: counter-options.php:271
788
  #@ cpd
789
  msgid "Get Visitors per Post..."
790
  msgstr "Получить посетителей по записям..."
791
 
792
+ #: counter-options.php:316
793
  #, php-format
794
  #@ cpd
795
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
796
  msgstr "Записи счетчика до %s собраны и оптимизирована таблица счетчика %s (размер перед = %s &gt; размер после = %s)."
797
 
798
+ #: counter-options.php:325
799
  #@ cpd
800
  msgid "Installation of \"Count per Day\" checked"
801
  msgstr "Установка \"Count per Day\" проверена"
802
 
803
+ #: counter-options.php:411
804
  #@ default
805
  msgid "Tools"
806
  msgstr "Инструменты"
807
 
808
+ #: counter-options.php:881
809
  #@ cpd
810
  msgid "Save URL only, no query string."
811
  msgstr "Сохранять только URL без строки запроса."
812
 
813
+ #: counter-options.php:918
814
  #@ cpd
815
  msgid "Who can see it"
816
  msgstr "Кто может это видеть"
817
 
818
+ #: counter-options.php:927
819
  #@ cpd
820
  msgid "custom"
821
  msgstr "пользовательский"
822
 
823
+ #: counter-options.php:929
824
  #@ cpd
825
  msgid "and higher are allowed to see the statistics page."
826
  msgstr "и выше могут видеть статистику страницы."
827
 
828
+ #: counter-options.php:931
829
  #, php-format
830
  #@ cpd
831
  msgid "Set the %s capability %s a user need:"
832
  msgstr "Установить %s права % необходимые пользователю:"
833
 
834
+ #: counter-options.php:1018
835
  #@ cpd
836
  msgid "Stylesheet"
837
  msgstr "Стили"
838
 
839
+ #: counter-options.php:1021
840
  #@ cpd
841
  msgid "NO Stylesheet in Frontend"
842
  msgstr "НЕ использовать стили в интерфейсе"
843
 
844
+ #: counter-options.php:1022
845
  #@ cpd
846
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
847
  msgstr "Не загружать файл стилей \"counter.css\" для интерфейса."
848
 
849
+ #: counter-options.php:563
850
+ #: counter-options.php:1029
851
  #@ cpd
852
  msgid "Backup"
853
  msgstr "Резервирование"
854
 
855
+ #: counter-options.php:1032
856
  #@ cpd
857
  msgid "Entries per pass"
858
  msgstr "Записей за один проход"
859
 
860
+ #: counter-options.php:1035
861
  #@ cpd
862
  msgid "How many entries should be saved per pass? Default: 10000"
863
  msgstr "Сколько записей сохранять за один проход? По умолчанию: 10000"
864
 
865
+ #: counter-options.php:1040
866
  #@ cpd
867
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
868
  msgstr "Если ограничение памяти вашего PHP меньше 50 MB и вы получаете белую страницу или сообщения об ошибках, то попробуйте меньшее значение."
869
 
870
+ #: counter-options.php:567
871
  #, php-format
872
  #@ cpd
873
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
874
  msgstr "Создать резервную копию таблицы счетчика %s в вашей папке wp-content (если она не только для чтения)"
875
 
876
+ #: counter-options.php:574
877
  #@ cpd
878
  msgid "Backup the database"
879
  msgstr "Резервирование базы данных"
880
 
881
+ #: counter-options.php:678
882
+ #: counter-options.php:710
883
  #@ cpd
884
  msgid "Collect old data"
885
  msgstr "Собрать старые данные"
886
 
887
+ #: counter-options.php:664
888
+ #: counter-options.php:683
889
  #, php-format
890
  #@ cpd
891
  msgid "Current size of your counter table %s is %s."
892
  msgstr "Текущий размер вашей таблицы счетчика %s : %s."
893
 
894
+ #: counter-options.php:685
895
  #@ cpd
896
  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."
897
  msgstr "Вы можете собрать старые данные и очистить таблицу счетчика.<br/>Прочтения и посетители будут сохранены за каждый месяц, по стране и по записям.<br/>Клиенты и ссылающиеся сайты будут удалены."
898
 
899
+ #: counter-options.php:690
900
  #, php-format
901
  #@ cpd
902
  msgid "Currently your collection contains data until %s."
903
  msgstr "Сейчас ваша коллекция содержит данные до %s."
904
 
905
+ #: counter-options.php:694
906
  #@ cpd
907
  msgid "Normally new data will be added to the collection."
908
  msgstr "Если все пройдет успешно, то новые данные будут добавлены в коллекцию."
909
 
910
+ #: counter-options.php:700
911
  #@ cpd
912
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
913
  msgstr "Удалить старую коллекцию и создать новую, которая содержит только данные, которые сейчас в таблице счетчика."
914
 
915
+ #: counter-options.php:701
916
  #, php-format
917
  #@ cpd
918
  msgid "All collected data until %s will deleted."
919
  msgstr "Все данные до %s будут удалены."
920
 
921
+ #: counter-options.php:706
922
  #, php-format
923
  #@ cpd
924
  msgid "Keep entries of last %s full months + current month in counter table."
925
  msgstr "Сохранить записи за последние %s полные месяца + текущий месяц в таблице счетчика."
926
 
927
+ #: counter-options.php:757
928
  #@ cpd
929
  msgid "ReActivation"
930
  msgstr "Переактивация"
931
 
932
+ #: counter-options.php:760
933
  #@ cpd
934
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
935
  msgstr "Здесь вы можете запустить функции установки вручную.<br/>Точно также, как и деактивация и активация плагина."
936
 
937
+ #: counter-options.php:765
938
  #@ cpd
939
  msgid "ReActivate the plugin"
940
  msgstr "Переактивировать плагин"
941
 
942
+ #: counter.php:246
943
+ #: counter.php:1048
944
  #@ cpd
945
  msgid "Visitors"
946
  msgstr "Посетителей"
947
 
948
+ #: counter.php:249
949
+ #: counter.php:250
950
  #@ cpd
951
  msgid "Most visited day"
952
  msgstr "Самый посещаемый день"
953
 
954
+ #: counter.php:1436
955
  #@ default
956
  msgid "Title"
957
  msgstr "Заголовок"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "перетащите для сортировки"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr "Строки поиска"
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr "Вы можете скачать резервные файлы здесь и сейчас."
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr "Ошибка при чтении резервного файла."
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr "Резервная копия была добавлена в таблицу счетчика %s."
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr "Таблица счетчика %s была восстановлена из резервной копии."
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr "Опции восстановлены из резервной копии."
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr "Старые строки поиска были удалены"
1002
 
1003
+ #: counter-options.php:570
1004
  #@ cpd
1005
  msgid "Download only"
1006
  msgstr "Только скачать"
1007
 
1008
+ #: counter-options.php:602
1009
  #@ cpd
1010
  msgid "Settings and collections"
1011
  msgstr "Настройки и наборы данных"
1012
 
1013
+ #: counter-options.php:607
1014
  #, php-format
1015
  #@ cpd
1016
  msgid "Counter table %s"
1017
  msgstr "Таблица счетчика %s"
1018
 
1019
+ #: counter-options.php:614
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Add data from the backup file %s to existing counter table?"
1023
  msgstr "Добавить данные из резервного файла %s к существующей таблице счетчика?"
1024
 
1025
+ #: counter-options.php:614
1026
  #@ cpd
1027
  msgid "Add"
1028
  msgstr "Добавить"
1029
 
1030
+ #: counter-options.php:618
1031
  #, php-format
1032
  #@ cpd
1033
  msgid "Restore data from the backup file %s ?"
1034
  msgstr "Восстановить данные из резервного файла %s ?"
1035
 
1036
+ #: counter-options.php:618
1037
  #@ default
1038
  msgid "Restore"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:620
1042
  #@ default
1043
  msgid "Delete"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:621
1047
  #, php-format
1048
  #@ cpd
1049
  msgid "Delete the backup file %s ?"
1050
  msgstr "Удалить резервный файл %s ?"
1051
 
1052
+ #: counter-options.php:627
1053
  #@ cpd
1054
  msgid "add backup to current counter table"
1055
  msgstr "добавить резервную копию к существующей таблице счетчика"
1056
 
1057
+ #: counter-options.php:628
1058
  #@ cpd
1059
  msgid "replace current counter table with with backup"
1060
  msgstr "заменить текущую таблицу счетчика резервной копией"
1061
 
1062
+ #: counter-options.php:629
1063
  #@ cpd
1064
  msgid "delete backup file"
1065
  msgstr "удалить резервный файл"
1066
 
1067
+ #: counter-options.php:654
1068
  #, php-format
1069
  #@ cpd
1070
  msgid "Delete search strings older than %s days."
1071
  msgstr "Удалить строки поиска старше %s дней."
1072
 
1073
+ #: counter-options.php:658
1074
  #@ cpd
1075
  msgid "Delete search strings"
1076
  msgstr "Удалить строки поиска."
1077
 
1078
+ #: counter.php:1198
1079
  #, php-format
1080
  #@ cpd
1081
  msgid "The %s most searched strings:"
1082
  msgstr "Самые часто запрашиваемые строки поиска %s :"
1083
 
1084
+ #: counter.php:1207
1085
  #, php-format
1086
  #@ cpd
1087
  msgid "The search strings of the last %s days:"
1088
  msgstr "Строки поиска за последние %s дней:"
1089
 
1090
+ #: counter-options.php:355
1091
  #@ cpd
1092
  msgid "Clients and referers deleted"
1093
  msgstr ""
1094
 
1095
+ #: counter-options.php:665
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1099
  msgstr ""
1100
 
1101
+ #: counter-options.php:669
1102
  #@ cpd
1103
  msgid "Delete clients and referers"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1150
1107
  #@ default
1108
  msgid "Front page"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-sr_RS.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,346 +20,347 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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 "
325
 
326
- #: counter-options.php:63
327
  #, php-format
328
  #@ cpd
329
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
  msgstr "Zemlje azurirane. <b>%s</b> unosa u %s bez ostale zemlje "
331
 
332
- #: counter-options.php:66
333
  #@ cpd
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,51 +380,51 @@ msgstr "Izvinite, doslo je do greske. Pokusajte ponovo ili proverite prava prist
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? "
391
 
392
- #: counter-options.php:106
393
  #, php-format
394
  #@ cpd
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,112 +435,112 @@ 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,66 +572,66 @@ msgstr "izbrisi "
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,140 +656,140 @@ msgstr "PostID "
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:"
@@ -800,420 +801,435 @@ msgstr "Podesi %s sposobnost %s posetiocu treba:"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:38+0000\n"
7
  "Last-Translator: Diana <diana@wpdiscounts.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Opcije azurirane "
27
 
28
+ #: counter-options.php:121
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:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "DEINSTALIRANJE broj po danu"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Tabla %s izbrisana"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Opcije izbrisane"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Deinstalirati"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Kliknite ovde"
63
 
64
+ #: counter-options.php:386
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:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Vreme online"
73
 
74
+ #: counter-options.php:836
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:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Ulogovani korisnici"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Brojanje takodje"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Auto brojanje"
93
 
94
+ #: counter-options.php:854
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:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Botovi za ignorisanje"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Azuriraj opcije "
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Ocisti bazu podataka"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "UPOZORENJE"
134
 
135
+ #: counter-options.php:800
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:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Da"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Statistike "
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Ukupno poseta"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Posetioci trenutno online"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Posetioci danas"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Posetioci juce"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Posetioci prosle nedelje"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Projac pocinje"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Posetioca po danu"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Posetioca po mesecu "
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Posetioca po postu "
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Brojac resetovan "
226
 
227
+ #: counter-options.php:938
228
+ #: counter-options.php:942
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:941
234
  #@ cpd
235
  msgid "Latest Counts - Posts"
236
  msgstr "Najnoviji brojaci - Postovi "
237
 
238
+ #: counter-options.php:945
239
  #@ cpd
240
  msgid "Latest Counts - Days"
241
  msgstr "Najnoviji brojaci - Dani"
242
 
243
+ #: counter-options.php:946
244
+ #: counter-options.php:950
245
+ #: counter-options.php:972
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:986
251
  #@ cpd
252
  msgid "Show in lists"
253
  msgstr "POkazi u listama"
254
 
255
+ #: counter-options.php:987
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:773
261
+ #: counter-options.php:783
262
  #@ cpd
263
  msgid "Reset the counter"
264
  msgstr "Resetuj brojac"
265
 
266
+ #: counter-options.php:776
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:776
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:653
278
+ #: counter-options.php:412
279
  #@ default
280
  msgid "Settings"
281
  msgstr "Podesavanja"
282
 
283
+ #: counter-core.php:1541
284
+ #: counter-options.php:879
285
+ #: counter.php:240
286
+ #: counter.php:1024
287
+ #: map/map.php:60
288
  #@ cpd
289
  msgid "Reads"
290
  msgstr "Citanja"
291
 
292
+ #: counter-core.php:796
293
  #@ cpd
294
  msgid "Latest Counts"
295
  msgstr "Poslednji brojaci "
296
 
297
+ #: counter-options.php:949
298
  #@ cpd
299
  msgid "Chart - Days"
300
  msgstr "Grafikon - Dani"
301
 
302
+ #: counter-options.php:953
303
  #@ cpd
304
  msgid "Chart - Height"
305
  msgstr "Grafikon - Visina"
306
 
307
+ #: counter-options.php:954
308
  #@ cpd
309
  msgid "Height of the biggest bar"
310
  msgstr "Visina najviseg bara"
311
 
312
+ #: counter.php:1411
313
  #@ cpd
314
  msgid "This post"
315
  msgstr "Ovaj post"
316
 
317
+ #: counter-options.php:902
318
  #@ default
319
  msgid "Dashboard"
320
  msgstr "KOntrolna tabla"
321
 
322
+ #: counter.php:347
323
  #@ cpd
324
  msgid "Reads per day"
325
  msgstr "Citanja po danu "
326
 
327
+ #: counter-options.php:66
328
  #, php-format
329
  #@ cpd
330
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
  msgstr "Zemlje azurirane. <b>%s</b> unosa u %s bez ostale zemlje "
332
 
333
+ #: counter-options.php:69
334
  #@ cpd
335
  msgid "update next"
336
  msgstr "Azuriraj sledece"
337
 
338
+ #: counter-options.php:723
339
  #@ cpd
340
  msgid "GeoIP - Countries"
341
  msgstr "GeoIP - Zemlje "
342
 
343
+ #: counter-options.php:732
344
  #@ cpd
345
  msgid "Update old counter data"
346
  msgstr "Azuriraj stare podatke brojaca"
347
 
348
+ #: counter-options.php:744
349
  #@ cpd
350
  msgid "Update GeoIP database"
351
  msgstr "Azuriraj GeoIP bazu podataka"
352
 
353
+ #: counter-options.php:739
354
  #@ cpd
355
  msgid "Download a new version of GeoIP.dat file."
356
  msgstr "SKini novu verziju GeoIP.dat fajla"
357
 
358
+ #: counter-options.php:749
359
  #@ cpd
360
  msgid "More informations about GeoIP"
361
  msgstr "Vise informacija o GeoIP"
362
 
363
+ #: counter-core.php:807
364
  #@ cpd
365
  msgid "Reads per Country"
366
  msgstr "Citanja po zemlji "
380
  msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
  msgstr "Izvinite, neophodne funkcije (zlib) nisu instalirate ili omogucene u php.ini"
382
 
383
+ #: counter-options.php:958
384
  #@ cpd
385
  msgid "Countries"
386
  msgstr "Zemlje"
387
 
388
+ #: counter-options.php:959
389
  #@ cpd
390
  msgid "How many countries do you want to see on dashboard page?"
391
  msgstr "Koliko zemalja zelite da vidite na kontrolnoj tabli? "
392
 
393
+ #: counter-options.php:109
394
  #, php-format
395
  #@ cpd
396
  msgid "Mass Bots cleaned. %s counts deleted."
397
  msgstr "Mass Botoci ocisceni. %s zemlje izbrisane"
398
 
399
+ #: counter-options.php:432
400
  #: massbots.php:46
401
  #@ cpd
402
  msgid "Mass Bots"
403
  msgstr "Mass botovi "
404
 
405
+ #: counter-options.php:436
406
  #, php-format
407
  #@ cpd
408
  msgid "Show all IPs with more than %s page views per day"
409
  msgstr "Pokazi sve IP sa vise od %s pogleda po danu "
410
 
411
+ #: counter-options.php:437
412
+ #: counter-options.php:501
413
  #: notes.php:84
414
  #: userperspan.php:56
415
  #@ cpd
416
  msgid "show"
417
  msgstr "pokazi "
418
 
419
+ #: counter-options.php:463
420
+ #: counter-options.php:479
421
+ #: counter-options.php:526
422
  #, php-format
423
  #@ cpd
424
  msgid "Delete these %s counts"
425
  msgstr "Izbrisi ove %s brojace"
426
 
427
+ #: counter.php:963
428
  #@ cpd
429
  msgid "Other"
430
  msgstr "druge"
435
  msgid "Front page displays"
436
  msgstr "Displej naslovne stranice "
437
 
438
+ #: counter-core.php:802
439
+ #: counter-options.php:963
440
  #@ cpd
441
  msgid "Browsers"
442
  msgstr "Pretrazivaci "
443
 
444
+ #: counter-options.php:445
445
+ #: counter-options.php:509
446
  #@ cpd
447
  msgid "IP"
448
  msgstr "IP"
449
 
450
+ #: counter-options.php:446
451
+ #: counter-options.php:510
452
  #: notes.php:88
453
  #@ cpd
454
  #@ default
455
  msgid "Date"
456
  msgstr "Datum"
457
 
458
+ #: counter-options.php:447
459
+ #: counter-options.php:511
460
  #@ cpd
461
  msgid "Client"
462
  msgstr "Klijent"
463
 
464
+ #: counter-options.php:448
465
+ #: counter-options.php:512
466
  #@ cpd
467
  msgid "Views"
468
  msgstr "Pogledi "
469
 
470
+ #: counter-options.php:994
471
  #@ cpd
472
  msgid "Start Values"
473
  msgstr "Pocetne vrednosti "
474
 
475
+ #: counter-options.php:998
476
  #@ cpd
477
  msgid "Here you can change the date of first count and add a start count."
478
  msgstr "Ovde mozete promeniti datum prvog brojanja i dodati startno brojanje"
479
 
480
+ #: counter-options.php:1002
481
  #@ cpd
482
  msgid "Start date"
483
  msgstr "Pocetni datum"
484
 
485
+ #: counter-options.php:1003
486
  #@ cpd
487
  msgid "Your old Counter starts at?"
488
  msgstr "Vas stari brojac pocinje na? "
489
 
490
+ #: counter-options.php:1006
491
+ #: counter-options.php:1010
492
  #@ cpd
493
  msgid "Start count"
494
  msgstr "Pocni brojanje"
495
 
496
+ #: counter-options.php:1007
497
  #@ cpd
498
  msgid "Add this value to \"Total visitors\"."
499
  msgstr "Dodaj ovu vrednost u \"Ukupni posetioci\""
500
 
501
+ #: counter-options.php:814
502
  #@ cpd
503
  msgid "Support"
504
  msgstr "Podrska"
505
 
506
+ #: counter-core.php:757
507
  #@ cpd
508
  msgid "Bug? Problem? Question? Hint? Praise?"
509
  msgstr "Bag? Problem? Pitanje? Savet? Pohvala?"
510
 
511
+ #: counter-core.php:758
512
  #, php-format
513
  #@ cpd
514
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
515
  msgstr "Napisite komentar o <a href=\"%s\">plagin strana</a>."
516
 
517
+ #: counter.php:893
518
  #@ default
519
  msgid "Show"
520
  msgstr "Pokazi "
521
 
522
+ #: counter.php:1135
523
  #@ default
524
  msgid "Edit Post"
525
  msgstr "Izmeni postove "
526
 
527
+ #: counter-core.php:756
528
  #, php-format
529
  #@ cpd
530
  msgid "Time for Count per Day: <code>%s</code>."
531
  msgstr "Vreme za brojac po danu: <code>%s</code>."
532
 
533
+ #: counter-options.php:842
534
  #@ cpd
535
  msgid "until User Level"
536
  msgstr "Jedinica nivoa korisnika "
537
 
538
+ #: counter-core.php:799
539
  #@ default
540
  msgid "Plugin"
541
  msgstr "Plagin"
542
 
543
+ #: counter.php:895
544
  #: notes.php:55
545
  #: notes.php:89
546
  #@ cpd
572
  msgid "edit"
573
  msgstr "izmeni"
574
 
575
+ #: counter-options.php:1011
576
  #@ cpd
577
  msgid "Add this value to \"Total reads\"."
578
  msgstr "Dodaj ovu vrednost u \"Ukupni pregledi\"."
579
 
580
+ #: counter.php:236
581
+ #: counter.php:1412
582
  #@ cpd
583
  msgid "Total reads"
584
  msgstr "Ukupni pregledi "
585
 
586
+ #: counter.php:237
587
+ #: counter.php:1413
588
  #@ cpd
589
  msgid "Reads today"
590
  msgstr "Pregledi danas"
591
 
592
+ #: counter.php:238
593
+ #: counter.php:1414
594
  #@ cpd
595
  msgid "Reads yesterday"
596
  msgstr "Pregledi juce"
597
 
598
+ #: counter.php:438
599
+ #: counter.php:1254
600
  #@ cpd
601
  msgid "Map"
602
  msgstr "Mapa"
603
 
604
+ #: counter-options.php:868
605
  #@ cpd
606
  msgid "Anonymous IP"
607
  msgstr "Anonimni IP"
608
 
609
+ #: counter-options.php:872
610
  #@ cpd
611
  msgid "Cache"
612
  msgstr "Kes"
613
 
614
+ #: counter-options.php:873
615
  #@ cpd
616
  msgid "I use a cache plugin. Count these visits with ajax."
617
  msgstr "Koristim plagin za kes. Prebroj ove posete uz pomoc ajaxa."
618
 
619
+ #: counter-options.php:964
620
  #@ cpd
621
  msgid "Substring of the user agent, separated by comma"
622
  msgstr "Podred agenta korisnika, razdvojen zapetom "
623
 
624
+ #: counter-core.php:808
625
  #@ cpd
626
  msgid "Visitors per Country"
627
  msgstr "Posetioca po zemlji "
628
 
629
+ #: counter-options.php:1048
630
  #@ cpd
631
  msgid "Debug mode"
632
  msgstr "Debug mod"
633
 
634
+ #: counter-options.php:1050
635
  #@ cpd
636
  msgid "Show debug informations at the bottom of all pages."
637
  msgstr "Pokazi debug informacije na dnu ove strane "
656
  msgid "no data found"
657
  msgstr "Nema pronadjenih podataka"
658
 
659
+ #: counter-options.php:726
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 "Mozete dobiti podatke o zemlji za sve unose u bazi podataka proveravanjem IP adrese iz GeoIP baze podataka. Ovo moze malo potrajati. "
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Brojac"
668
 
669
+ #: counter-options.php:975
670
  #@ cpd
671
  msgid "Local URLs"
672
  msgstr "Lokalno URL"
673
 
674
+ #: counter-options.php:976
675
  #@ cpd
676
  msgid "Show local referrers too."
677
  msgstr "Pokazi lokalne reference takodje"
678
 
679
+ #: counter-options.php:983
680
  #@ default
681
  msgid "Posts"
682
  msgstr "Postovi "
683
 
684
+ #: counter-options.php:983
685
  #@ default
686
  msgid "Pages"
687
  msgstr "Stranice"
688
 
689
+ #: counter.php:1144
690
  #@ default
691
  msgid "Category"
692
  msgstr "Kategorije"
693
 
694
+ #: counter.php:1147
695
  #@ default
696
  msgid "Tag"
697
  msgstr "Tagovi"
698
 
699
+ #: counter-core.php:759
700
  #@ default
701
  msgid "License"
702
  msgstr "Dozvole "
703
 
704
+ #: counter-core.php:803
705
  #@ cpd
706
  msgid "Referrer"
707
  msgstr "Reference "
708
 
709
+ #: counter.php:1436
710
  #@ default
711
  msgid "Title"
712
  msgstr "Naslov"
713
 
714
+ #: counter-options.php:879
715
  #@ cpd
716
  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."
717
  msgstr "Sacuvaj i pokazi klijente i reference. <br /> Treba puno mesta u bazi podataka ali dobijate mnogo detaljnije informacije o vasim posetiocima "
718
 
719
+ #: counter-options.php:876
720
  #@ cpd
721
  msgid "Clients and referrers"
722
  msgstr "Klijenti i reference"
723
 
724
+ #: counter.php:239
725
+ #: counter.php:1415
726
  #@ cpd
727
  msgid "Reads last week"
728
  msgstr "Citanja prosle nedelje"
729
 
730
+ #: counter-core.php:794
731
+ #: counter.php:1416
732
  #@ cpd
733
  msgid "Reads per month"
734
  msgstr "Citanja po mesecu "
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Reference - unosi"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Koliko referenci zelite videti na kontrolnoj tabli?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Reference - Dani "
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "%s reference u zadnjih %s dana "
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Posetioci online"
761
 
762
+ #: counter-options.php:1018
763
  #@ cpd
764
  msgid "Stylesheet"
765
  msgstr "Stil prikaza"
766
 
767
+ #: counter-options.php:1021
768
  #@ cpd
769
  msgid "NO Stylesheet in Frontend"
770
  msgstr "Nema stila prikaza u Frontendu"
771
 
772
+ #: counter-options.php:1022
773
  #@ cpd
774
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
775
  msgstr "nemojte ucitavati stil prikaza \"counter.css\" u frontendu "
776
 
777
+ #: counter-options.php:918
778
  #@ cpd
779
  msgid "Who can see it"
780
  msgstr "Ko moze videti "
781
 
782
+ #: counter-options.php:927
783
  #@ cpd
784
  msgid "custom"
785
  msgstr "prilagodjen"
786
 
787
+ #: counter-options.php:929
788
  #@ cpd
789
  msgid "and higher are allowed to see the statistics page."
790
  msgstr "i vise mogu videti stranicu sa statistikama"
791
 
792
+ #: counter-options.php:931
793
  #, php-format
794
  #@ cpd
795
  msgid "Set the %s capability %s a user need:"
801
  msgid "\"Count per Day\" updated to version %s."
802
  msgstr "\"brojac po danu\" azuriran na verziju %s"
803
 
804
+ #: counter-core.php:1076
805
  #@ cpd
806
  msgid "Backup failed! Cannot open file"
807
  msgstr "Bekap neuspesan! Ne mogu otvoriti fajl"
808
 
809
+ #: counter-core.php:1195
810
+ #: counter-core.php:1203
811
  #, php-format
812
  #@ cpd
813
  msgid "Backup of counter table saved in %s."
814
  msgstr "Bekap table brojaca sacuvan na %s"
815
 
816
+ #: counter-core.php:1197
817
+ #: counter-core.php:1205
818
  #, php-format
819
  #@ cpd
820
  msgid "Backup of counter options and collection saved in %s."
821
  msgstr "Bekap opcija brojaca i kolekcije sacuvan na %s."
822
 
823
+ #: counter-options.php:177
824
  #@ cpd
825
  msgid "Collection in progress..."
826
  msgstr "Kolekcija u toku..."
827
 
828
+ #: counter-options.php:271
829
  #@ cpd
830
  msgid "Get Visitors per Post..."
831
  msgstr "Dobijte posetioce po postu"
832
 
833
+ #: counter-options.php:316
834
  #, php-format
835
  #@ cpd
836
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
837
  msgstr "Unosi brojaca do %s sakupljeni i tabla brojaca %s optimizirana (velicina pre = %s &gt; velicina posle= %s)."
838
 
839
+ #: counter-options.php:325
840
  #@ cpd
841
  msgid "Installation of \"Count per Day\" checked"
842
  msgstr "Instalacija \"Brojac po Danu\" proverena"
843
 
844
+ #: counter-options.php:411
845
  #@ default
846
  msgid "Tools"
847
  msgstr "Alati"
848
 
849
+ #: counter-options.php:881
850
  #@ cpd
851
  msgid "Save URL only, no query string."
852
  msgstr "Sacuvaj samo URL bez reda za ispitivanje"
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Bekap"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Unosi po pass-u"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Koliko unosa bi trebalo da bude sacuvano po pass-u? Predodredjeno: 10000"
869
 
870
+ #: counter-options.php:1040
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 "Ako je limit vase PHP memorije manji od 50MB i dobijete belu stranicu ili poruke s greskom probajte manju vrednost"
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Kreirajte bekap table brojaca %s u vasem wp-sadrzaj direktorijumu (ukoliko je upisiv)"
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Kreiraj bekap baze podataka"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Sakupi stare podatke"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Trenutna velicine vase table brojaca %s je %s"
898
 
899
+ #: counter-options.php:685
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 "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"
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "Trenutno vasa kolekcija sadrzi podatke do %s"
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Normalno novi podaci bice dodati kolekciji "
914
 
915
+ #: counter-options.php:700
916
  #@ cpd
917
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
918
  msgstr "Izbrisi staru kolekciju i kreiraj novu koja sadrzi samo podatke koji su trenutno na tabli brojaca"
919
 
920
+ #: counter-options.php:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Svi prikupljeni podaci do %s ce biti izbrisani "
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Sacuvaj unose od zadnjih %s meseci + tekuci mesec u tabli brojaca"
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "Reaktivacija"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Ovde mozete poceti instalaciju funckija rucno. <br/> Isto kao akticiranje i deaktiviranje plagina"
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "Reaktivirajte plagin"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Posetioci"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Najposeceniji dan"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "POvuci i spusti da bi sortirali "
963
 
964
+ #: counter-core.php:1191
965
  #@ cpd
966
  msgid "Your can download the backup files here and now."
967
  msgstr "Mozete skinuti bekap fajlove ovde i sada."
968
 
969
+ #: counter-options.php:570
970
  #@ cpd
971
  msgid "Download only"
972
  msgstr "Samo download"
973
 
974
+ #: counter-options.php:620
975
  #@ default
976
  msgid "Delete"
977
  msgstr "Izbrisi "
978
 
979
+ #: counter-options.php:621
980
  #, php-format
981
  #@ cpd
982
  msgid "Delete the backup file %s ?"
983
  msgstr "Izbrisati bekap fajl %s?"
984
 
985
+ #: counter-core.php:798
986
+ #: counter-options.php:967
987
+ #: counter-options.php:971
988
  #@ cpd
989
  msgid "Search strings"
990
  msgstr "Trazi redove"
991
 
992
+ #: counter-core.php:1261
993
  #@ cpd
994
  msgid "Error while reading backup file!"
995
  msgstr "Greska u citanju bekap fajla!"
996
 
997
+ #: counter-core.php:1265
998
  #, php-format
999
  #@ cpd
1000
  msgid "The backup was added to counter table %s."
1001
  msgstr "Bekap je dodat tabli brojaca %s."
1002
 
1003
+ #: counter-core.php:1267
1004
  #, php-format
1005
  #@ cpd
1006
  msgid "The counter table %s was restored from backup."
1007
  msgstr "Tabla brojaca %s je povracena s bekapa"
1008
 
1009
+ #: counter-core.php:1284
1010
  #@ cpd
1011
  msgid "Options restored from backup."
1012
  msgstr "Opcije povracene s bekapa"
1013
 
1014
+ #: counter-options.php:602
1015
  #@ cpd
1016
  msgid "Settings and collections"
1017
  msgstr "Podesavanja i kolekcije"
1018
 
1019
+ #: counter-options.php:607
1020
  #, php-format
1021
  #@ cpd
1022
  msgid "Counter table %s"
1023
  msgstr "Tabla brojaca %s"
1024
 
1025
+ #: counter-options.php:614
1026
  #, php-format
1027
  #@ cpd
1028
  msgid "Add data from the backup file %s to existing counter table?"
1029
  msgstr "Dodati podatke s bekap fajla %s postojecoj tabli brojaca? "
1030
 
1031
+ #: counter-options.php:618
1032
  #, php-format
1033
  #@ cpd
1034
  msgid "Restore data from the backup file %s ?"
1035
  msgstr "POvratiti podatke s bekap fajla %s?"
1036
 
1037
+ #: counter-options.php:618
1038
  #@ default
1039
  msgid "Restore"
1040
  msgstr "Povrati "
1041
 
1042
+ #: counter-options.php:627
1043
  #@ cpd
1044
  msgid "add backup to current counter table"
1045
  msgstr "dodaj bekap trenutnoj tabli brojaca"
1046
 
1047
+ #: counter-options.php:628
1048
  #@ cpd
1049
  msgid "replace current counter table with with backup"
1050
  msgstr "Zameni trenutnu tablu brojaca s bekapom"
1051
 
1052
+ #: counter-options.php:629
1053
  #@ cpd
1054
  msgid "delete backup file"
1055
  msgstr "izbrisi bekap fajl"
1056
 
1057
+ #: counter.php:1198
1058
  #, php-format
1059
  #@ cpd
1060
  msgid "The %s most searched strings:"
1061
  msgstr "%s najtrazeniji redovi "
1062
 
1063
+ #: counter.php:1207
1064
  #, php-format
1065
  #@ cpd
1066
  msgid "The search strings of the last %s days:"
1067
  msgstr "Trazeni redovi u poslednjih %s dana"
1068
 
1069
+ #: counter-options.php:340
1070
  #@ cpd
1071
  msgid "Old search strings deleted"
1072
  msgstr "Stari trazeni redovi izbrisani "
1073
 
1074
+ #: counter-options.php:654
1075
  #, php-format
1076
  #@ cpd
1077
  msgid "Delete search strings older than %s days."
1078
  msgstr "Izbrisi trazene redove starije od %s dana"
1079
 
1080
+ #: counter-options.php:658
1081
  #@ cpd
1082
  msgid "Delete search strings"
1083
  msgstr "Izbrisi trazene redove"
1084
 
1085
+ #: counter-options.php:614
1086
  #@ cpd
1087
  msgid "Add"
1088
  msgstr "Dodaj "
1089
 
1090
+ #: counter-options.php:355
1091
  #@ cpd
1092
  msgid "Clients and referers deleted"
1093
  msgstr ""
1094
 
1095
+ #: counter-options.php:665
1096
  #, php-format
1097
  #@ cpd
1098
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1099
  msgstr ""
1100
 
1101
+ #: counter-options.php:669
1102
  #@ cpd
1103
  msgid "Delete clients and referers"
1104
  msgstr ""
1105
 
1106
+ #: counter.php:1150
1107
  #@ default
1108
  msgid "Front page"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-sv_SE.po CHANGED
@@ -3,7 +3,7 @@ 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,137 +20,138 @@ msgstr ""
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,114 +162,114 @@ 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,7 +301,7 @@ msgstr "ta bort"
300
  msgid "edit"
301
  msgstr "redigera"
302
 
303
- #: counter-options.php:429
304
  #: massbots.php:46
305
  #@ cpd
306
  msgid "Mass Bots"
@@ -326,419 +327,419 @@ msgstr "PostID"
326
  msgid "no data found"
327
  msgstr "ingen information hittades"
328
 
329
- #: counter-options.php:52
330
  #@ cpd
331
  msgid "Options updated"
332
  msgstr "Inställningarna är uppdaterade"
333
 
334
- #: counter-options.php:63
335
  #, php-format
336
  #@ cpd
337
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
  msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
339
 
340
- #: counter-options.php:66
341
  #@ cpd
342
  msgid "update next"
343
  msgstr "uppdatera nästa"
344
 
345
- #: counter-options.php:106
346
  #, php-format
347
  #@ cpd
348
  msgid "Mass Bots cleaned. %s counts deleted."
349
  msgstr "Massbotar rensades. %s stycken togs bort."
350
 
351
- #: counter-options.php: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"
@@ -764,456 +765,471 @@ msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappe
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:42+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:236
24
+ #: counter.php:1412
25
  #@ cpd
26
  msgid "Total reads"
27
  msgstr "Antal läsningar totalt"
28
 
29
+ #: counter.php:237
30
+ #: counter.php:1413
31
  #@ cpd
32
  msgid "Reads today"
33
  msgstr "Läsningar idag"
34
 
35
+ #: counter.php:238
36
+ #: counter.php:1414
37
  #@ cpd
38
  msgid "Reads yesterday"
39
  msgstr "Läsningar igår"
40
 
41
+ #: counter.php:239
42
+ #: counter.php:1415
43
  #@ cpd
44
  msgid "Reads last week"
45
  msgstr "Läsningar förra veckan"
46
 
47
+ #: counter-core.php:1541
48
+ #: counter-options.php:879
49
+ #: counter.php:240
50
+ #: counter.php:1024
51
+ #: map/map.php:60
52
  #@ cpd
53
  msgid "Reads"
54
  msgstr "Visningar"
55
 
56
+ #: counter-core.php:791
57
+ #: counter.php:241
58
+ #: counter.php:1223
59
+ #: counter.php:1417
60
  #@ cpd
61
  msgid "Total visitors"
62
  msgstr "Antal besökare totalt"
63
 
64
+ #: counter.php:242
65
+ #: counter.php:1423
66
  #@ cpd
67
  msgid "Visitors currently online"
68
  msgstr "Besökare online nu"
69
 
70
+ #: counter.php:243
71
+ #: counter.php:1418
72
  #@ cpd
73
  msgid "Visitors today"
74
  msgstr "Besökare idag"
75
 
76
+ #: counter.php:244
77
+ #: counter.php:1419
78
  #@ cpd
79
  msgid "Visitors yesterday"
80
  msgstr "Besökare igår"
81
 
82
+ #: counter.php:245
83
+ #: counter.php:1420
84
  #@ cpd
85
  msgid "Visitors last week"
86
  msgstr "Besökare förra veckan"
87
 
88
+ #: counter-core.php:797
89
+ #: counter.php:247
90
+ #: counter.php:348
91
+ #: counter.php:1225
92
+ #: counter.php:1422
93
  #: userperspan.php:46
94
  #@ cpd
95
  msgid "Visitors per day"
96
  msgstr "Besök per dag"
97
 
98
+ #: counter.php:974
99
+ #: counter.php:1424
100
  #@ cpd
101
  msgid "Counter starts on"
102
  msgstr "Räknaren startar den"
103
 
104
+ #: counter.php:347
105
  #@ cpd
106
  msgid "Reads per day"
107
  msgstr "Läsningar per dag"
108
 
109
+ #: counter.php:895
110
  #: notes.php:55
111
  #: notes.php:89
112
  #@ cpd
113
  msgid "Notes"
114
  msgstr "Anteckningar"
115
 
116
+ #: counter.php:438
117
+ #: counter.php:1254
118
  #@ cpd
119
  msgid "Map"
120
  msgstr "Karta"
121
 
122
+ #: counter.php:776
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:893
129
  #@ default
130
  msgid "Show"
131
  msgstr "Visa"
132
 
133
+ #: counter.php:963
134
  #@ cpd
135
  msgid "Other"
136
  msgstr "Övriga"
137
 
138
+ #: counter.php:994
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:1135
145
  #@ default
146
  msgid "Edit Post"
147
  msgstr "Redigera inlägg"
148
 
149
+ #: counter.php:1144
150
  #@ default
151
  msgid "Category"
152
  msgstr "Kategori"
153
 
154
+ #: counter.php:1147
155
  #@ default
156
  msgid "Tag"
157
  msgstr "Tag"
162
  msgid "Front page displays"
163
  msgstr "Visningar av framsidan"
164
 
165
+ #: counter-core.php:653
166
+ #: counter-options.php:412
167
  #@ default
168
  msgid "Settings"
169
  msgstr "Inställningar"
170
 
171
+ #: counter-core.php:756
172
  #, php-format
173
  #@ cpd
174
  msgid "Time for Count per Day: <code>%s</code>."
175
  msgstr "Tid för Count per Day: <code>%s</code>."
176
 
177
+ #: counter-core.php:757
178
  #@ cpd
179
  msgid "Bug? Problem? Question? Hint? Praise?"
180
  msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
181
 
182
+ #: counter-core.php:758
183
  #, php-format
184
  #@ cpd
185
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
186
  msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
187
 
188
+ #: counter-core.php:759
189
  #@ default
190
  msgid "License"
191
  msgstr "Licens"
192
 
193
+ #: counter-core.php:792
194
  #@ cpd
195
  msgid "Visitors online"
196
  msgstr "Besökare online"
197
 
198
+ #: counter-core.php:793
199
+ #: counter.php:1421
200
  #@ cpd
201
  msgid "Visitors per month"
202
  msgstr "Besökare per månad"
203
 
204
+ #: counter-core.php:794
205
+ #: counter.php:1416
206
  #@ cpd
207
  msgid "Reads per month"
208
  msgstr "Läsningar per månad"
209
 
210
+ #: counter-core.php:795
211
+ #: counter-options.php:937
212
  #@ cpd
213
  msgid "Visitors per post"
214
  msgstr "Besökare per inlägg"
215
 
216
+ #: counter-core.php:796
217
  #@ cpd
218
  msgid "Latest Counts"
219
  msgstr "Senaste besöken"
220
 
221
+ #: counter-core.php:799
222
  #@ default
223
  msgid "Plugin"
224
  msgstr "Plugin"
225
 
226
+ #: counter-core.php:802
227
+ #: counter-options.php:963
228
  #@ cpd
229
  msgid "Browsers"
230
  msgstr "Webbläsare"
231
 
232
+ #: counter-core.php:803
233
  #@ cpd
234
  msgid "Referrer"
235
  msgstr "Hänvisare"
236
 
237
+ #: counter-core.php:807
238
  #@ cpd
239
  msgid "Reads per Country"
240
  msgstr "Visningar per land"
241
 
242
+ #: counter-core.php:808
243
  #@ cpd
244
  msgid "Visitors per Country"
245
  msgstr "Besökare per land"
246
 
247
+ #: counter-core.php:823
248
+ #: counter.php:1339
249
  #@ cpd
250
  msgid "Statistics"
251
  msgstr "Statistik"
252
 
253
+ #: counter.php:1411
254
  #@ cpd
255
  msgid "This post"
256
  msgstr "Det här inlägget"
257
 
258
+ #: counter.php:1436
259
  #@ default
260
  msgid "Title"
261
  msgstr "Titel"
262
 
263
+ #: counter-options.php:437
264
+ #: counter-options.php:501
265
  #: notes.php:84
266
  #: userperspan.php:56
267
  #@ cpd
268
  msgid "show"
269
  msgstr "visa"
270
 
271
+ #: counter-options.php:446
272
+ #: counter-options.php:510
273
  #: notes.php:88
274
  #@ cpd
275
  #@ default
301
  msgid "edit"
302
  msgstr "redigera"
303
 
304
+ #: counter-options.php:432
305
  #: massbots.php:46
306
  #@ cpd
307
  msgid "Mass Bots"
327
  msgid "no data found"
328
  msgstr "ingen information hittades"
329
 
330
+ #: counter-options.php:54
331
  #@ cpd
332
  msgid "Options updated"
333
  msgstr "Inställningarna är uppdaterade"
334
 
335
+ #: counter-options.php:66
336
  #, php-format
337
  #@ cpd
338
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
339
  msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
340
 
341
+ #: counter-options.php:69
342
  #@ cpd
343
  msgid "update next"
344
  msgstr "uppdatera nästa"
345
 
346
+ #: counter-options.php:109
347
  #, php-format
348
  #@ cpd
349
  msgid "Mass Bots cleaned. %s counts deleted."
350
  msgstr "Massbotar rensades. %s stycken togs bort."
351
 
352
+ #: counter-options.php:121
353
  #, php-format
354
  #@ cpd
355
  msgid "Database cleaned. %s rows deleted."
356
  msgstr "Databasen städades. %s rader togs bort."
357
 
358
+ #: counter-options.php:131
359
  #@ cpd
360
  msgid "Counter reseted."
361
  msgstr "Räknaren återställdes."
362
 
363
+ #: counter-options.php:136
364
+ #: counter-options.php:806
365
  #@ cpd
366
  msgid "UNINSTALL Count per Day"
367
  msgstr "AVINSTALLERA Count per Day"
368
 
369
+ #: counter-options.php:141
370
+ #: counter-options.php:142
371
+ #: counter-options.php:143
372
  #, php-format
373
  #@ cpd
374
  msgid "Table %s deleted"
375
  msgstr "Tabellen %s raderades"
376
 
377
+ #: counter-options.php:144
378
  #@ cpd
379
  msgid "Options deleted"
380
  msgstr "Inställningarna togs bort"
381
 
382
+ #: counter-options.php:385
383
+ #: counter-options.php:792
384
  #@ cpd
385
  msgid "Uninstall"
386
  msgstr "Avinstallera"
387
 
388
+ #: counter-options.php:386
389
  #@ cpd
390
  msgid "Click here"
391
  msgstr "Klicka här"
392
 
393
+ #: counter-options.php:386
394
  #@ cpd
395
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
396
  msgstr "för att avinstallera och avaktivera \"Count per Day\"."
397
 
398
+ #: counter-options.php:831
399
  #@ cpd
400
  msgid "Counter"
401
  msgstr "Räknare"
402
 
403
+ #: counter-options.php:835
404
  #@ cpd
405
  msgid "Online time"
406
  msgstr "Tid online"
407
 
408
+ #: counter-options.php:836
409
  #@ cpd
410
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
411
  msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
412
 
413
+ #: counter-options.php:839
414
  #@ cpd
415
  msgid "Logged on Users"
416
  msgstr "Inloggade användare"
417
 
418
+ #: counter-options.php:841
419
  #@ cpd
420
  msgid "count too"
421
  msgstr "räkna med"
422
 
423
+ #: counter-options.php:842
424
  #@ cpd
425
  msgid "until User Level"
426
  msgstr "upp till användarbehörighet"
427
 
428
+ #: counter-options.php:853
429
  #@ cpd
430
  msgid "Auto counter"
431
  msgstr "Automatisk räknare"
432
 
433
+ #: counter-options.php:854
434
  #@ cpd
435
  msgid "Counts automatically single-posts and pages, no changes on template needed."
436
  msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
437
 
438
+ #: counter-options.php:857
439
  #@ cpd
440
  msgid "Bots to ignore"
441
  msgstr "Bots att ignorera"
442
 
443
+ #: counter-options.php:868
444
  #@ cpd
445
  msgid "Anonymous IP"
446
  msgstr "Anonym IP-adress"
447
 
448
+ #: counter-options.php:872
449
  #@ cpd
450
  msgid "Cache"
451
  msgstr "Cache"
452
 
453
+ #: counter-options.php:873
454
  #@ cpd
455
  msgid "I use a cache plugin. Count these visits with ajax."
456
  msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
457
 
458
+ #: counter-options.php:876
459
  #@ cpd
460
  msgid "Clients and referrers"
461
  msgstr "Klienter och hänvisare"
462
 
463
+ #: counter-options.php:879
464
  #@ cpd
465
  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."
466
  msgstr "Spara och visa klienter och hänvisare.<br />Kräver stor plats i databasen, men ger dig mer information om dina besökare."
467
 
468
+ #: counter-options.php:902
469
  #@ default
470
  msgid "Dashboard"
471
  msgstr "Panel"
472
 
473
+ #: counter-options.php:938
474
+ #: counter-options.php:942
475
  #@ cpd
476
  msgid "How many posts do you want to see on dashboard page?"
477
  msgstr "Hur många inlägg vill du se på panelsidan?"
478
 
479
+ #: counter-options.php:941
480
  #@ cpd
481
  msgid "Latest Counts - Posts"
482
  msgstr "Senaste träffar - Inlägg"
483
 
484
+ #: counter-options.php:945
485
  #@ cpd
486
  msgid "Latest Counts - Days"
487
  msgstr "Senaste träffar - Dagar"
488
 
489
+ #: counter-options.php:946
490
+ #: counter-options.php:950
491
+ #: counter-options.php:972
492
  #@ cpd
493
  msgid "How many days do you want look back?"
494
  msgstr "Hur många dagar bakåt vill du se?"
495
 
496
+ #: counter-options.php:949
497
  #@ cpd
498
  msgid "Chart - Days"
499
  msgstr "Diagram - Dagar"
500
 
501
+ #: counter-options.php:953
502
  #@ cpd
503
  msgid "Chart - Height"
504
  msgstr "Diagram - Höjd"
505
 
506
+ #: counter-options.php:954
507
  #@ cpd
508
  msgid "Height of the biggest bar"
509
  msgstr "Den högsta stapelns höjd"
510
 
511
+ #: counter-options.php:958
512
  #@ cpd
513
  msgid "Countries"
514
  msgstr "Länder"
515
 
516
+ #: counter-options.php:959
517
  #@ cpd
518
  msgid "How many countries do you want to see on dashboard page?"
519
  msgstr "Hur många länder vill du visa på Panelen?"
520
 
521
+ #: counter-options.php:964
522
  #@ cpd
523
  msgid "Substring of the user agent, separated by comma"
524
  msgstr "Delsträng av \"user agent\", separerad med kommatecken"
525
 
526
+ #: counter-options.php:967
527
  #@ cpd
528
  msgid "Referrers - Entries"
529
  msgstr "Hänvisare - Inlägg"
530
 
531
+ #: counter-options.php:968
532
  #@ cpd
533
  msgid "How many referrers do you want to see on dashboard page?"
534
  msgstr "Hur många hänvisare vill du se på panelsidan?"
535
 
536
+ #: counter-options.php:971
537
  #@ cpd
538
  msgid "Referrers - Days"
539
  msgstr "Hänvisare - Dagar"
540
 
541
+ #: counter-options.php:975
542
  #@ cpd
543
  msgid "Local URLs"
544
  msgstr "Lokala URL:er"
545
 
546
+ #: counter-options.php:976
547
  #@ cpd
548
  msgid "Show local referrers too."
549
  msgstr "Visa även lokala hänvisare."
550
 
551
+ #: counter-options.php:983
552
  #@ default
553
  msgid "Posts"
554
  msgstr "Inlägg"
555
 
556
+ #: counter-options.php:983
557
  #@ default
558
  msgid "Pages"
559
  msgstr "Sidor"
560
 
561
+ #: counter-options.php:986
562
  #@ cpd
563
  msgid "Show in lists"
564
  msgstr "Visa i listor"
565
 
566
+ #: counter-options.php:987
567
  #@ cpd
568
  msgid "Show \"Reads per Post\" in a new column in post management views."
569
  msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
570
 
571
+ #: counter-options.php:994
572
  #@ cpd
573
  msgid "Start Values"
574
  msgstr "Startvärden"
575
 
576
+ #: counter-options.php:998
577
  #@ cpd
578
  msgid "Here you can change the date of first count and add a start count."
579
  msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
580
 
581
+ #: counter-options.php:1002
582
  #@ cpd
583
  msgid "Start date"
584
  msgstr "Startdatum"
585
 
586
+ #: counter-options.php:1003
587
  #@ cpd
588
  msgid "Your old Counter starts at?"
589
  msgstr "Din gamla räknare startar den?"
590
 
591
+ #: counter-options.php:1006
592
+ #: counter-options.php:1010
593
  #@ cpd
594
  msgid "Start count"
595
  msgstr "Starta räknaren"
596
 
597
+ #: counter-options.php:1007
598
  #@ cpd
599
  msgid "Add this value to \"Total visitors\"."
600
  msgstr "Lägg till det här värdet till \"Besökare totalt\"."
601
 
602
+ #: counter-options.php:1011
603
  #@ cpd
604
  msgid "Add this value to \"Total reads\"."
605
  msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
606
 
607
+ #: counter-options.php:1048
608
  #@ cpd
609
  msgid "Debug mode"
610
  msgstr "Felsökningsläge"
611
 
612
+ #: counter-options.php:1050
613
  #@ cpd
614
  msgid "Show debug informations at the bottom of all pages."
615
  msgstr "Visa felsökningsinformation längst ner på alla sidor."
616
 
617
+ #: counter-options.php:1055
618
  #@ cpd
619
  msgid "Update options"
620
  msgstr "Uppdatera inställningarna"
621
 
622
+ #: counter-options.php:723
623
  #@ cpd
624
  msgid "GeoIP - Countries"
625
  msgstr "GeoIP - Länder"
626
 
627
+ #: counter-options.php:732
628
  #@ cpd
629
  msgid "Update old counter data"
630
  msgstr "Uppdatera gammal räknardata"
631
 
632
+ #: counter-options.php:726
633
  #@ cpd
634
  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!"
635
  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!"
636
 
637
+ #: counter-options.php:744
638
  #@ cpd
639
  msgid "Update GeoIP database"
640
  msgstr "Uppdatera GeoIP-databasen"
641
 
642
+ #: counter-options.php:739
643
  #@ cpd
644
  msgid "Download a new version of GeoIP.dat file."
645
  msgstr "Ladda ner en ny version av filen GeoIP.dat."
646
 
647
+ #: counter-options.php:749
648
  #@ cpd
649
  msgid "More informations about GeoIP"
650
  msgstr "Mer information om GeoIP"
651
 
652
+ #: counter-options.php:436
653
  #, php-format
654
  #@ cpd
655
  msgid "Show all IPs with more than %s page views per day"
656
  msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
657
 
658
+ #: counter-options.php:445
659
+ #: counter-options.php:509
660
  #@ cpd
661
  msgid "IP"
662
  msgstr "IP"
663
 
664
+ #: counter-options.php:447
665
+ #: counter-options.php:511
666
  #@ cpd
667
  msgid "Client"
668
  msgstr "Klient"
669
 
670
+ #: counter-options.php:448
671
+ #: counter-options.php:512
672
  #@ cpd
673
  msgid "Views"
674
  msgstr "Visningar"
675
 
676
+ #: counter-options.php:463
677
+ #: counter-options.php:479
678
+ #: counter-options.php:526
679
  #, php-format
680
  #@ cpd
681
  msgid "Delete these %s counts"
682
  msgstr "Ta bort bort %s stycken"
683
 
684
+ #: counter-options.php:640
685
+ #: counter-options.php:648
686
  #@ cpd
687
  msgid "Clean the database"
688
  msgstr "Städa databasen"
689
 
690
+ #: counter-options.php:644
691
  #@ cpd
692
  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."
693
  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."
694
 
695
+ #: counter-options.php:773
696
+ #: counter-options.php:783
697
  #@ cpd
698
  msgid "Reset the counter"
699
  msgstr "Nollställ räknaren"
700
 
701
+ #: counter-options.php:776
702
  #@ cpd
703
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
704
  msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
705
 
706
+ #: counter-options.php:795
707
  #@ cpd
708
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
709
  msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
710
 
711
+ #: counter-options.php:796
712
  #@ cpd
713
  msgid "Here you can delete the tables and disable \"Count per Day\"."
714
  msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
715
 
716
+ #: counter-options.php:799
717
  #@ cpd
718
  msgid "WARNING"
719
  msgstr "VARNING"
720
 
721
+ #: counter-options.php:800
722
  #@ cpd
723
  msgid "These tables (with ALL counter data) will be deleted."
724
  msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
725
 
726
+ #: counter-options.php:802
727
  #@ cpd
728
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
729
  msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
730
 
731
+ #: counter-options.php:782
732
+ #: counter-options.php:805
733
  #@ cpd
734
  msgid "Yes"
735
  msgstr "Ja"
736
 
737
+ #: counter-options.php:806
738
  #@ cpd
739
  msgid "You are sure to disable Count per Day and delete all data?"
740
  msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
741
 
742
+ #: counter-options.php:814
743
  #@ cpd
744
  msgid "Support"
745
  msgstr "Support"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr ""
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr ""
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr ""
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr ""
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr ""
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr ""
796
 
797
+ #: counter-options.php:316
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:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr ""
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr ""
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr ""
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr ""
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr ""
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr ""
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr ""
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr ""
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr ""
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr ""
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr ""
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr ""
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr ""
869
 
870
+ #: counter-options.php:1040
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:567
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:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr ""
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr ""
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr ""
898
 
899
+ #: counter-options.php:685
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:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr ""
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr ""
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr ""
925
 
926
+ #: counter-options.php:706
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:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr ""
936
 
937
+ #: counter-options.php:760
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:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr ""
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr ""
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr ""
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr ""
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-tr_TR.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,556 +20,557 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Seçenekler güncellendi."
27
 
28
- #: counter-options.php:63
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Ülkeler güncellendi."
33
 
34
- #: counter-options.php:66
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "sonraki güncelleme"
38
 
39
- #: counter-options.php:106
40
  #, php-format
41
  #@ cpd
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,94 +581,94 @@ 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,28 +733,28 @@ msgstr "Gönderi ID"
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."
@@ -764,456 +765,471 @@ msgstr "Online ziyaretçiler."
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:46+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Seçenekler güncellendi."
27
 
28
+ #: counter-options.php:66
29
  #, php-format
30
  #@ cpd
31
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
32
  msgstr "Ülkeler güncellendi."
33
 
34
+ #: counter-options.php:69
35
  #@ cpd
36
  msgid "update next"
37
  msgstr "sonraki güncelleme"
38
 
39
+ #: counter-options.php:109
40
  #, php-format
41
  #@ cpd
42
  msgid "Mass Bots cleaned. %s counts deleted."
43
  msgstr "Botlar temizlendi. %s adet silindi."
44
 
45
+ #: counter-options.php:121
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:131
52
  #@ cpd
53
  msgid "Counter reseted."
54
  msgstr "Sayaç sıfırlandı."
55
 
56
+ #: counter-options.php:136
57
+ #: counter-options.php:806
58
  #@ cpd
59
  msgid "UNINSTALL Count per Day"
60
  msgstr "Count per Day'i kaldır."
61
 
62
+ #: counter-options.php:141
63
+ #: counter-options.php:142
64
+ #: counter-options.php:143
65
  #, php-format
66
  #@ cpd
67
  msgid "Table %s deleted"
68
  msgstr "%s tablo silindi."
69
 
70
+ #: counter-options.php:144
71
  #@ cpd
72
  msgid "Options deleted"
73
  msgstr "Seçenekler silindi"
74
 
75
+ #: counter-options.php:385
76
+ #: counter-options.php:792
77
  #@ cpd
78
  msgid "Uninstall"
79
  msgstr "Kaldır"
80
 
81
+ #: counter-options.php:386
82
  #@ cpd
83
  msgid "Click here"
84
  msgstr "Burayı tıklayın"
85
 
86
+ #: counter-options.php:386
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:831
92
  #@ cpd
93
  msgid "Counter"
94
  msgstr "Sayaç"
95
 
96
+ #: counter-options.php:835
97
  #@ cpd
98
  msgid "Online time"
99
  msgstr "Online süresi"
100
 
101
+ #: counter-options.php:836
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:839
107
  #@ cpd
108
  msgid "Logged on Users"
109
  msgstr "Giriş yapmış kullanıcılar"
110
 
111
+ #: counter-options.php:841
112
  #@ cpd
113
  msgid "count too"
114
  msgstr "saymak"
115
 
116
+ #: counter-options.php:842
117
  #@ cpd
118
  msgid "until User Level"
119
  msgstr "kullanıcı seviye kadar"
120
 
121
+ #: counter-options.php:853
122
  #@ cpd
123
  msgid "Auto counter"
124
  msgstr "Otomatik sayaç"
125
 
126
+ #: counter-options.php:854
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:857
132
  #@ cpd
133
  msgid "Bots to ignore"
134
  msgstr "Botları önemseme"
135
 
136
+ #: counter-options.php:868
137
  #@ cpd
138
  msgid "Anonymous IP"
139
  msgstr "Anonim IP"
140
 
141
+ #: counter-options.php:872
142
  #@ cpd
143
  msgid "Cache"
144
  msgstr "Önbellek"
145
 
146
+ #: counter-options.php:873
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:876
152
  #@ cpd
153
  msgid "Clients and referrers"
154
  msgstr "Yönlendirmeler ve kullanıcılar"
155
 
156
+ #: counter-options.php:879
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:1541
162
+ #: counter-options.php:879
163
+ #: counter.php:240
164
+ #: counter.php:1024
165
+ #: map/map.php:60
166
  #@ cpd
167
  msgid "Reads"
168
  msgstr "Okunma"
169
 
170
+ #: counter-options.php:902
171
  #@ default
172
  msgid "Dashboard"
173
  msgstr "Kontrol paneli"
174
 
175
+ #: counter-core.php:795
176
+ #: counter-options.php:937
177
  #@ cpd
178
  msgid "Visitors per post"
179
  msgstr "Gönderi başına ziyaretçi"
180
 
181
+ #: counter-options.php:938
182
+ #: counter-options.php:942
183
  #@ cpd
184
  msgid "How many posts do you want to see on dashboard page?"
185
  msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
186
 
187
+ #: counter-options.php:941
188
  #@ cpd
189
  msgid "Latest Counts - Posts"
190
  msgstr "Son sayım - Gönderi"
191
 
192
+ #: counter-options.php:945
193
  #@ cpd
194
  msgid "Latest Counts - Days"
195
  msgstr "Son sayaç - Gün"
196
 
197
+ #: counter-options.php:946
198
+ #: counter-options.php:950
199
+ #: counter-options.php:972
200
  #@ cpd
201
  msgid "How many days do you want look back?"
202
  msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
203
 
204
+ #: counter-options.php:949
205
  #@ cpd
206
  msgid "Chart - Days"
207
  msgstr "Grafik - Gün"
208
 
209
+ #: counter-options.php:953
210
  #@ cpd
211
  msgid "Chart - Height"
212
  msgstr "Grafik - Yükseklik"
213
 
214
+ #: counter-options.php:954
215
  #@ cpd
216
  msgid "Height of the biggest bar"
217
  msgstr "En büyük bar'ın yüksekliği"
218
 
219
+ #: counter-options.php:958
220
  #@ cpd
221
  msgid "Countries"
222
  msgstr "Ülkeler"
223
 
224
+ #: counter-options.php:959
225
  #@ cpd
226
  msgid "How many countries do you want to see on dashboard page?"
227
  msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
228
 
229
+ #: counter-core.php:802
230
+ #: counter-options.php:963
231
  #@ cpd
232
  msgid "Browsers"
233
  msgstr "Tarayıcılar"
234
 
235
+ #: counter-options.php:964
236
  #@ cpd
237
  msgid "Substring of the user agent, separated by comma"
238
  msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
239
 
240
+ #: counter-options.php:975
241
  #@ cpd
242
  msgid "Local URLs"
243
  msgstr "Websitenizdeki URL'ler"
244
 
245
+ #: counter-options.php:976
246
  #@ cpd
247
  msgid "Show local referrers too."
248
  msgstr "Websitenizden yönlenenler."
249
 
250
+ #: counter-options.php:983
251
  #@ default
252
  msgid "Posts"
253
  msgstr "Gönderiler"
254
 
255
+ #: counter-options.php:983
256
  #@ default
257
  msgid "Pages"
258
  msgstr "Sayfalar"
259
 
260
+ #: counter-options.php:986
261
  #@ cpd
262
  msgid "Show in lists"
263
  msgstr "Liste içinde göster"
264
 
265
+ #: counter-options.php:987
266
  #@ cpd
267
  msgid "Show \"Reads per Post\" in a new column in post management views."
268
  msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
269
 
270
+ #: counter-options.php:994
271
  #@ cpd
272
  msgid "Start Values"
273
  msgstr "Başlangıç değeri"
274
 
275
+ #: counter-options.php:998
276
  #@ cpd
277
  msgid "Here you can change the date of first count and add a start count."
278
  msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
279
 
280
+ #: counter-options.php:1002
281
  #@ cpd
282
  msgid "Start date"
283
  msgstr "Başlama tarihi"
284
 
285
+ #: counter-options.php:1003
286
  #@ cpd
287
  msgid "Your old Counter starts at?"
288
  msgstr "Eski sayacının başlangıç değeri ?"
289
 
290
+ #: counter-options.php:1006
291
+ #: counter-options.php:1010
292
  #@ cpd
293
  msgid "Start count"
294
  msgstr "Başlama sayacı"
295
 
296
+ #: counter-options.php:1007
297
  #@ cpd
298
  msgid "Add this value to \"Total visitors\"."
299
  msgstr "Bu değeri ekle \"Total visitors\"."
300
 
301
+ #: counter-options.php:1011
302
  #@ cpd
303
  msgid "Add this value to \"Total reads\"."
304
  msgstr "Bu değeri ekle \"Total reads\"."
305
 
306
+ #: counter-options.php:1048
307
  #@ cpd
308
  msgid "Debug mode"
309
  msgstr "Problem çözme modu"
310
 
311
+ #: counter-options.php:1050
312
  #@ cpd
313
  msgid "Show debug informations at the bottom of all pages."
314
  msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
315
 
316
+ #: counter-options.php:1055
317
  #@ cpd
318
  msgid "Update options"
319
  msgstr "Seçenekleri güncelle"
320
 
321
+ #: counter-options.php:723
322
  #@ cpd
323
  msgid "GeoIP - Countries"
324
  msgstr "GeoIP - Ülkeler"
325
 
326
+ #: counter-options.php:732
327
  #@ cpd
328
  msgid "Update old counter data"
329
  msgstr "Eski sayaç verilerini güncelle"
330
 
331
+ #: counter-options.php:726
332
  #@ cpd
333
  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!"
334
  msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
335
 
336
+ #: counter-options.php:744
337
  #@ cpd
338
  msgid "Update GeoIP database"
339
  msgstr "GeoIP veritabanını günce.elle."
340
 
341
+ #: counter-options.php:739
342
  #@ cpd
343
  msgid "Download a new version of GeoIP.dat file."
344
  msgstr "En son GeoIP.dat dosyasını indir."
345
 
346
+ #: counter-options.php:749
347
  #@ cpd
348
  msgid "More informations about GeoIP"
349
  msgstr "GeoIP hakkında daha fazla bilgi"
350
 
351
+ #: counter-options.php:432
352
  #: massbots.php:46
353
  #@ cpd
354
  msgid "Mass Bots"
355
  msgstr "Kitle botları"
356
 
357
+ #: counter-options.php:436
358
  #, php-format
359
  #@ cpd
360
  msgid "Show all IPs with more than %s page views per day"
361
  msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
362
 
363
+ #: counter-options.php:437
364
+ #: counter-options.php:501
365
  #: notes.php:84
366
  #: userperspan.php:56
367
  #@ cpd
368
  msgid "show"
369
  msgstr "göster"
370
 
371
+ #: counter-options.php:445
372
+ #: counter-options.php:509
373
  #@ cpd
374
  msgid "IP"
375
  msgstr "IP"
376
 
377
+ #: counter-options.php:446
378
+ #: counter-options.php:510
379
  #: notes.php:88
380
  #@ cpd
381
  #@ default
382
  msgid "Date"
383
  msgstr "Tarih"
384
 
385
+ #: counter-options.php:447
386
+ #: counter-options.php:511
387
  #@ cpd
388
  msgid "Client"
389
  msgstr "Müşteri/Kullanıcı"
390
 
391
+ #: counter-options.php:448
392
+ #: counter-options.php:512
393
  #@ cpd
394
  msgid "Views"
395
  msgstr "Görünümler"
396
 
397
+ #: counter-options.php:463
398
+ #: counter-options.php:479
399
+ #: counter-options.php:526
400
  #, php-format
401
  #@ cpd
402
  msgid "Delete these %s counts"
403
  msgstr "%s sayaçları sil"
404
 
405
+ #: counter-options.php:640
406
+ #: counter-options.php:648
407
  #@ cpd
408
  msgid "Clean the database"
409
  msgstr "Veritabanını temizle."
410
 
411
+ #: counter-options.php:644
412
  #@ cpd
413
  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."
414
  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."
415
 
416
+ #: counter-options.php:773
417
+ #: counter-options.php:783
418
  #@ cpd
419
  msgid "Reset the counter"
420
  msgstr "Sayacı resetle"
421
 
422
+ #: counter-options.php:776
423
  #@ cpd
424
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
425
  msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
426
 
427
+ #: counter-options.php:795
428
  #@ cpd
429
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
430
  msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
431
 
432
+ #: counter-options.php:796
433
  #@ cpd
434
  msgid "Here you can delete the tables and disable \"Count per Day\"."
435
  msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
436
 
437
+ #: counter-options.php:799
438
  #@ cpd
439
  msgid "WARNING"
440
  msgstr "UYARI"
441
 
442
+ #: counter-options.php:800
443
  #@ cpd
444
  msgid "These tables (with ALL counter data) will be deleted."
445
  msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
446
 
447
+ #: counter-options.php:802
448
  #@ cpd
449
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
450
  msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
451
 
452
+ #: counter-options.php:782
453
+ #: counter-options.php:805
454
  #@ cpd
455
  msgid "Yes"
456
  msgstr "Evet"
457
 
458
+ #: counter-options.php:806
459
  #@ cpd
460
  msgid "You are sure to disable Count per Day and delete all data?"
461
  msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
462
 
463
+ #: counter-options.php:814
464
  #@ cpd
465
  msgid "Support"
466
  msgstr "Destek"
467
 
468
+ #: counter.php:236
469
+ #: counter.php:1412
470
  #@ cpd
471
  msgid "Total reads"
472
  msgstr "Toplam okunan."
473
 
474
+ #: counter.php:237
475
+ #: counter.php:1413
476
  #@ cpd
477
  msgid "Reads today"
478
  msgstr "Bugün okunanlar"
479
 
480
+ #: counter.php:238
481
+ #: counter.php:1414
482
  #@ cpd
483
  msgid "Reads yesterday"
484
  msgstr "Dün okunanlar"
485
 
486
+ #: counter.php:239
487
+ #: counter.php:1415
488
  #@ cpd
489
  msgid "Reads last week"
490
  msgstr "Geçen hafta okunanlar"
491
 
492
+ #: counter-core.php:791
493
+ #: counter.php:241
494
+ #: counter.php:1223
495
+ #: counter.php:1417
496
  #@ cpd
497
  msgid "Total visitors"
498
  msgstr "Toplam ziyaretçi"
499
 
500
+ #: counter.php:242
501
+ #: counter.php:1423
502
  #@ cpd
503
  msgid "Visitors currently online"
504
  msgstr "Şu anda online olan ziyatçiler"
505
 
506
+ #: counter.php:243
507
+ #: counter.php:1418
508
  #@ cpd
509
  msgid "Visitors today"
510
  msgstr "Bugün kü ziyaretçiler"
511
 
512
+ #: counter.php:244
513
+ #: counter.php:1419
514
  #@ cpd
515
  msgid "Visitors yesterday"
516
  msgstr "Dünkü ziyaretçiler"
517
 
518
+ #: counter.php:245
519
+ #: counter.php:1420
520
  #@ cpd
521
  msgid "Visitors last week"
522
  msgstr "Geçen haftaki ziyaretçiler"
523
 
524
+ #: counter-core.php:797
525
+ #: counter.php:247
526
+ #: counter.php:348
527
+ #: counter.php:1225
528
+ #: counter.php:1422
529
  #: userperspan.php:46
530
  #@ cpd
531
  msgid "Visitors per day"
532
  msgstr "Günlük ziyaretçi"
533
 
534
+ #: counter.php:974
535
+ #: counter.php:1424
536
  #@ cpd
537
  msgid "Counter starts on"
538
  msgstr "Sayaç başlıyacak"
539
 
540
+ #: counter.php:895
541
  #: notes.php:55
542
  #: notes.php:89
543
  #@ cpd
544
  msgid "Notes"
545
  msgstr "Notlar"
546
 
547
+ #: counter.php:776
548
  #, php-format
549
  #@ cpd
550
  msgid "The %s most visited posts in last %s days:"
551
  msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
552
 
553
+ #: counter.php:893
554
  #@ default
555
  msgid "Show"
556
  msgstr "Göster"
557
 
558
+ #: counter.php:963
559
  #@ cpd
560
  msgid "Other"
561
  msgstr "Diğer"
562
 
563
+ #: counter.php:1135
564
  #@ default
565
  msgid "Edit Post"
566
  msgstr "Gönderi düzenle"
567
 
568
+ #: counter.php:1144
569
  #@ default
570
  msgid "Category"
571
  msgstr "Katogori"
572
 
573
+ #: counter.php:1147
574
  #@ default
575
  msgid "Tag"
576
  msgstr "Таg"
581
  msgid "Front page displays"
582
  msgstr "Ön sayfa görüntüleri"
583
 
584
+ #: counter-core.php:653
585
+ #: counter-options.php:412
586
  #@ default
587
  msgid "Settings"
588
  msgstr "Ayarlar"
589
 
590
+ #: counter-core.php:756
591
  #, php-format
592
  #@ cpd
593
  msgid "Time for Count per Day: <code>%s</code>."
594
  msgstr "Günlük sayım için zaman: <code>%s</code>."
595
 
596
+ #: counter-core.php:757
597
  #@ cpd
598
  msgid "Bug? Problem? Question? Hint? Praise?"
599
  msgstr "Problem? Soru? Fikir? Övgü?"
600
 
601
+ #: counter-core.php:758
602
  #, php-format
603
  #@ cpd
604
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
605
  msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
606
 
607
+ #: counter-core.php:759
608
  #@ default
609
  msgid "License"
610
  msgstr "Lisans"
611
 
612
+ #: counter.php:347
613
  #@ cpd
614
  msgid "Reads per day"
615
  msgstr "Günlük ortalama okunma"
616
 
617
+ #: counter-core.php:793
618
+ #: counter.php:1421
619
  #@ cpd
620
  msgid "Visitors per month"
621
  msgstr "Aylık ziyaretçi"
622
 
623
+ #: counter-core.php:794
624
+ #: counter.php:1416
625
  #@ cpd
626
  msgid "Reads per month"
627
  msgstr "Aylık okunma"
628
 
629
+ #: counter-core.php:796
630
  #@ cpd
631
  msgid "Latest Counts"
632
  msgstr "Son sayım"
633
 
634
+ #: counter-core.php:799
635
  #@ default
636
  msgid "Plugin"
637
  msgstr "Eklenti"
638
 
639
+ #: counter-core.php:803
640
  #@ cpd
641
  msgid "Referrer"
642
  msgstr "Yönlendirme"
643
 
644
+ #: counter-core.php:807
645
  #@ cpd
646
  msgid "Reads per Country"
647
  msgstr "Ülke bazında okuma"
648
 
649
+ #: counter-core.php:808
650
  #@ cpd
651
  msgid "Visitors per Country"
652
  msgstr "Ülke bazında ziyaretçi"
653
 
654
+ #: counter-core.php:823
655
+ #: counter.php:1339
656
  #@ cpd
657
  msgid "Statistics"
658
  msgstr "İstatislikler"
659
 
660
+ #: counter.php:438
661
+ #: counter.php:1254
662
  #@ cpd
663
  msgid "Map"
664
  msgstr "Harita"
665
 
666
+ #: counter.php:1411
667
  #@ cpd
668
  msgid "This post"
669
  msgstr "Bu gönderi"
670
 
671
+ #: counter.php:1436
672
  #@ default
673
  msgid "Title"
674
  msgstr "Başlık"
733
  msgid "no data found"
734
  msgstr "veri bulunamadı"
735
 
736
+ #: counter-options.php:967
737
  #@ cpd
738
  msgid "Referrers - Entries"
739
  msgstr "Yönlendirmeleri - Girişler"
740
 
741
+ #: counter-options.php:968
742
  #@ cpd
743
  msgid "How many referrers do you want to see on dashboard page?"
744
  msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
745
 
746
+ #: counter-options.php:971
747
  #@ cpd
748
  msgid "Referrers - Days"
749
  msgstr "Yönlendirmeler - Günler"
750
 
751
+ #: counter.php:994
752
  #, php-format
753
  #@ cpd
754
  msgid "The %s referrers in last %s days:"
755
  msgstr "Son %s günkü yönlendirmeler:"
756
 
757
+ #: counter-core.php:792
758
  #@ cpd
759
  msgid "Visitors online"
760
  msgstr "Online ziyaretçiler."
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" %s sürümüne güncellendi."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Yedekleme başarısız ! Dosya açılamadı."
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "%s süre içerisinde sayaç tablosu yedeklendi."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "%s'de sayaç seçenekleri ve koleksiyon kaydedildi."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Toplama devam ediyor..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Yazı başına ziyaretçi"
796
 
797
+ #: counter-options.php:316
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 "%s'den bu yada sayaç girişleri toplandı ve sayaç tablosu optimize edildi."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "\"Count per Day\" yüklemesi kontrol edildi."
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Araçlar"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "URL'yi kaydet, sorgu dizisini değil."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Kimi görebilirsiniz"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "Özel"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "ve yüksek istatistikleri görmek için izin verilir."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "%s kullanıcının ihtiyacı olan %s kapasiteyi ayarlayın:"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Stil"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "Önyüzde stil yok"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Önyüze \"counter.css\" stilini yükleme."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Yedek"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "İzin için giriş"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Kaç adet giriş her geçiş için saklanmalıdır ? Normal değeri : 10000"
869
 
870
+ #: counter-options.php:1040
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 "Eğer PHP hafıza limiti 50 MB'den az ise veboş sayfa veya hata mesajı alıyorsanız, ufak değerleri deneyin."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  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)"
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Veritabanını yedekle"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Eski verileri toplama"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Sayı tablonuzın şu anki büyüklüğü %s 'dir."
898
 
899
+ #: counter-options.php:685
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 "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."
903
 
904
+ #: counter-options.php:694
905
  #@ cpd
906
  msgid "Normally new data will be added to the collection."
907
  msgstr "Normalde, yeni veriler kolsiyona ekliniyor olacak."
908
 
909
+ #: counter-options.php:700
910
  #@ cpd
911
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
912
  msgstr "Eski koleksiyonu sil ve yeni bir tane oluştur. Bu yeni koleysiyonun içinde sadece şu anki sayaç tablosundaki veriler olsun."
913
 
914
+ #: counter-options.php:701
915
  #, php-format
916
  #@ cpd
917
  msgid "All collected data until %s will deleted."
918
  msgstr "%s tarihine kadarki tüm koleksiyon verileri silindi."
919
 
920
+ #: counter-options.php:706
921
  #, php-format
922
  #@ cpd
923
  msgid "Keep entries of last %s full months + current month in counter table."
924
  msgstr "%s ay için son girişleri sakla + sayaç tablosundaki bu ay."
925
 
926
+ #: counter-options.php:757
927
  #@ cpd
928
  msgid "ReActivation"
929
  msgstr "Yeniden etkinleştirme"
930
 
931
+ #: counter-options.php:760
932
  #@ cpd
933
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
934
  msgstr "Burada el ile yükleme işlevlerine başlayabilirsiniz. <br/> Eklentiyi devre dışı bırakmak ve yeniden aktif etkmek aynıdır."
935
 
936
+ #: counter-options.php:765
937
  #@ cpd
938
  msgid "ReActivate the plugin"
939
  msgstr "Eklentiyi tekrar etkinleştirmek."
940
 
941
+ #: counter.php:246
942
+ #: counter.php:1048
943
  #@ cpd
944
  msgid "Visitors"
945
  msgstr "Ziyaretçiler"
946
 
947
+ #: counter.php:249
948
+ #: counter.php:250
949
  #@ cpd
950
  msgid "Most visited day"
951
  msgstr "En ziyaret edilen gün"
952
 
953
+ #: counter.php:1455
954
  #@ cpd
955
  msgid "drag and drop to sort"
956
  msgstr "Sıralamak için sürekle bırak"
957
 
958
+ #: counter-core.php:798
959
+ #: counter-options.php:967
960
+ #: counter-options.php:971
961
  #@ cpd
962
  msgid "Search strings"
963
  msgstr ""
964
 
965
+ #: counter-core.php:1191
966
  #@ cpd
967
  msgid "Your can download the backup files here and now."
968
  msgstr ""
969
 
970
+ #: counter-core.php:1261
971
  #@ cpd
972
  msgid "Error while reading backup file!"
973
  msgstr ""
974
 
975
+ #: counter-core.php:1265
976
  #, php-format
977
  #@ cpd
978
  msgid "The backup was added to counter table %s."
979
  msgstr ""
980
 
981
+ #: counter-core.php:1267
982
  #, php-format
983
  #@ cpd
984
  msgid "The counter table %s was restored from backup."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1284
988
  #@ cpd
989
  msgid "Options restored from backup."
990
  msgstr ""
991
 
992
+ #: counter-options.php:340
993
  #@ cpd
994
  msgid "Old search strings deleted"
995
  msgstr ""
996
 
997
+ #: counter-options.php:355
998
  #@ cpd
999
  msgid "Clients and referers deleted"
1000
  msgstr ""
1001
 
1002
+ #: counter-options.php:570
1003
  #@ cpd
1004
  msgid "Download only"
1005
  msgstr ""
1006
 
1007
+ #: counter-options.php:602
1008
  #@ cpd
1009
  msgid "Settings and collections"
1010
  msgstr ""
1011
 
1012
+ #: counter-options.php:607
1013
  #, php-format
1014
  #@ cpd
1015
  msgid "Counter table %s"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:614
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:614
1025
  #@ cpd
1026
  msgid "Add"
1027
  msgstr ""
1028
 
1029
+ #: counter-options.php:618
1030
  #, php-format
1031
  #@ cpd
1032
  msgid "Restore data from the backup file %s ?"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #@ default
1037
  msgid "Restore"
1038
  msgstr ""
1039
 
1040
+ #: counter-options.php:620
1041
  #@ default
1042
  msgid "Delete"
1043
  msgstr ""
1044
 
1045
+ #: counter-options.php:621
1046
  #, php-format
1047
  #@ cpd
1048
  msgid "Delete the backup file %s ?"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:627
1052
  #@ cpd
1053
  msgid "add backup to current counter table"
1054
  msgstr ""
1055
 
1056
+ #: counter-options.php:628
1057
  #@ cpd
1058
  msgid "replace current counter table with with backup"
1059
  msgstr ""
1060
 
1061
+ #: counter-options.php:629
1062
  #@ cpd
1063
  msgid "delete backup file"
1064
  msgstr ""
1065
 
1066
+ #: counter-options.php:654
1067
  #, php-format
1068
  #@ cpd
1069
  msgid "Delete search strings older than %s days."
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:658
1073
  #@ cpd
1074
  msgid "Delete search strings"
1075
  msgstr ""
1076
 
1077
+ #: counter-options.php:665
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:669
1084
  #@ cpd
1085
  msgid "Delete clients and referers"
1086
  msgstr ""
1087
 
1088
+ #: counter-options.php:690
1089
  #, php-format
1090
  #@ cpd
1091
  msgid "Currently your collection contains data until %s."
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-ua_UA.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -20,509 +20,510 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: counter-options.php:52
24
  #@ cpd
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 "Це повідомлення"
320
 
321
- #: counter-options.php:63
322
  #, php-format
323
  #@ cpd
324
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
325
  msgstr "Країни оновлені. <b>%s</b> записів в %s залишилось без країни"
326
 
327
- #: counter-options.php:66
328
  #@ cpd
329
  msgid "update next"
330
  msgstr "Оновити наступний"
331
 
332
- #: counter-options.php:106
333
  #, php-format
334
  #@ cpd
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,29 +534,29 @@ 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,32 +601,32 @@ 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,12 +646,12 @@ 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,100 +661,100 @@ msgstr "Ви можете отримати дані по країнах для
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 "Назва"
@@ -764,456 +765,471 @@ msgstr "Назва"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:20:55+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
+ #: counter-options.php:54
24
  #@ cpd
25
  msgid "Options updated"
26
  msgstr "Налаштування збереженні"
27
 
28
+ #: counter-options.php:121
29
  #, php-format
30
  #@ cpd
31
  msgid "Database cleaned. %s rows deleted."
32
  msgstr "База даних очищена. %s строк видалено."
33
 
34
+ #: counter-options.php:136
35
+ #: counter-options.php:806
36
  #@ cpd
37
  msgid "UNINSTALL Count per Day"
38
  msgstr "Видалити Count per Day"
39
 
40
+ #: counter-options.php:141
41
+ #: counter-options.php:142
42
+ #: counter-options.php:143
43
  #, php-format
44
  #@ cpd
45
  msgid "Table %s deleted"
46
  msgstr "Таблиця %s видалена"
47
 
48
+ #: counter-options.php:144
49
  #@ cpd
50
  msgid "Options deleted"
51
  msgstr "Параметри видалено"
52
 
53
+ #: counter-options.php:385
54
+ #: counter-options.php:792
55
  #@ cpd
56
  msgid "Uninstall"
57
  msgstr "Видалити"
58
 
59
+ #: counter-options.php:386
60
  #@ cpd
61
  msgid "Click here"
62
  msgstr "Натисніть тут"
63
 
64
+ #: counter-options.php:386
65
  #@ cpd
66
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
67
  msgstr "Для завершення видалення і відключення \"Count per Day\"."
68
 
69
+ #: counter-options.php:835
70
  #@ cpd
71
  msgid "Online time"
72
  msgstr "Час з'єднання"
73
 
74
+ #: counter-options.php:836
75
  #@ cpd
76
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
77
  msgstr "Секунд для он-лайн лічильника. Використовується для \" Відвідувачей онлайн \" на приладовій панелі сторінки."
78
 
79
+ #: counter-options.php:839
80
  #@ cpd
81
  msgid "Logged on Users"
82
  msgstr "Зареєстрованих користувачів"
83
 
84
+ #: counter-options.php:841
85
  #@ cpd
86
  msgid "count too"
87
  msgstr "Враховувати також"
88
 
89
+ #: counter-options.php:853
90
  #@ cpd
91
  msgid "Auto counter"
92
  msgstr "Авто лічильник"
93
 
94
+ #: counter-options.php:854
95
  #@ cpd
96
  msgid "Counts automatically single-posts and pages, no changes on template needed."
97
  msgstr "Рахує автоматично окремі повідомлення і сторінки, ніяких змін в шаблон не потрібно\"."
98
 
99
+ #: counter-options.php:857
100
  #@ cpd
101
  msgid "Bots to ignore"
102
  msgstr "Ігнорувати пошукові системи"
103
 
104
+ #: counter-options.php:1055
105
  #@ cpd
106
  msgid "Update options"
107
  msgstr "Параметри оновлення"
108
 
109
+ #: counter-options.php:640
110
+ #: counter-options.php:648
111
  #@ cpd
112
  msgid "Clean the database"
113
  msgstr "Очистити бази даних"
114
 
115
+ #: counter-options.php:644
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:795
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:796
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:799
131
  #@ cpd
132
  msgid "WARNING"
133
  msgstr "УВАГА"
134
 
135
+ #: counter-options.php:800
136
  #@ cpd
137
  msgid "These tables (with ALL counter data) will be deleted."
138
  msgstr "Ці таблиці (з усіма даними лічильника), будуть видалені."
139
 
140
+ #: counter-options.php:802
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:782
146
+ #: counter-options.php:805
147
  #@ cpd
148
  msgid "Yes"
149
  msgstr "Так"
150
 
151
+ #: counter-options.php:806
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:823
157
+ #: counter.php:1339
158
  #@ cpd
159
  msgid "Statistics"
160
  msgstr "Статистика"
161
 
162
+ #: counter-core.php:791
163
+ #: counter.php:241
164
+ #: counter.php:1223
165
+ #: counter.php:1417
166
  #@ cpd
167
  msgid "Total visitors"
168
  msgstr "Усього користувачів"
169
 
170
+ #: counter.php:242
171
+ #: counter.php:1423
172
  #@ cpd
173
  msgid "Visitors currently online"
174
  msgstr "Відвідувачі даний час в мережі"
175
 
176
+ #: counter.php:243
177
+ #: counter.php:1418
178
  #@ cpd
179
  msgid "Visitors today"
180
  msgstr "Відвідувачів сьогодні"
181
 
182
+ #: counter.php:244
183
+ #: counter.php:1419
184
  #@ cpd
185
  msgid "Visitors yesterday"
186
  msgstr "Відвідувачів вчора"
187
 
188
+ #: counter.php:245
189
+ #: counter.php:1420
190
  #@ cpd
191
  msgid "Visitors last week"
192
  msgstr "Відвідувачів на минулому тижні"
193
 
194
+ #: counter.php:974
195
+ #: counter.php:1424
196
  #@ cpd
197
  msgid "Counter starts on"
198
  msgstr "Лічильник починається з"
199
 
200
+ #: counter-core.php:797
201
+ #: counter.php:247
202
+ #: counter.php:348
203
+ #: counter.php:1225
204
+ #: counter.php:1422
205
  #: userperspan.php:46
206
  #@ cpd
207
  msgid "Visitors per day"
208
  msgstr "Відвідувачів у день"
209
 
210
+ #: counter-core.php:793
211
+ #: counter.php:1421
212
  #@ cpd
213
  msgid "Visitors per month"
214
  msgstr "Відвідувачів за місяць"
215
 
216
+ #: counter-core.php:795
217
+ #: counter-options.php:937
218
  #@ cpd
219
  msgid "Visitors per post"
220
  msgstr "Відвідувачів повідомлення"
221
 
222
+ #: counter-options.php:131
223
  #@ cpd
224
  msgid "Counter reseted."
225
  msgstr "Лічильник оновлено"
226
 
227
+ #: counter-options.php:902
228
  #@ default
229
  msgid "Dashboard"
230
  msgstr "Панель"
231
 
232
+ #: counter-options.php:938
233
+ #: counter-options.php:942
234
  #@ cpd
235
  msgid "How many posts do you want to see on dashboard page?"
236
  msgstr "Скільки повідомлень ви хочете бачити на приладовій панелі сторінки?"
237
 
238
+ #: counter-options.php:941
239
  #@ cpd
240
  msgid "Latest Counts - Posts"
241
  msgstr "Останні рахунки - Повідомлення"
242
 
243
+ #: counter-options.php:945
244
  #@ cpd
245
  msgid "Latest Counts - Days"
246
  msgstr "Останні рахунки - Дні"
247
 
248
+ #: counter-options.php:946
249
+ #: counter-options.php:950
250
+ #: counter-options.php:972
251
  #@ cpd
252
  msgid "How many days do you want look back?"
253
  msgstr "На скільки днів ви хочете озирнутися назад?"
254
 
255
+ #: counter-options.php:949
256
  #@ cpd
257
  msgid "Chart - Days"
258
  msgstr "Графік - Дні"
259
 
260
+ #: counter-options.php:953
261
  #@ cpd
262
  msgid "Chart - Height"
263
  msgstr "Графік - висота"
264
 
265
+ #: counter-options.php:954
266
  #@ cpd
267
  msgid "Height of the biggest bar"
268
  msgstr "Висота найбільшого стовпчика"
269
 
270
+ #: counter-options.php:986
271
  #@ cpd
272
  msgid "Show in lists"
273
  msgstr "Показувати в списках"
274
 
275
+ #: counter-options.php:987
276
  #@ cpd
277
  msgid "Show \"Reads per Post\" in a new column in post management views."
278
  msgstr "Показати \"Читачів на повідомлення\" в новій колонці в управлінні записами."
279
 
280
+ #: counter-options.php:773
281
+ #: counter-options.php:783
282
  #@ cpd
283
  msgid "Reset the counter"
284
  msgstr "Скидання лічильника"
285
 
286
+ #: counter-options.php:776
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:776
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:653
298
+ #: counter-options.php:412
299
  #@ default
300
  msgid "Settings"
301
  msgstr "Настройки"
302
 
303
+ #: counter.php:347
304
  #@ cpd
305
  msgid "Reads per day"
306
  msgstr "Читання в день"
307
 
308
+ #: counter-core.php:1541
309
+ #: counter-options.php:879
310
+ #: counter.php:240
311
+ #: counter.php:1024
312
+ #: map/map.php:60
313
  #@ cpd
314
  msgid "Reads"
315
  msgstr "Читання"
316
 
317
+ #: counter.php:1411
318
  #@ cpd
319
  msgid "This post"
320
  msgstr "Це повідомлення"
321
 
322
+ #: counter-options.php:66
323
  #, php-format
324
  #@ cpd
325
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
  msgstr "Країни оновлені. <b>%s</b> записів в %s залишилось без країни"
327
 
328
+ #: counter-options.php:69
329
  #@ cpd
330
  msgid "update next"
331
  msgstr "Оновити наступний"
332
 
333
+ #: counter-options.php:109
334
  #, php-format
335
  #@ cpd
336
  msgid "Mass Bots cleaned. %s counts deleted."
337
  msgstr "Таблиця Пошукових систем очищена. %s записів видалено."
338
 
339
+ #: counter-options.php:842
340
  #@ cpd
341
  msgid "until User Level"
342
  msgstr "до рівня користувача"
343
 
344
+ #: counter-options.php:868
345
  #@ cpd
346
  msgid "Anonymous IP"
347
  msgstr "Анонімний IP"
348
 
349
+ #: counter-options.php:958
350
  #@ cpd
351
  msgid "Countries"
352
  msgstr "Країни"
353
 
354
+ #: counter-options.php:959
355
  #@ cpd
356
  msgid "How many countries do you want to see on dashboard page?"
357
  msgstr "Скільки країн ви хотіли б бачити на приладовій панелі сторінки?"
358
 
359
+ #: counter-options.php:994
360
  #@ cpd
361
  msgid "Start Values"
362
  msgstr "Початкові дані"
363
 
364
+ #: counter-options.php:998
365
  #@ cpd
366
  msgid "Here you can change the date of first count and add a start count."
367
  msgstr "Тут ви можете змінити дату першого відрахунку і задати початок відрахунку."
368
 
369
+ #: counter-options.php:1002
370
  #@ cpd
371
  msgid "Start date"
372
  msgstr "Дата початку"
373
 
374
+ #: counter-options.php:1003
375
  #@ cpd
376
  msgid "Your old Counter starts at?"
377
  msgstr "Ваш старий лічильник починався з?"
378
 
379
+ #: counter-options.php:1006
380
+ #: counter-options.php:1010
381
  #@ cpd
382
  msgid "Start count"
383
  msgstr "Почати рахувати"
384
 
385
+ #: counter-options.php:1007
386
  #@ cpd
387
  msgid "Add this value to \"Total visitors\"."
388
  msgstr "Установка цього значення в \"Усього користувачів\"."
389
 
390
+ #: counter-options.php:723
391
  #@ cpd
392
  msgid "GeoIP - Countries"
393
  msgstr "GeoIP - Країни"
394
 
395
+ #: counter-options.php:732
396
  #@ cpd
397
  msgid "Update old counter data"
398
  msgstr "Оновлення старих даних лічильника"
399
 
400
+ #: counter-options.php:744
401
  #@ cpd
402
  msgid "Update GeoIP database"
403
  msgstr "Оновлення бази даних GeoIP"
404
 
405
+ #: counter-options.php:739
406
  #@ cpd
407
  msgid "Download a new version of GeoIP.dat file."
408
  msgstr "Завантажити нову версію файла GeoIP.dat"
409
 
410
+ #: counter-options.php:749
411
  #@ cpd
412
  msgid "More informations about GeoIP"
413
  msgstr "Більш детальна інформація про GeoIP"
414
 
415
+ #: counter-options.php:432
416
  #: massbots.php:46
417
  #@ cpd
418
  msgid "Mass Bots"
419
  msgstr "Масові Пошукові системи"
420
 
421
+ #: counter-options.php:436
422
  #, php-format
423
  #@ cpd
424
  msgid "Show all IPs with more than %s page views per day"
425
  msgstr "Показати всі IP-адреси з більш ніж %s переглядів сторінок на день"
426
 
427
+ #: counter-options.php:437
428
+ #: counter-options.php:501
429
  #: notes.php:84
430
  #: userperspan.php:56
431
  #@ cpd
432
  msgid "show"
433
  msgstr "показати"
434
 
435
+ #: counter-options.php:445
436
+ #: counter-options.php:509
437
  #@ cpd
438
  msgid "IP"
439
  msgstr "IP"
440
 
441
+ #: counter-options.php:446
442
+ #: counter-options.php:510
443
  #: notes.php:88
444
  #@ cpd
445
  #@ default
446
  msgid "Date"
447
  msgstr "Дата"
448
 
449
+ #: counter-options.php:447
450
+ #: counter-options.php:511
451
  #@ cpd
452
  msgid "Client"
453
  msgstr "Клієнт"
454
 
455
+ #: counter-options.php:448
456
+ #: counter-options.php:512
457
  #@ cpd
458
  msgid "Views"
459
  msgstr "Переглядів"
460
 
461
+ #: counter-options.php:463
462
+ #: counter-options.php:479
463
+ #: counter-options.php:526
464
  #, php-format
465
  #@ cpd
466
  msgid "Delete these %s counts"
467
  msgstr "Видалити ц і%s лічильників"
468
 
469
+ #: counter-options.php:814
470
  #@ cpd
471
  msgid "Support"
472
  msgstr "Підтримка"
473
 
474
+ #: counter-core.php:756
475
  #, php-format
476
  #@ cpd
477
  msgid "Time for Count per Day: <code>%s</code>."
478
  msgstr "Час для Count per Day: <code>%s</code>."
479
 
480
+ #: counter-core.php:757
481
  #@ cpd
482
  msgid "Bug? Problem? Question? Hint? Praise?"
483
  msgstr "Помилка? Проблема? Питання? Підказка? Хвала?"
484
 
485
+ #: counter-core.php:758
486
  #, php-format
487
  #@ cpd
488
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
489
  msgstr "Написати коментар на <a href=\"%s\">сторінці плагіна</a>."
490
 
491
+ #: counter.php:236
492
+ #: counter.php:1412
493
  #@ cpd
494
  msgid "Total reads"
495
  msgstr "Всього читаннь"
496
 
497
+ #: counter.php:237
498
+ #: counter.php:1413
499
  #@ cpd
500
  msgid "Reads today"
501
  msgstr "Читаннь сьогодні"
502
 
503
+ #: counter.php:238
504
+ #: counter.php:1414
505
  #@ cpd
506
  msgid "Reads yesterday"
507
  msgstr "Читаннь вчора"
508
 
509
+ #: counter.php:895
510
  #: notes.php:55
511
  #: notes.php:89
512
  #@ cpd
513
  msgid "Notes"
514
  msgstr "Записки"
515
 
516
+ #: counter.php:893
517
  #@ default
518
  msgid "Show"
519
  msgstr "Показати"
520
 
521
+ #: counter.php:963
522
  #@ cpd
523
  msgid "Other"
524
  msgstr "Інші"
525
 
526
+ #: counter.php:1135
527
  #@ default
528
  msgid "Edit Post"
529
  msgstr "Редагувати повідомлення"
534
  msgid "Front page displays"
535
  msgstr "Відображати на першій сторінці"
536
 
537
+ #: counter-core.php:802
538
+ #: counter-options.php:963
539
  #@ cpd
540
  msgid "Browsers"
541
  msgstr "Браузери"
542
 
543
+ #: counter-core.php:796
544
  #@ cpd
545
  msgid "Latest Counts"
546
  msgstr "Останні підрахунки"
547
 
548
+ #: counter-core.php:799
549
  #@ default
550
  msgid "Plugin"
551
  msgstr "Плагін"
552
 
553
+ #: counter-core.php:807
554
  #@ cpd
555
  msgid "Reads per Country"
556
  msgstr "Читання по країнам"
557
 
558
+ #: counter.php:438
559
+ #: counter.php:1254
560
  #@ cpd
561
  msgid "Map"
562
  msgstr "Карта"
601
  msgid "edit"
602
  msgstr "Змінити"
603
 
604
+ #: counter-options.php:872
605
  #@ cpd
606
  msgid "Cache"
607
  msgstr "Кеш"
608
 
609
+ #: counter-options.php:873
610
  #@ cpd
611
  msgid "I use a cache plugin. Count these visits with ajax."
612
  msgstr "Я використовую кеш плагінів. Рахувати ці візити за допомогою Ajax."
613
 
614
+ #: counter-options.php:964
615
  #@ cpd
616
  msgid "Substring of the user agent, separated by comma"
617
  msgstr "Підрядок агента користувача, розділених комою"
618
 
619
+ #: counter-options.php:1048
620
  #@ cpd
621
  msgid "Debug mode"
622
  msgstr "Режим відлагодження"
623
 
624
+ #: counter-options.php:1050
625
  #@ cpd
626
  msgid "Show debug informations at the bottom of all pages."
627
  msgstr "Показати відлагоджувальну інофрмацію в нижній частині всіх сторінок."
628
 
629
+ #: counter-core.php:808
630
  #@ cpd
631
  msgid "Visitors per Country"
632
  msgstr "Відвідувачів по країнах"
646
  msgid "PostID"
647
  msgstr "ID повідомлення"
648
 
649
+ #: counter-options.php:1011
650
  #@ cpd
651
  msgid "Add this value to \"Total reads\"."
652
  msgstr "Установити це значення в \"Всього читаннь\"."
653
 
654
+ #: counter-options.php:726
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 "Ви можете отримати дані по країнах для всіх записів в базі даних, перевіряючи IP-адреси по базі даних GeoIP. Це може зайняти деякий час!"
661
  msgid "no data found"
662
  msgstr "Нічого не знайдено"
663
 
664
+ #: counter-options.php:831
665
  #@ cpd
666
  msgid "Counter"
667
  msgstr "Лічильник"
668
 
669
+ #: counter-options.php:876
670
  #@ cpd
671
  msgid "Clients and referrers"
672
  msgstr "Клієнти та джерела"
673
 
674
+ #: counter-options.php:879
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 "Зберегти і показати клієнтів і джерела. <br />Потребує багато місця в базі даних, але надає більш детальну інформацію про ваших відвідувачів."
678
 
679
+ #: counter-options.php:975
680
  #@ cpd
681
  msgid "Local URLs"
682
  msgstr "Місцеві URL"
683
 
684
+ #: counter-options.php:976
685
  #@ cpd
686
  msgid "Show local referrers too."
687
  msgstr "Показати місцеві джерела теж."
688
 
689
+ #: counter-options.php:983
690
  #@ default
691
  msgid "Posts"
692
  msgstr "Повідомлення"
693
 
694
+ #: counter-options.php:983
695
  #@ default
696
  msgid "Pages"
697
  msgstr "Сторінки"
698
 
699
+ #: counter.php:239
700
+ #: counter.php:1415
701
  #@ cpd
702
  msgid "Reads last week"
703
  msgstr "Читаннь минулого тижня"
704
 
705
+ #: counter.php:1144
706
  #@ default
707
  msgid "Category"
708
  msgstr "Категорія"
709
 
710
+ #: counter.php:1147
711
  #@ default
712
  msgid "Tag"
713
  msgstr "Тег"
714
 
715
+ #: counter-core.php:759
716
  #@ default
717
  msgid "License"
718
  msgstr "Ліцензія"
719
 
720
+ #: counter-core.php:794
721
+ #: counter.php:1416
722
  #@ cpd
723
  msgid "Reads per month"
724
  msgstr "Читаннь в місяць"
725
 
726
+ #: counter-core.php:803
727
  #@ cpd
728
  msgid "Referrer"
729
  msgstr "Джерела"
730
 
731
+ #: counter-options.php:967
732
  #@ cpd
733
  msgid "Referrers - Entries"
734
  msgstr "Джерела - Входження"
735
 
736
+ #: counter-options.php:968
737
  #@ cpd
738
  msgid "How many referrers do you want to see on dashboard page?"
739
  msgstr "Скільки джерел ви хочете бачити на приладовій панелі сторінки?"
740
 
741
+ #: counter-options.php:971
742
  #@ cpd
743
  msgid "Referrers - Days"
744
  msgstr "Джерела - Дні"
745
 
746
+ #: counter.php:994
747
  #, php-format
748
  #@ cpd
749
  msgid "The %s referrers in last %s days:"
750
  msgstr "%s джерел в останні %s днів:"
751
 
752
+ #: counter-core.php:792
753
  #@ cpd
754
  msgid "Visitors online"
755
  msgstr "Відвідувачів онлайн"
756
 
757
+ #: counter.php:1436
758
  #@ default
759
  msgid "Title"
760
  msgstr "Назва"
765
  msgid "\"Count per Day\" updated to version %s."
766
  msgstr "\"Count per Day\" Оновлено до версії %s."
767
 
768
+ #: counter-core.php:1076
769
  #@ cpd
770
  msgid "Backup failed! Cannot open file"
771
  msgstr "Резервне копіювання не вдалося! Не вдається відкрити файл"
772
 
773
+ #: counter-core.php:1195
774
+ #: counter-core.php:1203
775
  #, php-format
776
  #@ cpd
777
  msgid "Backup of counter table saved in %s."
778
  msgstr "Резервне копіювання таблиці лічильник, збережені у %s."
779
 
780
+ #: counter-core.php:1197
781
+ #: counter-core.php:1205
782
  #, php-format
783
  #@ cpd
784
  msgid "Backup of counter options and collection saved in %s."
785
  msgstr "Резервне копіювання лічильник варіантів і колекції, збережені у %s."
786
 
787
+ #: counter-options.php:177
788
  #@ cpd
789
  msgid "Collection in progress..."
790
  msgstr "Триває збір..."
791
 
792
+ #: counter-options.php:271
793
  #@ cpd
794
  msgid "Get Visitors per Post..."
795
  msgstr "Отримати відвідувачів на посаду..."
796
 
797
+ #: counter-options.php:316
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 "Лічильник записів до %s зібрані та боротьби таблиці %s оптимізований (Розмір перед = %s &gt; Розмір після = %s)."
802
 
803
+ #: counter-options.php:325
804
  #@ cpd
805
  msgid "Installation of \"Count per Day\" checked"
806
  msgstr "Установка \"Count per Day\" перевірено"
807
 
808
+ #: counter-options.php:411
809
  #@ default
810
  msgid "Tools"
811
  msgstr "Інструменти"
812
 
813
+ #: counter-options.php:881
814
  #@ cpd
815
  msgid "Save URL only, no query string."
816
  msgstr "Збережіть URL тільки, немає рядка запиту."
817
 
818
+ #: counter-options.php:918
819
  #@ cpd
820
  msgid "Who can see it"
821
  msgstr "Хто це може побачити"
822
 
823
+ #: counter-options.php:927
824
  #@ cpd
825
  msgid "custom"
826
  msgstr "Користувальницькі"
827
 
828
+ #: counter-options.php:929
829
  #@ cpd
830
  msgid "and higher are allowed to see the statistics page."
831
  msgstr "і вище, можуть побачити на сторінці статистики."
832
 
833
+ #: counter-options.php:931
834
  #, php-format
835
  #@ cpd
836
  msgid "Set the %s capability %s a user need:"
837
  msgstr "Встановити на %s можливості %s користувачеві необхідно:"
838
 
839
+ #: counter-options.php:1018
840
  #@ cpd
841
  msgid "Stylesheet"
842
  msgstr "Таблиця стилів"
843
 
844
+ #: counter-options.php:1021
845
  #@ cpd
846
  msgid "NO Stylesheet in Frontend"
847
  msgstr "НЕМАЄ стилів в інтерфейс"
848
 
849
+ #: counter-options.php:1022
850
  #@ cpd
851
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
  msgstr "Не завантажити стиль \"counter.css\" у інтерфейс."
853
 
854
+ #: counter-options.php:563
855
+ #: counter-options.php:1029
856
  #@ cpd
857
  msgid "Backup"
858
  msgstr "Резервне копіювання"
859
 
860
+ #: counter-options.php:1032
861
  #@ cpd
862
  msgid "Entries per pass"
863
  msgstr "Записи за пас"
864
 
865
+ #: counter-options.php:1035
866
  #@ cpd
867
  msgid "How many entries should be saved per pass? Default: 10000"
868
  msgstr "Скільки записів повинна бути збережена за пас? Default: 10000"
869
 
870
+ #: counter-options.php:1040
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 "Якщо ваш PHP пам'яті обмежити менше потім 50 МБ і ви отримаєте білу сторінку або повідомлення про помилку, спробуйте менші значення."
874
 
875
+ #: counter-options.php:567
876
  #, php-format
877
  #@ cpd
878
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
  msgstr "Створити резервну копію таблиці лічильник %s в каталозі wp зміст (якщо для запису)."
880
 
881
+ #: counter-options.php:574
882
  #@ cpd
883
  msgid "Backup the database"
884
  msgstr "Резервне копіювання бази даних"
885
 
886
+ #: counter-options.php:678
887
+ #: counter-options.php:710
888
  #@ cpd
889
  msgid "Collect old data"
890
  msgstr "Збирати старі дані"
891
 
892
+ #: counter-options.php:664
893
+ #: counter-options.php:683
894
  #, php-format
895
  #@ cpd
896
  msgid "Current size of your counter table %s is %s."
897
  msgstr "Поточний розмір таблиці лічильник %s є %s."
898
 
899
+ #: counter-options.php:685
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 "Можна збирати старі дані та очищення таблиці лічильник.<br/>Переглядів і відвідувачів буде збережено на місяць, в країні і за пост.<br/>Клієнтів і посилаються, буде видалено. "
903
 
904
+ #: counter-options.php:690
905
  #, php-format
906
  #@ cpd
907
  msgid "Currently your collection contains data until %s."
908
  msgstr "В даний час вашої колекції містить дані до %s."
909
 
910
+ #: counter-options.php:694
911
  #@ cpd
912
  msgid "Normally new data will be added to the collection."
913
  msgstr "Зазвичай нові дані будуть додані до колекції."
914
 
915
+ #: counter-options.php:700
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:701
921
  #, php-format
922
  #@ cpd
923
  msgid "All collected data until %s will deleted."
924
  msgstr "Всі зібрані дані до %s буде видалено."
925
 
926
+ #: counter-options.php:706
927
  #, php-format
928
  #@ cpd
929
  msgid "Keep entries of last %s full months + current month in counter table."
930
  msgstr "Зберегти записи останнього %s повний місяць поточний місяць в таблиці лічильник."
931
 
932
+ #: counter-options.php:757
933
  #@ cpd
934
  msgid "ReActivation"
935
  msgstr "Реактивація"
936
 
937
+ #: counter-options.php:760
938
  #@ cpd
939
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
940
  msgstr "Тут ви можете почати установку функції вручну.<br/>Так само, як відключити і повторно активувати плагін. "
941
 
942
+ #: counter-options.php:765
943
  #@ cpd
944
  msgid "ReActivate the plugin"
945
  msgstr "Активувати плагін"
946
 
947
+ #: counter.php:246
948
+ #: counter.php:1048
949
  #@ cpd
950
  msgid "Visitors"
951
  msgstr "Відвідувачі"
952
 
953
+ #: counter.php:249
954
+ #: counter.php:250
955
  #@ cpd
956
  msgid "Most visited day"
957
  msgstr "Найбільш відвідуваних день"
958
 
959
+ #: counter.php:1455
960
  #@ cpd
961
  msgid "drag and drop to sort"
962
  msgstr "перетягування для сортування"
963
 
964
+ #: counter-core.php:798
965
+ #: counter-options.php:967
966
+ #: counter-options.php:971
967
  #@ cpd
968
  msgid "Search strings"
969
  msgstr ""
970
 
971
+ #: counter-core.php:1191
972
  #@ cpd
973
  msgid "Your can download the backup files here and now."
974
  msgstr ""
975
 
976
+ #: counter-core.php:1261
977
  #@ cpd
978
  msgid "Error while reading backup file!"
979
  msgstr ""
980
 
981
+ #: counter-core.php:1265
982
  #, php-format
983
  #@ cpd
984
  msgid "The backup was added to counter table %s."
985
  msgstr ""
986
 
987
+ #: counter-core.php:1267
988
  #, php-format
989
  #@ cpd
990
  msgid "The counter table %s was restored from backup."
991
  msgstr ""
992
 
993
+ #: counter-core.php:1284
994
  #@ cpd
995
  msgid "Options restored from backup."
996
  msgstr ""
997
 
998
+ #: counter-options.php:340
999
  #@ cpd
1000
  msgid "Old search strings deleted"
1001
  msgstr ""
1002
 
1003
+ #: counter-options.php:355
1004
  #@ cpd
1005
  msgid "Clients and referers deleted"
1006
  msgstr ""
1007
 
1008
+ #: counter-options.php:570
1009
  #@ cpd
1010
  msgid "Download only"
1011
  msgstr ""
1012
 
1013
+ #: counter-options.php:602
1014
  #@ cpd
1015
  msgid "Settings and collections"
1016
  msgstr ""
1017
 
1018
+ #: counter-options.php:607
1019
  #, php-format
1020
  #@ cpd
1021
  msgid "Counter table %s"
1022
  msgstr ""
1023
 
1024
+ #: counter-options.php:614
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:614
1031
  #@ cpd
1032
  msgid "Add"
1033
  msgstr ""
1034
 
1035
+ #: counter-options.php:618
1036
  #, php-format
1037
  #@ cpd
1038
  msgid "Restore data from the backup file %s ?"
1039
  msgstr ""
1040
 
1041
+ #: counter-options.php:618
1042
  #@ default
1043
  msgid "Restore"
1044
  msgstr ""
1045
 
1046
+ #: counter-options.php:620
1047
  #@ default
1048
  msgid "Delete"
1049
  msgstr ""
1050
 
1051
+ #: counter-options.php:621
1052
  #, php-format
1053
  #@ cpd
1054
  msgid "Delete the backup file %s ?"
1055
  msgstr ""
1056
 
1057
+ #: counter-options.php:627
1058
  #@ cpd
1059
  msgid "add backup to current counter table"
1060
  msgstr ""
1061
 
1062
+ #: counter-options.php:628
1063
  #@ cpd
1064
  msgid "replace current counter table with with backup"
1065
  msgstr ""
1066
 
1067
+ #: counter-options.php:629
1068
  #@ cpd
1069
  msgid "delete backup file"
1070
  msgstr ""
1071
 
1072
+ #: counter-options.php:654
1073
  #, php-format
1074
  #@ cpd
1075
  msgid "Delete search strings older than %s days."
1076
  msgstr ""
1077
 
1078
+ #: counter-options.php:658
1079
  #@ cpd
1080
  msgid "Delete search strings"
1081
  msgstr ""
1082
 
1083
+ #: counter-options.php:665
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:669
1090
  #@ cpd
1091
  msgid "Delete clients and referers"
1092
  msgstr ""
1093
 
1094
+ #: counter.php:1150
1095
  #@ default
1096
  msgid "Front page"
1097
  msgstr ""
1098
 
1099
+ #: counter.php:1198
1100
  #, php-format
1101
  #@ cpd
1102
  msgid "The %s most searched strings:"
1103
  msgstr ""
1104
 
1105
+ #: counter.php:1207
1106
  #, php-format
1107
  #@ cpd
1108
  msgid "The search strings of the last %s days:"
1109
  msgstr ""
1110
 
1111
+ #: counter.php:1371
1112
  #@ default
1113
  msgid "_name"
1114
  msgstr ""
1115
 
1116
+ #: counter-core.php:1000
1117
  #@ cpd
1118
  msgid "Export failed! Cannot open file."
1119
  msgstr ""
1120
 
1121
+ #: counter-core.php:1048
1122
  #@ cpd
1123
  msgid "Download the export file:"
1124
  msgstr ""
1125
 
1126
+ #: counter-core.php:1103
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:292
1133
  #@ cpd
1134
  msgid "Deleting old data..."
1135
  msgstr ""
1136
 
1137
+ #: counter-options.php:496
1138
  #@ cpd
1139
  msgid "Most Industrious Visitors"
1140
  msgstr ""
1141
 
1142
+ #: counter-options.php:500
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:547
1149
  #@ cpd
1150
  msgid "Export"
1151
  msgstr ""
1152
 
1153
+ #: counter-options.php:551
1154
  #, php-format
1155
  #@ cpd
1156
  msgid "Export the last %s days as CSV-File"
1157
  msgstr ""
1158
 
1159
+ #: counter-options.php:555
1160
  #@ cpd
1161
  msgid "Export entries"
1162
  msgstr ""
1163
 
1164
+ #: counter-options.php:888
1165
  #@ cpd
1166
  msgid "Post types"
1167
  msgstr ""
1168
 
1169
+ #: counter-options.php:891
1170
  #@ cpd
1171
  msgid "Only count these post types. Leave empty to count them all."
1172
  msgstr ""
1173
 
1174
+ #: counter-options.php:892
1175
  #, php-format
1176
  #@ cpd
1177
  msgid "Current post types: %s"
1178
  msgstr ""
1179
 
1180
+ #: counter.php:248
1181
  #@ cpd
1182
  msgid "Since"
1183
  msgstr ""
1184
 
1185
+ #: counter.php:1507
1186
+ #: counter.php:1539
1187
  #@ cpd
1188
  msgid "Popular Posts"
1189
  msgstr ""
1190
 
1191
+ #: counter.php:1509
1192
  #@ cpd
1193
  msgid "List of Popular Posts"
1194
  msgstr ""
1195
 
1196
+ #: counter.php:1547
1197
  #@ cpd
1198
  msgid "Title:"
1199
  msgstr ""
1200
 
1201
+ #: counter.php:1551
1202
  #@ cpd
1203
  msgid "Days:"
1204
  msgstr ""
1205
 
1206
+ #: counter.php:1555
1207
  #@ cpd
1208
  msgid "Limit:"
1209
  msgstr ""
1210
 
1211
+ #: counter.php:1559
1212
  #@ cpd
1213
  msgid "Show header:"
1214
  msgstr ""
1215
 
1216
+ #: counter.php:1563
1217
  #@ cpd
1218
  msgid "Show counters:"
1219
  msgstr ""
1220
 
1221
+ #: counter-options.php:861
1222
+ #@ cpd
1223
+ msgid "Exclude Countries"
1224
+ msgstr ""
1225
+
1226
+ #: counter-options.php:864
1227
+ #@ cpd
1228
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1229
+ msgstr ""
1230
+
1231
+ #: counter-options.php:884
1232
+ #@ cpd
1233
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1234
+ msgstr ""
1235
+
locale/cpd-zh_CN.po CHANGED
@@ -3,7 +3,7 @@ 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"
@@ -26,970 +26,971 @@ msgstr ""
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"
@@ -1000,29 +1001,29 @@ msgstr "Tag"
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 "拖放进行分类"
@@ -1087,134 +1088,149 @@ msgstr "新的GeoIP已经被安装。"
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2015-02-13 08:21:03+0000\n"
7
  "Last-Translator: MopBear <syt1100@gmail.com>\n"
8
  "Language-Team: MopBear <syt1100@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
26
  msgid "\"Count per Day\" updated to version %s."
27
  msgstr "\"Count per Day\" 最新版本为 %s。"
28
 
29
+ #: counter-core.php:653
30
+ #: counter-options.php:412
31
  #@ default
32
  msgid "Settings"
33
  msgstr "设定"
34
 
35
+ #: counter-core.php:756
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:757
42
  #@ cpd
43
  msgid "Bug? Problem? Question? Hint? Praise?"
44
  msgstr "BUG?出错?疑问?提示?评价?"
45
 
46
+ #: counter-core.php:758
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:759
53
  #@ default
54
  msgid "License"
55
  msgstr "许可"
56
 
57
+ #: counter-core.php:791
58
+ #: counter.php:241
59
+ #: counter.php:1223
60
+ #: counter.php:1417
61
  #@ cpd
62
  msgid "Total visitors"
63
  msgstr "总访问数"
64
 
65
+ #: counter-core.php:792
66
  #@ cpd
67
  msgid "Visitors online"
68
  msgstr "在线访问者数"
69
 
70
+ #: counter-core.php:793
71
+ #: counter.php:1421
72
  #@ cpd
73
  msgid "Visitors per month"
74
  msgstr "每月访问者数"
75
 
76
+ #: counter-core.php:794
77
+ #: counter.php:1416
78
  #@ cpd
79
  msgid "Reads per month"
80
  msgstr "每月阅读量"
81
 
82
+ #: counter-core.php:795
83
+ #: counter-options.php:937
84
  #@ cpd
85
  msgid "Visitors per post"
86
  msgstr "每篇文章的访问者数"
87
 
88
+ #: counter-core.php:796
89
  #@ cpd
90
  msgid "Latest Counts"
91
  msgstr "最新统计"
92
 
93
+ #: counter-core.php:797
94
+ #: counter.php:247
95
+ #: counter.php:348
96
+ #: counter.php:1225
97
+ #: counter.php:1422
98
  #: userperspan.php:46
99
  #@ cpd
100
  msgid "Visitors per day"
101
  msgstr "每日访问者数"
102
 
103
+ #: counter-core.php:798
104
+ #: counter-options.php:967
105
+ #: counter-options.php:971
106
  #@ cpd
107
  msgid "Search strings"
108
  msgstr "搜索字符串"
109
 
110
+ #: counter-core.php:799
111
  #@ default
112
  msgid "Plugin"
113
  msgstr "插件"
114
 
115
+ #: counter-core.php:802
116
+ #: counter-options.php:963
117
  #@ cpd
118
  msgid "Browsers"
119
  msgstr "浏览器"
120
 
121
+ #: counter-core.php:803
122
  #@ cpd
123
  msgid "Referrer"
124
  msgstr "反向链接"
125
 
126
+ #: counter-core.php:807
127
  #@ cpd
128
  msgid "Reads per Country"
129
  msgstr "每个国家阅读数"
130
 
131
+ #: counter-core.php:808
132
  #@ cpd
133
  msgid "Visitors per Country"
134
  msgstr "每个国家访问者数"
135
 
136
+ #: counter-core.php:823
137
+ #: counter.php:1339
138
  #@ cpd
139
  msgid "Statistics"
140
  msgstr "统计"
141
 
142
+ #: counter-core.php:1076
143
  #@ cpd
144
  msgid "Backup failed! Cannot open file"
145
  msgstr "备份失败!无法打开文件"
146
 
147
+ #: counter-core.php:1191
148
  #@ cpd
149
  msgid "Your can download the backup files here and now."
150
  msgstr "你现在可以在此处下载你的备份文档。"
151
 
152
+ #: counter-core.php:1195
153
+ #: counter-core.php:1203
154
  #, php-format
155
  #@ cpd
156
  msgid "Backup of counter table saved in %s."
157
  msgstr "计数器表的备份文档保存于 %s。"
158
 
159
+ #: counter-core.php:1197
160
+ #: counter-core.php:1205
161
  #, php-format
162
  #@ cpd
163
  msgid "Backup of counter options and collection saved in %s."
164
  msgstr "计数选项和收集的备份数据保存于 %s。"
165
 
166
+ #: counter-core.php:1261
167
  #@ cpd
168
  msgid "Error while reading backup file!"
169
  msgstr "读取备份文件错误!"
170
 
171
+ #: counter-core.php:1265
172
  #, php-format
173
  #@ cpd
174
  msgid "The backup was added to counter table %s."
175
  msgstr "新的备份已被添加于计数器 %s 。"
176
 
177
+ #: counter-core.php:1267
178
  #, php-format
179
  #@ cpd
180
  msgid "The counter table %s was restored from backup."
181
  msgstr "计数器表 %s 已经被重置。"
182
 
183
+ #: counter-core.php:1284
184
  #@ cpd
185
  msgid "Options restored from backup."
186
  msgstr "已从备份中恢复选项。"
187
 
188
+ #: counter-core.php:1541
189
+ #: counter-options.php:879
190
+ #: counter.php:240
191
+ #: counter.php:1024
192
+ #: map/map.php:60
193
  #@ cpd
194
  msgid "Reads"
195
  msgstr "阅读总数"
196
 
197
+ #: counter-options.php:54
198
  #@ cpd
199
  msgid "Options updated"
200
  msgstr "选项已更新"
201
 
202
  # 此处不知道如何翻译@ cpd
203
+ #: counter-options.php:66
204
  #, php-format
205
  #@ cpd
206
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
207
  msgstr "访问者国家已更新。%s 上的 <b>%s</b> 已无未被分类的其他国家访问者。"
208
 
209
+ #: counter-options.php:69
210
  #@ cpd
211
  msgid "update next"
212
  msgstr "下一次更新"
213
 
214
+ #: counter-options.php:109
215
  #, php-format
216
  #@ cpd
217
  msgid "Mass Bots cleaned. %s counts deleted."
218
  msgstr "恶意访问机器人已被清理。 %s 访问被删除。"
219
 
220
+ #: counter-options.php:121
221
  #, php-format
222
  #@ cpd
223
  msgid "Database cleaned. %s rows deleted."
224
  msgstr "数据库已被清理。 %s 行被删除。"
225
 
226
+ #: counter-options.php:131
227
  #@ cpd
228
  msgid "Counter reseted."
229
  msgstr "计数器被重置。"
230
 
231
+ #: counter-options.php:136
232
+ #: counter-options.php:806
233
  #@ cpd
234
  msgid "UNINSTALL Count per Day"
235
  msgstr "删除 Count per Day "
236
 
237
+ #: counter-options.php:141
238
+ #: counter-options.php:142
239
+ #: counter-options.php:143
240
  #, php-format
241
  #@ cpd
242
  msgid "Table %s deleted"
243
  msgstr "%s 表被删除"
244
 
245
+ #: counter-options.php:144
246
  #@ cpd
247
  msgid "Options deleted"
248
  msgstr "选项被删除"
249
 
250
+ #: counter-options.php:177
251
  #@ cpd
252
  msgid "Collection in progress..."
253
  msgstr "整理中..."
254
 
255
+ #: counter-options.php:271
256
  #@ cpd
257
  msgid "Get Visitors per Post..."
258
  msgstr "正在获取每篇文章的访问者数…"
259
 
260
+ #: counter-options.php:316
261
  #, php-format
262
  #@ cpd
263
  msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
264
  msgstr "直到%s 所整理的数据输入已被更新。计数器 %s 已被最优化 (最优化前 = %s &gt; 最优化后 = %s)。"
265
 
266
+ #: counter-options.php:325
267
  #@ cpd
268
  msgid "Installation of \"Count per Day\" checked"
269
  msgstr "\"Count per Day\" 的安装检查完毕。"
270
 
271
+ #: counter-options.php:340
272
  #@ cpd
273
  msgid "Old search strings deleted"
274
  msgstr "旧的搜索字符串已被删除"
275
 
276
+ #: counter-options.php:385
277
+ #: counter-options.php:792
278
  #@ cpd
279
  msgid "Uninstall"
280
  msgstr "删除"
281
 
282
+ #: counter-options.php:386
283
  #@ cpd
284
  msgid "Click here"
285
  msgstr "猛击这里"
286
 
287
+ #: counter-options.php:386
288
  #@ cpd
289
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
290
  msgstr "完成删除并取消激活\"Count per Day\" "
291
 
292
+ #: counter-options.php:411
293
  #@ default
294
  msgid "Tools"
295
  msgstr "工具"
296
 
297
+ #: counter-options.php:432
298
  #: massbots.php:46
299
  #@ cpd
300
  msgid "Mass Bots"
301
  msgstr "恶意机器人"
302
 
303
+ #: counter-options.php:436
304
  #, php-format
305
  #@ cpd
306
  msgid "Show all IPs with more than %s page views per day"
307
  msgstr "显示所有每日阅读超过 %s 阅读着的IP地址"
308
 
309
+ #: counter-options.php:437
310
+ #: counter-options.php:501
311
  #: notes.php:84
312
  #: userperspan.php:56
313
  #@ cpd
314
  msgid "show"
315
  msgstr "显示"
316
 
317
+ #: counter-options.php:445
318
+ #: counter-options.php:509
319
  #@ cpd
320
  msgid "IP"
321
  msgstr "IP"
322
 
323
+ #: counter-options.php:446
324
+ #: counter-options.php:510
325
  #: notes.php:88
326
  #@ cpd
327
  #@ default
328
  msgid "Date"
329
  msgstr "日期"
330
 
331
+ #: counter-options.php:447
332
+ #: counter-options.php:511
333
  #@ cpd
334
  msgid "Client"
335
  msgstr "客户端"
336
 
337
+ #: counter-options.php:448
338
+ #: counter-options.php:512
339
  #@ cpd
340
  msgid "Views"
341
  msgstr "阅读数"
342
 
343
+ #: counter-options.php:463
344
+ #: counter-options.php:479
345
+ #: counter-options.php:526
346
  #, php-format
347
  #@ cpd
348
  msgid "Delete these %s counts"
349
  msgstr "删除 %s 计数"
350
 
351
+ #: counter-options.php:563
352
+ #: counter-options.php:1029
353
  #@ cpd
354
  msgid "Backup"
355
  msgstr "备份文件"
356
 
357
+ #: counter-options.php:567
358
  #, php-format
359
  #@ cpd
360
  msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
361
  msgstr "创建一个关于计数器 %s 的备份并保存于你的wp-content目录下(如果可以被写入)。"
362
 
363
+ #: counter-options.php:570
364
  #@ cpd
365
  msgid "Download only"
366
  msgstr "只可以被下载"
367
 
368
+ #: counter-options.php:574
369
  #@ cpd
370
  msgid "Backup the database"
371
  msgstr "备份数据库"
372
 
373
+ #: counter-options.php:602
374
  #@ cpd
375
  msgid "Settings and collections"
376
  msgstr "设定与收集"
377
 
378
+ #: counter-options.php:607
379
  #, php-format
380
  #@ cpd
381
  msgid "Counter table %s"
382
  msgstr "计数器 %s"
383
 
384
+ #: counter-options.php:614
385
  #, php-format
386
  #@ cpd
387
  msgid "Add data from the backup file %s to existing counter table?"
388
  msgstr "是否从备份文件添加一个数据 %s 至已存在的计数器中?"
389
 
390
+ #: counter-options.php:614
391
  #@ cpd
392
  msgid "Add"
393
  msgstr "添加"
394
 
395
+ #: counter-options.php:618
396
  #, php-format
397
  #@ cpd
398
  msgid "Restore data from the backup file %s ?"
399
  msgstr "是否从辈分文件中 %s 恢复数据?"
400
 
401
+ #: counter-options.php:618
402
  #@ default
403
  msgid "Restore"
404
  msgstr "恢复"
405
 
406
+ #: counter-options.php:620
407
  #@ default
408
  msgid "Delete"
409
  msgstr "删除"
410
 
411
+ #: counter-options.php:621
412
  #, php-format
413
  #@ cpd
414
  msgid "Delete the backup file %s ?"
415
  msgstr "是否删除备份文件 %s ?"
416
 
417
+ #: counter-options.php:627
418
  #@ cpd
419
  msgid "add backup to current counter table"
420
  msgstr "添加一个新的备份至现在的计数器"
421
 
422
+ #: counter-options.php:628
423
  #@ cpd
424
  msgid "replace current counter table with with backup"
425
  msgstr "替换现在的计数器为备份文档"
426
 
427
+ #: counter-options.php:629
428
  #@ cpd
429
  msgid "delete backup file"
430
  msgstr "删除备份文档"
431
 
432
+ #: counter-options.php:640
433
+ #: counter-options.php:648
434
  #@ cpd
435
  msgid "Clean the database"
436
  msgstr "清理数据库"
437
 
438
+ #: counter-options.php:644
439
  #@ cpd
440
  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."
441
  msgstr "你可以通过删除\"spam data\"来清理的计数器。<br />添加新的恶意机器人黑名单于旧的数据库\"spam data\"。<br />这里你可以运行恶意机器人过滤器并且删除这些恶意机器人的访问"
442
 
443
+ #: counter-options.php:654
444
  #, php-format
445
  #@ cpd
446
  msgid "Delete search strings older than %s days."
447
  msgstr "%s 日以前的搜索字符串被删除"
448
 
449
+ #: counter-options.php:658
450
  #@ cpd
451
  msgid "Delete search strings"
452
  msgstr "删除搜索字符串"
453
 
454
+ #: counter-options.php:678
455
+ #: counter-options.php:710
456
  #@ cpd
457
  msgid "Collect old data"
458
  msgstr "收集旧数据"
459
 
460
+ #: counter-options.php:664
461
+ #: counter-options.php:683
462
  #, php-format
463
  #@ cpd
464
  msgid "Current size of your counter table %s is %s."
465
  msgstr "现在计数器 %s 的文件大小是 %s 。"
466
 
467
+ #: counter-options.php:685
468
  #@ cpd
469
  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."
470
  msgstr "你可以收集旧数据并清理计数器。<br/>阅读量和访问者会按月份,国家,文章的分类被保存。<br/>客户端与反向链接会被删除。"
471
 
472
+ #: counter-options.php:690
473
  #, php-format
474
  #@ cpd
475
  msgid "Currently your collection contains data until %s."
476
  msgstr "直到%s 的数据已被包含在整理中。"
477
 
478
+ #: counter-options.php:694
479
  #@ cpd
480
  msgid "Normally new data will be added to the collection."
481
  msgstr "一般新的数据会被添加于收集中并加入肯德基豪华午餐XD。"
482
 
483
+ #: counter-options.php:700
484
  #@ cpd
485
  msgid "Delete old collection and create a new one which contains only the data currently in counter table."
486
  msgstr "删除旧的数据收集并创建一个只包含现有数据的计数器。"
487
 
488
+ #: counter-options.php:701
489
  #, php-format
490
  #@ cpd
491
  msgid "All collected data until %s will deleted."
492
  msgstr "直到%s 所有被收集的数据已经被删除 。"
493
 
494
+ #: counter-options.php:706
495
  #, php-format
496
  #@ cpd
497
  msgid "Keep entries of last %s full months + current month in counter table."
498
  msgstr "保留上一个和这一个月 %s 计数器中的所有数据。"
499
 
500
+ #: counter-options.php:723
501
  #@ cpd
502
  msgid "GeoIP - Countries"
503
  msgstr "GeoIP - 国家统计"
504
 
505
+ #: counter-options.php:726
506
  #@ cpd
507
  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!"
508
  msgstr "你可以通过检查数据库中所有来访者的 IP地址来收集那些你可能认为与 GeoIP 数据库不符的国家信息。这将需要一段时间。"
509
 
510
+ #: counter-options.php:732
511
  #@ cpd
512
  msgid "Update old counter data"
513
  msgstr "更新旧的计数器信息"
514
 
515
+ #: counter-options.php:739
516
  #@ cpd
517
  msgid "Download a new version of GeoIP.dat file."
518
  msgstr "下载新版本的 GeoIP.dat文件。"
519
 
520
+ #: counter-options.php:744
521
  #@ cpd
522
  msgid "Update GeoIP database"
523
  msgstr "GeoIP 数据库更新"
524
 
525
+ #: counter-options.php:749
526
  #@ cpd
527
  msgid "More informations about GeoIP"
528
  msgstr "GeoIP的详细信息"
529
 
530
+ #: counter-options.php:757
531
  #@ cpd
532
  msgid "ReActivation"
533
  msgstr "再次激活"
534
 
535
+ #: counter-options.php:760
536
  #@ cpd
537
  msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
538
  msgstr "在这里你可以手动进行安装功能。<br/>同时你也可以进行激活与取消激活插件。"
539
 
540
+ #: counter-options.php:765
541
  #@ cpd
542
  msgid "ReActivate the plugin"
543
  msgstr "重新激活插件"
544
 
545
+ #: counter-options.php:773
546
+ #: counter-options.php:783
547
  #@ cpd
548
  msgid "Reset the counter"
549
  msgstr "重置计数器"
550
 
551
+ #: counter-options.php:776
552
  #@ cpd
553
  msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
554
  msgstr "你可以通过清除表格来重置计数。全部都变成 998 哦!其实是 0 啦!<br />如果你想保存现有数据请进行备份。"
555
 
556
+ #: counter-options.php:782
557
+ #: counter-options.php:805
558
  #@ cpd
559
  msgid "Yes"
560
  msgstr "是"
561
 
562
+ #: counter-options.php:795
563
  #@ cpd
564
  msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
565
  msgstr "\"Count per Day\"如果只是在数据库表格中被禁用,它将任然发挥功效。"
566
 
567
+ #: counter-options.php:796
568
  #@ cpd
569
  msgid "Here you can delete the tables and disable \"Count per Day\"."
570
  msgstr "在这里你可以删除计数表格并取消使用\"Count per Day\"。"
571
 
572
+ #: counter-options.php:799
573
  #@ cpd
574
  msgid "WARNING"
575
  msgstr "警告"
576
 
577
+ #: counter-options.php:800
578
  #@ cpd
579
  msgid "These tables (with ALL counter data) will be deleted."
580
  msgstr "这些表格(所有的计数数据)将被删除。"
581
 
582
+ #: counter-options.php:802
583
  #@ cpd
584
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
585
  msgstr "如果重新安装\"Count per Day\",计数器将会从0开始重新计数。"
586
 
587
+ #: counter-options.php:806
588
  #@ cpd
589
  msgid "You are sure to disable Count per Day and delete all data?"
590
  msgstr "你确定需要停止使用Count per Day并删除所有数据么?"
591
 
592
+ #: counter-options.php:814
593
  #@ cpd
594
  msgid "Support"
595
  msgstr "技术支持"
596
 
597
+ #: counter-options.php:831
598
  #@ cpd
599
  msgid "Counter"
600
  msgstr "计数器"
601
 
602
+ #: counter-options.php:835
603
  #@ cpd
604
  msgid "Online time"
605
  msgstr "在线时间"
606
 
607
+ #: counter-options.php:836
608
  #@ cpd
609
  msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
610
  msgstr "统计在线人数的秒数。 在\"在线访问者数\"仪表盘里使用。"
611
 
612
+ #: counter-options.php:839
613
  #@ cpd
614
  msgid "Logged on Users"
615
  msgstr "已登陆的用户"
616
 
617
+ #: counter-options.php:841
618
  #@ cpd
619
  msgid "count too"
620
  msgstr "同样被计数"
621
 
622
+ #: counter-options.php:842
623
  #@ cpd
624
  msgid "until User Level"
625
  msgstr "用户级"
626
 
627
+ #: counter-options.php:853
628
  #@ cpd
629
  msgid "Auto counter"
630
  msgstr "自动计数器"
631
 
632
+ #: counter-options.php:854
633
  #@ cpd
634
  msgid "Counts automatically single-posts and pages, no changes on template needed."
635
  msgstr "计数会根据每一篇文章和页面进行自动改变,不需要在模版上进行改变。"
636
 
637
+ #: counter-options.php:857
638
  #@ cpd
639
  msgid "Bots to ignore"
640
  msgstr "恶意机器人黑名单"
641
 
642
+ #: counter-options.php:868
643
  #@ cpd
644
  msgid "Anonymous IP"
645
  msgstr "匿名IP"
646
 
647
+ #: counter-options.php:872
648
  #@ cpd
649
  msgid "Cache"
650
  msgstr "缓存"
651
 
652
+ #: counter-options.php:873
653
  #@ cpd
654
  msgid "I use a cache plugin. Count these visits with ajax."
655
  msgstr "我使用一个缓存插件。通过ajax来对这些访问进行计数。"
656
 
657
+ #: counter-options.php:876
658
  #@ cpd
659
  msgid "Clients and referrers"
660
  msgstr "客户端与反向链接"
661
 
662
+ #: counter-options.php:879
663
  #@ cpd
664
  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."
665
  msgstr "保存并显示客户端与反向链接。<br />在数据库中需要大量的空间并提供更多关于访问者的具体信息。"
666
 
667
+ #: counter-options.php:881
668
  #@ cpd
669
  msgid "Save URL only, no query string."
670
  msgstr "仅保存URL,不保存查询字符串。"
671
 
672
+ #: counter-options.php:902
673
  #@ default
674
  msgid "Dashboard"
675
  msgstr "仪表盘"
676
 
677
+ #: counter-options.php:918
678
  #@ cpd
679
  msgid "Who can see it"
680
  msgstr "允许查看的人"
681
 
682
+ #: counter-options.php:927
683
  #@ cpd
684
  msgid "custom"
685
  msgstr "自定义"
686
 
687
+ #: counter-options.php:929
688
  #@ cpd
689
  msgid "and higher are allowed to see the statistics page."
690
  msgstr "或者更高级的授权才被允许查看统计页。"
691
 
692
+ #: counter-options.php:931
693
  #, php-format
694
  #@ cpd
695
  msgid "Set the %s capability %s a user need:"
696
  msgstr "设定用户所需%s 权限 %s :"
697
 
698
+ #: counter-options.php:938
699
+ #: counter-options.php:942
700
  #@ cpd
701
  msgid "How many posts do you want to see on dashboard page?"
702
  msgstr "你需要在仪表片上查看多少文章?"
703
 
704
+ #: counter-options.php:941
705
  #@ cpd
706
  msgid "Latest Counts - Posts"
707
  msgstr "最新统计 - 文章"
708
 
709
+ #: counter-options.php:945
710
  #@ cpd
711
  msgid "Latest Counts - Days"
712
  msgstr "最新统计 - 日期"
713
 
714
+ #: counter-options.php:946
715
+ #: counter-options.php:950
716
+ #: counter-options.php:972
717
  #@ cpd
718
  msgid "How many days do you want look back?"
719
  msgstr "你需要查看多少天以前的记录?"
720
 
721
+ #: counter-options.php:949
722
  #@ cpd
723
  msgid "Chart - Days"
724
  msgstr "图表 - 日期"
725
 
726
+ #: counter-options.php:953
727
  #@ cpd
728
  msgid "Chart - Height"
729
  msgstr "图表 - 高度"
730
 
731
+ #: counter-options.php:954
732
  #@ cpd
733
  msgid "Height of the biggest bar"
734
  msgstr "最高统计条的高度"
735
 
736
+ #: counter-options.php:958
737
  #@ cpd
738
  msgid "Countries"
739
  msgstr "国家"
740
 
741
+ #: counter-options.php:959
742
  #@ cpd
743
  msgid "How many countries do you want to see on dashboard page?"
744
  msgstr "你需要在仪表盘上查看多少国家?"
745
 
746
+ #: counter-options.php:964
747
  #@ cpd
748
  msgid "Substring of the user agent, separated by comma"
749
  msgstr "用户的子字符串,通过逗号来进行分开"
750
 
751
+ #: counter-options.php:967
752
  #@ cpd
753
  msgid "Referrers - Entries"
754
  msgstr "反向链接 - 输入"
755
 
756
+ #: counter-options.php:968
757
  #@ cpd
758
  msgid "How many referrers do you want to see on dashboard page?"
759
  msgstr "你需要在仪表盘上查看多少反向链接?"
760
 
761
+ #: counter-options.php:971
762
  #@ cpd
763
  msgid "Referrers - Days"
764
  msgstr "反向链接 - 日期"
765
 
766
+ #: counter-options.php:975
767
  #@ cpd
768
  msgid "Local URLs"
769
  msgstr "本地 URLs"
770
 
771
+ #: counter-options.php:976
772
  #@ cpd
773
  msgid "Show local referrers too."
774
  msgstr "同样显示本地反向链接"
775
 
776
+ #: counter-options.php:983
777
  #@ default
778
  msgid "Posts"
779
  msgstr "文章"
780
 
781
+ #: counter-options.php:983
782
  #@ default
783
  msgid "Pages"
784
  msgstr "页面"
785
 
786
+ #: counter-options.php:986
787
  #@ cpd
788
  msgid "Show in lists"
789
  msgstr "列表形式表示"
790
 
791
+ #: counter-options.php:987
792
  #@ cpd
793
  msgid "Show \"Reads per Post\" in a new column in post management views."
794
  msgstr "在查看文章管理中添加并显示新栏目\"每篇文章的阅读总数\"。"
795
 
796
+ #: counter-options.php:994
797
  #@ cpd
798
  msgid "Start Values"
799
  msgstr "开始值"
800
 
801
+ #: counter-options.php:998
802
  #@ cpd
803
  msgid "Here you can change the date of first count and add a start count."
804
  msgstr "在这里更改你的起始日期并且添加一个其实数值。"
805
 
806
+ #: counter-options.php:1002
807
  #@ cpd
808
  msgid "Start date"
809
  msgstr "开始日期"
810
 
811
+ #: counter-options.php:1003
812
  #@ cpd
813
  msgid "Your old Counter starts at?"
814
  msgstr "你原计数器开始于何日?"
815
 
816
+ #: counter-options.php:1006
817
+ #: counter-options.php:1010
818
  #@ cpd
819
  msgid "Start count"
820
  msgstr "开始计数"
821
 
822
+ #: counter-options.php:1007
823
  #@ cpd
824
  msgid "Add this value to \"Total visitors\"."
825
  msgstr "添加这个值到 \"总访问数\"。"
826
 
827
+ #: counter-options.php:1011
828
  #@ cpd
829
  msgid "Add this value to \"Total reads\"."
830
  msgstr "添加这个值到 \"总阅览数\"。"
831
 
832
+ #: counter-options.php:1018
833
  #@ cpd
834
  msgid "Stylesheet"
835
  msgstr "Stylesheet"
836
 
837
+ #: counter-options.php:1021
838
  #@ cpd
839
  msgid "NO Stylesheet in Frontend"
840
  msgstr "不要在 fronttend 载入stylesheet。"
841
 
842
+ #: counter-options.php:1022
843
  #@ cpd
844
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
845
  msgstr "不要在 fronttend 载入stylesheet \"counter.css\"。"
846
 
847
+ #: counter-options.php:1032
848
  #@ cpd
849
  msgid "Entries per pass"
850
  msgstr "每次许可的记录次数"
851
 
852
+ #: counter-options.php:1035
853
  #@ cpd
854
  msgid "How many entries should be saved per pass? Default: 10000"
855
  msgstr "你需要在每一次许可保存多少次记录? 预设值: 10000"
856
 
857
+ #: counter-options.php:1040
858
  #@ cpd
859
  msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
860
  msgstr "如果你的PHP的存储上限小于 50 MB,在你产生空白页面或者错误信息的时候尝试更小的值。"
861
 
862
+ #: counter-options.php:1048
863
  #@ cpd
864
  msgid "Debug mode"
865
  msgstr "调试模式"
866
 
867
+ #: counter-options.php:1050
868
  #@ cpd
869
  msgid "Show debug informations at the bottom of all pages."
870
  msgstr "在所有页面的下方显示调试功能。"
871
 
872
+ #: counter-options.php:1055
873
  #@ cpd
874
  msgid "Update options"
875
  msgstr "更新选项"
876
 
877
+ #: counter.php:236
878
+ #: counter.php:1412
879
  #@ cpd
880
  msgid "Total reads"
881
  msgstr "总阅览数"
882
 
883
+ #: counter.php:237
884
+ #: counter.php:1413
885
  #@ cpd
886
  msgid "Reads today"
887
  msgstr "今天阅读数量"
888
 
889
+ #: counter.php:238
890
+ #: counter.php:1414
891
  #@ cpd
892
  msgid "Reads yesterday"
893
  msgstr "昨天阅读数量"
894
 
895
+ #: counter.php:239
896
+ #: counter.php:1415
897
  #@ cpd
898
  msgid "Reads last week"
899
  msgstr "上周阅读数量"
900
 
901
+ #: counter.php:242
902
+ #: counter.php:1423
903
  #@ cpd
904
  msgid "Visitors currently online"
905
  msgstr "现在在线的访问者数"
906
 
907
+ #: counter.php:243
908
+ #: counter.php:1418
909
  #@ cpd
910
  msgid "Visitors today"
911
  msgstr "今天访问者数"
912
 
913
+ #: counter.php:244
914
+ #: counter.php:1419
915
  #@ cpd
916
  msgid "Visitors yesterday"
917
  msgstr "昨日访问者数"
918
 
919
+ #: counter.php:245
920
+ #: counter.php:1420
921
  #@ cpd
922
  msgid "Visitors last week"
923
  msgstr "上周访问者数"
924
 
925
+ #: counter.php:246
926
+ #: counter.php:1048
927
  #@ cpd
928
  msgid "Visitors"
929
  msgstr "访问者数"
930
 
931
+ #: counter.php:974
932
+ #: counter.php:1424
933
  #@ cpd
934
  msgid "Counter starts on"
935
  msgstr "计数起始于"
936
 
937
+ #: counter.php:249
938
+ #: counter.php:250
939
  #@ cpd
940
  msgid "Most visited day"
941
  msgstr "最近被访问的日期"
942
 
943
+ #: counter.php:347
944
  #@ cpd
945
  msgid "Reads per day"
946
  msgstr "每日阅读总数"
947
 
948
+ #: counter.php:438
949
+ #: counter.php:1254
950
  #@ cpd
951
  msgid "Map"
952
  msgstr "地图"
953
 
954
+ #: counter.php:776
955
  #, php-format
956
  #@ cpd
957
  msgid "The %s most visited posts in last %s days:"
958
  msgstr "访问最多的文章 %s 篇 (过去 %s 天内)"
959
 
960
+ #: counter.php:893
961
  #@ default
962
  msgid "Show"
963
  msgstr "显示"
964
 
965
+ #: counter.php:895
966
  #: notes.php:55
967
  #: notes.php:89
968
  #@ cpd
969
  msgid "Notes"
970
  msgstr "标注"
971
 
972
+ #: counter.php:963
973
  #@ cpd
974
  msgid "Other"
975
  msgstr "其他"
976
 
977
+ #: counter.php:994
978
  #, php-format
979
  #@ cpd
980
  msgid "The %s referrers in last %s days:"
981
  msgstr " %s 反向链接 (过去 %s 天内)"
982
 
983
+ #: counter.php:1135
984
  #@ default
985
  msgid "Edit Post"
986
  msgstr "编辑文章"
987
 
988
+ #: counter.php:1144
989
  #@ default
990
  msgid "Category"
991
  msgstr "分类"
992
 
993
+ #: counter.php:1147
994
  #@ default
995
  msgid "Tag"
996
  msgstr "Tag"
1001
  msgid "Front page displays"
1002
  msgstr "首页显示"
1003
 
1004
+ #: counter.php:1198
1005
  #, php-format
1006
  #@ cpd
1007
  msgid "The %s most searched strings:"
1008
  msgstr "搜索最频繁的字符串 (过去 %s 天)"
1009
 
1010
+ #: counter.php:1207
1011
  #, php-format
1012
  #@ cpd
1013
  msgid "The search strings of the last %s days:"
1014
  msgstr "最近 %s 天内的搜索字符串"
1015
 
1016
+ #: counter.php:1411
1017
  #@ cpd
1018
  msgid "This post"
1019
  msgstr "这篇文章"
1020
 
1021
+ #: counter.php:1436
1022
  #@ default
1023
  msgid "Title"
1024
  msgstr "标题"
1025
 
1026
+ #: counter.php:1455
1027
  #@ cpd
1028
  msgid "drag and drop to sort"
1029
  msgstr "拖放进行分类"
1088
  msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
1089
  msgstr "对不起,产生错误。 请重新尝试或者检查链接目录\"geoip\" 的权限是否为 777。"
1090
 
1091
+ #: counter-core.php:1000
1092
  #@ cpd
1093
  msgid "Export failed! Cannot open file."
1094
  msgstr ""
1095
 
1096
+ #: counter-core.php:1048
1097
  #@ cpd
1098
  msgid "Download the export file:"
1099
  msgstr ""
1100
 
1101
+ #: counter-core.php:1103
1102
  #, php-format
1103
  #@ cpd
1104
  msgid "Backup of %s entries in progress. Every point comprises %s entries."
1105
  msgstr ""
1106
 
1107
+ #: counter-options.php:292
1108
  #@ cpd
1109
  msgid "Deleting old data..."
1110
  msgstr ""
1111
 
1112
+ #: counter-options.php:355
1113
  #@ cpd
1114
  msgid "Clients and referers deleted"
1115
  msgstr ""
1116
 
1117
+ #: counter-options.php:496
1118
  #@ cpd
1119
  msgid "Most Industrious Visitors"
1120
  msgstr ""
1121
 
1122
+ #: counter-options.php:500
1123
  #, php-format
1124
  #@ cpd
1125
  msgid "Show the %s most industrious visitors of the last %s days"
1126
  msgstr ""
1127
 
1128
+ #: counter-options.php:547
1129
  #@ cpd
1130
  msgid "Export"
1131
  msgstr ""
1132
 
1133
+ #: counter-options.php:551
1134
  #, php-format
1135
  #@ cpd
1136
  msgid "Export the last %s days as CSV-File"
1137
  msgstr ""
1138
 
1139
+ #: counter-options.php:555
1140
  #@ cpd
1141
  msgid "Export entries"
1142
  msgstr ""
1143
 
1144
+ #: counter-options.php:665
1145
  #, php-format
1146
  #@ cpd
1147
  msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
1148
  msgstr ""
1149
 
1150
+ #: counter-options.php:669
1151
  #@ cpd
1152
  msgid "Delete clients and referers"
1153
  msgstr ""
1154
 
1155
+ #: counter-options.php:888
1156
  #@ cpd
1157
  msgid "Post types"
1158
  msgstr ""
1159
 
1160
+ #: counter-options.php:891
1161
  #@ cpd
1162
  msgid "Only count these post types. Leave empty to count them all."
1163
  msgstr ""
1164
 
1165
+ #: counter-options.php:892
1166
  #, php-format
1167
  #@ cpd
1168
  msgid "Current post types: %s"
1169
  msgstr ""
1170
 
1171
+ #: counter.php:248
1172
  #@ cpd
1173
  msgid "Since"
1174
  msgstr ""
1175
 
1176
+ #: counter.php:1150
1177
  #@ default
1178
  msgid "Front page"
1179
  msgstr ""
1180
 
1181
+ #: counter.php:1371
1182
  #@ default
1183
  msgid "_name"
1184
  msgstr ""
1185
 
1186
+ #: counter.php:1507
1187
+ #: counter.php:1539
1188
  #@ cpd
1189
  msgid "Popular Posts"
1190
  msgstr ""
1191
 
1192
+ #: counter.php:1509
1193
  #@ cpd
1194
  msgid "List of Popular Posts"
1195
  msgstr ""
1196
 
1197
+ #: counter.php:1547
1198
  #@ cpd
1199
  msgid "Title:"
1200
  msgstr ""
1201
 
1202
+ #: counter.php:1551
1203
  #@ cpd
1204
  msgid "Days:"
1205
  msgstr ""
1206
 
1207
+ #: counter.php:1555
1208
  #@ cpd
1209
  msgid "Limit:"
1210
  msgstr ""
1211
 
1212
+ #: counter.php:1559
1213
  #@ cpd
1214
  msgid "Show header:"
1215
  msgstr ""
1216
 
1217
+ #: counter.php:1563
1218
  #@ cpd
1219
  msgid "Show counters:"
1220
  msgstr ""
1221
 
1222
+ #: counter-options.php:861
1223
+ #@ cpd
1224
+ msgid "Exclude Countries"
1225
+ msgstr ""
1226
+
1227
+ #: counter-options.php:864
1228
+ #@ cpd
1229
+ msgid "Do not count visitors from these countries. Use the country code (de, us, cn,...) Leave empty to count them all."
1230
+ msgstr ""
1231
+
1232
+ #: counter-options.php:884
1233
+ #@ cpd
1234
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
1235
+ msgstr ""
1236
+
locale/cpd.pot CHANGED
@@ -1,14 +1,14 @@
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
 
@@ -16,854 +16,868 @@ msgstr ""
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
 
@@ -920,3 +934,25 @@ msgstr ""
920
  #: userperspan.php:62
921
  msgid "no data found"
922
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Count Per Day
2
+ # This file is distributed under the same license as the Count Per Day package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Count Per Day 3.4\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/count-per-day\n"
7
+ "POT-Creation-Date: 2015-02-13 08:35:14+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: 2015-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
16
  msgid "\"Count per Day\" updated to version %s."
17
  msgstr ""
18
 
19
+ #: counter-core.php:653 counter-options.php:412
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: counter-core.php:756
24
  msgid "Time for Count per Day: <code>%s</code>."
25
  msgstr ""
26
 
27
+ #: counter-core.php:757
28
  msgid "Bug? Problem? Question? Hint? Praise?"
29
  msgstr ""
30
 
31
+ #: counter-core.php:758
32
  msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
33
  msgstr ""
34
 
35
+ #: counter-core.php:759
36
  msgid "License"
37
  msgstr ""
38
 
39
+ #: counter-core.php:791 counter.php:241 counter.php:1223 counter.php:1417
40
  msgid "Total visitors"
41
  msgstr ""
42
 
43
+ #: counter-core.php:792
44
  msgid "Visitors online"
45
  msgstr ""
46
 
47
+ #: counter-core.php:793 counter.php:1421
48
  msgid "Visitors per month"
49
  msgstr ""
50
 
51
+ #: counter-core.php:794 counter.php:1416
52
  msgid "Reads per month"
53
  msgstr ""
54
 
55
+ #: counter-core.php:795 counter-options.php:937
56
  msgid "Visitors per post"
57
  msgstr ""
58
 
59
+ #: counter-core.php:796
60
  msgid "Latest Counts"
61
  msgstr ""
62
 
63
+ #: counter-core.php:797 counter.php:247 counter.php:348 counter.php:1225
64
+ #: counter.php:1422 userperspan.php:46
65
  msgid "Visitors per day"
66
  msgstr ""
67
 
68
+ #: counter-core.php:798 counter-options.php:967 counter-options.php:971
69
  msgid "Search strings"
70
  msgstr ""
71
 
72
+ #: counter-core.php:799
73
  msgid "Plugin"
74
  msgstr ""
75
 
76
+ #: counter-core.php:802 counter-options.php:963
77
  msgid "Browsers"
78
  msgstr ""
79
 
80
+ #: counter-core.php:803
81
  msgid "Referrer"
82
  msgstr ""
83
 
84
+ #: counter-core.php:807
85
  msgid "Reads per Country"
86
  msgstr ""
87
 
88
+ #: counter-core.php:808
89
  msgid "Visitors per Country"
90
  msgstr ""
91
 
92
+ #: counter-core.php:823 counter.php:1339
93
  msgid "Statistics"
94
  msgstr ""
95
 
96
+ #: counter-core.php:1000
97
  msgid "Export failed! Cannot open file."
98
  msgstr ""
99
 
100
+ #: counter-core.php:1048
101
  msgid "Download the export file:"
102
  msgstr ""
103
 
104
+ #: counter-core.php:1076
105
  msgid "Backup failed! Cannot open file"
106
  msgstr ""
107
 
108
+ #: counter-core.php:1103
109
  msgid "Backup of %s entries in progress. Every point comprises %s entries."
110
  msgstr ""
111
 
112
+ #: counter-core.php:1191
113
  msgid "Your can download the backup files here and now."
114
  msgstr ""
115
 
116
+ #: counter-core.php:1195 counter-core.php:1203
117
  msgid "Backup of counter table saved in %s."
118
  msgstr ""
119
 
120
+ #: counter-core.php:1197 counter-core.php:1205
121
  msgid "Backup of counter options and collection saved in %s."
122
  msgstr ""
123
 
124
+ #: counter-core.php:1261
125
  msgid "Error while reading backup file!"
126
  msgstr ""
127
 
128
+ #: counter-core.php:1265
129
  msgid "The backup was added to counter table %s."
130
  msgstr ""
131
 
132
+ #: counter-core.php:1267
133
  msgid "The counter table %s was restored from backup."
134
  msgstr ""
135
 
136
+ #: counter-core.php:1284
137
  msgid "Options restored from backup."
138
  msgstr ""
139
 
140
+ #: counter-core.php:1541 counter-options.php:879 counter.php:240
141
+ #: counter.php:1024 map/map.php:60
142
  msgid "Reads"
143
  msgstr ""
144
 
145
+ #: counter-options.php:54
146
  msgid "Options updated"
147
  msgstr ""
148
 
149
+ #: counter-options.php:66
150
  msgid "Countries updated. <b>%s</b> entries in %s without country left"
151
  msgstr ""
152
 
153
+ #: counter-options.php:69
154
  msgid "update next"
155
  msgstr ""
156
 
157
+ #: counter-options.php:109
158
  msgid "Mass Bots cleaned. %s counts deleted."
159
  msgstr ""
160
 
161
+ #: counter-options.php:121
162
  msgid "Database cleaned. %s rows deleted."
163
  msgstr ""
164
 
165
+ #: counter-options.php:131
166
  msgid "Counter reseted."
167
  msgstr ""
168
 
169
+ #: counter-options.php:136 counter-options.php:806
170
  msgid "UNINSTALL Count per Day"
171
  msgstr ""
172
 
173
+ #: counter-options.php:141 counter-options.php:142 counter-options.php:143
174
  msgid "Table %s deleted"
175
  msgstr ""
176
 
177
+ #: counter-options.php:144
178
  msgid "Options deleted"
179
  msgstr ""
180
 
181
+ #: counter-options.php:177
182
  msgid "Collection in progress..."
183
  msgstr ""
184
 
185
+ #: counter-options.php:271
186
  msgid "Get Visitors per Post..."
187
  msgstr ""
188
 
189
+ #: counter-options.php:292
190
  msgid "Deleting old data..."
191
  msgstr ""
192
 
193
+ #: counter-options.php:316
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:325
200
  msgid "Installation of \"Count per Day\" checked"
201
  msgstr ""
202
 
203
+ #: counter-options.php:340
204
  msgid "Old search strings deleted"
205
  msgstr ""
206
 
207
+ #: counter-options.php:355
208
  msgid "Clients and referers deleted"
209
  msgstr ""
210
 
211
+ #: counter-options.php:385 counter-options.php:792
212
  msgid "Uninstall"
213
  msgstr ""
214
 
215
+ #: counter-options.php:386
216
  msgid "Click here"
217
  msgstr ""
218
 
219
+ #: counter-options.php:386
220
  msgid "to finish the uninstall and to deactivate \"Count per Day\"."
221
  msgstr ""
222
 
223
+ #: counter-options.php:411
224
  msgid "Tools"
225
  msgstr ""
226
 
227
+ #: counter-options.php:432 massbots.php:46
228
  msgid "Mass Bots"
229
  msgstr ""
230
 
231
+ #: counter-options.php:436
232
  msgid "Show all IPs with more than %s page views per day"
233
  msgstr ""
234
 
235
+ #: counter-options.php:437 counter-options.php:501 notes.php:84
236
  #: userperspan.php:56
237
  msgid "show"
238
  msgstr ""
239
 
240
+ #: counter-options.php:445 counter-options.php:509
241
  msgid "IP"
242
  msgstr ""
243
 
244
+ #: counter-options.php:446 counter-options.php:510 notes.php:88
245
  msgid "Date"
246
  msgstr ""
247
 
248
+ #: counter-options.php:447 counter-options.php:511
249
  msgid "Client"
250
  msgstr ""
251
 
252
+ #: counter-options.php:448 counter-options.php:512
253
  msgid "Views"
254
  msgstr ""
255
 
256
+ #: counter-options.php:463 counter-options.php:479 counter-options.php:526
257
  msgid "Delete these %s counts"
258
  msgstr ""
259
 
260
+ #: counter-options.php:496
261
  msgid "Most Industrious Visitors"
262
  msgstr ""
263
 
264
+ #: counter-options.php:500
265
  msgid "Show the %s most industrious visitors of the last %s days"
266
  msgstr ""
267
 
268
+ #: counter-options.php:547
269
  msgid "Export"
270
  msgstr ""
271
 
272
+ #: counter-options.php:551
273
  msgid "Export the last %s days as CSV-File"
274
  msgstr ""
275
 
276
+ #: counter-options.php:555
277
  msgid "Export entries"
278
  msgstr ""
279
 
280
+ #: counter-options.php:563 counter-options.php:1029
281
  msgid "Backup"
282
  msgstr ""
283
 
284
+ #: counter-options.php:567
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:570
291
  msgid "Download only"
292
  msgstr ""
293
 
294
+ #: counter-options.php:574
295
  msgid "Backup the database"
296
  msgstr ""
297
 
298
+ #: counter-options.php:602
299
  msgid "Settings and collections"
300
  msgstr ""
301
 
302
+ #: counter-options.php:607
303
  msgid "Counter table %s"
304
  msgstr ""
305
 
306
+ #: counter-options.php:614
307
  msgid "Add data from the backup file %s to existing counter table?"
308
  msgstr ""
309
 
310
+ #: counter-options.php:614
311
  msgid "Add"
312
  msgstr ""
313
 
314
+ #: counter-options.php:618
315
  msgid "Restore data from the backup file %s ?"
316
  msgstr ""
317
 
318
+ #: counter-options.php:618
319
  msgid "Restore"
320
  msgstr ""
321
 
322
+ #: counter-options.php:620
323
  msgid "Delete"
324
  msgstr ""
325
 
326
+ #: counter-options.php:621
327
  msgid "Delete the backup file %s ?"
328
  msgstr ""
329
 
330
+ #: counter-options.php:627
331
  msgid "add backup to current counter table"
332
  msgstr ""
333
 
334
+ #: counter-options.php:628
335
  msgid "replace current counter table with with backup"
336
  msgstr ""
337
 
338
+ #: counter-options.php:629
339
  msgid "delete backup file"
340
  msgstr ""
341
 
342
+ #: counter-options.php:640 counter-options.php:648
343
  msgid "Clean the database"
344
  msgstr ""
345
 
346
+ #: counter-options.php:644
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:654
354
  msgid "Delete search strings older than %s days."
355
  msgstr ""
356
 
357
+ #: counter-options.php:658
358
  msgid "Delete search strings"
359
  msgstr ""
360
 
361
+ #: counter-options.php:664 counter-options.php:683
362
  msgid "Current size of your counter table %s is %s."
363
  msgstr ""
364
 
365
+ #: counter-options.php:665
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:669
372
  msgid "Delete clients and referers"
373
  msgstr ""
374
 
375
+ #: counter-options.php:678 counter-options.php:710
376
  msgid "Collect old data"
377
  msgstr ""
378
 
379
+ #: counter-options.php:685
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:690
387
  msgid "Currently your collection contains data until %s."
388
  msgstr ""
389
 
390
+ #: counter-options.php:694
391
  msgid "Normally new data will be added to the collection."
392
  msgstr ""
393
 
394
+ #: counter-options.php:700
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:701
401
  msgid "All collected data until %s will deleted."
402
  msgstr ""
403
 
404
+ #: counter-options.php:706
405
  msgid "Keep entries of last %s full months + current month in counter table."
406
  msgstr ""
407
 
408
+ #: counter-options.php:723
409
  msgid "GeoIP - Countries"
410
  msgstr ""
411
 
412
+ #: counter-options.php:726
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:732
419
  msgid "Update old counter data"
420
  msgstr ""
421
 
422
+ #: counter-options.php:739
423
  msgid "Download a new version of GeoIP.dat file."
424
  msgstr ""
425
 
426
+ #: counter-options.php:744
427
  msgid "Update GeoIP database"
428
  msgstr ""
429
 
430
+ #: counter-options.php:749
431
  msgid "More informations about GeoIP"
432
  msgstr ""
433
 
434
+ #: counter-options.php:757
435
  msgid "ReActivation"
436
  msgstr ""
437
 
438
+ #: counter-options.php:760
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:765
445
  msgid "ReActivate the plugin"
446
  msgstr ""
447
 
448
+ #: counter-options.php:773 counter-options.php:783
449
  msgid "Reset the counter"
450
  msgstr ""
451
 
452
+ #: counter-options.php:776
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:782 counter-options.php:805
459
  msgid "Yes"
460
  msgstr ""
461
 
462
+ #: counter-options.php:795
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:796
469
  msgid "Here you can delete the tables and disable \"Count per Day\"."
470
  msgstr ""
471
 
472
+ #: counter-options.php:799
473
  msgid "WARNING"
474
  msgstr ""
475
 
476
+ #: counter-options.php:800
477
  msgid "These tables (with ALL counter data) will be deleted."
478
  msgstr ""
479
 
480
+ #: counter-options.php:802
481
  msgid "If \"Count per Day\" re-installed, the counter starts at 0."
482
  msgstr ""
483
 
484
+ #: counter-options.php:806
485
  msgid "You are sure to disable Count per Day and delete all data?"
486
  msgstr ""
487
 
488
+ #: counter-options.php:814
489
  msgid "Support"
490
  msgstr ""
491
 
492
+ #: counter-options.php:831
493
  msgid "Counter"
494
  msgstr ""
495
 
496
+ #: counter-options.php:835
497
  msgid "Online time"
498
  msgstr ""
499
 
500
+ #: counter-options.php:836
501
  msgid ""
502
  "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
503
  msgstr ""
504
 
505
+ #: counter-options.php:839
506
  msgid "Logged on Users"
507
  msgstr ""
508
 
509
+ #: counter-options.php:841
510
  msgid "count too"
511
  msgstr ""
512
 
513
+ #: counter-options.php:842
514
  msgid "until User Level"
515
  msgstr ""
516
 
517
+ #: counter-options.php:853
518
  msgid "Auto counter"
519
  msgstr ""
520
 
521
+ #: counter-options.php:854
522
  msgid ""
523
  "Counts automatically single-posts and pages, no changes on template needed."
524
  msgstr ""
525
 
526
+ #: counter-options.php:857
527
  msgid "Bots to ignore"
528
  msgstr ""
529
 
530
+ #: counter-options.php:861
531
+ msgid "Exclude Countries"
532
+ msgstr ""
533
+
534
+ #: counter-options.php:864
535
+ msgid ""
536
+ "Do not count visitors from these countries. Use the country code (de, us, "
537
+ "cn,...) Leave empty to count them all."
538
+ msgstr ""
539
+
540
+ #: counter-options.php:868
541
  msgid "Anonymous IP"
542
  msgstr ""
543
 
544
+ #: counter-options.php:872
545
  msgid "Cache"
546
  msgstr ""
547
 
548
+ #: counter-options.php:873
549
  msgid "I use a cache plugin. Count these visits with ajax."
550
  msgstr ""
551
 
552
+ #: counter-options.php:876
553
  msgid "Clients and referrers"
554
  msgstr ""
555
 
556
+ #: counter-options.php:879
557
  msgid ""
558
  "Save and show clients and referrers.<br />Needs a lot of space in the "
559
  "database but gives you more detailed informations of your visitors."
560
  msgstr ""
561
 
562
+ #: counter-options.php:881
563
  msgid "Save URL only, no query string."
564
  msgstr ""
565
 
566
+ #: counter-options.php:884
567
+ msgid "Limit the length to reduce database size. (max. 500 chars)"
568
+ msgstr ""
569
+
570
+ #: counter-options.php:888
571
  msgid "Post types"
572
  msgstr ""
573
 
574
+ #: counter-options.php:891
575
  msgid "Only count these post types. Leave empty to count them all."
576
  msgstr ""
577
 
578
+ #: counter-options.php:892
579
  msgid "Current post types: %s"
580
  msgstr ""
581
 
582
+ #: counter-options.php:902
583
  msgid "Dashboard"
584
  msgstr ""
585
 
586
+ #: counter-options.php:918
587
  msgid "Who can see it"
588
  msgstr ""
589
 
590
+ #: counter-options.php:927
591
  msgid "custom"
592
  msgstr ""
593
 
594
+ #: counter-options.php:929
595
  msgid "and higher are allowed to see the statistics page."
596
  msgstr ""
597
 
598
+ #: counter-options.php:931
599
  msgid "Set the %s capability %s a user need:"
600
  msgstr ""
601
 
602
+ #: counter-options.php:938 counter-options.php:942
603
  msgid "How many posts do you want to see on dashboard page?"
604
  msgstr ""
605
 
606
+ #: counter-options.php:941
607
  msgid "Latest Counts - Posts"
608
  msgstr ""
609
 
610
+ #: counter-options.php:945
611
  msgid "Latest Counts - Days"
612
  msgstr ""
613
 
614
+ #: counter-options.php:946 counter-options.php:950 counter-options.php:972
615
  msgid "How many days do you want look back?"
616
  msgstr ""
617
 
618
+ #: counter-options.php:949
619
  msgid "Chart - Days"
620
  msgstr ""
621
 
622
+ #: counter-options.php:953
623
  msgid "Chart - Height"
624
  msgstr ""
625
 
626
+ #: counter-options.php:954
627
  msgid "Height of the biggest bar"
628
  msgstr ""
629
 
630
+ #: counter-options.php:958
631
  msgid "Countries"
632
  msgstr ""
633
 
634
+ #: counter-options.php:959
635
  msgid "How many countries do you want to see on dashboard page?"
636
  msgstr ""
637
 
638
+ #: counter-options.php:964
639
  msgid "Substring of the user agent, separated by comma"
640
  msgstr ""
641
 
642
+ #: counter-options.php:967
643
  msgid "Referrers - Entries"
644
  msgstr ""
645
 
646
+ #: counter-options.php:968
647
  msgid "How many referrers do you want to see on dashboard page?"
648
  msgstr ""
649
 
650
+ #: counter-options.php:971
651
  msgid "Referrers - Days"
652
  msgstr ""
653
 
654
+ #: counter-options.php:975
655
  msgid "Local URLs"
656
  msgstr ""
657
 
658
+ #: counter-options.php:976
659
  msgid "Show local referrers too."
660
  msgstr ""
661
 
662
+ #: counter-options.php:983
663
  msgid "Posts"
664
  msgstr ""
665
 
666
+ #: counter-options.php:983
667
  msgid "Pages"
668
  msgstr ""
669
 
670
+ #: counter-options.php:986
671
  msgid "Show in lists"
672
  msgstr ""
673
 
674
+ #: counter-options.php:987
675
  msgid "Show \"Reads per Post\" in a new column in post management views."
676
  msgstr ""
677
 
678
+ #: counter-options.php:994
679
  msgid "Start Values"
680
  msgstr ""
681
 
682
+ #: counter-options.php:998
683
  msgid "Here you can change the date of first count and add a start count."
684
  msgstr ""
685
 
686
+ #: counter-options.php:1002
687
  msgid "Start date"
688
  msgstr ""
689
 
690
+ #: counter-options.php:1003
691
  msgid "Your old Counter starts at?"
692
  msgstr ""
693
 
694
+ #: counter-options.php:1006 counter-options.php:1010
695
  msgid "Start count"
696
  msgstr ""
697
 
698
+ #: counter-options.php:1007
699
  msgid "Add this value to \"Total visitors\"."
700
  msgstr ""
701
 
702
+ #: counter-options.php:1011
703
  msgid "Add this value to \"Total reads\"."
704
  msgstr ""
705
 
706
+ #: counter-options.php:1018
707
  msgid "Stylesheet"
708
  msgstr ""
709
 
710
+ #: counter-options.php:1021
711
  msgid "NO Stylesheet in Frontend"
712
  msgstr ""
713
 
714
+ #: counter-options.php:1022
715
  msgid "Do not load the stylesheet \"counter.css\" in frontend."
716
  msgstr ""
717
 
718
+ #: counter-options.php:1032
719
  msgid "Entries per pass"
720
  msgstr ""
721
 
722
+ #: counter-options.php:1035
723
  msgid "How many entries should be saved per pass? Default: 10000"
724
  msgstr ""
725
 
726
+ #: counter-options.php:1040
727
  msgid ""
728
  "If your PHP memory limit less then 50 MB and you get a white page or error "
729
  "messages try a smaller value."
730
  msgstr ""
731
 
732
+ #: counter-options.php:1048
733
  msgid "Debug mode"
734
  msgstr ""
735
 
736
+ #: counter-options.php:1050
737
  msgid "Show debug informations at the bottom of all pages."
738
  msgstr ""
739
 
740
+ #: counter-options.php:1055
741
  msgid "Update options"
742
  msgstr ""
743
 
744
+ #: counter.php:236 counter.php:1412
745
  msgid "Total reads"
746
  msgstr ""
747
 
748
+ #: counter.php:237 counter.php:1413
749
  msgid "Reads today"
750
  msgstr ""
751
 
752
+ #: counter.php:238 counter.php:1414
753
  msgid "Reads yesterday"
754
  msgstr ""
755
 
756
+ #: counter.php:239 counter.php:1415
757
  msgid "Reads last week"
758
  msgstr ""
759
 
760
+ #: counter.php:242 counter.php:1423
761
  msgid "Visitors currently online"
762
  msgstr ""
763
 
764
+ #: counter.php:243 counter.php:1418
765
  msgid "Visitors today"
766
  msgstr ""
767
 
768
+ #: counter.php:244 counter.php:1419
769
  msgid "Visitors yesterday"
770
  msgstr ""
771
 
772
+ #: counter.php:245 counter.php:1420
773
  msgid "Visitors last week"
774
  msgstr ""
775
 
776
+ #: counter.php:246 counter.php:1048
777
  msgid "Visitors"
778
  msgstr ""
779
 
780
+ #: counter.php:248
781
  msgid "Since"
782
  msgstr ""
783
 
784
+ #: counter.php:249 counter.php:250
785
  msgid "Most visited day"
786
  msgstr ""
787
 
788
+ #: counter.php:347
789
  msgid "Reads per day"
790
  msgstr ""
791
 
792
+ #: counter.php:438 counter.php:1254
793
  msgid "Map"
794
  msgstr ""
795
 
796
+ #: counter.php:776
797
  msgid "The %s most visited posts in last %s days:"
798
  msgstr ""
799
 
800
+ #: counter.php:893
801
  msgid "Show"
802
  msgstr ""
803
 
804
+ #: counter.php:895 notes.php:55 notes.php:89
805
  msgid "Notes"
806
  msgstr ""
807
 
808
+ #: counter.php:963
809
  msgid "Other"
810
  msgstr ""
811
 
812
+ #: counter.php:974 counter.php:1424
813
  msgid "Counter starts on"
814
  msgstr ""
815
 
816
+ #: counter.php:994
817
  msgid "The %s referrers in last %s days:"
818
  msgstr ""
819
 
820
+ #: counter.php:1135
821
  msgid "Edit Post"
822
  msgstr ""
823
 
824
+ #: counter.php:1144
825
  msgid "Category"
826
  msgstr ""
827
 
828
+ #: counter.php:1147
829
  msgid "Tag"
830
  msgstr ""
831
 
832
+ #: counter.php:1150
833
  msgid "Front page"
834
  msgstr ""
835
 
836
+ #: counter.php:1198
837
  msgid "The %s most searched strings:"
838
  msgstr ""
839
 
840
+ #: counter.php:1207
841
  msgid "The search strings of the last %s days:"
842
  msgstr ""
843
 
844
+ #: counter.php:1411
845
  msgid "This post"
846
  msgstr ""
847
 
848
+ #: counter.php:1436
849
  msgid "Title"
850
  msgstr ""
851
 
852
+ #: counter.php:1455
853
  msgid "drag and drop to sort"
854
  msgstr ""
855
 
856
+ #: counter.php:1507 counter.php:1539
857
  msgid "Popular Posts"
858
  msgstr ""
859
 
860
+ #: counter.php:1509
861
  msgid "List of Popular Posts"
862
  msgstr ""
863
 
864
+ #: counter.php:1547
865
  msgid "Title:"
866
  msgstr ""
867
 
868
+ #: counter.php:1551
869
  msgid "Days:"
870
  msgstr ""
871
 
872
+ #: counter.php:1555
873
  msgid "Limit:"
874
  msgstr ""
875
 
876
+ #: counter.php:1559
877
  msgid "Show header:"
878
  msgstr ""
879
 
880
+ #: counter.php:1563
881
  msgid "Show counters:"
882
  msgstr ""
883
 
934
  #: userperspan.php:62
935
  msgid "no data found"
936
  msgstr ""
937
+
938
+ #. Plugin Name of the plugin/theme
939
+ msgid "Count Per Day"
940
+ msgstr ""
941
+
942
+ #. Plugin URI of the plugin/theme
943
+ msgid "http://www.tomsdimension.de/wp-plugins/count-per-day"
944
+ msgstr ""
945
+
946
+ #. Description of the plugin/theme
947
+ msgid ""
948
+ "Counter, shows reads and visitors per page; today, yesterday, last week, "
949
+ "last months ... on dashboard, per shortcode or in widget."
950
+ msgstr ""
951
+
952
+ #. Author of the plugin/theme
953
+ msgid "Tom Braider"
954
+ msgstr ""
955
+
956
+ #. Author URI of the plugin/theme
957
+ msgid "http://www.tomsdimension.de"
958
+ msgstr ""
map/ammap.js ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ if(!AmCharts)var AmCharts={themes:{},maps:{},inheriting:{},charts:[],onReadyArray:[],useUTC:!1,updateRate:40,uid:0,lang:{},translations:{},mapTranslations:{},windows:{},initHandlers:[]};
2
+ AmCharts.Class=function(a){var b=function(){arguments[0]!==AmCharts.inheriting&&(this.events={},this.construct.apply(this,arguments))};a.inherits?(b.prototype=new a.inherits(AmCharts.inheriting),b.base=a.inherits.prototype,delete a.inherits):(b.prototype.createEvents=function(){for(var a=0,b=arguments.length;a<b;a++)this.events[arguments[a]]=[]},b.prototype.listenTo=function(a,b,c){this.removeListener(a,b,c);a.events[b].push({handler:c,scope:this})},b.prototype.addListener=function(a,b,c){this.removeListener(this,
3
+ a,b);this.events[a].push({handler:b,scope:c})},b.prototype.removeListener=function(a,b,c){if(a&&a.events)for(a=a.events[b],b=a.length-1;0<=b;b--)a[b].handler===c&&a.splice(b,1)},b.prototype.fire=function(a,b){for(var c=this.events[a],g=0,h=c.length;g<h;g++){var k=c[g];k.handler.call(k.scope,b)}});for(var c in a)b.prototype[c]=a[c];return b};AmCharts.addChart=function(a){AmCharts.charts.push(a)};AmCharts.removeChart=function(a){for(var b=AmCharts.charts,c=b.length-1;0<=c;c--)b[c]==a&&b.splice(c,1)};
4
+ AmCharts.isModern=!0;AmCharts.getIEVersion=function(){var a=0;if("Microsoft Internet Explorer"==navigator.appName){var b=navigator.userAgent,c=/MSIE ([0-9]{1,}[.0-9]{0,})/;null!=c.exec(b)&&(a=parseFloat(RegExp.$1))}else"Netscape"==navigator.appName&&(b=navigator.userAgent,c=/Trident\/.*rv:([0-9]{1,}[.0-9]{0,})/,null!=c.exec(b)&&(a=parseFloat(RegExp.$1)));return a};
5
+ AmCharts.applyLang=function(a,b){var c=AmCharts.translations;b.dayNames=AmCharts.dayNames;b.shortDayNames=AmCharts.shortDayNames;b.monthNames=AmCharts.monthNames;b.shortMonthNames=AmCharts.shortMonthNames;c&&(c=c[a])&&(AmCharts.lang=c,c.monthNames&&(b.dayNames=c.dayNames,b.shortDayNames=c.shortDayNames,b.monthNames=c.monthNames,b.shortMonthNames=c.shortMonthNames))};AmCharts.IEversion=AmCharts.getIEVersion();9>AmCharts.IEversion&&0<AmCharts.IEversion&&(AmCharts.isModern=!1,AmCharts.isIE=!0);
6
+ AmCharts.dx=0;AmCharts.dy=0;if(document.addEventListener||window.opera)AmCharts.isNN=!0,AmCharts.isIE=!1,AmCharts.dx=.5,AmCharts.dy=.5;document.attachEvent&&(AmCharts.isNN=!1,AmCharts.isIE=!0,AmCharts.isModern||(AmCharts.dx=0,AmCharts.dy=0));window.chrome&&(AmCharts.chrome=!0);AmCharts.handleResize=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&c.div&&c.handleResize()}};AmCharts.handleMouseUp=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleReleaseOutside(a)}};
7
+ AmCharts.handleMouseMove=function(a){for(var b=AmCharts.charts,c=0;c<b.length;c++){var d=b[c];d&&d.handleMouseMove(a)}};AmCharts.resetMouseOver=function(){for(var a=AmCharts.charts,b=0;b<a.length;b++){var c=a[b];c&&(c.mouseIsOver=!1)}};AmCharts.ready=function(a){AmCharts.onReadyArray.push(a)};AmCharts.handleLoad=function(){AmCharts.isReady=!0;for(var a=AmCharts.onReadyArray,b=0;b<a.length;b++){var c=a[b];isNaN(AmCharts.processDelay)?c():setTimeout(c,AmCharts.processDelay*b)}};
8
+ AmCharts.addInitHandler=function(a,b){AmCharts.initHandlers.push({method:a,types:b})};AmCharts.callInitHandler=function(a){var b=AmCharts.initHandlers;if(AmCharts.initHandlers)for(var c=0;c<b.length;c++){var d=b[c];d.types&&-1!=d.types.indexOf(a.type)&&d.method(a)}};AmCharts.getUniqueId=function(){AmCharts.uid++;return"AmChartsEl-"+AmCharts.uid};
9
+ AmCharts.isNN&&(document.addEventListener("mousemove",AmCharts.handleMouseMove,!0),window.addEventListener("resize",AmCharts.handleResize,!0),document.addEventListener("mouseup",AmCharts.handleMouseUp,!0),window.addEventListener("load",AmCharts.handleLoad,!0));AmCharts.isIE&&(document.attachEvent("onmousemove",AmCharts.handleMouseMove),window.attachEvent("onresize",AmCharts.handleResize),document.attachEvent("onmouseup",AmCharts.handleMouseUp),window.attachEvent("onload",AmCharts.handleLoad));
10
+ AmCharts.clear=function(){var a=AmCharts.charts;if(a)for(var b=0;b<a.length;b++)a[b].clear();AmCharts.charts=null;AmCharts.isNN&&(document.removeEventListener("mousemove",AmCharts.handleMouseMove,!0),window.removeEventListener("resize",AmCharts.handleResize,!0),document.removeEventListener("mouseup",AmCharts.handleMouseUp,!0),window.removeEventListener("load",AmCharts.handleLoad,!0));AmCharts.isIE&&(document.detachEvent("onmousemove",AmCharts.handleMouseMove),window.detachEvent("onresize",AmCharts.handleResize),
11
+ document.detachEvent("onmouseup",AmCharts.handleMouseUp),window.detachEvent("onload",AmCharts.handleLoad))};
12
+ AmCharts.makeChart=function(a,b,c){var d=b.type,f=b.theme;AmCharts.isString(f)&&(f=AmCharts.themes[f],b.theme=f);var e;switch(d){case "serial":e=new AmCharts.AmSerialChart(f);break;case "xy":e=new AmCharts.AmXYChart(f);break;case "pie":e=new AmCharts.AmPieChart(f);break;case "radar":e=new AmCharts.AmRadarChart(f);break;case "gauge":e=new AmCharts.AmAngularGauge(f);break;case "funnel":e=new AmCharts.AmFunnelChart(f);break;case "map":e=new AmCharts.AmMap(f);break;case "stock":e=new AmCharts.AmStockChart(f)}AmCharts.extend(e,
13
+ b);AmCharts.isReady?isNaN(c)?e.write(a):setTimeout(function(){AmCharts.realWrite(e,a)},c):AmCharts.ready(function(){isNaN(c)?e.write(a):setTimeout(function(){AmCharts.realWrite(e,a)},c)});return e};AmCharts.realWrite=function(a,b){a.write(b)};AmCharts.toBoolean=function(a,b){if(void 0===a)return b;switch(String(a).toLowerCase()){case "true":case "yes":case "1":return!0;case "false":case "no":case "0":case null:return!1;default:return Boolean(a)}};AmCharts.removeFromArray=function(a,b){var c;for(c=a.length-1;0<=c;c--)a[c]==b&&a.splice(c,1)};AmCharts.getDecimals=function(a){var b=0;isNaN(a)||(a=String(a),-1!=a.indexOf("e-")?b=Number(a.split("-")[1]):-1!=a.indexOf(".")&&(b=a.split(".")[1].length));return b};
14
+ AmCharts.wrappedText=function(a,b,c,d,f,e,g,h,k){var l=AmCharts.text(a,b,c,d,f,e,g),m="\n";AmCharts.isModern||(m="<br>");if(10<k)return l;if(l){var n=l.getBBox();if(n.width>h){l.remove();for(var l=[],r=0;-1<(index=b.indexOf(" ",r));)l.push(index),r=index+1;for(var p=Math.round(b.length/2),v=1E3,x,r=0;r<l.length;r++){var t=Math.abs(l[r]-p);t<v&&(x=l[r],v=t)}if(isNaN(x)){h=Math.ceil(n.width/h);if(0==k)for(r=1;r<h;r++)x=Math.round(b.length/h*r),b=b.substr(0,x)+m+b.substr(x);return AmCharts.text(a,b,
15
+ c,d,f,e,g)}b=b.substr(0,x)+m+b.substr(x+1);return AmCharts.wrappedText(a,b,c,d,f,e,g,h,k+1)}return l}};AmCharts.getStyle=function(a,b){var c="";document.defaultView&&document.defaultView.getComputedStyle?c=document.defaultView.getComputedStyle(a,"").getPropertyValue(b):a.currentStyle&&(b=b.replace(/\-(\w)/g,function(a,b){return b.toUpperCase()}),c=a.currentStyle[b]);return c};AmCharts.removePx=function(a){if(void 0!=a)return Number(a.substring(0,a.length-2))};
16
+ AmCharts.getURL=function(a,b){if(a)if("_self"!=b&&b)if("_top"==b&&window.top)window.top.location.href=a;else if("_parent"==b&&window.parent)window.parent.location.href=a;else if("_blank"==b)window.open(a);else{var c=document.getElementsByName(b)[0];c?c.src=a:(c=AmCharts.windows[b])?c.opener&&!c.opener.closed?c.location.href=a:AmCharts.windows[b]=window.open(a):AmCharts.windows[b]=window.open(a)}else window.location.href=a};AmCharts.ifArray=function(a){return a&&0<a.length?!0:!1};
17
+ AmCharts.callMethod=function(a,b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d){if(d[a])d[a]();var f=d.length;if(0<f){var e;for(e=0;e<f;e++){var g=d[e];if(g&&g[a])g[a]()}}}}};AmCharts.toNumber=function(a){return"number"==typeof a?a:Number(String(a).replace(/[^0-9\-.]+/g,""))};
18
+ AmCharts.toColor=function(a){if(""!==a&&void 0!==a)if(-1!=a.indexOf(",")){a=a.split(",");var b;for(b=0;b<a.length;b++){var c=a[b].substring(a[b].length-6,a[b].length);a[b]="#"+c}}else a=a.substring(a.length-6,a.length),a="#"+a;return a};AmCharts.toCoordinate=function(a,b,c){var d;void 0!==a&&(a=String(a),c&&c<b&&(b=c),d=Number(a),-1!=a.indexOf("!")&&(d=b-Number(a.substr(1))),-1!=a.indexOf("%")&&(d=b*Number(a.substr(0,a.length-1))/100));return d};
19
+ AmCharts.fitToBounds=function(a,b,c){a<b&&(a=b);a>c&&(a=c);return a};AmCharts.isDefined=function(a){return void 0===a?!1:!0};AmCharts.stripNumbers=function(a){return a.replace(/[0-9]+/g,"")};AmCharts.roundTo=function(a,b){if(0>b)return a;var c=Math.pow(10,b);return Math.round(a*c)/c};AmCharts.toFixed=function(a,b){var c=String(Math.round(a*Math.pow(10,b)));if(0<b){var d=c.length;if(d<b){var f;for(f=0;f<b-d;f++)c="0"+c}d=c.substring(0,c.length-b);""===d&&(d=0);return d+"."+c.substring(c.length-b,c.length)}return String(c)};
20
+ AmCharts.formatDuration=function(a,b,c,d,f,e){var g=AmCharts.intervals,h=e.decimalSeparator;if(a>=g[b].contains){var k=a-Math.floor(a/g[b].contains)*g[b].contains;"ss"==b&&(k=AmCharts.formatNumber(k,e),1==k.split(h)[0].length&&(k="0"+k));("mm"==b||"hh"==b)&&10>k&&(k="0"+k);c=k+""+d[b]+""+c;a=Math.floor(a/g[b].contains);b=g[b].nextInterval;return AmCharts.formatDuration(a,b,c,d,f,e)}"ss"==b&&(a=AmCharts.formatNumber(a,e),1==a.split(h)[0].length&&(a="0"+a));("mm"==b||"hh"==b)&&10>a&&(a="0"+a);c=a+""+
21
+ d[b]+""+c;if(g[f].count>g[b].count)for(a=g[b].count;a<g[f].count;a++)b=g[b].nextInterval,"ss"==b||"mm"==b||"hh"==b?c="00"+d[b]+""+c:"DD"==b&&(c="0"+d[b]+""+c);":"==c.charAt(c.length-1)&&(c=c.substring(0,c.length-1));return c};
22
+ AmCharts.formatNumber=function(a,b,c,d,f){a=AmCharts.roundTo(a,b.precision);isNaN(c)&&(c=b.precision);var e=b.decimalSeparator;b=b.thousandsSeparator;var g;g=0>a?"-":"";a=Math.abs(a);var h=String(a),k=!1;-1!=h.indexOf("e")&&(k=!0);0<=c&&!k&&(h=AmCharts.toFixed(a,c));var l="";if(k)l=h;else{var h=h.split("."),k=String(h[0]),m;for(m=k.length;0<=m;m-=3)l=m!=k.length?0!==m?k.substring(m-3,m)+b+l:k.substring(m-3,m)+l:k.substring(m-3,m);void 0!==h[1]&&(l=l+e+h[1]);void 0!==c&&0<c&&"0"!=l&&(l=AmCharts.addZeroes(l,
23
+ e,c))}l=g+l;""===g&&!0===d&&0!==a&&(l="+"+l);!0===f&&(l+="%");return l};AmCharts.addZeroes=function(a,b,c){a=a.split(b);void 0===a[1]&&0<c&&(a[1]="0");return a[1].length<c?(a[1]+="0",AmCharts.addZeroes(a[0]+b+a[1],b,c)):void 0!==a[1]?a[0]+b+a[1]:a[0]};
24
+ AmCharts.scientificToNormal=function(a){var b;a=String(a).split("e");var c;if("-"==a[1].substr(0,1)){b="0.";for(c=0;c<Math.abs(Number(a[1]))-1;c++)b+="0";b+=a[0].split(".").join("")}else{var d=0;b=a[0].split(".");b[1]&&(d=b[1].length);b=a[0].split(".").join("");for(c=0;c<Math.abs(Number(a[1]))-d;c++)b+="0"}return b};
25
+ AmCharts.toScientific=function(a,b){if(0===a)return"0";var c=Math.floor(Math.log(Math.abs(a))*Math.LOG10E);Math.pow(10,c);mantissa=String(mantissa).split(".").join(b);return String(mantissa)+"e"+c};AmCharts.randomColor=function(){return"#"+("00000"+(16777216*Math.random()<<0).toString(16)).substr(-6)};
26
+ AmCharts.hitTest=function(a,b,c){var d=!1,f=a.x,e=a.x+a.width,g=a.y,h=a.y+a.height,k=AmCharts.isInRectangle;d||(d=k(f,g,b));d||(d=k(f,h,b));d||(d=k(e,g,b));d||(d=k(e,h,b));d||!0===c||(d=AmCharts.hitTest(b,a,!0));return d};AmCharts.isInRectangle=function(a,b,c){return a>=c.x-5&&a<=c.x+c.width+5&&b>=c.y-5&&b<=c.y+c.height+5?!0:!1};AmCharts.isPercents=function(a){if(-1!=String(a).indexOf("%"))return!0};
27
+ AmCharts.findPosX=function(a){var b=a,c=a.offsetLeft;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetLeft;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollLeft||0}return c};AmCharts.findPosY=function(a){var b=a,c=a.offsetTop;if(a.offsetParent){for(;a=a.offsetParent;)c+=a.offsetTop;for(;(b=b.parentNode)&&b!=document.body;)c-=b.scrollTop||0}return c};AmCharts.findIfFixed=function(a){if(a.offsetParent)for(;a=a.offsetParent;)if("fixed"==AmCharts.getStyle(a,"position"))return!0;return!1};
28
+ AmCharts.findIfAuto=function(a){return a.style&&"auto"==AmCharts.getStyle(a,"overflow")?!0:a.parentNode?AmCharts.findIfAuto(a.parentNode):!1};AmCharts.findScrollLeft=function(a,b){a.scrollLeft&&(b+=a.scrollLeft);return a.parentNode?AmCharts.findScrollLeft(a.parentNode,b):b};AmCharts.findScrollTop=function(a,b){a.scrollTop&&(b+=a.scrollTop);return a.parentNode?AmCharts.findScrollTop(a.parentNode,b):b};
29
+ AmCharts.formatValue=function(a,b,c,d,f,e,g,h){if(b){void 0===f&&(f="");var k;for(k=0;k<c.length;k++){var l=c[k],m=b[l];void 0!==m&&(m=e?AmCharts.addPrefix(m,h,g,d):AmCharts.formatNumber(m,d),a=a.replace(new RegExp("\\[\\["+f+""+l+"\\]\\]","g"),m))}}return a};AmCharts.formatDataContextValue=function(a,b){if(a){var c=a.match(/\[\[.*?\]\]/g),d;for(d=0;d<c.length;d++){var f=c[d],f=f.substr(2,f.length-4);void 0!==b[f]&&(a=a.replace(new RegExp("\\[\\["+f+"\\]\\]","g"),b[f]))}}return a};
30
+ AmCharts.massReplace=function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];void 0===d&&(d="");a=a.replace(c,d)}return a};AmCharts.cleanFromEmpty=function(a){return a.replace(/\[\[[^\]]*\]\]/g,"")};
31
+ AmCharts.addPrefix=function(a,b,c,d,f){var e=AmCharts.formatNumber(a,d),g="",h,k,l;if(0===a)return"0";0>a&&(g="-");a=Math.abs(a);if(1<a)for(h=b.length-1;-1<h;h--){if(a>=b[h].number&&(k=a/b[h].number,l=Number(d.precision),1>l&&(l=1),c=AmCharts.roundTo(k,l),l=AmCharts.formatNumber(c,{precision:-1,decimalSeparator:d.decimalSeparator,thousandsSeparator:d.thousandsSeparator}),!f||k==c)){e=g+""+l+""+b[h].prefix;break}}else for(h=0;h<c.length;h++)if(a<=c[h].number){k=a/c[h].number;l=Math.abs(Math.round(Math.log(k)*
32
+ Math.LOG10E));k=AmCharts.roundTo(k,l);e=g+""+k+""+c[h].prefix;break}return e};AmCharts.remove=function(a){a&&a.remove()};AmCharts.recommended=function(){var a="js";document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")||swfobject&&swfobject.hasFlashPlayerVersion("8")&&(a="flash");return a};AmCharts.getEffect=function(a){">"==a&&(a="easeOutSine");"<"==a&&(a="easeInSine");"elastic"==a&&(a="easeOutElastic");return a};
33
+ AmCharts.getObjById=function(a,b){var c,d;for(d=0;d<a.length;d++){var f=a[d];f.id==b&&(c=f)}return c};AmCharts.applyTheme=function(a,b,c){b||(b=AmCharts.theme);b&&b[c]&&AmCharts.extend(a,b[c])};AmCharts.isString=function(a){return"string"==typeof a?!0:!1};AmCharts.extend=function(a,b,c){for(var d in b)c?a.hasOwnProperty(d)||(a[d]=b[d]):a[d]=b[d];return a};
34
+ AmCharts.copyProperties=function(a,b){for(var c in a)a.hasOwnProperty(c)&&"events"!=c&&void 0!==a[c]&&"function"!=typeof a[c]&&"cname"!=c&&(b[c]=a[c])};AmCharts.processObject=function(a,b,c){!1===a instanceof b&&(a=AmCharts.extend(new b(c),a));return a};AmCharts.fixNewLines=function(a){var b=RegExp("\\n","g");a&&(a=a.replace(b,"<br />"));return a};AmCharts.fixBrakes=function(a){if(AmCharts.isModern){var b=RegExp("<br>","g");a&&(a=a.replace(b,"\n"))}else a=AmCharts.fixNewLines(a);return a};
35
+ AmCharts.deleteObject=function(a,b){if(a){if(void 0===b||null===b)b=20;if(0!==b)if("[object Array]"===Object.prototype.toString.call(a))for(var c=0;c<a.length;c++)AmCharts.deleteObject(a[c],b-1),a[c]=null;else if(a&&!a.tagName)try{for(c in a)a[c]&&("object"==typeof a[c]&&AmCharts.deleteObject(a[c],b-1),"function"!=typeof a[c]&&(a[c]=null))}catch(d){}}};
36
+ AmCharts.bounce=function(a,b,c,d,f){return(b/=f)<1/2.75?7.5625*d*b*b+c:b<2/2.75?d*(7.5625*(b-=1.5/2.75)*b+.75)+c:b<2.5/2.75?d*(7.5625*(b-=2.25/2.75)*b+.9375)+c:d*(7.5625*(b-=2.625/2.75)*b+.984375)+c};AmCharts.easeInSine=function(a,b,c,d,f){return-d*Math.cos(b/f*(Math.PI/2))+d+c};AmCharts.easeOutSine=function(a,b,c,d,f){return d*Math.sin(b/f*(Math.PI/2))+c};
37
+ AmCharts.easeOutElastic=function(a,b,c,d,f){a=1.70158;var e=0,g=d;if(0===b)return c;if(1==(b/=f))return c+d;e||(e=.3*f);g<Math.abs(d)?(g=d,a=e/4):a=e/(2*Math.PI)*Math.asin(d/g);return g*Math.pow(2,-10*b)*Math.sin(2*(b*f-a)*Math.PI/e)+d+c};AmCharts.AmDraw=AmCharts.Class({construct:function(a,b,c,d){AmCharts.SVG_NS="http://www.w3.org/2000/svg";AmCharts.SVG_XLINK="http://www.w3.org/1999/xlink";AmCharts.hasSVG=!!document.createElementNS&&!!document.createElementNS(AmCharts.SVG_NS,"svg").createSVGRect;1>b&&(b=10);1>c&&(c=10);this.div=a;this.width=b;this.height=c;this.rBin=document.createElement("div");if(AmCharts.hasSVG){AmCharts.SVG=!0;var f=this.createSvgElement("svg");f.style.position="absolute";f.style.width=b+"px";f.style.height=c+
38
+ "px";b=this.createSvgElement("desc");b.appendChild(document.createTextNode("JavaScript chart by amCharts "+d.version));f.appendChild(b);AmCharts.rtl&&(f.setAttribute("direction","rtl"),f.style.left="auto",f.style.right="0px");f.setAttribute("version","1.1");a.appendChild(f);this.container=f;this.R=new AmCharts.SVGRenderer(this)}else AmCharts.isIE&&AmCharts.VMLRenderer&&(AmCharts.VML=!0,AmCharts.vmlStyleSheet||(document.namespaces.add("amvml","urn:schemas-microsoft-com:vml"),31>document.styleSheets.length?
39
+ (f=document.createStyleSheet(),f.addRule(".amvml","behavior:url(#default#VML); display:inline-block; antialias:true"),AmCharts.vmlStyleSheet=f):document.styleSheets[0].addRule(".amvml","behavior:url(#default#VML); display:inline-block; antialias:true")),this.container=a,this.R=new AmCharts.VMLRenderer(this,d),this.R.disableSelection(a))},createSvgElement:function(a){return document.createElementNS(AmCharts.SVG_NS,a)},circle:function(a,b,c,d){var f=new AmCharts.AmDObject("circle",this);f.attr({r:c,
40
+ cx:a,cy:b});this.addToContainer(f.node,d);return f},ellipse:function(a,b,c,d,f){var e=new AmCharts.AmDObject("ellipse",this);e.attr({rx:c,ry:d,cx:a,cy:b});this.addToContainer(e.node,f);return e},setSize:function(a,b){0<a&&0<b&&(this.container.style.width=a+"px",this.container.style.height=b+"px")},rect:function(a,b,c,d,f,e,g){var h=new AmCharts.AmDObject("rect",this);AmCharts.VML&&(f=Math.round(100*f/Math.min(c,d)),c+=2*e,d+=2*e,h.bw=e,h.node.style.marginLeft=-e,h.node.style.marginTop=-e);1>c&&(c=
41
+ 1);1>d&&(d=1);h.attr({x:a,y:b,width:c,height:d,rx:f,ry:f,"stroke-width":e});this.addToContainer(h.node,g);return h},image:function(a,b,c,d,f,e){var g=new AmCharts.AmDObject("image",this);g.attr({x:b,y:c,width:d,height:f});this.R.path(g,a);this.addToContainer(g.node,e);return g},addToContainer:function(a,b){b||(b=this.container);b.appendChild(a)},text:function(a,b,c){return this.R.text(a,b,c)},path:function(a,b,c,d){var f=new AmCharts.AmDObject("path",this);d||(d="100,100");f.attr({cs:d});c?f.attr({dd:a}):
42
+ f.attr({d:a});this.addToContainer(f.node,b);return f},set:function(a){return this.R.set(a)},remove:function(a){if(a){var b=this.rBin;b.appendChild(a);b.innerHTML=""}},renderFix:function(){var a=this.container,b=a.style,c;try{c=a.getScreenCTM()||a.createSVGMatrix()}catch(d){c=a.createSVGMatrix()}a=1-c.e%1;c=1-c.f%1;.5<a&&(a-=1);.5<c&&(c-=1);a&&(b.left=a+"px");c&&(b.top=c+"px")},update:function(){this.R.update()}});AmCharts.AmDObject=AmCharts.Class({construct:function(a,b){this.D=b;this.R=b.R;this.node=this.R.create(this,a);this.y=this.x=0;this.scale=1},attr:function(a){this.R.attr(this,a);return this},getAttr:function(a){return this.node.getAttribute(a)},setAttr:function(a,b){this.R.setAttr(this,a,b);return this},clipRect:function(a,b,c,d){this.R.clipRect(this,a,b,c,d)},translate:function(a,b,c,d){d||(a=Math.round(a),b=Math.round(b));this.R.move(this,a,b,c);this.x=a;this.y=b;this.scale=c;this.angle&&this.rotate(this.angle)},
43
+ rotate:function(a,b){this.R.rotate(this,a,b);this.angle=a},animate:function(a,b,c){for(var d in a)if(a.hasOwnProperty(d)){var f=d,e=a[d];c=AmCharts.getEffect(c);this.R.animate(this,f,e,b,c)}},push:function(a){if(a){var b=this.node;b.appendChild(a.node);var c=a.clipPath;c&&b.appendChild(c);(a=a.grad)&&b.appendChild(a)}},text:function(a){this.R.setText(this,a)},remove:function(){this.R.remove(this)},clear:function(){var a=this.node;if(a.hasChildNodes())for(;1<=a.childNodes.length;)a.removeChild(a.firstChild)},
44
+ hide:function(){this.setAttr("visibility","hidden")},show:function(){this.setAttr("visibility","visible")},getBBox:function(){return this.R.getBBox(this)},toFront:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;b&&b.appendChild(a)}},toPrevious:function(){var a=this.node;a&&this.prevNextNode&&(a=a.parentNode)&&a.insertBefore(this.prevNextNode,null)},toBack:function(){var a=this.node;if(a){this.prevNextNode=a.nextSibling;var b=a.parentNode;if(b){var c=b.firstChild;
45
+ c&&b.insertBefore(a,c)}}},mouseover:function(a){this.R.addListener(this,"mouseover",a);return this},mouseout:function(a){this.R.addListener(this,"mouseout",a);return this},click:function(a){this.R.addListener(this,"click",a);return this},dblclick:function(a){this.R.addListener(this,"dblclick",a);return this},mousedown:function(a){this.R.addListener(this,"mousedown",a);return this},mouseup:function(a){this.R.addListener(this,"mouseup",a);return this},touchstart:function(a){this.R.addListener(this,
46
+ "touchstart",a);return this},touchend:function(a){this.R.addListener(this,"touchend",a);return this},contextmenu:function(a){this.node.addEventListener?this.node.addEventListener("contextmenu",a,!0):this.R.addListener(this,"contextmenu",a);return this},stop:function(a){(a=this.animationX)&&AmCharts.removeFromArray(this.R.animations,a);(a=this.animationY)&&AmCharts.removeFromArray(this.R.animations,a)},length:function(){return this.node.childNodes.length},gradient:function(a,b,c){this.R.gradient(this,
47
+ a,b,c)},pattern:function(a,b){a&&this.R.pattern(this,a,b)}});AmCharts.SVGRenderer=AmCharts.Class({construct:function(a){this.D=a;this.animations=[]},create:function(a,b){return document.createElementNS(AmCharts.SVG_NS,b)},attr:function(a,b){for(var c in b)b.hasOwnProperty(c)&&this.setAttr(a,c,b[c])},setAttr:function(a,b,c){void 0!==c&&a.node.setAttribute(b,c)},animate:function(a,b,c,d,f){var e=a.node;a["an_"+b]&&AmCharts.removeFromArray(this.animations,a["an_"+b]);"translate"==b?(e=(e=e.getAttribute("transform"))?String(e).substring(10,e.length-1):"0,0",e=
48
+ e.split(", ").join(" "),e=e.split(" ").join(","),0===e&&(e="0,0")):e=Number(e.getAttribute(b));c={obj:a,frame:0,attribute:b,from:e,to:c,time:d,effect:f};this.animations.push(c);a["an_"+b]=c},update:function(){var a,b=this.animations;for(a=b.length-1;0<=a;a--){var c=b[a],d=1E3*c.time/AmCharts.updateRate,f=c.frame+1,e=c.obj,g=c.attribute,h,k,l;f<=d?(c.frame++,"translate"==g?(h=c.from.split(","),g=Number(h[0]),h=Number(h[1]),isNaN(h)&&(h=0),k=c.to.split(","),l=Number(k[0]),k=Number(k[1]),l=0===l-g?l:
49
+ Math.round(AmCharts[c.effect](0,f,g,l-g,d)),c=0===k-h?k:Math.round(AmCharts[c.effect](0,f,h,k-h,d)),g="transform",c="translate("+l+","+c+")"):(k=Number(c.from),h=Number(c.to),l=h-k,c=AmCharts[c.effect](0,f,k,l,d),isNaN(c)&&(c=h),0===l&&this.animations.splice(a,1)),this.setAttr(e,g,c)):("translate"==g?(k=c.to.split(","),l=Number(k[0]),k=Number(k[1]),e.translate(l,k)):(h=Number(c.to),this.setAttr(e,g,h)),this.animations.splice(a,1))}},getBBox:function(a){if(a=a.node)try{return a.getBBox()}catch(b){}return{width:0,
50
+ height:0,x:0,y:0}},path:function(a,b){a.node.setAttributeNS(AmCharts.SVG_XLINK,"xlink:href",b)},clipRect:function(a,b,c,d,f){var e=a.node,g=a.clipPath;g&&this.D.remove(g);var h=e.parentNode;h&&(e=document.createElementNS(AmCharts.SVG_NS,"clipPath"),g=AmCharts.getUniqueId(),e.setAttribute("id",g),this.D.rect(b,c,d,f,0,0,e),h.appendChild(e),b="#",AmCharts.baseHref&&!AmCharts.isIE&&(b=window.location.href+b),this.setAttr(a,"clip-path","url("+b+g+")"),this.clipPathC++,a.clipPath=e)},text:function(a,b,
51
+ c){var d=new AmCharts.AmDObject("text",this.D);a=String(a).split("\n");var f=b["font-size"],e;for(e=0;e<a.length;e++){var g=this.create(null,"tspan");g.appendChild(document.createTextNode(a[e]));g.setAttribute("y",(f+2)*e+Math.round(f/2));g.setAttribute("x",0);d.node.appendChild(g)}d.node.setAttribute("y",Math.round(f/2));this.attr(d,b);this.D.addToContainer(d.node,c);return d},setText:function(a,b){var c=a.node;c&&(c.removeChild(c.firstChild),c.appendChild(document.createTextNode(b)))},move:function(a,
52
+ b,c,d){b="translate("+b+","+c+")";d&&(b=b+" scale("+d+")");this.setAttr(a,"transform",b)},rotate:function(a,b){var c=a.node.getAttribute("transform"),d="rotate("+b+")";c&&(d=c+" "+d);this.setAttr(a,"transform",d)},set:function(a){var b=new AmCharts.AmDObject("g",this.D);this.D.container.appendChild(b.node);if(a){var c;for(c=0;c<a.length;c++)b.push(a[c])}return b},addListener:function(a,b,c){a.node["on"+b]=c},gradient:function(a,b,c,d){var f=a.node,e=a.grad;e&&this.D.remove(e);b=document.createElementNS(AmCharts.SVG_NS,
53
+ b);e=AmCharts.getUniqueId();b.setAttribute("id",e);if(!isNaN(d)){var g=0,h=0,k=0,l=0;90==d?k=100:270==d?l=100:180==d?g=100:0===d&&(h=100);b.setAttribute("x1",g+"%");b.setAttribute("x2",h+"%");b.setAttribute("y1",k+"%");b.setAttribute("y2",l+"%")}for(d=0;d<c.length;d++)g=document.createElementNS(AmCharts.SVG_NS,"stop"),h=100*d/(c.length-1),0===d&&(h=0),g.setAttribute("offset",h+"%"),g.setAttribute("stop-color",c[d]),b.appendChild(g);f.parentNode.appendChild(b);c="#";AmCharts.baseHref&&!AmCharts.isIE&&
54
+ (c=window.location.href+c);f.setAttribute("fill","url("+c+e+")");a.grad=b},pattern:function(a,b,c){var d=a.node;isNaN(c)&&(c=1);var f=a.patternNode;f&&this.D.remove(f);var f=document.createElementNS(AmCharts.SVG_NS,"pattern"),e=AmCharts.getUniqueId(),g=b;b.url&&(g=b.url);var h=Number(b.width);isNaN(h)&&(h=4);var k=Number(b.height);isNaN(k)&&(k=4);h/=c;k/=c;c=b.x;isNaN(c)&&(c=0);var l=-Math.random()*Number(b.randomX);isNaN(l)||(c=l);l=b.y;isNaN(l)&&(l=0);var m=-Math.random()*Number(b.randomY);isNaN(m)||
55
+ (l=m);f.setAttribute("id",e);f.setAttribute("width",h);f.setAttribute("height",k);f.setAttribute("patternUnits","userSpaceOnUse");f.setAttribute("xlink:href",g);b.color&&(m=document.createElementNS(AmCharts.SVG_NS,"rect"),m.setAttributeNS(null,"height",h),m.setAttributeNS(null,"width",k),m.setAttributeNS(null,"fill",b.color),f.appendChild(m));this.D.image(g,0,0,h,k,f).translate(c,l);g="#";AmCharts.baseHref&&!AmCharts.isIE&&(g=window.location.href+g);d.setAttribute("fill","url("+g+e+")");a.patternNode=
56
+ f;d.parentNode.appendChild(f)},remove:function(a){a.clipPath&&this.D.remove(a.clipPath);a.grad&&this.D.remove(a.grad);a.patternNode&&this.D.remove(a.patternNode);this.D.remove(a.node)}});AmCharts.AmChart=AmCharts.Class({construct:function(a){this.theme=a;this.version="3.11.1";AmCharts.addChart(this);this.createEvents("dataUpdated","init","rendered","drawn","failed");this.height=this.width="100%";this.dataChanged=!0;this.chartCreated=!1;this.previousWidth=this.previousHeight=0;this.backgroundColor="#FFFFFF";this.borderAlpha=this.backgroundAlpha=0;this.color=this.borderColor="#000000";this.fontFamily="Verdana";this.fontSize=11;this.usePrefixes=!1;this.precision=-1;this.percentPrecision=
57
+ 2;this.decimalSeparator=".";this.thousandsSeparator=",";this.labels=[];this.allLabels=[];this.titles=[];this.marginRight=this.marginLeft=this.autoMarginOffset=0;this.timeOuts=[];this.creditsPosition="top-left";var b=document.createElement("div"),c=b.style;c.overflow="hidden";c.position="relative";c.textAlign="left";this.chartDiv=b;b=document.createElement("div");c=b.style;c.overflow="hidden";c.position="relative";c.textAlign="left";this.legendDiv=b;this.titleHeight=0;this.hideBalloonTime=150;this.handDrawScatter=
58
+ 2;this.handDrawThickness=1;this.prefixesOfBigNumbers=[{number:1E3,prefix:"k"},{number:1E6,prefix:"M"},{number:1E9,prefix:"G"},{number:1E12,prefix:"T"},{number:1E15,prefix:"P"},{number:1E18,prefix:"E"},{number:1E21,prefix:"Z"},{number:1E24,prefix:"Y"}];this.prefixesOfSmallNumbers=[{number:1E-24,prefix:"y"},{number:1E-21,prefix:"z"},{number:1E-18,prefix:"a"},{number:1E-15,prefix:"f"},{number:1E-12,prefix:"p"},{number:1E-9,prefix:"n"},{number:1E-6,prefix:"\u03bc"},{number:.001,prefix:"m"}];this.panEventsEnabled=
59
+ !0;AmCharts.bezierX=3;AmCharts.bezierY=6;this.product="amcharts";this.animations=[];this.balloon=new AmCharts.AmBalloon(this.theme);this.balloon.chart=this;AmCharts.applyTheme(this,a,"AmChart")},drawChart:function(){this.drawBackground();this.redrawLabels();this.drawTitles();this.brr()},drawBackground:function(){AmCharts.remove(this.background);var a=this.container,b=this.backgroundColor,c=this.backgroundAlpha,d=this.set;AmCharts.isModern||0!==c||(c=.001);var f=this.updateWidth();this.realWidth=f;
60
+ var e=this.updateHeight();this.realHeight=e;this.background=b=AmCharts.polygon(a,[0,f-1,f-1,0],[0,0,e-1,e-1],b,c,1,this.borderColor,this.borderAlpha);d.push(b);if(b=this.backgroundImage)this.path&&(b=this.path+b),this.bgImg=a=a.image(b,0,0,f,e),d.push(a)},drawTitles:function(){var a=this.titles;if(AmCharts.ifArray(a)){var b=20,c;for(c=0;c<a.length;c++){var d=a[c],f=d.color;void 0===f&&(f=this.color);var e=d.size;isNaN(e)&&(e=this.fontSize+2);isNaN(d.alpha);var g=this.marginLeft,f=AmCharts.text(this.container,
61
+ d.text,f,this.fontFamily,e);f.translate(g+(this.realWidth-this.marginRight-g)/2,b);f.node.style.pointerEvents="none";g=!0;void 0!==d.bold&&(g=d.bold);g&&f.attr({"font-weight":"bold"});f.attr({opacity:d.alpha});b+=e+6;this.freeLabelsSet.push(f)}}},write:function(a){if(a="object"!=typeof a?document.getElementById(a):a){a.innerHTML="";this.div=a;a.style.overflow="hidden";a.style.textAlign="left";var b=this.chartDiv,c=this.legendDiv,d=this.legend,f=c.style,e=b.style;this.measure();var g,h=document.createElement("div");
62
+ g=h.style;g.position="relative";this.containerDiv=h;a.appendChild(h);var k=this.exportConfig;k&&AmCharts.AmExport&&!this.AmExport&&(this.AmExport=new AmCharts.AmExport(this,k));this.amExport&&AmCharts.AmExport&&(this.AmExport=AmCharts.extend(this.amExport,new AmCharts.AmExport(this),!0));this.AmExport&&this.AmExport.init&&this.AmExport.init();if(d)switch(d=this.addLegend(d,d.divId),d.position){case "bottom":h.appendChild(b);h.appendChild(c);break;case "top":h.appendChild(c);h.appendChild(b);break;
63
+ case "absolute":g.width=a.style.width;g.height=a.style.height;f.position="absolute";e.position="absolute";void 0!==d.left&&(f.left=d.left+"px");void 0!==d.right&&(f.right=d.right+"px");void 0!==d.top&&(f.top=d.top+"px");void 0!==d.bottom&&(f.bottom=d.bottom+"px");d.marginLeft=0;d.marginRight=0;h.appendChild(b);h.appendChild(c);break;case "right":g.width=a.style.width;g.height=a.style.height;f.position="relative";e.position="absolute";h.appendChild(b);h.appendChild(c);break;case "left":g.width=a.style.width;
64
+ g.height=a.style.height;f.position="absolute";e.position="relative";h.appendChild(b);h.appendChild(c);break;case "outside":h.appendChild(b)}else h.appendChild(b);this.listenersAdded||(this.addListeners(),this.listenersAdded=!0);this.initChart()}},createLabelsSet:function(){AmCharts.remove(this.labelsSet);this.labelsSet=this.container.set();this.freeLabelsSet.push(this.labelsSet)},initChart:function(){AmCharts.callInitHandler(this);AmCharts.applyLang(this.language,this);var a=this.numberFormatter;
65
+ a&&(isNaN(a.precision)||(this.precision=a.precision),void 0!==a.thousandsSeparator&&(this.thousandsSeparator=a.thousandsSeparator),void 0!==a.decimalSeparator&&(this.decimalSeparator=a.decimalSeparator));(a=this.percentFormatter)&&!isNaN(a.precision)&&(this.percentPrecision=a.precision);this.nf={precision:this.precision,thousandsSeparator:this.thousandsSeparator,decimalSeparator:this.decimalSeparator};this.pf={precision:this.percentPrecision,thousandsSeparator:this.thousandsSeparator,decimalSeparator:this.decimalSeparator};
66
+ this.divIsFixed=AmCharts.findIfFixed(this.chartDiv);this.previousHeight=this.divRealHeight;this.previousWidth=this.divRealWidth;this.destroy();this.startInterval();a=0;document.attachEvent&&!window.opera&&(a=1);this.dmouseX=this.dmouseY=0;var b=document.getElementsByTagName("html")[0];b&&window.getComputedStyle&&(b=window.getComputedStyle(b,null))&&(this.dmouseY=AmCharts.removePx(b.getPropertyValue("margin-top")),this.dmouseX=AmCharts.removePx(b.getPropertyValue("margin-left")));this.mouseMode=a;
67
+ (a=this.container)?(a.container.innerHTML="",this.chartDiv.appendChild(a.container),a.setSize(this.realWidth,this.realHeight)):a=new AmCharts.AmDraw(this.chartDiv,this.realWidth,this.realHeight,this);AmCharts.VML||AmCharts.SVG?(a.handDrawn=this.handDrawn,a.handDrawScatter=this.handDrawScatter,a.handDrawThickness=this.handDrawThickness,this.container=a,this.set&&this.set.remove(),this.set=a.set(),this.gridSet&&this.gridSet.remove(),this.gridSet=a.set(),this.cursorLineSet&&this.cursorLineSet.remove(),
68
+ this.cursorLineSet=a.set(),this.graphsBehindSet&&this.graphsBehindSet.remove(),this.graphsBehindSet=a.set(),this.bulletBehindSet&&this.bulletBehindSet.remove(),this.bulletBehindSet=a.set(),this.columnSet&&this.columnSet.remove(),this.columnSet=a.set(),this.graphsSet&&this.graphsSet.remove(),this.graphsSet=a.set(),this.trendLinesSet&&this.trendLinesSet.remove(),this.trendLinesSet=a.set(),this.axesLabelsSet&&this.axesLabelsSet.remove(),this.axesLabelsSet=a.set(),this.axesSet&&this.axesSet.remove(),
69
+ this.axesSet=a.set(),this.cursorSet&&this.cursorSet.remove(),this.cursorSet=a.set(),this.scrollbarsSet&&this.scrollbarsSet.remove(),this.scrollbarsSet=a.set(),this.bulletSet&&this.bulletSet.remove(),this.bulletSet=a.set(),this.freeLabelsSet&&this.freeLabelsSet.remove(),this.freeLabelsSet=a.set(),this.balloonsSet&&this.balloonsSet.remove(),this.balloonsSet=a.set(),this.zoomButtonSet&&this.zoomButtonSet.remove(),this.zoomButtonSet=a.set(),this.linkSet&&this.linkSet.remove(),this.linkSet=a.set(),this.renderFix()):
70
+ this.fire("failed",{type:"failed",chart:this})},measure:function(){var a=this.div;if(a){var b=this.chartDiv,c=a.offsetWidth,d=a.offsetHeight,f=this.container;a.clientHeight&&(c=a.clientWidth,d=a.clientHeight);var e=AmCharts.removePx(AmCharts.getStyle(a,"padding-left")),g=AmCharts.removePx(AmCharts.getStyle(a,"padding-right")),h=AmCharts.removePx(AmCharts.getStyle(a,"padding-top")),k=AmCharts.removePx(AmCharts.getStyle(a,"padding-bottom"));isNaN(e)||(c-=e);isNaN(g)||(c-=g);isNaN(h)||(d-=h);isNaN(k)||
71
+ (d-=k);e=a.style;a=e.width;e=e.height;-1!=a.indexOf("px")&&(c=AmCharts.removePx(a));-1!=e.indexOf("px")&&(d=AmCharts.removePx(e));a=AmCharts.toCoordinate(this.width,c);e=AmCharts.toCoordinate(this.height,d);this.balloon=AmCharts.processObject(this.balloon,AmCharts.AmBalloon,this.theme);this.balloon.chart=this;(a!=this.previousWidth||e!=this.previousHeight)&&0<a&&0<e&&(b.style.width=a+"px",b.style.height=e+"px",f&&f.setSize(a,e));this.balloon.setBounds(2,2,a-2,e);this.realWidth=a;this.realHeight=e;
72
+ this.divRealWidth=c;this.divRealHeight=d}},destroy:function(){this.chartDiv.innerHTML="";this.clearTimeOuts();this.interval&&clearInterval(this.interval);this.interval=NaN},clearTimeOuts:function(){var a=this.timeOuts;if(a){var b;for(b=0;b<a.length;b++)clearTimeout(a[b])}this.timeOuts=[]},clear:function(a){AmCharts.callMethod("clear",[this.chartScrollbar,this.scrollbarV,this.scrollbarH,this.chartCursor]);this.chartCursor=this.scrollbarH=this.scrollbarV=this.chartScrollbar=null;this.clearTimeOuts();
73
+ this.interval&&clearInterval(this.interval);this.container&&(this.container.remove(this.chartDiv),this.container.remove(this.legendDiv));a||AmCharts.removeChart(this)},setMouseCursor:function(a){"auto"==a&&AmCharts.isNN&&(a="default");this.chartDiv.style.cursor=a;this.legendDiv.style.cursor=a},redrawLabels:function(){this.labels=[];var a=this.allLabels;this.createLabelsSet();var b;for(b=0;b<a.length;b++)this.drawLabel(a[b])},drawLabel:function(a){if(this.container){var b=a.y,c=a.text,d=a.align,f=
74
+ a.size,e=a.color,g=a.rotation,h=a.alpha,k=a.bold,l=AmCharts.toCoordinate(a.x,this.realWidth),b=AmCharts.toCoordinate(b,this.realHeight);l||(l=0);b||(b=0);void 0===e&&(e=this.color);isNaN(f)&&(f=this.fontSize);d||(d="start");"left"==d&&(d="start");"right"==d&&(d="end");"center"==d&&(d="middle",g?b=this.realHeight-b+b/2:l=this.realWidth/2-l);void 0===h&&(h=1);void 0===g&&(g=0);b+=f/2;c=AmCharts.text(this.container,c,e,this.fontFamily,f,d,k,h);c.translate(l,b);0!==g&&c.rotate(g);a.url?(c.setAttr("cursor",
75
+ "pointer"),c.click(function(){AmCharts.getURL(a.url)})):c.node.style.pointerEvents="none";this.labelsSet.push(c);this.labels.push(c)}},addLabel:function(a,b,c,d,f,e,g,h,k,l){a={x:a,y:b,text:c,align:d,size:f,color:e,alpha:h,rotation:g,bold:k,url:l};this.container&&this.drawLabel(a);this.allLabels.push(a)},clearLabels:function(){var a=this.labels,b;for(b=a.length-1;0<=b;b--)a[b].remove();this.labels=[];this.allLabels=[]},updateHeight:function(){var a=this.divRealHeight,b=this.legend;if(b){var c=this.legendDiv.offsetHeight,
76
+ b=b.position;if("top"==b||"bottom"==b){a-=c;if(0>a||isNaN(a))a=0;this.chartDiv.style.height=a+"px"}}return a},updateWidth:function(){var a=this.divRealWidth,b=this.divRealHeight,c=this.legend;if(c){var d=this.legendDiv,f=d.offsetWidth;isNaN(c.width)||(f=c.width);var e=d.offsetHeight,d=d.style,g=this.chartDiv.style,c=c.position;if("right"==c||"left"==c){a-=f;if(0>a||isNaN(a))a=0;g.width=a+"px";"left"==c?g.left=f+"px":d.left=a+"px";b>e&&(d.top=(b-e)/2+"px")}}return a},getTitleHeight:function(){var a=
77
+ 0,b=this.titles;if(0<b.length){var a=15,c;for(c=0;c<b.length;c++){var d=b[c].size;isNaN(d)&&(d=this.fontSize+2);a+=d+6}}return a},addTitle:function(a,b,c,d,f){isNaN(b)&&(b=this.fontSize+2);a={text:a,size:b,color:c,alpha:d,bold:f};this.titles.push(a);return a},addMouseWheel:function(){var a=this;window.addEventListener&&!a.wheelAdded&&(window.addEventListener("DOMMouseScroll",function(b){a.handleWheel.call(a,b)},!1),document.addEventListener("mousewheel",function(b){a.handleWheel.call(a,b)},!1),a.wheelAdded=
78
+ !0)},handleWheel:function(a){if(this.mouseIsOver){var b=0;a||(a=window.event);a.wheelDelta?b=a.wheelDelta/120:a.detail&&(b=-a.detail/3);b&&this.handleWheelReal(b,a.shiftKey);a.preventDefault&&a.preventDefault()}},handleWheelReal:function(a){},addListeners:function(){var a=this,b=a.chartDiv;document.addEventListener?(a.panEventsEnabled&&(b.style.msTouchAction="none","ontouchstart"in document.documentElement&&(b.addEventListener("touchstart",function(b){a.handleTouchMove.call(a,b);a.handleTouchStart.call(a,
79
+ b)},!0),b.addEventListener("touchmove",function(b){a.handleTouchMove.call(a,b)},!0),b.addEventListener("touchend",function(b){a.handleTouchEnd.call(a,b)},!0))),b.addEventListener("mousedown",function(b){a.mouseIsOver=!0;a.handleMouseMove.call(a,b);a.handleMouseDown.call(a,b)},!0),b.addEventListener("mouseover",function(b){a.handleMouseOver.call(a,b)},!0),b.addEventListener("mouseout",function(b){a.handleMouseOut.call(a,b)},!0)):(b.attachEvent("onmousedown",function(b){a.handleMouseDown.call(a,b)}),
80
+ b.attachEvent("onmouseover",function(b){a.handleMouseOver.call(a,b)}),b.attachEvent("onmouseout",function(b){a.handleMouseOut.call(a,b)}))},dispDUpd:function(){var a;this.dispatchDataUpdated&&(this.dispatchDataUpdated=!1,a="dataUpdated",this.fire(a,{type:a,chart:this}));this.chartCreated||(a="init",this.fire(a,{type:a,chart:this}));this.chartRendered||(a="rendered",this.fire(a,{type:a,chart:this}),this.chartRendered=!0);a="drawn";this.fire(a,{type:a,chart:this})},validateSize:function(){var a=this;
81
+ a.measure();var b=a.legend;if((a.realWidth!=a.previousWidth||a.realHeight!=a.previousHeight)&&0<a.realWidth&&0<a.realHeight){a.sizeChanged=!0;if(b){clearTimeout(a.legendInitTO);var c=setTimeout(function(){b.invalidateSize()},100);a.timeOuts.push(c);a.legendInitTO=c}a.marginsUpdated="xy"!=a.type?!1:!0;clearTimeout(a.initTO);c=setTimeout(function(){a.initChart()},150);a.timeOuts.push(c);a.initTO=c}a.renderFix();b&&b.renderFix()},invalidateSize:function(){this.previousHeight=this.previousWidth=NaN;this.invalidateSizeReal()},
82
+ invalidateSizeReal:function(){var a=this;a.marginsUpdated=!1;clearTimeout(a.validateTO);var b=setTimeout(function(){a.validateSize()},5);a.timeOuts.push(b);a.validateTO=b},validateData:function(a){this.chartCreated&&(this.dataChanged=!0,this.marginsUpdated="xy"!=this.type?!1:!0,this.initChart(a))},validateNow:function(){this.chartRendered=!1;this.write(this.div)},showItem:function(a){a.hidden=!1;this.initChart()},hideItem:function(a){a.hidden=!0;this.initChart()},hideBalloon:function(){var a=this;
83
+ clearInterval(a.hoverInt);clearTimeout(a.balloonTO);a.hoverInt=setTimeout(function(){a.hideBalloonReal.call(a)},a.hideBalloonTime)},cleanChart:function(){},hideBalloonReal:function(){var a=this.balloon;a&&a.hide()},showBalloon:function(a,b,c,d,f){var e=this;clearTimeout(e.balloonTO);clearInterval(e.hoverInt);e.balloonTO=setTimeout(function(){e.showBalloonReal.call(e,a,b,c,d,f)},1)},showBalloonReal:function(a,b,c,d,f){this.handleMouseMove();var e=this.balloon;e.enabled&&(e.followCursor(!1),e.changeColor(b),
84
+ !c||e.fixedPosition?(e.setPosition(d,f),e.followCursor(!1)):e.followCursor(!0),a&&e.showBalloon(a))},handleTouchMove:function(a){this.hideBalloon();var b=this.chartDiv;a.touches&&(a=a.touches.item(0),this.mouseX=a.pageX-AmCharts.findPosX(b),this.mouseY=a.pageY-AmCharts.findPosY(b))},handleMouseOver:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0},handleMouseOut:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!1},handleMouseMove:function(a){if(this.mouseIsOver){var b=this.chartDiv;
85
+ a||(a=window.event);var c,d;if(a){this.posX=AmCharts.findPosX(b);this.posY=AmCharts.findPosY(b);switch(this.mouseMode){case 1:c=a.clientX-this.posX;d=a.clientY-this.posY;if(!this.divIsFixed){var b=document.body,f,e;b&&(f=b.scrollLeft,y1=b.scrollTop);if(b=document.documentElement)e=b.scrollLeft,y2=b.scrollTop;f=Math.max(f,e);e=Math.max(y1,y2);c+=f;d+=e}break;case 0:this.divIsFixed?(c=a.clientX-this.posX,d=a.clientY-this.posY):(c=a.pageX-this.posX,d=a.pageY-this.posY)}a.touches&&(a=a.touches.item(0),
86
+ c=a.pageX-this.posX,d=a.pageY-this.posY);this.mouseX=c-this.dmouseX;this.mouseY=d-this.dmouseY}}},handleTouchStart:function(a){this.handleMouseDown(a)},handleTouchEnd:function(a){AmCharts.resetMouseOver();this.handleReleaseOutside(a)},handleReleaseOutside:function(a){},handleMouseDown:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0;a&&a.preventDefault&&a.preventDefault()},addLegend:function(a,b){a=AmCharts.processObject(a,AmCharts.AmLegend,this.theme);a.divId=b;var c;c="object"!=typeof b&&
87
+ b?document.getElementById(b):b;this.legend=a;a.chart=this;c?(a.div=c,a.position="outside",a.autoMargins=!1):a.div=this.legendDiv;c=this.handleLegendEvent;this.listenTo(a,"showItem",c);this.listenTo(a,"hideItem",c);this.listenTo(a,"clickMarker",c);this.listenTo(a,"rollOverItem",c);this.listenTo(a,"rollOutItem",c);this.listenTo(a,"rollOverMarker",c);this.listenTo(a,"rollOutMarker",c);this.listenTo(a,"clickLabel",c);return a},removeLegend:function(){this.legend=void 0;this.legendDiv.innerHTML=""},handleResize:function(){(AmCharts.isPercents(this.width)||
88
+ AmCharts.isPercents(this.height))&&this.invalidateSizeReal();this.renderFix()},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},getSVG:function(){if(AmCharts.hasSVG)return this.container},animate:function(a,b,c,d,f,e,g){a["an_"+b]&&AmCharts.removeFromArray(this.animations,a["an_"+b]);c={obj:a,frame:0,attribute:b,from:c,to:d,time:f,effect:e,suffix:g};a["an_"+b]=c;this.animations.push(c);return c},setLegendData:function(a){var b=this.legend;b&&b.setData(a)},startInterval:function(){var a=
89
+ this;clearInterval(a.interval);a.interval=setInterval(function(){a.updateAnimations.call(a)},AmCharts.updateRate)},stopAnim:function(a){AmCharts.removeFromArray(this.animations,a)},updateAnimations:function(){var a;this.container&&this.container.update();for(a=this.animations.length-1;0<=a;a--){var b=this.animations[a],c=1E3*b.time/AmCharts.updateRate,d=b.frame+1,f=b.obj,e=b.attribute;if(d<=c){b.frame++;var g=Number(b.from),h=Number(b.to)-g,c=AmCharts[b.effect](0,d,g,h,c);0===h?(this.animations.splice(a,
90
+ 1),f.node.style[e]=Number(b.to)+b.suffix):f.node.style[e]=c+b.suffix}else f.node.style[e]=Number(b.to)+b.suffix,this.animations.splice(a,1)}},inIframe:function(){try{return window.self!==window.top}catch(a){return!0}},brr:function(){var a=window.location.hostname.split("."),b;2<=a.length&&(b=a[a.length-2]+"."+a[a.length-1]);this.amLink&&(a=this.amLink.parentNode)&&a.removeChild(this.amLink);a=this.creditsPosition;if("amcharts.com"!=b||!0===this.inIframe()){var c=b=0,d=this.realWidth,f=this.realHeight;
91
+ if("serial"==this.type||"xy"==this.type)b=this.marginLeftReal,c=this.marginTopReal,d=b+this.plotAreaWidth,f=c+this.plotAreaHeight;var e="http://www.amcharts.com/javascript-charts/",g="JavaScript charts",h="JS chart by amCharts";"ammap"==this.product&&(e="http://www.ammap.com/javascript-maps/",g="Interactive JavaScript maps",h="JS map by amCharts");var k=document.createElement("a"),h=document.createTextNode(h);k.setAttribute("href",e);k.setAttribute("title",g);k.appendChild(h);this.chartDiv.appendChild(k);
92
+ this.amLink=k;e=k.style;e.position="absolute";e.textDecoration="none";e.color=this.color;e.fontFamily=this.fontFamily;e.fontSize=this.fontSize+"px";e.opacity=.7;e.display="block";var g=k.offsetWidth,k=k.offsetHeight,h=5+b,l=c+5;"bottom-left"==a&&(h=5+b,l=f-k-3);"bottom-right"==a&&(h=d-g-5,l=f-k-3);"top-right"==a&&(h=d-g-5,l=c+5);e.left=h+"px";e.top=l+"px"}}});AmCharts.Slice=AmCharts.Class({construct:function(){}});AmCharts.SerialDataItem=AmCharts.Class({construct:function(){}});
93
+ AmCharts.GraphDataItem=AmCharts.Class({construct:function(){}});AmCharts.Guide=AmCharts.Class({construct:function(a){this.cname="Guide";AmCharts.applyTheme(this,a,this.cname)}});AmCharts.AmBalloon=AmCharts.Class({construct:function(a){this.cname="AmBalloon";this.enabled=!0;this.fillColor="#FFFFFF";this.fillAlpha=.8;this.borderThickness=2;this.borderColor="#FFFFFF";this.borderAlpha=1;this.cornerRadius=0;this.maximumWidth=220;this.horizontalPadding=8;this.verticalPadding=4;this.pointerWidth=6;this.pointerOrientation="V";this.color="#000000";this.adjustBorderColor=!0;this.show=this.follow=this.showBullet=!1;this.bulletSize=3;this.shadowAlpha=.4;this.shadowColor="#000000";this.fadeOutDuration=
94
+ this.animationDuration=.3;this.fixedPosition=!1;this.offsetY=6;this.offsetX=1;this.textAlign="center";AmCharts.isModern||(this.offsetY*=1.5);AmCharts.applyTheme(this,a,this.cname)},draw:function(){var a=this.pointToX,b=this.pointToY;this.deltaSignX=this.deltaSignY=1;var c=this.chart;AmCharts.VML&&(this.fadeOutDuration=0);this.xAnim&&c.stopAnim(this.xAnim);this.yAnim&&c.stopAnim(this.yAnim);if(!isNaN(a)){var d=this.follow,f=c.container,e=this.set;AmCharts.remove(e);this.removeDiv();e=f.set();e.node.style.pointerEvents=
95
+ "none";this.set=e;c.balloonsSet.push(e);if(this.show){var g=this.l,h=this.t,k=this.r,l=this.b,m=this.balloonColor,n=this.fillColor,r=this.borderColor,p=n;void 0!=m&&(this.adjustBorderColor?p=r=m:n=m);var v=this.horizontalPadding,x=this.verticalPadding,t=this.pointerWidth,z=this.pointerOrientation,A=this.cornerRadius,w=c.fontFamily,s=this.fontSize;void 0==s&&(s=c.fontSize);var m=document.createElement("div"),u=m.style;u.pointerEvents="none";u.position="absolute";var q=this.minWidth,y="";isNaN(q)||
96
+ (y="min-width:"+(q-2*v)+"px; ");m.innerHTML='<div style="text-align:'+this.textAlign+"; "+y+"max-width:"+this.maxWidth+"px; font-size:"+s+"px; color:"+this.color+"; font-family:"+w+'">'+this.text+"</div>";c.chartDiv.appendChild(m);this.textDiv=m;s=m.offsetWidth;w=m.offsetHeight;m.clientHeight&&(s=m.clientWidth,w=m.clientHeight);w+=2*x;y=s+2*v;!isNaN(q)&&y<q&&(y=q);window.opera&&(w+=2);var B=!1,s=this.offsetY;c.handDrawn&&(s+=c.handDrawScatter+2);"H"!=z?(q=a-y/2,b<h+w+10&&"down"!=z?(B=!0,d&&(b+=s),
97
+ s=b+t,this.deltaSignY=-1):(d&&(b-=s),s=b-w-t,this.deltaSignY=1)):(2*t>w&&(t=w/2),s=b-w/2,a<g+(k-g)/2?(q=a+t,this.deltaSignX=-1):(q=a-y-t,this.deltaSignX=1));s+w>=l&&(s=l-w);s<h&&(s=h);q<g&&(q=g);q+y>k&&(q=k-y);var h=s+x,l=q+v,x=this.shadowAlpha,G=this.shadowColor,v=this.borderThickness,C=this.bulletSize,D;0<A||0===t?(0<x&&(a=AmCharts.rect(f,y,w,n,0,v+1,G,x,this.cornerRadius),AmCharts.isModern?a.translate(1,1):a.translate(4,4),e.push(a)),n=AmCharts.rect(f,y,w,n,this.fillAlpha,v,r,this.borderAlpha,
98
+ this.cornerRadius),this.showBullet&&(D=AmCharts.circle(f,C,p,this.fillAlpha),e.push(D))):(p=[],A=[],"H"!=z?(g=a-q,g>y-t&&(g=y-t),g<t&&(g=t),p=[0,g-t,a-q,g+t,y,y,0,0],A=B?[0,0,b-s,0,0,w,w,0]:[w,w,b-s,w,w,0,0,w]):(p=b-s,p>w-t&&(p=w-t),p<t&&(p=t),A=[0,p-t,b-s,p+t,w,w,0,0],p=a<g+(k-g)/2?[0,0,q<a?0:a-q,0,0,y,y,0]:[y,y,q+y>a?y:a-q,y,y,0,0,y]),0<x&&(a=AmCharts.polygon(f,p,A,n,0,v,G,x),a.translate(1,1),e.push(a)),n=AmCharts.polygon(f,p,A,n,this.fillAlpha,v,r,this.borderAlpha));this.bg=n;e.push(n);n.toFront();
99
+ f=1*this.deltaSignX;u.left=l+"px";u.top=h+"px";e.translate(q-f,s);n=n.getBBox();this.bottom=s+w+1;this.yPos=n.y+s;D&&D.translate(this.pointToX-q+f,b-s);b=this.animationDuration;0<this.animationDuration&&!d&&!isNaN(this.prevX)&&(e.translate(this.prevX,this.prevY),e.animate({translate:q-f+","+s},b,"easeOutSine"),m&&(u.left=this.prevTX+"px",u.top=this.prevTY+"px",this.xAnim=c.animate({node:m},"left",this.prevTX,l,b,"easeOutSine","px"),this.yAnim=c.animate({node:m},"top",this.prevTY,h,b,"easeOutSine",
100
+ "px")));this.prevX=q-f;this.prevY=s;this.prevTX=l;this.prevTY=h}}},followMouse:function(){if(this.follow&&this.show){var a=this.chart.mouseX-this.offsetX*this.deltaSignX,b=this.chart.mouseY;this.pointToX=a;this.pointToY=b;if(a!=this.previousX||b!=this.previousY)if(this.previousX=a,this.previousY=b,0===this.cornerRadius)this.draw();else{var c=this.set;if(c){var d=c.getBBox(),a=a-d.width/2,f=b-d.height-10;a<this.l&&(a=this.l);a>this.r-d.width&&(a=this.r-d.width);f<this.t&&(f=b+10);c.translate(a,f);
101
+ b=this.textDiv.style;b.left=a+this.horizontalPadding+"px";b.top=f+this.verticalPadding+"px"}}}},changeColor:function(a){this.balloonColor=a},setBounds:function(a,b,c,d){this.l=a;this.t=b;this.r=c;this.b=d;this.destroyTO&&clearTimeout(this.destroyTO)},showBalloon:function(a){this.text=a;this.show=!0;this.destroyTO&&clearTimeout(this.destroyTO);a=this.chart;this.fadeAnim1&&a.stopAnim(this.fadeAnim1);this.fadeAnim2&&a.stopAnim(this.fadeAnim2);this.draw()},hide:function(){var a=this,b=a.fadeOutDuration,
102
+ c=a.chart;if(0<b){a.destroyTO=setTimeout(function(){a.destroy.call(a)},1E3*b);a.follow=!1;a.show=!1;var d=a.set;d&&(d.setAttr("opacity",a.fillAlpha),a.fadeAnim1=d.animate({opacity:0},b,"easeInSine"));a.textDiv&&(a.fadeAnim2=c.animate({node:a.textDiv},"opacity",1,0,b,"easeInSine",""))}else a.show=!1,a.follow=!1,a.destroy()},setPosition:function(a,b,c){this.pointToX=a;this.pointToY=b;c&&(a==this.previousX&&b==this.previousY||this.draw());this.previousX=a;this.previousY=b},followCursor:function(a){var b=
103
+ this;(b.follow=a)?(b.pShowBullet=b.showBullet,b.showBullet=!1):void 0!==b.pShowBullet&&(b.showBullet=b.pShowBullet);clearInterval(b.interval);var c=b.chart.mouseX,d=b.chart.mouseY;!isNaN(c)&&a&&(b.pointToX=c-b.offsetX*b.deltaSignX,b.pointToY=d,b.followMouse(),b.interval=setInterval(function(){b.followMouse.call(b)},40))},removeDiv:function(){if(this.textDiv){var a=this.textDiv.parentNode;a&&a.removeChild(this.textDiv)}},destroy:function(){clearInterval(this.interval);AmCharts.remove(this.set);this.removeDiv();
104
+ this.set=null}});AmCharts.circle=function(a,b,c,d,f,e,g,h,k){if(void 0==f||0===f)f=.01;void 0===e&&(e="#000000");void 0===g&&(g=0);d={fill:c,stroke:e,"fill-opacity":d,"stroke-width":f,"stroke-opacity":g};a=isNaN(k)?a.circle(0,0,b).attr(d):a.ellipse(0,0,b,k).attr(d);h&&a.gradient("radialGradient",[c,AmCharts.adjustLuminosity(c,-.6)]);return a};
105
+ AmCharts.text=function(a,b,c,d,f,e,g,h){e||(e="middle");"right"==e&&(e="end");isNaN(h)&&(h=1);void 0!==b&&(b=String(b),AmCharts.isIE&&!AmCharts.isModern&&(b=b.replace("&amp;","&"),b=b.replace("&","&amp;")));c={fill:c,"font-family":d,"font-size":f,opacity:h};!0===g&&(c["font-weight"]="bold");c["text-anchor"]=e;return a.text(b,c)};
106
+ AmCharts.polygon=function(a,b,c,d,f,e,g,h,k,l,m){isNaN(e)&&(e=.01);isNaN(h)&&(h=f);var n=d,r=!1;"object"==typeof n&&1<n.length&&(r=!0,n=n[0]);void 0===g&&(g=n);f={fill:n,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};void 0!==m&&0<m&&(f["stroke-dasharray"]=m);m=AmCharts.dx;e=AmCharts.dy;a.handDrawn&&(c=AmCharts.makeHD(b,c,a.handDrawScatter),b=c[0],c=c[1]);g=Math.round;l&&(g=AmCharts.doNothing);l="M"+(g(b[0])+m)+","+(g(c[0])+e);for(h=1;h<b.length;h++)l+=" L"+(g(b[h])+m)+","+(g(c[h])+
107
+ e);a=a.path(l+" Z").attr(f);r&&a.gradient("linearGradient",d,k);return a};
108
+ AmCharts.rect=function(a,b,c,d,f,e,g,h,k,l,m){isNaN(e)&&(e=0);void 0===k&&(k=0);void 0===l&&(l=270);isNaN(f)&&(f=0);var n=d,r=!1;"object"==typeof n&&(n=n[0],r=!0);void 0===g&&(g=n);void 0===h&&(h=f);b=Math.round(b);c=Math.round(c);var p=0,v=0;0>b&&(b=Math.abs(b),p=-b);0>c&&(c=Math.abs(c),v=-c);p+=AmCharts.dx;v+=AmCharts.dy;f={fill:n,stroke:g,"fill-opacity":f,"stroke-opacity":h};void 0!==m&&0<m&&(f["stroke-dasharray"]=m);a=a.rect(p,v,b,c,k,e).attr(f);r&&a.gradient("linearGradient",d,l);return a};
109
+ AmCharts.bullet=function(a,b,c,d,f,e,g,h,k,l,m){var n;"circle"==b&&(b="round");switch(b){case "round":n=AmCharts.circle(a,c/2,d,f,e,g,h);break;case "square":n=AmCharts.polygon(a,[-c/2,c/2,c/2,-c/2],[c/2,c/2,-c/2,-c/2],d,f,e,g,h,l-180);break;case "rectangle":n=AmCharts.polygon(a,[-c,c,c,-c],[c/2,c/2,-c/2,-c/2],d,f,e,g,h,l-180);break;case "diamond":n=AmCharts.polygon(a,[-c/2,0,c/2,0],[0,-c/2,0,c/2],d,f,e,g,h);break;case "triangleUp":n=AmCharts.triangle(a,c,0,d,f,e,g,h);break;case "triangleDown":n=AmCharts.triangle(a,
110
+ c,180,d,f,e,g,h);break;case "triangleLeft":n=AmCharts.triangle(a,c,270,d,f,e,g,h);break;case "triangleRight":n=AmCharts.triangle(a,c,90,d,f,e,g,h);break;case "bubble":n=AmCharts.circle(a,c/2,d,f,e,g,h,!0);break;case "line":n=AmCharts.line(a,[-c/2,c/2],[0,0],d,f,e,g,h);break;case "yError":n=a.set();n.push(AmCharts.line(a,[0,0],[-c/2,c/2],d,f,e));n.push(AmCharts.line(a,[-k,k],[-c/2,-c/2],d,f,e));n.push(AmCharts.line(a,[-k,k],[c/2,c/2],d,f,e));break;case "xError":n=a.set(),n.push(AmCharts.line(a,[-c/
111
+ 2,c/2],[0,0],d,f,e)),n.push(AmCharts.line(a,[-c/2,-c/2],[-k,k],d,f,e)),n.push(AmCharts.line(a,[c/2,c/2],[-k,k],d,f,e))}n&&n.pattern(m);return n};
112
+ AmCharts.triangle=function(a,b,c,d,f,e,g,h){if(void 0===e||0===e)e=1;void 0===g&&(g="#000");void 0===h&&(h=0);d={fill:d,stroke:g,"fill-opacity":f,"stroke-width":e,"stroke-opacity":h};b/=2;var k;0===c&&(k=" M"+-b+","+b+" L0,"+-b+" L"+b+","+b+" Z");180==c&&(k=" M"+-b+","+-b+" L0,"+b+" L"+b+","+-b+" Z");90==c&&(k=" M"+-b+","+-b+" L"+b+",0 L"+-b+","+b+" Z");270==c&&(k=" M"+-b+",0 L"+b+","+b+" L"+b+","+-b+" Z");return a.path(k).attr(d)};
113
+ AmCharts.line=function(a,b,c,d,f,e,g,h,k,l,m){if(a.handDrawn&&!m)return AmCharts.handDrawnLine(a,b,c,d,f,e,g,h,k,l,m);e={fill:"none","stroke-width":e};void 0!==g&&0<g&&(e["stroke-dasharray"]=g);isNaN(f)||(e["stroke-opacity"]=f);d&&(e.stroke=d);d=Math.round;l&&(d=AmCharts.doNothing);l=AmCharts.dx;f=AmCharts.dy;g="M"+(d(b[0])+l)+","+(d(c[0])+f);for(h=1;h<b.length;h++)g+=" L"+(d(b[h])+l)+","+(d(c[h])+f);if(AmCharts.VML)return a.path(g,void 0,!0).attr(e);k&&(g+=" M0,0 L0,0");return a.path(g).attr(e)};
114
+ AmCharts.makeHD=function(a,b,c){for(var d=[],f=[],e=1;e<a.length;e++)for(var g=Number(a[e-1]),h=Number(b[e-1]),k=Number(a[e]),l=Number(b[e]),m=Math.sqrt(Math.pow(k-g,2)+Math.pow(l-h,2)),m=Math.round(m/50)+1,k=(k-g)/m,l=(l-h)/m,n=0;n<=m;n++){var r=g+n*k+Math.random()*c,p=h+n*l+Math.random()*c;d.push(r);f.push(p)}return[d,f]};
115
+ AmCharts.handDrawnLine=function(a,b,c,d,f,e,g,h,k,l,m){var n=a.set();for(m=1;m<b.length;m++)for(var r=[b[m-1],b[m]],p=[c[m-1],c[m]],p=AmCharts.makeHD(r,p,a.handDrawScatter),r=p[0],p=p[1],v=1;v<r.length;v++)n.push(AmCharts.line(a,[r[v-1],r[v]],[p[v-1],p[v]],d,f,e+Math.random()*a.handDrawThickness-a.handDrawThickness/2,g,h,k,l,!0));return n};AmCharts.doNothing=function(a){return a};
116
+ AmCharts.wedge=function(a,b,c,d,f,e,g,h,k,l,m,n){var r=Math.round;e=r(e);g=r(g);h=r(h);var p=r(g/e*h),v=AmCharts.VML,x=359.5+e/100;359.94<x&&(x=359.94);f>=x&&(f=x);var t=1/180*Math.PI,x=b+Math.sin(d*t)*h,z=c-Math.cos(d*t)*p,A=b+Math.sin(d*t)*e,w=c-Math.cos(d*t)*g,s=b+Math.sin((d+f)*t)*e,u=c-Math.cos((d+f)*t)*g,q=b+Math.sin((d+f)*t)*h,t=c-Math.cos((d+f)*t)*p,y={fill:AmCharts.adjustLuminosity(l.fill,-.2),"stroke-opacity":0,"fill-opacity":l["fill-opacity"]},B=0;180<Math.abs(f)&&(B=1);d=a.set();var G;
117
+ v&&(x=r(10*x),A=r(10*A),s=r(10*s),q=r(10*q),z=r(10*z),w=r(10*w),u=r(10*u),t=r(10*t),b=r(10*b),k=r(10*k),c=r(10*c),e*=10,g*=10,h*=10,p*=10,1>Math.abs(f)&&1>=Math.abs(s-A)&&1>=Math.abs(u-w)&&(G=!0));f="";var C;n&&(y["fill-opacity"]=0,y["stroke-opacity"]=l["stroke-opacity"]/2,y.stroke=l.stroke);0<k&&(C=" M"+x+","+(z+k)+" L"+A+","+(w+k),v?(G||(C+=" A"+(b-e)+","+(k+c-g)+","+(b+e)+","+(k+c+g)+","+A+","+(w+k)+","+s+","+(u+k)),C+=" L"+q+","+(t+k),0<h&&(G||(C+=" B"+(b-h)+","+(k+c-p)+","+(b+h)+","+(k+c+p)+
118
+ ","+q+","+(k+t)+","+x+","+(k+z)))):(C+=" A"+e+","+g+",0,"+B+",1,"+s+","+(u+k)+" L"+q+","+(t+k),0<h&&(C+=" A"+h+","+p+",0,"+B+",0,"+x+","+(z+k))),C=a.path(C+" Z",void 0,void 0,"1000,1000").attr(y),d.push(C),C=a.path(" M"+x+","+z+" L"+x+","+(z+k)+" L"+A+","+(w+k)+" L"+A+","+w+" L"+x+","+z+" Z",void 0,void 0,"1000,1000").attr(y),k=a.path(" M"+s+","+u+" L"+s+","+(u+k)+" L"+q+","+(t+k)+" L"+q+","+t+" L"+s+","+u+" Z",void 0,void 0,"1000,1000").attr(y),d.push(C),d.push(k));v?(G||(f=" A"+r(b-e)+","+r(c-g)+
119
+ ","+r(b+e)+","+r(c+g)+","+r(A)+","+r(w)+","+r(s)+","+r(u)),e=" M"+r(x)+","+r(z)+" L"+r(A)+","+r(w)+f+" L"+r(q)+","+r(t)):e=" M"+x+","+z+" L"+A+","+w+(" A"+e+","+g+",0,"+B+",1,"+s+","+u)+" L"+q+","+t;0<h&&(v?G||(e+=" B"+(b-h)+","+(c-p)+","+(b+h)+","+(c+p)+","+q+","+t+","+x+","+z):e+=" A"+h+","+p+",0,"+B+",0,"+x+","+z);a.handDrawn&&(b=AmCharts.line(a,[x,A],[z,w],l.stroke,l.thickness*Math.random()*a.handDrawThickness,l["stroke-opacity"]),d.push(b));a=a.path(e+" Z",void 0,void 0,"1000,1000").attr(l);
120
+ if(m){b=[];for(c=0;c<m.length;c++)b.push(AmCharts.adjustLuminosity(l.fill,m[c]));0<b.length&&a.gradient("linearGradient",b)}a.pattern(n);d.push(a);return d};AmCharts.adjustLuminosity=function(a,b){a=String(a).replace(/[^0-9a-f]/gi,"");6>a.length&&(a=String(a[0])+String(a[0])+String(a[1])+String(a[1])+String(a[2])+String(a[2]));b=b||0;var c="#",d,f;for(f=0;3>f;f++)d=parseInt(a.substr(2*f,2),16),d=Math.round(Math.min(Math.max(0,d+d*b),255)).toString(16),c+=("00"+d).substr(d.length);return c};AmCharts.AmLegend=AmCharts.Class({construct:function(a){this.cname="AmLegend";this.createEvents("rollOverMarker","rollOverItem","rollOutMarker","rollOutItem","showItem","hideItem","clickMarker","rollOverItem","rollOutItem","clickLabel");this.position="bottom";this.borderColor=this.color="#000000";this.borderAlpha=0;this.markerLabelGap=5;this.verticalGap=10;this.align="left";this.horizontalGap=0;this.spacing=10;this.markerDisabledColor="#AAB3B3";this.markerType="square";this.markerSize=16;this.markerBorderThickness=
121
+ this.markerBorderAlpha=1;this.marginBottom=this.marginTop=0;this.marginLeft=this.marginRight=20;this.autoMargins=!0;this.valueWidth=50;this.switchable=!0;this.switchType="x";this.switchColor="#FFFFFF";this.rollOverColor="#CC0000";this.reversedOrder=!1;this.labelText="[[title]]";this.valueText="[[value]]";this.useMarkerColorForLabels=!1;this.rollOverGraphAlpha=1;this.textClickEnabled=!1;this.equalWidths=!0;this.dateFormat="DD-MM-YYYY";this.backgroundColor="#FFFFFF";this.backgroundAlpha=0;this.useGraphSettings=
122
+ !1;this.showEntries=!0;AmCharts.applyTheme(this,a,this.cname)},setData:function(a){this.legendData=a;this.invalidateSize()},invalidateSize:function(){this.destroy();this.entries=[];this.valueLabels=[];(AmCharts.ifArray(this.legendData)||AmCharts.ifArray(this.data))&&this.drawLegend()},drawLegend:function(){var a=this.chart,b=this.position,c=this.width,d=a.divRealWidth,f=a.divRealHeight,e=this.div,g=this.legendData;this.data&&(g=this.data);isNaN(this.fontSize)&&(this.fontSize=a.fontSize);if("right"==
123
+ b||"left"==b)this.maxColumns=1,this.autoMargins&&(this.marginLeft=this.marginRight=10);else if(this.autoMargins){this.marginRight=a.marginRight;this.marginLeft=a.marginLeft;var h=a.autoMarginOffset;"bottom"==b?(this.marginBottom=h,this.marginTop=0):(this.marginTop=h,this.marginBottom=0)}var k;void 0!==c?k=AmCharts.toCoordinate(c,d):"right"!=b&&"left"!=b&&(k=a.realWidth);"outside"==b?(k=e.offsetWidth,f=e.offsetHeight,e.clientHeight&&(k=e.clientWidth,f=e.clientHeight)):(isNaN(k)||(e.style.width=k+"px"),
124
+ e.className="amChartsLegend");this.divWidth=k;(b=this.container)?(b.container.innerHTML="",e.appendChild(b.container),b.setSize(k,f)):b=new AmCharts.AmDraw(e,k,f,a);this.container=b;this.lx=0;this.ly=8;f=this.markerSize;f>this.fontSize&&(this.ly=f/2-1);0<f&&(this.lx+=f+this.markerLabelGap);this.titleWidth=0;if(f=this.title)a=AmCharts.text(this.container,f,this.color,a.fontFamily,this.fontSize,"start",!0),a.translate(this.marginLeft,this.marginTop+this.verticalGap+this.ly+1),a=a.getBBox(),this.titleWidth=
125
+ a.width+15,this.titleHeight=a.height+6;this.index=this.maxLabelWidth=0;if(this.showEntries){for(a=0;a<g.length;a++)this.createEntry(g[a]);for(a=this.index=0;a<g.length;a++)this.createValue(g[a])}this.arrangeEntries();this.updateValues()},arrangeEntries:function(){var a=this.position,b=this.marginLeft+this.titleWidth,c=this.marginRight,d=this.marginTop,f=this.marginBottom,e=this.horizontalGap,g=this.div,h=this.divWidth,k=this.maxColumns,l=this.verticalGap,m=this.spacing,n=h-c-b,r=0,p=0,v=this.container;
126
+ this.set&&this.set.remove();var x=v.set();this.set=x;v=v.set();x.push(v);var t=this.entries,z,A;for(A=0;A<t.length;A++){z=t[A].getBBox();var w=z.width;w>r&&(r=w);z=z.height;z>p&&(p=z)}var w=p=0,s=e,u=0,q=0;for(A=0;A<t.length;A++){var y=t[A];this.reversedOrder&&(y=t[t.length-A-1]);z=y.getBBox();var B;this.equalWidths?B=e+w*(r+m+this.markerLabelGap):(B=s,s=s+z.width+e+m);z.height>q&&(q=z.height);B+z.width>n&&0<A&&0!==w&&(p++,w=0,B=e,s=B+z.width+e+m,u=u+q+l,q=0);y.translate(B,u);w++;!isNaN(k)&&w>=k&&
127
+ (w=0,p++,u=u+q+l,q=0);v.push(y)}z=v.getBBox();k=z.height+2*l-1;"left"==a||"right"==a?(h=z.width+2*e,g.style.width=h+b+c+"px"):h=h-b-c-1;c=AmCharts.polygon(this.container,[0,h,h,0],[0,0,k,k],this.backgroundColor,this.backgroundAlpha,1,this.borderColor,this.borderAlpha);x.push(c);x.translate(b,d);c.toBack();b=e;if("top"==a||"bottom"==a||"absolute"==a||"outside"==a)"center"==this.align?b=e+(h-z.width)/2:"right"==this.align&&(b=e+h-z.width);v.translate(b,l+1);this.titleHeight>k&&(k=this.titleHeight);
128
+ a=k+d+f+1;0>a&&(a=0);g.style.height=Math.round(a)+"px"},createEntry:function(a){if(!1!==a.visibleInLegend){var b=this.chart,c=a.markerType;c||(c=this.markerType);var d=a.color,f=a.alpha;a.legendKeyColor&&(d=a.legendKeyColor());a.legendKeyAlpha&&(f=a.legendKeyAlpha());var e;!0===a.hidden&&(e=d=this.markerDisabledColor);var g=a.pattern,h=a.customMarker;h||(h=this.customMarker);var k=this.container,l=this.markerSize,m=0,n=0,r=l/2;if(this.useGraphSettings)if(m=a.type,this.switchType=void 0,"line"==m||
129
+ "step"==m||"smoothedLine"==m||"ohlc"==m)g=k.set(),a.hidden||(d=a.lineColorR,e=a.bulletBorderColorR),n=AmCharts.line(k,[0,2*l],[l/2,l/2],d,a.lineAlpha,a.lineThickness,a.dashLength),g.push(n),a.bullet&&(a.hidden||(d=a.bulletColorR),n=AmCharts.bullet(k,a.bullet,a.bulletSize,d,a.bulletAlpha,a.bulletBorderThickness,e,a.bulletBorderAlpha))&&(n.translate(l+1,l/2),g.push(n)),r=0,m=l,n=l/3;else{var p;a.getGradRotation&&(p=a.getGradRotation());m=a.fillColorsR;!0===a.hidden&&(m=d);if(g=this.createMarker("rectangle",
130
+ m,a.fillAlphas,a.lineThickness,d,a.lineAlpha,p,g))r=l,g.translate(r,l/2);m=l}else h?(b.path&&(h=b.path+h),g=k.image(h,0,0,l,l)):(g=this.createMarker(c,d,f,void 0,void 0,void 0,void 0,g))&&g.translate(l/2,l/2);this.addListeners(g,a);k=k.set([g]);this.switchable&&a.switchable&&k.setAttr("cursor","pointer");(e=this.switchType)&&"none"!=e&&("x"==e?(p=this.createX(),p.translate(l/2,l/2)):p=this.createV(),p.dItem=a,!0!==a.hidden?"x"==e?p.hide():p.show():"x"!=e&&p.hide(),this.switchable||p.hide(),this.addListeners(p,
131
+ a),a.legendSwitch=p,k.push(p));e=this.color;a.showBalloon&&this.textClickEnabled&&void 0!==this.selectedColor&&(e=this.selectedColor);this.useMarkerColorForLabels&&(e=d);!0===a.hidden&&(e=this.markerDisabledColor);d=AmCharts.massReplace(this.labelText,{"[[title]]":a.title});p=this.fontSize;g&&l<=p&&g.translate(r,l/2+this.ly-p/2+(p+2-l)/2-n);var v;d&&(d=AmCharts.fixBrakes(d),a.legendTextReal=d,v=this.labelWidth,v=isNaN(v)?AmCharts.text(this.container,d,e,b.fontFamily,p,"start"):AmCharts.wrappedText(this.container,
132
+ d,e,b.fontFamily,p,"start",!1,v,0),v.translate(this.lx+m,this.ly),k.push(v),b=v.getBBox().width,this.maxLabelWidth<b&&(this.maxLabelWidth=b));this.entries[this.index]=k;a.legendEntry=this.entries[this.index];a.legendLabel=v;this.index++}},addListeners:function(a,b){var c=this;a&&a.mouseover(function(a){c.rollOverMarker(b,a)}).mouseout(function(a){c.rollOutMarker(b,a)}).click(function(a){c.clickMarker(b,a)})},rollOverMarker:function(a,b){this.switchable&&this.dispatch("rollOverMarker",a,b);this.dispatch("rollOverItem",
133
+ a,b)},rollOutMarker:function(a,b){this.switchable&&this.dispatch("rollOutMarker",a,b);this.dispatch("rollOutItem",a,b)},clickMarker:function(a,b){this.switchable&&(!0===a.hidden?this.dispatch("showItem",a,b):this.dispatch("hideItem",a,b));this.dispatch("clickMarker",a,b)},rollOverLabel:function(a,b){a.hidden||(this.textClickEnabled&&a.legendLabel&&a.legendLabel.attr({fill:this.rollOverColor}),this.dispatch("rollOverItem",a,b))},rollOutLabel:function(a,b){if(!a.hidden){if(this.textClickEnabled&&a.legendLabel){var c=
134
+ this.color;void 0!==this.selectedColor&&a.showBalloon&&(c=this.selectedColor);this.useMarkerColorForLabels&&(c=a.lineColor,void 0===c&&(c=a.color));a.legendLabel.attr({fill:c})}this.dispatch("rollOutItem",a,b)}},clickLabel:function(a,b){this.textClickEnabled?a.hidden||this.dispatch("clickLabel",a,b):this.switchable&&(!0===a.hidden?this.dispatch("showItem",a,b):this.dispatch("hideItem",a,b))},dispatch:function(a,b,c){this.fire(a,{type:a,dataItem:b,target:this,event:c,chart:this.chart})},createValue:function(a){var b=
135
+ this,c=b.fontSize;if(!1!==a.visibleInLegend){var d=b.maxLabelWidth;b.equalWidths||(b.valueAlign="left");"left"==b.valueAlign&&(d=a.legendEntry.getBBox().width);var f=d;if(b.valueText&&0<b.valueWidth){var e=b.color;b.useMarkerColorForValues&&(e=a.color,a.legendKeyColor&&(e=a.legendKeyColor()));!0===a.hidden&&(e=b.markerDisabledColor);var g=b.valueText,d=d+b.lx+b.markerLabelGap+b.valueWidth,h="end";"left"==b.valueAlign&&(d-=b.valueWidth,h="start");e=AmCharts.text(b.container,g,e,b.chart.fontFamily,
136
+ c,h);e.translate(d,b.ly);b.entries[b.index].push(e);f+=b.valueWidth+2*b.markerLabelGap;e.dItem=a;b.valueLabels.push(e)}b.index++;e=b.markerSize;e<c+7&&(e=c+7,AmCharts.VML&&(e+=3));c=b.container.rect(b.markerSize,0,f,e,0,0).attr({stroke:"none",fill:"#ffffff","fill-opacity":.005});c.dItem=a;b.entries[b.index-1].push(c);c.mouseover(function(c){b.rollOverLabel(a,c)}).mouseout(function(c){b.rollOutLabel(a,c)}).click(function(c){b.clickLabel(a,c)})}},createV:function(){var a=this.markerSize;return AmCharts.polygon(this.container,
137
+ [a/5,a/2,a-a/5,a/2],[a/3,a-a/5,a/5,a/1.7],this.switchColor)},createX:function(){var a=(this.markerSize-4)/2,b={stroke:this.switchColor,"stroke-width":3},c=this.container,d=AmCharts.line(c,[-a,a],[-a,a]).attr(b),a=AmCharts.line(c,[-a,a],[a,-a]).attr(b);return this.container.set([d,a])},createMarker:function(a,b,c,d,f,e,g,h){var k=this.markerSize,l=this.container;f||(f=this.markerBorderColor);f||(f=b);isNaN(d)&&(d=this.markerBorderThickness);isNaN(e)&&(e=this.markerBorderAlpha);return AmCharts.bullet(l,
138
+ a,k,b,c,d,f,e,k,g,h)},validateNow:function(){this.invalidateSize()},updateValues:function(){var a=this.valueLabels,b=this.chart,c,d=this.data;for(c=0;c<a.length;c++){var f=a[c],e=f.dItem,g=" ";if(d)e.value?f.text(e.value):f.text("");else{if(void 0!==e.type){var h=e.currentDataItem,k=this.periodValueText;e.legendPeriodValueText&&(k=e.legendPeriodValueText);h?(g=this.valueText,e.legendValueText&&(g=e.legendValueText),g=b.formatString(g,h)):k&&(g=b.formatPeriodString(k,e))}else g=b.formatString(this.valueText,
139
+ e);if(k=this.valueFunction)h&&(e=h),g=k(e,g);f.text(g)}}},renderFix:function(){if(!AmCharts.VML){var a=this.container;a&&a.renderFix()}},destroy:function(){this.div.innerHTML="";AmCharts.remove(this.set)}});AmCharts.AmMap=AmCharts.Class({inherits:AmCharts.AmChart,construct:function(a){this.cname="AmMap";this.type="map";this.theme=a;this.version="3.11.1";this.svgNotSupported="This browser doesn't support SVG. Use Chrome, Firefox, Internet Explorer 9 or later.";this.createEvents("rollOverMapObject","rollOutMapObject","clickMapObject","selectedObjectChanged","homeButtonClicked","zoomCompleted","dragCompleted","positionChanged","writeDevInfo","click");this.zoomDuration=1;this.zoomControl=new AmCharts.ZoomControl(a);
140
+ this.fitMapToContainer=!0;this.mouseWheelZoomEnabled=this.backgroundZoomsToTop=!1;this.allowClickOnSelectedObject=this.useHandCursorOnClickableOjects=this.showBalloonOnSelectedObject=!0;this.showObjectsAfterZoom=this.wheelBusy=!1;this.zoomOnDoubleClick=this.useObjectColorForBalloon=!0;this.allowMultipleDescriptionWindows=!1;this.dragMap=this.centerMap=this.linesAboveImages=!0;this.colorSteps=5;this.showAreasInList=!0;this.showLinesInList=this.showImagesInList=!1;this.areasProcessor=new AmCharts.AreasProcessor(this);
141
+ this.areasSettings=new AmCharts.AreasSettings(a);this.imagesProcessor=new AmCharts.ImagesProcessor(this);this.imagesSettings=new AmCharts.ImagesSettings(a);this.linesProcessor=new AmCharts.LinesProcessor(this);this.linesSettings=new AmCharts.LinesSettings(a);this.showDescriptionOnHover=!1;AmCharts.AmMap.base.construct.call(this,a);this.creditsPosition="bottom-left";this.product="ammap";this.areasClasses={};AmCharts.applyTheme(this,a,this.cname)},initChart:function(){this.zoomInstantly=!0;var a=this.container;
142
+ if(this.sizeChanged&&AmCharts.hasSVG&&this.chartCreated){this.freeLabelsSet&&this.freeLabelsSet.remove();this.freeLabelsSet=a.set();this.container.setSize(this.realWidth,this.realHeight);this.resizeMap();this.drawBackground();this.redrawLabels();this.drawTitles();this.processObjects();this.rescaleObjects();a=this.container;this.zoomControl.init(this,a);this.drawBg();var b=this.smallMap;b&&b.init(this,a);(b=this.valueLegend)&&b.init(this,a);this.sizeChanged=!1;this.zoomToLongLat(this.zLevelTemp,this.zLongTemp,
143
+ this.zLatTemp,!0);this.previousWidth=this.realWidth;this.previousHeight=this.realHeight;this.updateSmallMap();this.linkSet.toFront()}else(AmCharts.AmMap.base.initChart.call(this),AmCharts.hasSVG)?(this.dataChanged&&(this.parseData(),this.dispatchDataUpdated=!0,this.dataChanged=!1,a=this.legend)&&(a.position="absolute",a.invalidateSize()),this.mouseWheelZoomEnabled&&this.addMouseWheel(),this.createDescriptionsDiv(),this.svgAreas=[],this.svgAreasById={},this.drawChart()):(document.createTextNode(this.svgNotSupported),
144
+ this.chartDiv.style.textAlign="",this.chartDiv.setAttribute("class","ammapAlert"),this.chartDiv.innerHTML=this.svgNotSupported,this.fire("failed",{type:"failed",chart:this}),clearInterval(this.interval))},invalidateSize:function(){var a=this.zoomLongitude();isNaN(a)||(this.zLongTemp=a);a=this.zoomLatitude();isNaN(a)||(this.zLatTemp=a);a=this.zoomLevel();isNaN(a)||(this.zLevelTemp=a);AmCharts.AmMap.base.invalidateSize.call(this)},handleWheelReal:function(a){if(!this.wheelBusy){this.stopAnimation();
145
+ var b=this.zoomLevel(),c=this.zoomControl,d=c.zoomFactor;this.wheelBusy=!0;a=AmCharts.fitToBounds(0<a?b*d:b/d,c.minZoomLevel,c.maxZoomLevel);d=this.mouseX/this.mapWidth;c=this.mouseY/this.mapHeight;d=(this.zoomX()-d)*(a/b)+d;b=(this.zoomY()-c)*(a/b)+c;this.zoomTo(a,d,b)}},addLegend:function(a,b){a.position="absolute";a.autoMargins=!1;a.valueWidth=0;a.switchable=!1;AmCharts.AmMap.base.addLegend.call(this,a,b);return a},handleLegendEvent:function(){},createDescriptionsDiv:function(){if(!this.descriptionsDiv){var a=
146
+ document.createElement("div"),b=a.style;b.position="absolute";b.left="0px";b.top="0px";this.descriptionsDiv=a}this.containerDiv.appendChild(this.descriptionsDiv)},drawChart:function(){AmCharts.AmMap.base.drawChart.call(this);var a=this.dataProvider;this.dataProvider=a=AmCharts.extend(a,new AmCharts.MapData,!0);this.areasSettings=AmCharts.processObject(this.areasSettings,AmCharts.AreasSettings,this.theme);this.imagesSettings=AmCharts.processObject(this.imagesSettings,AmCharts.ImagesSettings,this.theme);
147
+ this.linesSettings=AmCharts.processObject(this.linesSettings,AmCharts.LinesSettings,this.theme);var b=this.container;this.mapContainer&&this.mapContainer.remove();this.mapContainer=b.set();this.graphsSet.push(this.mapContainer);var c;a.map&&(c=AmCharts.maps[a.map]);a.mapVar&&(c=a.mapVar);c?(this.svgData=c.svg,this.getBounds(),this.buildEverything()):(a=a.mapURL)&&this.loadXml(a);this.balloonsSet.toFront()},drawBg:function(){var a=this;AmCharts.remove(a.bgSet);var b=AmCharts.rect(a.container,a.realWidth,
148
+ a.realHeight,"#000",.001);b.click(function(){a.handleBackgroundClick()});a.bgSet=b;a.set.push(b)},buildEverything:function(){var a=this;if(0<a.realWidth&&0<a.realHeight){var b=a.container;a.zoomControl=AmCharts.processObject(a.zoomControl,AmCharts.ZoomControl,a.theme);a.zoomControl.init(this,b);a.drawBg();a.buildSVGMap();var c=a.smallMap;c&&(a.smallMap=AmCharts.processObject(a.smallMap,AmCharts.SmallMap,a.theme),c=a.smallMap,c.init(a,b));c=a.dataProvider;isNaN(c.zoomX)&&isNaN(c.zoomY)&&isNaN(c.zoomLatitude)&&
149
+ isNaN(c.zoomLongitude)&&(a.centerMap?(c.zoomLatitude=a.coordinateToLatitude(a.mapHeight/2),c.zoomLongitude=a.coordinateToLongitude(a.mapWidth/2)):(c.zoomX=0,c.zoomY=0),a.zoomInstantly=!0);a.selectObject(a.dataProvider);a.processAreas();if(c=a.valueLegend)c=AmCharts.processObject(c,AmCharts.ValueLegend,a.theme),a.valueLegend=c,c.init(a,b);a.objectList&&(a.objectList=AmCharts.processObject(a.objectList,AmCharts.ObjectList),b=a.objectList)&&(a.clearObjectList(),b.init(a));clearInterval(a.mapInterval);
150
+ a.mapInterval=setInterval(function(){a.update.call(a)},AmCharts.updateRate);a.dispDUpd();a.linkSet.toFront();a.chartCreated=!0}else a.cleanChart()},hideGroup:function(a){this.showHideGroup(a,!1)},showGroup:function(a){this.showHideGroup(a,!0)},showHideGroup:function(a,b){this.showHideReal(this.imagesProcessor.allObjects,a,b);this.showHideReal(this.areasProcessor.allObjects,a,b);this.showHideReal(this.linesProcessor.allObjects,a,b)},showHideReal:function(a,b,c){var d;for(d=0;d<a.length;d++){var f=
151
+ a[d];f.groupId==b&&(f=f.displayObject)&&(c?f.show():f.hide())}},update:function(){this.zoomControl.update()},animateMap:function(){var a=this;a.totalFrames=1E3*a.zoomDuration/AmCharts.updateRate;a.totalFrames+=1;a.frame=0;a.tweenPercent=0;setTimeout(function(){a.updateSize.call(a)},AmCharts.updateRate)},updateSize:function(){var a=this,b=a.totalFrames;a.preventHover=!0;a.frame<=b?(a.frame++,b=AmCharts.easeOutSine(0,a.frame,0,1,b),1<=b?(b=1,a.preventHover=!1,a.wheelBusy=!1):setTimeout(function(){a.updateSize.call(a)},
152
+ AmCharts.updateRate),.8<b&&(a.preventHover=!1)):(b=1,a.preventHover=!1,a.wheelBusy=!1);a.tweenPercent=b;a.rescaleMapAndObjects()},rescaleMapAndObjects:function(){var a=this.initialScale,b=this.initialX,c=this.initialY,d=this.tweenPercent,a=a+(this.finalScale-a)*d;this.mapContainer.translate(b+(this.finalX-b)*d,c+(this.finalY-c)*d,a);if(this.areasSettings.adjustOutlineThickness)for(b=this.dataProvider.areas,c=0;c<b.length;c++){var f=b[c],e=f.displayObject;e&&e.setAttr("stroke-width",f.outlineThicknessReal/
153
+ a)}this.rescaleObjects();this.positionChanged();this.updateSmallMap();1==d&&(d={type:"zoomCompleted",chart:this},this.fire(d.type,d))},updateSmallMap:function(){this.smallMap&&this.smallMap.update()},rescaleObjects:function(){var a=this.mapContainer.scale,b=this.imagesProcessor.objectsToResize,c;for(c=0;c<b.length;c++){var d=b[c].image;d.translate(d.x,d.y,b[c].scale/a,!0)}b=this.linesProcessor;if(d=b.linesToResize)for(c=0;c<d.length;c++){var f=d[c];f.line.setAttr("stroke-width",f.thickness/a)}b=b.objectsToResize;
154
+ for(c=0;c<b.length;c++)d=b[c],d.translate(d.x,d.y,1/a)},handleTouchStart:function(a){this.handleMouseMove(a);this.handleMouseDown(a)},handleTouchEnd:function(a){this.previousDistance=NaN;this.handleReleaseOutside(a)},handleMouseDown:function(a){AmCharts.resetMouseOver();this.mouseIsOver=!0;if(this.chartCreated&&!this.preventHover&&(this.dragMap&&(this.stopAnimation(),this.isDragging=!0,this.mapContainerClickX=this.mapContainer.x,this.mapContainerClickY=this.mapContainer.y,this.panEventsEnabled||a&&
155
+ a.preventDefault&&a.preventDefault()),a||(a=window.event),a.shiftKey&&!0===this.developerMode&&this.getDevInfo(),a&&a.touches)){var b=this.mouseX,c=this.mouseY,d=a.touches.item(1);d&&(a=d.pageX-AmCharts.findPosX(this.div),d=d.pageY-AmCharts.findPosY(this.div),this.middleXP=(b+(a-b)/2)/this.realWidth,this.middleYP=(c+(d-c)/2)/this.realHeight)}},stopDrag:function(){this.isDragging&&(this.isDragging=!1)},handleReleaseOutside:function(){if(AmCharts.isModern&&!this.preventHover){this.stopDrag();var a=
156
+ this.zoomControl;a&&a.draggerUp();this.mapWasDragged=!1;var a=this.mapContainer,b=this.mapContainerClickX,c=this.mapContainerClickY;isNaN(b)||isNaN(c)||!(2<Math.abs(a.x-b)||Math.abs(a.y-c))||(this.mapWasDragged=!0,a={type:"dragCompleted",zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLevel:this.zoomLevel(),chart:this},this.fire(a.type,a));!this.mouseIsOver||this.mapWasDragged||this.skipClick||(a={type:"click",x:this.mouseX,y:this.mouseY,chart:this},this.fire(a.type,a),this.skipClick=!1);this.mapContainerClickY=
157
+ this.mapContainerClickX=NaN;this.objectWasClicked=!1;this.zoomOnDoubleClick&&this.mouseIsOver&&(a=(new Date).getTime(),200>a-this.previousClickTime&&20<a-this.previousClickTime&&this.doDoubleClickZoom(),this.previousClickTime=a)}},handleTouchMove:function(a){this.handleMouseMove(a)},resetPinch:function(){this.mapWasPinched=!1},handleMouseMove:function(a){var b=this;AmCharts.AmMap.base.handleMouseMove.call(b,a);var c=b.previuosMouseX,d=b.previuosMouseY,f=b.mouseX,e=b.mouseY,g=b.zoomControl;isNaN(c)&&
158
+ (c=f);isNaN(d)&&(d=e);b.mouse2X=NaN;b.mouse2Y=NaN;if(a&&a.touches){var h=a.touches.item(1);h&&(b.mouse2X=h.pageX-AmCharts.findPosX(b.div),b.mouse2Y=h.pageY-AmCharts.findPosY(b.div))}var h=b.mapContainer,k=b.mouse2X,l=b.mouse2Y;b.pinchTO&&clearTimeout(b.pinchTO);b.pinchTO=setTimeout(function(){b.resetPinch.call(b)},1E3);if(!isNaN(k)){b.stopDrag();a.preventDefault&&a.preventDefault();var k=Math.sqrt(Math.pow(k-f,2)+Math.pow(l-e,2)),m=b.previousDistance,l=Math.max(b.realWidth,b.realHeight);5>Math.abs(m-
159
+ k)&&(b.isDragging=!0);if(!isNaN(m)){var n=5*Math.abs(m-k)/l,l=h.scale,l=AmCharts.fitToBounds(m<k?l+l*n:l-l*n,g.minZoomLevel,g.maxZoomLevel),g=b.zoomLevel(),r=b.middleXP,m=b.middleYP,n=b.realHeight/b.mapHeight,p=b.realWidth/b.mapWidth,r=(b.zoomX()-r*p)*(l/g)+r*p,m=(b.zoomY()-m*n)*(l/g)+m*n;.1<Math.abs(l-g)&&(b.zoomTo(l,r,m,!0),b.mapWasPinched=!0,clearTimeout(b.pinchTO))}b.previousDistance=k}b.isDragging&&(b.hideBalloon(),b.positionChanged(),h.translate(h.x+(f-c),h.y+(e-d),h.scale),b.updateSmallMap(),
160
+ a&&a.preventDefault&&a.preventDefault());b.previuosMouseX=f;b.previuosMouseY=e},selectObject:function(a){var b=this;a||(a=b.dataProvider);a.isOver=!1;var c=a.linkToObject;"string"==typeof c&&(c=b.getObjectById(c));a.useTargetsZoomValues&&c&&(a.zoomX=c.zoomX,a.zoomY=c.zoomY,a.zoomLatitude=c.zoomLatitude,a.zoomLongitude=c.zoomLongitude,a.zoomLevel=c.zoomLevel);var d=b.selectedObject;d&&b.returnInitialColor(d);b.selectedObject=a;var f=!1,e;"MapArea"==a.objectType&&(a.autoZoomReal&&(f=!0),e=b.areasSettings.selectedOutlineColor);
161
+ if(c&&!f&&("string"==typeof c&&(c=b.getObjectById(c)),isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY))){if(b.extendMapData(c))return;b.selectObject(c);return}b.allowMultipleDescriptionWindows||b.closeAllDescriptions();clearTimeout(b.selectedObjectTimeOut);clearTimeout(b.processObjectsTimeOut);c=b.zoomDuration;!f&&isNaN(a.zoomLevel)&&isNaN(a.zoomX)&&isNaN(a.zoomY)?(b.showDescriptionAndGetUrl(),b.processObjects()):(b.selectedObjectTimeOut=setTimeout(function(){b.showDescriptionAndGetUrl.call(b)},
162
+ 1E3*c+200),b.showObjectsAfterZoom?b.processObjectsTimeOut=setTimeout(function(){b.processObjects.call(b)},1E3*c+200):b.processObjects());if(f=a.displayObject){a.bringForwardOnHover&&f.toFront();f.setAttr("stroke",a.outlineColorReal);var g=a.selectedColorReal;void 0!==g&&f.setAttr("fill",g);void 0!==e&&f.setAttr("stroke",e);if("MapLine"==a.objectType){var h=a.lineSvg;h&&h.setAttr("stroke",g);var k=a.arrowSvg;k&&(k.setAttr("fill",g),k.setAttr("stroke",g))}if(c=a.imageLabel){var l=a.selectedLabelColorReal;
163
+ void 0!==l&&c.setAttr("fill",l)}a.selectable||(f.setAttr("cursor","default"),c&&c.setAttr("cursor","default"))}else b.returnInitialColorReal(a);if(f=a.groupId)for(c=b.getGroupById(f),l=0;l<c.length;l++)if(k=c[l],k.isOver=!1,f=k.displayObject)if(h=k.selectedColorReal,void 0!==e&&f.setAttr("stroke",e),void 0!==h?f.setAttr("fill",h):b.returnInitialColor(k),"MapLine"==k.objectType&&((h=k.lineSvg)&&h.setAttr("stroke",g),k=k.arrowSvg))k.setAttr("fill",g),k.setAttr("stroke",g);b.zoomToSelectedObject();d!=
164
+ a&&(a={type:"selectedObjectChanged",chart:b},b.fire(a.type,a))},returnInitialColor:function(a,b){this.returnInitialColorReal(a);b&&(a.isFirst=!1);if(this.selectedObject.bringForwardOnHover){var c=this.selectedObject.displayObject;c&&c.toFront()}if(c=a.groupId){var c=this.getGroupById(c),d;for(d=0;d<c.length;d++)this.returnInitialColorReal(c[d]),b&&(c[d].isFirst=!1)}},closeAllDescriptions:function(){this.descriptionsDiv.innerHTML=""},returnInitialColorReal:function(a){a.isOver=!1;var b=a.displayObject;
165
+ if(b){b.toPrevious();if("MapImage"==a.objectType){var c=a.tempScale;isNaN(c)||b.translate(b.x,b.y,c,!0);a.tempScale=NaN}c=a.colorReal;if("MapLine"==a.objectType){var d=a.lineSvg;d&&d.setAttr("stroke",c);if(d=a.arrowSvg)d.setAttr("fill",c),d.setAttr("stroke",c)}a.showAsSelected&&(c=a.selectedColorReal);"bubble"==a.type&&(c=void 0);void 0!==c&&b.setAttr("fill",c);(d=a.image)&&d.setAttr("fill",c);b.setAttr("stroke",a.outlineColorReal);"MapArea"==a.objectType&&(c=1,this.areasSettings.adjustOutlineThickness&&
166
+ (c=this.zoomLevel()),b.setAttr("fill-opacity",a.alphaReal),b.setAttr("stroke-opacity",a.outlineAlphaReal),b.setAttr("stroke-width",a.outlineThicknessReal/c));(c=a.pattern)&&b.pattern(c,this.mapScale);(b=a.imageLabel)&&!a.labelInactive&&b.setAttr("fill",a.labelColorReal)}},zoomToRectangle:function(a,b,c,d){var f=this.realWidth,e=this.realHeight,g=this.mapSet.scale,h=this.zoomControl,f=AmCharts.fitToBounds(c/f>d/e?.8*f/(c*g):.8*e/(d*g),h.minZoomLevel,h.maxZoomLevel);this.zoomToMapXY(f,(a+c/2)*g,(b+
167
+ d/2)*g)},zoomToLatLongRectangle:function(a,b,c,d){var f=this.dataProvider,e=this.zoomControl,g=Math.abs(c-a),h=Math.abs(b-d),k=Math.abs(f.rightLongitude-f.leftLongitude),f=Math.abs(f.topLatitude-f.bottomLatitude),e=AmCharts.fitToBounds(g/k>h/f?.8*k/g:.8*f/h,e.minZoomLevel,e.maxZoomLevel);this.zoomToLongLat(e,a+(c-a)/2,d+(b-d)/2)},getGroupById:function(a){var b=[];this.getGroup(this.imagesProcessor.allObjects,a,b);this.getGroup(this.linesProcessor.allObjects,a,b);this.getGroup(this.areasProcessor.allObjects,
168
+ a,b);return b},zoomToGroup:function(a){a="object"==typeof a?a:this.getGroupById(a);var b,c,d,f,e;for(e=0;e<a.length;e++){var g=a[e].displayObject.getBBox(),h=g.y,k=g.y+g.height,l=g.x,g=g.x+g.width;if(h<b||isNaN(b))b=h;if(k>f||isNaN(f))f=k;if(l<c||isNaN(c))c=l;if(g>d||isNaN(d))d=g}a=this.mapSet.getBBox();c-=a.x;d-=a.x;f-=a.y;b-=a.y;this.zoomToRectangle(c,b,d-c,f-b)},getGroup:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=a[d];f.groupId==b&&c.push(f)}}},zoomToStageXY:function(a,b,c,d){if(!this.objectWasClicked){var f=
169
+ this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);f=this.zoomLevel();c=this.coordinateToLatitude((c-this.mapContainer.y)/f);b=this.coordinateToLongitude((b-this.mapContainer.x)/f);this.zoomToLongLat(a,b,c,d)}},zoomToLongLat:function(a,b,c,d){b=this.longitudeToCoordinate(b);c=this.latitudeToCoordinate(c);this.zoomToMapXY(a,b,c,d)},zoomToMapXY:function(a,b,c,d){var f=this.mapWidth,e=this.mapHeight;this.zoomTo(a,-(b/f)*a+this.realWidth/f/2,-(c/e)*a+this.realHeight/e/2,d)},zoomToObject:function(a){var b=
170
+ a.zoomLatitude,c=a.zoomLongitude,d=a.zoomLevel,f=this.zoomInstantly,e=a.zoomX,g=a.zoomY,h=this.realWidth,k=this.realHeight;isNaN(d)||(isNaN(b)||isNaN(c)?this.zoomTo(d,e,g,f):this.zoomToLongLat(d,c,b,f));this.zoomInstantly=!1;"MapImage"==a.objectType&&isNaN(a.zoomX)&&isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude)&&!isNaN(a.latitude)&&!isNaN(a.longitude)&&this.zoomToLongLat(a.zoomLevel,a.longitude,a.latitude);"MapArea"==a.objectType&&(e=a.displayObject.getBBox(),b=this.mapScale,c=e.x*
171
+ b,d=e.y*b,f=e.width*b,e=e.height*b,h=a.autoZoomReal&&isNaN(a.zoomLevel)?f/h>e/k?.8*h/f:.8*k/e:a.zoomLevel,k=this.zoomControl,h=AmCharts.fitToBounds(h,k.minZoomLevel,k.maxZoomLevel),isNaN(a.zoomX)&&isNaN(a.zoomY)&&isNaN(a.zoomLatitude)&&isNaN(a.zoomLongitude)&&(a=this.mapSet.getBBox(),this.zoomToMapXY(h,-a.x*b+c+f/2,-a.y*b+d+e/2)))},zoomToSelectedObject:function(){this.zoomToObject(this.selectedObject)},zoomTo:function(a,b,c,d){var f=this.zoomControl;a=AmCharts.fitToBounds(a,f.minZoomLevel,f.maxZoomLevel);
172
+ f=this.zoomLevel();isNaN(b)&&(b=this.realWidth/this.mapWidth,b=(this.zoomX()-.5*b)*(a/f)+.5*b);isNaN(c)&&(c=this.realHeight/this.mapHeight,c=(this.zoomY()-.5*c)*(a/f)+.5*c);this.stopAnimation();isNaN(a)||(f=this.mapContainer,this.initialX=f.x,this.initialY=f.y,this.initialScale=f.scale,this.finalX=this.mapWidth*b,this.finalY=this.mapHeight*c,this.finalScale=a,this.finalX!=this.initialX||this.finalY!=this.initialY||this.finalScale!=this.initialScale?d?(this.tweenPercent=1,this.rescaleMapAndObjects(),
173
+ this.wheelBusy=!1):this.animateMap():this.wheelBusy=!1)},loadXml:function(a){var b;b=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");b.overrideMimeType&&b.overrideMimeType("text/xml");b.open("GET",a,!1);b.send();this.parseXMLObject(b.responseXML);this.svgData&&this.buildEverything()},stopAnimation:function(){this.frame=this.totalFrames},processObjects:function(){var a=this.container,b=this.stageImagesContainer;b&&b.remove();this.stageImagesContainer=b=a.set();this.trendLinesSet.push(b);
174
+ var c=this.stageLinesContainer;c&&c.remove();this.stageLinesContainer=c=a.set();this.trendLinesSet.push(c);var d=this.mapImagesContainer;d&&d.remove();this.mapImagesContainer=d=a.set();this.mapContainer.push(d);var f=this.mapLinesContainer;f&&f.remove();this.mapLinesContainer=f=a.set();this.mapContainer.push(f);this.linesAboveImages?(d.toFront(),b.toFront(),f.toFront(),c.toFront()):(f.toFront(),c.toFront(),d.toFront(),b.toFront());if(a=this.selectedObject)this.imagesProcessor.reset(),this.linesProcessor.reset(),
175
+ this.linesAboveImages?(this.imagesProcessor.process(a),this.linesProcessor.process(a)):(this.linesProcessor.process(a),this.imagesProcessor.process(a));this.rescaleObjects()},processAreas:function(){this.areasProcessor.process(this.dataProvider)},buildSVGMap:function(){var a=this.svgData.g.path,b=this.container,c=b.set();void 0===a.length&&(a=[a]);var d;for(d=0;d<a.length;d++){var f=a[d],e=f.d,g=f.title;f.titleTr&&(g=f.titleTr);e=b.path(e);e.id=f.id;this.svgAreasById[f.id]={area:e,title:g,className:f["class"]};
176
+ this.svgAreas.push(e);c.push(e)}this.mapSet=c;this.mapContainer.push(c);this.resizeMap()},addObjectEventListeners:function(a,b){var c=this;a.mouseup(function(a){c.clickMapObject(b,a)}).mouseover(function(a){c.rollOverMapObject(b,!0,a)}).mouseout(function(a){c.rollOutMapObject(b,a)}).touchend(function(a){c.clickMapObject(b,a)}).touchstart(function(a){c.rollOverMapObject(b,!0,a)})},checkIfSelected:function(a){var b=this.selectedObject;if(b==a)return!0;if(b=b.groupId){var b=this.getGroupById(b),c;for(c=
177
+ 0;c<b.length;c++)if(b[c]==a)return!0}return!1},clearMap:function(){this.chartDiv.innerHTML="";this.clearObjectList()},clearObjectList:function(){var a=this.objectList;a&&a.div&&(a.div.innerHTML="")},checkIfLast:function(a){if(a){var b=a.parentNode;if(b&&b.lastChild==a)return!0}return!1},showAsRolledOver:function(a){var b=a.displayObject;if(!a.showAsSelected&&b&&!a.isOver){b.node.onmouseout=function(){};b.node.onmouseover=function(){};b.node.onclick=function(){};!a.isFirst&&a.bringForwardOnHover&&
178
+ (b.toFront(),a.isFirst=!0);var c=a.rollOverColorReal,d;if(void 0!=c)if("MapImage"==a.objectType)(d=a.image)&&d.setAttr("fill",c);else if("MapLine"==a.objectType){if((d=a.lineSvg)&&d.setAttr("stroke",c),d=a.arrowSvg)d.setAttr("fill",c),d.setAttr("stroke",c)}else b.setAttr("fill",c);(c=a.imageLabel)&&!a.labelInactive&&(d=a.labelRollOverColorReal,void 0!=d&&c.setAttr("fill",d));c=a.rollOverOutlineColorReal;void 0!=c&&("MapImage"==a.objectType?(d=a.image)&&d.setAttr("stroke",c):b.setAttr("stroke",c));
179
+ if("MapArea"==a.objectType){c=this.areasSettings;d=a.rollOverAlphaReal;isNaN(d)||b.setAttr("fill-opacity",d);d=c.rollOverOutlineAlpha;isNaN(d)||b.setAttr("stroke-opacity",d);d=1;this.areasSettings.adjustOutlineThickness&&(d=this.zoomLevel());var f=c.rollOverOutlineThickness;isNaN(f)||b.setAttr("stroke-width",f/d);(c=c.rollOverPattern)&&b.pattern(c,this.mapScale)}"MapImage"==a.objectType&&(c=a.rollOverScaleReal,isNaN(c)||1==c||(a.tempScale=b.scale,b.translate(b.x,b.y,b.scale*c,!0)));this.useHandCursorOnClickableOjects&&
180
+ this.checkIfClickable(a)&&b.setAttr("cursor","pointer");this.addObjectEventListeners(b,a);a.isOver=!0}},rollOverMapObject:function(a,b,c){if(this.chartCreated){this.handleMouseMove();var d=this.previouslyHovered;d&&d!=a?(!1===this.checkIfSelected(d)&&(this.returnInitialColor(d,!0),this.previouslyHovered=null),this.hideBalloon()):clearTimeout(this.hoverInt);if(!this.preventHover){if(!1===this.checkIfSelected(a)){if(d=a.groupId){var d=this.getGroupById(d),f;for(f=0;f<d.length;f++)d[f]!=a&&this.showAsRolledOver(d[f])}this.showAsRolledOver(a)}else(d=
181
+ a.displayObject)&&(this.allowClickOnSelectedObject?d.setAttr("cursor","pointer"):d.setAttr("cursor","default"));if(this.showDescriptionOnHover)this.showDescription(a);else if((this.showBalloonOnSelectedObject||!this.checkIfSelected(a))&&!1!==b&&(f=this.balloon,b=a.colorReal,d="",void 0!==b&&this.useObjectColorForBalloon||(b=f.fillColor),(f=a.balloonTextReal)&&(d=this.formatString(f,a)),this.balloonLabelFunction&&(d=this.balloonLabelFunction(a,this)),d&&""!==d)){var e,g;"MapArea"==a.objectType&&(g=
182
+ this.getAreaCenterLatitude(a),e=this.getAreaCenterLongitude(a),g=this.latitudeToY(g),e=this.longitudeToX(e));this.showBalloon(d,b,this.mouseIsOver,e,g)}c={type:"rollOverMapObject",mapObject:a,chart:this,event:c};this.fire(c.type,c);this.previouslyHovered=a}}},longitudeToX:function(a){return this.longitudeToCoordinate(a)*this.zoomLevel()+this.mapContainer.x},latitudeToY:function(a){return this.latitudeToCoordinate(a)*this.zoomLevel()+this.mapContainer.y},rollOutMapObject:function(a,b){this.hideBalloon();
183
+ if(this.chartCreated&&a.isOver){this.checkIfSelected(a)||this.returnInitialColor(a);var c={type:"rollOutMapObject",mapObject:a,chart:this,event:b};this.fire(c.type,c)}},formatString:function(a,b){var c=this.nf,d=this.pf,f=b.title;b.titleTr&&(f=b.titleTr);void 0==f&&(f="");var e=b.value,e=isNaN(e)?"":AmCharts.formatNumber(e,c),c=b.percents,c=isNaN(c)?"":AmCharts.formatNumber(c,d),d=b.description;void 0==d&&(d="");var g=b.customData;void 0==g&&(g="");return a=AmCharts.massReplace(a,{"[[title]]":f,"[[value]]":e,
184
+ "[[percent]]":c,"[[description]]":d,"[[customData]]":g})},clickMapObject:function(a,b){this.hideBalloon();if(this.chartCreated&&!this.preventHover&&!this.mapWasDragged&&this.checkIfClickable(a)&&!this.mapWasPinched){this.selectObject(a);var c={type:"clickMapObject",mapObject:a,chart:this,event:b};this.fire(c.type,c);this.objectWasClicked=!0}},checkIfClickable:function(a){var b=this.allowClickOnSelectedObject;return this.selectedObject==a&&b?!0:this.selectedObject!=a||b?!0===a.selectable||"MapArea"==
185
+ a.objectType&&a.autoZoomReal||a.url||a.linkToObject||0<a.images.length||0<a.lines.length||!isNaN(a.zoomLevel)||!isNaN(a.zoomX)||!isNaN(a.zoomY)||a.description?!0:!1:!1},handleResize:function(){(AmCharts.isPercents(this.width)||AmCharts.isPercents(this.height))&&this.invalidateSize();this.renderFix()},resizeMap:function(){var a=this.mapSet;if(a)if(this.fitMapToContainer){var b=a.getBBox(),c=this.realWidth,d=this.realHeight,f=b.width,e=b.height,c=f/c>e/d?c/f:d/e;a.translate(-b.x*c,-b.y*c,c);this.mapScale=
186
+ c;this.mapHeight=e*c;this.mapWidth=f*c}else b=group.transform.match(/([\-]?[\d.]+)/g),a.translate(b[0],b[1],b[2])},zoomIn:function(){this.skipClick=!0;var a=this.zoomLevel()*this.zoomControl.zoomFactor;this.zoomTo(a)},zoomOut:function(){this.skipClick=!0;var a=this.zoomLevel()/this.zoomControl.zoomFactor;this.zoomTo(a)},moveLeft:function(){this.skipClick=!0;var a=this.zoomX()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveRight:function(){this.skipClick=!0;var a=this.zoomX()-
187
+ this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),a,this.zoomY())},moveUp:function(){this.skipClick=!0;var a=this.zoomY()+this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},moveDown:function(){this.skipClick=!0;var a=this.zoomY()-this.zoomControl.panStepSize;this.zoomTo(this.zoomLevel(),this.zoomX(),a)},zoomX:function(){return this.mapSet?Math.round(1E4*this.mapContainer.x/this.mapWidth)/1E4:NaN},zoomY:function(){return this.mapSet?Math.round(1E4*this.mapContainer.y/
188
+ this.mapHeight)/1E4:NaN},goHome:function(){this.selectObject(this.dataProvider);var a={type:"homeButtonClicked",chart:this};this.fire(a.type,a)},zoomLevel:function(){return Math.round(1E5*this.mapContainer.scale)/1E5},showDescriptionAndGetUrl:function(){var a=this.selectedObject;if(a){this.showDescription();var b=a.url;if(b)AmCharts.getURL(b,a.urlTarget);else if(b=a.linkToObject){if("string"==typeof b){var c=this.getObjectById(b);if(c){this.selectObject(c);return}}b&&a.passZoomValuesToTarget&&(b.zoomLatitude=
189
+ this.zoomLatitude(),b.zoomLongitude=this.zoomLongitude(),b.zoomLevel=this.zoomLevel());this.extendMapData(b)||this.selectObject(b)}}},extendMapData:function(a){var b=a.objectType;if("MapImage"!=b&&"MapArea"!=b&&"MapLine"!=b)return AmCharts.extend(a,new AmCharts.MapData,!0),this.dataProvider=a,this.zoomInstantly=!0,this.validateData(),!0},showDescription:function(a){a||(a=this.selectedObject);this.allowMultipleDescriptionWindows||this.closeAllDescriptions();if(a.description){var b=a.descriptionWindow;
190
+ b&&b.close();b=new AmCharts.DescriptionWindow;a.descriptionWindow=b;var c=a.descriptionWindowWidth,d=a.descriptionWindowHeight,f=a.descriptionWindowLeft,e=a.descriptionWindowTop,g=a.descriptionWindowRight,h=a.descriptionWindowBottom;isNaN(g)||(f=this.realWidth-g);isNaN(h)||(e=this.realHeight-h);var k=a.descriptionWindowX;isNaN(k)||(f=k);k=a.descriptionWindowY;isNaN(k)||(e=k);isNaN(f)&&(f=this.mouseX,f=f>this.realWidth/2?f-c-20:f+20);isNaN(e)&&(e=this.mouseY);b.maxHeight=d;k=a.title;a.titleTr&&(k=
191
+ a.titleTr);b.show(this,this.descriptionsDiv,a.description,k);a=b.div.style;a.position="absolute";a.width=c+"px";a.maxHeight=d+"px";isNaN(h)||(e-=b.div.offsetHeight);isNaN(g)||(f-=b.div.offsetWidth);a.left=f+"px";a.top=e+"px"}},parseXMLObject:function(a){var b={root:{}};this.parseXMLNode(b,"root",a);this.svgData=b.root.svg;this.getBounds()},getBounds:function(){var a=this.dataProvider;try{var b=this.svgData.defs["amcharts:ammap"];a.leftLongitude=Number(b.leftLongitude);a.rightLongitude=Number(b.rightLongitude);
192
+ a.topLatitude=Number(b.topLatitude);a.bottomLatitude=Number(b.bottomLatitude);a.projection=b.projection;var c=b.wrappedLongitudes;c&&(a.rightLongitude+=360);a.wrappedLongitudes=c}catch(d){}},recalcLongitude:function(a){var b=this.dataProvider.wrappedLongitudes;return void 0!=a&&b?a<this.dataProvider.leftLongitude?Number(a)+360:a:a},latitudeToCoordinate:function(a){var b,c=this.dataProvider;if(this.mapSet){b=c.topLatitude;var d=c.bottomLatitude;"mercator"==c.projection&&(a=this.mercatorLatitudeToCoordinate(a),
193
+ b=this.mercatorLatitudeToCoordinate(b),d=this.mercatorLatitudeToCoordinate(d));b=(a-b)/(d-b)*this.mapHeight}return b},longitudeToCoordinate:function(a){a=this.recalcLongitude(a);var b,c=this.dataProvider;this.mapSet&&(b=c.leftLongitude,b=(a-b)/(c.rightLongitude-b)*this.mapWidth);return b},mercatorLatitudeToCoordinate:function(a){89.5<a&&(a=89.5);-89.5>a&&(a=-89.5);a=AmCharts.degreesToRadians(a);a=.5*Math.log((1+Math.sin(a))/(1-Math.sin(a)));return AmCharts.radiansToDegrees(a/2)},zoomLatitude:function(){return this.coordinateToLatitude((-this.mapContainer.y+
194
+ this.previousHeight/2)/this.zoomLevel())},zoomLongitude:function(){return this.coordinateToLongitude((-this.mapContainer.x+this.previousWidth/2)/this.zoomLevel())},getAreaCenterLatitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().y*b+(a.y+a.height/2)*b;return this.coordinateToLatitude(a)},getAreaCenterLongitude:function(a){a=a.displayObject.getBBox();var b=this.mapScale;a=-this.mapSet.getBBox().x*b+(a.x+a.width/2)*b;return this.coordinateToLongitude(a)},coordinateToLatitude:function(a){var b;
195
+ if(this.mapSet){var c=this.dataProvider,d=c.bottomLatitude,f=c.topLatitude;b=this.mapHeight;"mercator"==c.projection?(c=this.mercatorLatitudeToCoordinate(d),f=this.mercatorLatitudeToCoordinate(f),a=2*Math.atan(Math.exp(2*(a*(c-f)/b+f)*Math.PI/180))-.5*Math.PI,b=AmCharts.radiansToDegrees(a)):b=a/b*(d-f)+f}return Math.round(1E6*b)/1E6},coordinateToLongitude:function(a){var b,c=this.dataProvider;this.mapSet&&(b=a/this.mapWidth*(c.rightLongitude-c.leftLongitude)+c.leftLongitude);return Math.round(1E6*
196
+ b)/1E6},milesToPixels:function(a){var b=this.dataProvider;return this.mapWidth/(b.rightLongitude-b.leftLongitude)*a/69.172},kilometersToPixels:function(a){var b=this.dataProvider;return this.mapWidth/(b.rightLongitude-b.leftLongitude)*a/111.325},handleBackgroundClick:function(a){if(this.backgroundZoomsToTop&&!this.mapWasDragged){var b=this.dataProvider;if(this.checkIfClickable(b))this.clickMapObject(b);else{a=b.zoomX;var c=b.zoomY,d=b.zoomLongitude,f=b.zoomLatitude,b=b.zoomLevel;isNaN(a)||isNaN(c)||
197
+ this.zoomTo(b,a,c);isNaN(d)||isNaN(f)||this.zoomToLongLat(b,d,f,!0)}}},parseXMLNode:function(a,b,c,d){void 0===d&&(d="");var f,e,g;if(c){var h=c.childNodes.length;for(f=0;f<h;f++){e=c.childNodes[f];var k=e.nodeName,l=e.nodeValue?this.trim(e.nodeValue):"",m=!1;e.attributes&&0<e.attributes.length&&(m=!0);if(0!==e.childNodes.length||""!==l||!1!==m)if(3==e.nodeType||4==e.nodeType){if(""!==l){e=0;for(g in a[b])a[b].hasOwnProperty(g)&&e++;e?a[b]["#text"]=l:a[b]=l}}else if(1==e.nodeType){var n;void 0!==
198
+ a[b][k]?void 0===a[b][k].length?(n=a[b][k],a[b][k]=[],a[b][k].push(n),a[b][k].push({}),n=a[b][k][1]):"object"==typeof a[b][k]&&(a[b][k].push({}),n=a[b][k][a[b][k].length-1]):(a[b][k]={},n=a[b][k]);if(e.attributes&&e.attributes.length)for(l=0;l<e.attributes.length;l++)n[e.attributes[l].name]=e.attributes[l].value;void 0!==a[b][k].length?this.parseXMLNode(a[b][k],a[b][k].length-1,e,d+" "):this.parseXMLNode(a[b],k,e,d+" ")}}e=0;c="";for(g in a[b])"#text"==g?c=a[b][g]:e++;0===e&&void 0===a[b].length&&
199
+ (a[b]=c)}},doDoubleClickZoom:function(){if(!this.mapWasDragged){var a=this.zoomLevel()*this.zoomControl.zoomFactor;this.zoomToStageXY(a,this.mouseX,this.mouseY)}},getDevInfo:function(){var a=this.zoomLevel(),a={chart:this,type:"writeDevInfo",zoomLevel:a,zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLatitude:this.zoomLatitude(),zoomLongitude:this.zoomLongitude(),latitude:this.coordinateToLatitude((this.mouseY-this.mapContainer.y)/a),longitude:this.coordinateToLongitude((this.mouseX-this.mapContainer.x)/
200
+ a),left:this.mouseX,top:this.mouseY,right:this.realWidth-this.mouseX,bottom:this.realHeight-this.mouseY,percentLeft:Math.round(this.mouseX/this.realWidth*100)+"%",percentTop:Math.round(this.mouseY/this.realHeight*100)+"%",percentRight:Math.round((this.realWidth-this.mouseX)/this.realWidth*100)+"%",percentBottom:Math.round((this.realHeight-this.mouseY)/this.realHeight*100)+"%"},b="zoomLevel:"+a.zoomLevel+", zoomLongitude:"+a.zoomLongitude+", zoomLatitude:"+a.zoomLatitude+"\n",b=b+("zoomX:"+a.zoomX+
201
+ ", zoomY:"+a.zoomY+"\n"),b=b+("latitude:"+a.latitude+", longitude:"+a.longitude+"\n"),b=b+("left:"+a.left+", top:"+a.top+"\n"),b=b+("right:"+a.right+", bottom:"+a.bottom+"\n"),b=b+('left:"'+a.percentLeft+'", top:"'+a.percentTop+'"\n'),b=b+('right:"'+a.percentRight+'", bottom:"'+a.percentBottom+'"\n');a.str=b;this.fire(a.type,a);return a},getXY:function(a,b,c){void 0!==a&&(-1!=String(a).indexOf("%")?(a=Number(a.split("%").join("")),c&&(a=100-a),a=Number(a)*b/100):c&&(a=b-a));return a},getObjectById:function(a){var b=
202
+ this.dataProvider;if(b.areas){var c=this.getObject(a,b.areas);if(c)return c}if(c=this.getObject(a,b.images))return c;if(a=this.getObject(a,b.lines))return a},getObject:function(a,b){if(b){var c;for(c=0;c<b.length;c++){var d=b[c];if(d.id==a)return d;if(d.areas){var f=this.getObject(a,d.areas);if(f)return f}if(f=this.getObject(a,d.images))return f;if(d=this.getObject(a,d.lines))return d}}},parseData:function(){var a=this.dataProvider;this.processObject(a.areas,a,"area");this.processObject(a.images,
203
+ a,"image");this.processObject(a.lines,a,"line")},processObject:function(a,b,c){if(a){var d;for(d=0;d<a.length;d++){var f=a[d];f.parentObject=b;"area"==c&&AmCharts.extend(f,new AmCharts.MapArea(this.theme),!0);"image"==c&&(f=AmCharts.extend(f,new AmCharts.MapImage(this.theme),!0));"line"==c&&(f=AmCharts.extend(f,new AmCharts.MapLine(this.theme),!0));a[d]=f;f.areas&&this.processObject(f.areas,f,"area");f.images&&this.processObject(f.images,f,"image");f.lines&&this.processObject(f.lines,f,"line")}}},
204
+ positionChanged:function(){var a={type:"positionChanged",zoomX:this.zoomX(),zoomY:this.zoomY(),zoomLevel:this.zoomLevel(),chart:this};this.fire(a.type,a)},getX:function(a,b){return this.getXY(a,this.realWidth,b)},getY:function(a,b){return this.getXY(a,this.realHeight,b)},trim:function(a){if(a){var b;for(b=0;b<a.length;b++)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=a.substring(b);break}for(b=a.length-
205
+ 1;0<=b;b--)if(-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(b))){a=a.substring(0,b+1);break}return-1===" \n\r\t\f\x0B\u00a0\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u200b\u2028\u2029\u3000".indexOf(a.charAt(0))?a:""}},destroy:function(){var a=this.svgAreas;if(a)for(var b=0;b<a.length;b++);AmCharts.AmMap.base.destroy.call(this)}});AmCharts.ZoomControl=AmCharts.Class({construct:function(a){this.cname="ZoomControl";this.panStepSize=.1;this.zoomFactor=2;this.maxZoomLevel=64;this.minZoomLevel=1;this.zoomControlEnabled=this.panControlEnabled=!0;this.buttonRollOverColor="#CC0000";this.buttonFillColor="#990000";this.buttonFillAlpha=1;this.buttonBorderColor="#FFFFFF";this.buttonIconAlpha=this.buttonBorderThickness=this.buttonBorderAlpha=1;this.gridColor="#FFFFFF";this.homeIconFile="homeIcon.gif";this.gridBackgroundColor="#000000";
206
+ this.gridBackgroundAlpha=.15;this.gridAlpha=1;this.buttonSize=18;this.iconSize=11;this.buttonCornerRadius=0;this.gridHeight=150;this.top=this.left=10;AmCharts.applyTheme(this,a,this.cname)},init:function(a,b){var c=this;c.chart=a;AmCharts.remove(c.set);var d=b.set(),f=c.buttonSize,e=c.zoomControlEnabled,g=c.panControlEnabled,h=c.buttonFillColor,k=c.buttonFillAlpha,l=c.buttonBorderThickness,m=c.buttonBorderColor,n=c.buttonBorderAlpha,r=c.buttonCornerRadius,p=c.buttonRollOverColor,v=c.gridHeight,x=
207
+ c.zoomFactor,t=c.minZoomLevel,z=c.maxZoomLevel,A=c.buttonIconAlpha,w=a.getX(c.left),s=a.getY(c.top);isNaN(c.right)||(w=a.getX(c.right,!0),w=g?w-3*f:w-f);isNaN(c.bottom)||(s=a.getY(c.bottom,!0),e&&(s-=v+3*f),s=g?s-3*f:s+f);d.translate(w,s);c.previousDY=NaN;var u;if(e){u=b.set();d.push(u);c.set=d;c.zoomSet=u;s=AmCharts.rect(b,f+6,v+2*f+6,c.gridBackgroundColor,c.gridBackgroundAlpha,0,0,0,4);s.translate(-3,-3);s.mouseup(function(){c.handleBgUp()});u.push(s);s=new AmCharts.SimpleButton;s.setIcon(a.pathToImages+
208
+ "plus.gif",c.iconSize);s.setClickHandler(a.zoomIn,a);s.init(b,f,f,h,k,l,m,n,r,p,A);u.push(s.set);s=new AmCharts.SimpleButton;s.setIcon(a.pathToImages+"minus.gif",c.iconSize);s.setClickHandler(a.zoomOut,a);s.init(b,f,f,h,k,l,m,n,r,p,A);s.set.translate(0,v+f);u.push(s.set);var w=Math.log(z/t)/Math.log(x)+1,e=v/w,q;for(q=1;q<w;q++)s=f+q*e,s=AmCharts.line(b,[1,f-2],[s,s],c.gridColor,c.gridAlpha,1),u.push(s);s=new AmCharts.SimpleButton;s.setDownHandler(c.draggerDown,c);s.setClickHandler(c.draggerUp,c);
209
+ s.init(b,f,e,h,k,l,m,n,r,p);u.push(s.set);c.dragger=s.set;c.previousY=NaN;v-=e;t=Math.log(t/100)/Math.log(x);x=Math.log(z/100)/Math.log(x);c.realStepSize=v/(x-t);c.realGridHeight=v;c.stepMax=x}g&&(g=b.set(),d.push(g),u&&u.translate(f,4*f),u=new AmCharts.SimpleButton,u.setIcon(a.pathToImages+"panLeft.gif",c.iconSize),u.setClickHandler(a.moveLeft,a),u.init(b,f,f,h,k,l,m,n,r,p,A),u.set.translate(0,f),g.push(u.set),u=new AmCharts.SimpleButton,u.setIcon(a.pathToImages+"panRight.gif",c.iconSize),u.setClickHandler(a.moveRight,
210
+ a),u.init(b,f,f,h,k,l,m,n,r,p,A),u.set.translate(2*f,f),g.push(u.set),u=new AmCharts.SimpleButton,u.setIcon(a.pathToImages+"panUp.gif",c.iconSize),u.setClickHandler(a.moveUp,a),u.init(b,f,f,h,k,l,m,n,r,p,A),u.set.translate(f,0),g.push(u.set),u=new AmCharts.SimpleButton,u.setIcon(a.pathToImages+"panDown.gif",c.iconSize),u.setClickHandler(a.moveDown,a),u.init(b,f,f,h,k,l,m,n,r,p,A),u.set.translate(f,2*f),g.push(u.set),k=new AmCharts.SimpleButton,k.setIcon(a.pathToImages+c.homeIconFile,c.iconSize),k.setClickHandler(a.goHome,
211
+ a),k.init(b,f,f,h,0,0,m,0,r,p,A),k.set.translate(f,f),g.push(k.set),d.push(g))},draggerDown:function(){this.chart.stopDrag();this.isDragging=!0},draggerUp:function(){this.isDragging=!1},handleBgUp:function(){var a=this.chart,b=100*Math.pow(this.zoomFactor,this.stepMax-(a.mouseY-this.zoomSet.y-this.set.y-this.buttonSize-this.realStepSize/2)/this.realStepSize);a.zoomTo(b)},update:function(){var a,b=this.zoomFactor,c=this.realStepSize,d=this.stepMax,f=this.dragger,e=this.buttonSize,g=this.chart;this.isDragging?
212
+ (g.stopDrag(),a=f.y+(g.mouseY-this.previousY),a=AmCharts.fitToBounds(a,e,this.realGridHeight+e),c=100*Math.pow(b,d-(a-e)/c),g.zoomTo(c,NaN,NaN,!0)):(a=Math.log(g.zoomLevel()/100)/Math.log(b),a=(d-a)*c+e);this.previousY=g.mouseY;this.previousDY!=a&&f&&(f.translate(0,a),this.previousDY=a)}});AmCharts.SimpleButton=AmCharts.Class({construct:function(){},init:function(a,b,c,d,f,e,g,h,k,l,m){var n=this;n.rollOverColor=l;n.color=d;l=a.set();n.set=l;d=AmCharts.rect(a,b,c,d,f,e,g,h,k);l.push(d);if(f=n.iconPath)e=n.iconSize,a=a.image(f,(b-e)/2,(c-e)/2,e,e),l.push(a),a.setAttr("opacity",m),a.mousedown(function(){n.handleDown()}).mouseup(function(){n.handleUp()}).mouseover(function(){n.handleOver()}).mouseout(function(){n.handleOut()});d.mousedown(function(){n.handleDown()}).mouseup(function(){n.handleUp()}).mouseover(function(){n.handleOver()}).mouseout(function(){n.handleOut()});
213
+ n.bg=d},setIcon:function(a,b){this.iconPath=a;this.iconSize=b},setClickHandler:function(a,b){this.clickHandler=a;this.scope=b},setDownHandler:function(a,b){this.downHandler=a;this.scope=b},handleUp:function(){var a=this.clickHandler;a&&a.call(this.scope)},handleDown:function(){var a=this.downHandler;a&&a.call(this.scope)},handleOver:function(){this.bg.setAttr("fill",this.rollOverColor)},handleOut:function(){this.bg.setAttr("fill",this.color)}});AmCharts.SmallMap=AmCharts.Class({construct:function(a){this.cname="SmallMap";this.mapColor="#e6e6e6";this.rectangleColor="#FFFFFF";this.top=this.right=10;this.minimizeButtonWidth=16;this.backgroundColor="#9A9A9A";this.backgroundAlpha=1;this.borderColor="#FFFFFF";this.borderThickness=3;this.borderAlpha=1;this.size=.2;AmCharts.applyTheme(this,a,this.cname)},init:function(a,b){var c=this;c.chart=a;c.container=b;c.width=a.realWidth*c.size;c.height=a.realHeight*c.size;AmCharts.remove(c.set);var d=b.set();
214
+ c.set=d;var f=b.set();c.allSet=f;d.push(f);c.buildSVGMap();var e=c.borderThickness,g=c.borderColor,h=AmCharts.rect(b,c.width+e,c.height+e,c.backgroundColor,c.backgroundAlpha,e,g,c.borderAlpha);h.translate(-e/2,-e/2);f.push(h);h.toBack();var k,l,h=c.minimizeButtonWidth,m=new AmCharts.SimpleButton;m.setIcon(a.pathToImages+"arrowDown.gif",h);m.setClickHandler(c.minimize,c);m.init(b,h,h,g,1,1,g,1);m=m.set;c.downButtonSet=m;d.push(m);var n=new AmCharts.SimpleButton;n.setIcon(a.pathToImages+"arrowUp.gif",
215
+ h);n.setClickHandler(c.maximize,c);n.init(b,h,h,g,1,1,g,1);g=n.set;c.upButtonSet=g;g.hide();d.push(g);var r,p;isNaN(c.top)||(k=a.getY(c.top)+e,p=0);isNaN(c.bottom)||(k=a.getY(c.bottom,!0)-c.height-e,p=c.height-h+e/2);isNaN(c.left)||(l=a.getX(c.left)+e,r=-e/2);isNaN(c.right)||(l=a.getX(c.right,!0)-c.width-e,r=c.width-h+e/2);e=b.set();e.clipRect(1,1,c.width,c.height);f.push(e);c.rectangleC=e;d.translate(l,k);m.translate(r,p);g.translate(r,p);f.mouseup(function(){c.handleMouseUp()});c.drawRectangle()},
216
+ minimize:function(){this.downButtonSet.hide();this.upButtonSet.show();this.allSet.hide()},maximize:function(){this.downButtonSet.show();this.upButtonSet.hide();this.allSet.show()},buildSVGMap:function(){var a=this.chart,b={fill:this.mapColor,stroke:this.mapColor,"stroke-opacity":1},c=a.svgData.g.path,d=this.container,f=d.set(),e;for(e=0;e<c.length;e++){var g=d.path(c[e].d).attr(b);f.push(g)}this.allSet.push(f);b=f.getBBox();c=this.size*a.mapScale;d=-b.x*c;e=-b.y*c;var h=g=0;a.centerMap&&(g=(this.width-
217
+ b.width*c)/2,h=(this.height-b.height*c)/2);this.mapWidth=b.width*c;this.mapHeight=b.height*c;this.dx=g;this.dy=h;f.translate(d+g,e+h,c)},update:function(){var a=this.chart,b=a.zoomLevel(),c=this.width,d=a.mapContainer,a=c/(a.realWidth*b),c=c/b,b=this.height/b,f=this.rectangle;f.translate(-d.x*a+this.dx,-d.y*a+this.dy);0<c&&0<b&&(f.setAttr("width",c),f.setAttr("height",b));this.rWidth=c;this.rHeight=b},drawRectangle:function(){var a=this.rectangle;AmCharts.remove(a);a=AmCharts.rect(this.container,
218
+ 10,10,"#000",0,1,this.rectangleColor,1);this.rectangleC.push(a);this.rectangle=a},handleMouseUp:function(){var a=this.chart,b=a.zoomLevel();a.zoomTo(b,-((a.mouseX-this.set.x-this.dx-this.rWidth/2)/this.mapWidth)*b,-((a.mouseY-this.set.y-this.dy-this.rHeight/2)/this.mapHeight)*b)}});AmCharts.AreasProcessor=AmCharts.Class({construct:function(a){this.chart=a},process:function(a){this.updateAllAreas();this.allObjects=[];a=a.areas;var b=this.chart,c,d=a.length,f,e,g=0,h=b.svgAreasById,k=!1,l=!1;for(f=0;f<d;f++){e=a[f];e=e.value;if(!1===k||k<e)k=e;if(!1===l||l>e)l=e;isNaN(e)||(g+=Math.abs(e))}isNaN(b.minValue)||(l=b.minValue);isNaN(b.maxValue)||(k=b.maxValue);b.maxValueReal=k;b.minValueReal=l;for(f=0;f<d;f++)e=a[f],isNaN(e.value)?e.percents=void 0:e.percents=(e.value-l)/g*100;for(f=
219
+ 0;f<d;f++){e=a[f];var m=h[e.id];c=b.areasSettings;m&&m.className&&(g=b.areasClasses[m.className])&&(c=g,c=AmCharts.processObject(c,AmCharts.AreasSettings,b.theme));var n=c.color,r=c.alpha,p=c.outlineThickness,v=c.rollOverColor,x=c.selectedColor,t=c.rollOverAlpha,z=c.outlineColor,A=c.outlineAlpha,w=c.balloonText,s=c.selectable,u=c.pattern,q=c.rollOverOutlineColor,y=c.bringForwardOnHover;this.allObjects.push(e);e.chart=b;e.baseSettings=c;e.autoZoomReal=void 0==e.autoZoom?c.autoZoom:e.autoZoom;g=e.color;
220
+ void 0==g&&(g=n);var B=e.alpha;isNaN(B)&&(B=r);r=e.rollOverAlpha;isNaN(r)&&(r=t);isNaN(r)&&(r=B);t=e.rollOverColor;void 0==t&&(t=v);v=e.pattern;void 0==v&&(v=u);u=e.selectedColor;void 0==u&&(u=x);(x=e.balloonText)||(x=w);void 0==c.colorSolid||isNaN(e.value)||(w=Math.floor((e.value-l)/((k-l)/b.colorSteps)),w==b.colorSteps&&w--,colorPercent=1/(b.colorSteps-1)*w,e.colorReal=AmCharts.getColorFade(g,c.colorSolid,colorPercent));void 0!=e.color&&(e.colorReal=e.color);void 0==e.selectable&&(e.selectable=
221
+ s);void 0==e.colorReal&&(e.colorReal=n);n=e.outlineColor;void 0==n&&(n=z);z=e.outlineAlpha;isNaN(z)&&(z=A);A=e.outlineThickness;isNaN(A)&&(A=p);p=e.rollOverOutlineColor;void 0==p&&(p=q);void 0==e.bringForwardOnHover&&(e.bringForwardOnHover=y);e.alphaReal=B;e.rollOverColorReal=t;e.rollOverAlphaReal=r;e.balloonTextReal=x;e.selectedColorReal=u;e.outlineColorReal=n;e.outlineAlphaReal=z;e.rollOverOutlineColorReal=p;e.outlineThicknessReal=A;e.patternReal=v;AmCharts.processDescriptionWindow(c,e);if(m&&(c=
222
+ m.area,q=m.title,e.enTitle=m.title,q&&!e.title&&(e.title=q),(m=b.language)?(q=AmCharts.mapTranslations)&&(m=q[m])&&m[e.enTitle]&&(e.titleTr=m[e.enTitle]):e.titleTr=void 0,c)){e.displayObject=c;e.mouseEnabled&&b.addObjectEventListeners(c,e);var G;void 0!=g&&(G=g);void 0!=e.colorReal&&(G=e.showAsSelected||b.selectedObject==e?e.selectedColorReal:e.colorReal);c.setAttr("fill",G);c.setAttr("stroke",n);c.setAttr("stroke-opacity",z);c.setAttr("stroke-width",A);c.setAttr("fill-opacity",B);v&&c.pattern(v,
223
+ b.mapScale)}}},updateAllAreas:function(){var a=this.chart,b=a.areasSettings,c=b.unlistedAreasColor,d=b.unlistedAreasAlpha,f=b.unlistedAreasOutlineColor,e=b.unlistedAreasOutlineAlpha,g=a.svgAreas,h=a.dataProvider,k=h.areas,l={},m;for(m=0;m<k.length;m++)l[k[m].id]=k[m];for(m=0;m<g.length;m++)if(k=g[m],void 0!=c&&k.setAttr("fill",c),isNaN(d)||k.setAttr("fill-opacity",d),void 0!=f&&k.setAttr("stroke",f),isNaN(e)||k.setAttr("stroke-opacity",e),k.setAttr("stroke-width",b.outlineThickness),h.getAreasFromMap&&
224
+ !l[k.id]){var n=new AmCharts.MapArea(a.theme);n.parentObject=h;n.id=k.id;h.areas.push(n)}}});AmCharts.AreasSettings=AmCharts.Class({construct:function(a){this.cname="AreasSettings";this.alpha=1;this.autoZoom=!1;this.balloonText="[[title]]";this.color="#FFCC00";this.colorSolid="#990000";this.unlistedAreasAlpha=1;this.unlistedAreasColor="#DDDDDD";this.outlineColor="#FFFFFF";this.outlineAlpha=1;this.outlineThickness=.5;this.selectedColor=this.rollOverOutlineColor="#CC0000";this.unlistedAreasOutlineColor="#FFFFFF";this.unlistedAreasOutlineAlpha=1;this.descriptionWindowWidth=250;this.adjustOutlineThickness=
225
+ !1;this.bringForwardOnHover=!0;AmCharts.applyTheme(this,a,this.cname)}});AmCharts.ImagesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.images,c;for(c=0;c<b.length;c++)this.createImage(b[c],c);a.parentObject&&a.remainVisible&&this.process(a.parentObject)},createImage:function(a,b){var c=this.chart,d=c.container,f=c.mapImagesContainer,e=c.stageImagesContainer,g=c.imagesSettings;a.remove&&a.remove();var h=g.color,k=g.alpha,l=g.rollOverColor,m=g.selectedColor,n=g.balloonText,r=g.outlineColor,p=g.outlineAlpha,v=g.outlineThickness,
226
+ x=g.selectedScale,t=g.labelPosition,z=g.labelColor,A=g.labelFontSize,w=g.bringForwardOnHover,s=g.labelRollOverColor,u=g.selectedLabelColor;a.index=b;a.chart=c;a.baseSettings=c.imagesSettings;var q=d.set();a.displayObject=q;var y=a.color;void 0==y&&(y=h);h=a.alpha;isNaN(h)&&(h=k);void 0==a.bringForwardOnHover&&(a.bringForwardOnHover=w);k=a.outlineAlpha;isNaN(k)&&(k=p);p=a.rollOverColor;void 0==p&&(p=l);l=a.selectedColor;void 0==l&&(l=m);(m=a.balloonText)||(m=n);n=a.outlineColor;void 0==n&&(n=r);void 0==
227
+ n&&(n=y);r=a.outlineThickness;isNaN(r)&&(r=v);(v=a.labelPosition)||(v=t);t=a.labelColor;void 0==t&&(t=z);z=a.labelRollOverColor;void 0==z&&(z=s);s=a.selectedLabelColor;void 0==s&&(s=u);u=a.labelFontSize;isNaN(u)&&(u=A);A=a.selectedScale;isNaN(A)&&(A=x);isNaN(a.rollOverScale);a.colorReal=y;a.alphaReal=h;a.rollOverColorReal=p;a.balloonTextReal=m;a.selectedColorReal=l;a.labelColorReal=t;a.labelRollOverColorReal=z;a.selectedLabelColorReal=s;a.labelFontSizeReal=u;a.labelPositionReal=v;a.selectedScaleReal=
228
+ A;a.rollOverScaleReal=A;AmCharts.processDescriptionWindow(g,a);a.centeredReal=void 0==a.centered?g.centered:a.centered;u=a.type;s=a.imageURL;z=a.svgPath;p=a.width;t=a.height;g=a.scale;isNaN(a.percentWidth)||(p=a.percentWidth/100*c.realWidth);isNaN(a.percentHeight)||(t=a.percentHeight/100*c.realHeight);var B;s||u||z||(u="circle",p=1,k=h=0);l=x=0;A=a.selectedColorReal;if(u){isNaN(p)&&(p=10);isNaN(t)&&(t=10);"kilometers"==a.widthAndHeightUnits&&(p=c.kilometersToPixels(a.width),t=c.kilometersToPixels(a.height));
229
+ "miles"==a.widthAndHeightUnits&&(p=c.milesToPixels(a.width),t=c.milesToPixels(a.height));if("circle"==u||"bubble"==u)t=p;B=this.createPredefinedImage(y,n,r,u,p,t);l=x=0;a.centeredReal?(isNaN(a.right)||(x=p*g),isNaN(a.bottom)||(l=t*g)):(x=p*g/2,l=t*g/2);B.translate(x,l,g)}else s?(isNaN(p)&&(p=10),isNaN(t)&&(t=10),B=d.image(s,0,0,p,t),B.node.setAttribute("preserveAspectRatio","none"),B.setAttr("opacity",h),a.centeredReal&&(x=isNaN(a.right)?-p/2:p/2,l=isNaN(a.bottom)?-t/2:t/2,B.translate(x,l))):z&&(B=
230
+ d.path(z),n=B.getBBox(),a.centeredReal?(x=-n.x*g-n.width*g/2,isNaN(a.right)||(x=-x),l=-n.y*g-n.height*g/2,isNaN(a.bottom)||(l=-l)):x=l=0,B.translate(x,l,g),B.x=x,B.y=l);B&&(q.push(B),a.image=B,B.setAttr("stroke-opacity",k),B.setAttr("fill-opacity",h),B.setAttr("fill",y));!a.showAsSelected&&c.selectedObject!=a||void 0==A||B.setAttr("fill",A);y=null;void 0!==a.label&&(y=AmCharts.text(d,a.label,a.labelColorReal,c.fontFamily,a.labelFontSizeReal,a.labelAlign),B=a.labelBackgroundAlpha,(h=a.labelBackgroundColor)&&
231
+ 0<B&&(k=y.getBBox(),d=AmCharts.rect(d,k.width+16,k.height+10,h,B),q.push(d),a.labelBG=d),a.imageLabel=y,!a.labelInactive&&a.mouseEnabled&&c.addObjectEventListeners(y,a),q.push(y));isNaN(a.latitude)||isNaN(a.longitude)?e.push(q):f.push(q);q&&(q.rotation=a.rotation);this.updateSizeAndPosition(a);a.mouseEnabled&&c.addObjectEventListeners(q,a)},updateSizeAndPosition:function(a){var b=this.chart,c=a.displayObject,d=b.getX(a.left),f=b.getY(a.top),e=a.image.getBBox();isNaN(a.right)||(d=b.getX(a.right,!0)-
232
+ e.width*a.scale);isNaN(a.bottom)||(f=b.getY(a.bottom,!0)-e.height*a.scale);var g=a.longitude,h=a.latitude,e=this.objectsToResize;this.allSvgObjects.push(c);this.allObjects.push(a);var k=a.imageLabel;if(!isNaN(d)&&!isNaN(f))c.translate(d,f);else if(!isNaN(h)&&!isNaN(g)&&(d=b.longitudeToCoordinate(g),f=b.latitudeToCoordinate(h),c.translate(d,f,NaN,!0),a.fixedSize)){d=1;if(a.showAsSelected||b.selectedObject==a)d=a.selectedScaleReal;e.push({image:c,scale:d})}this.positionLabel(k,a,a.labelPositionReal)},
233
+ positionLabel:function(a,b,c){if(a){var d=b.image,f=0,e=0,g=0,h=0;d&&(h=d.getBBox(),e=d.y,f=d.x,g=h.width,h=h.height,b.svgPath&&(g*=b.scale,h*=b.scale));var d=a.getBBox(),k=d.width,l=d.height;"right"==c&&(f+=g+k/2+5,e+=h/2-2);"left"==c&&(f+=-k/2-5,e+=h/2-2);"top"==c&&(e-=l/2+3,f+=g/2);"bottom"==c&&(e+=h+l/2,f+=g/2);"middle"==c&&(f+=g/2,e+=h/2);a.translate(f+b.labelShiftX,e+b.labelShiftY);b.labelBG&&b.labelBG.translate(f-d.width/2+b.labelShiftX-9,e+b.labelShiftY-d.height/2-3)}},createPredefinedImage:function(a,
234
+ b,c,d,f,e){var g=this.chart.container,h;switch(d){case "circle":h=AmCharts.circle(g,f/2,a,1,c,b,1);break;case "rectangle":h=AmCharts.polygon(g,[-f/2,f/2,f/2,-f/2],[e/2,e/2,-e/2,-e/2],a,1,c,b,1);break;case "bubble":h=AmCharts.circle(g,f/2,a,1,c,b,1,!0)}return h},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.allLabels=[]}});AmCharts.ImagesSettings=AmCharts.Class({construct:function(a){this.cname="ImagesSettings";this.balloonText="[[title]]";this.alpha=1;this.borderAlpha=0;this.borderThickness=1;this.labelPosition="right";this.labelColor="#000000";this.labelFontSize=11;this.color="#000000";this.labelRollOverColor="#00CC00";this.centered=!0;this.rollOverScale=this.selectedScale=1;this.descriptionWindowWidth=250;this.bringForwardOnHover=!0;AmCharts.applyTheme(this,a,this.cname)}});AmCharts.LinesProcessor=AmCharts.Class({construct:function(a){this.chart=a;this.reset()},process:function(a){var b=a.lines,c=this.chart,d=c.linesSettings,f=this.objectsToResize,e=c.mapLinesContainer,g=c.stageLinesContainer,h=d.thickness,k=d.dashLength,l=d.arrow,m=d.arrowSize,n=d.arrowColor,r=d.arrowAlpha,p=d.color,v=d.alpha,x=d.rollOverColor,t=d.selectedColor,z=d.rollOverAlpha,A=d.balloonText,w=d.bringForwardOnHover,s=c.container,u;for(u=0;u<b.length;u++){var q=b[u];q.chart=c;q.baseSettings=d;var y=
235
+ s.set();q.displayObject=y;this.allSvgObjects.push(y);this.allObjects.push(q);q.mouseEnabled&&c.addObjectEventListeners(y,q);if(q.remainVisible||c.selectedObject==q.parentObject){var B=q.thickness;isNaN(B)&&(B=h);var G=q.dashLength;isNaN(G)&&(G=k);var C=q.color;void 0==C&&(C=p);var D=q.alpha;isNaN(D)&&(D=v);var E=q.rollOverAlpha;isNaN(E)&&(E=z);isNaN(E)&&(E=D);var H=q.rollOverColor;void 0==H&&(H=x);var S=q.selectedColor;void 0==S&&(S=t);var Q=q.balloonText;Q||(Q=A);var J=q.arrow;if(!J||"none"==J&&
236
+ "none"!=l)J=l;var L=q.arrowColor;void 0==L&&(L=n);void 0==L&&(L=C);var M=q.arrowAlpha;isNaN(M)&&(M=r);isNaN(M)&&(M=D);var K=q.arrowSize;isNaN(K)&&(K=m);q.alphaReal=D;q.colorReal=C;q.rollOverColorReal=H;q.rollOverAlphaReal=E;q.balloonTextReal=Q;q.selectedColorReal=S;q.thicknessReal=B;void 0==q.bringForwardOnHover&&(q.bringForwardOnHover=w);AmCharts.processDescriptionWindow(d,q);var E=this.processCoordinates(q.x,c.realWidth),H=this.processCoordinates(q.y,c.realHeight),N=q.longitudes,Q=q.latitudes,I=
237
+ N.length,O;if(0<I)for(E=[],O=0;O<I;O++)E.push(c.longitudeToCoordinate(N[O]));I=Q.length;if(0<I)for(H=[],O=0;O<I;O++)H.push(c.latitudeToCoordinate(Q[O]));if(0<E.length){AmCharts.dx=0;AmCharts.dy=0;N=AmCharts.line(s,E,H,C,1,B,G,!1,!1,!0);G=AmCharts.line(s,E,H,C,.001,3,G,!1,!1,!0);AmCharts.dx=.5;AmCharts.dy=.5;y.push(N);y.push(G);y.setAttr("opacity",D);if("none"!=J){var F,P,R;if("end"==J||"both"==J)D=E[E.length-1],C=H[H.length-1],1<E.length?(I=E[E.length-2],F=H[H.length-2]):(I=D,F=C),F=180*Math.atan((C-
238
+ F)/(D-I))/Math.PI,P=D,R=C,F=0>D-I?F-90:F+90;"both"==J&&(D=AmCharts.polygon(s,[-K/2,0,K/2],[1.5*K,0,1.5*K],L,M,1,L,M),y.push(D),D.translate(P,R),D.rotate(F),q.fixedSize&&f.push(D));if("start"==J||"both"==J)D=E[0],R=H[0],1<E.length?(C=E[1],P=H[1]):(C=D,P=R),F=180*Math.atan((R-P)/(D-C))/Math.PI,P=D,F=0>D-C?F-90:F+90;"middle"==J&&(D=E[E.length-1],C=H[H.length-1],1<E.length?(I=E[E.length-2],F=H[H.length-2]):(I=D,F=C),P=I+(D-I)/2,R=F+(C-F)/2,F=180*Math.atan((C-F)/(D-I))/Math.PI,F=0>D-I?F-90:F+90);D=AmCharts.polygon(s,
239
+ [-K/2,0,K/2],[1.5*K,0,1.5*K],L,M,1,L,M);y.push(D);D.translate(P,R);D.rotate(F);q.fixedSize&&f.push(D);q.arrowSvg=D}q.fixedSize&&N&&(this.linesToResize.push({line:N,thickness:B}),this.linesToResize.push({line:G,thickness:3}));q.lineSvg=N;q.showAsSelected&&!isNaN(S)&&N.setAttr("stroke",S);0<Q.length?e.push(y):g.push(y)}}}a.parentObject&&a.remainVisible&&this.process(a.parentObject)},processCoordinates:function(a,b){var c=[],d;for(d=0;d<a.length;d++){var f=a[d],e=Number(f);isNaN(e)&&(e=Number(f.replace("%",
240
+ ""))*b/100);isNaN(e)||c.push(e)}return c},reset:function(){this.objectsToResize=[];this.allSvgObjects=[];this.allObjects=[];this.linesToResize=[]}});AmCharts.LinesSettings=AmCharts.Class({construct:function(a){this.cname="LinesSettings";this.balloonText="[[title]]";this.thickness=1;this.dashLength=0;this.arrowSize=10;this.arrowAlpha=1;this.arrow="none";this.color="#990000";this.descriptionWindowWidth=250;this.bringForwardOnHover=!0;AmCharts.applyTheme(this,a,this.cname)}});AmCharts.MapObject=AmCharts.Class({construct:function(a){this.fixedSize=this.mouseEnabled=!0;this.images=[];this.lines=[];this.areas=[];this.remainVisible=!0;this.passZoomValuesToTarget=!1;this.objectType=this.cname;AmCharts.applyTheme(this,a,"MapObject")}});AmCharts.MapArea=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(a){this.cname="MapArea";AmCharts.MapArea.base.construct.call(this,a);AmCharts.applyTheme(this,a,this.cname)}});AmCharts.MapLine=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(a){this.cname="MapLine";this.longitudes=[];this.latitudes=[];this.x=[];this.y=[];this.arrow="none";AmCharts.MapLine.base.construct.call(this,a);AmCharts.applyTheme(this,a,this.cname)}});AmCharts.MapImage=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(a){this.cname="MapImage";this.scale=1;this.widthAndHeightUnits="pixels";this.labelShiftY=this.labelShiftX=0;AmCharts.MapImage.base.construct.call(this,a);AmCharts.applyTheme(this,a,this.cname)},remove:function(){var a=this.displayObject;a&&a.remove();(a=this.imageLabel)&&a.remove()}});AmCharts.degreesToRadians=function(a){return a/180*Math.PI};AmCharts.radiansToDegrees=function(a){return a/Math.PI*180};AmCharts.getColorFade=function(a,b,c){var d=AmCharts.hex2RGB(b);b=d[0];var f=d[1],d=d[2],e=AmCharts.hex2RGB(a);a=e[0];var g=e[1],e=e[2];a+=Math.round((b-a)*c);g+=Math.round((f-g)*c);e+=Math.round((d-e)*c);return"rgb("+a+","+g+","+e+")"};AmCharts.hex2RGB=function(a){return[parseInt(a.substring(1,3),16),parseInt(a.substring(3,5),16),parseInt(a.substring(5,7),16)]};
241
+ AmCharts.processDescriptionWindow=function(a,b){isNaN(b.descriptionWindowX)&&(b.descriptionWindowX=a.descriptionWindowX);isNaN(b.descriptionWindowY)&&(b.descriptionWindowY=a.descriptionWindowY);isNaN(b.descriptionWindowLeft)&&(b.descriptionWindowLeft=a.descriptionWindowLeft);isNaN(b.descriptionWindowRight)&&(b.descriptionWindowRight=a.descriptionWindowRight);isNaN(b.descriptionWindowTop)&&(b.descriptionWindowTop=a.descriptionWindowTop);isNaN(b.descriptionWindowBottom)&&(b.descriptionWindowBottom=
242
+ a.descriptionWindowBottom);isNaN(b.descriptionWindowWidth)&&(b.descriptionWindowWidth=a.descriptionWindowWidth);isNaN(b.descriptionWindowHeight)&&(b.descriptionWindowHeight=a.descriptionWindowHeight)};AmCharts.MapData=AmCharts.Class({inherits:AmCharts.MapObject,construct:function(){this.cname="MapData";AmCharts.MapData.base.construct.call(this);this.projection="mercator";this.topLatitude=90;this.bottomLatitude=-90;this.leftLongitude=-180;this.rightLongitude=180;this.zoomLevel=1;this.getAreasFromMap=!1}});AmCharts.DescriptionWindow=AmCharts.Class({construct:function(){},show:function(a,b,c,d){var f=this,e=document.createElement("div");e.style.position="absolute";e.className="ammapDescriptionWindow";f.div=e;b.appendChild(e);var g=document.createElement("img");g.className="ammapDescriptionWindowCloseButton";g.src=a.pathToImages+"xIcon.gif";g.style.cssFloat="right";g.onclick=function(){f.close()};g.onmouseover=function(){g.src=a.pathToImages+"xIconH.gif"};g.onmouseout=function(){g.src=a.pathToImages+
243
+ "xIcon.gif"};e.appendChild(g);b=document.createElement("div");b.className="ammapDescriptionTitle";b.onmousedown=function(){f.div.style.zIndex=1E3};e.appendChild(b);d=document.createTextNode(d);b.appendChild(d);d=b.offsetHeight;b=document.createElement("div");b.className="ammapDescriptionText";b.style.maxHeight=f.maxHeight-d-20+"px";e.appendChild(b);b.innerHTML=c},close:function(){try{this.div.parentNode.removeChild(this.div)}catch(a){}}});AmCharts.ValueLegend=AmCharts.Class({construct:function(a){this.cname="ValueLegend";this.showAsGradient=!1;this.minValue=0;this.height=12;this.width=200;this.bottom=this.left=10;this.borderColor="#FFFFFF";this.borderAlpha=this.borderThickness=1;this.color="#000000";this.fontSize=11;AmCharts.applyTheme(this,a,this.cname)},init:function(a,b){var c=a.areasSettings.color,d=a.areasSettings.colorSolid,f=a.colorSteps;AmCharts.remove(this.set);var e=b.set();this.set=e;var g=0,h=this.minValue,k=this.fontSize,
244
+ l=a.fontFamily,m=this.color;void 0==h&&(h=a.minValueReal);void 0!==h&&(g=AmCharts.text(b,h,m,l,k,"left"),g.translate(0,k/2-1),e.push(g),g=g.getBBox().height);h=this.maxValue;void 0===h&&(h=a.maxValueReal);void 0!==h&&(g=AmCharts.text(b,h,m,l,k,"right"),g.translate(this.width,k/2-1),e.push(g),g=g.getBBox().height);if(this.showAsGradient)c=AmCharts.rect(b,this.width,this.height,[c,d],1,this.borderThickness,this.borderColor,1,0,0),c.translate(0,g),e.push(c);else for(k=this.width/f,l=0;l<f;l++)m=AmCharts.getColorFade(c,
245
+ d,1*l/(f-1)),m=AmCharts.rect(b,k,this.height,m,1,this.borderThickness,this.borderColor,1),m.translate(k*l,g),e.push(m);d=c=0;f=e.getBBox();g=a.getY(this.bottom,!0);k=a.getY(this.top);l=a.getX(this.right,!0);m=a.getX(this.left);isNaN(k)||(c=k);isNaN(g)||(c=g-f.height);isNaN(m)||(d=m);isNaN(l)||(d=l-f.width);e.translate(d,c)}});AmCharts.ObjectList=AmCharts.Class({construct:function(a){this.divId=a},init:function(a){this.chart=a;var b;b=this.divId;this.container&&(b=this.container);this.div=b="object"!=typeof b?document.getElementById(b):b;b=document.createElement("div");b.className="ammapObjectList";this.div.appendChild(b);this.addObjects(a.dataProvider,b)},addObjects:function(a,b){var c=this.chart,d=document.createElement("ul"),f;if(a.areas)for(f=0;f<a.areas.length;f++){var e=a.areas[f];void 0===e.showInList&&(e.showInList=
246
+ c.showAreasInList);this.addObject(e,d)}if(a.images)for(f=0;f<a.images.length;f++)e=a.images[f],void 0===e.showInList&&(e.showInList=c.showImagesInList),this.addObject(e,d);if(a.lines)for(f=0;f<a.lines.length;f++)e=a.lines[f],void 0===e.showInList&&(e.showInList=c.showLinesInList),this.addObject(e,d);0<d.childNodes.length&&b.appendChild(d)},addObject:function(a,b){var c=this;if(a.showInList&&void 0!==a.title){var d=document.createElement("li"),f=document.createTextNode(a.title),e=document.createElement("a");
247
+ e.appendChild(f);d.appendChild(e);b.appendChild(d);this.addObjects(a,d);e.onmouseover=function(){c.chart.rollOverMapObject(a,!1)};e.onmouseout=function(){c.chart.rollOutMapObject(a)};e.onclick=function(){c.chart.clickMapObject(a)}}}});
map/ammap.swf DELETED
Binary file
map/data.xml.php DELETED
@@ -1,73 +0,0 @@
1
- <?php
2
- if (!session_id()) session_start();
3
- $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../../';
4
- require_once($cpd_wp.'wp-load.php');
5
- require_once($cpd_path.'/geoip/geoip.php');
6
- $geoip = new GeoIPCpD();
7
- $data = array();
8
-
9
- $what = (empty($_GET['map'])) ? 'reads' : strip_tags($_GET['map']);
10
-
11
- if ( $what == 'online' )
12
- {
13
- $gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
14
- $oc = get_option('count_per_day_online', array());
15
- $vo = array();
16
- foreach ($oc as $ip => $x)
17
- {
18
- if ( strpos($ip,'.') !== false && strpos($ip,':') === false)
19
- // IPv4
20
- $country = cpd_geoip_country_code_by_addr_v6($gi, '::'.$ip);
21
- else
22
- // IPv6
23
- $country = cpd_geoip_country_code_by_addr_v6($gi, $ip);
24
- $id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[strtoupper($country)];
25
- if ( !empty($id) )
26
- {
27
- $name = $geoip->GEOIP_COUNTRY_NAMES[$id];
28
- $count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
29
- $vo[$country] = array($name, $count);
30
- }
31
- }
32
- foreach ( $vo as $k => $v )
33
- $data[] = array($v[0], $k ,$v[1]);
34
- }
35
- else
36
- {
37
- $temp = $count_per_day->addCollectionToCountries( ($what == 'visitors') );
38
-
39
- foreach ($temp as $country => $value)
40
- {
41
- if ($country != '-')
42
- {
43
- $country = strtoupper($country);
44
- $name = $geoip->GEOIP_COUNTRY_NAMES[ $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country] ];
45
- if ( !empty($name) )
46
- $data[] = array($name, $country ,$value);
47
- }
48
- }
49
- }
50
-
51
- header("content-type: text/xml; charset=utf-8");
52
- echo '<?xml version="1.0" encoding="UTF-8"?>';
53
- ?>
54
- <map map_file="world.swf" tl_long="-168.49" tl_lat="83.63" br_long="190.3" br_lat="-55.58" zoom_x="10%" zoom_y="6%" zoom="85%">
55
- <areas>
56
- <?php
57
- foreach ( $data as $d )
58
- echo '<area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
59
- ';
60
- ?>
61
- <area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
62
- </areas>
63
- <?php if (empty($_GET['min'])) { ?>
64
- <labels>
65
- <label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
66
- <text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
67
- </label>
68
- </labels>
69
- <movies>
70
- <movie long="13" lat="53.4" file="target" width="10" height="10" color="#000000" fixed_size="true" title="Home of your best friend: Tom, the plugin author ;)"></movie>
71
- </movies>
72
- <?php } ?>
73
- </map>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
map/images/arrowDown.gif ADDED
Binary file
map/images/arrowUp.gif ADDED
Binary file
map/images/export.png ADDED
Binary file
map/images/homeIcon.gif ADDED
Binary file
map/images/homeIconWhite.gif ADDED
Binary file
map/images/minus.gif ADDED
Binary file
map/images/panDown.gif ADDED
Binary file
map/images/panLeft.gif ADDED
Binary file
map/images/panRight.gif ADDED
Binary file
map/images/panUp.gif ADDED
Binary file
map/images/plus.gif ADDED
Binary file
map/images/xIcon.gif ADDED
Binary file
map/images/xIconH.gif ADDED
Binary file
map/map.php CHANGED
@@ -2,28 +2,82 @@
2
  $what = (empty($_GET['map'])) ? 'reads' : strip_tags($_GET['map']);
3
  if ( !in_array($what, array('visitors','reads','online')) )
4
  die();
5
- ?>
6
 
7
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
8
- <html xmlns="http://www.w3.org/1999/xhtml">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  <head>
10
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
11
  <title>CountPerDay</title>
12
  <link rel="stylesheet" type="text/css" href="../counter.css" />
13
- <script type="text/javascript" src="swfobject.js"></script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  </head>
15
- <body style="overflow:hidden; padding:0; margin:0; background:#4499FF;">
16
- <div id="flashcontent">
17
- <strong>You need to upgrade your Flash Player</strong>
18
- </div>
19
- <script type="text/javascript">
20
- // <![CDATA[
21
- var so = new SWFObject("ammap.swf", "ammap", "630", "412", "8", "#4499FF");
22
- so.addVariable("path", "");
23
- so.addVariable("settings_file", escape("settings.xml.php?map=<?php echo $what ?>"));
24
- so.addVariable("data_file", escape("data.xml.php?map=<?php echo $what ?>"));
25
- so.write("flashcontent");
26
- // ]]>
27
- </script>
28
  </body>
29
  </html>
2
  $what = (empty($_GET['map'])) ? 'reads' : strip_tags($_GET['map']);
3
  if ( !in_array($what, array('visitors','reads','online')) )
4
  die();
 
5
 
6
+ if (!session_id()) session_start();
7
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../../';
8
+ require_once($cpd_wp.'wp-load.php');
9
+ require_once($cpd_path.'/geoip/geoip.php');
10
+ $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
11
+ $data = array('-' => 0);
12
+ $what = (empty($_GET['map'])) ? 'reads' : strip_tags($_GET['map']);
13
+
14
+ if ( $what == 'online' )
15
+ {
16
+ $oc = get_option('count_per_day_online', array());
17
+ $vo = array();
18
+ foreach ($oc as $ip => $x)
19
+ {
20
+ if ( strpos($ip,'.') !== false && strpos($ip,':') === false)
21
+ // IPv4 -> IPv6
22
+ $ip = '::'.$ip;
23
+ $country = strtoupper(cpd_geoip_country_code_by_addr_v6($gi, $ip));
24
+ $data[$country] = (isset($data[$country])) ? $data[$country] + 1 : 1;
25
+ }
26
+ }
27
+ else
28
+ {
29
+ $temp = $count_per_day->addCollectionToCountries( ($what == 'visitors') );
30
+ foreach ($temp as $country => $value)
31
+ if ($country != '-')
32
+ $data[strtoupper($country)] = $value;
33
+ }
34
+ ?>
35
+ <!DOCTYPE html>
36
+ <html lang="en">
37
  <head>
38
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
39
  <title>CountPerDay</title>
40
  <link rel="stylesheet" type="text/css" href="../counter.css" />
41
+ <script src="ammap.js" type="text/javascript"></script>
42
+ <script src="worldLow.js" type="text/javascript"></script>
43
+ <script type="text/javascript">
44
+ AmCharts.ready(function() {
45
+ var map = new AmCharts.AmMap();
46
+ map.pathToImages = "images/";
47
+ map.addTitle("Your Visitors all over the World", 14);
48
+ map.mouseWheelZoomEnabled = true;
49
+ var c = "#38E";
50
+ map.dataProvider = {
51
+ mapVar: AmCharts.maps.worldLow,
52
+ getAreasFromMap:true,
53
+ areas: [
54
+ {id:"AE",value:0,color:c},{id:"AF",value:0,color:c},{id:"AL",value:0,color:c},{id:"AM",value:0,color:c},{id:"AO",value:0,color:c},{id:"AR",value:0,color:c},{id:"AT",value:0,color:c},{id:"AU",value:0,color:c},{id:"AZ",value:0,color:c},{id:"BA",value:0,color:c},{id:"BD",value:0,color:c},{id:"BE",value:0,color:c},{id:"BF",value:0,color:c},{id:"BG",value:0,color:c},{id:"BI",value:0,color:c},{id:"BJ",value:0,color:c},{id:"BN",value:0,color:c},{id:"BO",value:0,color:c},{id:"BR",value:0,color:c},{id:"BS",value:0,color:c},{id:"BT",value:0,color:c},{id:"BW",value:0,color:c},{id:"BY",value:0,color:c},{id:"BZ",value:0,color:c},{id:"CA",value:0,color:c},{id:"CD",value:0,color:c},{id:"CF",value:0,color:c},{id:"CG",value:0,color:c},{id:"CH",value:0,color:c},{id:"CI",value:0,color:c},{id:"CL",value:0,color:c},{id:"CM",value:0,color:c},{id:"CN",value:0,color:c},{id:"CO",value:0,color:c},{id:"CR",value:0,color:c},{id:"CU",value:0,color:c},{id:"CY",value:0,color:c},{id:"CZ",value:0,color:c},{id:"DE",value:0,color:c},{id:"DJ",value:0,color:c},{id:"DK",value:0,color:c},{id:"DO",value:0,color:c},{id:"DZ",value:0,color:c},{id:"EC",value:0,color:c},{id:"EE",value:0,color:c},{id:"EG",value:0,color:c},{id:"EH",value:0,color:c},{id:"ER",value:0,color:c},{id:"ES",value:0,color:c},{id:"ET",value:0,color:c},{id:"FK",value:0,color:c},{id:"FI",value:0,color:c},{id:"FJ",value:0,color:c},{id:"FR",value:0,color:c},{id:"GA",value:0,color:c},{id:"GB",value:0,color:c},{id:"GE",value:0,color:c},{id:"GF",value:0,color:c},{id:"GH",value:0,color:c},{id:"GL",value:0,color:c},{id:"GM",value:0,color:c},{id:"GN",value:0,color:c},{id:"GQ",value:0,color:c},{id:"GR",value:0,color:c},{id:"GT",value:0,color:c},{id:"GW",value:0,color:c},{id:"GY",value:0,color:c},{id:"HN",value:0,color:c},{id:"HR",value:0,color:c},{id:"HT",value:0,color:c},{id:"HU",value:0,color:c},{id:"ID",value:0,color:c},{id:"IE",value:0,color:c},{id:"IL",value:0,color:c},{id:"IN",value:0,color:c},{id:"IQ",value:0,color:c},{id:"IR",value:0,color:c},{id:"IS",value:0,color:c},{id:"IT",value:0,color:c},{id:"JM",value:0,color:c},{id:"JO",value:0,color:c},{id:"JP",value:0,color:c},{id:"KE",value:0,color:c},{id:"KG",value:0,color:c},{id:"KH",value:0,color:c},{id:"KP",value:0,color:c},{id:"KR",value:0,color:c},{id:"XK",value:0,color:c},{id:"KW",value:0,color:c},{id:"KZ",value:0,color:c},{id:"LA",value:0,color:c},{id:"LB",value:0,color:c},{id:"LK",value:0,color:c},{id:"LR",value:0,color:c},{id:"LS",value:0,color:c},{id:"LT",value:0,color:c},{id:"LU",value:0,color:c},{id:"LV",value:0,color:c},{id:"LY",value:0,color:c},{id:"MA",value:0,color:c},{id:"MD",value:0,color:c},{id:"ME",value:0,color:c},{id:"MG",value:0,color:c},{id:"MK",value:0,color:c},{id:"ML",value:0,color:c},{id:"MM",value:0,color:c},{id:"MN",value:0,color:c},{id:"MR",value:0,color:c},{id:"MW",value:0,color:c},{id:"MX",value:0,color:c},{id:"MY",value:0,color:c},{id:"MZ",value:0,color:c},{id:"NA",value:0,color:c},{id:"NC",value:0,color:c},{id:"NE",value:0,color:c},{id:"NG",value:0,color:c},{id:"NI",value:0,color:c},{id:"NL",value:0,color:c},{id:"NO",value:0,color:c},{id:"NP",value:0,color:c},{id:"NZ",value:0,color:c},{id:"OM",value:0,color:c},{id:"PA",value:0,color:c},{id:"PE",value:0,color:c},{id:"PG",value:0,color:c},{id:"PH",value:0,color:c},{id:"PL",value:0,color:c},{id:"PK",value:0,color:c},{id:"PR",value:0,color:c},{id:"PS",value:0,color:c},{id:"PT",value:0,color:c},{id:"PY",value:0,color:c},{id:"QA",value:0,color:c},{id:"RO",value:0,color:c},{id:"RS",value:0,color:c},{id:"RU",value:0,color:c},{id:"RW",value:0,color:c},{id:"SA",value:0,color:c},{id:"SB",value:0,color:c},{id:"SD",value:0,color:c},{id:"SE",value:0,color:c},{id:"SI",value:0,color:c},{id:"SJ",value:0,color:c},{id:"SK",value:0,color:c},{id:"SL",value:0,color:c},{id:"SN",value:0,color:c},{id:"SO",value:0,color:c},{id:"SR",value:0,color:c},{id:"SS",value:0,color:c},{id:"SV",value:0,color:c},{id:"SY",value:0,color:c},{id:"SZ",value:0,color:c},{id:"TD",value:0,color:c},{id:"TF",value:0,color:c},{id:"TG",value:0,color:c},{id:"TH",value:0,color:c},{id:"TJ",value:0,color:c},{id:"TL",value:0,color:c},{id:"TM",value:0,color:c},{id:"TN",value:0,color:c},{id:"TR",value:0,color:c},{id:"TT",value:0,color:c},{id:"TW",value:0,color:c},{id:"TZ",value:0,color:c},{id:"UA",value:0,color:c},{id:"UG",value:0,color:c},{id:"US",value:0,color:c},{id:"UY",value:0,color:c},{id:"UZ",value:0,color:c},{id:"VE",value:0,color:c},{id:"VN",value:0,color:c},{id:"VU",value:0,color:c},{id:"YE",value:0,color:c},{id:"ZA",value:0,color:c},{id:"ZM",value:0,color:c},{id:"ZW",value:0,color:c},
55
+ <?php
56
+ $r = __('Reads','cpd');
57
+ foreach ( $data as $k => $v )
58
+ echo "{id:'$k',value:$v,balloonText:'[[title]]<br><b>[[value]]</b> $r<br>[[percent]]%'},"
59
+ ?>
60
+ ]};
61
+ map.areasSettings = {
62
+ color: "#FFFFFF",
63
+ outlineColor: "#CCCCCC",
64
+ outlineThickness: 0.2,
65
+ rollOverColor: "#FFFF00"
66
+ };
67
+ var legend = new AmCharts.ValueLegend();
68
+ legend.minValue = <?php echo min($data) ?>;
69
+ legend.left = 10;
70
+ legend.bottom = 25;
71
+ legend.width = 150;
72
+ legend.borderThickness = 0;
73
+ legend.showAsGradient = true;
74
+ map.valueLegend = legend;
75
+
76
+ map.write("mapdiv");
77
+ });
78
+ </script>
79
  </head>
80
+ <body style="overflow:hidden; padding:0; margin:0; background:#49F;">
81
+ <div id="mapdiv" style="width:100%;height:430px;"></div>
 
 
 
 
 
 
 
 
 
 
 
82
  </body>
83
  </html>
map/settings.xml.php DELETED
@@ -1,63 +0,0 @@
1
- <?php
2
- $what = (empty($_GET['map'])) ? 'Reads' : ucfirst(strip_tags($_GET['map']));
3
- $disable = (empty($_GET['min'])) ? '' : '<enabled>false</enabled>';
4
-
5
- header("content-type: text/xml; charset=utf-8");
6
- echo '<?xml version="1.0" encoding="UTF-8"?>';
7
- ?>
8
-
9
- <settings>
10
- <projection>mercator</projection>
11
- <always_hand>true</always_hand>
12
-
13
- <small_map>
14
- <enabled>false</enabled>
15
- </small_map>
16
-
17
- <area>
18
- <balloon_text><![CDATA[{title}<br/><b>{value}</b> <?php echo $what ?>]]></balloon_text>
19
- <color_solid>#CC0000</color_solid>
20
- <color_light>#FFFFFF</color_light>
21
- <color_hover>#FFFF00</color_hover>
22
- <color_unlisted>#3388EE</color_unlisted>
23
- <disable_when_clicked>true</disable_when_clicked>
24
- </area>
25
-
26
- <movie>
27
- <balloon_text><![CDATA[{title}]]></balloon_text>
28
- <color_hover>#0000ff</color_hover>
29
- </movie>
30
-
31
- <balloon>
32
- <color>#FFFFFF</color>
33
- <alpha>85</alpha>
34
- <text_color>#000000</text_color>
35
- <border_color>#CC0000</border_color>
36
- <border_alpha>90</border_alpha>
37
- <border_width>2</border_width>
38
- <corner_radius>7</corner_radius>
39
- </balloon>
40
-
41
- <zoom>
42
- <?php echo $disable ?>
43
- <x>5</x>
44
- <y>27</y>
45
- <min>85</min>
46
- </zoom>
47
-
48
- <legend>
49
- <?php echo $disable ?>
50
- <x>5</x>
51
- <y>!32</y>
52
- <margins>5</margins>
53
- <key>
54
- <border_color>#AAAAAA</border_color>
55
- </key>
56
- <entries>
57
- <entry color="#3388EE">no <?php echo $what ?></entry>
58
- <entry color="#FFFFFF">least <?php echo $what ?></entry>
59
- <entry color="#CC0000">most <?php echo $what ?></entry>
60
- </entries>
61
- </legend>
62
-
63
- </settings>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
map/swfobject.js DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
3
- *
4
- * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
5
- * http://www.opensource.org/licenses/mit-license.php
6
- *
7
- */
8
- if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();if(!(navigator.plugins && navigator.mimeTypes.length)) window[this.getAttribute('id')] = document.getElementById(this.getAttribute('id'));return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;
 
 
 
 
 
 
 
 
map/world.swf DELETED
Binary file
map/worldLow.js ADDED
@@ -0,0 +1 @@
 
1
+ AmCharts.maps.worldLow={svg:{defs:{"amcharts:ammap":{projection:"mercator",leftLongitude:"-169.522279",topLatitude:"83.646363",rightLongitude:"190.122401",bottomLatitude:"-55.621433"}},g:{path:[{id:"AE",title:"United Arab Emirates",d:"M619.87,393.72L620.37,393.57L620.48,394.41L622.67,393.93L624.99,394.01L626.68,394.1L628.6,392.03L630.7,390.05L632.47,388.15L633,389.2L633.38,391.64L631.95,391.65L631.72,393.65L632.22,394.07L630.95,394.67L630.94,395.92L630.12,397.18L630.05,398.39L629.48,399.03L621.06,397.51L619.98,394.43z"},{id:"AF",title:"Afghanistan",d:"M646.88,356.9L649.74,358.2L651.85,357.74L652.44,356.19L654.65,355.67L656.23,354.62L656.79,351.83L659.15,351.15L659.59,349.9L660.92,350.84L661.76,350.95L663.32,350.98L665.44,351.72L666.29,352.14L668.32,351.02L669.27,351.69L670.17,350.09L671.85,350.16L672.28,349.64L672.58,348.21L673.79,346.98L675.3,347.78L675,348.87L675.85,349.04L675.58,351.99L676.69,353.14L677.67,352.4L678.92,352.06L680.66,350.49L682.59,350.75L685.49,350.75L685.99,351.76L684.35,352.15L682.93,352.8L679.71,353.2L676.7,353.93L675.06,355.44L675.72,356.9L676.05,358.6L674.65,360.03L674.77,361.33L674,362.55L671.33,362.44L672.43,364.66L670.65,365.51L669.46,367.51L669.61,369.49L668.51,370.41L667.48,370.11L665.33,370.54L665.03,371.45L662.94,371.45L661.38,373.29L661.28,376.04L657.63,377.37L655.68,377.09L655.11,377.79L653.44,377.39L650.63,377.87L645.94,376.23L648.48,373.3L648.25,371.2L646.13,370.65L645.91,368.56L644.99,365.92L646.19,364.09L644.97,363.6L645.74,361.15z"},{id:"AL",title:"Albania",d:"M532.98,334.66L532.63,335.93L533.03,337.52L534.19,338.42L534.13,339.39L533.22,339.93L533.05,341.12L531.75,342.88L531.27,342.63L531.22,341.83L529.66,340.6L529.42,338.85L529.66,336.32L530.04,335.16L529.57,334.57L529.38,333.38L530.6,331.51L530.77,332.23L531.53,331.89L532.13,332.91L532.8,333.29z"},{id:"AM",title:"Armenia",d:"M597.45,337.5L601.35,336.92L601.93,337.9L603,338.54L602.43,339.46L603.93,340.72L603.14,341.88L604.33,342.87L605.59,343.46L605.65,345.96L604.63,346.06L603.49,343.98L603.5,343.43L602.26,343.44L601.43,342.46L600.85,342.56L599.74,341.5L597.66,340.59L597.93,338.8z"},{id:"AO",title:"Angola",d:"M521.03,479.78l0.69,2.09l0.8,1.68l0.64,0.91l1.07,1.47l1.85,-0.23l0.93,-0.4l1.55,0.4l0.42,-0.7l0.7,-1.64l1.74,-0.11l0.15,-0.49l1.43,-0.01l-0.24,1.01l3.4,-0.02l0.05,1.77l0.57,1.09l-0.41,1.7l0.21,1.74l0.94,1.05l-0.15,3.37l0.69,-0.26l1.22,0.07l1.74,-0.42l1.28,0.17l0.3,0.88l-0.32,1.38l0.49,1.34l-0.42,1.07l0.24,0.99l-5.84,-0.04l-0.13,9.16l1.89,2.38l1.83,1.82l-5.15,1.19l-6.79,-0.41l-1.94,-1.4l-11.37,0.13l-0.42,0.21l-1.67,-1.32l-1.82,-0.09l-1.68,0.5l-1.35,0.56l-0.26,-1.83l0.39,-2.55l0.97,-2.65l0.15,-1.24l0.91,-2.59l0.67,-1.17l1.61,-1.87l0.9,-1.27l0.29,-2.11l-0.15,-1.61l-0.84,-1.01l-0.75,-1.72l-0.69,-1.69l0.15,-0.59l0.86,-1.12l-0.85,-2.72l-0.57,-1.88l-1.4,-1.77l0.27,-0.54l1.16,-0.38l0.81,0.05l0.98,-0.34L521.03,479.78zM510.12,479.24l-0.71,0.3l-0.75,-2.1l1.13,-1.21l0.85,-0.47l1.05,0.96l-1.02,0.59l-0.46,0.72L510.12,479.24z"},{id:"AR",title:"Argentina",d:"M291.6,648.91l-2.66,0.25l-1.43,-1.73l-1.69,-0.13l-3,0l0,-10.57l1.08,2.15l1.4,3.53l3.65,2.87l3.93,1.21L291.6,648.91zM293.1,526.47l1.65,2.18l1.09,-2.43l3.2,0.12l0.45,0.64l5.15,4.94l2.29,0.46l3.43,2.26l2.89,1.2l0.4,1.36l-2.76,4.73l2.83,0.85l3.15,0.48l2.22,-0.5l2.54,-2.4l0.46,-2.74l1.39,-0.59l1.41,1.79l-0.06,2.49l-2.36,1.73l-1.88,1.28l-3.16,3.08l-3.74,4.37l-0.7,2.59l-0.75,3.37l0.03,3.3l-0.61,0.74l-0.22,2.17l-0.19,1.76l3.56,2.91l-0.38,2.37l1.75,1.51l-0.14,1.7l-2.69,4.52l-4.16,1.91l-5.62,0.75l-3.08,-0.36l0.59,2.15l-0.57,2.72l0.52,1.85l-1.68,1.3l-2.87,0.51l-2.7,-1.35l-1.08,0.97l0.39,3.71l1.89,1.14l1.54,-1.19l0.84,1.96l-2.58,1.18l-2.25,2.38l-0.41,3.91l-0.66,2.11l-2.65,0.01l-2.2,2.04l-0.8,3.01l2.76,2.98l2.68,0.83l-0.96,3.73l-3.31,2.38l-1.82,5.03l-2.56,1.72l-1.15,2.06l0.91,4.64l1.87,2.63l-1.18,-0.23l-2.6,-0.71l-6.78,-0.61l-1.16,-2.63l0.05,-3.33l-1.87,0.28l-0.99,-1.6l-0.25,-4.6l2.15,-1.88l0.89,-2.68l-0.33,-2.11l1.49,-3.52l1.02,-5.35l-0.3,-2.33l1.22,-0.75l-0.3,-1.48l-1.3,-0.78l0.92,-1.63l-1.27,-1.46l-0.65,-4.4l1.13,-0.77l-0.47,-4.54l0.66,-3.75l0.75,-3.22l1.68,-1.3l-0.85,-3.46l-0.01,-3.22l2.12,-2.26l-0.06,-2.87l1.6,-3.31l0.01,-3.09l-0.73,-0.61l-1.29,-5.69l1.73,-3.34l-0.27,-3.11l1,-2.9l1.84,-2.96l1.98,-1.95l-0.84,-1.23l0.59,-1l-0.09,-5.14l3.05,-1.51l0.96,-3.16l-0.34,-0.76l2.34,-2.72L293.1,526.47z"},{id:"AT",title:"Austria",d:"M522.86,309.85L522.65,311.56L521.07,311.57L521.61,312.46L520.68,315.11L520.15,315.8L517.7,315.9L516.28,316.82L513.96,316.51L509.95,315.46L509.33,314.03L506.56,314.75L506.23,315.52L504.53,314.94L503.1,314.83L501.83,314.09L502.26,313.08L502.15,312.34L503,312.12L504.42,313.26L504.82,312.17L507.29,312.35L509.3,311.61L510.64,311.73L511.51,312.58L511.78,311.88L511.38,309.16L512.39,308.62L513.37,306.67L515.46,308.04L517.03,306.3L518.02,305.98L520.2,307.28L521.51,307.06L522.81,307.86L522.58,308.4z"},{id:"AU",title:"Australia",d:"M882.93,588.16l2.71,1.28l1.53,-0.51l2.19,-0.71l1.68,0.25l0.2,4.43l-0.96,1.3l-0.29,3.06l-0.98,-1.05l-1.95,2.67l-0.58,-0.21l-1.72,-0.12l-1.73,-3.28l-0.38,-2.5l-1.62,-3.25l0.07,-1.7L882.93,588.16zM877.78,502.1l1.01,2.25l1.8,-1.08l0.93,1.22l1.35,1.13l-0.29,1.28l0.6,2.48l0.43,1.45l0.71,0.35l0.76,2.5l-0.27,1.52l0.91,1.99l3.04,1.54l1.98,1.41l1.88,1.29l-0.37,0.72l1.6,1.87l1.09,3.25l1.12,-0.66l1.14,1.31l0.69,-0.46l0.48,3.21l1.99,1.87l1.3,1.17l2.19,2.49l0.79,2.49l0.07,1.77l-0.19,1.94l1.34,2.68l-0.16,2.81l-0.49,1.48l-0.76,2.87l0.06,1.86l-0.55,2.34l-1.24,3l-2.08,1.63l-1.02,2.59l-0.94,1.67l-0.83,2.93l-1.08,1.71l-0.71,2.58l-0.36,2.4l0.14,1.11l-1.61,1.22l-3.14,0.13l-2.59,1.45l-1.29,1.38l-1.69,1.54l-2.32,-1.58l-1.72,-0.63l0.44,-1.85l-1.53,0.67l-2.46,2.58l-2.42,-0.97l-1.59,-0.56l-1.6,-0.25l-2.71,-1.03l-1.81,-2.18l-0.52,-2.66l-0.65,-1.75l-1.38,-1.4l-2.7,-0.41l0.92,-1.66l-0.68,-2.52l-1.37,2.35l-2.5,0.63l1.47,-1.88l0.42,-1.95l1.08,-1.65l-0.22,-2.47l-2.28,2.85l-1.75,1.15l-1.07,2.69l-2.19,-1.4l0.09,-1.79l-1.75,-2.43l-1.48,-1.25l0.53,-0.77l-3.6,-2l-1.97,-0.09l-2.7,-1.6l-5.02,0.31l-3.63,1.18l-3.19,1.1l-2.68,-0.22l-2.97,1.7l-2.43,0.77l-0.54,1.75l-1.04,1.36l-2.38,0.08l-1.76,0.3l-2.48,-0.61l-2.02,0.37l-1.92,0.15l-1.67,1.8l-0.82,-0.15l-1.41,0.96l-1.35,1.08l-2.05,-0.13l-1.88,0l-2.97,-2.17l-1.51,-0.64l0.06,-1.93l1.39,-0.46l0.48,-0.76l-0.1,-1.2l0.34,-2.3l-0.31,-1.95l-1.48,-3.29l-0.46,-1.85l0.12,-1.83l-1.12,-2.08l-0.07,-0.93l-1.24,-1.26l-0.35,-2.47l-1.6,-2.48l-0.39,-1.33l1.23,1.35l-0.95,-2.88l1.39,0.9l0.83,1.2l-0.05,-1.59l-1.39,-2.43l-0.27,-0.97l-0.65,-0.92l0.3,-1.77l0.57,-0.75l0.38,-1.52l-0.3,-1.77l1.16,-2.17l0.21,2.29l1.18,-2.07l2.28,-1l1.37,-1.28l2.14,-1.1l1.27,-0.23l0.77,0.37l2.21,-1.11l1.7,-0.33l0.42,-0.65l0.74,-0.27l1.55,0.07l2.95,-0.87l1.52,-1.31l0.72,-1.58l1.64,-1.49l0.13,-1.17l0.07,-1.59l1.96,-2.47l1.18,2.51l1.19,-0.58l-1,-1.38l0.88,-1.41l1.24,0.63l0.34,-2.21l1.53,-1.42l0.68,-1.14l1.41,-0.49l0.04,-0.8l1.23,0.34l0.05,-0.72l1.23,-0.41l1.36,-0.39l2.07,1.32l1.56,1.71l1.75,0.02l1.78,0.27l-0.59,-1.58l1.34,-2.3l1.26,-0.75l-0.44,-0.71l1.22,-1.63l1.7,-1.01l1.43,0.34l2.36,-0.54l-0.05,-1.45l-2.05,-0.94l1.49,-0.41l1.86,0.7l1.49,1.17l2.36,0.73l0.8,-0.29l1.74,0.88l1.64,-0.82l1.05,0.25l0.66,-0.55l1.29,1.41l-0.75,1.53l-1.06,1.16l-0.96,0.1l0.33,1.15l-0.82,1.43l-1,1.41l0.2,0.81l2.23,1.6l2.16,0.93l1.44,1l2.03,1.72l0.79,0l1.47,0.75l0.43,0.9l2.68,0.99l1.85,-1l0.55,-1.57l0.57,-1.29l0.35,-1.59l0.85,-2.3l-0.39,-1.39l0.2,-0.84l-0.32,-1.64l0.37,-2.16l0.54,-0.58l-0.44,-0.95l0.68,-1.51l0.53,-1.56l0.07,-0.81l1.04,-1.06l0.79,1.39l0.19,1.78l0.7,0.34l0.12,1.2l1.02,1.45l0.21,1.62L877.78,502.1z"},{id:"AZ",title:"Azerbaijan",d:"M601.43,342.46l0.83,0.97l1.24,-0.01l-0.01,0.56l1.14,2.08l-1.92,-0.48l-1.42,-1.66l-0.44,-1.37L601.43,342.46zM608.08,337.03l1.24,0.25l0.48,-0.95l1.67,-1.51l1.47,1.97l1.43,2.62l1.31,0.17l0.86,0.99l-2.31,0.29l-0.49,2.82l-0.48,1.26l-1.03,0.84l0.08,1.77l-0.7,0.18l-1.75,-1.87l0.97,-1.78l-0.83,-1.06l-1.05,0.27l-3.31,2.66l-0.06,-2.5l-1.26,-0.59l-1.19,-0.99l0.79,-1.16l-1.49,-1.26l0.56,-0.92l-1.07,-0.64l-0.58,-0.97l0.69,-0.61l2.09,1.07l1.51,0.22l0.38,-0.43l-1.38,-2.02l0.73,-0.52l0.79,0.13L608.08,337.03z"},{id:"BA",title:"Bosnia and Herzegovina",d:"M528.54,323.11L529.56,323.1L528.86,324.82L530.21,326.32L529.8,328.14L529.14,328.31L528.61,328.67L527.7,329.56L527.29,331.66L524.81,330.22L523.75,328.61L522.68,327.76L521.39,326.31L520.79,325.1L519.41,323.27L520,321.63L521.01,322.54L521.61,321.72L522.92,321.63L525.33,322.29L527.27,322.23z"},{id:"BD",title:"Bangladesh",d:"M735.09,400.41L735.04,402.56L734.06,402.1L734.24,404.51L733.44,402.95L733.28,401.43L732.74,399.98L731.57,398.22L728.99,398.1L729.25,399.35L728.37,401.02L727.17,400.41L726.76,400.96L725.97,400.63L724.89,400.36L724.45,397.88L723.48,395.6L723.95,393.76L722.23,392.94L722.85,391.82L724.6,390.67L722.58,389.04L723.57,386.93L725.79,388.27L727.13,388.43L727.38,390.58L730.04,391L732.65,390.95L734.26,391.48L732.97,394.07L731.71,394.25L730.85,395.98L732.38,397.56L732.84,395.62L733.62,395.61z"},{id:"BE",title:"Belgium",d:"M484.55,295.91L486.6,296.26L489.2,295.33L490.97,297.28L492.52,298.32L492.2,301.29L491.47,301.45L491.16,303.88L488.71,301.91L487.27,302.25L485.31,300.19L484.01,298.42L482.71,298.35L482.3,296.79z"},{id:"BF",title:"Burkina Faso",d:"M467.33,436.4L465.41,435.67L464.09,435.78L463.11,436.49L461.85,435.89L461.36,434.96L460.1,434.34L459.91,432.7L460.68,431.49L460.61,430.53L462.84,428.17L463.25,426.21L464.02,425.51L465.38,425.89L466.55,425.31L466.93,424.57L469.11,423.29L469.64,422.39L472.26,421.19L473.81,420.78L474.51,421.33L476.3,421.32L476.08,422.72L476.46,424.03L478.04,425.9L478.12,427.28L481.36,427.93L481.29,429.88L480.68,430.74L479.31,431L478.74,432.24L477.78,432.56L475.32,432.5L474.02,432.28L473.12,432.74L471.88,432.53L467.01,432.66L466.94,434.27z"},{id:"BG",title:"Bulgaria",d:"M538.78,325.56L539.59,327.16L540.67,326.87L542.83,327.48L546.95,327.68L548.34,326.69L551.64,325.79L553.68,327.2L555.33,327.61L553.87,329.2L552.85,331.93L553.75,334.09L551.34,333.58L548.48,334.76L548.45,336.62L545.9,336.97L543.93,335.67L541.68,336.7L539.61,336.59L539.41,334.12L538,332.91L538.47,332.37L538.16,331.92L538.63,330.71L539.7,329.52L538.34,327.86L538.09,326.44z"},{id:"BI",title:"Burundi",d:"M557.52,475.93L557.34,472.56L556.63,471.3L558.34,471.52L559.2,469.93L560.69,470.11L560.85,471.21L561.45,471.84L561.48,472.75L560.79,473.33L559.69,474.79L558.68,475.8z"},{id:"BJ",title:"Benin",d:"M482.8,445.92L480.48,446.25L479.79,444.31L479.92,437.85L479.35,437.27L479.25,435.88L478.27,434.89L477.42,434.06L477.78,432.56L478.74,432.24L479.31,431L480.68,430.74L481.29,429.88L482.23,429.05L483.24,429.04L485.38,430.68L485.27,431.63L485.9,433.31L485.35,434.45L485.64,435.21L484.28,436.96L483.42,437.83L482.89,439.6L482.96,441.39z"},{id:"BN",title:"Brunei Darussalam",d:"M795.46,450.77L796.57,449.72L798.96,448.19L798.83,449.57L798.67,451.35L797.33,451.26L796.74,452.21z"},{id:"BO",title:"Bolivia",d:"M299.04,526.35L295.84,526.22L294.75,528.65L293.1,526.47L289.43,525.74L287.1,528.46L285.07,528.87L283.97,524.72L282.47,521.38L283.35,518.51L281.88,517.26L281.51,515.14L280.13,513.14L281.9,510L280.69,507.56L281.34,506.59L280.83,505.52L281.93,504.08L281.99,501.64L282.12,499.62L282.73,498.66L280.3,494.08L282.39,494.32L283.83,494.25L284.46,493.4L286.91,492.25L288.38,491.19L292.05,490.71L291.76,492.83L292.1,493.92L291.87,495.82L294.92,498.37L298.06,498.84L299.16,499.91L301.06,500.48L302.22,501.31L303.98,501.28L305.61,502.13L305.73,503.79L306.28,504.63L306.32,505.88L305.5,505.92L306.58,509.29L311.95,509.41L311.54,511.09L311.84,512.24L313.37,513.06L314.04,514.88L313.54,517.2L312.77,518.49L313.04,520.18L312.16,520.79L312.12,519.88L309.5,518.37L306.9,518.32L302.01,519.18L300.67,521.8L300.6,523.4L299.49,526.99z"},{id:"BR",title:"Brazil",d:"M313.68,551.79L317.42,547.42L320.59,544.34L322.47,543.06L324.83,541.33L324.89,538.84L323.48,537.05L322.09,537.64L322.64,535.86L323.02,534.04L323.02,532.36L322.01,531.81L320.96,532.3L319.92,532.17L319.59,530.99L319.33,528.22L318.8,527.32L316.91,526.5L315.77,527.09L312.81,526.51L312.99,522.45L312.16,520.79L313.04,520.18L312.77,518.49L313.54,517.2L314.04,514.88L313.37,513.06L311.84,512.24L311.54,511.09L311.95,509.41L306.58,509.29L305.5,505.92L306.32,505.88L306.28,504.63L305.73,503.79L305.61,502.13L303.98,501.28L302.22,501.31L301.06,500.48L299.16,499.91L298.06,498.84L294.92,498.37L291.87,495.82L292.1,493.92L291.76,492.83L292.05,490.71L288.38,491.19L286.91,492.25L284.46,493.4L283.83,494.25L282.39,494.32L280.3,494.08L278.72,494.57L277.44,494.24L277.63,489.94L275.33,491.6L272.86,491.53L271.8,490.02L269.94,489.86L270.53,488.65L268.97,486.93L267.8,484.4L268.54,483.89L268.54,482.7L270.24,481.89L269.96,480.38L270.67,479.4L270.88,478.1L274.08,476.19L276.38,475.66L276.75,475.24L279.28,475.37L280.54,467.72L280.61,466.51L280.17,464.92L278.93,463.9L278.94,461.88L280.52,461.42L281.08,461.71L281.17,460.64L279.53,460.35L279.5,458.61L284.96,458.67L285.89,457.71L286.67,458.59L287.21,460.24L287.74,459.89L289.29,461.37L291.47,461.19L292.01,460.33L294.09,459.68L295.25,459.23L295.57,458.05L297.58,457.25L297.42,456.67L295.05,456.43L294.66,454.67L294.77,452.8L293.52,452.08L294.04,451.82L296.12,452.18L298.35,452.88L299.16,452.22L301.17,451.78L304.31,450.74L305.34,449.67L304.96,448.88L306.42,448.76L307.08,449.4L306.71,450.63L307.67,451.05L308.32,452.35L307.54,453.33L307.09,455.71L307.81,457.12L308.01,458.41L309.74,459.71L311.12,459.85L311.43,459.31L312.31,459.19L313.58,458.7L314.49,457.96L316.04,458.19L316.72,458.09L318.25,458.32L318.5,457.75L318.03,457.2L318.31,456.39L319.44,456.64L320.77,456.35L322.37,456.94L323.6,457.52L324.47,456.76L325.09,456.88L325.48,457.67L326.82,457.47L327.89,456.41L328.75,454.35L330.41,451.8L331.37,451.67L332.06,453.21L333.63,458.09L335.13,458.55L335.21,460.47L333.1,462.76L333.97,463.6L338.93,464.04L339.03,466.83L341.16,465L344.69,466.01L349.34,467.71L350.71,469.34L350.25,470.88L353.51,470.02L358.97,471.5L363.16,471.39L367.3,473.7L370.88,476.83L373.04,477.63L375.44,477.75L376.46,478.63L377.41,482.2L377.88,483.89L376.76,488.55L375.33,490.39L371.38,494.33L369.59,497.54L367.52,500.02L366.82,500.08L366.03,502.18L366.23,507.58L365.45,512.06L365.15,513.99L364.27,515.14L363.77,519.08L360.93,522.96L360.45,526.05L358.18,527.36L357.52,529.17L354.48,529.16L350.07,530.33L348.09,531.68L344.95,532.57L341.65,535.01L339.28,538.07L338.87,540.39L339.34,542.12L338.81,545.3L338.18,546.85L336.22,548.6L333.11,554.28L330.64,556.87L328.73,558.41L327.46,561.57L325.6,563.48L324.82,561.58L326.06,560.01L324.44,557.76L322.24,555.94L319.35,553.86L318.31,553.95L315.5,551.45z"},{id:"BS",title:"Bahamas",d:"M257.86,395.2l-0.69,0.15l-0.71,-1.76l-1.05,-0.89l0.61,-1.95l0.84,0.12l0.98,2.55L257.86,395.2zM257.06,386.51l-3.06,0.5l-0.2,-1.15l1.32,-0.25l1.85,0.09L257.06,386.51zM259.36,386.48l-0.48,2.21l-0.52,-0.4l0.05,-1.63l-1.26,-1.23l-0.01,-0.36L259.36,386.48z"},{id:"BT",title:"Bhutan",d:"M732.36,382.78L733.5,383.78L733.3,385.71L731.01,385.8L728.65,385.59L726.88,386.08L724.33,384.89L724.28,384.26L726.13,381.92L727.64,381.12L729.65,381.85L731.13,381.93z"},{id:"BW",title:"Botswana",d:"M547.17,515.95L547.73,516.47L548.62,518.18L551.79,521.43L552.99,521.75L553,522.8L553.82,524.7L555.99,525.16L557.78,526.52L553.81,528.74L551.29,531L550.36,533.03L549.52,534.18L547.99,534.43L547.5,535.9L547.21,536.86L545.42,537.58L543.14,537.43L541.8,536.57L540.62,536.19L539.25,536.91L538.56,538.39L537.23,539.32L535.83,540.71L533.82,541.03L533.2,539.94L533.46,538.04L531.79,535.11L531.04,534.65L531.04,525.79L533.8,525.68L533.88,515.11L535.97,515.02L540.29,513.99L541.37,515.2L543.15,514.05L544.01,514.04L545.59,513.38L546.09,513.6z"},{id:"BY",title:"Belarus",d:"M541.1,284.07L543.81,284.11L546.85,282.31L547.5,279.59L549.8,278.02L549.54,275.82L551.24,274.98L554.26,273.05L557.21,274.31L557.61,275.54L559.08,274.95L561.82,276.13L562.09,278.44L561.49,279.76L563.25,282.91L564.39,283.78L564.22,284.64L566.11,285.47L566.92,286.72L565.83,287.74L563.57,287.58L563.03,288.02L563.69,289.56L564.38,292.49L561.97,292.76L561.11,293.76L560.92,296.02L559.81,295.59L557.28,295.81L556.54,294.76L555.49,295.54L554.44,294.89L552.23,294.8L549.1,293.72L546.27,293.36L544.1,293.46L542.56,294.69L541.22,294.86L541.17,292.85L540.3,290.73L541.98,289.79L542,287.94L541.22,286.16z"},{id:"BZ",title:"Belize",d:"M225.31,412.96L225.29,412.53L225.63,412.39L226.14,412.74L227.14,410.97L227.67,410.93L227.68,411.36L228.21,411.37L228.17,412.17L227.71,413.44L227.96,413.89L227.67,414.94L227.84,415.21L227.52,416.68L226.97,417.46L226.46,417.55L225.9,418.55L225.07,418.55L225.29,415.27z"},{id:"CA",title:"Canada",d:"M198.93,96.23l-0.22,-5.9l3.63,0.58l1.63,0.96l3.35,4.92l-0.76,4.97l-4.15,2.77l-2.28,-3.12L198.93,96.23zM212.14,108.88l0.33,-1.49l-1.97,-2.45l-5.65,-0.19l0.75,3.68l5.25,0.83L212.14,108.88zM248.49,155.83l3.08,5.1l0.81,0.57l3.07,-1.27l3.02,0.2l2.98,0.28l-0.25,-2.64l-4.84,-5.38l-6.42,-1.08l-1.35,0.67L248.49,155.83zM183.06,93.13l-2.71,4.19l6.24,0.52l4.61,4.44l4.58,1.5l-1.09,-5.68l-2.14,-6.73l-7.58,-5.35l-5.5,-2.04l0.2,5.69L183.06,93.13zM208.96,82.89l5.13,-0.12l-2.22,4l-0.04,5.3l3.01,5.76l5.81,1.77l4.96,-0.99l5.18,-10.73l3.85,-4.45l-3.38,-4.97l-2.21,-10.65l-4.6,-3.19l-4.72,-3.68l-3.58,-9.56l-6.52,0.94l1.23,4.15l-2.87,1.25l-1.94,5.32l-1.94,7.46l1.78,7.26L208.96,82.89zM145.21,136.27l3.92,1.95l12.67,-1.3l-5.82,4.77l0.36,3.43l4.26,-0.24l7.07,-4.58l9.5,-1.67l1.71,-5.22l-0.49,-5.57l-2.94,-0.5l-2.5,1.93l-1.1,-4.13l-0.95,-5.7l-2.9,-1.42l-2.57,4.41l4.01,11.05l-4.9,-0.85l-4.98,-6.79l-7.89,-4l-2.64,3.32L145.21,136.27zM167.77,94.21l-3.65,-2.9l-1.5,-0.66l-2.88,4.28l-0.05,2l4.66,0.01L167.77,94.21zM166.31,106.56l0.93,-3.99l-3.95,-2.12l-4.09,1.39l-2.27,4.26l4.16,4.21L166.31,106.56zM195.4,139.8l4.62,-1.11l1.28,-8.25l-0.09,-5.95l-2.14,-5.56l-0.22,1.6l-3.94,-0.7l-4.22,4.09l-3.02,-0.37l0.18,8.92l4.6,-0.87l-0.06,6.47L195.4,139.8zM192.12,185.41l-5.06,-3.93l-4.71,-4.21l-0.87,-6.18l-1.76,-8.92l-3.14,-3.84l-2.79,-1.55l-2.47,1.42l1.99,9.59l-1.41,3.73l-2.29,-8.98l-2.56,-3.11l-3.17,4.81l-3.9,-4.76l-6.24,2.87l1.4,-4.46l-2.87,-1.87l-7.51,5.84l-1.95,3.71l-2.35,6.77l4.9,2.32l4.33,-0.12l-6.5,3.46l1.48,3.13l3.98,0.17l5.99,-0.67l5.42,1.96l-3.66,1.44l-3.95,-0.37l-4.33,1.41l-1.87,0.87l3.45,6.35l2.49,-0.88l3.83,2.15l1.52,3.65l4.99,-0.73l7.1,-1.16l5.26,-2.65l3.26,-0.48l4.82,2.12l5.07,1.22l0.94,-2.86l-1.79,-3.05l4.6,-0.64L192.12,185.41zM199.86,184.43l-1.96,3.54l-2.47,2.49l3.83,3.54l2.28,-0.85l3.78,2.36l1.74,-2.73l-1.71,-3.03l-0.84,-1.53l-1.68,-1.46L199.86,184.43zM182.25,154.98l-2.13,-2.17l-3.76,0.4l-0.95,1.38l4.37,6.75L182.25,154.98zM210.94,168.15l3.01,-6.93l3.34,-1.85l4.19,-8.74l-5.36,-2.47l-5.84,-0.36l-2.78,2.77l-1.47,4.23l-0.04,4.82l1.75,8.19L210.94,168.15zM228.09,145.15l5.76,-0.18l8.04,-1.61l3.59,1.28l4.18,-2.26l1.75,-2.84l-0.63,-4.52l-3,-4.23l-4.56,-0.8l-5.71,0.97l-4.46,2.44l-4.09,-0.94l-3.78,-0.5l-1.78,-2.7l-3.22,-2.61l0.64,-4.43l-2.42,-3.98l-5.52,0.03l-3.11,-3.99l-5.78,-0.8l-1.06,5.1l3.25,3.74l5.8,1.45l2.81,5.09l0.34,5.6l0.97,5.99l7.45,3.42L228.09,145.15zM139.07,126.88l5.21,-5.05l2.62,-0.59l2.16,-4.23l0.38,-9.77l-3.85,1.91l-4.3,-0.18l-5.76,8.19l-4.76,8.98l3.8,2.51L139.07,126.88zM211.25,143.05l1.53,-4.14l-1.02,-3.46l-2.45,-3.92l-4.03,3.02l-1.49,4.92l3.4,2.79L211.25,143.05zM202.94,154.49l-0.73,-2.88l-5,1.26l-3.34,-2.11l-3.32,4.8l3.09,6.28l-5.72,-1.17l-0.06,3.01l6.97,7.05l1.94,3.38l2.7,0.73l4.6,-3.41l0.5,-8.21l-4.24,-4.07L202.94,154.49zM128.95,308.23l-1.16,-2.34l-2.8,-1.77l-1.39,-2.05l-0.95,-1.5l-2.64,-0.46l-1.72,-0.67l-2.94,-0.96l-0.24,1.02l1.08,2.38l2.89,0.78l0.5,1.23l2.51,1.5l0.84,1.51l4.6,1.92L128.95,308.23zM250.65,230.6l-2,-2.11l-2.06,0.5l-0.25,-3.06l-3.21,-2.04l-3.07,-2.27l-1.63,-1.75l-1.43,1.03l-0.52,-2.96l-2.03,-0.55l-0.96,6.13l-0.36,5.11l-2.44,3.14l3.8,-0.6l0.96,3.65l3.99,-3.23l2.78,-3.38l1.57,2.86l4.36,1.51L250.65,230.6zM130.12,178.05l7.38,-4.18V170l3.48,-6.41l6.88,-6.69l3.52,-2.47l-3.01,-4.2l-2.72,-2.95l-7.16,-0.57l-4,-2.16l-9.48,1.63l2.74,6.23l-2.43,6.43l-1.94,6.87l-1.2,3.86l6.47,4.69L130.12,178.05zM264.36,205.36l0.32,-1.01l-0.03,-3.17l-2.19,-2.08l-2.57,1.05l-1.19,4.17l0.7,3.56l3.14,-0.36L264.36,205.36zM288.18,212.9l4.41,6.6l3.45,2.85l4.92,-7.87l0.87,-4.93l-4.41,-0.47l-4.03,-6.7l-4.45,-1.64l-6.6,-4.97l5.15,-3.63l-2.65,-7.54l-2.44,-3.35l-6.77,-3.35l-2.92,-5.55l-5.21,1.99l-0.36,-3.86l-3.86,-4.32l-6.22,-4.71l-2.65,3.71l-5.55,2.66l0.42,-6.06l-4.81,-10.05l-7.11,4.06l-2.59,7.7l-2.21,-5.92l2.06,-6.37l-7.24,2.65l-2.88,3.99l-2.15,8.42l0.89,9.05l3.98,0.04l-2.93,3.92l2.33,2.96l4.55,1.25l5.93,2.42l10.2,1.82l5.08,-1.04l1.5,-2.42l2.21,2.79l2.47,0.46l2.97,4.96l-1.8,1.98l5.68,2.63l4.29,3.68l1.08,2.55l0.77,3.24l-3.63,6.93l-0.98,3.44l0.94,2.42l-5.77,0.86l-5.27,0.12l-1.85,4.87l2.37,2.23l8.11,-1.03l-0.04,-1.89l4.08,3.15l4.18,3.28l-0.98,1.77l3.4,3.02l6.02,3.53l7.6,2.39l-0.46,-2.09l-2.92,-3.67l-3.96,-5.37l7.03,5l3.54,1.66l0.97,-4.44l-1.82,-6.3l-1.16,-1.73l-3.81,-3.03l-2.95,-3.91l0.35,-3.94L288.18,212.9zM222.35,51.34l2.34,7.29l4.96,5.88l9.81,-1.09l6.31,1.97l-4.38,6.05l-2.21,-1.78l-7.66,-0.71l1.19,8.31l3.96,6.04l-0.8,5.2l-4.97,3.46l-2.27,5.47l4.55,2.65l3.82,8.55l-7.5,-5.7l-1.71,0.94l1.38,9.38l-5.18,2.83l0.35,5.85l5.3,0.63l4.17,1.44l8.24,-1.84l7.33,3.27l7.49,-7.19l-0.06,-3.02l-4.79,0.48l-0.39,-2.84l3.92,-3.83l1.33,-5.15l4.33,-3.83l2.66,-4.76l-2.32,-7.1l1.94,-2.65l-3.86,-1.89l8.49,-1.63l1.79,-3.15l5.78,-2.6l4.8,-13.47l4.57,-4.94l6.62,-11.12l-6.1,0.1l2.54,-4.3l6.78,-3.99l6.84,-8.9l0.12,-5.73l-5.13,-6.04l-6.02,-2.93l-7.49,-1.82l-6.07,-1.49l-6.07,-1.5l-8.1,3.98l-1.49,-2.53l-8.57,0.98l-5.03,2.57l-3.7,3.65l-2.13,11.74L239,24.52l-3.48,-1.14l-4.12,7.97l-5.5,3.35l-3.27,0.66l-4.17,3.84l0.61,6.65L222.35,51.34zM296.75,316.34l-0.98,-1.98l-1.06,1.26l0.7,1.36l3.56,1.71l1.04,-0.26l1.38,-1.66l-2.6,0.11L296.75,316.34zM239.75,238.48l0.61,1.63l1.98,0.14l3.28,-3.34l0.06,-1.19l-3.85,-0.06L239.75,238.48zM301.88,304.92l-2.87,-1.8l-3.69,-1.09l-0.97,0.37l2.61,2.04l3.63,1.34l1.36,-0.08L301.88,304.92zM326.76,309.71l-0.36,-2.24l-1.96,0.72l0.87,-3.11l-2.8,-1.32l-1.29,1.05l-2.49,-1.18l0.98,-1.51l-1.88,-0.93l-1.83,1.47l1.86,-3.82l1.5,-2.8l0.54,-1.22l-1.3,-0.2l-2.43,1.55l-1.74,2.53l-2.9,6.92l-2.35,2.56l1.22,1.14l-1.75,1.47l0.43,1.23l5.44,0.13l3.01,-0.25l2.69,1.01l-1.98,1.93l1.67,0.14l3.25,-3.58l0.78,0.53l-0.61,3.37l1.84,0.77l1.27,-0.15l1.18,-3.61L326.76,309.71zM305.57,314.47l-2.81,4.56l-4.63,0.58l-3.64,-2.01l-0.92,-3.07l-0.89,-4.46l2.65,-2.83l-2.48,-2.09l-4.19,0.43l-5.88,3.53l-4.5,5.45l-2.38,0.67l3.23,-3.8l4.04,-5.57l3.57,-1.9l2.35,-3.11l2.9,-0.3l4.21,0.03l6,0.92l4.74,-0.71l3.53,-3.62l4.62,-1.59l2.01,-1.58l2.04,-1.71l-0.2,-5.19l-1.13,-1.77l-2.18,-0.63l-1.11,-4.05l-1.8,-1.55l-4.47,-1.26l-2.52,-2.82l-3.73,-2.83l1.13,-3.2l-3.1,-6.26l-3.65,-6.89l-2.18,-4.98l-1.86,2.61l-2.68,6.05l-4.06,2.97l-2.03,-3.16l-2.56,-0.85l-0.93,-6.99l0.08,-4.8l-5,-0.44l-0.85,-2.27l-3.45,-3.44l-2.61,-2.04l-2.32,1.58l-2.88,-0.58l-4.81,-1.65l-1.95,1.4l0.94,9.18l1.22,5.12l-3.31,5.75l3.41,4.02l1.9,4.44l0.23,3.42l-1.55,3.5l-3.18,3.46l-4.49,2.28l1.98,2.53l1.46,7.4l-1.52,4.68l-2.16,1.46l-4.17,-4.28l-2.03,-5.17l-0.87,-4.76l0.46,-4.19l-3.05,-0.47l-4.63,-0.28l-2.97,-2.08l-3.51,-1.37l-2.01,-2.38l-2.8,-1.94l-5.21,-2.23l-3.92,1.02l-1.31,-3.95l-1.26,-4.99l-4.12,-0.9l0.15,-6.41l1.09,-4.48l3.04,-6.6l3.43,-4.9l3.26,-0.77l0.19,-4.05l2.21,-2.68l4.01,-0.42l3.25,-4.39l0.82,-2.9l2.7,-5.73l0.84,-3.5l2.9,2.11l3.9,-1.08l5.49,-4.96l0.36,-3.54l-1.98,-3.98l2.09,-4.06l-0.17,-3.87l-3.76,-3.95l-4.14,-1.19l-3.98,-0.62l-0.15,8.71l-2.04,6.56l-2.93,5.3l-2.71,-4.95l0.84,-5.61l-3.35,-5.02l-3.75,6.09l0.01,-7.99l-5.21,-1.63l2.49,-4.01l-3.81,-9.59l-2.84,-3.91l-3.7,-1.44l-3.32,6.43l-0.22,9.34l3.27,3.29l3,4.91l-1.27,7.71l-2.26,-0.2l-1.78,5.88l0.02,-7l-4.34,-2.58l-2.49,1.33l0.32,4.67l-4.09,-0.18l-4.35,1.17l-4.95,-3.35l-3.13,0.6l-2.82,-4.11l-2.26,-1.84l-2.24,0.77l-3.41,0.35l-1.81,2.61l2.86,3.19l-3.05,3.72l-2.99,-4.42l-2.39,1.3l-7.57,0.87l-5.07,-1.59l3.94,-3.74l-3.78,-3.9l-2.75,0.5l-3.86,-1.32l-6.56,-2.89l-4.29,-3.37l-3.4,-0.47l-1.06,2.36l-3.44,1.31l-0.38,-6.15l-3.73,5.5l-4.74,-7.32l-1.94,-0.89l-0.63,3.91l-2.09,1.9l-1.93,-3.39l-4.59,2.05l-4.2,3.55l-4.17,-0.98l-3.4,2.5l-2.46,3.28l-2.92,-0.72l-4.41,-3.8l-5.23,-1.94l-0.02,27.65l-0.01,35.43l2.76,0.17l2.73,1.56l1.96,2.44l2.49,3.6l2.73,-3.05l2.81,-1.79l1.49,2.85l1.89,2.23l2.57,2.42l1.75,3.79l2.87,5.88l4.77,3.2l0.08,3.12l-1.56,2.35l0.06,2.48l3.39,3.45l0.49,3.76l3.59,1.96l-0.4,2.79l1.56,3.96l5.08,1.82l2,1.89l5.43,4.23l0.38,0.01h7.96h8.32h2.76h8.55h8.27h8.41l8.42,0l9.53,0l9.59,0l5.8,0l0.01,-1.64l0.95,-0.02l0.5,2.35l0.87,0.72l1.96,0.26l2.86,0.67l2.72,1.3l2.27,-0.55l3.45,1.09l1.14,-1.66l1.59,-0.66l0.62,-1.03l0.63,-0.55l2.61,0.86l1.93,0.1l0.67,0.57l0.94,2.38l3.15,0.63l-0.49,1.18l1.11,1.21l-0.48,1.56l1.18,0.51l-0.59,1.37l0.75,0.13l0.53,-0.6l0.55,0.9l2.1,0.5l2.13,0.04l2.27,0.41l2.51,0.78l0.91,1.26l1.82,3.04l-0.9,1.3l-2.28,-0.54l-1.42,-2.44l0.36,2.49l-1.34,2.17l0.15,1.84l-0.23,1.07l-1.81,1.27l-1.32,2.09l-0.62,1.32l1.54,0.24l2.08,-1.2l1.23,-1.06l0.83,-0.17l1.54,0.38l0.75,-0.59l1.37,-0.48l2.44,-0.47v0l0,0l-0.25,-1.15l-0.13,0.04l-0.86,0.2l-1.12,-0.36l0.84,-1.32l0.85,-0.46l1.98,-0.56l2.37,-0.53l1.24,0.73l0.78,-0.85l0.89,-0.54l0.6,0.29l0.03,0.06l2.87,-2.73l1.27,-0.73l4.26,-0.03l5.17,0l0.28,-0.98l0.9,-0.2l1.19,-0.62l1,-1.82l0.86,-3.15l2.14,-3.1l0.93,1.08l1.88,-0.7l1.25,1.19l0,5.52l1.83,2.25l3.12,-0.48l4.49,-0.13l-4.87,3.26l0.11,3.29l2.13,0.28l3.13,-2.79l2.78,-1.58l6.21,-2.35l3.47,-2.62l-1.81,-1.46L305.57,314.47zM251.91,243.37l1.1,-3.12l-0.71,-1.23l-1.15,-0.13l-1.08,1.8l-0.13,0.41l0.74,1.77L251.91,243.37zM109.25,279.8L109.25,279.8l1.56,-2.35L109.25,279.8zM105.85,283.09l-2.69,0.38l-1.32,-0.62l-0.17,1.52l0.52,2.07l1.42,1.46l1.04,2.13l1.69,2.1l1.12,0.01l-2.44,-3.7L105.85,283.09z"},{id:"CD",title:"Democratic Republic of Congo",d:"M561.71,453.61L561.54,456.87L562.66,457.24L561.76,458.23L560.68,458.97L559.61,460.43L559.02,461.72L558.86,463.96L558.21,465.02L558.19,467.12L557.38,467.9L557.28,469.56L556.89,469.77L556.63,471.3L557.34,472.56L557.52,475.93L558.02,478.5L557.74,479.96L558.3,481.58L559.93,483.15L561.44,486.7L560.34,486.41L556.57,486.89L555.82,487.22L555.02,489.02L555.65,490.27L555.15,493.62L554.8,496.47L555.56,496.98L557.52,498.08L558.29,497.57L558.53,500.65L556.38,500.62L555.23,499.05L554.2,497.83L552.05,497.43L551.42,495.94L549.7,496.84L547.46,496.44L546.52,495.15L544.74,494.89L543.43,494.96L543.27,494.08L542.3,494.01L541.02,493.84L539.29,494.26L538.07,494.19L537.37,494.45L537.52,491.08L536.59,490.03L536.38,488.3L536.79,486.6L536.23,485.51L536.18,483.75L532.77,483.77L533.02,482.76L531.59,482.77L531.44,483.26L529.7,483.37L528.99,485L528.57,485.71L527.02,485.31L526.1,485.71L524.24,485.93L523.17,484.46L522.53,483.55L521.72,481.87L521.03,479.78L512.76,479.75L511.77,480.08L510.96,480.03L509.8,480.41L509.41,479.54L510.12,479.24L510.21,478.02L510.67,477.3L511.69,476.72L512.43,477L513.39,475.93L514.91,475.96L515.09,476.75L516.14,477.25L517.79,475.49L519.42,474.13L520.13,473.24L520.04,470.94L521.26,468.23L522.54,466.8L524.39,465.46L524.71,464.57L524.78,463.55L525.24,462.58L525.09,461L525.44,458.53L525.99,456.79L526.83,455.3L526.99,453.62L527.24,451.67L528.34,450.25L529.84,449.35L532.15,450.3L533.93,451.33L535.98,451.61L538.07,452.15L538.91,450.47L539.3,450.25L540.57,450.53L543.7,449.14L544.8,449.73L545.71,449.65L546.13,448.97L547.17,448.73L549.28,449.02L551.08,449.08L552.01,448.79L553.7,451.1L554.96,451.43L555.71,450.96L557.01,451.15L558.57,450.56L559.24,451.75z"},{id:"CF",title:"Central African Republic",d:"M518.09,442.66L520.41,442.44L520.93,441.72L521.39,441.78L522.09,442.41L525.62,441.34L526.81,440.24L528.28,439.25L528,438.26L528.79,438L531.5,438.18L534.14,436.87L536.16,433.78L537.59,432.64L539.36,432.15L539.68,433.37L541.3,435.14L541.3,436.29L540.85,437.47L541.03,438.34L542,439.15L544.14,440.39L545.67,441.52L545.7,442.44L547.58,443.9L548.75,445.11L549.46,446.79L551.56,447.9L552.01,448.79L551.08,449.08L549.28,449.02L547.17,448.73L546.13,448.97L545.71,449.65L544.8,449.73L543.7,449.14L540.57,450.53L539.3,450.25L538.91,450.47L538.07,452.15L535.98,451.61L533.93,451.33L532.15,450.3L529.84,449.35L528.34,450.25L527.24,451.67L526.99,453.62L525.19,453.46L523.29,452.99L521.62,454.47L520.15,457.07L519.85,456.26L519.73,454.99L518.45,454.09L517.41,452.65L517.17,451.65L515.85,450.19L516.07,449.36L515.79,448.18L516.01,446.01L516.68,445.5z"},{id:"CG",title:"Republic of Congo",d:"M511.69,476.72L510.64,475.76L509.79,476.23L508.66,477.43L506.36,474.48L508.49,472.94L507.44,471.09L508.4,470.39L510.29,470.05L510.51,468.81L512.01,470.15L514.49,470.27L515.35,468.95L515.7,467.1L515.39,464.92L514.07,463.28L515.28,460.05L514.58,459.5L512.5,459.72L511.71,458.29L511.92,457.07L515.45,457.18L517.72,457.91L519.95,458.57L520.15,457.07L521.62,454.47L523.29,452.99L525.19,453.46L526.99,453.62L526.83,455.3L525.99,456.79L525.44,458.53L525.09,461L525.24,462.58L524.78,463.55L524.71,464.57L524.39,465.46L522.54,466.8L521.26,468.23L520.04,470.94L520.13,473.24L519.42,474.13L517.79,475.49L516.14,477.25L515.09,476.75L514.91,475.96L513.39,475.93L512.43,477z"},{id:"CH",title:"Switzerland",d:"M502.15,312.34L502.26,313.08L501.83,314.09L503.1,314.83L504.53,314.94L504.31,316.61L503.08,317.3L501,316.79L500.39,318.42L499.06,318.55L498.57,317.91L497,319.27L495.65,319.46L494.44,318.6L493.48,316.83L492.14,317.47L492.18,315.63L494.23,313.32L494.14,312.27L495.42,312.66L496.19,311.95L498.57,311.98L499.15,311.08z"},{id:"CI",title:"Côte d'Ivoire",d:"M467.24,449.46L465.97,449.49L464.01,448.94L462.22,448.97L458.89,449.46L456.95,450.27L454.17,451.29L453.63,451.22L453.84,448.92L454.11,448.57L454.03,447.46L452.84,446.29L451.95,446.1L451.13,445.33L451.74,444.09L451.46,442.73L451.59,441.91L452.04,441.91L452.2,440.68L451.98,440.14L452.25,439.75L453.29,439.41L452.6,437.15L451.95,435.99L452.18,435.02L452.74,434.81L453.1,434.55L453.88,434.97L456.04,435L456.56,434.17L457.04,434.23L457.85,433.91L458.29,435.12L458.94,434.76L460.1,434.34L461.36,434.96L461.85,435.89L463.11,436.49L464.09,435.78L465.41,435.67L467.33,436.4L468.07,440.41L466.89,442.77L466.16,445.94L467.37,448.35z"},{id:"CL",title:"Chile",d:"M282.81,636.73l0,10.57l3,0l1.69,0.13l-0.93,1.98l-2.4,1.53l-1.38,-0.16l-1.66,-0.4l-2.04,-1.48l-2.94,-0.71l-3.53,-2.71l-2.86,-2.57l-3.86,-5.25l2.31,0.97l3.94,3.13l3.72,1.7l1.45,-2.17l0.91,-3.2l2.58,-1.91L282.81,636.73zM283.97,524.72l1.1,4.15l2.02,-0.41l0.34,0.76l-0.96,3.16l-3.05,1.51l0.09,5.14l-0.59,1l0.84,1.23l-1.98,1.95l-1.84,2.96l-1,2.9l0.27,3.11l-1.73,3.34l1.29,5.69l0.73,0.61l-0.01,3.09l-1.6,3.31l0.06,2.87l-2.12,2.26l0.01,3.22l0.85,3.46l-1.68,1.3l-0.75,3.22l-0.66,3.75l0.47,4.54l-1.13,0.77l0.65,4.4l1.27,1.46l-0.92,1.63l1.3,0.78l0.3,1.48l-1.22,0.75l0.3,2.33l-1.02,5.35l-1.49,3.52l0.33,2.11l-0.89,2.68l-2.15,1.88l0.25,4.6l0.99,1.6l1.87,-0.28l-0.05,3.33l1.16,2.63l6.78,0.61l2.6,0.71l-2.49,-0.03l-1.35,1.13l-2.53,1.67l-0.45,4.38l-1.19,0.11l-3.16,-1.54l-3.21,-3.25l0,0l-3.49,-2.63l-0.88,-2.87l0.79,-2.62l-1.41,-2.94l-0.36,-7.34l1.19,-4.03l2.96,-3.19l-4.26,-1.19l2.67,-3.57l0.95,-6.56l3.12,1.37l1.46,-7.97l-1.88,-1l-0.88,4.75l-1.77,-0.54l0.88,-5.42l0.96,-6.84l1.29,-2.48l-0.81,-3.5l-0.23,-3.98l1.18,-0.11l1.72,-5.6l1.94,-5.43l1.19,-4.97l-0.65,-4.91l0.84,-2.67l-0.34,-3.96l1.64,-3.87l0.51,-6.04l0.9,-6.37l0.88,-6.75l-0.21,-4.87l-0.58,-4.15l1.44,-0.75l0.75,-1.5l1.37,1.99l0.37,2.12l1.47,1.25l-0.88,2.87L283.97,524.72z"},{id:"CM",title:"Cameroon",d:"M511.92,457.07L511.57,456.92L509.91,457.28L508.2,456.9L506.87,457.09L502.31,457.02L502.72,454.82L501.62,452.98L500.34,452.5L499.77,451.25L499.05,450.85L499.09,450.08L499.81,448.1L501.14,445.4L501.95,445.37L503.62,443.73L504.69,443.69L506.26,444.84L508.19,443.89L508.45,442.73L509.08,441.59L509.51,440.17L511.01,439.01L511.58,437.04L512.17,436.41L512.57,434.94L513.31,433.13L515.67,430.93L515.82,429.98L516.13,429.47L515.02,428.33L515.11,427.43L515.9,427.26L517.01,429.09L517.2,430.98L517.1,432.87L518.62,435.44L517.06,435.41L516.27,435.61L514.99,435.33L514.38,436.66L516.03,438.31L517.25,438.79L517.65,439.96L518.53,441.89L518.09,442.66L516.68,445.5L516.01,446.01L515.79,448.18L516.07,449.36L515.85,450.19L517.17,451.65L517.41,452.65L518.45,454.09L519.73,454.99L519.85,456.26L520.15,457.07L519.95,458.57L517.72,457.91L515.45,457.18z"},{id:"CN",title:"China",d:"M784.63,410.41l-2.42,1.41l-2.3,-0.91l-0.08,-2.53l1.38,-1.34l3.06,-0.83l1.61,0.07l0.63,1.13l-1.23,1.3L784.63,410.41zM833.19,302.89l4.88,1.38l3.32,3.03l1.13,3.95l4.26,0l2.43,-1.65l4.63,-1.24l-1.47,3.76l-1.09,1.51l-0.96,4.46l-1.89,3.89l-3.4,-0.7l-2.41,1.4l0.74,3.36l-0.4,4.55l-1.43,0.1l0.02,1.93l-1.81,-2.24l-1.11,2.13l-4.33,1.62l0.44,1.97l-2.42,-0.14l-1.33,-1.17l-1.93,2.64l-3.09,1.98l-2.28,2.35l-3.92,1.06l-2.06,1.69l-3.02,0.98l1.49,-1.67l-0.59,-1.41l2.22,-2.45l-1.48,-1.93l-2.44,1.3l-3.17,2.54l-1.73,2.34l-2.75,0.17l-1.43,1.68l1.48,2.41l2.29,0.58l0.09,1.58l2.22,1.02l3.14,-2.51l2.49,1.37l1.81,0.09l0.46,1.84l-3.97,0.97l-1.31,1.87l-2.73,1.73l-1.44,2.39l3.02,1.86l1.1,3.31l1.71,3.05l1.9,2.53l-0.05,2.43l-1.76,0.89l0.67,1.73l1.65,1l-0.43,2.61l-0.71,2.52l-1.57,0.28l-2.05,3.41l-2.27,4.09l-2.6,3.68l-3.86,2.82l-3.9,2.55l-3.16,0.35l-1.71,1.34l-0.97,-0.98l-1.59,1.5l-3.92,1.5l-2.97,0.46l-0.96,3.15l-1.55,0.17l-0.74,-2.16l0.66,-1.16l-3.76,-0.96l-1.33,0.49l-2.82,-0.78l-1.33,-1.22l0.44,-1.74l-2.56,-0.55l-1.35,-1.14l-2.39,1.62l-2.73,0.35l-2.24,-0.02l-1.5,0.74l-1.45,0.44l0.42,3.43l-1.5,-0.08l-0.25,-0.7l-0.08,-1.24l-2.06,0.87l-1.21,-0.55l-2.08,-1.13l0.82,-2.51l-1.78,-0.59l-0.67,-2.8l-2.96,0.51l0.34,-3.63l2.66,-2.58l0.11,-2.57l-0.08,-2.4l-1.22,-0.75l-0.94,-1.86l-1.64,0.24l-3.02,-0.47l0.95,-1.33l-1.31,-1.99l-2,1.35L740.4,378l-3.23,2.03l-2.55,2.36l-2.26,0.39l-1.23,-0.85l-1.48,-0.08l-2,-0.73l-1.51,0.8l-1.85,2.34l-0.24,-2.48l-1.71,0.66l-3.27,-0.31l-3.17,-0.73l-2.28,-1.39l-2.18,-0.63l-0.94,-1.53l-1.58,-0.46l-2.83,-2.09l-2.25,-0.99l-1.16,0.77l-3.9,-2.26l-2.75,-2.07l-0.79,-3.63l2.01,0.44l0.09,-1.69l-1.12,-1.71l0.28,-2.74l-3.01,-3.99l-4.61,-1.39l-0.83,-2.66l-2.07,-1.63l-0.5,-1.01l-0.42,-2.01l0.1,-1.38l-1.7,-0.81l-0.92,0.36l-0.71,-3.32l0.8,-0.83l-0.39,-0.85l2.68,-1.73l1.94,-0.72l2.97,0.49l1.06,-2.35l3.6,-0.44l1,-1.48l4.42,-2.03l0.39,-0.85l-0.22,-2.17l1.92,-1l-2.52,-6.75l5.55,-1.58l1.44,-0.89l2.02,-7.26l5.56,1.35l1.56,-1.86l0.13,-4.19l2.33,-0.39l2.13,-2.83l1.1,-0.35l0.74,2.97l2.36,2.23l4,1.57l1.93,3.32l-1.08,4.73l1.01,1.73l3.33,0.68l3.78,0.55l3.39,2.45l1.73,0.43l1.28,3.57l1.65,2.27l3.09,-0.09l5.79,0.85l3.73,-0.53l2.77,0.57l4.15,2.29l3.39,0l1.24,1.16l3.26,-2.01l4.53,-1.31l4.2,-0.14l3.28,-1.34l2.01,-2.05l1.96,-1.3l-0.45,-1.28l-0.9,-1.5l1.47,-2.54l1.58,0.36l2.88,0.8l2.79,-2.1l4.28,-1.55l2.05,-2.66l1.97,-1.16l4.07,-0.54l2.21,0.46l0.31,-1.45l-2.54,-2.89l-2.25,-1.33l-2.16,1.54l-2.77,-0.65l-1.59,0.53l-0.72,-1.71l1.98,-4.23l1.37,-3.25l3.37,1.63l3.95,-2.74l-0.03,-1.93l2.53,-4.73l1.56,-1.45l-0.04,-2.52l-1.54,-1.1l2.32,-2.31l3.48,-0.84l3.72,-0.13l4.2,1.39l2.46,1.71l1.73,4.61l1.05,1.94l0.98,2.73L833.19,302.89z"},{id:"CO",title:"Colombia",d:"M263.92,463.81L262.72,463.15L261.34,462.23L260.54,462.67L258.16,462.28L257.48,461.08L256.96,461.13L254.15,459.54L253.77,458.67L254.82,458.46L254.7,457.07L255.35,456.06L256.74,455.87L257.93,454.12L259,452.66L257.96,451.99L258.49,450.37L257.86,447.81L258.46,447.08L258.02,444.71L256.88,443.21L257.24,441.85L258.15,442.05L258.68,441.21L258.03,439.56L258.37,439.14L259.81,439.23L261.92,437.26L263.07,436.96L263.1,436.03L263.62,433.64L265.23,432.32L266.99,432.27L267.21,431.68L269.41,431.91L271.62,430.48L272.71,429.84L274.06,428.47L275.06,428.64L275.79,429.39L275.25,430.35L273.45,430.83L272.74,432.25L271.65,433.06L270.84,434.12L270.49,436.13L269.72,437.79L271.16,437.97L271.52,439.27L272.14,439.89L272.36,441.02L272.03,442.06L272.13,442.65L272.82,442.88L273.49,443.86L277.09,443.59L278.72,443.95L280.7,446.36L281.83,446.06L283.85,446.21L285.45,445.89L286.44,446.38L285.93,447.88L285.31,448.82L285.09,450.83L285.65,452.68L286.45,453.51L286.54,454.14L285.12,455.53L286.14,456.14L286.89,457.12L287.74,459.89L287.21,460.24L286.67,458.59L285.89,457.71L284.96,458.67L279.5,458.61L279.53,460.35L281.17,460.64L281.08,461.71L280.52,461.42L278.94,461.88L278.93,463.9L280.17,464.92L280.61,466.51L280.54,467.72L279.28,475.37L277.88,473.88L277.04,473.82L278.85,470.98L276.7,469.67L275.02,469.91L274.01,469.43L272.46,470.17L270.37,469.82L268.72,466.9L267.42,466.18L266.53,464.86L264.67,463.54z"},{id:"CR",title:"Costa Rica",d:"M242.63,440.4L241.11,439.77L240.54,439.18L240.86,438.69L240.76,438.07L239.98,437.39L238.88,436.84L237.91,436.48L237.73,435.65L236.99,435.14L237.17,435.97L236.61,436.64L235.97,435.86L235.07,435.58L234.69,435.01L234.71,434.15L235.08,433.25L234.29,432.85L234.93,432.31L235.35,431.94L237.2,432.69L237.84,432.32L238.73,432.56L239.2,433.14L240.02,433.33L240.69,432.73L241.41,434.27L242.49,435.41L243.81,436.62L242.72,436.87L242.74,438L243.32,438.42L242.9,438.76L243.01,439.27L242.78,439.84z"},{id:"CU",title:"Cuba",d:"M244.58,396.94L247.01,397.16L249.21,397.19L251.84,398.22L252.96,399.33L255.58,398.99L256.57,399.69L258.95,401.56L260.69,402.91L261.61,402.87L263.29,403.48L263.08,404.32L265.15,404.44L267.27,405.66L266.94,406.35L265.07,406.73L263.18,406.88L261.25,406.64L257.24,406.93L259.12,405.27L257.98,404.5L256.17,404.3L255.2,403.44L254.53,401.74L252.95,401.85L250.33,401.05L249.49,400.42L245.84,399.95L244.86,399.36L245.91,398.61L243.16,398.46L241.15,400.02L239.98,400.06L239.58,400.8L238.2,401.13L237,400.84L238.48,399.91L239.08,398.82L240.35,398.15L241.78,397.56L243.91,397.27z"},{id:"CY",title:"Cyprus",d:"M570.31,358.29L572.2,356.83L569.65,357.85L567.63,357.8L567.23,358.63L567.03,358.65L565.7,358.77L566.35,360.14L567.72,360.58L570.6,359.2L570.51,358.93z"},{id:"CZ",title:"Czech Republic",d:"M522.81,307.86L521.51,307.06L520.2,307.28L518.02,305.98L517.03,306.3L515.46,308.04L513.37,306.67L511.79,304.84L510.36,303.8L510.06,301.98L509.57,300.68L511.61,299.73L512.65,298.63L514.66,297.77L515.37,296.93L516.11,297.44L517.36,296.97L518.69,298.4L520.78,298.79L520.61,300L522.13,300.9L522.55,299.77L524.47,300.26L524.74,301.63L526.82,301.89L528.11,304.02L527.28,304.03L526.84,304.8L526.2,304.99L526.02,305.96L525.48,306.17L525.4,306.56L524.45,307L523.2,306.93z"},{id:"DE",title:"Germany",d:"M503.07,278.92L503.12,280.8L505.96,281.92L505.93,283.62L508.78,282.72L510.35,281.41L513.52,283.3L514.84,284.81L515.5,287.2L514.72,288.45L515.73,290.1L516.43,292.55L516.21,294.11L517.36,296.97L516.11,297.44L515.37,296.93L514.66,297.77L512.65,298.63L511.61,299.73L509.57,300.68L510.06,301.98L510.36,303.8L511.79,304.84L513.37,306.67L512.39,308.62L511.38,309.16L511.78,311.88L511.51,312.58L510.64,311.73L509.3,311.61L507.29,312.35L504.82,312.17L504.42,313.26L503,312.12L502.15,312.34L499.15,311.08L498.57,311.98L496.19,311.95L496.54,308.97L497.96,306.07L493.92,305.29L492.6,304.16L492.76,302.27L492.2,301.29L492.52,298.32L492.04,293.63L493.73,293.63L494.44,291.92L495.14,287.69L494.61,286.11L495.16,285.11L497.5,284.85L498.02,285.89L499.93,283.56L499.29,281.77L499.16,279.02L501.28,279.66z"},{id:"DJ",title:"Djibouti",d:"M596.05,427.72L596.71,428.6L596.62,429.79L595.02,430.47L596.23,431.24L595.19,432.76L594.57,432.26L593.9,432.46L592.33,432.41L592.28,431.55L592.07,430.76L593.01,429.43L594,428.17L595.2,428.42z"},{id:"DK",title:"Denmark",d:"M510.83,275.84l-1.68,3.97l-2.93,-2.76l-0.39,-2.05l4.11,-1.66L510.83,275.84zM505.85,271.59l-0.69,1.9l-0.83,-0.55l-2.02,3.59l0.76,2.39l-1.79,0.74l-2.12,-0.64l-1.14,-2.72l-0.08,-5.12l0.47,-1.38l0.8,-1.54l2.47,-0.32l0.98,-1.43l2.26,-1.47l-0.1,2.68l-0.83,1.68l0.34,1.43L505.85,271.59z"},{id:"DO",title:"Dominican Republic",d:"M274.18,407.35L274.53,406.84L276.72,406.86L278.38,407.62L279.12,407.54L279.63,408.59L281.16,408.53L281.07,409.41L282.32,409.52L283.7,410.6L282.66,411.8L281.32,411.16L280.04,411.28L279.12,411.14L278.61,411.68L277.53,411.86L277.11,411.14L276.18,411.57L275.06,413.57L274.34,413.11L274.19,412.27L274.25,411.47L273.53,410.59L274.21,410.09L274.43,408.96z"},{id:"DZ",title:"Algeria",d:"M508.9,396.08L499.29,401.83L491.17,407.68L487.22,409L484.11,409.29L484.08,407.41L482.78,406.93L481.03,406.08L480.37,404.69L470.91,398.14L461.45,391.49L450.9,383.96L450.96,383.35L450.96,383.14L450.93,379.39L455.46,377.03L458.26,376.54L460.55,375.68L461.63,374.06L464.91,372.77L465.03,370.36L466.65,370.07L467.92,368.86L471.59,368.3L472.1,367.02L471.36,366.31L470.39,362.78L470.23,360.73L469.17,358.55L471.86,356.68L474.9,356.08L476.67,354.65L479.37,353.6L484.12,352.98L488.76,352.69L490.17,353.21L492.81,351.84L495.81,351.81L496.95,352.62L498.86,352.41L498.29,354.2L498.74,357.48L498.08,360.3L496.35,362.18L496.6,364.71L498.89,366.69L498.92,367.5L500.64,368.83L501.84,374.69L502.75,377.53L502.9,379.01L502.41,381.6L502.61,383.04L502.25,384.76L502.5,386.73L501.38,388.02L503.04,390.28L503.15,391.6L504.14,393.31L505.45,392.75L507.67,394.17z"},{id:"EC",title:"Ecuador",d:"M250.1,472.87L251.59,470.79L250.98,469.57L249.91,470.87L248.23,469.64L248.8,468.86L248.33,466.33L249.31,465.91L249.83,464.18L250.89,462.38L250.69,461.25L252.23,460.65L254.15,459.54L256.96,461.13L257.48,461.08L258.16,462.28L260.54,462.67L261.34,462.23L262.72,463.15L263.92,463.81L264.31,465.92L263.44,467.73L260.38,470.65L257.01,471.75L255.29,474.18L254.76,476.06L253.17,477.21L252,475.8L250.86,475.5L249.7,475.72L249.63,474.7L250.43,474.04z"},{id:"EE",title:"Estonia",d:"M543.42,264.71L543.75,261.59L542.72,262.26L540.94,260.36L540.69,257.25L544.24,255.72L547.77,254.91L550.81,255.83L553.71,255.66L554.13,256.62L552.14,259.76L552.97,264.72L551.77,266.38L549.45,266.37L547.04,264.43L545.81,263.78z"},{id:"EG",title:"Egypt",d:"M573.17,377.28L572.38,378.57L571.78,380.97L571.02,382.61L570.36,383.17L569.43,382.15L568.16,380.73L566.16,376.16L565.88,376.45L567.04,379.82L568.76,383L570.88,387.88L571.91,389.56L572.81,391.3L575.33,394.7L574.77,395.23L574.86,397.2L578.13,399.91L578.62,400.53L567.5,400.53L556.62,400.53L545.35,400.53L545.35,389.3L545.35,378.12L544.51,375.54L545.23,373.54L544.8,372.15L545.81,370.58L549.54,370.53L552.24,371.39L555.02,372.36L556.32,372.86L558.48,371.83L559.63,370.9L562.11,370.63L564.1,371.04L564.87,372.66L565.52,371.59L567.76,372.36L569.95,372.55L571.33,371.73z"},{id:"EH",title:"Western Sahara",d:"M438.57,383.06L442.19,383.07L450.94,383.1L450.94,383.1L450.94,383.1L442.19,383.07L438.57,383.06L438.46,383.15L438.41,383.19L436.63,386.39L434.77,387.53L433.75,389.44L433.69,391.09L432.94,392.88L432,393.37L430.44,395.31L429.48,397.46L429.66,398.48L428.74,400.05L427.66,400.87L427.53,402.26L427.41,403.53L428.02,402.53L439,402.55L438.47,398.2L439.16,396.65L441.78,396.38L441.69,388.52L450.9,388.69L450.9,383.96L450.96,383.35L450.96,383.14z"},{id:"ER",title:"Eritrea",d:"M594,428.17L593.04,427.24L591.89,425.57L590.65,424.65L589.92,423.65L587.48,422.5L585.56,422.47L584.88,421.86L583.24,422.54L581.54,421.23L580.66,423.38L577.4,422.78L577.1,421.63L578.31,417.38L578.58,415.45L579.46,414.55L581.53,414.07L582.95,412.4L584.58,415.78L585.35,418.45L586.89,419.86L590.71,422.58L592.27,424.22L593.79,425.88L594.67,426.86L596.05,427.72L595.2,428.42z"},{id:"ES",title:"Spain",d:"M449.92,334.56L450.06,331.88L448.92,330.22L452.88,327.45L456.31,328.15L460.08,328.12L463.06,328.78L465.39,328.58L469.92,328.7L471.04,330.19L476.2,331.92L477.22,331.1L480.38,332.82L483.63,332.33L483.78,334.52L481.12,337.01L477.53,337.79L477.28,339.03L475.55,341.06L474.47,344.02L475.56,346.07L473.94,347.67L473.34,349.97L471.22,350.67L469.23,353.36L465.68,353.41L463,353.35L461.25,354.57L460.18,355.88L458.8,355.59L457.77,354.42L456.97,352.42L454.35,351.88L454.12,350.72L455.16,349.4L455.54,348.44L454.58,347.38L455.35,345.03L454.23,342.86L455.44,342.56L455.55,340.84L456.01,340.31L456.04,337.43L457.34,336.43L456.56,334.55L454.92,334.42L454.44,334.89L452.79,334.9L452.08,333.06L450.94,333.61z"},{id:"ET",title:"Ethiopia",d:"M581.54,421.23L583.24,422.54L584.88,421.86L585.56,422.47L587.48,422.5L589.92,423.65L590.65,424.65L591.89,425.57L593.04,427.24L594,428.17L593.01,429.43L592.07,430.76L592.28,431.55L592.33,432.41L593.9,432.46L594.57,432.26L595.19,432.76L594.58,433.77L595.62,435.33L596.65,436.69L597.72,437.7L606.89,441.04L609.25,441.02L601.32,449.44L597.67,449.56L595.17,451.53L593.38,451.58L592.61,452.46L590.69,452.46L589.56,451.52L587,452.69L586.17,453.85L584.3,453.63L583.68,453.31L583.02,453.38L582.14,453.36L578.59,450.98L576.64,450.98L575.68,450.07L575.68,448.5L574.22,448.03L572.57,444.98L571.29,444.33L570.79,443.21L569.37,441.84L567.65,441.64L568.61,440.03L570.09,439.96L570.51,439.1L570.48,436.57L571.31,433.61L572.63,432.81L572.92,431.65L574.12,429.48L575.81,428.06L576.95,425.25L577.4,422.78L580.66,423.38z"},{id:"FK",title:"Falkland Islands",d:"M303.66,633.13L307.02,630.44L309.41,631.56L311.09,629.77L313.33,631.78L312.49,633.36L308.7,634.72L307.44,633.13L305.06,635.18z"},{id:"FI",title:"Finland",d:"M555.42,193.1L555.01,198.5L559.31,203.49L556.72,208.97L559.98,216.93L558.09,222.69L560.62,227.55L559.47,231.69L563.62,235.95L562.56,239.05L559.96,242.5L553.96,249.91L548.87,250.36L543.94,252.43L539.38,253.61L537.75,250.54L535.04,248.67L535.66,242.95L534.3,237.54L535.64,233.96L538.18,230.02L544.59,223L546.47,221.61L546.17,218.77L542.27,215.55L541.33,212.85L541.25,201.73L536.88,196.58L533.14,192.77L534.82,190.69L537.94,194.84L541.6,194.45L544.61,196.32L547.28,192.88L548.66,187.03L553.01,184.25L556.61,187.51z"},{id:"FJ",title:"Fiji",d:"M980.53,508.61l-0.35,1.4l-0.23,0.16l-1.78,0.72l-1.79,0.61l-0.36,-1.09l1.4,-0.6l0.89,-0.16l1.64,-0.91L980.53,508.61zM974.69,512.92l-1.27,-0.36l-1.08,1l0.27,1.29l1.55,0.36l1.74,-0.4l0.46,-1.53l-0.96,-0.84L974.69,512.92z"},{id:"FR",title:"France",d:"M502.06,333.54l-0.93,2.89l-1.27,-0.76l-0.65,-2.53l0.57,-1.41l1.81,-1.45L502.06,333.54zM485.31,300.19l1.96,2.06l1.44,-0.34l2.45,1.97l0.63,0.37l0.81,-0.09l1.32,1.12l4.04,0.79l-1.42,2.9l-0.36,2.98l-0.77,0.71l-1.28,-0.38l0.09,1.05l-2.05,2.3l-0.04,1.84l1.34,-0.63l0.96,1.77l-0.12,1.13l0.83,1.5l-0.97,1.21l0.72,3.04l1.52,0.49l-0.32,1.68l-2.54,2.17l-5.53,-1.04l-4.08,1.24l-0.32,2.29l-3.25,0.49l-3.15,-1.72l-1.02,0.82l-5.16,-1.73l-1.12,-1.49l1.45,-2.32l0.53,-7.88l-2.89,-4.26l-2.07,-2.09l-4.29,-1.6l-0.28,-3.07l3.64,-0.92l4.71,1.09l-0.89,-4.84l2.65,1.85l6.53,-3.37l0.84,-3.61l2.45,-0.9l0.41,1.56l1.3,0.07L485.31,300.19z"},{id:"GA",title:"Gabon",d:"M506.36,474.48L503.48,471.66L501.62,469.36L499.92,466.48L500.01,465.56L500.62,464.66L501.3,462.64L501.87,460.57L502.82,460.41L506.89,460.44L506.87,457.09L508.2,456.9L509.91,457.28L511.57,456.92L511.92,457.07L511.71,458.29L512.5,459.72L514.58,459.5L515.28,460.05L514.07,463.28L515.39,464.92L515.7,467.1L515.35,468.95L514.49,470.27L512.01,470.15L510.51,468.81L510.29,470.05L508.4,470.39L507.44,471.09L508.49,472.94z"},{id:"GB",title:"United Kingdom",d:"M459.38,281l-1.5,3.29l-2.12,-0.98l-1.73,0.07l0.58,-2.57l-0.58,-2.6l2.35,-0.2L459.38,281zM466.83,260.24l-3,5.73l2.86,-0.72l3.07,0.03l-0.73,4.22l-2.52,4.53l2.9,0.32l0.22,0.52l2.5,5.79l1.92,0.77l1.73,5.41l0.8,1.84l3.4,0.88l-0.34,2.93l-1.43,1.33l1.12,2.33l-2.52,2.33l-3.75,-0.04l-4.77,1.21l-1.31,-0.87l-1.85,2.06l-2.59,-0.5l-1.97,1.67l-1.49,-0.87l4.11,-4.64l2.51,-0.97l-0.02,0l-4.38,-0.75l-0.79,-1.8l2.93,-1.41l-1.54,-2.48l0.53,-3.06l4.17,0.42l0,0l0.41,-2.74l-1.88,-2.95l-0.04,-0.07l-3.4,-0.85l-0.67,-1.32l1.02,-2.2l-0.92,-1.37l-1.51,2.34l-0.16,-4.8l-1.42,-2.59l1.02,-5.36l2.18,-4.31l2.24,0.42L466.83,260.24z"},{id:"GE",title:"Georgia",d:"M591.76,335.85L592.18,334.25L591.48,331.68L589.86,330.27L588.31,329.83L587.28,328.66L587.62,328.2L589.99,328.86L594.12,329.48L597.94,331.31L598.43,332.02L600.13,331.42L602.75,332.22L603.6,333.77L605.37,334.64L604.64,335.15L606.02,337.17L605.64,337.6L604.13,337.38L602.04,336.32L601.35,336.92L597.45,337.5L594.75,335.68z"},{id:"GF",title:"French Guiana",d:"M327.89,456.41l-1.07,1.06l-1.34,0.2l-0.38,-0.78l-0.63,-0.12l-0.87,0.76l-1.22,-0.57l0.71,-1.19l0.24,-1.27l0.48,-1.2l-1.09,-1.65l-0.22,-1.91l1.46,-2.41l0.95,0.31l2.06,0.66l2.97,2.36l0.46,1.14l-1.66,2.55L327.89,456.41z"},{id:"GH",title:"Ghana",d:"M478.23,446.84L473.83,448.48L472.27,449.44L469.74,450.25L467.24,449.46L467.37,448.35L466.16,445.94L466.89,442.77L468.07,440.41L467.33,436.4L466.94,434.27L467.01,432.66L471.88,432.53L473.12,432.74L474.02,432.28L475.32,432.5L475.11,433.39L476.28,434.85L476.28,436.9L476.55,439.12L477.25,440.15L476.63,442.68L476.85,444.08L477.6,445.86z"},{id:"GL",title:"Greenland",d:"M344.13,23.91L353.55,10.3L363.39,11.37L366.96,2.42L376.87,0L399.27,3.15L416.81,21.74L411.63,30.04L400.9,30.97L385.81,33L387.22,36.64L397.15,34.4L405.59,41.31L411.04,35.19L413.37,42.34L410.29,53.31L417.43,46.38L431.04,38.83L439.45,42.64L441.02,50.76L429.59,63.42L428.01,67.32L419.05,70.18L425.54,70.97L422.26,82.48L420,92.07L420.09,107.33L423.46,115.67L419.08,116.18L414.47,120.06L419.64,126.36L420.3,135.98L417.3,137L420.93,146.15L414.71,146.9L417.96,151.04L417.04,154.55L413.09,156.06L409.18,156.09L412.69,162.57L412.73,166.7L407.18,162.87L405.74,165.36L409.52,167.65L413.2,173.13L414.26,180.08L409.26,181.7L407.1,178.44L403.63,173.46L404.59,179.33L401.34,183.74L408.72,184.09L412.59,184.54L405.07,191.57L397.45,197.7L389.25,200.31L386.16,200.35L383.26,203.22L379.36,210.85L373.33,215.74L371.39,216.03L367.65,217.7L363.63,219.29L361.22,223.41L361.18,227.97L359.77,232.13L355.19,237.08L356.32,241.79L355.06,246.64L353.63,252.2L349.68,252.54L345.54,247.91L339.93,247.88L337.21,244.7L335.34,238.9L330.48,231.22L329.06,227.07L328.68,221.18L324.79,214.91L325.8,209.74L323.93,207.21L326.7,198.56L330.92,195.71L332.03,192.45L332.62,186.19L329.41,189.05L327.89,190.24L325.37,191.38L321.93,188.77L321.74,183.22L322.84,178.74L325.44,178.62L331.16,180.87L326.34,175.44L323.83,172.43L321.04,173.67L318.7,171.48L321.83,162.98L320.13,159.45L317.9,152.71L314.53,141.8L310.96,137.63L310.99,133L303.46,126.31L297.51,125.46L290.02,125.93L283.18,126.79L279.92,123.04L275.05,115.38L282.41,111.41L288.06,110.73L276.06,107.37L269.74,101.93L270.13,96.59L280.74,89.72L291.01,82.56L292.09,76.92L284.53,71.16L286.97,64.52L296.68,52.19L300.76,50.21L299.59,41.64L306.23,36.4L314.85,33.19L323.47,33.01L326.53,39.31L333.97,27.99L340.66,35.77L344.59,37.36L350.42,43.77L343.75,33z"},{id:"GM",title:"Gambia",d:"M428.03,426.43L428.39,425.16L431.44,425.07L432.08,424.4L432.97,424.35L434.07,425.06L434.94,425.07L435.87,424.59L436.43,425.41L435.22,426.06L434,426.01L432.8,425.4L431.76,426.06L431.26,426.09L430.58,426.49z"},{id:"GN",title:"Guinea",d:"M451.59,441.91L450.8,441.84L450.23,442.97L449.43,442.96L448.89,442.36L449.07,441.23L447.9,439.51L447.17,439.82L446.57,439.89L445.8,440.05L445.83,439.02L445.38,438.28L445.47,437.46L444.86,436.27L444.08,435.26L441.84,435.26L441.19,435.79L440.41,435.85L439.93,436.46L439.61,437.25L438.11,438.49L436.88,436.82L435.79,435.71L435.07,435.35L434.37,434.78L434.06,433.53L433.65,432.91L432.83,432.44L434.08,431.06L434.93,431.11L435.66,430.63L436.28,430.63L436.72,430.25L436.48,429.31L436.79,429.01L436.84,428.04L438.19,428.07L440.21,428.77L440.83,428.7L441.04,428.39L442.56,428.61L442.97,428.45L443.13,429.5L443.58,429.49L444.31,429.11L444.77,429.21L445.55,429.93L446.75,430.16L447.52,429.54L448.43,429.16L449.1,428.76L449.66,428.84L450.28,429.46L450.62,430.25L451.77,431.44L451.19,432.17L451.08,433.09L451.68,432.81L452.03,433.15L451.88,433.99L452.74,434.81L452.18,435.02L451.95,435.99L452.6,437.15L453.29,439.41L452.25,439.75L451.98,440.14L452.2,440.68L452.04,441.91z"},{id:"GQ",title:"Equatorial Guinea",d:"M501.87,460.57L501.34,460.15L502.31,457.02L506.87,457.09L506.89,460.44L502.82,460.41z"},{id:"GR",title:"Greece",d:"M541.7,356.71l1.53,1.16l2.18,-0.2l2.09,0.24l-0.07,0.59l1.53,-0.41l-0.35,1.01l-4.04,0.29l0.03,-0.56l-3.42,-0.67L541.7,356.71zM549.85,335.75l-0.87,2.33l-0.67,0.41l-1.71,-0.1l-1.46,-0.35l-3.4,0.96l1.94,2.06l-1.42,0.59l-1.56,0l-1.48,-1.88l-0.53,0.8l0.63,2.18l1.4,1.7l-1.06,0.79l1.56,1.65l1.39,1.03l0.04,2l-2.59,-0.94l0.83,1.8l-1.78,0.37l1.06,3.08l-1.86,0.04l-2.3,-1.51l-1.05,-2.81l-0.49,-2.36l-1.09,-1.64l-1.44,-2.05l-0.19,-1.03l1.3,-1.76l0.17,-1.19l0.91,-0.53l0.06,-0.97l1.83,-0.33l1.07,-0.81l1.52,0.07l0.46,-0.65l0.53,-0.12l2.07,0.11l2.24,-1.02l1.98,1.3l2.55,-0.35l0.03,-1.86L549.85,335.75z"},{id:"GT",title:"Guatemala",d:"M222.64,424.75L221.2,424.25L219.45,424.2L218.17,423.63L216.66,422.45L216.73,421.61L217.05,420.93L216.66,420.39L218.01,418.03L221.6,418.02L221.68,417.04L221.22,416.86L220.91,416.23L219.87,415.56L218.83,414.58L220.1,414.58L220.1,412.93L222.72,412.93L225.31,412.96L225.29,415.27L225.07,418.55L225.9,418.55L226.82,419.08L227.06,418.64L227.88,419.01L226.61,420.12L225.28,420.93L225.08,421.48L225.3,422.04L224.72,422.78L224.06,422.95L224.21,423.29L223.69,423.61L222.73,424.33z"},{id:"GW",title:"Guinea-Bissau",d:"M432.83,432.44L431.33,431.25L430.15,431.07L429.51,430.26L429.52,429.83L428.67,429.23L428.49,428.62L429.98,428.15L430.91,428.24L431.66,427.92L436.84,428.04L436.79,429.01L436.48,429.31L436.72,430.25L436.28,430.63L435.66,430.63L434.93,431.11L434.08,431.06z"},{id:"GY",title:"Guyana",d:"M307.7,440L309.54,441.03L311.28,442.86L311.35,444.31L312.41,444.38L313.91,445.74L315.02,446.72L314.57,449.24L312.87,449.97L313.02,450.62L312.5,452.07L313.75,454.09L314.64,454.1L315.01,455.67L316.72,458.09L316.04,458.19L314.49,457.96L313.58,458.7L312.31,459.19L311.43,459.31L311.12,459.85L309.74,459.71L308.01,458.41L307.81,457.12L307.09,455.71L307.54,453.33L308.32,452.35L307.67,451.05L306.71,450.63L307.08,449.4L306.42,448.76L304.96,448.88L303.07,446.76L303.83,445.99L303.77,444.69L305.5,444.24L306.19,443.72L305.23,442.68L305.48,441.65z"},{id:"HN",title:"Honduras",d:"M230.43,426.9L229.95,426.01L229.09,425.76L229.29,424.61L228.91,424.3L228.33,424.1L227.1,424.44L227,424.05L226.15,423.59L225.55,423.02L224.72,422.78L225.3,422.04L225.08,421.48L225.28,420.93L226.61,420.12L227.88,419.01L228.17,419.13L228.79,418.62L229.59,418.58L229.85,418.81L230.29,418.67L231.59,418.93L232.89,418.85L233.79,418.53L234.12,418.21L235.01,418.36L235.68,418.56L236.41,418.49L236.97,418.24L238.25,418.64L238.7,418.7L239.55,419.24L240.36,419.89L241.38,420.33L242.12,421.13L241.16,421.07L240.77,421.46L239.8,421.84L239.09,421.84L238.47,422.21L237.91,422.08L237.43,421.64L237.14,421.72L236.78,422.41L236.51,422.38L236.46,422.98L235.48,423.77L234.97,424.11L234.68,424.47L233.85,423.89L233.25,424.65L232.66,424.63L232,424.7L232.06,426.11L231.65,426.13L231.3,426.79z"},{id:"HR",title:"Croatia",d:"M528.05,318.93L528.73,320.48L529.62,321.62L528.54,323.11L527.27,322.23L525.33,322.29L522.92,321.63L521.61,321.72L521.01,322.54L520,321.63L519.41,323.27L520.79,325.1L521.39,326.31L522.68,327.76L523.75,328.61L524.81,330.22L527.29,331.66L526.98,332.3L524.35,330.9L522.72,329.52L520.16,328.38L517.8,325.53L518.37,325.23L517.09,323.59L517.03,322.25L515.23,321.63L514.37,323.34L513.54,322.01L513.61,320.63L513.71,320.57L515.66,320.71L516.18,320.03L517.13,320.68L518.23,320.76L518.22,319.64L519.19,319.23L519.47,317.61L521.7,316.53L522.59,317.03L524.69,318.76L527,319.53z"},{id:"HT",title:"Haiti",d:"M270.04,406.75L271.75,406.88L274.18,407.35L274.43,408.96L274.21,410.09L273.53,410.59L274.25,411.47L274.19,412.27L272.33,411.77L271.01,411.97L269.3,411.76L267.99,412.31L266.48,411.39L266.73,410.44L269.31,410.85L271.43,411.09L272.44,410.43L271.16,409.16L271.18,408.03L269.41,407.57z"},{id:"HU",title:"Hungary",d:"M520.68,315.11L521.61,312.46L521.07,311.57L522.65,311.56L522.86,309.85L524.29,310.92L525.32,311.38L527.68,310.87L527.9,310.03L529.02,309.9L530.38,309.25L530.68,309.52L532,309L532.66,308L533.58,307.75L536.58,309.03L537.18,308.6L538.73,309.74L538.93,310.86L537.22,311.73L535.89,314.53L534.2,317.29L531.95,318.05L530.2,317.88L528.05,318.93L527,319.53L524.69,318.76L522.59,317.03L521.7,316.53L521.15,315.16z"},{id:"ID",title:"Indonesia",d:"M813.72,492.06l-1.18,0.05l-3.72,-1.98l2.61,-0.56l1.47,0.86l0.98,0.86L813.72,492.06zM824.15,491.78l-2.4,0.62l-0.34,-0.34l0.25,-0.96l1.21,-1.72l2.77,-1.12l0.28,0.56l0.05,0.86L824.15,491.78zM805.83,486.01l1.01,0.75l1.73,-0.23l0.7,1.2l-3.24,0.57l-1.94,0.38l-1.51,-0.02l0.96,-1.62l1.54,-0.02L805.83,486.01zM819.86,486l-0.41,1.56l-4.21,0.8l-3.73,-0.35l-0.01,-1.03l2.23,-0.59l1.76,0.84l1.87,-0.21L819.86,486zM779.82,482.31l5.37,0.28l0.62,-1.16l5.2,1.35l1.02,1.82l4.21,0.51l3.44,1.67l-3.2,1.07l-3.08,-1.13l-2.54,0.08l-2.91,-0.21l-2.62,-0.51l-3.25,-1.07l-2.06,-0.28l-1.17,0.35l-5.11,-1.16l-0.49,-1.21l-2.57,-0.21l1.92,-2.68l3.4,0.17l2.26,1.09l1.16,0.21L779.82,482.31zM853,480.73l-1.44,1.91l-0.27,-2.11l0.5,-1.01l0.59,-0.95l0.64,0.82L853,480.73zM832.04,473.02l-1.05,0.93l-1.94,-0.51l-0.55,-1.2l2.84,-0.13L832.04,473.02zM841.08,472.01l1.02,2.13l-2.37,-1.15l-2.34,-0.23l-1.58,0.18l-1.94,-0.1l0.67,-1.53l3.46,-0.12L841.08,472.01zM851.37,466.59l0.78,4.51l2.9,1.67l2.34,-2.96l3.22,-1.68l2.49,0l2.4,0.97l2.08,1l3.01,0.53l0.05,9.1l0.05,9.16l-2.5,-2.31l-2.85,-0.57l-0.69,0.8l-3.55,0.09l1.19,-2.29l1.77,-0.78l-0.73,-3.05l-1.35,-2.35l-5.44,-2.37l-2.31,-0.23l-4.21,-2.58l-0.83,1.36l-1.08,0.25l-0.64,-1.02l-0.01,-1.21l-2.14,-1.37l3.02,-1l2,0.05l-0.24,-0.74l-4.1,-0.01l-1.11,-1.66l-2.5,-0.51l-1.19,-1.38l3.78,-0.67l1.44,-0.91l4.5,1.14L851.37,466.59zM826.41,459.43l-2.25,2.76l-2.11,0.54l-2.7,-0.54l-4.67,0.14l-2.45,0.4l-0.4,2.11l2.51,2.48l1.51,-1.26l5.23,-0.95l-0.23,1.28l-1.22,-0.4l-1.22,1.63l-2.47,1.08l2.65,3.57l-0.51,0.96l2.52,3.22l-0.02,1.84l-1.5,0.82l-1.1,-0.98l1.36,-2.29l-2.75,1.08l-0.7,-0.77l0.36,-1.08l-2.02,-1.64l0.21,-2.72l-1.87,0.85l0.24,3.25l0.11,4l-1.78,0.41l-1.2,-0.82l0.8,-2.57l-0.43,-2.69l-1.18,-0.02l-0.87,-1.91l1.16,-1.83l0.4,-2.21l1.41,-4.2l0.59,-1.15l2.38,-2.07l2.19,0.82l3.54,0.39l3.22,-0.12l2.77,-2.02L826.41,459.43zM836.08,460.23l-0.15,2.43l-1.45,-0.27l-0.43,1.69l1.16,1.47l-0.79,0.33l-1.13,-1.76l-0.83,-3.56l0.56,-2.23l0.93,-1.01l0.2,1.52l1.66,0.24L836.08,460.23zM805.76,458.29l3.14,2.58l-3.32,0.33l-0.94,1.9l0.12,2.52l-2.7,1.91L802,470.3l-1.08,4.27l-0.41,-0.99l-3.19,1.26l-1.11,-1.71l-2,-0.16l-1.4,-0.89l-3.33,1l-1.02,-1.35l-1.84,0.15l-2.31,-0.32l-0.43,-3.74l-1.4,-0.77l-1.35,-2.38l-0.39,-2.44l0.33,-2.58l1.67,-1.85l0.47,1.86l1.92,1.57l1.81,-0.57l1.79,0.2l1.63,-1.41l1.34,-0.24l2.65,0.78l2.29,-0.59l1.44,-3.88l1.08,-0.97l0.97,-3.17l3.22,0l2.43,0.47l-1.59,2.52l2.06,2.64L805.76,458.29zM771.95,479.71l-3.1,0.06l-2.36,-2.34l-3.6,-2.28l-1.2,-1.69l-2.12,-2.27l-1.39,-2.09l-2.13,-3.9l-2.46,-2.32l-0.82,-2.39l-1.03,-2.17l-2.53,-1.75l-1.47,-2.39l-2.11,-1.56l-2.92,-3.08l-0.25,-1.42l1.81,0.11l4.34,0.54l2.48,2.73l2.17,1.89l1.55,1.16l2.66,3l2.85,0.04l2.36,1.91l1.62,2.33l2.13,1.27l-1.12,2.27l1.61,0.97l1.01,0.07l0.48,1.94l0.98,1.56l2.06,0.25l1.36,1.76l-0.7,3.47L771.95,479.71z"},{id:"IE",title:"Ireland",d:"M457.88,284.29L458.34,287.65L456.22,291.77L451.25,294.45L447.28,293.77L449.55,288.99L448.09,284.22L451.9,280.47L454.02,278.2L454.6,280.8L454.02,283.37L455.76,283.31z"},{id:"IL",title:"Israel",d:"M575.41,366.82L574.92,367.87L573.9,367.41L573.32,369.61L574.02,369.97L573.31,370.43L573.18,371.29L574.5,370.84L574.57,372.11L573.17,377.28L571.33,371.73L572.14,370.65L571.95,370.46L572.69,368.93L573.26,366.43L573.66,365.59L573.74,365.56L574.68,365.56L574.94,364.98L575.69,364.93L575.73,366.3L575.35,366.8z"},{id:"IN",title:"India",d:"M693.5,357.44L696.51,361.43L696.23,364.17L697.34,365.88L697.25,367.57L695.24,367.13L696.03,370.76L698.78,372.82L702.68,375.09L700.9,376.55L699.81,379.54L702.53,380.74L705.17,382.29L708.83,384.06L712.67,384.47L714.29,386.06L716.45,386.35L719.83,387.08L722.16,387.03L722.48,385.79L722.11,383.8L722.33,382.45L724.04,381.78L724.28,384.26L724.33,384.89L726.88,386.08L728.65,385.59L731.01,385.8L733.3,385.71L733.5,383.78L732.36,382.78L734.62,382.38L737.17,380.03L740.4,378L742.75,378.78L744.75,377.44L746.07,379.42L745.12,380.76L748.14,381.23L748.36,382.43L747.37,383.01L747.6,384.94L745.6,384.37L741.97,386.53L742.05,388.31L740.51,390.91L740.36,392.41L739.11,394.93L736.92,394.23L736.81,397.38L736.18,398.41L736.48,399.69L735.09,400.41L733.62,395.61L732.84,395.62L732.38,397.56L730.85,395.98L731.71,394.25L732.97,394.07L734.26,391.48L732.65,390.95L730.04,391L727.38,390.58L727.13,388.43L725.79,388.27L723.57,386.93L722.58,389.04L724.6,390.67L722.85,391.82L722.23,392.94L723.95,393.76L723.48,395.6L724.45,397.88L724.89,400.36L724.48,401.46L722.58,401.42L719.12,402.04L719.28,404.29L717.78,406.05L713.75,408.05L710.61,411.51L708.5,413.36L705.71,415.27L705.71,416.61L704.31,417.33L701.78,418.36L700.47,418.52L699.63,420.72L700.21,424.47L700.36,426.84L699.18,429.55L699.16,434.38L697.71,434.52L696.44,436.67L697.29,437.6L694.73,438.4L693.79,440.32L692.66,441.13L690.01,438.5L688.71,434.54L687.63,431.68L686.65,430.34L685.16,427.6L684.47,424.02L683.98,422.22L681.43,418.25L680.27,412.61L679.43,408.84L679.44,405.26L678.9,402.46L674.82,404.25L672.84,403.89L669.18,400.26L670.53,399.17L669.7,397.99L666.41,395.41L668.28,393.37L674.45,393.38L673.89,390.74L672.32,389.18L672,386.79L670.16,385.39L673.25,382.09L676.51,382.33L679.44,379.01L681.2,375.75L683.92,372.51L683.88,370.18L686.27,368.27L684,366.64L683.03,364.39L682.04,361.44L683.41,359.98L687.67,360.81L690.79,360.3z"},{id:"IQ",title:"Iraq",d:"M602.61,355.77L604.44,356.81L604.66,358.81L603.24,359.98L602.59,362.62L604.54,365.8L607.97,367.62L609.42,370.12L608.96,372.49L609.85,372.49L609.88,374.22L611.43,375.91L609.77,375.76L607.88,375.49L605.82,378.57L600.61,378.31L592.71,371.82L588.53,369.53L585.15,368.64L584.02,364.6L590.23,361.1L591.29,356.98L591.02,354.46L592.56,353.6L594,351.42L595.2,350.87L598.46,351.33L599.45,352.22L600.79,351.63z"},{id:"IR",title:"Iran",d:"M626.44,351.53L628.91,350.85L630.9,348.83L632.77,348.93L634,348.27L636,348.6L639.1,350.39L641.34,350.78L644.54,353.87L646.63,353.99L646.88,356.9L645.74,361.15L644.97,363.6L646.19,364.09L644.99,365.92L645.91,368.56L646.13,370.65L648.25,371.2L648.48,373.3L645.94,376.23L647.32,377.91L648.45,379.84L651.13,381.24L651.21,384.01L652.55,384.52L652.78,385.96L648.74,387.57L647.68,391.17L642.41,390.24L639.35,389.53L636.19,389.12L634.99,385.31L633.65,384.75L631.49,385.31L628.67,386.82L625.24,385.79L622.41,383.38L619.71,382.48L617.84,379.47L615.77,375.2L614.26,375.72L612.48,374.65L611.43,375.91L609.88,374.22L609.85,372.49L608.96,372.49L609.42,370.12L607.97,367.62L604.54,365.8L602.59,362.62L603.24,359.98L604.66,358.81L604.44,356.81L602.61,355.77L600.79,351.63L599.26,348.8L599.8,347.71L598.93,343.59L600.85,342.56L601.29,343.93L602.71,345.59L604.63,346.06L605.65,345.96L608.96,343.3L610.01,343.03L610.83,344.1L609.87,345.88L611.62,347.74L612.31,347.57L613.2,350.18L615.86,350.91L617.81,352.67L621.79,353.27L626.17,352.35z"},{id:"IS",title:"Iceland",d:"M434.57,212.43L433.93,216.91L437.09,221.51L433.45,226.52L425.36,230.9L422.94,232.05L419.25,231.12L411.43,229.11L414.19,226.27L408.09,223.07L413.05,221.79L412.93,219.82L407.05,218.25L408.94,213.78L413.19,212.75L417.56,217.43L421.82,213.68L425.35,215.64L429.92,211.93z"},{id:"IT",title:"Italy",d:"M518.77,347.88l-1.01,2.78l0.42,1.09l-0.59,1.79l-2.14,-1.31l-1.43,-0.38l-3.91,-1.79l0.39,-1.82l3.28,0.32l2.86,-0.39L518.77,347.88zM501.08,337.06l1.68,2.62l-0.39,4.81l-1.27,-0.23l-1.14,1.2l-1.06,-0.95l-0.11,-4.38l-0.64,-2.1l1.54,0.19L501.08,337.06zM509.95,315.46l4.01,1.05l-0.3,1.99l0.67,1.71l-2.23,-0.58l-2.28,1.42l0.16,1.97l-0.34,1.12l0.92,1.99l2.63,1.95l1.41,3.17l3.12,3.05l2.2,-0.02l0.68,0.83l-0.79,0.74l2.51,1.35l2.06,1.12l2.4,1.92l0.29,0.68l-0.52,1.31l-1.56,-1.7l-2.44,-0.6l-1.18,2.36l2.03,1.34l-0.33,1.88l-1.17,0.21l-1.5,3.06l-1.17,0.27l0.01,-1.08l0.57,-1.91l0.61,-0.77l-1.09,-2.09l-0.86,-1.83l-1.16,-0.46l-0.83,-1.58l-1.8,-0.67l-1.21,-1.49l-2.07,-0.24l-2.19,-1.68l-2.56,-2.45l-1.91,-2.19l-0.87,-3.8l-1.4,-0.45l-2.28,-1.29l-1.29,0.53l-1.62,1.8l-1.17,0.28l0.32,-1.68l-1.52,-0.49l-0.72,-3.04l0.97,-1.21l-0.83,-1.5l0.12,-1.13l1.21,0.86l1.35,-0.19l1.57,-1.36l0.49,0.64l1.34,-0.13l0.61,-1.63l2.07,0.51l1.24,-0.68l0.22,-1.67l1.7,0.58l0.33,-0.78l2.77,-0.71L509.95,315.46z"},{id:"JM",title:"Jamaica",d:"M257.76,410.96L259.65,411.22L261.14,411.93L261.6,412.73L259.63,412.78L258.78,413.27L257.21,412.8L255.61,411.73L255.94,411.06L257.12,410.86z"},{id:"JO",title:"Jordan",d:"M574.92,367.87L575.41,366.82L578.53,368.14L584.02,364.6L585.15,368.64L584.62,369.13L579,370.78L581.8,374.04L580.87,374.58L580.41,375.67L578.27,376.11L577.6,377.27L576.38,378.25L573.26,377.74L573.17,377.28L574.57,372.11L574.5,370.84L574.92,369.88z"},{id:"JP",title:"Japan",d:"M852.76,362.01l0.36,1.15l-1.58,2.03l-1.15,-1.07l-1.44,0.78l-0.74,1.95l-1.83,-0.95l0.02,-1.58l1.55,-2l1.59,0.39l1.15,-1.42L852.76,362.01zM870.53,351.73l-1.06,2.78l0.49,1.73l-1.46,2.42l-3.58,1.6l-4.93,0.21l-4,3.84l-1.88,-1.29L854,360.5l-4.88,0.75l-3.32,1.59l-3.28,0.06l2.84,2.46l-1.87,5.61l-1.81,1.37l-1.36,-1.27l0.69,-2.96l-1.77,-0.96l-1.14,-2.28l2.65,-1.03l1.47,-2.11l2.82,-1.75l2.06,-2.33l5.58,-1.02l3,0.7l2.93,-6.17l1.87,1.67l4.11,-3.51l1.59,-1.38l1.76,-4.38l-0.48,-4.1l1.18,-2.33l2.98,-0.68l1.53,5.11l-0.08,2.94l-2.59,3.6L870.53,351.73zM878.76,325.8l1.97,0.83l1.98,-1.65l0.62,4.35l-4.16,1.05l-2.46,3.76l-4.41,-2.58l-1.53,4.12l-3.12,0.06l-0.39,-3.74l1.39,-2.94l3,-0.21l0.82,-5.38l0.83,-3.09l3.29,4.12L878.76,325.8z"},{id:"KE",title:"Kenya",d:"M590.19,465.78L591.85,468.07L589.89,469.19L589.2,470.35L588.14,470.55L587.75,472.52L586.85,473.64L586.3,475.5L585.17,476.42L581.15,473.63L580.95,472.01L570.79,466.34L570.31,466.03L570.29,463.08L571.09,461.95L572.47,460.11L573.49,458.08L572.26,454.88L571.93,453.48L570.6,451.54L572.32,449.87L574.22,448.03L575.68,448.5L575.68,450.07L576.64,450.98L578.59,450.98L582.14,453.36L583.02,453.38L583.68,453.31L584.3,453.63L586.17,453.85L587,452.69L589.56,451.52L590.69,452.46L592.61,452.46L590.16,455.63z"},{id:"KG",title:"Kyrgyzstan",d:"M674.22,333.11L674.85,331.45L676.69,330.91L681.31,332.22L681.74,329.98L683.33,329.18L687.33,330.79L688.35,330.37L693,330.47L697.16,330.87L698.56,332.24L700.29,332.79L699.9,333.65L695.48,335.68L694.48,337.16L690.88,337.6L689.82,339.95L686.85,339.46L684.92,340.18L682.24,341.9L682.63,342.75L681.83,343.58L676.53,344.13L673.06,342.96L670.02,343.24L670.29,341.14L673.34,341.75L674.37,340.62L676.5,340.98L680.09,338.34L676.77,336.38L674.77,337.31L672.7,335.91L675.05,333.48z"},{id:"KH",title:"Cambodia",d:"M765.44,433.6L764.3,432.12L762.89,429.18L762.22,425.73L764.02,423.35L767.64,422.8L770.27,423.21L772.58,424.34L773.85,422.35L776.34,423.41L776.99,425.33L776.64,428.75L771.93,430.94L773.16,432.67L770.22,432.87L767.79,434.01z"},{id:"KP",title:"North Korea",d:"M841.55,332.62L841.94,333.29L840.88,333.06L839.66,334.33L838.82,335.61L838.93,338.28L837.48,339.09L836.98,339.74L835.92,340.82L834.05,341.42L832.84,342.4L832.75,343.97L832.42,344.37L833.54,344.95L835.13,346.53L834.72,347.39L833.53,347.62L831.55,347.79L830.46,349.39L829.2,349.27L829.03,349.59L827.67,348.92L827.33,349.58L826.51,349.87L826.41,349.21L825.68,348.89L824.93,348.32L825.7,346.75L826.36,346.33L826.11,345.68L826.82,343.74L826.63,343.15L825,342.75L823.68,341.78L825.96,339.43L829.05,337.45L830.98,334.8L832.31,335.97L834.73,336.11L834.29,334.14L838.62,332.51L839.74,330.38z"},{id:"KR",title:"South Korea",d:"M835.13,346.53L837.55,350.71L838.24,352.98L838.26,356.96L837.21,358.84L834.67,359.5L832.43,360.91L829.9,361.2L829.59,359.35L830.11,356.78L828.87,353.18L830.95,352.59L829.03,349.59L829.2,349.27L830.46,349.39L831.55,347.79L833.53,347.62L834.72,347.39z"},{id:"XK",title:"Kosovo",d:"M533.47,333.92L533.34,334.69L532.98,334.66L532.8,333.29L532.13,332.91L531.53,331.89L532.05,331.04L532.72,330.76L533.11,329.5L533.61,329.28L534.01,329.82L534.54,330.06L534.9,330.67L535.36,330.85L535.91,331.55L536.31,331.53L535.99,332.46L535.66,332.91L535.75,333.19L535.12,333.33z"},{id:"KW",title:"Kuwait",d:"M609.77,375.76L610.35,377.17L610.1,377.9L611,380.31L609.02,380.39L608.32,378.88L605.82,378.57L607.88,375.49z"},{id:"KZ",title:"Kazakhstan",d:"M674.22,333.11L672.61,333.81L668.92,336.42L667.69,339.07L666.64,339.09L665.88,337.34L662.31,337.22L661.74,334.16L660.37,334.13L660.58,330.33L657.23,327.53L652.42,327.83L649.13,328.39L646.45,324.89L644.16,323.41L639.81,320.57L639.29,320.22L632.07,322.57L632.18,336.7L630.74,336.88L628.78,333.95L626.88,332.89L623.7,333.68L622.46,334.93L622.3,334.01L622.99,332.44L622.46,331.12L619.21,329.82L617.94,326.35L616.4,325.37L616.3,324.09L619.03,324.46L619.14,321.58L621.52,320.94L623.97,321.53L624.48,317.62L623.98,315.11L621.17,315.31L618.79,314.31L615.54,316.1L612.93,316.96L611.5,316.3L611.79,314.2L610,311.44L607.92,311.55L605.54,308.72L607.16,305.5L606.34,304.63L608.57,299.86L611.46,302.39L611.81,299.2L617.59,294.35L621.97,294.23L628.16,297.33L631.47,299.12L634.45,297.25L638.89,297.17L642.48,299.46L643.3,298.15L647.23,298.34L647.94,296.23L643.39,293.14L646.08,290.91L645.56,289.66L648.25,288.45L646.23,285.25L647.51,283.63L658,281.97L659.37,280.78L666.39,278.99L668.91,276.95L673.95,278.01L674.83,283.02L677.76,281.86L681.36,283.49L681.13,286.07L683.82,285.8L690.84,281.31L689.82,282.81L693.4,286.47L699.66,298.05L701.16,295.72L705.02,298.28L709.05,297.14L710.59,297.94L711.94,300.49L713.9,301.33L715.1,303.18L718.71,302.6L720.2,305.23L718.06,308.06L715.73,308.46L715.6,312.64L714.04,314.5L708.48,313.15L706.46,320.41L705.02,321.3L699.47,322.88L701.99,329.63L700.07,330.63L700.29,332.79L698.56,332.24L697.16,330.87L693,330.47L688.35,330.37L687.33,330.79L683.33,329.18L681.74,329.98L681.31,332.22L676.69,330.91L674.85,331.45z"},{id:"LA",title:"Lao People's Democratic Republic",d:"M770.27,423.21L771.18,421.91L771.31,419.47L769.04,416.94L768.86,414.07L766.73,411.69L764.61,411.49L764.05,412.51L762.4,412.59L761.56,412.08L758.61,413.82L758.54,411.2L759.23,408.09L757.34,407.96L757.18,406.18L755.96,405.26L756.56,404.16L758.95,402.22L759.2,402.92L760.69,403L760.27,399.57L761.72,399.13L763.36,401.5L764.62,404.22L768.07,404.25L769.16,406.84L767.37,407.61L766.56,408.68L769.92,410.44L772.25,413.9L774.02,416.47L776.14,418.49L776.85,420.53L776.34,423.41L773.85,422.35L772.58,424.34z"},{id:"LB",title:"Lebanon",d:"M575.69,364.93L574.94,364.98L574.68,365.56L573.74,365.56L574.74,362.83L576.13,360.45L576.19,360.33L577.45,360.51L577.91,361.83L576.38,363.1z"},{id:"LK",title:"Sri Lanka",d:"M704.57,442.37L704.15,445.29L702.98,446.09L700.54,446.73L699.2,444.5L698.71,440.47L699.98,435.89L701.91,437.46L703.22,439.44z"},{id:"LR",title:"Liberia",d:"M453.63,451.22L452.89,451.24L450,449.91L447.46,447.78L445.07,446.25L443.18,444.44L443.85,443.54L444,442.73L445.26,441.2L446.57,439.89L447.17,439.82L447.9,439.51L449.07,441.23L448.89,442.36L449.43,442.96L450.23,442.97L450.8,441.84L451.59,441.91L451.46,442.73L451.74,444.09L451.13,445.33L451.95,446.1L452.84,446.29L454.03,447.46L454.11,448.57L453.84,448.92z"},{id:"LS",title:"Lesotho",d:"M556.5,547.75L557.48,548.71L556.62,550.27L556.14,551.32L554.58,551.82L554.06,552.86L553.06,553.18L550.96,550.69L552.45,548.66L553.97,547.41L555.28,546.77z"},{id:"LT",title:"Lithuania",d:"M538.99,282.09L538.76,280.87L539.06,279.54L537.82,278.77L534.89,277.91L534.29,273.75L537.5,272.2L542.2,272.53L544.96,272.03L545.35,273.08L546.84,273.4L549.54,275.82L549.8,278.02L547.5,279.59L546.85,282.31L543.81,284.11L541.1,284.07L540.43,282.61z"},{id:"LU",title:"Luxembourg",d:"M492.2,301.29L492.76,302.27L492.6,304.16L491.79,304.26L491.16,303.88L491.47,301.45z"},{id:"LV",title:"Latvia",d:"M534.29,273.75L534.39,269.94L535.77,266.7L538.41,264.92L540.63,268.8L542.88,268.7L543.42,264.71L545.81,263.78L547.04,264.43L549.45,266.37L551.77,266.38L553.12,267.57L553.35,270.06L554.26,273.05L551.24,274.98L549.54,275.82L546.84,273.4L545.35,273.08L544.96,272.03L542.2,272.53L537.5,272.2z"},{id:"LY",title:"Libya",d:"M516.89,397.93L514.91,399.05L513.33,397.39L508.9,396.08L507.67,394.17L505.45,392.75L504.14,393.31L503.15,391.6L503.04,390.28L501.38,388.02L502.5,386.73L502.25,384.76L502.61,383.04L502.41,381.6L502.9,379.01L502.75,377.53L501.84,374.69L503.21,373.94L503.45,372.56L503.15,371.21L505.08,369.95L505.94,368.9L507.31,367.95L507.47,365.4L510.76,366.55L511.94,366.26L514.28,366.82L518,368.29L519.31,371.21L521.83,371.85L525.78,373.21L528.77,374.82L530.14,373.98L531.48,372.49L530.83,369.98L531.71,368.38L533.73,366.83L535.66,366.38L539.45,367.06L540.41,368.54L541.45,368.55L542.34,369.11L545.13,369.5L545.81,370.58L544.8,372.15L545.23,373.54L544.51,375.54L545.35,378.12L545.35,389.3L545.35,400.53L545.35,406.49L542.13,406.5L542.09,407.74L530.91,402.04L519.72,396.27z"},{id:"MA",title:"Morocco",d:"M450.96,383.14L450.93,379.39L455.46,377.03L458.26,376.54L460.55,375.68L461.63,374.06L464.91,372.77L465.03,370.36L466.65,370.07L467.92,368.86L471.59,368.3L472.1,367.02L471.36,366.31L470.39,362.78L470.23,360.73L469.17,358.55L467.95,358.51L465.05,357.76L462.38,358L460.69,356.54L458.63,356.52L457.74,358.63L455.87,362.14L453.79,363.53L450.98,365.06L449.18,367.3L448.8,369.04L447.73,371.86L448.43,375.89L446.09,378.57L444.69,379.42L442.48,381.59L439.87,381.94L438.57,383.06L442.19,383.07L450.94,383.1L450.94,383.1L450.94,383.1L442.19,383.07L438.57,383.06z"},{id:"MD",title:"Moldova",d:"M549.89,309.45L550.56,308.83L552.42,308.41L554.49,309.72L555.64,309.88L556.91,311L556.71,312.41L557.73,313.08L558.13,314.8L559.11,315.84L558.92,316.44L559.44,316.86L558.7,317.15L557.04,317.04L556.77,316.47L556.18,316.8L556.38,317.52L555.61,318.81L555.12,320.18L554.42,320.62L553.91,318.79L554.21,317.07L554.12,315.28L552.5,312.84L551.61,311.09L550.74,309.85z"},{id:"ME",title:"Montenegro",d:"M530.77,332.23L530.6,331.51L529.38,333.38L529.57,334.57L528.98,334.28L528.2,333.05L526.98,332.3L527.29,331.66L527.7,329.56L528.61,328.67L529.14,328.31L529.88,328.97L530.29,329.51L531.21,329.92L532.28,330.71L532.05,331.04L531.53,331.89z"},{id:"MG",title:"Madagascar",d:"M614.17,498.4L614.91,499.61L615.6,501.5L616.06,504.96L616.78,506.31L616.5,507.69L616.01,508.55L615.05,506.85L614.53,507.71L615.06,509.85L614.81,511.09L614.04,511.76L613.86,514.24L612.76,517.66L611.38,521.75L609.64,527.42L608.57,531.63L607.3,535.18L605.02,535.91L602.57,537.22L600.96,536.43L598.73,535.33L597.96,533.71L597.77,531L596.79,528.58L596.53,526.41L597.03,524.25L598.32,523.73L598.33,522.74L599.67,520.48L599.92,518.6L599.27,517.2L598.74,515.35L598.52,512.65L599.5,511.02L599.87,509.17L601.27,509.07L602.84,508.47L603.87,507.95L605.11,507.91L606.7,506.26L609.01,504.48L609.85,503.04L609.47,501.81L610.66,502.16L612.21,500.17L612.26,498.45L613.19,497.17z"},{id:"MK",title:"Macedonia",d:"M532.98,334.66L533.34,334.69L533.47,333.92L535.12,333.33L535.75,333.19L536.71,332.97L538,332.91L539.41,334.12L539.61,336.59L539.07,336.71L538.61,337.36L537.09,337.29L536.02,338.1L534.19,338.42L533.03,337.52L532.63,335.93z"},{id:"ML",title:"Mali",d:"M441.13,422.22L442.07,421.7L442.54,420L443.43,419.93L445.39,420.73L446.97,420.16L448.05,420.35L448.48,419.71L459.73,419.67L460.35,417.64L459.86,417.28L458.51,404.6L457.16,391.54L461.45,391.49L470.91,398.14L480.37,404.69L481.03,406.08L482.78,406.93L484.08,407.41L484.11,409.29L487.22,409L487.23,415.75L485.69,417.69L485.45,419.48L482.96,419.93L479.14,420.18L478.1,421.21L476.3,421.32L474.51,421.33L473.81,420.78L472.26,421.19L469.64,422.39L469.11,423.29L466.93,424.57L466.55,425.31L465.38,425.89L464.02,425.51L463.25,426.21L462.84,428.17L460.61,430.53L460.68,431.49L459.91,432.7L460.1,434.34L458.94,434.76L458.29,435.12L457.85,433.91L457.04,434.23L456.56,434.17L456.04,435L453.88,434.97L453.1,434.55L452.74,434.81L451.88,433.99L452.03,433.15L451.68,432.81L451.08,433.09L451.19,432.17L451.77,431.44L450.62,430.25L450.28,429.46L449.66,428.84L449.1,428.76L448.43,429.16L447.52,429.54L446.75,430.16L445.55,429.93L444.77,429.21L444.31,429.11L443.58,429.49L443.13,429.5L442.97,428.45L443.1,427.56L442.86,426.46L441.81,425.65L441.26,424.01z"},{id:"MM",title:"Myanmar",d:"M754.36,405.95L752.72,407.23L750.74,407.37L749.46,410.56L748.28,411.09L749.64,413.66L751.42,415.79L752.56,417.71L751.54,420.23L750.57,420.76L751.24,422.21L753.11,424.49L753.43,426.09L753.38,427.42L754.48,430.02L752.94,432.67L751.58,435.58L751.31,433.48L752.17,431.3L751.23,429.62L751.46,426.51L750.32,425.03L749.41,421.59L748.9,417.93L747.69,415.53L745.84,416.99L742.65,419.05L741.08,418.79L739.34,418.12L740.31,414.51L739.73,411.77L737.53,408.38L737.87,407.31L736.23,406.93L734.24,404.51L734.06,402.1L735.04,402.56L735.09,400.41L736.48,399.69L736.18,398.41L736.81,397.38L736.92,394.23L739.11,394.93L740.36,392.41L740.51,390.91L742.05,388.31L741.97,386.53L745.6,384.37L747.6,384.94L747.37,383.01L748.36,382.43L748.14,381.23L749.78,380.99L750.72,382.85L751.94,383.6L752.03,386L751.91,388.57L749.26,391.15L748.92,394.78L751.88,394.28L752.55,397.08L754.33,397.67L753.51,400.17L755.59,401.3L756.81,401.85L758.86,400.98L758.95,402.22L756.56,404.16L755.96,405.26z"},{id:"MN",title:"Mongolia",d:"M721.29,304.88L724.25,304.14L729.6,300.4L733.87,298.33L736.3,299.68L739.23,299.74L741.1,301.79L743.9,301.94L747.96,303.03L750.68,300L749.54,297.4L752.45,292.74L755.59,294.61L758.13,295.14L761.43,296.29L761.96,299.61L765.95,301.45L768.6,300.64L772.14,300.07L774.95,300.65L777.7,302.74L779.4,304.94L782,304.9L785.53,305.59L788.11,304.53L791.8,303.82L795.91,300.76L797.59,301.23L799.06,302.69L802.4,302.33L801.04,305.58L799.06,309.8L799.78,311.51L801.37,310.98L804.13,311.63L806.29,310.09L808.54,311.42L811.08,314.31L810.77,315.76L808.56,315.3L804.49,315.84L802.51,317L800.46,319.66L796.18,321.21L793.39,323.31L790.51,322.51L788.93,322.15L787.46,324.69L788.35,326.19L788.81,327.47L786.84,328.77L784.83,330.82L781.56,332.15L777.35,332.3L772.82,333.61L769.56,335.62L768.32,334.46L764.93,334.46L760.78,332.17L758.01,331.6L754.28,332.13L748.49,331.28L745.4,331.37L743.76,329.1L742.48,325.53L740.75,325.1L737.36,322.65L733.58,322.1L730.25,321.42L729.24,319.69L730.32,314.96L728.39,311.65L724.39,310.08L722.03,307.85z"},{id:"MR",title:"Mauritania",d:"M441.13,422.22L439.28,420.24L437.58,418.11L435.72,417.34L434.38,416.49L432.81,416.52L431.45,417.15L430.05,416.9L429.09,417.83L428.85,416.27L429.63,414.83L429.98,412.08L429.67,409.17L429.33,407.7L429.61,406.23L428.89,404.81L427.41,403.53L428.02,402.53L439,402.55L438.47,398.2L439.16,396.65L441.78,396.38L441.69,388.52L450.9,388.69L450.9,383.96L461.45,391.49L457.16,391.54L458.51,404.6L459.86,417.28L460.35,417.64L459.73,419.67L448.48,419.71L448.05,420.35L446.97,420.16L445.39,420.73L443.43,419.93L442.54,420L442.07,421.7z"},{id:"MW",title:"Malawi",d:"M572.15,495.69L571.37,497.85L572.15,501.57L573.13,501.53L574.14,502.45L575.31,504.53L575.55,508.25L574.34,508.86L573.48,510.87L571.65,509.08L571.45,507.04L572.04,505.69L571.87,504.54L570.77,503.81L569.99,504.07L568.38,502.69L566.91,501.95L567.76,499.29L568.64,498.3L568.1,495.94L568.66,493.64L569.14,492.87L568.43,490.47L567.11,489.21L569.85,489.73L570.42,490.51L571.37,491.83z"},{id:"MX",title:"Mexico",d:"M202.89,388.72L201.8,391.43L201.31,393.64L201.1,397.72L200.83,399.19L201.32,400.83L202.19,402.3L202.75,404.61L204.61,406.82L205.26,408.51L206.36,409.96L209.34,410.75L210.5,411.97L212.96,411.15L215.09,410.86L217.19,410.33L218.96,409.82L220.74,408.62L221.41,406.89L221.64,404.4L222.13,403.53L224.02,402.74L226.99,402.05L229.47,402.15L231.17,401.9L231.84,402.53L231.75,403.97L230.24,405.74L229.58,407.55L230.09,408.06L229.67,409.34L228.97,411.63L228.26,410.88L227.67,410.93L227.14,410.97L226.14,412.74L225.63,412.39L225.29,412.53L225.31,412.96L222.72,412.93L220.1,412.93L220.1,414.58L218.83,414.58L219.87,415.56L220.91,416.23L221.22,416.86L221.68,417.04L221.6,418.02L218.01,418.03L216.66,420.39L217.05,420.93L216.73,421.61L216.66,422.45L213.49,419.34L212.04,418.4L209.75,417.64L208.19,417.85L205.93,418.94L204.52,419.23L202.54,418.47L200.44,417.91L197.82,416.58L195.72,416.17L192.54,414.82L190.2,413.42L189.49,412.64L187.92,412.47L185.05,411.54L183.88,410.2L180.87,408.53L179.47,406.66L178.8,405.21L179.73,404.92L179.44,404.07L180.09,403.3L180.1,402.26L179.16,400.92L178.9,399.72L177.96,398.2L175.49,395.18L172.67,392.79L171.31,390.88L168.9,389.62L168.39,388.86L168.82,386.94L167.39,386.21L165.73,384.69L165.03,382.5L163.52,382.24L161.9,380.58L160.58,379.03L160.46,378.03L158.95,375.61L157.96,373.13L158,371.88L155.97,370.59L155.04,370.73L153.44,369.83L152.99,371.16L153.45,372.72L153.72,375.15L154.69,376.48L156.77,378.69L157.23,379.44L157.66,379.66L158.02,380.76L158.52,380.71L159.09,382.75L159.94,383.55L160.53,384.66L162.3,386.26L163.23,389.15L164.06,390.5L164.84,391.94L164.99,393.56L166.34,393.66L167.47,395.05L168.49,396.41L168.42,396.95L167.24,398.06L166.74,398.05L166,396.2L164.17,394.47L162.15,392.99L160.71,392.21L160.8,389.96L160.38,388.28L159.04,387.32L157.11,385.93L156.74,386.33L156.04,385.51L154.31,384.76L152.66,382.93L152.86,382.69L154.01,382.87L155.05,381.69L155.16,380.26L153,377.99L151.36,377.1L150.32,375.09L149.28,372.97L147.98,370.36L146.84,367.4L150.03,367.15L153.59,366.79L153.33,367.43L157.56,369.04L163.96,371.35L169.54,371.32L171.76,371.32L171.76,369.97L176.62,369.97L177.64,371.14L179.08,372.17L180.74,373.6L181.67,375.29L182.37,377.05L183.82,378.02L186.15,378.98L187.91,376.45L190.21,376.39L192.18,377.67L193.59,379.85L194.56,381.71L196.21,383.51L196.83,385.7L197.62,387.17L199.8,388.13L201.79,388.81z"},{id:"MY",title:"Malaysia",d:"M758.65,446.07l0.22,1.44l1.85,-0.33l0.92,-1.15l0.64,0.26l1.66,1.69l1.18,1.87l0.16,1.88l-0.3,1.27l0.27,0.96l0.21,1.65l0.99,0.77l1.1,2.46l-0.05,0.94l-1.99,0.19l-2.65,-2.06l-3.32,-2.21l-0.33,-1.42l-1.62,-1.87l-0.39,-2.31l-1.01,-1.52l0.31,-2.04l-0.62,-1.19l0.49,-0.5L758.65,446.07zM807.84,450.9l-2.06,0.95l-2.43,-0.47l-3.22,0l-0.97,3.17l-1.08,0.97l-1.44,3.88l-2.29,0.59l-2.65,-0.78l-1.34,0.24l-1.63,1.41l-1.79,-0.2l-1.81,0.57l-1.92,-1.57l-0.47,-1.86l2.05,0.96l2.17,-0.52l0.56,-2.36l1.2,-0.53l3.36,-0.6l2.01,-2.21l1.38,-1.77l1.28,1.45l0.59,-0.95l1.34,0.09l0.16,-1.78l0.13,-1.38l2.16,-1.95l1.41,-2.19l1.13,-0.01l1.44,1.42l0.13,1.22l1.85,0.78l2.34,0.84l-0.2,1.1l-1.88,0.14L807.84,450.9z"},{id:"MZ",title:"Mozambique",d:"M572.15,495.69L574.26,495.46L577.63,496.26L578.37,495.9L580.32,495.83L581.32,494.98L583,495.02L586.06,493.92L588.29,492.28L588.75,493.55L588.63,496.38L588.98,498.88L589.09,503.36L589.58,504.76L588.75,506.83L587.66,508.84L585.87,510.64L583.31,511.75L580.15,513.16L576.98,516.31L575.9,516.85L573.94,518.94L572.79,519.63L572.55,521.75L573.88,524L574.43,525.76L574.47,526.66L574.96,526.51L574.88,529.47L574.43,530.88L575.09,531.4L574.67,532.67L573.5,533.76L571.19,534.8L567.82,536.46L566.59,537.61L566.83,538.91L567.54,539.12L567.3,540.76L565.18,540.74L564.94,539.36L564.52,537.97L564.28,536.86L564.78,533.43L564.05,531.26L562.71,527L565.66,523.59L566.4,521.44L566.83,521.17L567.14,519.43L566.69,518.55L566.81,516.35L567.36,514.31L567.35,510.62L565.9,509.68L564.56,509.47L563.96,508.75L562.66,508.14L560.32,508.2L560.14,507.12L559.87,505.07L568.38,502.69L569.99,504.07L570.77,503.81L571.87,504.54L572.04,505.69L571.45,507.04L571.65,509.08L573.48,510.87L574.34,508.86L575.55,508.25L575.31,504.53L574.14,502.45L573.13,501.53L572.15,501.57L571.37,497.85z"},{id:"NA",title:"Namibia",d:"M521.08,546.54L519,544.15L517.9,541.85L517.28,538.82L516.59,536.57L515.65,531.85L515.59,528.22L515.23,526.58L514.14,525.34L512.69,522.87L511.22,519.3L510.61,517.45L508.32,514.58L508.15,512.33L509.5,511.78L511.18,511.28L513,511.37L514.67,512.69L515.09,512.48L526.46,512.36L528.4,513.76L535.19,514.17L540.34,512.98L542.64,512.31L544.46,512.48L545.56,513.14L545.59,513.38L544.01,514.04L543.15,514.05L541.37,515.2L540.29,513.99L535.97,515.02L533.88,515.11L533.8,525.68L531.04,525.79L531.04,534.65L531.03,546.17L528.53,547.8L527.03,548.03L525.26,547.43L524,547.2L523.53,545.84L522.42,544.97z"},{id:"NC",title:"New Caledonia",d:"M940.08,523.48L942.38,525.34L943.83,526.72L942.77,527.45L941.22,526.63L939.22,525.28L937.41,523.69L935.56,521.59L935.17,520.58L936.37,520.63L937.95,521.64L939.18,522.65z"},{id:"NE",title:"Niger",d:"M481.29,429.88L481.36,427.93L478.12,427.28L478.04,425.9L476.46,424.03L476.08,422.72L476.3,421.32L478.1,421.21L479.14,420.18L482.96,419.93L485.45,419.48L485.69,417.69L487.23,415.75L487.22,409L491.17,407.68L499.29,401.83L508.9,396.08L513.33,397.39L514.91,399.05L516.89,397.93L517.58,402.6L518.63,403.38L518.68,404.33L519.84,405.35L519.23,406.63L518.15,412.61L518.01,416.4L514.43,419.14L513.22,422.94L514.39,424L514.38,425.85L516.18,425.92L515.9,427.26L515.11,427.43L515.02,428.33L514.49,428.4L512.6,425.27L511.94,425.15L509.75,426.75L507.58,425.92L506.07,425.75L505.26,426.15L503.61,426.07L501.96,427.29L500.53,427.36L497.14,425.88L495.81,426.58L494.38,426.53L493.33,425.45L490.51,424.38L487.5,424.72L486.77,425.34L486.38,426.99L485.57,428.14L485.38,430.68L483.24,429.04L482.23,429.05z"},{id:"NG",title:"Nigeria",d:"M499.09,450.08L496.18,451.08L495.11,450.94L494.03,451.56L491.79,451.5L490.29,449.75L489.37,447.73L487.38,445.89L485.27,445.92L482.8,445.92L482.96,441.39L482.89,439.6L483.42,437.83L484.28,436.96L485.64,435.21L485.35,434.45L485.9,433.31L485.27,431.63L485.38,430.68L485.57,428.14L486.38,426.99L486.77,425.34L487.5,424.72L490.51,424.38L493.33,425.45L494.38,426.53L495.81,426.58L497.14,425.88L500.53,427.36L501.96,427.29L503.61,426.07L505.26,426.15L506.07,425.75L507.58,425.92L509.75,426.75L511.94,425.15L512.6,425.27L514.49,428.4L515.02,428.33L516.13,429.47L515.82,429.98L515.67,430.93L513.31,433.13L512.57,434.94L512.17,436.41L511.58,437.04L511.01,439.01L509.51,440.17L509.08,441.59L508.45,442.73L508.19,443.89L506.26,444.84L504.69,443.69L503.62,443.73L501.95,445.37L501.14,445.4L499.81,448.1z"},{id:"NI",title:"Nicaragua",d:"M234.93,432.31L233.96,431.41L232.65,430.26L232.03,429.3L230.85,428.41L229.44,427.12L229.75,426.68L230.22,427.11L230.43,426.9L231.3,426.79L231.65,426.13L232.06,426.11L232,424.7L232.66,424.63L233.25,424.65L233.85,423.89L234.68,424.47L234.97,424.11L235.48,423.77L236.46,422.98L236.51,422.38L236.78,422.41L237.14,421.72L237.43,421.64L237.91,422.08L238.47,422.21L239.09,421.84L239.8,421.84L240.77,421.46L241.16,421.07L242.12,421.13L241.88,421.41L241.74,422.05L242.02,423.1L241.38,424.08L241.08,425.23L240.98,426.5L241.14,427.23L241.21,428.52L240.78,428.8L240.52,430.02L240.71,430.77L240.13,431.5L240.27,432.26L240.69,432.73L240.02,433.33L239.2,433.14L238.73,432.56L237.84,432.32L237.2,432.69L235.35,431.94z"},{id:"NL",title:"Netherlands",d:"M492.28,285.98L494.61,286.11L495.14,287.69L494.44,291.92L493.73,293.63L492.04,293.63L492.52,298.32L490.97,297.28L489.2,295.33L486.6,296.26L484.55,295.91L485.99,294.67L488.45,287.93z"},{id:"NO",title:"Norway",d:"M554.23,175.61l8.77,6.24l-3.61,2.23l3.07,5.11l-4.77,3.19l-2.26,0.72l1.19,-5.59l-3.6,-3.25l-4.35,2.78l-1.38,5.85l-2.67,3.44l-3.01,-1.87l-3.66,0.38l-3.12,-4.15l-1.68,2.09l-1.74,0.32l-0.41,5.08l-5.28,-1.22l-0.74,4.22l-2.69,-0.03l-1.85,5.24l-2.8,7.87l-4.35,9.5l1.02,2.23l-0.98,2.55l-2.78,-0.11l-1.82,5.91l0.17,8.04l1.79,2.98l-0.93,6.73l-2.33,3.81l-1.24,3.15l-1.88,-3.35l-5.54,6.27l-3.74,1.24l-3.88,-2.71l-1,-5.86l-0.89,-13.26l2.58,-3.88l7.4,-5.18l5.54,-6.59l5.13,-9.3l6.74,-13.76l4.7,-5.67l7.71,-9.89l6.15,-3.59l4.61,0.44l4.27,-6.99l5.11,0.38L554.23,175.61z"},{id:"NP",title:"Nepal",d:"M722.33,382.45L722.11,383.8L722.48,385.79L722.16,387.03L719.83,387.08L716.45,386.35L714.29,386.06L712.67,384.47L708.83,384.06L705.17,382.29L702.53,380.74L699.81,379.54L700.9,376.55L702.68,375.09L703.84,374.31L706.09,375.31L708.92,377.4L710.49,377.86L711.43,379.39L713.61,380.02L715.89,381.41L719.06,382.14z"},{id:"NZ",title:"New Zealand",d:"M960.38,588.63l0.64,1.53l1.99,-1.5l0.81,1.57l0,1.57l-1.04,1.74l-1.83,2.8l-1.43,1.54l1.03,1.86l-2.16,0.05l-2.4,1.46l-0.75,2.57l-1.59,4.03l-2.2,1.8l-1.4,1.16l-2.58,-0.09l-1.82,-1.34l-3.05,-0.28l-0.47,-1.48l1.51,-2.96l3.53,-3.87l1.81,-0.73l2.01,-1.47l2.4,-2.01l1.68,-1.98l1.25,-2.81l1.06,-0.95l0.42,-2.07l1.97,-1.7L960.38,588.63zM964.84,571.61l2.03,3.67l0.06,-2.38l1.27,0.95l0.42,2.65l2.26,1.15l1.89,0.28l1.6,-1.35l1.42,0.41l-0.68,3.15l-0.85,2.09l-2.14,-0.07l-0.75,1.1l0.26,1.56l-0.41,0.68l-1.06,1.97l-1.39,2.53l-2.17,1.49l-0.48,-0.98l-1.17,-0.54l1.62,-3.04l-0.92,-2.01l-3.02,-1.45l0.08,-1.31l2.03,-1.25l0.47,-2.74l-0.13,-2.28l-1.14,-2.34l0.08,-0.61l-1.34,-1.43l-2.21,-3.04l-1.17,-2.41l1.04,-0.27l1.53,1.89l2.18,0.89L964.84,571.61z"},{id:"OM",title:"Oman",d:"M640.29,403.18l-1.05,2.04l-1.27,-0.16l-0.58,0.71l-0.45,1.5l0.34,1.98l-0.26,0.36l-1.29,-0.01l-1.75,1.1l-0.27,1.43l-0.64,0.62l-1.74,-0.02l-1.1,0.74l0.01,1.18l-1.36,0.81l-1.55,-0.27l-1.88,0.98l-1.3,0.16l-0.92,-2.04l-2.19,-4.84l8.41,-2.96l1.87,-5.97l-1.29,-2.14l0.07,-1.22l0.82,-1.26l0.01,-1.25l1.27,-0.6l-0.5,-0.42l0.23,-2l1.43,-0.01l1.26,2.09l1.57,1.11l2.06,0.4l1.66,0.55l1.27,1.74l0.76,1l1,0.38l-0.01,0.67l-1.02,1.79l-0.45,0.84L640.29,403.18zM633.37,388.64L633,389.2l-0.53,-1.06l0.82,-1.06l0.35,0.27L633.37,388.64z"},{id:"PA",title:"Panama",d:"M256.88,443.21L255.95,442.4L255.35,440.88L256.04,440.13L255.33,439.94L254.81,439.01L253.41,438.23L252.18,438.41L251.62,439.39L250.48,440.09L249.87,440.19L249.6,440.78L250.93,442.3L250.17,442.66L249.76,443.08L248.46,443.22L247.97,441.54L247.61,442.02L246.68,441.86L246.12,440.72L244.97,440.54L244.24,440.21L243.04,440.21L242.95,440.82L242.63,440.4L242.78,439.84L243.01,439.27L242.9,438.76L243.32,438.42L242.74,438L242.72,436.87L243.81,436.62L244.81,437.63L244.75,438.23L245.87,438.35L246.14,438.12L246.91,438.82L248.29,438.61L249.48,437.9L251.18,437.33L252.14,436.49L253.69,436.65L253.58,436.93L255.15,437.03L256.4,437.52L257.31,438.36L258.37,439.14L258.03,439.56L258.68,441.21L258.15,442.05L257.24,441.85z"},{id:"PE",title:"Peru",d:"M280.13,513.14L279.38,514.65L277.94,515.39L275.13,513.71L274.88,512.51L269.33,509.59L264.3,506.42L262.13,504.64L260.97,502.27L261.43,501.44L259.06,497.69L256.29,492.45L253.65,486.83L252.5,485.54L251.62,483.48L249.44,481.64L247.44,480.51L248.35,479.26L246.99,476.59L247.86,474.64L250.1,472.87L250.43,474.04L249.63,474.7L249.7,475.72L250.86,475.5L252,475.8L253.17,477.21L254.76,476.06L255.29,474.18L257.01,471.75L260.38,470.65L263.44,467.73L264.31,465.92L263.92,463.81L264.67,463.54L266.53,464.86L267.42,466.18L268.72,466.9L270.37,469.82L272.46,470.17L274.01,469.43L275.02,469.91L276.7,469.67L278.85,470.98L277.04,473.82L277.88,473.88L279.28,475.37L276.75,475.24L276.38,475.66L274.08,476.19L270.88,478.1L270.67,479.4L269.96,480.38L270.24,481.89L268.54,482.7L268.54,483.89L267.8,484.4L268.97,486.93L270.53,488.65L269.94,489.86L271.8,490.02L272.86,491.53L275.33,491.6L277.63,489.94L277.44,494.24L278.72,494.57L280.3,494.08L282.73,498.66L282.12,499.62L281.99,501.64L281.93,504.08L280.83,505.52L281.34,506.59L280.69,507.56L281.9,510z"},{id:"PG",title:"Papua New Guinea",d:"M912.32,482.42l-0.79,0.28l-1.21,-1.08l-1.23,-1.78l-0.6,-2.13l0.39,-0.27l0.3,0.83l0.85,0.63l1.36,1.77l1.32,0.95L912.32,482.42zM901.39,478.67l-1.47,0.23l-0.44,0.79l-1.53,0.68l-1.44,0.66l-1.49,0l-2.3,-0.81l-1.6,-0.78l0.23,-0.87l2.51,0.41l1.53,-0.22l0.42,-1.34l0.4,-0.07l0.27,1.49l1.6,-0.21l0.79,-0.96l1.57,-1l-0.31,-1.65l1.68,-0.05l0.57,0.46l-0.06,1.55L901.39,478.67zM887.96,484.02l2.5,1.84l1.82,2.99l1.61,-0.09l-0.11,1.25l2.17,0.48l-0.84,0.53l2.98,1.19l-0.31,0.82l-1.86,0.2l-0.69,-0.73l-2.41,-0.32l-2.83,-0.43l-2.18,-1.8l-1.59,-1.55l-1.46,-2.46l-3.66,-1.23l-2.38,0.8l-1.71,0.93l0.36,2.08l-2.2,0.97l-1.57,-0.47l-2.9,-0.12l-0.05,-9.16l-0.05,-9.1l4.87,1.92l5.18,1.6l1.93,1.43l1.56,1.41l0.43,1.65l4.67,1.73l0.68,1.49l-2.58,0.3L887.96,484.02zM904.63,475.93l-0.88,0.74l-0.53,-1.65l-0.65,-1.08l-1.27,-0.91l-1.6,-1.19l-2.02,-0.82l0.78,-0.67l1.51,0.78l0.95,0.61l1.18,0.67l1.12,1.17l1.07,0.89L904.63,475.93z"},{id:"PH",title:"Philippines",d:"M829.59,439.86l0.29,1.87l0.17,1.58l-0.96,2.57l-1.02,-2.86l-1.31,1.42l0.9,2.06l-0.8,1.31l-3.3,-1.63l-0.79,-2.03l0.86,-1.33l-1.78,-1.33l-0.88,1.17l-1.32,-0.11l-2.08,1.57l-0.46,-0.82l1.1,-2.37l1.77,-0.79l1.53,-1.06l0.99,1.27l2.13,-0.77l0.46,-1.26l1.98,-0.08l-0.17,-2.18l2.27,1.34l0.24,1.42L829.59,439.86zM822.88,434.6l-1.01,0.93l-0.88,1.79l-0.88,0.84l-1.73,-1.95l0.58,-0.76l0.7,-0.79l0.31,-1.76l1.55,-0.17l-0.45,1.91l2.08,-2.74L822.88,434.6zM807.52,437.32l-3.73,2.67l1.38,-1.97l2.03,-1.74l1.68,-1.96l1.47,-2.82l0.5,2.31l-1.85,1.56L807.52,437.32zM817,430.02l1.68,0.88l1.78,0l-0.05,1.19l-1.3,1.2l-1.78,0.85l-0.1,-1.32l0.2,-1.45L817,430.02zM827.14,429.25l0.79,3.18l-2.16,-0.75l0.06,0.95l0.69,1.75l-1.33,0.63l-0.12,-1.99l-0.84,-0.15l-0.44,-1.72l1.65,0.23l-0.04,-1.08l-1.71,-2.18l2.69,0.06L827.14,429.25zM816,426.66l-0.74,2.47l-1.2,-1.42l-1.43,-2.18l2.4,0.1L816,426.66zM815.42,410.92l1.73,0.84l0.86,-0.76l0.25,0.75l-0.46,1.22l0.96,2.09l-0.74,2.42l-1.65,0.96l-0.44,2.33l0.63,2.29l1.49,0.32l1.24,-0.34l3.5,1.59l-0.27,1.56l0.92,0.69l-0.29,1.32l-2.18,-1.4l-1.04,-1.5l-0.72,1.05l-1.79,-1.72l-2.55,0.42l-1.4,-0.63l0.14,-1.19l0.88,-0.73l-0.84,-0.67l-0.36,1.04l-1.38,-1.65l-0.42,-1.26l-0.1,-2.77l1.13,0.96l0.29,-4.55l0.91,-2.66L815.42,410.92z"},{id:"PL",title:"Poland",d:"M517.36,296.97L516.21,294.11L516.43,292.55L515.73,290.1L514.72,288.45L515.5,287.2L514.84,284.81L516.76,283.42L521.13,281.2L524.67,279.56L527.46,280.38L527.67,281.56L530.38,281.62L533.83,282.17L538.99,282.09L540.43,282.61L541.1,284.07L541.22,286.16L542,287.94L541.98,289.79L540.3,290.73L541.17,292.85L541.22,294.86L542.63,298.75L542.33,299.99L540.94,300.5L538.39,304.11L539.11,306.03L538.5,305.78L535.84,304.14L533.82,304.74L532.5,304.3L530.84,305.22L529.43,303.7L528.27,304.28L528.11,304.02L526.82,301.89L524.74,301.63L524.47,300.26L522.55,299.77L522.13,300.9L520.61,300L520.78,298.79L518.69,298.4z"},{id:"PK",title:"Pakistan",d:"M685.99,351.76L688.06,353.39L688.89,356.05L693.5,357.44L690.79,360.3L687.67,360.81L683.41,359.98L682.04,361.44L683.03,364.39L684,366.64L686.27,368.27L683.88,370.18L683.92,372.51L681.2,375.75L679.44,379.01L676.51,382.33L673.25,382.09L670.16,385.39L672,386.79L672.32,389.18L673.89,390.74L674.45,393.38L668.28,393.37L666.41,395.41L664.36,394.64L663.52,392.44L661.35,390.1L656.19,390.68L651.63,390.73L647.68,391.17L648.74,387.57L652.78,385.96L652.55,384.52L651.21,384.01L651.13,381.24L648.45,379.84L647.32,377.91L645.94,376.23L650.63,377.87L653.44,377.39L655.11,377.79L655.68,377.09L657.63,377.37L661.28,376.04L661.38,373.29L662.94,371.45L665.03,371.45L665.33,370.54L667.48,370.11L668.51,370.41L669.61,369.49L669.46,367.51L670.65,365.51L672.43,364.66L671.33,362.44L674,362.55L674.77,361.33L674.65,360.03L676.05,358.6L675.72,356.9L675.06,355.44L676.7,353.93L679.71,353.2L682.93,352.8L684.35,352.15z"},{id:"PR",title:"Puerto Rico",d:"M289.41,410.89L290.84,411.15L291.35,411.73L290.63,412.47L288.52,412.45L286.88,412.55L286.72,411.3L287.11,410.87z"},{id:"PS",title:"Palestinian Territories",d:"M574.92,367.87L574.92,369.88L574.5,370.84L573.18,371.29L573.31,370.43L574.02,369.97L573.32,369.61L573.9,367.41z"},{id:"PT",title:"Portugal",d:"M449.92,334.56L450.94,333.61L452.08,333.06L452.79,334.9L454.44,334.89L454.92,334.42L456.56,334.55L457.34,336.43L456.04,337.43L456.01,340.31L455.55,340.84L455.44,342.56L454.23,342.86L455.35,345.03L454.58,347.38L455.54,348.44L455.16,349.4L454.12,350.72L454.35,351.88L453.23,352.79L451.75,352.3L450.3,352.68L450.73,349.94L450.47,347.76L449.21,347.43L448.54,346.08L448.77,343.72L449.88,342.41L450.08,340.94L450.67,338.73L450.6,337.16L450.04,335.82z"},{id:"PY",title:"Paraguay",d:"M299.49,526.99L300.6,523.4L300.67,521.8L302.01,519.18L306.9,518.32L309.5,518.37L312.12,519.88L312.16,520.79L312.99,522.45L312.81,526.51L315.77,527.09L316.91,526.5L318.8,527.32L319.33,528.22L319.59,530.99L319.92,532.17L320.96,532.3L322.01,531.81L323.02,532.36L323.02,534.04L322.64,535.86L322.09,537.64L321.63,540.39L319.09,542.79L316.87,543.29L313.72,542.81L310.9,541.96L313.66,537.23L313.25,535.86L310.37,534.66L306.94,532.4L304.65,531.94z"},{id:"QA",title:"Qatar",d:"M617.72,392.16L617.53,389.92L618.29,388.3L619.05,387.96L619.9,388.93L619.95,390.74L619.34,392.55L618.56,392.77z"},{id:"RO",title:"Romania",d:"M538.93,310.86L540.14,309.97L541.88,310.43L543.67,310.45L544.97,311.46L545.93,310.82L548,310.42L548.71,309.44L549.89,309.45L550.74,309.85L551.61,311.09L552.5,312.84L554.12,315.28L554.21,317.07L553.91,318.79L554.42,320.62L555.67,321.35L556.98,320.71L558.26,321.39L558.32,322.42L556.96,323.26L556.11,322.9L555.33,327.61L553.68,327.2L551.64,325.79L548.34,326.69L546.95,327.68L542.83,327.48L540.67,326.87L539.59,327.16L538.78,325.56L538.27,324.88L538.92,324.22L538.22,323.73L537.34,324.61L535.71,323.47L535.49,321.84L533.78,320.9L533.47,319.63L531.95,318.05L534.2,317.29L535.89,314.53L537.22,311.73z"},{id:"RS",title:"Serbia",d:"M533.78,320.9L535.49,321.84L535.71,323.47L537.34,324.61L538.22,323.73L538.92,324.22L538.27,324.88L538.78,325.56L538.09,326.44L538.34,327.86L539.7,329.52L538.63,330.71L538.16,331.92L538.47,332.37L538,332.91L536.71,332.97L535.75,333.19L535.66,332.91L535.99,332.46L536.31,331.53L535.91,331.55L535.36,330.85L534.9,330.67L534.54,330.06L534.01,329.82L533.61,329.28L533.11,329.5L532.72,330.76L532.05,331.04L532.28,330.71L531.21,329.92L530.29,329.51L529.88,328.97L529.14,328.31L529.8,328.14L530.21,326.32L528.86,324.82L529.56,323.1L528.54,323.11L529.62,321.62L528.73,320.48L528.05,318.93L530.2,317.88L531.95,318.05L533.47,319.63z"},{id:"RU",title:"Russia",d:"M1008.27,215.75l-2.78,2.97l-4.6,0.7l-0.07,6.46l-1.12,1.35l-2.63,-0.19l-2.14,-2.26l-3.73,-1.92l-0.63,-2.89l-2.85,-1.1l-3.19,0.87l-1.52,-2.37l0.61,-2.55l-3.36,1.64l1.26,3.19l-1.59,2.83l-0.02,0.04l-3.6,2.89l-3.63,-0.48l2.53,3.44l1.67,5.2l1.29,1.67l0.33,2.53l-0.72,1.6l-5.23,-1.32l-7.84,4.51l-2.49,0.69l-4.29,4.1l-4.07,3.5l-1.03,2.55l-4.01,-3.9l-7.31,4.42l-1.28,-2.08l-2.7,2.39l-3.75,-0.76l-0.9,3.63l-3.36,5.22l0.1,2.14l3.19,1.17l-0.38,7.46l-2.6,0.19l-1.2,4.15l1.17,2.1l-4.9,2.47l-0.97,5.4l-4.18,1.14l-0.84,4.66l-4.04,4.18l-1.04,-3.08l-1.2,-6.69l-1.56,-10.65l1.35,-6.95l2.37,-3.07l0.15,-2.44l4.36,-1.18l5.01,-6.78l4.83,-5.73l5.04,-4.57l2.25,-8.37l-3.41,0.51l-1.68,4.92l-7.11,6.36l-2.3,-7.14l-7.24,2l-7.02,9.56l2.32,3.38l-6.26,1.42l-4.33,0.56l0.2,-3.95l-4.36,-0.84l-3.47,2.7l-8.57,-0.94l-9.22,1.62l-9.08,10.33l-10.75,11.78l4.42,0.61l1.38,3l2.72,1.05l1.79,-2.38l3.08,0.31l4.05,5.19l0.09,3.92l-2.19,4.51l-0.24,5.27l-1.26,6.85l-4.23,6.01l-0.94,2.82l-3.81,4.66l-3.78,4.53l-1.81,2.28l-3.74,2.25l-1.77,0.05l-1.76,-1.86l-3.76,2.79l-0.44,1.26l-0.39,-0.66l-0.02,-1.93l1.43,-0.1l0.4,-4.55l-0.74,-3.36l2.41,-1.4l3.4,0.7l1.89,-3.89l0.96,-4.46l1.09,-1.51l1.47,-3.76l-4.63,1.24l-2.43,1.65l-4.26,0l-1.13,-3.95l-3.32,-3.03l-4.88,-1.38l-1.04,-4.28l-0.98,-2.73l-1.05,-1.94l-1.73,-4.61l-2.46,-1.71l-4.2,-1.39l-3.72,0.13l-3.48,0.84l-2.32,2.31l1.54,1.1l0.04,2.52l-1.56,1.45l-2.53,4.72l0.03,1.93l-3.95,2.74l-3.37,-1.63l-3.35,0.36l-1.47,-1.46l-1.68,-0.47l-4.11,3.06l-3.69,0.71l-2.58,1.06l-3.53,-0.7l-2.6,0.04l-1.7,-2.2l-2.75,-2.09l-2.81,-0.58l-3.55,0.57l-2.65,0.81l-3.98,-1.84l-0.53,-3.32l-3.3,-1.15l-2.54,-0.53l-3.14,-1.87l-2.9,4.66l1.14,2.6l-2.73,3.03l-4.05,-1.09l-2.8,-0.16l-1.87,-2.04l-2.92,-0.06l-2.44,-1.35l-4.26,2.07l-5.35,3.74l-2.96,0.74l-1.1,0.35l-1.49,-2.63l-3.61,0.58l-1.19,-1.84l-1.96,-0.85l-1.35,-2.55l-1.55,-0.8l-4.03,1.14l-3.86,-2.57l-1.49,2.33l-6.27,-11.58l-3.58,-3.66l1.03,-1.5l-7.03,4.49l-2.69,0.27l0.23,-2.58l-3.6,-1.63l-2.93,1.17l-0.88,-5.01l-5.04,-1.06l-2.52,2.03l-7.02,1.79l-1.37,1.19l-10.49,1.66l-1.29,1.62l2.02,3.21l-2.69,1.2l0.53,1.25l-2.69,2.22l4.54,3.1l-0.7,2.11l-3.94,-0.19l-0.81,1.31l-3.59,-2.29l-4.45,0.09l-2.98,1.87l-3.32,-1.79l-6.18,-3.1l-4.38,0.12l-5.79,4.85l-0.35,3.19l-2.88,-2.53l-2.24,4.77l0.82,0.87l-1.62,3.21l2.38,2.84l2.08,-0.12l1.79,2.76l-0.28,2.1l1.42,0.66l-1.28,2.39l-2.72,0.66l-2.79,4.09l2.55,3.7l-0.28,2.59l3.06,4.46l-1.67,1.51l-0.48,0.95l-1.24,-0.25l-1.93,-2.27l-0.79,-0.13l-1.76,-0.87l-0.86,-1.55l-2.62,-0.79l-1.7,0.6l-0.49,-0.71l-3.82,-1.83l-4.13,-0.62l-2.37,-0.66l-0.34,0.45l-3.57,-3.27l-3.2,-1.48l-2.42,-2.32l2.04,-0.64l2.33,-3.35l-1.57,-1.6l4.13,-1.67l-0.07,-0.9l-2.52,0.66l0.09,-1.83l1.45,-1.16l2.71,-0.31l0.44,-1.4l-0.62,-2.33l1.14,-2.23l-0.03,-1.26l-4.13,-1.41l-1.64,0.05l-1.73,-2.04l-2.15,0.69l-3.56,-1.54l0.06,-0.87l-1,-1.93l-2.24,-0.22l-0.23,-1.39l0.7,-0.91l-1.79,-2.58l-2.91,0.44l-0.85,-0.23l-0.71,1.04l-1.05,-0.18l-0.69,-2.94l-0.66,-1.54l0.54,-0.44l2.26,0.16l1.09,-1.02l-0.81,-1.25l-1.89,-0.83l0.17,-0.86l-1.14,-0.87l-1.76,-3.15l0.6,-1.31l-0.27,-2.31l-2.74,-1.18l-1.47,0.59l-0.4,-1.24l-2.95,-1.26l-0.9,-2.99l-0.24,-2.49l-1.35,-1.19l1.2,-1.66l-0.83,-4.96l2,-3.13l-0.42,-0.96l3.19,-3.07l-2.94,-2.68l6,-7.41l2.6,-3.45l1.05,-3.1l-4.15,-4.26l1.15,-4.15l-2.52,-4.85l1.89,-5.76l-3.26,-7.96l2.59,-5.48l-4.29,-4.99l0.41,-5.4l2.26,-0.72l4.77,-3.19l2.89,-2.81l4.61,4.86l7.68,1.88l10.59,8.65l2.15,3.51l0.19,4.8l-3.11,3.69l-4.58,1.85l-12.52,-5.31l-2.06,0.9l4.57,5.1l0.18,3.15l0.18,6.75l3.61,1.97l2.19,1.66l0.36,-3.11l-1.69,-2.8l1.78,-2.51l6.78,4.1l2.36,-1.59l-1.89,-4.88l6.53,-6.74l2.59,0.4l2.62,2.43l1.63,-4.81l-2.34,-4.28l1.37,-4.41l-2.06,-4.69l7.84,2.44l1.6,4.18l-3.55,0.91l0.02,4.04l2.21,2.44l4.33,-1.54l0.69,-4.61l5.86,-3.52l9.79,-6.54l2.11,0.38l-2.76,4.64l3.48,0.78l2.01,-2.58l5.25,-0.21l4.16,-3.19l3.2,4.62l3.19,-5.09l-2.94,-4.58l1.46,-2.66l8.28,2.44l3.88,2.49l10.16,8.8l1.88,-3.97l-2.85,-4.11l-0.08,-1.68l-3.38,-0.78l0.92,-3.83l-1.5,-6.49l-0.08,-2.74l5.17,-7.99l1.84,-8.42l2.08,-1.88l7.42,2.51l0.58,5.18l-2.66,7.28l1.74,2.78l0.9,5.94l-0.64,11.07l3.09,4.73l-1.2,5.01l-5.49,10.2l3.21,1.02l1.12,-2.51l3.08,-1.82l0.74,-3.55l2.43,-3.49l-1.63,-4.26l1.31,-5.08l-3.07,-0.64l-0.67,-4.42l2.24,-8.28l-3.64,-7.03l5.02,-6.04l-0.65,-6.62l1.4,-0.22l1.47,5.19l-1.11,8.67l3,1.59l-1.28,-6.37l4.69,-3.58l5.82,-0.49l5.18,5.18l-2.49,-7.62l-0.28,-10.28l4.88,-2.02l6.74,0.44l6.08,-1.32l-2.28,-5.38l3.25,-7.02l3.22,-0.3l5.45,-5.51l7.4,-1.51l0.94,-3.15l7.36,-1.08l2.29,2.61l6.29,-6.24l5.15,0.2l0.77,-5.24l2.68,-5.33l6.62,-5.31l4.81,4.21l-3.82,3.13l6.35,1.92l0.76,6.03l2.56,-2.94l8.2,0.16l6.32,5.84l2.25,4.35l-0.7,5.85l-3.1,3.24l-7.37,5.92l-2.11,3.08l3.48,1.43l4.15,2.55l2.52,-1.91l1.43,6.39l1.23,-2.56l4.48,-1.57l9,1.65l0.68,4.58l11.72,1.43l0.16,-7.47l5.95,1.74l4.48,-0.05l4.53,5.14l1.29,6.04l-1.66,3.84l3.52,6.98l4.41,3.49l2.71,-9.18l4.5,4l4.78,-2.38l5.43,2.72l2.07,-2.47l4.59,1.24l-2.02,-8.4l3.7,-4.07l25.32,6.06l2.39,5.35l7.34,6.65l11.32,-1.62l5.58,1.41l2.33,3.5l-0.34,6.02l3.45,2.29l3.75,-1.64l4.97,-0.21l5.29,1.57l5.31,-0.89l4.88,6.99l3.47,-2.48l-2.27,-5.07l1.25,-3.62l8.95,2.29l5.83,-0.49l8.06,3.84l3.92,3.44l6.87,5.86l7.35,7.34l-0.24,4.44l1.89,1.74l-0.65,-5.15l7.61,1.07L1008.27,215.75zM880.84,306.25l-2.82,-7.68l-1.16,-4.51l0.07,-4.5l-0.97,-4.5l-0.73,-3.15l-1.25,0.67l1.11,2.21l-2.59,2.17l-0.25,6.3l1.64,4.41l-0.12,5.85l-0.65,3.24l0.32,4.54l-0.31,4.01l0.52,3.4l1.84,-3.13l2.13,2.44l0.08,-2.84l-2.73,-4.23l1.72,-6.11L880.84,306.25zM537.82,278.77l-2.94,-0.86l-3.87,1.58l-0.64,2.13l3.45,0.55l5.16,-0.07l-0.22,-1.23l0.3,-1.33L537.82,278.77zM979.95,178.65l3.66,-0.52l2.89,-2.06l0.24,-1.19l-4.06,-2.51l-2.38,-0.02l-0.36,0.37l-3.57,3.64l0.5,2.73L979.95,178.65zM870.07,151.56l-2.66,3.92l0.49,0.52l5.75,1.08l4.25,-0.07l-0.34,-2.57l-3.98,-3.81L870.07,151.56zM894.64,142.03l3.24,-4.25l-7.04,-2.88l-5.23,-1.68l-0.67,3.59l5.21,4.27L894.64,142.03zM869.51,140.34l10.33,0.3l2.21,-8.14l-10.13,-6.07l-7.4,-0.51l-3.7,2.18l-1.51,7.75l5.55,7.01L869.51,140.34zM622.39,166.28l-2.87,1.96l0.41,4.83l5.08,2.35l0.74,3.82l9.16,1.1l1.66,-0.74l-5.36,-7.11l-0.57,-7.52l4.39,-9.14l4.18,-9.82l8.71,-10.17l8.56,-5.34l9.93,-5.74l1.88,-3.71l-1.95,-4.83l-5.46,1.6l-4.8,4.49l-9.33,2.22l-9.26,7.41l-6.27,5.85l0.76,4.87l-6.71,9.03l2.58,1.22l-5.56,8.27L622.39,166.28zM769.87,98.34l0.83,-5.72l-7.11,-8.34l-2.11,-0.98l-2.3,1.7l-5.12,18.6L769.87,98.34zM605.64,69.03l3.04,3.88l3.28,-2.69l0.39,-2.72l2.52,-1.27l3.76,-2.23l1.08,-2.62l-4.16,-3.85l-2.64,2.9l-1.61,4.12l-0.57,-4.65l-4.26,0.21L601,63.25l6.24,0.52L605.64,69.03zM736.89,82.07l4.65,5.73l7.81,4.2l6.12,-1.8l0.69,-13.62l-6.46,-16.04l-5.45,-9.02l-6.07,4.11l-7.28,11.83l3.83,3.27L736.89,82.07z"},{id:"RW",title:"Rwanda",d:"M560.54,466.55L561.66,468.12L561.49,469.76L560.69,470.11L559.2,469.93L558.34,471.52L556.63,471.3L556.89,469.77L557.28,469.56L557.38,467.9L558.19,467.12L558.87,467.41z"},{id:"SA",title:"Saudi Arabia",d:"M595.2,417.22L594.84,415.98L593.99,415.1L593.77,413.93L592.33,412.89L590.83,410.43L590.04,408.02L588.1,405.98L586.85,405.5L584.99,402.65L584.67,400.57L584.79,398.78L583.18,395.42L581.87,394.23L580.35,393.6L579.43,391.84L579.58,391.15L578.8,389.55L577.98,388.86L576.89,386.54L575.18,384.02L573.75,381.86L572.36,381.87L572.79,380.13L572.92,379.02L573.26,377.74L576.38,378.25L577.6,377.27L578.27,376.11L580.41,375.67L580.87,374.58L581.8,374.04L579,370.78L584.62,369.13L585.15,368.64L588.53,369.53L592.71,371.82L600.61,378.31L605.82,378.57L608.32,378.88L609.02,380.39L611,380.31L612.1,383.04L613.48,383.75L613.96,384.86L615.87,386.17L616.04,387.46L615.76,388.49L616.12,389.53L616.92,390.4L617.3,391.41L617.72,392.16L618.56,392.77L619.34,392.55L619.87,393.72L619.98,394.43L621.06,397.51L629.48,399.03L630.05,398.39L631.33,400.53L629.46,406.5L621.05,409.46L612.97,410.59L610.35,411.91L608.34,414.98L607.03,415.46L606.33,414.49L605.26,414.64L602.55,414.35L602.03,414.05L598.8,414.12L598.04,414.39L596.89,413.63L596.14,415.06L596.43,416.29z"},{id:"SB",title:"Solomon Islands",d:"M929.81,492.75l0.78,0.97l-1.96,-0.02l-1.07,-1.74l1.67,0.69L929.81,492.75zM926.26,491.02l-1.09,0.06l-1.72,-0.29l-0.59,-0.44l0.18,-1.12l1.85,0.44l0.91,0.59L926.26,491.02zM928.58,490.25l-0.42,0.52l-2.08,-2.45l-0.58,-1.68h0.95l1.01,2.25L928.58,490.25zM923.52,486.69l0.12,0.57l-2.2,-1.19l-1.54,-1.01l-1.05,-0.94l0.42,-0.29l1.29,0.67l2.3,1.29L923.52,486.69zM916.97,483.91l-0.56,0.16l-1.23,-0.64l-1.15,-1.15l0.14,-0.47l1.67,1.18L916.97,483.91z"},{id:"SD",title:"Sudan",d:"M570.48,436.9L570.09,436.85L570.14,435.44L569.8,434.47L568.36,433.35L568.02,431.3L568.36,429.2L567.06,429.01L566.87,429.64L565.18,429.79L565.86,430.62L566.1,432.33L564.56,433.89L563.16,435.93L561.72,436.22L559.36,434.57L558.3,435.15L558.01,435.98L556.57,436.51L556.47,437.09L553.68,437.09L553.29,436.51L551.27,436.41L550.26,436.9L549.49,436.65L548.05,435L547.57,434.23L545.54,434.62L544.77,435.93L544.05,438.45L543.09,438.98L542.23,439.29L542,439.15L541.03,438.34L540.85,437.47L541.3,436.29L541.3,435.14L539.68,433.37L539.36,432.15L539.39,431.46L538.36,430.63L538.33,428.97L537.75,427.87L536.76,428.04L537.04,426.99L537.77,425.79L537.45,424.61L538.37,423.73L537.79,423.06L538.53,421.28L539.81,419.15L542.23,419.35L542.09,407.74L542.13,406.5L545.35,406.49L545.35,400.53L556.62,400.53L567.5,400.53L578.62,400.53L579.52,403.47L578.91,404.01L579.32,407.07L580.35,410.59L581.41,411.32L582.95,412.4L581.53,414.07L579.46,414.55L578.58,415.45L578.31,417.38L577.1,421.63L577.4,422.78L576.95,425.25L575.81,428.06L574.12,429.48L572.92,431.65L572.63,432.81L571.31,433.61L570.48,436.57z"},{id:"SE",title:"Sweden",d:"M537.45,217.49L534.73,222.18L535.17,226.2L530.71,231.33L525.3,236.67L523.25,245.08L525.25,249.15L527.93,252.29L525.36,258.52L522.44,259.78L521.37,268.62L519.78,273.38L516.38,272.89L514.79,276.84L511.54,277.07L510.65,272.36L508.3,266.55L506.17,259.05L507.41,255.9L509.74,252.09L510.67,245.36L508.88,242.38L508.7,234.34L510.53,228.43L513.31,228.54L514.28,225.99L513.26,223.76L517.61,214.26L520.42,206.39L522.27,201.15L524.96,201.17L525.71,196.96L530.99,198.18L531.4,193.1L533.14,192.77L536.88,196.58L541.25,201.73L541.33,212.85L542.27,215.55z"},{id:"SI",title:"Slovenia",d:"M513.96,316.51L516.28,316.82L517.7,315.9L520.15,315.8L520.68,315.11L521.15,315.16L521.7,316.53L519.47,317.61L519.19,319.23L518.22,319.64L518.23,320.76L517.13,320.68L516.18,320.03L515.66,320.71L513.71,320.57L514.33,320.21L513.66,318.5z"},{id:"SJ",title:"Svalbard and Jan Mayen",d:"M544.58,104.49l-6.26,5.36l-4.95,-3.02l1.94,-3.42l-1.69,-4.34l5.81,-2.78l1.11,5.18L544.58,104.49zM526.43,77.81l9.23,11.29l-7.06,5.66l-1.56,10.09l-2.46,2.49l-1.33,10.51l-3.38,0.48l-6.03,-7.64l2.54,-4.62l-4.2,-3.86l-5.46,-11.82l-2.18,-11.79l7.64,-5.69l1.54,5.56l3.99,-0.22l1.06,-5.43l4.12,-0.56L526.43,77.81zM546.6,66.35l5.5,5.8l-4.16,8.52l-8.13,1.81l-8.27,-2.56l-0.5,-4.32l-4.02,-0.28l-3.07,-7.48l8.66,-4.72l4.07,4.08l2.84,-5.09L546.6,66.35z"},{id:"SK",title:"Slovakia",d:"M528.11,304.02L528.27,304.28L529.43,303.7L530.84,305.22L532.5,304.3L533.82,304.74L535.84,304.14L538.5,305.78L537.73,306.89L537.18,308.6L536.58,309.03L533.58,307.75L532.66,308L532,309L530.68,309.52L530.38,309.25L529.02,309.9L527.9,310.03L527.68,310.87L525.32,311.38L524.29,310.92L522.86,309.85L522.58,308.4L522.81,307.86L523.2,306.93L524.45,307L525.4,306.56L525.48,306.17L526.02,305.96L526.2,304.99L526.84,304.8L527.28,304.03z"},{id:"SL",title:"Sierra Leone",d:"M443.18,444.44L442.42,444.23L440.41,443.1L438.95,441.6L438.46,440.57L438.11,438.49L439.61,437.25L439.93,436.46L440.41,435.85L441.19,435.79L441.84,435.26L444.08,435.26L444.86,436.27L445.47,437.46L445.38,438.28L445.83,439.02L445.8,440.05L446.57,439.89L445.26,441.2L444,442.73L443.85,443.54z"},{id:"SN",title:"Senegal",d:"M428.39,425.16L427.23,422.92L425.83,421.9L427.07,421.35L428.43,419.32L429.09,417.83L430.05,416.9L431.45,417.15L432.81,416.52L434.38,416.49L435.72,417.34L437.58,418.11L439.28,420.24L441.13,422.22L441.26,424.01L441.81,425.65L442.86,426.46L443.1,427.56L442.97,428.45L442.56,428.61L441.04,428.39L440.83,428.7L440.21,428.77L438.19,428.07L436.84,428.04L431.66,427.92L430.91,428.24L429.98,428.15L428.49,428.62L428.03,426.43L430.58,426.49L431.26,426.09L431.76,426.06L432.8,425.4L434,426.01L435.22,426.06L436.43,425.41L435.87,424.59L434.94,425.07L434.07,425.06L432.97,424.35L432.08,424.4L431.44,425.07z"},{id:"SO",title:"Somalia",d:"M618.63,430.43L618.56,429.64L617.5,429.65L616.17,430.63L614.68,430.91L613.39,431.33L612.5,431.39L610.9,431.49L609.9,432.01L608.51,432.2L606.04,433.08L602.99,433.41L600.34,434.14L598.95,434.13L597.69,432.94L597.14,431.77L596.23,431.24L595.19,432.76L594.58,433.77L595.62,435.33L596.65,436.69L597.72,437.7L606.89,441.04L609.25,441.02L601.32,449.44L597.67,449.56L595.17,451.53L593.38,451.58L592.61,452.46L590.16,455.63L590.19,465.78L591.85,468.07L592.48,467.41L593.13,465.95L596.2,462.57L598.81,460.45L603.01,457.69L605.81,455.43L609.11,451.62L611.5,448.49L613.91,444.39L615.64,440.8L616.99,437.65L617.78,434.6L618.38,433.58L618.37,432.08z"},{id:"SR",title:"Suriname",d:"M315.02,446.72L318.38,447.28L318.68,446.77L320.95,446.57L323.96,447.33L322.5,449.73L322.72,451.64L323.83,453.3L323.34,454.5L323.09,455.77L322.37,456.94L320.77,456.35L319.44,456.64L318.31,456.39L318.03,457.2L318.5,457.75L318.25,458.32L316.72,458.09L315.01,455.67L314.64,454.1L313.75,454.09L312.5,452.07L313.02,450.62L312.87,449.97L314.57,449.24z"},{id:"SS",title:"South Sudan",d:"M570.48,436.9L570.51,439.1L570.09,439.96L568.61,440.03L567.65,441.64L569.37,441.84L570.79,443.21L571.29,444.33L572.57,444.98L574.22,448.03L572.32,449.87L570.6,451.54L568.87,452.82L566.9,452.82L564.64,453.47L562.86,452.84L561.71,453.61L559.24,451.75L558.57,450.56L557.01,451.15L555.71,450.96L554.96,451.43L553.7,451.1L552.01,448.79L551.56,447.9L549.46,446.79L548.75,445.11L547.58,443.9L545.7,442.44L545.67,441.52L544.14,440.39L542.23,439.29L543.09,438.98L544.05,438.45L544.77,435.93L545.54,434.62L547.57,434.23L548.05,435L549.49,436.65L550.26,436.9L551.27,436.41L553.29,436.51L553.68,437.09L556.47,437.09L556.57,436.51L558.01,435.98L558.3,435.15L559.36,434.57L561.72,436.22L563.16,435.93L564.56,433.89L566.1,432.33L565.86,430.62L565.18,429.79L566.87,429.64L567.06,429.01L568.36,429.2L568.02,431.3L568.36,433.35L569.8,434.47L570.14,435.44L570.09,436.85z"},{id:"SV",title:"El Salvador",d:"M229.09,425.76L228.78,426.43L227.16,426.39L226.15,426.12L224.99,425.55L223.43,425.37L222.64,424.75L222.73,424.33L223.69,423.61L224.21,423.29L224.06,422.95L224.72,422.78L225.55,423.02L226.15,423.59L227,424.05L227.1,424.44L228.33,424.1L228.91,424.3L229.29,424.61z"},{id:"SY",title:"Syria",d:"M584.02,364.6L578.53,368.14L575.41,366.82L575.35,366.8L575.73,366.3L575.69,364.93L576.38,363.1L577.91,361.83L577.45,360.51L576.19,360.33L575.93,357.72L576.61,356.31L577.36,355.56L578.11,354.8L578.27,352.86L579.18,353.54L582.27,352.57L583.76,353.22L586.07,353.21L589.29,351.9L590.81,351.96L594,351.42L592.56,353.6L591.02,354.46L591.29,356.98L590.23,361.1z"},{id:"SZ",title:"Swaziland",d:"M565.18,540.74L564.61,542.13L562.97,542.46L561.29,540.77L561.27,539.69L562.03,538.52L562.3,537.62L563.11,537.4L564.52,537.97L564.94,539.36z"},{id:"TD",title:"Chad",d:"M515.9,427.26L516.18,425.92L514.38,425.85L514.39,424L513.22,422.94L514.43,419.14L518.01,416.4L518.15,412.61L519.23,406.63L519.84,405.35L518.68,404.33L518.63,403.38L517.58,402.6L516.89,397.93L519.72,396.27L530.91,402.04L542.09,407.74L542.23,419.35L539.81,419.15L538.53,421.28L537.79,423.06L538.37,423.73L537.45,424.61L537.77,425.79L537.04,426.99L536.76,428.04L537.75,427.87L538.33,428.97L538.36,430.63L539.39,431.46L539.36,432.15L537.59,432.64L536.16,433.78L534.14,436.87L531.5,4