Count per Day - Version 3.2.5

Version Description

  • Bugfix: compatibility fix for WordPress 3.5
Download this release

Release Info

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

Code changes from version 3.2.4 to 3.2.5

ajax.php CHANGED
@@ -1,39 +1,39 @@
1
- <?php
2
- if ( $_GET['f'] == 'count' )
3
- {
4
- // answer only for 20 seconds after calling
5
- if ( empty($_GET['time']) || time() - $_GET['time'] > 20 )
6
  {
7
- header("HTTP/1.0 403 Forbidden");
8
- die();
9
  }
10
-
11
- if (!session_id()) session_start();
12
- $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../';
13
- require_once($cpd_wp.'wp-load.php');
14
-
15
- $cpd_funcs = array ( 'show',
16
- 'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
17
- 'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
18
- 'getUserPerDay', 'getUserOnline', 'getFirstCount' );
19
-
20
- $page = (int) $_GET['page'];
21
- if ( is_numeric($page) )
22
- {
23
- $count_per_day->count( '', $page );
24
- foreach ( $cpd_funcs as $f )
25
- {
26
- if ( ($f == 'show' && $page) || $f != 'show' )
27
- {
28
- echo $f.'===';
29
- if ( $f == 'getUserPerDay' )
30
- eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
31
- else if ( $f == 'show' )
32
- eval('echo $count_per_day->show("", "", false, false, '.$page.');');
33
- else
34
- eval('echo $count_per_day->'.$f.'();');
35
- echo '|';
36
- }
37
- }
38
- }
39
- }
1
+ <?php
2
+ if ( $_GET['f'] == 'count' )
3
+ {
4
+ // answer only for 20 seconds after calling
5
+ if ( empty($_GET['time']) || time() - $_GET['time'] > 20 )
6
  {
7
+ header("HTTP/1.0 403 Forbidden");
8
+ die();
9
  }
10
+
11
+ if (!session_id()) session_start();
12
+ $cpd_wp = (!empty($_SESSION['cpd_wp'])) ? $_SESSION['cpd_wp'] : '../../../';
13
+ require_once($cpd_wp.'wp-load.php');
14
+
15
+ $cpd_funcs = array ( 'show',
16
+ 'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
17
+ 'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
18
+ 'getUserPerDay', 'getUserOnline', 'getFirstCount' );
19
+
20
+ $page = (int) $_GET['page'];
21
+ if ( is_numeric($page) )
22
+ {
23
+ $count_per_day->count( '', $page );
24
+ foreach ( $cpd_funcs as $f )
25
+ {
26
+ if ( ($f == 'show' && $page) || $f != 'show' )
27
+ {
28
+ echo $f.'===';
29
+ if ( $f == 'getUserPerDay' )
30
+ eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
31
+ else if ( $f == 'show' )
32
+ eval('echo $count_per_day->show("", "", false, false, '.$page.');');
33
+ else
34
+ eval('echo $count_per_day->'.$f.'();');
35
+ echo '|';
36
+ }
37
+ }
38
+ }
39
+ }
counter-core.php CHANGED
@@ -214,14 +214,14 @@ function mysqlQuery( $kind = '', $sql, $func = '' )
214
  return;
215
  $t = microtime(true);
216
  $con = $wpdb->dbh;
217
- $preparedSql = $wpdb->prepare($sql);
218
  $r = false;
219
  if ($kind == 'var')
220
  $r = $wpdb->get_var( $preparedSql );
221
  else if ($kind == 'count')
222
  {
223
  $sql = 'SELECT COUNT(*) FROM ('.trim($sql,';').') t';
224
- $r = $wpdb->get_var( $wpdb->prepare($sql) );
225
  }
226
  else if ($kind == 'rows')
227
  {
@@ -360,7 +360,7 @@ function checkVersion()
360
  if (!empty($_GET['networkwide']))
361
  {
362
  $old_blog = $wpdb->blogid;
363
- $blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs"));
364
  foreach ($blogids as $blog_id)
365
  {
366
  // create tables in all sub blogs
214
  return;
215
  $t = microtime(true);
216
  $con = $wpdb->dbh;
217
+ $preparedSql = $wpdb->prepare($sql, null);
218
  $r = false;
219
  if ($kind == 'var')
220
  $r = $wpdb->get_var( $preparedSql );
221
  else if ($kind == 'count')
222
  {
223
  $sql = 'SELECT COUNT(*) FROM ('.trim($sql,';').') t';
224
+ $r = $wpdb->get_var( $wpdb->prepare($sql, null) );
225
  }
226
  else if ($kind == 'rows')
227
  {
360
  if (!empty($_GET['networkwide']))
361
  {
362
  $old_blog = $wpdb->blogid;
363
+ $blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs", null));
364
  foreach ($blogids as $blog_id)
365
  {
366
  // create tables in all sub blogs
counter.php CHANGED
@@ -3,14 +3,14 @@
3
  Plugin Name: Count Per Day
4
  Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
5
  Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
6
- Version: 3.2.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.2.4';
14
 
15
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
16
  include_once($cpd_path.'counter-core.php');
@@ -53,7 +53,7 @@ function show( $before='', $after=' reads', $show = true, $count = true, $page =
53
  // get count from collection
54
  $c = $this->getCollectedPostReads($page);
55
  // add current data
56
- $c += $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE page='$page'"), 'show '.__LINE__);
57
  if ($show)
58
  echo $before.$c.$after;
59
  else
3
  Plugin Name: Count Per Day
4
  Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
5
  Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
6
+ Version: 3.2.5
7
  License: Postcardware
8
  Author: Tom Braider
9
  Author URI: http://www.tomsdimension.de
10
  */
11
 
12
  $cpd_dir_name = 'count-per-day';
13
+ $cpd_version = '3.2.5';
14
 
15
  $cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
16
  include_once($cpd_path.'counter-core.php');
53
  // get count from collection
54
  $c = $this->getCollectedPostReads($page);
55
  // add current data
56
+ $c += $this->mysqlQuery('var', $wpdb->prepare("SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE page='$page'", null), 'show '.__LINE__);
57
  if ($show)
58
  echo $before.$c.$after;
59
  else
geoip/GeoIP.dat CHANGED
Binary file
geoip/cpd_geoip.inc ADDED
@@ -0,0 +1,713 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
4
+ /* geoip.inc
5
+ *
6
+ * Copyright (C) 2007 MaxMind LLC
7
+ *
8
+ * This library is free software; you can redistribute it and/or
9
+ * modify it under the terms of the GNU Lesser General Public
10
+ * License as published by the Free Software Foundation; either
11
+ * version 2.1 of the License, or (at your option) any later version.
12
+ *
13
+ * This library is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
+ * Lesser General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU Lesser General Public
19
+ * License along with this library; if not, write to the Free Software
20
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
+ */
22
+
23
+ define("GEOIP_COUNTRY_BEGIN", 16776960);
24
+ define("GEOIP_STATE_BEGIN_REV0", 16700000);
25
+ define("GEOIP_STATE_BEGIN_REV1", 16000000);
26
+ define("GEOIP_STANDARD", 0);
27
+ define("GEOIP_MEMORY_CACHE", 1);
28
+ define("GEOIP_SHARED_MEMORY", 2);
29
+ define("STRUCTURE_INFO_MAX_SIZE", 20);
30
+ define("DATABASE_INFO_MAX_SIZE", 100);
31
+ define("GEOIP_COUNTRY_EDITION", 106);
32
+ define("GEOIP_PROXY_EDITION", 8);
33
+ define("GEOIP_ASNUM_EDITION", 9);
34
+ define("GEOIP_NETSPEED_EDITION", 10);
35
+ define("GEOIP_REGION_EDITION_REV0", 112);
36
+ define("GEOIP_REGION_EDITION_REV1", 3);
37
+ define("GEOIP_CITY_EDITION_REV0", 111);
38
+ define("GEOIP_CITY_EDITION_REV1", 2);
39
+ define("GEOIP_ORG_EDITION", 110);
40
+ define("GEOIP_ISP_EDITION", 4);
41
+ define("SEGMENT_RECORD_LENGTH", 3);
42
+ define("STANDARD_RECORD_LENGTH", 3);
43
+ define("ORG_RECORD_LENGTH", 4);
44
+ define("MAX_RECORD_LENGTH", 4);
45
+ define("MAX_ORG_RECORD_LENGTH", 300);
46
+ define("GEOIP_SHM_KEY", 0x4f415401);
47
+ define("US_OFFSET", 1);
48
+ define("CANADA_OFFSET", 677);
49
+ define("WORLD_OFFSET", 1353);
50
+ define("FIPS_RANGE", 360);
51
+ define("GEOIP_UNKNOWN_SPEED", 0);
52
+ define("GEOIP_DIALUP_SPEED", 1);
53
+ define("GEOIP_CABLEDSL_SPEED", 2);
54
+ define("GEOIP_CORPORATE_SPEED", 3);
55
+ define("GEOIP_DOMAIN_EDITION", 11);
56
+ define("GEOIP_COUNTRY_EDITION_V6", 12);
57
+ define("GEOIP_LOCATIONA_EDITION", 13);
58
+ define("GEOIP_ACCURACYRADIUS_EDITION", 14);
59
+ define("GEOIP_CITYCOMBINED_EDITION", 15);
60
+ define("GEOIP_CITY_EDITION_REV1_V6", 30);
61
+ define("GEOIP_CITY_EDITION_REV0_V6",31);
62
+ define("GEOIP_NETSPEED_EDITION_REV1",32);
63
+ define("GEOIP_NETSPEED_EDITION_REV1_V6",33);
64
+ define("GEOIP_USERTYPE_EDITION",28);
65
+ define("GEOIP_USERTYPE_EDITION_V6",29);
66
+ define("GEOIP_ASNUM_EDITION_V6",21);
67
+ define("GEOIP_ISP_EDITION_V6",22);
68
+ define("GEOIP_ORG_EDITION_V6",23);
69
+ define("GEOIP_DOMAIN_EDITION_V6",24);
70
+
71
+ define("CITYCOMBINED_FIXED_RECORD", 7 );
72
+
73
+ class GeoIPCpD {
74
+ var $flags;
75
+ var $filehandle;
76
+ var $memory_buffer;
77
+ var $databaseType;
78
+ var $databaseSegments;
79
+ var $record_length;
80
+ var $shmid;
81
+ var $GEOIP_COUNTRY_CODE_TO_NUMBER = array(
82
+ "" => 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5,
83
+ "AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "CW" => 10, "AO" => 11,
84
+ "AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17,
85
+ "AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23,
86
+ "BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29,
87
+ "BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35,
88
+ "BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41,
89
+ "CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47,
90
+ "CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53,
91
+ "CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59,
92
+ "DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65,
93
+ "ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71,
94
+ "FM" => 72, "FO" => 73, "FR" => 74, "SX" => 75, "GA" => 76, "GB" => 77,
95
+ "GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83,
96
+ "GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89,
97
+ "GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95,
98
+ "HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101,
99
+ "IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107,
100
+ "IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113,
101
+ "KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119,
102
+ "KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125,
103
+ "LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131,
104
+ "LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137,
105
+ "MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143,
106
+ "MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149,
107
+ "MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155,
108
+ "NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161,
109
+ "NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167,
110
+ "PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173,
111
+ "PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179,
112
+ "PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185,
113
+ "RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191,
114
+ "SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197,
115
+ "SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203,
116
+ "SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209,
117
+ "TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215,
118
+ "TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221,
119
+ "UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227,
120
+ "VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233,
121
+ "VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239,
122
+ "ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245,
123
+ "O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251,
124
+ "MF" => 252, "BQ" => 253,
125
+ );
126
+ var $GEOIP_COUNTRY_CODES = array(
127
+ "","AP","EU","AD","AE","AF","AG","AI","AL","AM","CW",
128
+ "AO","AQ","AR","AS","AT","AU","AW","AZ","BA","BB",
129
+ "BD","BE","BF","BG","BH","BI","BJ","BM","BN","BO",
130
+ "BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD",
131
+ "CF","CG","CH","CI","CK","CL","CM","CN","CO","CR",
132
+ "CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO",
133
+ "DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ",
134
+ "FK","FM","FO","FR","SX","GA","GB","GD","GE","GF",
135
+ "GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT",
136
+ "GU","GW","GY","HK","HM","HN","HR","HT","HU","ID",
137
+ "IE","IL","IN","IO","IQ","IR","IS","IT","JM","JO",
138
+ "JP","KE","KG","KH","KI","KM","KN","KP","KR","KW",
139
+ "KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT",
140
+ "LU","LV","LY","MA","MC","MD","MG","MH","MK","ML",
141
+ "MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV",
142
+ "MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI",
143
+ "NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF",
144
+ "PG","PH","PK","PL","PM","PN","PR","PS","PT","PW",
145
+ "PY","QA","RE","RO","RU","RW","SA","SB","SC","SD",
146
+ "SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO",
147
+ "SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH",
148
+ "TJ","TK","TM","TN","TO","TL","TR","TT","TV","TW",
149
+ "TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE",
150
+ "VG","VI","VN","VU","WF","WS","YE","YT","RS","ZA",
151
+ "ZM","ME","ZW","A1","A2","O1","AX","GG","IM","JE",
152
+ "BL","MF", "BQ");
153
+ var $GEOIP_COUNTRY_CODES3 = array(
154
+ "","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","CUW",
155
+ "AGO","ATA","ARG","ASM","AUT","AUS","ABW","AZE","BIH","BRB",
156
+ "BGD","BEL","BFA","BGR","BHR","BDI","BEN","BMU","BRN","BOL",
157
+ "BRA","BHS","BTN","BVT","BWA","BLR","BLZ","CAN","CCK","COD",
158
+ "CAF","COG","CHE","CIV","COK","CHL","CMR","CHN","COL","CRI",
159
+ "CUB","CPV","CXR","CYP","CZE","DEU","DJI","DNK","DMA","DOM",
160
+ "DZA","ECU","EST","EGY","ESH","ERI","ESP","ETH","FIN","FJI",
161
+ "FLK","FSM","FRO","FRA","SXM","GAB","GBR","GRD","GEO","GUF",
162
+ "GHA","GIB","GRL","GMB","GIN","GLP","GNQ","GRC","SGS","GTM",
163
+ "GUM","GNB","GUY","HKG","HMD","HND","HRV","HTI","HUN","IDN",
164
+ "IRL","ISR","IND","IOT","IRQ","IRN","ISL","ITA","JAM","JOR",
165
+ "JPN","KEN","KGZ","KHM","KIR","COM","KNA","PRK","KOR","KWT",
166
+ "CYM","KAZ","LAO","LBN","LCA","LIE","LKA","LBR","LSO","LTU",
167
+ "LUX","LVA","LBY","MAR","MCO","MDA","MDG","MHL","MKD","MLI",
168
+ "MMR","MNG","MAC","MNP","MTQ","MRT","MSR","MLT","MUS","MDV",
169
+ "MWI","MEX","MYS","MOZ","NAM","NCL","NER","NFK","NGA","NIC",
170
+ "NLD","NOR","NPL","NRU","NIU","NZL","OMN","PAN","PER","PYF",
171
+ "PNG","PHL","PAK","POL","SPM","PCN","PRI","PSE","PRT","PLW",
172
+ "PRY","QAT","REU","ROU","RUS","RWA","SAU","SLB","SYC","SDN",
173
+ "SWE","SGP","SHN","SVN","SJM","SVK","SLE","SMR","SEN","SOM",
174
+ "SUR","STP","SLV","SYR","SWZ","TCA","TCD","ATF","TGO","THA",
175
+ "TJK","TKL","TKM","TUN","TON","TLS","TUR","TTO","TUV","TWN",
176
+ "TZA","UKR","UGA","UMI","USA","URY","UZB","VAT","VCT","VEN",
177
+ "VGB","VIR","VNM","VUT","WLF","WSM","YEM","MYT","SRB","ZAF",
178
+ "ZMB","MNE","ZWE","A1","A2","O1","ALA","GGY","IMN","JEY",
179
+ "BLM","MAF", "BES"
180
+ );
181
+ var $GEOIP_COUNTRY_NAMES = array(
182
+ "","Asia/Pacific Region","Europe","Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Curacao",
183
+ "Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Azerbaijan","Bosnia and Herzegovina","Barbados",
184
+ "Bangladesh","Belgium","Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Bermuda","Brunei Darussalam","Bolivia",
185
+ "Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos (Keeling) Islands","Congo, The Democratic Republic of the",
186
+ "Central African Republic","Congo","Switzerland","Cote D'Ivoire","Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica",
187
+ "Cuba","Cape Verde","Christmas Island","Cyprus","Czech Republic","Germany","Djibouti","Denmark","Dominica","Dominican Republic",
188
+ "Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji",
189
+ "Falkland Islands (Malvinas)","Micronesia, Federated States of","Faroe Islands","France","Sint Maarten (Dutch part)","Gabon","United Kingdom","Grenada","Georgia","French Guiana",
190
+ "Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala",
191
+ "Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia",
192
+ "Ireland","Israel","India","British Indian Ocean Territory","Iraq","Iran, Islamic Republic of","Iceland","Italy","Jamaica","Jordan",
193
+ "Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","Korea, Democratic People's Republic of","Korea, Republic of","Kuwait",
194
+ "Cayman Islands","Kazakhstan","Lao People's Democratic Republic","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania",
195
+ "Luxembourg","Latvia","Libya","Morocco","Monaco","Moldova, Republic of","Madagascar","Marshall Islands","Macedonia","Mali",
196
+ "Myanmar","Mongolia","Macau","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives",
197
+ "Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua",
198
+ "Netherlands","Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia",
199
+ "Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestinian Territory","Portugal","Palau",
200
+ "Paraguay","Qatar","Reunion","Romania","Russian Federation","Rwanda","Saudi Arabia","Solomon Islands","Seychelles","Sudan",
201
+ "Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname",
202
+ "Sao Tome and Principe","El Salvador","Syrian Arab Republic","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand",
203
+ "Tajikistan","Tokelau","Turkmenistan","Tunisia","Tonga","Timor-Leste","Turkey","Trinidad and Tobago","Tuvalu","Taiwan",
204
+ "Tanzania, United Republic of","Ukraine","Uganda","United States Minor Outlying Islands","United States","Uruguay","Uzbekistan","Holy See (Vatican City State)","Saint Vincent and the Grenadines","Venezuela",
205
+ "Virgin Islands, British","Virgin Islands, U.S.","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Yemen","Mayotte","Serbia","South Africa",
206
+ "Zambia","Montenegro","Zimbabwe","Anonymous Proxy","Satellite Provider","Other","Aland Islands","Guernsey","Isle of Man","Jersey",
207
+ "Saint Barthelemy","Saint Martin", "Bonaire, Saint Eustatius and Saba"
208
+ );
209
+
210
+ var $GEOIP_CONTINENT_CODES = array(
211
+ "--", "AS","EU","EU","AS","AS","NA","NA","EU","AS","NA",
212
+ "AF","AN","SA","OC","EU","OC","NA","AS","EU","NA",
213
+ "AS","EU","AF","EU","AS","AF","AF","NA","AS","SA",
214
+ "SA","NA","AS","AN","AF","EU","NA","NA","AS","AF",
215
+ "AF","AF","EU","AF","OC","SA","AF","AS","SA","NA",
216
+ "NA","AF","AS","AS","EU","EU","AF","EU","NA","NA",
217
+ "AF","SA","EU","AF","AF","AF","EU","AF","EU","OC",
218
+ "SA","OC","EU","EU","NA","AF","EU","NA","AS","SA",
219
+ "AF","EU","NA","AF","AF","NA","AF","EU","AN","NA",
220
+ "OC","AF","SA","AS","AN","NA","EU","NA","EU","AS",
221
+ "EU","AS","AS","AS","AS","AS","EU","EU","NA","AS",
222
+ "AS","AF","AS","AS","OC","AF","NA","AS","AS","AS",
223
+ "NA","AS","AS","AS","NA","EU","AS","AF","AF","EU",
224
+ "EU","EU","AF","AF","EU","EU","AF","OC","EU","AF",
225
+ "AS","AS","AS","OC","NA","AF","NA","EU","AF","AS",
226
+ "AF","NA","AS","AF","AF","OC","AF","OC","AF","NA",
227
+ "EU","EU","AS","OC","OC","OC","AS","NA","SA","OC",
228
+ "OC","AS","AS","EU","NA","OC","NA","AS","EU","OC",
229
+ "SA","AS","AF","EU","EU","AF","AS","OC","AF","AF",
230
+ "EU","AS","AF","EU","EU","EU","AF","EU","AF","AF",
231
+ "SA","AF","NA","AS","AF","NA","AF","AN","AF","AS",
232
+ "AS","OC","AS","AF","OC","AS","EU","NA","OC","AS",
233
+ "AF","EU","AF","OC","NA","SA","AS","EU","NA","SA",
234
+ "NA","NA","AS","OC","OC","OC","AS","AF","EU","AF",
235
+ "AF","EU","AF","--","--","--","EU","EU","EU","EU",
236
+ "NA","NA","NA"
237
+ );
238
+
239
+ }
240
+ function cpd_geoip_load_shared_mem ($file) {
241
+
242
+ $fp = fopen($file, "rb");
243
+ if (!$fp) {
244
+ print "error opening $file: $php_errormsg\n";
245
+ exit;
246
+ }
247
+ $s_array = fstat($fp);
248
+ $size = $s_array['size'];
249
+ if ($shmid = @shmop_open (GEOIP_SHM_KEY, "w", 0, 0)) {
250
+ shmop_delete ($shmid);
251
+ shmop_close ($shmid);
252
+ }
253
+ $shmid = shmop_open (GEOIP_SHM_KEY, "c", 0644, $size);
254
+ shmop_write ($shmid, fread($fp, $size), 0);
255
+ shmop_close ($shmid);
256
+ }
257
+
258
+ function cpd_setup_segments($gi){
259
+ $gi->databaseType = GEOIP_COUNTRY_EDITION;
260
+ $gi->record_length = STANDARD_RECORD_LENGTH;
261
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
262
+ $offset = @shmop_size ($gi->shmid) - 3;
263
+ for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
264
+ $delim = @shmop_read ($gi->shmid, $offset, 3);
265
+ $offset += 3;
266
+ if ($delim == (chr(255).chr(255).chr(255))) {
267
+ $gi->databaseType = ord(@shmop_read ($gi->shmid, $offset, 1));
268
+ $offset++;
269
+
270
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
271
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
272
+ } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
273
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
274
+ } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)||
275
+ ($gi->databaseType == GEOIP_CITY_EDITION_REV1)
276
+ || ($gi->databaseType == GEOIP_ORG_EDITION)
277
+ || ($gi->databaseType == GEOIP_ORG_EDITION_V6)
278
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION)
279
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
280
+ || ($gi->databaseType == GEOIP_ISP_EDITION)
281
+ || ($gi->databaseType == GEOIP_ISP_EDITION_V6)
282
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION)
283
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6)
284
+ || ($gi->databaseType == GEOIP_LOCATIONA_EDITION)
285
+ || ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION)
286
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
287
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
288
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1)
289
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6)
290
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION)
291
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){
292
+ $gi->databaseSegments = 0;
293
+ $buf = @shmop_read ($gi->shmid, $offset, SEGMENT_RECORD_LENGTH);
294
+ for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
295
+ $gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
296
+ }
297
+ if (($gi->databaseType == GEOIP_ORG_EDITION)
298
+ || ($gi->databaseType == GEOIP_ORG_EDITION_V6)
299
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION)
300
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
301
+ || ($gi->databaseType == GEOIP_ISP_EDITION)
302
+ || ($gi->databaseType == GEOIP_ISP_EDITION_V6)) {
303
+ $gi->record_length = ORG_RECORD_LENGTH;
304
+ }
305
+ }
306
+ break;
307
+ } else {
308
+ $offset -= 4;
309
+ }
310
+ }
311
+ if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
312
+ ($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)||
313
+ ($gi->databaseType == GEOIP_PROXY_EDITION)||
314
+ ($gi->databaseType == GEOIP_NETSPEED_EDITION)){
315
+ $gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
316
+ }
317
+ } else {
318
+ $filepos = ftell($gi->filehandle);
319
+ fseek($gi->filehandle, -3, SEEK_END);
320
+ for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
321
+ $delim = fread($gi->filehandle,3);
322
+ if ($delim == (chr(255).chr(255).chr(255))){
323
+ $gi->databaseType = ord(fread($gi->filehandle,1));
324
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
325
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
326
+ }
327
+ else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
328
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
329
+ } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)
330
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1)
331
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
332
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
333
+ || ($gi->databaseType == GEOIP_ORG_EDITION)
334
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION)
335
+ || ($gi->databaseType == GEOIP_ISP_EDITION)
336
+ || ($gi->databaseType == GEOIP_ORG_EDITION_V6)
337
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
338
+ || ($gi->databaseType == GEOIP_ISP_EDITION_V6)
339
+ || ($gi->databaseType == GEOIP_LOCATIONA_EDITION)
340
+ || ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION)
341
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
342
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
343
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1)
344
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6)
345
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION)
346
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6)
347
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION)
348
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){
349
+ $gi->databaseSegments = 0;
350
+ $buf = fread($gi->filehandle,SEGMENT_RECORD_LENGTH);
351
+ for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
352
+ $gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
353
+ }
354
+ if ( ( $gi->databaseType == GEOIP_ORG_EDITION )
355
+ || ( $gi->databaseType == GEOIP_DOMAIN_EDITION )
356
+ || ( $gi->databaseType == GEOIP_ISP_EDITION )
357
+ || ( $gi->databaseType == GEOIP_ORG_EDITION_V6 )
358
+ || ( $gi->databaseType == GEOIP_DOMAIN_EDITION_V6 )
359
+ || ( $gi->databaseType == GEOIP_ISP_EDITION_V6 )) {
360
+ $gi->record_length = ORG_RECORD_LENGTH;
361
+ }
362
+ }
363
+ break;
364
+ } else {
365
+ fseek($gi->filehandle, -4, SEEK_CUR);
366
+ }
367
+ }
368
+ if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
369
+ ($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)||
370
+ ($gi->databaseType == GEOIP_PROXY_EDITION)||
371
+ ($gi->databaseType == GEOIP_NETSPEED_EDITION)){
372
+ $gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
373
+ }
374
+ fseek($gi->filehandle,$filepos,SEEK_SET);
375
+ }
376
+ return $gi;
377
+ }
378
+
379
+ function cpd_geoip_open($filename, $flags) {
380
+ $gi = new GeoIPCpD;
381
+ $gi->flags = $flags;
382
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
383
+ $gi->shmid = @shmop_open (GEOIP_SHM_KEY, "a", 0, 0);
384
+ } else {
385
+ $gi->filehandle = fopen($filename,"rb") or die( "Can not open $filename\n" );
386
+ if ($gi->flags & GEOIP_MEMORY_CACHE) {
387
+ $s_array = fstat($gi->filehandle);
388
+ $gi->memory_buffer = fread($gi->filehandle, $s_array['size']);
389
+ }
390
+ }
391
+
392
+ $gi = cpd_setup_segments($gi);
393
+ return $gi;
394
+ }
395
+
396
+ function cpd_geoip_close($gi) {
397
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
398
+ return true;
399
+ }
400
+
401
+ return fclose($gi->filehandle);
402
+ }
403
+
404
+ function cpd_geoip_country_id_by_name_v6($gi, $name) {
405
+ $rec = dns_get_record($name, DNS_AAAA);
406
+ if ( !$rec ) {
407
+ return false;
408
+ }
409
+ $addr = $rec[0]["ipv6"];
410
+ if (!$addr || $addr == $name) {
411
+ return false;
412
+ }
413
+ return cpd_geoip_country_id_by_addr_v6($gi, $addr);
414
+ }
415
+
416
+ function cpd_geoip_country_id_by_name($gi, $name) {
417
+ $addr = gethostbyname($name);
418
+ if (!$addr || $addr == $name) {
419
+ return false;
420
+ }
421
+ return cpd_geoip_country_id_by_addr($gi, $addr);
422
+ }
423
+
424
+ function cpd_geoip_country_code_by_name_v6($gi, $name) {
425
+ $country_id = cpd_geoip_country_id_by_name_v6($gi,$name);
426
+ if ($country_id !== false) {
427
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
428
+ }
429
+ return false;
430
+ }
431
+
432
+ function cpd_geoip_country_code_by_name($gi, $name) {
433
+ $country_id = cpd_geoip_country_id_by_name($gi,$name);
434
+ if ($country_id !== false) {
435
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
436
+ }
437
+ return false;
438
+ }
439
+
440
+ function cpd_geoip_country_name_by_name_v6($gi, $name) {
441
+ $country_id = cpd_geoip_country_id_by_name_v6($gi,$name);
442
+ if ($country_id !== false) {
443
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
444
+ }
445
+ return false;
446
+ }
447
+
448
+ function cpd_geoip_country_name_by_name($gi, $name) {
449
+ $country_id = cpd_geoip_country_id_by_name($gi,$name);
450
+ if ($country_id !== false) {
451
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
452
+ }
453
+ return false;
454
+ }
455
+
456
+ function cpd_geoip_country_id_by_addr_v6($gi, $addr) {
457
+ $ipnum = inet_pton($addr);
458
+ return cpd_geoip_seek_country_v6($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
459
+ }
460
+
461
+ function cpd_geoip_country_id_by_addr($gi, $addr) {
462
+ $ipnum = ip2long($addr);
463
+ return cpd_geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
464
+ }
465
+
466
+ function cpd_geoip_country_code_by_addr_v6($gi, $addr) {
467
+ $country_id = cpd_geoip_country_id_by_addr_v6($gi,$addr);
468
+ if ($country_id !== false) {
469
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
470
+ }
471
+ return false;
472
+ }
473
+
474
+ function cpd_geoip_country_code_by_addr($gi, $addr) {
475
+ if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
476
+ $record = cpd_geoip_record_by_addr($gi,$addr);
477
+ if ( $record !== false ) {
478
+ return $record->country_code;
479
+ }
480
+ } else {
481
+ $country_id = cpd_geoip_country_id_by_addr($gi,$addr);
482
+ if ($country_id !== false) {
483
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
484
+ }
485
+ }
486
+ return false;
487
+ }
488
+
489
+ function cpd_geoip_country_name_by_addr_v6($gi, $addr) {
490
+ $country_id = cpd_geoip_country_id_by_addr_v6($gi,$addr);
491
+ if ($country_id !== false) {
492
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
493
+ }
494
+ return false;
495
+ }
496
+
497
+ function cpd_geoip_country_name_by_addr($gi, $addr) {
498
+ if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
499
+ $record = cpd_geoip_record_by_addr($gi,$addr);
500
+ return $record->country_name;
501
+ } else {
502
+ $country_id = cpd_geoip_country_id_by_addr($gi,$addr);
503
+ if ($country_id !== false) {
504
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
505
+ }
506
+ }
507
+ return false;
508
+ }
509
+
510
+ function cpd_geoip_seek_country_v6($gi, $ipnum) {
511
+
512
+ # arrays from unpack start with offset 1
513
+ # yet another php mystery. array_merge work around
514
+ # this broken behaviour
515
+ $v6vec = array_merge(unpack( "C16", $ipnum));
516
+
517
+ $offset = 0;
518
+ for ($depth = 127; $depth >= 0; --$depth) {
519
+ if ($gi->flags & GEOIP_MEMORY_CACHE) {
520
+ // workaround php's broken substr, strpos, etc handling with
521
+ // mbstring.func_overload and mbstring.internal_encoding
522
+ $enc = mb_internal_encoding();
523
+ mb_internal_encoding('ISO-8859-1');
524
+
525
+ $buf = substr($gi->memory_buffer,
526
+ 2 * $gi->record_length * $offset,
527
+ 2 * $gi->record_length);
528
+
529
+ mb_internal_encoding($enc);
530
+ } elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
531
+ $buf = @shmop_read ($gi->shmid,
532
+ 2 * $gi->record_length * $offset,
533
+ 2 * $gi->record_length );
534
+ } else {
535
+ fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
536
+ or die("fseek failed");
537
+ $buf = fread($gi->filehandle, 2 * $gi->record_length);
538
+ }
539
+ $x = array(0,0);
540
+ for ($i = 0; $i < 2; ++$i) {
541
+ for ($j = 0; $j < $gi->record_length; ++$j) {
542
+ $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
543
+ }
544
+ }
545
+
546
+ $bnum = 127 - $depth;
547
+ $idx = $bnum >> 3;
548
+ $b_mask = 1 << ( $bnum & 7 ^ 7 );
549
+ if (($v6vec[$idx] & $b_mask) > 0) {
550
+ if ($x[1] >= $gi->databaseSegments) {
551
+ return $x[1];
552
+ }
553
+ $offset = $x[1];
554
+ } else {
555
+ if ($x[0] >= $gi->databaseSegments) {
556
+ return $x[0];
557
+ }
558
+ $offset = $x[0];
559
+ }
560
+ }
561
+ trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
562
+ return false;
563
+ }
564
+
565
+ function cpd_geoip_seek_country($gi, $ipnum) {
566
+ $offset = 0;
567
+ for ($depth = 31; $depth >= 0; --$depth) {
568
+ if ($gi->flags & GEOIP_MEMORY_CACHE) {
569
+ // workaround php's broken substr, strpos, etc handling with
570
+ // mbstring.func_overload and mbstring.internal_encoding
571
+ $enc = mb_internal_encoding();
572
+ mb_internal_encoding('ISO-8859-1');
573
+
574
+ $buf = substr($gi->memory_buffer,
575
+ 2 * $gi->record_length * $offset,
576
+ 2 * $gi->record_length);
577
+
578
+ mb_internal_encoding($enc);
579
+ } elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
580
+ $buf = @shmop_read ($gi->shmid,
581
+ 2 * $gi->record_length * $offset,
582
+ 2 * $gi->record_length );
583
+ } else {
584
+ fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
585
+ or die("fseek failed");
586
+ $buf = fread($gi->filehandle, 2 * $gi->record_length);
587
+ }
588
+ $x = array(0,0);
589
+ for ($i = 0; $i < 2; ++$i) {
590
+ for ($j = 0; $j < $gi->record_length; ++$j) {
591
+ $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
592
+ }
593
+ }
594
+ if ($ipnum & (1 << $depth)) {
595
+ if ($x[1] >= $gi->databaseSegments) {
596
+ return $x[1];
597
+ }
598
+ $offset = $x[1];
599
+ } else {
600
+ if ($x[0] >= $gi->databaseSegments) {
601
+ return $x[0];
602
+ }
603
+ $offset = $x[0];
604
+ }
605
+ }
606
+ trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
607
+ return false;
608
+ }
609
+
610
+ function cpd_common_get_org($gi, $seek_org){
611
+ $record_pointer = $seek_org + (2 * $gi->record_length - 1) * $gi->databaseSegments;
612
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
613
+ $org_buf = @shmop_read ($gi->shmid, $record_pointer, MAX_ORG_RECORD_LENGTH);
614
+ } else {
615
+ fseek($gi->filehandle, $record_pointer, SEEK_SET);
616
+ $org_buf = fread($gi->filehandle,MAX_ORG_RECORD_LENGTH);
617
+ }
618
+ // workaround php's broken substr, strpos, etc handling with
619
+ // mbstring.func_overload and mbstring.internal_encoding
620
+ $enc = mb_internal_encoding();
621
+ mb_internal_encoding('ISO-8859-1');
622
+ $org_buf = substr($org_buf, 0, strpos($org_buf, "\0"));
623
+ mb_internal_encoding($enc);
624
+ return $org_buf;
625
+ }
626
+
627
+ function cpd_get_org_v6($gi,$ipnum){
628
+ $seek_org = cpd_geoip_seek_country_v6($gi,$ipnum);
629
+ if ($seek_org == $gi->databaseSegments) {
630
+ return NULL;
631
+ }
632
+ return cpd_common_get_org($gi, $seek_org);
633
+ }
634
+
635
+ function cpd_get_org($gi,$ipnum){
636
+ $seek_org = cpd_geoip_seek_country($gi,$ipnum);
637
+ if ($seek_org == $gi->databaseSegments) {
638
+ return NULL;
639
+ }
640
+ return cpd_common_get_org($gi, $seek_org);
641
+ }
642
+
643
+
644
+
645
+ function cpd_geoip_name_by_addr_v6 ($gi,$addr) {
646
+ if ($addr == NULL) {
647
+ return 0;
648
+ }
649
+ $ipnum = inet_pton($addr);
650
+ return cpd_get_org_v6($gi, $ipnum);
651
+ }
652
+
653
+ function cpd_geoip_name_by_addr ($gi,$addr) {
654
+ if ($addr == NULL) {
655
+ return 0;
656
+ }
657
+ $ipnum = ip2long($addr);
658
+ return cpd_get_org($gi, $ipnum);
659
+ }
660
+
661
+ function cpd_geoip_org_by_addr ($gi,$addr) {
662
+ return cpd_geoip_name_by_addr($gi, $addr);
663
+ }
664
+
665
+ function cpd_get_region($gi,$ipnum){
666
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
667
+ $seek_region = cpd_geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0;
668
+ if ($seek_region >= 1000){
669
+ $country_code = "US";
670
+ $region = chr(($seek_region - 1000)/26 + 65) . chr(($seek_region - 1000)%26 + 65);
671
+ } else {
672
+ $country_code = $gi->GEOIP_COUNTRY_CODES[$seek_region];
673
+ $region = "";
674
+ }
675
+ return array ($country_code,$region);
676
+ } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1) {
677
+ $seek_region = cpd_geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV1;
678
+ //print $seek_region;
679
+ if ($seek_region < US_OFFSET){
680
+ $country_code = "";
681
+ $region = "";
682
+ } else if ($seek_region < CANADA_OFFSET) {
683
+ $country_code = "US";
684
+ $region = chr(($seek_region - US_OFFSET)/26 + 65) . chr(($seek_region - US_OFFSET)%26 + 65);
685
+ } else if ($seek_region < WORLD_OFFSET) {
686
+ $country_code = "CA";
687
+ $region = chr(($seek_region - CANADA_OFFSET)/26 + 65) . chr(($seek_region - CANADA_OFFSET)%26 + 65);
688
+ } else {
689
+ $country_code = $gi->GEOIP_COUNTRY_CODES[($seek_region - WORLD_OFFSET) / FIPS_RANGE];
690
+ $region = "";
691
+ }
692
+ return array ($country_code,$region);
693
+ }
694
+ }
695
+
696
+ function cpd_geoip_region_by_addr ($gi,$addr) {
697
+ if ($addr == NULL) {
698
+ return 0;
699
+ }
700
+ $ipnum = ip2long($addr);
701
+ return cpd_get_region($gi, $ipnum);
702
+ }
703
+
704
+ function cpd_getdnsattributes ($l,$ip){
705
+ $r = new Net_DNS_Resolver();
706
+ $r->nameservers = array("ws1.maxmind.com");
707
+ $p = $r->search($l."." . $ip .".s.maxmind.com","TXT","IN");
708
+ $str = is_object($p->answer[0])?$p->answer[0]->string():'';
709
+ $str = substr( $str, 1, -1 );
710
+ return $str;
711
+ }
712
+
713
+ ?>
geoip/geoip.php CHANGED
@@ -1,121 +1,121 @@
1
- <?php
2
- /**
3
- * Filename: geoip.php
4
- * Count Per Day - GeoIP Addon
5
- */
6
-
7
- /**
8
- */
9
- if (!class_exists('GeoIpCpD'))
10
- include_once('geoip.inc');
11
-
12
- class CpdGeoIp
13
- {
14
-
15
- /**
16
- * gets country of ip adress
17
- * @param $ip IP
18
- * @return array e.g. ( 'de', image div , 'Germany' )
19
- */
20
- function getCountry( $ip )
21
- {
22
- global $cpd_path;
23
-
24
- $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
25
- $c = strtolower(cpd_geoip_country_code_by_addr($gi, $ip));
26
-
27
- if ( empty($c) )
28
- $c = 'unknown';
29
- $cname = cpd_geoip_country_name_by_addr($gi, $ip);
30
- $country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
31
- cpd_geoip_close($gi);
32
-
33
- return $country;
34
- }
35
-
36
- /**
37
- * updates CountPerDay table
38
- */
39
- function updateDB()
40
- {
41
- global $count_per_day, $cpd_path, $wpdb;
42
-
43
- $count_per_day->mysqlQuery('rows', "SELECT country FROM $wpdb->cpd_counter LIMIT 1", 'GeoIP updateDB Table '.__LINE__);
44
- if ((int) mysql_errno() == 1054)
45
- // add row "country" to table
46
- $count_per_day->mysqlQuery('', "ALTER TABLE $wpdb->cpd_counter ADD `country` CHAR( 2 ) NOT NULL", 'GeoIP updateDB create column '.__LINE__);
47
-
48
- $limit = 20;
49
- $res = $count_per_day->mysqlQuery('rows', "SELECT ip, $count_per_day->ntoa(ip) realip FROM $wpdb->cpd_counter WHERE country LIKE '' GROUP BY ip LIMIT $limit", 'GeoIP updateDB '.__LINE__);
50
- $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
51
-
52
- foreach ($res as $r)
53
- {
54
- $c = '';
55
- $ip = explode('.', $r->realip);
56
- if ( $ip[0] == 10
57
- || $ip[0] == 127
58
- || ($ip[0] == 169 && $ip[1] == 254)
59
- || ($ip[0] == 172 && $ip[1] >= 16 && $ip[1] <= 31)
60
- || ($ip[0] == 192 && $ip[1] == 168) )
61
- // set local IPs to '-'
62
- $c = '-';
63
- else
64
- // get country
65
- $c = strtolower(cpd_geoip_country_code_by_addr($gi, $r->realip));
66
-
67
- if ( !empty($c) )
68
- $count_per_day->mysqlQuery('', "UPDATE $wpdb->cpd_counter SET country = '$c' WHERE ip = '$r->ip'", 'GeoIP updateDB '.__LINE__);
69
- }
70
-
71
- cpd_geoip_close($gi);
72
-
73
- $rest = $count_per_day->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE country like ''", 'GeoIP updateDB '.__LINE__);
74
- return (int) $rest;
75
- }
76
-
77
- /**
78
- * updates the GeoIP database file
79
- * works only if directory geoip has rights 777, set it in ftp client
80
- */
81
- function updateGeoIpFile()
82
- {
83
- global $cpd_path;
84
-
85
- // function checks
86
- if ( !ini_get('allow_url_fopen') )
87
- return 'Sorry, <code>allow_url_fopen</code> is disabled!';
88
-
89
- if ( !function_exists('gzopen') )
90
- return __('Sorry, necessary functions (zlib) not installed or enabled in php.ini.', 'cpd');
91
-
92
- $gzfile = 'http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz';
93
- $file = $cpd_path.'/geoip/GeoIP.dat';
94
-
95
- // get remote file
96
- $h = gzopen($gzfile, 'rb');
97
- $content = gzread($h, 1500000);
98
- fclose($h);
99
-
100
- // delete local file
101
- if (is_file($file))
102
- unlink($file);
103
-
104
- // file deleted?
105
- $del = (is_file($file)) ? 0 : 1;
106
-
107
- // write new locale file
108
- $h = fopen($file, 'wb');
109
- fwrite($h, $content);
110
- fclose($h);
111
-
112
- @chmod($file, 0755);
113
- if (is_file($file) && $del)
114
- return __('New GeoIP database installed.', 'cpd');
115
- else
116
- return __('Sorry, an error occurred. Try again or check the access rights of directory "geoip" is 777.', 'cpd');
117
- }
118
-
119
-
120
- }
121
  ?>
1
+ <?php
2
+ /**
3
+ * Filename: geoip.php
4
+ * Count Per Day - GeoIP Addon
5
+ */
6
+
7
+ /**
8
+ */
9
+ if (!class_exists('GeoIpCpD'))
10
+ include_once('geoip.inc');
11
+
12
+ class CpdGeoIp
13
+ {
14
+
15
+ /**
16
+ * gets country of ip adress
17
+ * @param $ip IP
18
+ * @return array e.g. ( 'de', image div , 'Germany' )
19
+ */
20
+ function getCountry( $ip )
21
+ {
22
+ global $cpd_path;
23
+
24
+ $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
25
+ $c = strtolower(cpd_geoip_country_code_by_addr($gi, $ip));
26
+
27
+ if ( empty($c) )
28
+ $c = 'unknown';
29
+ $cname = cpd_geoip_country_name_by_addr($gi, $ip);
30
+ $country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
31
+ cpd_geoip_close($gi);
32
+
33
+ return $country;
34
+ }
35
+
36
+ /**
37
+ * updates CountPerDay table
38
+ */
39
+ function updateDB()
40
+ {
41
+ global $count_per_day, $cpd_path, $wpdb;
42
+
43
+ $count_per_day->mysqlQuery('rows', "SELECT country FROM $wpdb->cpd_counter LIMIT 1", 'GeoIP updateDB Table '.__LINE__);
44
+ if ((int) mysql_errno() == 1054)
45
+ // add row "country" to table
46
+ $count_per_day->mysqlQuery('', "ALTER TABLE $wpdb->cpd_counter ADD `country` CHAR( 2 ) NOT NULL", 'GeoIP updateDB create column '.__LINE__);
47
+
48
+ $limit = 20;
49
+ $res = $count_per_day->mysqlQuery('rows', "SELECT ip, $count_per_day->ntoa(ip) realip FROM $wpdb->cpd_counter WHERE country LIKE '' GROUP BY ip LIMIT $limit", 'GeoIP updateDB '.__LINE__);
50
+ $gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
51
+
52
+ foreach ($res as $r)
53
+ {
54
+ $c = '';
55
+ $ip = explode('.', $r->realip);
56
+ if ( $ip[0] == 10
57
+ || $ip[0] == 127
58
+ || ($ip[0] == 169 && $ip[1] == 254)
59
+ || ($ip[0] == 172 && $ip[1] >= 16 && $ip[1] <= 31)
60
+ || ($ip[0] == 192 && $ip[1] == 168) )
61
+ // set local IPs to '-'
62
+ $c = '-';
63
+ else
64
+ // get country
65
+ $c = strtolower(cpd_geoip_country_code_by_addr($gi, $r->realip));
66
+
67
+ if ( !empty($c) )
68
+ $count_per_day->mysqlQuery('', "UPDATE $wpdb->cpd_counter SET country = '$c' WHERE ip = '$r->ip'", 'GeoIP updateDB '.__LINE__);
69
+ }
70
+
71
+ cpd_geoip_close($gi);
72
+
73
+ $rest = $count_per_day->mysqlQuery('var', "SELECT COUNT(*) FROM $wpdb->cpd_counter WHERE country like ''", 'GeoIP updateDB '.__LINE__);
74
+ return (int) $rest;
75
+ }
76
+
77
+ /**
78
+ * updates the GeoIP database file
79
+ * works only if directory geoip has rights 777, set it in ftp client
80
+ */
81
+ function updateGeoIpFile()
82
+ {
83
+ global $cpd_path;
84
+
85
+ // function checks
86
+ if ( !ini_get('allow_url_fopen') )
87
+ return 'Sorry, <code>allow_url_fopen</code> is disabled!';
88
+
89
+ if ( !function_exists('gzopen') )
90
+ return __('Sorry, necessary functions (zlib) not installed or enabled in php.ini.', 'cpd');
91
+
92
+ $gzfile = 'http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz';
93
+ $file = $cpd_path.'/geoip/GeoIP.dat';
94
+
95
+ // get remote file
96
+ $h = gzopen($gzfile, 'rb');
97
+ $content = gzread($h, 1500000);
98
+ fclose($h);
99
+
100
+ // delete local file
101
+ if (is_file($file))
102
+ unlink($file);
103
+
104
+ // file deleted?
105
+ $del = (is_file($file)) ? 0 : 1;
106
+
107
+ // write new locale file
108
+ $h = fopen($file, 'wb');
109
+ fwrite($h, $content);
110
+ fclose($h);
111
+
112
+ @chmod($file, 0755);
113
+ if (is_file($file) && $del)
114
+ return __('New GeoIP database installed.', 'cpd');
115
+ else
116
+ return __('Sorry, an error occurred. Try again or check the access rights of directory "geoip" is 777.', 'cpd');
117
+ }
118
+
119
+
120
+ }
121
  ?>
js/jquery.flot.min.js CHANGED
@@ -1,6 +1,6 @@
1
- /* Javascript plotting library for jQuery, v. 0.7.
2
- *
3
- * Released under the MIT license by IOLA, December 2007.
4
- *
5
- */
6
  (function(b){b.color={};b.color.make=function(d,e,g,f){var c={};c.r=d||0;c.g=e||0;c.b=g||0;c.a=f!=null?f:1;c.add=function(h,j){for(var k=0;k<h.length;++k){c[h.charAt(k)]+=j}return c.normalize()};c.scale=function(h,j){for(var k=0;k<h.length;++k){c[h.charAt(k)]*=j}return c.normalize()};c.toString=function(){if(c.a>=1){return"rgb("+[c.r,c.g,c.b].join(",")+")"}else{return"rgba("+[c.r,c.g,c.b,c.a].join(",")+")"}};c.normalize=function(){function h(k,j,l){return j<k?k:(j>l?l:j)}c.r=h(0,parseInt(c.r),255);c.g=h(0,parseInt(c.g),255);c.b=h(0,parseInt(c.b),255);c.a=h(0,c.a,1);return c};c.clone=function(){return b.color.make(c.r,c.b,c.g,c.a)};return c.normalize()};b.color.extract=function(d,e){var c;do{c=d.css(e).toLowerCase();if(c!=""&&c!="transparent"){break}d=d.parent()}while(!b.nodeName(d.get(0),"body"));if(c=="rgba(0, 0, 0, 0)"){c="transparent"}return b.color.parse(c)};b.color.parse=function(c){var d,f=b.color.make;if(d=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c)){return f(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10))}if(d=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c)){return f(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10),parseFloat(d[4]))}if(d=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c)){return f(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55)}if(d=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c)){return f(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55,parseFloat(d[4]))}if(d=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c)){return f(parseInt(d[1],16),parseInt(d[2],16),parseInt(d[3],16))}if(d=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c)){return f(parseInt(d[1]+d[1],16),parseInt(d[2]+d[2],16),parseInt(d[3]+d[3],16))}var e=b.trim(c).toLowerCase();if(e=="transparent"){return f(255,255,255,0)}else{d=a[e]||[0,0,0];return f(d[0],d[1],d[2])}};var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);(function(c){function b(av,ai,J,af){var Q=[],O={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:true,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:0.85},xaxis:{show:null,position:"bottom",mode:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null,monthNames:null,timeformat:null,twelveHourClock:false},yaxis:{autoscaleMargin:0.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:false,fillColor:null,steps:false},bars:{show:false,lineWidth:2,barWidth:1,fill:true,fillColor:null,align:"left",horizontal:false},shadowSize:3},grid:{show:true,aboveData:false,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},hooks:{}},az=null,ad=null,y=null,H=null,A=null,p=[],aw=[],q={left:0,right:0,top:0,bottom:0},G=0,I=0,h=0,w=0,ak={processOptions:[],processRawData:[],processDatapoints:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},aq=this;aq.setData=aj;aq.setupGrid=t;aq.draw=W;aq.getPlaceholder=function(){return av};aq.getCanvas=function(){return az};aq.getPlotOffset=function(){return q};aq.width=function(){return h};aq.height=function(){return w};aq.offset=function(){var aB=y.offset();aB.left+=q.left;aB.top+=q.top;return aB};aq.getData=function(){return Q};aq.getAxes=function(){var aC={},aB;c.each(p.concat(aw),function(aD,aE){if(aE){aC[aE.direction+(aE.n!=1?aE.n:"")+"axis"]=aE}});return aC};aq.getXAxes=function(){return p};aq.getYAxes=function(){return aw};aq.c2p=C;aq.p2c=ar;aq.getOptions=function(){return O};aq.highlight=x;aq.unhighlight=T;aq.triggerRedrawOverlay=f;aq.pointOffset=function(aB){return{left:parseInt(p[aA(aB,"x")-1].p2c(+aB.x)+q.left),top:parseInt(aw[aA(aB,"y")-1].p2c(+aB.y)+q.top)}};aq.shutdown=ag;aq.resize=function(){B();g(az);g(ad)};aq.hooks=ak;F(aq);Z(J);X();aj(ai);t();W();ah();function an(aD,aB){aB=[aq].concat(aB);for(var aC=0;aC<aD.length;++aC){aD[aC].apply(this,aB)}}function F(){for(var aB=0;aB<af.length;++aB){var aC=af[aB];aC.init(aq);if(aC.options){c.extend(true,O,aC.options)}}}function Z(aC){var aB;c.extend(true,O,aC);if(O.xaxis.color==null){O.xaxis.color=O.grid.color}if(O.yaxis.color==null){O.yaxis.color=O.grid.color}if(O.xaxis.tickColor==null){O.xaxis.tickColor=O.grid.tickColor}if(O.yaxis.tickColor==null){O.yaxis.tickColor=O.grid.tickColor}if(O.grid.borderColor==null){O.grid.borderColor=O.grid.color}if(O.grid.tickColor==null){O.grid.tickColor=c.color.parse(O.grid.color).scale("a",0.22).toString()}for(aB=0;aB<Math.max(1,O.xaxes.length);++aB){O.xaxes[aB]=c.extend(true,{},O.xaxis,O.xaxes[aB])}for(aB=0;aB<Math.max(1,O.yaxes.length);++aB){O.yaxes[aB]=c.extend(true,{},O.yaxis,O.yaxes[aB])}if(O.xaxis.noTicks&&O.xaxis.ticks==null){O.xaxis.ticks=O.xaxis.noTicks}if(O.yaxis.noTicks&&O.yaxis.ticks==null){O.yaxis.ticks=O.yaxis.noTicks}if(O.x2axis){O.xaxes[1]=c.extend(true,{},O.xaxis,O.x2axis);O.xaxes[1].position="top"}if(O.y2axis){O.yaxes[1]=c.extend(true,{},O.yaxis,O.y2axis);O.yaxes[1].position="right"}if(O.grid.coloredAreas){O.grid.markings=O.grid.coloredAreas}if(O.grid.coloredAreasColor){O.grid.markingsColor=O.grid.coloredAreasColor}if(O.lines){c.extend(true,O.series.lines,O.lines)}if(O.points){c.extend(true,O.series.points,O.points)}if(O.bars){c.extend(true,O.series.bars,O.bars)}if(O.shadowSize!=null){O.series.shadowSize=O.shadowSize}for(aB=0;aB<O.xaxes.length;++aB){V(p,aB+1).options=O.xaxes[aB]}for(aB=0;aB<O.yaxes.length;++aB){V(aw,aB+1).options=O.yaxes[aB]}for(var aD in ak){if(O.hooks[aD]&&O.hooks[aD].length){ak[aD]=ak[aD].concat(O.hooks[aD])}}an(ak.processOptions,[O])}function aj(aB){Q=Y(aB);ax();z()}function Y(aE){var aC=[];for(var aB=0;aB<aE.length;++aB){var aD=c.extend(true,{},O.series);if(aE[aB].data!=null){aD.data=aE[aB].data;delete aE[aB].data;c.extend(true,aD,aE[aB]);aE[aB].data=aD.data}else{aD.data=aE[aB]}aC.push(aD)}return aC}function aA(aC,aD){var aB=aC[aD+"axis"];if(typeof aB=="object"){aB=aB.n}if(typeof aB!="number"){aB=1}return aB}function m(){return c.grep(p.concat(aw),function(aB){return aB})}function C(aE){var aC={},aB,aD;for(aB=0;aB<p.length;++aB){aD=p[aB];if(aD&&aD.used){aC["x"+aD.n]=aD.c2p(aE.left)}}for(aB=0;aB<aw.length;++aB){aD=aw[aB];if(aD&&aD.used){aC["y"+aD.n]=aD.c2p(aE.top)}}if(aC.x1!==undefined){aC.x=aC.x1}if(aC.y1!==undefined){aC.y=aC.y1}return aC}function ar(aF){var aD={},aC,aE,aB;for(aC=0;aC<p.length;++aC){aE=p[aC];if(aE&&aE.used){aB="x"+aE.n;if(aF[aB]==null&&aE.n==1){aB="x"}if(aF[aB]!=null){aD.left=aE.p2c(aF[aB]);break}}}for(aC=0;aC<aw.length;++aC){aE=aw[aC];if(aE&&aE.used){aB="y"+aE.n;if(aF[aB]==null&&aE.n==1){aB="y"}if(aF[aB]!=null){aD.top=aE.p2c(aF[aB]);break}}}return aD}function V(aC,aB){if(!aC[aB-1]){aC[aB-1]={n:aB,direction:aC==p?"x":"y",options:c.extend(true,{},aC==p?O.xaxis:O.yaxis)}}return aC[aB-1]}function ax(){var aG;var aM=Q.length,aB=[],aE=[];for(aG=0;aG<Q.length;++aG){var aJ=Q[aG].color;if(aJ!=null){--aM;if(typeof aJ=="number"){aE.push(aJ)}else{aB.push(c.color.parse(Q[aG].color))}}}for(aG=0;aG<aE.length;++aG){aM=Math.max(aM,aE[aG]+1)}var aC=[],aF=0;aG=0;while(aC.length<aM){var aI;if(O.colors.length==aG){aI=c.color.make(100,100,100)}else{aI=c.color.parse(O.colors[aG])}var aD=aF%2==1?-1:1;aI.scale("rgb",1+aD*Math.ceil(aF/2)*0.2);aC.push(aI);++aG;if(aG>=O.colors.length){aG=0;++aF}}var aH=0,aN;for(aG=0;aG<Q.length;++aG){aN=Q[aG];if(aN.color==null){aN.color=aC[aH].toString();++aH}else{if(typeof aN.color=="number"){aN.color=aC[aN.color].toString()}}if(aN.lines.show==null){var aL,aK=true;for(aL in aN){if(aN[aL]&&aN[aL].show){aK=false;break}}if(aK){aN.lines.show=true}}aN.xaxis=V(p,aA(aN,"x"));aN.yaxis=V(aw,aA(aN,"y"))}}function z(){var aO=Number.POSITIVE_INFINITY,aI=Number.NEGATIVE_INFINITY,aB=Number.MAX_VALUE,aU,aS,aR,aN,aD,aJ,aT,aP,aH,aG,aC,a0,aX,aL;function aF(a3,a2,a1){if(a2<a3.datamin&&a2!=-aB){a3.datamin=a2}if(a1>a3.datamax&&a1!=aB){a3.datamax=a1}}c.each(m(),function(a1,a2){a2.datamin=aO;a2.datamax=aI;a2.used=false});for(aU=0;aU<Q.length;++aU){aJ=Q[aU];aJ.datapoints={points:[]};an(ak.processRawData,[aJ,aJ.data,aJ.datapoints])}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];var aZ=aJ.data,aW=aJ.datapoints.format;if(!aW){aW=[];aW.push({x:true,number:true,required:true});aW.push({y:true,number:true,required:true});if(aJ.bars.show||(aJ.lines.show&&aJ.lines.fill)){aW.push({y:true,number:true,required:false,defaultValue:0});if(aJ.bars.horizontal){delete aW[aW.length-1].y;aW[aW.length-1].x=true}}aJ.datapoints.format=aW}if(aJ.datapoints.pointsize!=null){continue}aJ.datapoints.pointsize=aW.length;aP=aJ.datapoints.pointsize;aT=aJ.datapoints.points;insertSteps=aJ.lines.show&&aJ.lines.steps;aJ.xaxis.used=aJ.yaxis.used=true;for(aS=aR=0;aS<aZ.length;++aS,aR+=aP){aL=aZ[aS];var aE=aL==null;if(!aE){for(aN=0;aN<aP;++aN){a0=aL[aN];aX=aW[aN];if(aX){if(aX.number&&a0!=null){a0=+a0;if(isNaN(a0)){a0=null}else{if(a0==Infinity){a0=aB}else{if(a0==-Infinity){a0=-aB}}}}if(a0==null){if(aX.required){aE=true}if(aX.defaultValue!=null){a0=aX.defaultValue}}}aT[aR+aN]=a0}}if(aE){for(aN=0;aN<aP;++aN){a0=aT[aR+aN];if(a0!=null){aX=aW[aN];if(aX.x){aF(aJ.xaxis,a0,a0)}if(aX.y){aF(aJ.yaxis,a0,a0)}}aT[aR+aN]=null}}else{if(insertSteps&&aR>0&&aT[aR-aP]!=null&&aT[aR-aP]!=aT[aR]&&aT[aR-aP+1]!=aT[aR+1]){for(aN=0;aN<aP;++aN){aT[aR+aP+aN]=aT[aR+aN]}aT[aR+1]=aT[aR-aP+1];aR+=aP}}}}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];an(ak.processDatapoints,[aJ,aJ.datapoints])}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];aT=aJ.datapoints.points,aP=aJ.datapoints.pointsize;var aK=aO,aQ=aO,aM=aI,aV=aI;for(aS=0;aS<aT.length;aS+=aP){if(aT[aS]==null){continue}for(aN=0;aN<aP;++aN){a0=aT[aS+aN];aX=aW[aN];if(!aX||a0==aB||a0==-aB){continue}if(aX.x){if(a0<aK){aK=a0}if(a0>aM){aM=a0}}if(aX.y){if(a0<aQ){aQ=a0}if(a0>aV){aV=a0}}}}if(aJ.bars.show){var aY=aJ.bars.align=="left"?0:-aJ.bars.barWidth/2;if(aJ.bars.horizontal){aQ+=aY;aV+=aY+aJ.bars.barWidth}else{aK+=aY;aM+=aY+aJ.bars.barWidth}}aF(aJ.xaxis,aK,aM);aF(aJ.yaxis,aQ,aV)}c.each(m(),function(a1,a2){if(a2.datamin==aO){a2.datamin=null}if(a2.datamax==aI){a2.datamax=null}})}function j(aB,aC){var aD=document.createElement("canvas");aD.className=aC;aD.width=G;aD.height=I;if(!aB){c(aD).css({position:"absolute",left:0,top:0})}c(aD).appendTo(av);if(!aD.getContext){aD=window.G_vmlCanvasManager.initElement(aD)}aD.getContext("2d").save();return aD}function B(){G=av.width();I=av.height();if(G<=0||I<=0){throw"Invalid dimensions for plot, width = "+G+", height = "+I}}function g(aC){if(aC.width!=G){aC.width=G}if(aC.height!=I){aC.height=I}var aB=aC.getContext("2d");aB.restore();aB.save()}function X(){var aC,aB=av.children("canvas.base"),aD=av.children("canvas.overlay");if(aB.length==0||aD==0){av.html("");av.css({padding:0});if(av.css("position")=="static"){av.css("position","relative")}B();az=j(true,"base");ad=j(false,"overlay");aC=false}else{az=aB.get(0);ad=aD.get(0);aC=true}H=az.getContext("2d");A=ad.getContext("2d");y=c([ad,az]);if(aC){av.data("plot").shutdown();aq.resize();A.clearRect(0,0,G,I);y.unbind();av.children().not([az,ad]).remove()}av.data("plot",aq)}function ah(){if(O.grid.hoverable){y.mousemove(aa);y.mouseleave(l)}if(O.grid.clickable){y.click(R)}an(ak.bindEvents,[y])}function ag(){if(M){clearTimeout(M)}y.unbind("mousemove",aa);y.unbind("mouseleave",l);y.unbind("click",R);an(ak.shutdown,[y])}function r(aG){function aC(aH){return aH}var aF,aB,aD=aG.options.transform||aC,aE=aG.options.inverseTransform;if(aG.direction=="x"){aF=aG.scale=h/Math.abs(aD(aG.max)-aD(aG.min));aB=Math.min(aD(aG.max),aD(aG.min))}else{aF=aG.scale=w/Math.abs(aD(aG.max)-aD(aG.min));aF=-aF;aB=Math.max(aD(aG.max),aD(aG.min))}if(aD==aC){aG.p2c=function(aH){return(aH-aB)*aF}}else{aG.p2c=function(aH){return(aD(aH)-aB)*aF}}if(!aE){aG.c2p=function(aH){return aB+aH/aF}}else{aG.c2p=function(aH){return aE(aB+aH/aF)}}}function L(aD){var aB=aD.options,aF,aJ=aD.ticks||[],aI=[],aE,aK=aB.labelWidth,aG=aB.labelHeight,aC;function aH(aM,aL){return c('<div style="position:absolute;top:-10000px;'+aL+'font-size:smaller"><div class="'+aD.direction+"Axis "+aD.direction+aD.n+'Axis">'+aM.join("")+"</div></div>").appendTo(av)}if(aD.direction=="x"){if(aK==null){aK=Math.floor(G/(aJ.length>0?aJ.length:1))}if(aG==null){aI=[];for(aF=0;aF<aJ.length;++aF){aE=aJ[aF].label;if(aE){aI.push('<div class="tickLabel" style="float:left;width:'+aK+'px">'+aE+"</div>")}}if(aI.length>0){aI.push('<div style="clear:left"></div>');aC=aH(aI,"width:10000px;");aG=aC.height();aC.remove()}}}else{if(aK==null||aG==null){for(aF=0;aF<aJ.length;++aF){aE=aJ[aF].label;if(aE){aI.push('<div class="tickLabel">'+aE+"</div>")}}if(aI.length>0){aC=aH(aI,"");if(aK==null){aK=aC.children().width()}if(aG==null){aG=aC.find("div.tickLabel").height()}aC.remove()}}}if(aK==null){aK=0}if(aG==null){aG=0}aD.labelWidth=aK;aD.labelHeight=aG}function au(aD){var aC=aD.labelWidth,aL=aD.labelHeight,aH=aD.options.position,aF=aD.options.tickLength,aG=O.grid.axisMargin,aJ=O.grid.labelMargin,aK=aD.direction=="x"?p:aw,aE;var aB=c.grep(aK,function(aN){return aN&&aN.options.position==aH&&aN.reserveSpace});if(c.inArray(aD,aB)==aB.length-1){aG=0}if(aF==null){aF="full"}var aI=c.grep(aK,function(aN){return aN&&aN.reserveSpace});var aM=c.inArray(aD,aI)==0;if(!aM&&aF=="full"){aF=5}if(!isNaN(+aF)){aJ+=+aF}if(aD.direction=="x"){aL+=aJ;if(aH=="bottom"){q.bottom+=aL+aG;aD.box={top:I-q.bottom,height:aL}}else{aD.box={top:q.top+aG,height:aL};q.top+=aL+aG}}else{aC+=aJ;if(aH=="left"){aD.box={left:q.left+aG,width:aC};q.left+=aC+aG}else{q.right+=aC+aG;aD.box={left:G-q.right,width:aC}}}aD.position=aH;aD.tickLength=aF;aD.box.padding=aJ;aD.innermost=aM}function U(aB){if(aB.direction=="x"){aB.box.left=q.left;aB.box.width=h}else{aB.box.top=q.top;aB.box.height=w}}function t(){var aC,aE=m();c.each(aE,function(aF,aG){aG.show=aG.options.show;if(aG.show==null){aG.show=aG.used}aG.reserveSpace=aG.show||aG.options.reserveSpace;n(aG)});allocatedAxes=c.grep(aE,function(aF){return aF.reserveSpace});q.left=q.right=q.top=q.bottom=0;if(O.grid.show){c.each(allocatedAxes,function(aF,aG){S(aG);P(aG);ap(aG,aG.ticks);L(aG)});for(aC=allocatedAxes.length-1;aC>=0;--aC){au(allocatedAxes[aC])}var aD=O.grid.minBorderMargin;if(aD==null){aD=0;for(aC=0;aC<Q.length;++aC){aD=Math.max(aD,Q[aC].points.radius+Q[aC].points.lineWidth/2)}}for(var aB in q){q[aB]+=O.grid.borderWidth;q[aB]=Math.max(aD,q[aB])}}h=G-q.left-q.right;w=I-q.bottom-q.top;c.each(aE,function(aF,aG){r(aG)});if(O.grid.show){c.each(allocatedAxes,function(aF,aG){U(aG)});k()}o()}function n(aE){var aF=aE.options,aD=+(aF.min!=null?aF.min:aE.datamin),aB=+(aF.max!=null?aF.max:aE.datamax),aH=aB-aD;if(aH==0){var aC=aB==0?1:0.01;if(aF.min==null){aD-=aC}if(aF.max==null||aF.min!=null){aB+=aC}}else{var aG=aF.autoscaleMargin;if(aG!=null){if(aF.min==null){aD-=aH*aG;if(aD<0&&aE.datamin!=null&&aE.datamin>=0){aD=0}}if(aF.max==null){aB+=aH*aG;if(aB>0&&aE.datamax!=null&&aE.datamax<=0){aB=0}}}}aE.min=aD;aE.max=aB}function S(aG){var aM=aG.options;var aH;if(typeof aM.ticks=="number"&&aM.ticks>0){aH=aM.ticks}else{aH=0.3*Math.sqrt(aG.direction=="x"?G:I)}var aT=(aG.max-aG.min)/aH,aO,aB,aN,aR,aS,aQ,aI;if(aM.mode=="time"){var aJ={second:1000,minute:60*1000,hour:60*60*1000,day:24*60*60*1000,month:30*24*60*60*1000,year:365.2425*24*60*60*1000};var aK=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[0.25,"month"],[0.5,"month"],[1,"month"],[2,"month"],[3,"month"],[6,"month"],[1,"year"]];var aC=0;if(aM.minTickSize!=null){if(typeof aM.tickSize=="number"){aC=aM.tickSize}else{aC=aM.minTickSize[0]*aJ[aM.minTickSize[1]]}}for(var aS=0;aS<aK.length-1;++aS){if(aT<(aK[aS][0]*aJ[aK[aS][1]]+aK[aS+1][0]*aJ[aK[aS+1][1]])/2&&aK[aS][0]*aJ[aK[aS][1]]>=aC){break}}aO=aK[aS][0];aN=aK[aS][1];if(aN=="year"){aQ=Math.pow(10,Math.floor(Math.log(aT/aJ.year)/Math.LN10));aI=(aT/aJ.year)/aQ;if(aI<1.5){aO=1}else{if(aI<3){aO=2}else{if(aI<7.5){aO=5}else{aO=10}}}aO*=aQ}aG.tickSize=aM.tickSize||[aO,aN];aB=function(aX){var a2=[],a0=aX.tickSize[0],a3=aX.tickSize[1],a1=new Date(aX.min);var aW=a0*aJ[a3];if(a3=="second"){a1.setUTCSeconds(a(a1.getUTCSeconds(),a0))}if(a3=="minute"){a1.setUTCMinutes(a(a1.getUTCMinutes(),a0))}if(a3=="hour"){a1.setUTCHours(a(a1.getUTCHours(),a0))}if(a3=="month"){a1.setUTCMonth(a(a1.getUTCMonth(),a0))}if(a3=="year"){a1.setUTCFullYear(a(a1.getUTCFullYear(),a0))}a1.setUTCMilliseconds(0);if(aW>=aJ.minute){a1.setUTCSeconds(0)}if(aW>=aJ.hour){a1.setUTCMinutes(0)}if(aW>=aJ.day){a1.setUTCHours(0)}if(aW>=aJ.day*4){a1.setUTCDate(1)}if(aW>=aJ.year){a1.setUTCMonth(0)}var a5=0,a4=Number.NaN,aY;do{aY=a4;a4=a1.getTime();a2.push(a4);if(a3=="month"){if(a0<1){a1.setUTCDate(1);var aV=a1.getTime();a1.setUTCMonth(a1.getUTCMonth()+1);var aZ=a1.getTime();a1.setTime(a4+a5*aJ.hour+(aZ-aV)*a0);a5=a1.getUTCHours();a1.setUTCHours(0)}else{a1.setUTCMonth(a1.getUTCMonth()+a0)}}else{if(a3=="year"){a1.setUTCFullYear(a1.getUTCFullYear()+a0)}else{a1.setTime(a4+aW)}}}while(a4<aX.max&&a4!=aY);return a2};aR=function(aV,aY){var a0=new Date(aV);if(aM.timeformat!=null){return c.plot.formatDate(a0,aM.timeformat,aM.monthNames)}var aW=aY.tickSize[0]*aJ[aY.tickSize[1]];var aX=aY.max-aY.min;var aZ=(aM.twelveHourClock)?" %p":"";if(aW<aJ.minute){fmt="%h:%M:%S"+aZ}else{if(aW<aJ.day){if(aX<2*aJ.day){fmt="%h:%M"+aZ}else{fmt="%b %d %h:%M"+aZ}}else{if(aW<aJ.month){fmt="%b %d"}else{if(aW<aJ.year){if(aX<aJ.year){fmt="%b"}else{fmt="%b %y"}}else{fmt="%y"}}}}return c.plot.formatDate(a0,fmt,aM.monthNames)}}else{var aU=aM.tickDecimals;var aP=-Math.floor(Math.log(aT)/Math.LN10);if(aU!=null&&aP>aU){aP=aU}aQ=Math.pow(10,-aP);aI=aT/aQ;if(aI<1.5){aO=1}else{if(aI<3){aO=2;if(aI>2.25&&(aU==null||aP+1<=aU)){aO=2.5;++aP}}else{if(aI<7.5){aO=5}else{aO=10}}}aO*=aQ;if(aM.minTickSize!=null&&aO<aM.minTickSize){aO=aM.minTickSize}aG.tickDecimals=Math.max(0,aU!=null?aU:aP);aG.tickSize=aM.tickSize||aO;aB=function(aX){var aZ=[];var a0=a(aX.min,aX.tickSize),aW=0,aV=Number.NaN,aY;do{aY=aV;aV=a0+aW*aX.tickSize;aZ.push(aV);++aW}while(aV<aX.max&&aV!=aY);return aZ};aR=function(aV,aW){return aV.toFixed(aW.tickDecimals)}}if(aM.alignTicksWithAxis!=null){var aF=(aG.direction=="x"?p:aw)[aM.alignTicksWithAxis-1];if(aF&&aF.used&&aF!=aG){var aL=aB(aG);if(aL.length>0){if(aM.min==null){aG.min=Math.min(aG.min,aL[0])}if(aM.max==null&&aL.length>1){aG.max=Math.max(aG.max,aL[aL.length-1])}}aB=function(aX){var aY=[],aV,aW;for(aW=0;aW<aF.ticks.length;++aW){aV=(aF.ticks[aW].v-aF.min)/(aF.max-aF.min);aV=aX.min+aV*(aX.max-aX.min);aY.push(aV)}return aY};if(aG.mode!="time"&&aM.tickDecimals==null){var aE=Math.max(0,-Math.floor(Math.log(aT)/Math.LN10)+1),aD=aB(aG);if(!(aD.length>1&&/\..*0$/.test((aD[1]-aD[0]).toFixed(aE)))){aG.tickDecimals=aE}}}}aG.tickGenerator=aB;if(c.isFunction(aM.tickFormatter)){aG.tickFormatter=function(aV,aW){return""+aM.tickFormatter(aV,aW)}}else{aG.tickFormatter=aR}}function P(aF){var aH=aF.options.ticks,aG=[];if(aH==null||(typeof aH=="number"&&aH>0)){aG=aF.tickGenerator(aF)}else{if(aH){if(c.isFunction(aH)){aG=aH({min:aF.min,max:aF.max})}else{aG=aH}}}var aE,aB;aF.ticks=[];for(aE=0;aE<aG.length;++aE){var aC=null;var aD=aG[aE];if(typeof aD=="object"){aB=+aD[0];if(aD.length>1){aC=aD[1]}}else{aB=+aD}if(aC==null){aC=aF.tickFormatter(aB,aF)}if(!isNaN(aB)){aF.ticks.push({v:aB,label:aC})}}}function ap(aB,aC){if(aB.options.autoscaleMargin&&aC.length>0){if(aB.options.min==null){aB.min=Math.min(aB.min,aC[0].v)}if(aB.options.max==null&&aC.length>1){aB.max=Math.max(aB.max,aC[aC.length-1].v)}}}function W(){H.clearRect(0,0,G,I);var aC=O.grid;if(aC.show&&aC.backgroundColor){N()}if(aC.show&&!aC.aboveData){ac()}for(var aB=0;aB<Q.length;++aB){an(ak.drawSeries,[H,Q[aB]]);d(Q[aB])}an(ak.draw,[H]);if(aC.show&&aC.aboveData){ac()}}function D(aB,aI){var aE,aH,aG,aD,aF=m();for(i=0;i<aF.length;++i){aE=aF[i];if(aE.direction==aI){aD=aI+aE.n+"axis";if(!aB[aD]&&aE.n==1){aD=aI+"axis"}if(aB[aD]){aH=aB[aD].from;aG=aB[aD].to;break}}}if(!aB[aD]){aE=aI=="x"?p[0]:aw[0];aH=aB[aI+"1"];aG=aB[aI+"2"]}if(aH!=null&&aG!=null&&aH>aG){var aC=aH;aH=aG;aG=aC}return{from:aH,to:aG,axis:aE}}function N(){H.save();H.translate(q.left,q.top);H.fillStyle=am(O.grid.backgroundColor,w,0,"rgba(255, 255, 255, 0)");H.fillRect(0,0,h,w);H.restore()}function ac(){var aF;H.save();H.translate(q.left,q.top);var aH=O.grid.markings;if(aH){if(c.isFunction(aH)){var aK=aq.getAxes();aK.xmin=aK.xaxis.min;aK.xmax=aK.xaxis.max;aK.ymin=aK.yaxis.min;aK.ymax=aK.yaxis.max;aH=aH(aK)}for(aF=0;aF<aH.length;++aF){var aD=aH[aF],aC=D(aD,"x"),aI=D(aD,"y");if(aC.from==null){aC.from=aC.axis.min}if(aC.to==null){aC.to=aC.axis.max}if(aI.from==null){aI.from=aI.axis.min}if(aI.to==null){aI.to=aI.axis.max}if(aC.to<aC.axis.min||aC.from>aC.axis.max||aI.to<aI.axis.min||aI.from>aI.axis.max){continue}aC.from=Math.max(aC.from,aC.axis.min);aC.to=Math.min(aC.to,aC.axis.max);aI.from=Math.max(aI.from,aI.axis.min);aI.to=Math.min(aI.to,aI.axis.max);if(aC.from==aC.to&&aI.from==aI.to){continue}aC.from=aC.axis.p2c(aC.from);aC.to=aC.axis.p2c(aC.to);aI.from=aI.axis.p2c(aI.from);aI.to=aI.axis.p2c(aI.to);if(aC.from==aC.to||aI.from==aI.to){H.beginPath();H.strokeStyle=aD.color||O.grid.markingsColor;H.lineWidth=aD.lineWidth||O.grid.markingsLineWidth;H.moveTo(aC.from,aI.from);H.lineTo(aC.to,aI.to);H.stroke()}else{H.fillStyle=aD.color||O.grid.markingsColor;H.fillRect(aC.from,aI.to,aC.to-aC.from,aI.from-aI.to)}}}var aK=m(),aM=O.grid.borderWidth;for(var aE=0;aE<aK.length;++aE){var aB=aK[aE],aG=aB.box,aQ=aB.tickLength,aN,aL,aP,aJ;if(!aB.show||aB.ticks.length==0){continue}H.strokeStyle=aB.options.tickColor||c.color.parse(aB.options.color).scale("a",0.22).toString();H.lineWidth=1;if(aB.direction=="x"){aN=0;if(aQ=="full"){aL=(aB.position=="top"?0:w)}else{aL=aG.top-q.top+(aB.position=="top"?aG.height:0)}}else{aL=0;if(aQ=="full"){aN=(aB.position=="left"?0:h)}else{aN=aG.left-q.left+(aB.position=="left"?aG.width:0)}}if(!aB.innermost){H.beginPath();aP=aJ=0;if(aB.direction=="x"){aP=h}else{aJ=w}if(H.lineWidth==1){aN=Math.floor(aN)+0.5;aL=Math.floor(aL)+0.5}H.moveTo(aN,aL);H.lineTo(aN+aP,aL+aJ);H.stroke()}H.beginPath();for(aF=0;aF<aB.ticks.length;++aF){var aO=aB.ticks[aF].v;aP=aJ=0;if(aO<aB.min||aO>aB.max||(aQ=="full"&&aM>0&&(aO==aB.min||aO==aB.max))){continue}if(aB.direction=="x"){aN=aB.p2c(aO);aJ=aQ=="full"?-w:aQ;if(aB.position=="top"){aJ=-aJ}}else{aL=aB.p2c(aO);aP=aQ=="full"?-h:aQ;if(aB.position=="left"){aP=-aP}}if(H.lineWidth==1){if(aB.direction=="x"){aN=Math.floor(aN)+0.5}else{aL=Math.floor(aL)+0.5}}H.moveTo(aN,aL);H.lineTo(aN+aP,aL+aJ)}H.stroke()}if(aM){H.lineWidth=aM;H.strokeStyle=O.grid.borderColor;H.strokeRect(-aM/2,-aM/2,h+aM,w+aM)}H.restore()}function k(){av.find(".tickLabels").remove();var aG=['<div class="tickLabels" style="font-size:smaller">'];var aJ=m();for(var aD=0;aD<aJ.length;++aD){var aC=aJ[aD],aF=aC.box;if(!aC.show){continue}aG.push('<div class="'+aC.direction+"Axis "+aC.direction+aC.n+'Axis" style="color:'+aC.options.color+'">');for(var aE=0;aE<aC.ticks.length;++aE){var aH=aC.ticks[aE];if(!aH.label||aH.v<aC.min||aH.v>aC.max){continue}var aK={},aI;if(aC.direction=="x"){aI="center";aK.left=Math.round(q.left+aC.p2c(aH.v)-aC.labelWidth/2);if(aC.position=="bottom"){aK.top=aF.top+aF.padding}else{aK.bottom=I-(aF.top+aF.height-aF.padding)}}else{aK.top=Math.round(q.top+aC.p2c(aH.v)-aC.labelHeight/2);if(aC.position=="left"){aK.right=G-(aF.left+aF.width-aF.padding);aI="right"}else{aK.left=aF.left+aF.padding;aI="left"}}aK.width=aC.labelWidth;var aB=["position:absolute","text-align:"+aI];for(var aL in aK){aB.push(aL+":"+aK[aL]+"px")}aG.push('<div class="tickLabel" style="'+aB.join(";")+'">'+aH.label+"</div>")}aG.push("</div>")}aG.push("</div>");av.append(aG.join(""))}function d(aB){if(aB.lines.show){at(aB)}if(aB.bars.show){e(aB)}if(aB.points.show){ao(aB)}}function at(aE){function aD(aP,aQ,aI,aU,aT){var aV=aP.points,aJ=aP.pointsize,aN=null,aM=null;H.beginPath();for(var aO=aJ;aO<aV.length;aO+=aJ){var aL=aV[aO-aJ],aS=aV[aO-aJ+1],aK=aV[aO],aR=aV[aO+1];if(aL==null||aK==null){continue}if(aS<=aR&&aS<aT.min){if(aR<aT.min){continue}aL=(aT.min-aS)/(aR-aS)*(aK-aL)+aL;aS=aT.min}else{if(aR<=aS&&aR<aT.min){if(aS<aT.min){continue}aK=(aT.min-aS)/(aR-aS)*(aK-aL)+aL;aR=aT.min}}if(aS>=aR&&aS>aT.max){if(aR>aT.max){continue}aL=(aT.max-aS)/(aR-aS)*(aK-aL)+aL;aS=aT.max}else{if(aR>=aS&&aR>aT.max){if(aS>aT.max){continue}aK=(aT.max-aS)/(aR-aS)*(aK-aL)+aL;aR=aT.max}}if(aL<=aK&&aL<aU.min){if(aK<aU.min){continue}aS=(aU.min-aL)/(aK-aL)*(aR-aS)+aS;aL=aU.min}else{if(aK<=aL&&aK<aU.min){if(aL<aU.min){continue}aR=(aU.min-aL)/(aK-aL)*(aR-aS)+aS;aK=aU.min}}if(aL>=aK&&aL>aU.max){if(aK>aU.max){continue}aS=(aU.max-aL)/(aK-aL)*(aR-aS)+aS;aL=aU.max}else{if(aK>=aL&&aK>aU.max){if(aL>aU.max){continue}aR=(aU.max-aL)/(aK-aL)*(aR-aS)+aS;aK=aU.max}}if(aL!=aN||aS!=aM){H.moveTo(aU.p2c(aL)+aQ,aT.p2c(aS)+aI)}aN=aK;aM=aR;H.lineTo(aU.p2c(aK)+aQ,aT.p2c(aR)+aI)}H.stroke()}function aF(aI,aQ,aP){var aW=aI.points,aV=aI.pointsize,aN=Math.min(Math.max(0,aP.min),aP.max),aX=0,aU,aT=false,aM=1,aL=0,aR=0;while(true){if(aV>0&&aX>aW.length+aV){break}aX+=aV;var aZ=aW[aX-aV],aK=aW[aX-aV+aM],aY=aW[aX],aJ=aW[aX+aM];if(aT){if(aV>0&&aZ!=null&&aY==null){aR=aX;aV=-aV;aM=2;continue}if(aV<0&&aX==aL+aV){H.fill();aT=false;aV=-aV;aM=1;aX=aL=aR+aV;continue}}if(aZ==null||aY==null){continue}if(aZ<=aY&&aZ<aQ.min){if(aY<aQ.min){continue}aK=(aQ.min-aZ)/(aY-aZ)*(aJ-aK)+aK;aZ=aQ.min}else{if(aY<=aZ&&aY<aQ.min){if(aZ<aQ.min){continue}aJ=(aQ.min-aZ)/(aY-aZ)*(aJ-aK)+aK;aY=aQ.min}}if(aZ>=aY&&aZ>aQ.max){if(aY>aQ.max){continue}aK=(aQ.max-aZ)/(aY-aZ)*(aJ-aK)+aK;aZ=aQ.max}else{if(aY>=aZ&&aY>aQ.max){if(aZ>aQ.max){continue}aJ=(aQ.max-aZ)/(aY-aZ)*(aJ-aK)+aK;aY=aQ.max}}if(!aT){H.beginPath();H.moveTo(aQ.p2c(aZ),aP.p2c(aN));aT=true}if(aK>=aP.max&&aJ>=aP.max){H.lineTo(aQ.p2c(aZ),aP.p2c(aP.max));H.lineTo(aQ.p2c(aY),aP.p2c(aP.max));continue}else{if(aK<=aP.min&&aJ<=aP.min){H.lineTo(aQ.p2c(aZ),aP.p2c(aP.min));H.lineTo(aQ.p2c(aY),aP.p2c(aP.min));continue}}var aO=aZ,aS=aY;if(aK<=aJ&&aK<aP.min&&aJ>=aP.min){aZ=(aP.min-aK)/(aJ-aK)*(aY-aZ)+aZ;aK=aP.min}else{if(aJ<=aK&&aJ<aP.min&&aK>=aP.min){aY=(aP.min-aK)/(aJ-aK)*(aY-aZ)+aZ;aJ=aP.min}}if(aK>=aJ&&aK>aP.max&&aJ<=aP.max){aZ=(aP.max-aK)/(aJ-aK)*(aY-aZ)+aZ;aK=aP.max}else{if(aJ>=aK&&aJ>aP.max&&aK<=aP.max){aY=(aP.max-aK)/(aJ-aK)*(aY-aZ)+aZ;aJ=aP.max}}if(aZ!=aO){H.lineTo(aQ.p2c(aO),aP.p2c(aK))}H.lineTo(aQ.p2c(aZ),aP.p2c(aK));H.lineTo(aQ.p2c(aY),aP.p2c(aJ));if(aY!=aS){H.lineTo(aQ.p2c(aY),aP.p2c(aJ));H.lineTo(aQ.p2c(aS),aP.p2c(aJ))}}}H.save();H.translate(q.left,q.top);H.lineJoin="round";var aG=aE.lines.lineWidth,aB=aE.shadowSize;if(aG>0&&aB>0){H.lineWidth=aB;H.strokeStyle="rgba(0,0,0,0.1)";var aH=Math.PI/18;aD(aE.datapoints,Math.sin(aH)*(aG/2+aB/2),Math.cos(aH)*(aG/2+aB/2),aE.xaxis,aE.yaxis);H.lineWidth=aB/2;aD(aE.datapoints,Math.sin(aH)*(aG/2+aB/4),Math.cos(aH)*(aG/2+aB/4),aE.xaxis,aE.yaxis)}H.lineWidth=aG;H.strokeStyle=aE.color;var aC=ae(aE.lines,aE.color,0,w);if(aC){H.fillStyle=aC;aF(aE.datapoints,aE.xaxis,aE.yaxis)}if(aG>0){aD(aE.datapoints,0,0,aE.xaxis,aE.yaxis)}H.restore()}function ao(aE){function aH(aN,aM,aU,aK,aS,aT,aQ,aJ){var aR=aN.points,aI=aN.pointsize;for(var aL=0;aL<aR.length;aL+=aI){var aP=aR[aL],aO=aR[aL+1];if(aP==null||aP<aT.min||aP>aT.max||aO<aQ.min||aO>aQ.max){continue}H.beginPath();aP=aT.p2c(aP);aO=aQ.p2c(aO)+aK;if(aJ=="circle"){H.arc(aP,aO,aM,0,aS?Math.PI:Math.PI*2,false)}else{aJ(H,aP,aO,aM,aS)}H.closePath();if(aU){H.fillStyle=aU;H.fill()}H.stroke()}}H.save();H.translate(q.left,q.top);var aG=aE.points.lineWidth,aC=aE.shadowSize,aB=aE.points.radius,aF=aE.points.symbol;if(aG>0&&aC>0){var aD=aC/2;H.lineWidth=aD;H.strokeStyle="rgba(0,0,0,0.1)";aH(aE.datapoints,aB,null,aD+aD/2,true,aE.xaxis,aE.yaxis,aF);H.strokeStyle="rgba(0,0,0,0.2)";aH(aE.datapoints,aB,null,aD/2,true,aE.xaxis,aE.yaxis,aF)}H.lineWidth=aG;H.strokeStyle=aE.color;aH(aE.datapoints,aB,ae(aE.points,aE.color),0,false,aE.xaxis,aE.yaxis,aF);H.restore()}function E(aN,aM,aV,aI,aQ,aF,aD,aL,aK,aU,aR,aC){var aE,aT,aJ,aP,aG,aB,aO,aH,aS;if(aR){aH=aB=aO=true;aG=false;aE=aV;aT=aN;aP=aM+aI;aJ=aM+aQ;if(aT<aE){aS=aT;aT=aE;aE=aS;aG=true;aB=false}}else{aG=aB=aO=true;aH=false;aE=aN+aI;aT=aN+aQ;aJ=aV;aP=aM;if(aP<aJ){aS=aP;aP=aJ;aJ=aS;aH=true;aO=false}}if(aT<aL.min||aE>aL.max||aP<aK.min||aJ>aK.max){return}if(aE<aL.min){aE=aL.min;aG=false}if(aT>aL.max){aT=aL.max;aB=false}if(aJ<aK.min){aJ=aK.min;aH=false}if(aP>aK.max){aP=aK.max;aO=false}aE=aL.p2c(aE);aJ=aK.p2c(aJ);aT=aL.p2c(aT);aP=aK.p2c(aP);if(aD){aU.beginPath();aU.moveTo(aE,aJ);aU.lineTo(aE,aP);aU.lineTo(aT,aP);aU.lineTo(aT,aJ);aU.fillStyle=aD(aJ,aP);aU.fill()}if(aC>0&&(aG||aB||aO||aH)){aU.beginPath();aU.moveTo(aE,aJ+aF);if(aG){aU.lineTo(aE,aP+aF)}else{aU.moveTo(aE,aP+aF)}if(aO){aU.lineTo(aT,aP+aF)}else{aU.moveTo(aT,aP+aF)}if(aB){aU.lineTo(aT,aJ+aF)}else{aU.moveTo(aT,aJ+aF)}if(aH){aU.lineTo(aE,aJ+aF)}else{aU.moveTo(aE,aJ+aF)}aU.stroke()}}function e(aD){function aC(aJ,aI,aL,aG,aK,aN,aM){var aO=aJ.points,aF=aJ.pointsize;for(var aH=0;aH<aO.length;aH+=aF){if(aO[aH]==null){continue}E(aO[aH],aO[aH+1],aO[aH+2],aI,aL,aG,aK,aN,aM,H,aD.bars.horizontal,aD.bars.lineWidth)}}H.save();H.translate(q.left,q.top);H.lineWidth=aD.bars.lineWidth;H.strokeStyle=aD.color;var aB=aD.bars.align=="left"?0:-aD.bars.barWidth/2;var aE=aD.bars.fill?function(aF,aG){return ae(aD.bars,aD.color,aF,aG)}:null;aC(aD.datapoints,aB,aB+aD.bars.barWidth,0,aE,aD.xaxis,aD.yaxis);H.restore()}function ae(aD,aB,aC,aF){var aE=aD.fill;if(!aE){return null}if(aD.fillColor){return am(aD.fillColor,aC,aF,aB)}var aG=c.color.parse(aB);aG.a=typeof aE=="number"?aE:0.4;aG.normalize();return aG.toString()}function o(){av.find(".legend").remove();if(!O.legend.show){return}var aH=[],aF=false,aN=O.legend.labelFormatter,aM,aJ;for(var aE=0;aE<Q.length;++aE){aM=Q[aE];aJ=aM.label;if(!aJ){continue}if(aE%O.legend.noColumns==0){if(aF){aH.push("</tr>")}aH.push("<tr>");aF=true}if(aN){aJ=aN(aJ,aM)}aH.push('<td class="legendColorBox"><div style="border:1px solid '+O.legend.labelBoxBorderColor+';padding:1px"><div style="width:4px;height:0;border:5px solid '+aM.color+';overflow:hidden"></div></div></td><td class="legendLabel">'+aJ+"</td>")}if(aF){aH.push("</tr>")}if(aH.length==0){return}var aL='<table style="font-size:smaller;color:'+O.grid.color+'">'+aH.join("")+"</table>";if(O.legend.container!=null){c(O.legend.container).html(aL)}else{var aI="",aC=O.legend.position,aD=O.legend.margin;if(aD[0]==null){aD=[aD,aD]}if(aC.charAt(0)=="n"){aI+="top:"+(aD[1]+q.top)+"px;"}else{if(aC.charAt(0)=="s"){aI+="bottom:"+(aD[1]+q.bottom)+"px;"}}if(aC.charAt(1)=="e"){aI+="right:"+(aD[0]+q.right)+"px;"}else{if(aC.charAt(1)=="w"){aI+="left:"+(aD[0]+q.left)+"px;"}}var aK=c('<div class="legend">'+aL.replace('style="','style="position:absolute;'+aI+";")+"</div>").appendTo(av);if(O.legend.backgroundOpacity!=0){var aG=O.legend.backgroundColor;if(aG==null){aG=O.grid.backgroundColor;if(aG&&typeof aG=="string"){aG=c.color.parse(aG)}else{aG=c.color.extract(aK,"background-color")}aG.a=1;aG=aG.toString()}var aB=aK.children();c('<div style="position:absolute;width:'+aB.width()+"px;height:"+aB.height()+"px;"+aI+"background-color:"+aG+';"> </div>').prependTo(aK).css("opacity",O.legend.backgroundOpacity)}}}var ab=[],M=null;function K(aI,aG,aD){var aO=O.grid.mouseActiveRadius,a0=aO*aO+1,aY=null,aR=false,aW,aU;for(aW=Q.length-1;aW>=0;--aW){if(!aD(Q[aW])){continue}var aP=Q[aW],aH=aP.xaxis,aF=aP.yaxis,aV=aP.datapoints.points,aT=aP.datapoints.pointsize,aQ=aH.c2p(aI),aN=aF.c2p(aG),aC=aO/aH.scale,aB=aO/aF.scale;if(aH.options.inverseTransform){aC=Number.MAX_VALUE}if(aF.options.inverseTransform){aB=Number.MAX_VALUE}if(aP.lines.show||aP.points.show){for(aU=0;aU<aV.length;aU+=aT){var aK=aV[aU],aJ=aV[aU+1];if(aK==null){continue}if(aK-aQ>aC||aK-aQ<-aC||aJ-aN>aB||aJ-aN<-aB){continue}var aM=Math.abs(aH.p2c(aK)-aI),aL=Math.abs(aF.p2c(aJ)-aG),aS=aM*aM+aL*aL;if(aS<a0){a0=aS;aY=[aW,aU/aT]}}}if(aP.bars.show&&!aY){var aE=aP.bars.align=="left"?0:-aP.bars.barWidth/2,aX=aE+aP.bars.barWidth;for(aU=0;aU<aV.length;aU+=aT){var aK=aV[aU],aJ=aV[aU+1],aZ=aV[aU+2];if(aK==null){continue}if(Q[aW].bars.horizontal?(aQ<=Math.max(aZ,aK)&&aQ>=Math.min(aZ,aK)&&aN>=aJ+aE&&aN<=aJ+aX):(aQ>=aK+aE&&aQ<=aK+aX&&aN>=Math.min(aZ,aJ)&&aN<=Math.max(aZ,aJ))){aY=[aW,aU/aT]}}}}if(aY){aW=aY[0];aU=aY[1];aT=Q[aW].datapoints.pointsize;return{datapoint:Q[aW].datapoints.points.slice(aU*aT,(aU+1)*aT),dataIndex:aU,series:Q[aW],seriesIndex:aW}}return null}function aa(aB){if(O.grid.hoverable){u("plothover",aB,function(aC){return aC.hoverable!=false})}}function l(aB){if(O.grid.hoverable){u("plothover",aB,function(aC){return false})}}function R(aB){u("plotclick",aB,function(aC){return aC.clickable!=false})}function u(aC,aB,aD){var aE=y.offset(),aH=aB.pageX-aE.left-q.left,aF=aB.pageY-aE.top-q.top,aJ=C({left:aH,top:aF});aJ.pageX=aB.pageX;aJ.pageY=aB.pageY;var aK=K(aH,aF,aD);if(aK){aK.pageX=parseInt(aK.series.xaxis.p2c(aK.datapoint[0])+aE.left+q.left);aK.pageY=parseInt(aK.series.yaxis.p2c(aK.datapoint[1])+aE.top+q.top)}if(O.grid.autoHighlight){for(var aG=0;aG<ab.length;++aG){var aI=ab[aG];if(aI.auto==aC&&!(aK&&aI.series==aK.series&&aI.point[0]==aK.datapoint[0]&&aI.point[1]==aK.datapoint[1])){T(aI.series,aI.point)}}if(aK){x(aK.series,aK.datapoint,aC)}}av.trigger(aC,[aJ,aK])}function f(){if(!M){M=setTimeout(s,30)}}function s(){M=null;A.save();A.clearRect(0,0,G,I);A.translate(q.left,q.top);var aC,aB;for(aC=0;aC<ab.length;++aC){aB=ab[aC];if(aB.series.bars.show){v(aB.series,aB.point)}else{ay(aB.series,aB.point)}}A.restore();an(ak.drawOverlay,[A])}function x(aD,aB,aF){if(typeof aD=="number"){aD=Q[aD]}if(typeof aB=="number"){var aE=aD.datapoints.pointsize;aB=aD.datapoints.points.slice(aE*aB,aE*(aB+1))}var aC=al(aD,aB);if(aC==-1){ab.push({series:aD,point:aB,auto:aF});f()}else{if(!aF){ab[aC].auto=false}}}function T(aD,aB){if(aD==null&&aB==null){ab=[];f()}if(typeof aD=="number"){aD=Q[aD]}if(typeof aB=="number"){aB=aD.data[aB]}var aC=al(aD,aB);if(aC!=-1){ab.splice(aC,1);f()}}function al(aD,aE){for(var aB=0;aB<ab.length;++aB){var aC=ab[aB];if(aC.series==aD&&aC.point[0]==aE[0]&&aC.point[1]==aE[1]){return aB}}return -1}function ay(aE,aD){var aC=aD[0],aI=aD[1],aH=aE.xaxis,aG=aE.yaxis;if(aC<aH.min||aC>aH.max||aI<aG.min||aI>aG.max){return}var aF=aE.points.radius+aE.points.lineWidth/2;A.lineWidth=aF;A.strokeStyle=c.color.parse(aE.color).scale("a",0.5).toString();var aB=1.5*aF,aC=aH.p2c(aC),aI=aG.p2c(aI);A.beginPath();if(aE.points.symbol=="circle"){A.arc(aC,aI,aB,0,2*Math.PI,false)}else{aE.points.symbol(A,aC,aI,aB,false)}A.closePath();A.stroke()}function v(aE,aB){A.lineWidth=aE.bars.lineWidth;A.strokeStyle=c.color.parse(aE.color).scale("a",0.5).toString();var aD=c.color.parse(aE.color).scale("a",0.5).toString();var aC=aE.bars.align=="left"?0:-aE.bars.barWidth/2;E(aB[0],aB[1],aB[2]||0,aC,aC+aE.bars.barWidth,0,function(){return aD},aE.xaxis,aE.yaxis,A,aE.bars.horizontal,aE.bars.lineWidth)}function am(aJ,aB,aH,aC){if(typeof aJ=="string"){return aJ}else{var aI=H.createLinearGradient(0,aH,0,aB);for(var aE=0,aD=aJ.colors.length;aE<aD;++aE){var aF=aJ.colors[aE];if(typeof aF!="string"){var aG=c.color.parse(aC);if(aF.brightness!=null){aG=aG.scale("rgb",aF.brightness)}if(aF.opacity!=null){aG.a*=aF.opacity}aF=aG.toString()}aI.addColorStop(aE/(aD-1),aF)}return aI}}}c.plot=function(g,e,d){var f=new b(c(g),e,d,c.plot.plugins);return f};c.plot.version="0.7";c.plot.plugins=[];c.plot.formatDate=function(l,f,h){var o=function(d){d=""+d;return d.length==1?"0"+d:d};var e=[];var p=false,j=false;var n=l.getUTCHours();var k=n<12;if(h==null){h=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(f.search(/%p|%P/)!=-1){if(n>12){n=n-12}else{if(n==0){n=12}}}for(var g=0;g<f.length;++g){var m=f.charAt(g);if(p){switch(m){case"h":m=""+n;break;case"H":m=o(n);break;case"M":m=o(l.getUTCMinutes());break;case"S":m=o(l.getUTCSeconds());break;case"d":m=""+l.getUTCDate();break;case"m":m=""+(l.getUTCMonth()+1);break;case"y":m=""+l.getUTCFullYear();break;case"b":m=""+h[l.getUTCMonth()];break;case"p":m=(k)?("am"):("pm");break;case"P":m=(k)?("AM"):("PM");break;case"0":m="";j=true;break}if(m&&j){m=o(m);j=false}e.push(m);if(!j){p=false}}else{if(m=="%"){p=true}else{e.push(m)}}}return e.join("")};function a(e,d){return d*Math.floor(e/d)}})(jQuery);
1
+ /* Javascript plotting library for jQuery, v. 0.7.
2
+ *
3
+ * Released under the MIT license by IOLA, December 2007.
4
+ *
5
+ */
6
  (function(b){b.color={};b.color.make=function(d,e,g,f){var c={};c.r=d||0;c.g=e||0;c.b=g||0;c.a=f!=null?f:1;c.add=function(h,j){for(var k=0;k<h.length;++k){c[h.charAt(k)]+=j}return c.normalize()};c.scale=function(h,j){for(var k=0;k<h.length;++k){c[h.charAt(k)]*=j}return c.normalize()};c.toString=function(){if(c.a>=1){return"rgb("+[c.r,c.g,c.b].join(",")+")"}else{return"rgba("+[c.r,c.g,c.b,c.a].join(",")+")"}};c.normalize=function(){function h(k,j,l){return j<k?k:(j>l?l:j)}c.r=h(0,parseInt(c.r),255);c.g=h(0,parseInt(c.g),255);c.b=h(0,parseInt(c.b),255);c.a=h(0,c.a,1);return c};c.clone=function(){return b.color.make(c.r,c.b,c.g,c.a)};return c.normalize()};b.color.extract=function(d,e){var c;do{c=d.css(e).toLowerCase();if(c!=""&&c!="transparent"){break}d=d.parent()}while(!b.nodeName(d.get(0),"body"));if(c=="rgba(0, 0, 0, 0)"){c="transparent"}return b.color.parse(c)};b.color.parse=function(c){var d,f=b.color.make;if(d=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c)){return f(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10))}if(d=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c)){return f(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10),parseFloat(d[4]))}if(d=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c)){return f(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55)}if(d=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(c)){return f(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55,parseFloat(d[4]))}if(d=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c)){return f(parseInt(d[1],16),parseInt(d[2],16),parseInt(d[3],16))}if(d=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c)){return f(parseInt(d[1]+d[1],16),parseInt(d[2]+d[2],16),parseInt(d[3]+d[3],16))}var e=b.trim(c).toLowerCase();if(e=="transparent"){return f(255,255,255,0)}else{d=a[e]||[0,0,0];return f(d[0],d[1],d[2])}};var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);(function(c){function b(av,ai,J,af){var Q=[],O={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:true,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:0.85},xaxis:{show:null,position:"bottom",mode:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null,monthNames:null,timeformat:null,twelveHourClock:false},yaxis:{autoscaleMargin:0.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:false,fillColor:null,steps:false},bars:{show:false,lineWidth:2,barWidth:1,fill:true,fillColor:null,align:"left",horizontal:false},shadowSize:3},grid:{show:true,aboveData:false,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},hooks:{}},az=null,ad=null,y=null,H=null,A=null,p=[],aw=[],q={left:0,right:0,top:0,bottom:0},G=0,I=0,h=0,w=0,ak={processOptions:[],processRawData:[],processDatapoints:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},aq=this;aq.setData=aj;aq.setupGrid=t;aq.draw=W;aq.getPlaceholder=function(){return av};aq.getCanvas=function(){return az};aq.getPlotOffset=function(){return q};aq.width=function(){return h};aq.height=function(){return w};aq.offset=function(){var aB=y.offset();aB.left+=q.left;aB.top+=q.top;return aB};aq.getData=function(){return Q};aq.getAxes=function(){var aC={},aB;c.each(p.concat(aw),function(aD,aE){if(aE){aC[aE.direction+(aE.n!=1?aE.n:"")+"axis"]=aE}});return aC};aq.getXAxes=function(){return p};aq.getYAxes=function(){return aw};aq.c2p=C;aq.p2c=ar;aq.getOptions=function(){return O};aq.highlight=x;aq.unhighlight=T;aq.triggerRedrawOverlay=f;aq.pointOffset=function(aB){return{left:parseInt(p[aA(aB,"x")-1].p2c(+aB.x)+q.left),top:parseInt(aw[aA(aB,"y")-1].p2c(+aB.y)+q.top)}};aq.shutdown=ag;aq.resize=function(){B();g(az);g(ad)};aq.hooks=ak;F(aq);Z(J);X();aj(ai);t();W();ah();function an(aD,aB){aB=[aq].concat(aB);for(var aC=0;aC<aD.length;++aC){aD[aC].apply(this,aB)}}function F(){for(var aB=0;aB<af.length;++aB){var aC=af[aB];aC.init(aq);if(aC.options){c.extend(true,O,aC.options)}}}function Z(aC){var aB;c.extend(true,O,aC);if(O.xaxis.color==null){O.xaxis.color=O.grid.color}if(O.yaxis.color==null){O.yaxis.color=O.grid.color}if(O.xaxis.tickColor==null){O.xaxis.tickColor=O.grid.tickColor}if(O.yaxis.tickColor==null){O.yaxis.tickColor=O.grid.tickColor}if(O.grid.borderColor==null){O.grid.borderColor=O.grid.color}if(O.grid.tickColor==null){O.grid.tickColor=c.color.parse(O.grid.color).scale("a",0.22).toString()}for(aB=0;aB<Math.max(1,O.xaxes.length);++aB){O.xaxes[aB]=c.extend(true,{},O.xaxis,O.xaxes[aB])}for(aB=0;aB<Math.max(1,O.yaxes.length);++aB){O.yaxes[aB]=c.extend(true,{},O.yaxis,O.yaxes[aB])}if(O.xaxis.noTicks&&O.xaxis.ticks==null){O.xaxis.ticks=O.xaxis.noTicks}if(O.yaxis.noTicks&&O.yaxis.ticks==null){O.yaxis.ticks=O.yaxis.noTicks}if(O.x2axis){O.xaxes[1]=c.extend(true,{},O.xaxis,O.x2axis);O.xaxes[1].position="top"}if(O.y2axis){O.yaxes[1]=c.extend(true,{},O.yaxis,O.y2axis);O.yaxes[1].position="right"}if(O.grid.coloredAreas){O.grid.markings=O.grid.coloredAreas}if(O.grid.coloredAreasColor){O.grid.markingsColor=O.grid.coloredAreasColor}if(O.lines){c.extend(true,O.series.lines,O.lines)}if(O.points){c.extend(true,O.series.points,O.points)}if(O.bars){c.extend(true,O.series.bars,O.bars)}if(O.shadowSize!=null){O.series.shadowSize=O.shadowSize}for(aB=0;aB<O.xaxes.length;++aB){V(p,aB+1).options=O.xaxes[aB]}for(aB=0;aB<O.yaxes.length;++aB){V(aw,aB+1).options=O.yaxes[aB]}for(var aD in ak){if(O.hooks[aD]&&O.hooks[aD].length){ak[aD]=ak[aD].concat(O.hooks[aD])}}an(ak.processOptions,[O])}function aj(aB){Q=Y(aB);ax();z()}function Y(aE){var aC=[];for(var aB=0;aB<aE.length;++aB){var aD=c.extend(true,{},O.series);if(aE[aB].data!=null){aD.data=aE[aB].data;delete aE[aB].data;c.extend(true,aD,aE[aB]);aE[aB].data=aD.data}else{aD.data=aE[aB]}aC.push(aD)}return aC}function aA(aC,aD){var aB=aC[aD+"axis"];if(typeof aB=="object"){aB=aB.n}if(typeof aB!="number"){aB=1}return aB}function m(){return c.grep(p.concat(aw),function(aB){return aB})}function C(aE){var aC={},aB,aD;for(aB=0;aB<p.length;++aB){aD=p[aB];if(aD&&aD.used){aC["x"+aD.n]=aD.c2p(aE.left)}}for(aB=0;aB<aw.length;++aB){aD=aw[aB];if(aD&&aD.used){aC["y"+aD.n]=aD.c2p(aE.top)}}if(aC.x1!==undefined){aC.x=aC.x1}if(aC.y1!==undefined){aC.y=aC.y1}return aC}function ar(aF){var aD={},aC,aE,aB;for(aC=0;aC<p.length;++aC){aE=p[aC];if(aE&&aE.used){aB="x"+aE.n;if(aF[aB]==null&&aE.n==1){aB="x"}if(aF[aB]!=null){aD.left=aE.p2c(aF[aB]);break}}}for(aC=0;aC<aw.length;++aC){aE=aw[aC];if(aE&&aE.used){aB="y"+aE.n;if(aF[aB]==null&&aE.n==1){aB="y"}if(aF[aB]!=null){aD.top=aE.p2c(aF[aB]);break}}}return aD}function V(aC,aB){if(!aC[aB-1]){aC[aB-1]={n:aB,direction:aC==p?"x":"y",options:c.extend(true,{},aC==p?O.xaxis:O.yaxis)}}return aC[aB-1]}function ax(){var aG;var aM=Q.length,aB=[],aE=[];for(aG=0;aG<Q.length;++aG){var aJ=Q[aG].color;if(aJ!=null){--aM;if(typeof aJ=="number"){aE.push(aJ)}else{aB.push(c.color.parse(Q[aG].color))}}}for(aG=0;aG<aE.length;++aG){aM=Math.max(aM,aE[aG]+1)}var aC=[],aF=0;aG=0;while(aC.length<aM){var aI;if(O.colors.length==aG){aI=c.color.make(100,100,100)}else{aI=c.color.parse(O.colors[aG])}var aD=aF%2==1?-1:1;aI.scale("rgb",1+aD*Math.ceil(aF/2)*0.2);aC.push(aI);++aG;if(aG>=O.colors.length){aG=0;++aF}}var aH=0,aN;for(aG=0;aG<Q.length;++aG){aN=Q[aG];if(aN.color==null){aN.color=aC[aH].toString();++aH}else{if(typeof aN.color=="number"){aN.color=aC[aN.color].toString()}}if(aN.lines.show==null){var aL,aK=true;for(aL in aN){if(aN[aL]&&aN[aL].show){aK=false;break}}if(aK){aN.lines.show=true}}aN.xaxis=V(p,aA(aN,"x"));aN.yaxis=V(aw,aA(aN,"y"))}}function z(){var aO=Number.POSITIVE_INFINITY,aI=Number.NEGATIVE_INFINITY,aB=Number.MAX_VALUE,aU,aS,aR,aN,aD,aJ,aT,aP,aH,aG,aC,a0,aX,aL;function aF(a3,a2,a1){if(a2<a3.datamin&&a2!=-aB){a3.datamin=a2}if(a1>a3.datamax&&a1!=aB){a3.datamax=a1}}c.each(m(),function(a1,a2){a2.datamin=aO;a2.datamax=aI;a2.used=false});for(aU=0;aU<Q.length;++aU){aJ=Q[aU];aJ.datapoints={points:[]};an(ak.processRawData,[aJ,aJ.data,aJ.datapoints])}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];var aZ=aJ.data,aW=aJ.datapoints.format;if(!aW){aW=[];aW.push({x:true,number:true,required:true});aW.push({y:true,number:true,required:true});if(aJ.bars.show||(aJ.lines.show&&aJ.lines.fill)){aW.push({y:true,number:true,required:false,defaultValue:0});if(aJ.bars.horizontal){delete aW[aW.length-1].y;aW[aW.length-1].x=true}}aJ.datapoints.format=aW}if(aJ.datapoints.pointsize!=null){continue}aJ.datapoints.pointsize=aW.length;aP=aJ.datapoints.pointsize;aT=aJ.datapoints.points;insertSteps=aJ.lines.show&&aJ.lines.steps;aJ.xaxis.used=aJ.yaxis.used=true;for(aS=aR=0;aS<aZ.length;++aS,aR+=aP){aL=aZ[aS];var aE=aL==null;if(!aE){for(aN=0;aN<aP;++aN){a0=aL[aN];aX=aW[aN];if(aX){if(aX.number&&a0!=null){a0=+a0;if(isNaN(a0)){a0=null}else{if(a0==Infinity){a0=aB}else{if(a0==-Infinity){a0=-aB}}}}if(a0==null){if(aX.required){aE=true}if(aX.defaultValue!=null){a0=aX.defaultValue}}}aT[aR+aN]=a0}}if(aE){for(aN=0;aN<aP;++aN){a0=aT[aR+aN];if(a0!=null){aX=aW[aN];if(aX.x){aF(aJ.xaxis,a0,a0)}if(aX.y){aF(aJ.yaxis,a0,a0)}}aT[aR+aN]=null}}else{if(insertSteps&&aR>0&&aT[aR-aP]!=null&&aT[aR-aP]!=aT[aR]&&aT[aR-aP+1]!=aT[aR+1]){for(aN=0;aN<aP;++aN){aT[aR+aP+aN]=aT[aR+aN]}aT[aR+1]=aT[aR-aP+1];aR+=aP}}}}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];an(ak.processDatapoints,[aJ,aJ.datapoints])}for(aU=0;aU<Q.length;++aU){aJ=Q[aU];aT=aJ.datapoints.points,aP=aJ.datapoints.pointsize;var aK=aO,aQ=aO,aM=aI,aV=aI;for(aS=0;aS<aT.length;aS+=aP){if(aT[aS]==null){continue}for(aN=0;aN<aP;++aN){a0=aT[aS+aN];aX=aW[aN];if(!aX||a0==aB||a0==-aB){continue}if(aX.x){if(a0<aK){aK=a0}if(a0>aM){aM=a0}}if(aX.y){if(a0<aQ){aQ=a0}if(a0>aV){aV=a0}}}}if(aJ.bars.show){var aY=aJ.bars.align=="left"?0:-aJ.bars.barWidth/2;if(aJ.bars.horizontal){aQ+=aY;aV+=aY+aJ.bars.barWidth}else{aK+=aY;aM+=aY+aJ.bars.barWidth}}aF(aJ.xaxis,aK,aM);aF(aJ.yaxis,aQ,aV)}c.each(m(),function(a1,a2){if(a2.datamin==aO){a2.datamin=null}if(a2.datamax==aI){a2.datamax=null}})}function j(aB,aC){var aD=document.createElement("canvas");aD.className=aC;aD.width=G;aD.height=I;if(!aB){c(aD).css({position:"absolute",left:0,top:0})}c(aD).appendTo(av);if(!aD.getContext){aD=window.G_vmlCanvasManager.initElement(aD)}aD.getContext("2d").save();return aD}function B(){G=av.width();I=av.height();if(G<=0||I<=0){throw"Invalid dimensions for plot, width = "+G+", height = "+I}}function g(aC){if(aC.width!=G){aC.width=G}if(aC.height!=I){aC.height=I}var aB=aC.getContext("2d");aB.restore();aB.save()}function X(){var aC,aB=av.children("canvas.base"),aD=av.children("canvas.overlay");if(aB.length==0||aD==0){av.html("");av.css({padding:0});if(av.css("position")=="static"){av.css("position","relative")}B();az=j(true,"base");ad=j(false,"overlay");aC=false}else{az=aB.get(0);ad=aD.get(0);aC=true}H=az.getContext("2d");A=ad.getContext("2d");y=c([ad,az]);if(aC){av.data("plot").shutdown();aq.resize();A.clearRect(0,0,G,I);y.unbind();av.children().not([az,ad]).remove()}av.data("plot",aq)}function ah(){if(O.grid.hoverable){y.mousemove(aa);y.mouseleave(l)}if(O.grid.clickable){y.click(R)}an(ak.bindEvents,[y])}function ag(){if(M){clearTimeout(M)}y.unbind("mousemove",aa);y.unbind("mouseleave",l);y.unbind("click",R);an(ak.shutdown,[y])}function r(aG){function aC(aH){return aH}var aF,aB,aD=aG.options.transform||aC,aE=aG.options.inverseTransform;if(aG.direction=="x"){aF=aG.scale=h/Math.abs(aD(aG.max)-aD(aG.min));aB=Math.min(aD(aG.max),aD(aG.min))}else{aF=aG.scale=w/Math.abs(aD(aG.max)-aD(aG.min));aF=-aF;aB=Math.max(aD(aG.max),aD(aG.min))}if(aD==aC){aG.p2c=function(aH){return(aH-aB)*aF}}else{aG.p2c=function(aH){return(aD(aH)-aB)*aF}}if(!aE){aG.c2p=function(aH){return aB+aH/aF}}else{aG.c2p=function(aH){return aE(aB+aH/aF)}}}function L(aD){var aB=aD.options,aF,aJ=aD.ticks||[],aI=[],aE,aK=aB.labelWidth,aG=aB.labelHeight,aC;function aH(aM,aL){return c('<div style="position:absolute;top:-10000px;'+aL+'font-size:smaller"><div class="'+aD.direction+"Axis "+aD.direction+aD.n+'Axis">'+aM.join("")+"</div></div>").appendTo(av)}if(aD.direction=="x"){if(aK==null){aK=Math.floor(G/(aJ.length>0?aJ.length:1))}if(aG==null){aI=[];for(aF=0;aF<aJ.length;++aF){aE=aJ[aF].label;if(aE){aI.push('<div class="tickLabel" style="float:left;width:'+aK+'px">'+aE+"</div>")}}if(aI.length>0){aI.push('<div style="clear:left"></div>');aC=aH(aI,"width:10000px;");aG=aC.height();aC.remove()}}}else{if(aK==null||aG==null){for(aF=0;aF<aJ.length;++aF){aE=aJ[aF].label;if(aE){aI.push('<div class="tickLabel">'+aE+"</div>")}}if(aI.length>0){aC=aH(aI,"");if(aK==null){aK=aC.children().width()}if(aG==null){aG=aC.find("div.tickLabel").height()}aC.remove()}}}if(aK==null){aK=0}if(aG==null){aG=0}aD.labelWidth=aK;aD.labelHeight=aG}function au(aD){var aC=aD.labelWidth,aL=aD.labelHeight,aH=aD.options.position,aF=aD.options.tickLength,aG=O.grid.axisMargin,aJ=O.grid.labelMargin,aK=aD.direction=="x"?p:aw,aE;var aB=c.grep(aK,function(aN){return aN&&aN.options.position==aH&&aN.reserveSpace});if(c.inArray(aD,aB)==aB.length-1){aG=0}if(aF==null){aF="full"}var aI=c.grep(aK,function(aN){return aN&&aN.reserveSpace});var aM=c.inArray(aD,aI)==0;if(!aM&&aF=="full"){aF=5}if(!isNaN(+aF)){aJ+=+aF}if(aD.direction=="x"){aL+=aJ;if(aH=="bottom"){q.bottom+=aL+aG;aD.box={top:I-q.bottom,height:aL}}else{aD.box={top:q.top+aG,height:aL};q.top+=aL+aG}}else{aC+=aJ;if(aH=="left"){aD.box={left:q.left+aG,width:aC};q.left+=aC+aG}else{q.right+=aC+aG;aD.box={left:G-q.right,width:aC}}}aD.position=aH;aD.tickLength=aF;aD.box.padding=aJ;aD.innermost=aM}function U(aB){if(aB.direction=="x"){aB.box.left=q.left;aB.box.width=h}else{aB.box.top=q.top;aB.box.height=w}}function t(){var aC,aE=m();c.each(aE,function(aF,aG){aG.show=aG.options.show;if(aG.show==null){aG.show=aG.used}aG.reserveSpace=aG.show||aG.options.reserveSpace;n(aG)});allocatedAxes=c.grep(aE,function(aF){return aF.reserveSpace});q.left=q.right=q.top=q.bottom=0;if(O.grid.show){c.each(allocatedAxes,function(aF,aG){S(aG);P(aG);ap(aG,aG.ticks);L(aG)});for(aC=allocatedAxes.length-1;aC>=0;--aC){au(allocatedAxes[aC])}var aD=O.grid.minBorderMargin;if(aD==null){aD=0;for(aC=0;aC<Q.length;++aC){aD=Math.max(aD,Q[aC].points.radius+Q[aC].points.lineWidth/2)}}for(var aB in q){q[aB]+=O.grid.borderWidth;q[aB]=Math.max(aD,q[aB])}}h=G-q.left-q.right;w=I-q.bottom-q.top;c.each(aE,function(aF,aG){r(aG)});if(O.grid.show){c.each(allocatedAxes,function(aF,aG){U(aG)});k()}o()}function n(aE){var aF=aE.options,aD=+(aF.min!=null?aF.min:aE.datamin),aB=+(aF.max!=null?aF.max:aE.datamax),aH=aB-aD;if(aH==0){var aC=aB==0?1:0.01;if(aF.min==null){aD-=aC}if(aF.max==null||aF.min!=null){aB+=aC}}else{var aG=aF.autoscaleMargin;if(aG!=null){if(aF.min==null){aD-=aH*aG;if(aD<0&&aE.datamin!=null&&aE.datamin>=0){aD=0}}if(aF.max==null){aB+=aH*aG;if(aB>0&&aE.datamax!=null&&aE.datamax<=0){aB=0}}}}aE.min=aD;aE.max=aB}function S(aG){var aM=aG.options;var aH;if(typeof aM.ticks=="number"&&aM.ticks>0){aH=aM.ticks}else{aH=0.3*Math.sqrt(aG.direction=="x"?G:I)}var aT=(aG.max-aG.min)/aH,aO,aB,aN,aR,aS,aQ,aI;if(aM.mode=="time"){var aJ={second:1000,minute:60*1000,hour:60*60*1000,day:24*60*60*1000,month:30*24*60*60*1000,year:365.2425*24*60*60*1000};var aK=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[0.25,"month"],[0.5,"month"],[1,"month"],[2,"month"],[3,"month"],[6,"month"],[1,"year"]];var aC=0;if(aM.minTickSize!=null){if(typeof aM.tickSize=="number"){aC=aM.tickSize}else{aC=aM.minTickSize[0]*aJ[aM.minTickSize[1]]}}for(var aS=0;aS<aK.length-1;++aS){if(aT<(aK[aS][0]*aJ[aK[aS][1]]+aK[aS+1][0]*aJ[aK[aS+1][1]])/2&&aK[aS][0]*aJ[aK[aS][1]]>=aC){break}}aO=aK[aS][0];aN=aK[aS][1];if(aN=="year"){aQ=Math.pow(10,Math.floor(Math.log(aT/aJ.year)/Math.LN10));aI=(aT/aJ.year)/aQ;if(aI<1.5){aO=1}else{if(aI<3){aO=2}else{if(aI<7.5){aO=5}else{aO=10}}}aO*=aQ}aG.tickSize=aM.tickSize||[aO,aN];aB=function(aX){var a2=[],a0=aX.tickSize[0],a3=aX.tickSize[1],a1=new Date(aX.min);var aW=a0*aJ[a3];if(a3=="second"){a1.setUTCSeconds(a(a1.getUTCSeconds(),a0))}if(a3=="minute"){a1.setUTCMinutes(a(a1.getUTCMinutes(),a0))}if(a3=="hour"){a1.setUTCHours(a(a1.getUTCHours(),a0))}if(a3=="month"){a1.setUTCMonth(a(a1.getUTCMonth(),a0))}if(a3=="year"){a1.setUTCFullYear(a(a1.getUTCFullYear(),a0))}a1.setUTCMilliseconds(0);if(aW>=aJ.minute){a1.setUTCSeconds(0)}if(aW>=aJ.hour){a1.setUTCMinutes(0)}if(aW>=aJ.day){a1.setUTCHours(0)}if(aW>=aJ.day*4){a1.setUTCDate(1)}if(aW>=aJ.year){a1.setUTCMonth(0)}var a5=0,a4=Number.NaN,aY;do{aY=a4;a4=a1.getTime();a2.push(a4);if(a3=="month"){if(a0<1){a1.setUTCDate(1);var aV=a1.getTime();a1.setUTCMonth(a1.getUTCMonth()+1);var aZ=a1.getTime();a1.setTime(a4+a5*aJ.hour+(aZ-aV)*a0);a5=a1.getUTCHours();a1.setUTCHours(0)}else{a1.setUTCMonth(a1.getUTCMonth()+a0)}}else{if(a3=="year"){a1.setUTCFullYear(a1.getUTCFullYear()+a0)}else{a1.setTime(a4+aW)}}}while(a4<aX.max&&a4!=aY);return a2};aR=function(aV,aY){var a0=new Date(aV);if(aM.timeformat!=null){return c.plot.formatDate(a0,aM.timeformat,aM.monthNames)}var aW=aY.tickSize[0]*aJ[aY.tickSize[1]];var aX=aY.max-aY.min;var aZ=(aM.twelveHourClock)?" %p":"";if(aW<aJ.minute){fmt="%h:%M:%S"+aZ}else{if(aW<aJ.day){if(aX<2*aJ.day){fmt="%h:%M"+aZ}else{fmt="%b %d %h:%M"+aZ}}else{if(aW<aJ.month){fmt="%b %d"}else{if(aW<aJ.year){if(aX<aJ.year){fmt="%b"}else{fmt="%b %y"}}else{fmt="%y"}}}}return c.plot.formatDate(a0,fmt,aM.monthNames)}}else{var aU=aM.tickDecimals;var aP=-Math.floor(Math.log(aT)/Math.LN10);if(aU!=null&&aP>aU){aP=aU}aQ=Math.pow(10,-aP);aI=aT/aQ;if(aI<1.5){aO=1}else{if(aI<3){aO=2;if(aI>2.25&&(aU==null||aP+1<=aU)){aO=2.5;++aP}}else{if(aI<7.5){aO=5}else{aO=10}}}aO*=aQ;if(aM.minTickSize!=null&&aO<aM.minTickSize){aO=aM.minTickSize}aG.tickDecimals=Math.max(0,aU!=null?aU:aP);aG.tickSize=aM.tickSize||aO;aB=function(aX){var aZ=[];var a0=a(aX.min,aX.tickSize),aW=0,aV=Number.NaN,aY;do{aY=aV;aV=a0+aW*aX.tickSize;aZ.push(aV);++aW}while(aV<aX.max&&aV!=aY);return aZ};aR=function(aV,aW){return aV.toFixed(aW.tickDecimals)}}if(aM.alignTicksWithAxis!=null){var aF=(aG.direction=="x"?p:aw)[aM.alignTicksWithAxis-1];if(aF&&aF.used&&aF!=aG){var aL=aB(aG);if(aL.length>0){if(aM.min==null){aG.min=Math.min(aG.min,aL[0])}if(aM.max==null&&aL.length>1){aG.max=Math.max(aG.max,aL[aL.length-1])}}aB=function(aX){var aY=[],aV,aW;for(aW=0;aW<aF.ticks.length;++aW){aV=(aF.ticks[aW].v-aF.min)/(aF.max-aF.min);aV=aX.min+aV*(aX.max-aX.min);aY.push(aV)}return aY};if(aG.mode!="time"&&aM.tickDecimals==null){var aE=Math.max(0,-Math.floor(Math.log(aT)/Math.LN10)+1),aD=aB(aG);if(!(aD.length>1&&/\..*0$/.test((aD[1]-aD[0]).toFixed(aE)))){aG.tickDecimals=aE}}}}aG.tickGenerator=aB;if(c.isFunction(aM.tickFormatter)){aG.tickFormatter=function(aV,aW){return""+aM.tickFormatter(aV,aW)}}else{aG.tickFormatter=aR}}function P(aF){var aH=aF.options.ticks,aG=[];if(aH==null||(typeof aH=="number"&&aH>0)){aG=aF.tickGenerator(aF)}else{if(aH){if(c.isFunction(aH)){aG=aH({min:aF.min,max:aF.max})}else{aG=aH}}}var aE,aB;aF.ticks=[];for(aE=0;aE<aG.length;++aE){var aC=null;var aD=aG[aE];if(typeof aD=="object"){aB=+aD[0];if(aD.length>1){aC=aD[1]}}else{aB=+aD}if(aC==null){aC=aF.tickFormatter(aB,aF)}if(!isNaN(aB)){aF.ticks.push({v:aB,label:aC})}}}function ap(aB,aC){if(aB.options.autoscaleMargin&&aC.length>0){if(aB.options.min==null){aB.min=Math.min(aB.min,aC[0].v)}if(aB.options.max==null&&aC.length>1){aB.max=Math.max(aB.max,aC[aC.length-1].v)}}}function W(){H.clearRect(0,0,G,I);var aC=O.grid;if(aC.show&&aC.backgroundColor){N()}if(aC.show&&!aC.aboveData){ac()}for(var aB=0;aB<Q.length;++aB){an(ak.drawSeries,[H,Q[aB]]);d(Q[aB])}an(ak.draw,[H]);if(aC.show&&aC.aboveData){ac()}}function D(aB,aI){var aE,aH,aG,aD,aF=m();for(i=0;i<aF.length;++i){aE=aF[i];if(aE.direction==aI){aD=aI+aE.n+"axis";if(!aB[aD]&&aE.n==1){aD=aI+"axis"}if(aB[aD]){aH=aB[aD].from;aG=aB[aD].to;break}}}if(!aB[aD]){aE=aI=="x"?p[0]:aw[0];aH=aB[aI+"1"];aG=aB[aI+"2"]}if(aH!=null&&aG!=null&&aH>aG){var aC=aH;aH=aG;aG=aC}return{from:aH,to:aG,axis:aE}}function N(){H.save();H.translate(q.left,q.top);H.fillStyle=am(O.grid.backgroundColor,w,0,"rgba(255, 255, 255, 0)");H.fillRect(0,0,h,w);H.restore()}function ac(){var aF;H.save();H.translate(q.left,q.top);var aH=O.grid.markings;if(aH){if(c.isFunction(aH)){var aK=aq.getAxes();aK.xmin=aK.xaxis.min;aK.xmax=aK.xaxis.max;aK.ymin=aK.yaxis.min;aK.ymax=aK.yaxis.max;aH=aH(aK)}for(aF=0;aF<aH.length;++aF){var aD=aH[aF],aC=D(aD,"x"),aI=D(aD,"y");if(aC.from==null){aC.from=aC.axis.min}if(aC.to==null){aC.to=aC.axis.max}if(aI.from==null){aI.from=aI.axis.min}if(aI.to==null){aI.to=aI.axis.max}if(aC.to<aC.axis.min||aC.from>aC.axis.max||aI.to<aI.axis.min||aI.from>aI.axis.max){continue}aC.from=Math.max(aC.from,aC.axis.min);aC.to=Math.min(aC.to,aC.axis.max);aI.from=Math.max(aI.from,aI.axis.min);aI.to=Math.min(aI.to,aI.axis.max);if(aC.from==aC.to&&aI.from==aI.to){continue}aC.from=aC.axis.p2c(aC.from);aC.to=aC.axis.p2c(aC.to);aI.from=aI.axis.p2c(aI.from);aI.to=aI.axis.p2c(aI.to);if(aC.from==aC.to||aI.from==aI.to){H.beginPath();H.strokeStyle=aD.color||O.grid.markingsColor;H.lineWidth=aD.lineWidth||O.grid.markingsLineWidth;H.moveTo(aC.from,aI.from);H.lineTo(aC.to,aI.to);H.stroke()}else{H.fillStyle=aD.color||O.grid.markingsColor;H.fillRect(aC.from,aI.to,aC.to-aC.from,aI.from-aI.to)}}}var aK=m(),aM=O.grid.borderWidth;for(var aE=0;aE<aK.length;++aE){var aB=aK[aE],aG=aB.box,aQ=aB.tickLength,aN,aL,aP,aJ;if(!aB.show||aB.ticks.length==0){continue}H.strokeStyle=aB.options.tickColor||c.color.parse(aB.options.color).scale("a",0.22).toString();H.lineWidth=1;if(aB.direction=="x"){aN=0;if(aQ=="full"){aL=(aB.position=="top"?0:w)}else{aL=aG.top-q.top+(aB.position=="top"?aG.height:0)}}else{aL=0;if(aQ=="full"){aN=(aB.position=="left"?0:h)}else{aN=aG.left-q.left+(aB.position=="left"?aG.width:0)}}if(!aB.innermost){H.beginPath();aP=aJ=0;if(aB.direction=="x"){aP=h}else{aJ=w}if(H.lineWidth==1){aN=Math.floor(aN)+0.5;aL=Math.floor(aL)+0.5}H.moveTo(aN,aL);H.lineTo(aN+aP,aL+aJ);H.stroke()}H.beginPath();for(aF=0;aF<aB.ticks.length;++aF){var aO=aB.ticks[aF].v;aP=aJ=0;if(aO<aB.min||aO>aB.max||(aQ=="full"&&aM>0&&(aO==aB.min||aO==aB.max))){continue}if(aB.direction=="x"){aN=aB.p2c(aO);aJ=aQ=="full"?-w:aQ;if(aB.position=="top"){aJ=-aJ}}else{aL=aB.p2c(aO);aP=aQ=="full"?-h:aQ;if(aB.position=="left"){aP=-aP}}if(H.lineWidth==1){if(aB.direction=="x"){aN=Math.floor(aN)+0.5}else{aL=Math.floor(aL)+0.5}}H.moveTo(aN,aL);H.lineTo(aN+aP,aL+aJ)}H.stroke()}if(aM){H.lineWidth=aM;H.strokeStyle=O.grid.borderColor;H.strokeRect(-aM/2,-aM/2,h+aM,w+aM)}H.restore()}function k(){av.find(".tickLabels").remove();var aG=['<div class="tickLabels" style="font-size:smaller">'];var aJ=m();for(var aD=0;aD<aJ.length;++aD){var aC=aJ[aD],aF=aC.box;if(!aC.show){continue}aG.push('<div class="'+aC.direction+"Axis "+aC.direction+aC.n+'Axis" style="color:'+aC.options.color+'">');for(var aE=0;aE<aC.ticks.length;++aE){var aH=aC.ticks[aE];if(!aH.label||aH.v<aC.min||aH.v>aC.max){continue}var aK={},aI;if(aC.direction=="x"){aI="center";aK.left=Math.round(q.left+aC.p2c(aH.v)-aC.labelWidth/2);if(aC.position=="bottom"){aK.top=aF.top+aF.padding}else{aK.bottom=I-(aF.top+aF.height-aF.padding)}}else{aK.top=Math.round(q.top+aC.p2c(aH.v)-aC.labelHeight/2);if(aC.position=="left"){aK.right=G-(aF.left+aF.width-aF.padding);aI="right"}else{aK.left=aF.left+aF.padding;aI="left"}}aK.width=aC.labelWidth;var aB=["position:absolute","text-align:"+aI];for(var aL in aK){aB.push(aL+":"+aK[aL]+"px")}aG.push('<div class="tickLabel" style="'+aB.join(";")+'">'+aH.label+"</div>")}aG.push("</div>")}aG.push("</div>");av.append(aG.join(""))}function d(aB){if(aB.lines.show){at(aB)}if(aB.bars.show){e(aB)}if(aB.points.show){ao(aB)}}function at(aE){function aD(aP,aQ,aI,aU,aT){var aV=aP.points,aJ=aP.pointsize,aN=null,aM=null;H.beginPath();for(var aO=aJ;aO<aV.length;aO+=aJ){var aL=aV[aO-aJ],aS=aV[aO-aJ+1],aK=aV[aO],aR=aV[aO+1];if(aL==null||aK==null){continue}if(aS<=aR&&aS<aT.min){if(aR<aT.min){continue}aL=(aT.min-aS)/(aR-aS)*(aK-aL)+aL;aS=aT.min}else{if(aR<=aS&&aR<aT.min){if(aS<aT.min){continue}aK=(aT.min-aS)/(aR-aS)*(aK-aL)+aL;aR=aT.min}}if(aS>=aR&&aS>aT.max){if(aR>aT.max){continue}aL=(aT.max-aS)/(aR-aS)*(aK-aL)+aL;aS=aT.max}else{if(aR>=aS&&aR>aT.max){if(aS>aT.max){continue}aK=(aT.max-aS)/(aR-aS)*(aK-aL)+aL;aR=aT.max}}if(aL<=aK&&aL<aU.min){if(aK<aU.min){continue}aS=(aU.min-aL)/(aK-aL)*(aR-aS)+aS;aL=aU.min}else{if(aK<=aL&&aK<aU.min){if(aL<aU.min){continue}aR=(aU.min-aL)/(aK-aL)*(aR-aS)+aS;aK=aU.min}}if(aL>=aK&&aL>aU.max){if(aK>aU.max){continue}aS=(aU.max-aL)/(aK-aL)*(aR-aS)+aS;aL=aU.max}else{if(aK>=aL&&aK>aU.max){if(aL>aU.max){continue}aR=(aU.max-aL)/(aK-aL)*(aR-aS)+aS;aK=aU.max}}if(aL!=aN||aS!=aM){H.moveTo(aU.p2c(aL)+aQ,aT.p2c(aS)+aI)}aN=aK;aM=aR;H.lineTo(aU.p2c(aK)+aQ,aT.p2c(aR)+aI)}H.stroke()}function aF(aI,aQ,aP){var aW=aI.points,aV=aI.pointsize,aN=Math.min(Math.max(0,aP.min),aP.max),aX=0,aU,aT=false,aM=1,aL=0,aR=0;while(true){if(aV>0&&aX>aW.length+aV){break}aX+=aV;var aZ=aW[aX-aV],aK=aW[aX-aV+aM],aY=aW[aX],aJ=aW[aX+aM];if(aT){if(aV>0&&aZ!=null&&aY==null){aR=aX;aV=-aV;aM=2;continue}if(aV<0&&aX==aL+aV){H.fill();aT=false;aV=-aV;aM=1;aX=aL=aR+aV;continue}}if(aZ==null||aY==null){continue}if(aZ<=aY&&aZ<aQ.min){if(aY<aQ.min){continue}aK=(aQ.min-aZ)/(aY-aZ)*(aJ-aK)+aK;aZ=aQ.min}else{if(aY<=aZ&&aY<aQ.min){if(aZ<aQ.min){continue}aJ=(aQ.min-aZ)/(aY-aZ)*(aJ-aK)+aK;aY=aQ.min}}if(aZ>=aY&&aZ>aQ.max){if(aY>aQ.max){continue}aK=(aQ.max-aZ)/(aY-aZ)*(aJ-aK)+aK;aZ=aQ.max}else{if(aY>=aZ&&aY>aQ.max){if(aZ>aQ.max){continue}aJ=(aQ.max-aZ)/(aY-aZ)*(aJ-aK)+aK;aY=aQ.max}}if(!aT){H.beginPath();H.moveTo(aQ.p2c(aZ),aP.p2c(aN));aT=true}if(aK>=aP.max&&aJ>=aP.max){H.lineTo(aQ.p2c(aZ),aP.p2c(aP.max));H.lineTo(aQ.p2c(aY),aP.p2c(aP.max));continue}else{if(aK<=aP.min&&aJ<=aP.min){H.lineTo(aQ.p2c(aZ),aP.p2c(aP.min));H.lineTo(aQ.p2c(aY),aP.p2c(aP.min));continue}}var aO=aZ,aS=aY;if(aK<=aJ&&aK<aP.min&&aJ>=aP.min){aZ=(aP.min-aK)/(aJ-aK)*(aY-aZ)+aZ;aK=aP.min}else{if(aJ<=aK&&aJ<aP.min&&aK>=aP.min){aY=(aP.min-aK)/(aJ-aK)*(aY-aZ)+aZ;aJ=aP.min}}if(aK>=aJ&&aK>aP.max&&aJ<=aP.max){aZ=(aP.max-aK)/(aJ-aK)*(aY-aZ)+aZ;aK=aP.max}else{if(aJ>=aK&&aJ>aP.max&&aK<=aP.max){aY=(aP.max-aK)/(aJ-aK)*(aY-aZ)+aZ;aJ=aP.max}}if(aZ!=aO){H.lineTo(aQ.p2c(aO),aP.p2c(aK))}H.lineTo(aQ.p2c(aZ),aP.p2c(aK));H.lineTo(aQ.p2c(aY),aP.p2c(aJ));if(aY!=aS){H.lineTo(aQ.p2c(aY),aP.p2c(aJ));H.lineTo(aQ.p2c(aS),aP.p2c(aJ))}}}H.save();H.translate(q.left,q.top);H.lineJoin="round";var aG=aE.lines.lineWidth,aB=aE.shadowSize;if(aG>0&&aB>0){H.lineWidth=aB;H.strokeStyle="rgba(0,0,0,0.1)";var aH=Math.PI/18;aD(aE.datapoints,Math.sin(aH)*(aG/2+aB/2),Math.cos(aH)*(aG/2+aB/2),aE.xaxis,aE.yaxis);H.lineWidth=aB/2;aD(aE.datapoints,Math.sin(aH)*(aG/2+aB/4),Math.cos(aH)*(aG/2+aB/4),aE.xaxis,aE.yaxis)}H.lineWidth=aG;H.strokeStyle=aE.color;var aC=ae(aE.lines,aE.color,0,w);if(aC){H.fillStyle=aC;aF(aE.datapoints,aE.xaxis,aE.yaxis)}if(aG>0){aD(aE.datapoints,0,0,aE.xaxis,aE.yaxis)}H.restore()}function ao(aE){function aH(aN,aM,aU,aK,aS,aT,aQ,aJ){var aR=aN.points,aI=aN.pointsize;for(var aL=0;aL<aR.length;aL+=aI){var aP=aR[aL],aO=aR[aL+1];if(aP==null||aP<aT.min||aP>aT.max||aO<aQ.min||aO>aQ.max){continue}H.beginPath();aP=aT.p2c(aP);aO=aQ.p2c(aO)+aK;if(aJ=="circle"){H.arc(aP,aO,aM,0,aS?Math.PI:Math.PI*2,false)}else{aJ(H,aP,aO,aM,aS)}H.closePath();if(aU){H.fillStyle=aU;H.fill()}H.stroke()}}H.save();H.translate(q.left,q.top);var aG=aE.points.lineWidth,aC=aE.shadowSize,aB=aE.points.radius,aF=aE.points.symbol;if(aG>0&&aC>0){var aD=aC/2;H.lineWidth=aD;H.strokeStyle="rgba(0,0,0,0.1)";aH(aE.datapoints,aB,null,aD+aD/2,true,aE.xaxis,aE.yaxis,aF);H.strokeStyle="rgba(0,0,0,0.2)";aH(aE.datapoints,aB,null,aD/2,true,aE.xaxis,aE.yaxis,aF)}H.lineWidth=aG;H.strokeStyle=aE.color;aH(aE.datapoints,aB,ae(aE.points,aE.color),0,false,aE.xaxis,aE.yaxis,aF);H.restore()}function E(aN,aM,aV,aI,aQ,aF,aD,aL,aK,aU,aR,aC){var aE,aT,aJ,aP,aG,aB,aO,aH,aS;if(aR){aH=aB=aO=true;aG=false;aE=aV;aT=aN;aP=aM+aI;aJ=aM+aQ;if(aT<aE){aS=aT;aT=aE;aE=aS;aG=true;aB=false}}else{aG=aB=aO=true;aH=false;aE=aN+aI;aT=aN+aQ;aJ=aV;aP=aM;if(aP<aJ){aS=aP;aP=aJ;aJ=aS;aH=true;aO=false}}if(aT<aL.min||aE>aL.max||aP<aK.min||aJ>aK.max){return}if(aE<aL.min){aE=aL.min;aG=false}if(aT>aL.max){aT=aL.max;aB=false}if(aJ<aK.min){aJ=aK.min;aH=false}if(aP>aK.max){aP=aK.max;aO=false}aE=aL.p2c(aE);aJ=aK.p2c(aJ);aT=aL.p2c(aT);aP=aK.p2c(aP);if(aD){aU.beginPath();aU.moveTo(aE,aJ);aU.lineTo(aE,aP);aU.lineTo(aT,aP);aU.lineTo(aT,aJ);aU.fillStyle=aD(aJ,aP);aU.fill()}if(aC>0&&(aG||aB||aO||aH)){aU.beginPath();aU.moveTo(aE,aJ+aF);if(aG){aU.lineTo(aE,aP+aF)}else{aU.moveTo(aE,aP+aF)}if(aO){aU.lineTo(aT,aP+aF)}else{aU.moveTo(aT,aP+aF)}if(aB){aU.lineTo(aT,aJ+aF)}else{aU.moveTo(aT,aJ+aF)}if(aH){aU.lineTo(aE,aJ+aF)}else{aU.moveTo(aE,aJ+aF)}aU.stroke()}}function e(aD){function aC(aJ,aI,aL,aG,aK,aN,aM){var aO=aJ.points,aF=aJ.pointsize;for(var aH=0;aH<aO.length;aH+=aF){if(aO[aH]==null){continue}E(aO[aH],aO[aH+1],aO[aH+2],aI,aL,aG,aK,aN,aM,H,aD.bars.horizontal,aD.bars.lineWidth)}}H.save();H.translate(q.left,q.top);H.lineWidth=aD.bars.lineWidth;H.strokeStyle=aD.color;var aB=aD.bars.align=="left"?0:-aD.bars.barWidth/2;var aE=aD.bars.fill?function(aF,aG){return ae(aD.bars,aD.color,aF,aG)}:null;aC(aD.datapoints,aB,aB+aD.bars.barWidth,0,aE,aD.xaxis,aD.yaxis);H.restore()}function ae(aD,aB,aC,aF){var aE=aD.fill;if(!aE){return null}if(aD.fillColor){return am(aD.fillColor,aC,aF,aB)}var aG=c.color.parse(aB);aG.a=typeof aE=="number"?aE:0.4;aG.normalize();return aG.toString()}function o(){av.find(".legend").remove();if(!O.legend.show){return}var aH=[],aF=false,aN=O.legend.labelFormatter,aM,aJ;for(var aE=0;aE<Q.length;++aE){aM=Q[aE];aJ=aM.label;if(!aJ){continue}if(aE%O.legend.noColumns==0){if(aF){aH.push("</tr>")}aH.push("<tr>");aF=true}if(aN){aJ=aN(aJ,aM)}aH.push('<td class="legendColorBox"><div style="border:1px solid '+O.legend.labelBoxBorderColor+';padding:1px"><div style="width:4px;height:0;border:5px solid '+aM.color+';overflow:hidden"></div></div></td><td class="legendLabel">'+aJ+"</td>")}if(aF){aH.push("</tr>")}if(aH.length==0){return}var aL='<table style="font-size:smaller;color:'+O.grid.color+'">'+aH.join("")+"</table>";if(O.legend.container!=null){c(O.legend.container).html(aL)}else{var aI="",aC=O.legend.position,aD=O.legend.margin;if(aD[0]==null){aD=[aD,aD]}if(aC.charAt(0)=="n"){aI+="top:"+(aD[1]+q.top)+"px;"}else{if(aC.charAt(0)=="s"){aI+="bottom:"+(aD[1]+q.bottom)+"px;"}}if(aC.charAt(1)=="e"){aI+="right:"+(aD[0]+q.right)+"px;"}else{if(aC.charAt(1)=="w"){aI+="left:"+(aD[0]+q.left)+"px;"}}var aK=c('<div class="legend">'+aL.replace('style="','style="position:absolute;'+aI+";")+"</div>").appendTo(av);if(O.legend.backgroundOpacity!=0){var aG=O.legend.backgroundColor;if(aG==null){aG=O.grid.backgroundColor;if(aG&&typeof aG=="string"){aG=c.color.parse(aG)}else{aG=c.color.extract(aK,"background-color")}aG.a=1;aG=aG.toString()}var aB=aK.children();c('<div style="position:absolute;width:'+aB.width()+"px;height:"+aB.height()+"px;"+aI+"background-color:"+aG+';"> </div>').prependTo(aK).css("opacity",O.legend.backgroundOpacity)}}}var ab=[],M=null;function K(aI,aG,aD){var aO=O.grid.mouseActiveRadius,a0=aO*aO+1,aY=null,aR=false,aW,aU;for(aW=Q.length-1;aW>=0;--aW){if(!aD(Q[aW])){continue}var aP=Q[aW],aH=aP.xaxis,aF=aP.yaxis,aV=aP.datapoints.points,aT=aP.datapoints.pointsize,aQ=aH.c2p(aI),aN=aF.c2p(aG),aC=aO/aH.scale,aB=aO/aF.scale;if(aH.options.inverseTransform){aC=Number.MAX_VALUE}if(aF.options.inverseTransform){aB=Number.MAX_VALUE}if(aP.lines.show||aP.points.show){for(aU=0;aU<aV.length;aU+=aT){var aK=aV[aU],aJ=aV[aU+1];if(aK==null){continue}if(aK-aQ>aC||aK-aQ<-aC||aJ-aN>aB||aJ-aN<-aB){continue}var aM=Math.abs(aH.p2c(aK)-aI),aL=Math.abs(aF.p2c(aJ)-aG),aS=aM*aM+aL*aL;if(aS<a0){a0=aS;aY=[aW,aU/aT]}}}if(aP.bars.show&&!aY){var aE=aP.bars.align=="left"?0:-aP.bars.barWidth/2,aX=aE+aP.bars.barWidth;for(aU=0;aU<aV.length;aU+=aT){var aK=aV[aU],aJ=aV[aU+1],aZ=aV[aU+2];if(aK==null){continue}if(Q[aW].bars.horizontal?(aQ<=Math.max(aZ,aK)&&aQ>=Math.min(aZ,aK)&&aN>=aJ+aE&&aN<=aJ+aX):(aQ>=aK+aE&&aQ<=aK+aX&&aN>=Math.min(aZ,aJ)&&aN<=Math.max(aZ,aJ))){aY=[aW,aU/aT]}}}}if(aY){aW=aY[0];aU=aY[1];aT=Q[aW].datapoints.pointsize;return{datapoint:Q[aW].datapoints.points.slice(aU*aT,(aU+1)*aT),dataIndex:aU,series:Q[aW],seriesIndex:aW}}return null}function aa(aB){if(O.grid.hoverable){u("plothover",aB,function(aC){return aC.hoverable!=false})}}function l(aB){if(O.grid.hoverable){u("plothover",aB,function(aC){return false})}}function R(aB){u("plotclick",aB,function(aC){return aC.clickable!=false})}function u(aC,aB,aD){var aE=y.offset(),aH=aB.pageX-aE.left-q.left,aF=aB.pageY-aE.top-q.top,aJ=C({left:aH,top:aF});aJ.pageX=aB.pageX;aJ.pageY=aB.pageY;var aK=K(aH,aF,aD);if(aK){aK.pageX=parseInt(aK.series.xaxis.p2c(aK.datapoint[0])+aE.left+q.left);aK.pageY=parseInt(aK.series.yaxis.p2c(aK.datapoint[1])+aE.top+q.top)}if(O.grid.autoHighlight){for(var aG=0;aG<ab.length;++aG){var aI=ab[aG];if(aI.auto==aC&&!(aK&&aI.series==aK.series&&aI.point[0]==aK.datapoint[0]&&aI.point[1]==aK.datapoint[1])){T(aI.series,aI.point)}}if(aK){x(aK.series,aK.datapoint,aC)}}av.trigger(aC,[aJ,aK])}function f(){if(!M){M=setTimeout(s,30)}}function s(){M=null;A.save();A.clearRect(0,0,G,I);A.translate(q.left,q.top);var aC,aB;for(aC=0;aC<ab.length;++aC){aB=ab[aC];if(aB.series.bars.show){v(aB.series,aB.point)}else{ay(aB.series,aB.point)}}A.restore();an(ak.drawOverlay,[A])}function x(aD,aB,aF){if(typeof aD=="number"){aD=Q[aD]}if(typeof aB=="number"){var aE=aD.datapoints.pointsize;aB=aD.datapoints.points.slice(aE*aB,aE*(aB+1))}var aC=al(aD,aB);if(aC==-1){ab.push({series:aD,point:aB,auto:aF});f()}else{if(!aF){ab[aC].auto=false}}}function T(aD,aB){if(aD==null&&aB==null){ab=[];f()}if(typeof aD=="number"){aD=Q[aD]}if(typeof aB=="number"){aB=aD.data[aB]}var aC=al(aD,aB);if(aC!=-1){ab.splice(aC,1);f()}}function al(aD,aE){for(var aB=0;aB<ab.length;++aB){var aC=ab[aB];if(aC.series==aD&&aC.point[0]==aE[0]&&aC.point[1]==aE[1]){return aB}}return -1}function ay(aE,aD){var aC=aD[0],aI=aD[1],aH=aE.xaxis,aG=aE.yaxis;if(aC<aH.min||aC>aH.max||aI<aG.min||aI>aG.max){return}var aF=aE.points.radius+aE.points.lineWidth/2;A.lineWidth=aF;A.strokeStyle=c.color.parse(aE.color).scale("a",0.5).toString();var aB=1.5*aF,aC=aH.p2c(aC),aI=aG.p2c(aI);A.beginPath();if(aE.points.symbol=="circle"){A.arc(aC,aI,aB,0,2*Math.PI,false)}else{aE.points.symbol(A,aC,aI,aB,false)}A.closePath();A.stroke()}function v(aE,aB){A.lineWidth=aE.bars.lineWidth;A.strokeStyle=c.color.parse(aE.color).scale("a",0.5).toString();var aD=c.color.parse(aE.color).scale("a",0.5).toString();var aC=aE.bars.align=="left"?0:-aE.bars.barWidth/2;E(aB[0],aB[1],aB[2]||0,aC,aC+aE.bars.barWidth,0,function(){return aD},aE.xaxis,aE.yaxis,A,aE.bars.horizontal,aE.bars.lineWidth)}function am(aJ,aB,aH,aC){if(typeof aJ=="string"){return aJ}else{var aI=H.createLinearGradient(0,aH,0,aB);for(var aE=0,aD=aJ.colors.length;aE<aD;++aE){var aF=aJ.colors[aE];if(typeof aF!="string"){var aG=c.color.parse(aC);if(aF.brightness!=null){aG=aG.scale("rgb",aF.brightness)}if(aF.opacity!=null){aG.a*=aF.opacity}aF=aG.toString()}aI.addColorStop(aE/(aD-1),aF)}return aI}}}c.plot=function(g,e,d){var f=new b(c(g),e,d,c.plot.plugins);return f};c.plot.version="0.7";c.plot.plugins=[];c.plot.formatDate=function(l,f,h){var o=function(d){d=""+d;return d.length==1?"0"+d:d};var e=[];var p=false,j=false;var n=l.getUTCHours();var k=n<12;if(h==null){h=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(f.search(/%p|%P/)!=-1){if(n>12){n=n-12}else{if(n==0){n=12}}}for(var g=0;g<f.length;++g){var m=f.charAt(g);if(p){switch(m){case"h":m=""+n;break;case"H":m=o(n);break;case"M":m=o(l.getUTCMinutes());break;case"S":m=o(l.getUTCSeconds());break;case"d":m=""+l.getUTCDate();break;case"m":m=""+(l.getUTCMonth()+1);break;case"y":m=""+l.getUTCFullYear();break;case"b":m=""+h[l.getUTCMonth()];break;case"p":m=(k)?("am"):("pm");break;case"P":m=(k)?("AM"):("PM");break;case"0":m="";j=true;break}if(m&&j){m=o(m);j=false}e.push(m);if(!j){p=false}}else{if(m=="%"){p=true}else{e.push(m)}}}return e.join("")};function a(e,d){return d*Math.floor(e/d)}})(jQuery);
locale/cpd-az_AZ.po CHANGED
@@ -1,972 +1,972 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Madat <translator.baku@gmail.com>\n"
8
- "Language-Team: Webmestre <translator.baku@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Azerbaijani\n"
14
- "X-Poedit-Country: AZERBAIJAN\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:49
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Opsiyalar yaddaşda saxlanılıb"
26
-
27
- #: counter-options.php:112
28
- #, php-format
29
- #@ cpd
30
- msgid "Database cleaned. %s rows deleted."
31
- msgstr "Məlumat bazası silinib. %s sətir silinib."
32
-
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- #@ cpd
36
- msgid "UNINSTALL Count per Day"
37
- msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
38
-
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- #@ cpd
44
- msgid "Table %s deleted"
45
- msgstr "Cədvəl %s silinib"
46
-
47
- #: counter-options.php:135
48
- #@ cpd
49
- msgid "Options deleted"
50
- msgstr "Opsiyalar silinib"
51
-
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- #@ cpd
55
- msgid "Uninstall"
56
- msgstr "Deinstalyasiya"
57
-
58
- #: counter-options.php:317
59
- #@ cpd
60
- msgid "Click here"
61
- msgstr "Bura basın"
62
-
63
- #: counter-options.php:317
64
- #@ cpd
65
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
- msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
67
-
68
- #: counter-options.php:355
69
- #@ cpd
70
- msgid "Online time"
71
- msgstr "Onlayn vaxt"
72
-
73
- #: counter-options.php:356
74
- #@ cpd
75
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
- msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
77
-
78
- #: counter-options.php:359
79
- #@ cpd
80
- msgid "Logged on Users"
81
- msgstr "Daxil olmuş istifadəçilər"
82
-
83
- #: counter-options.php:361
84
- #@ cpd
85
- msgid "count too"
86
- msgstr "onu da saymaq"
87
-
88
- #: counter-options.php:373
89
- #@ cpd
90
- msgid "Auto counter"
91
- msgstr "Avtomatik sayğac"
92
-
93
- #: counter-options.php:374
94
- #@ cpd
95
- msgid "Counts automatically single-posts and pages, no changes on template needed."
96
- msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
97
-
98
- #: counter-options.php:377
99
- #@ cpd
100
- msgid "Bots to ignore"
101
- msgstr "Botları əhəmiyyət verməmək"
102
-
103
- #: counter-options.php:561
104
- #@ cpd
105
- msgid "Update options"
106
- msgstr "Opsiyaları yeniləşdirmək"
107
-
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- #@ cpd
111
- msgid "Clean the database"
112
- msgstr "Məlumat bazasının silmək"
113
-
114
- #: counter-options.php:659
115
- #@ cpd
116
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
- msgstr "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz və botun baş çəkməsini silə bilərsiniz."
118
-
119
- #: counter-options.php:799
120
- #@ cpd
121
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
- msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
123
-
124
- #: counter-options.php:800
125
- #@ cpd
126
- msgid "Here you can delete the tables and disable \"Count per Day\"."
127
- msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
128
-
129
- #: counter-options.php:803
130
- #@ cpd
131
- msgid "WARNING"
132
- msgstr "DİQQƏT"
133
-
134
- #: counter-options.php:804
135
- #@ cpd
136
- msgid "These tables (with ALL counter data) will be deleted."
137
- msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
138
-
139
- #: counter-options.php:806
140
- #@ cpd
141
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
- msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
143
-
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- #@ cpd
147
- msgid "Yes"
148
- msgstr "Bəli"
149
-
150
- #: counter-options.php:810
151
- #@ cpd
152
- msgid "You are sure to disable Count per Day and delete all data?"
153
- msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
154
-
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- #@ cpd
158
- msgid "Statistics"
159
- msgstr "Statistika"
160
-
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- #@ cpd
166
- msgid "Total visitors"
167
- msgstr "Ümümi qonaqların sayı"
168
-
169
- #: counter.php:161
170
- #: counter.php:1208
171
- #@ cpd
172
- msgid "Visitors currently online"
173
- msgstr "İndi qonaqların sayı saytda "
174
-
175
- #: counter.php:162
176
- #: counter.php:1203
177
- #@ cpd
178
- msgid "Visitors today"
179
- msgstr "Qonaqlar sayı bu gün"
180
-
181
- #: counter.php:163
182
- #: counter.php:1204
183
- #@ cpd
184
- msgid "Visitors yesterday"
185
- msgstr "Qonaqların sayı dünən"
186
-
187
- #: counter.php:164
188
- #: counter.php:1205
189
- #@ cpd
190
- msgid "Visitors last week"
191
- msgstr "Qonaqların sayı keçən həftə"
192
-
193
- #: counter.php:167
194
- #: counter.php:825
195
- #: counter.php:1209
196
- #@ cpd
197
- msgid "Counter starts on"
198
- msgstr "Sayğac başlanır -dan"
199
-
200
- #: counter-core.php:729
201
- #: counter.php:166
202
- #: counter.php:263
203
- #: counter.php:1012
204
- #: counter.php:1207
205
- #: userperspan.php:34
206
- #@ cpd
207
- msgid "Visitors per day"
208
- msgstr "Gonaqlarn sayı gündə"
209
-
210
- #: counter-core.php:725
211
- #: counter.php:1206
212
- #@ cpd
213
- msgid "Visitors per month"
214
- msgstr "Qonaqların sayı ayda"
215
-
216
- #: counter-core.php:727
217
- #: counter-options.php:438
218
- #@ cpd
219
- msgid "Visitors per post"
220
- msgstr "Qonaqların sayı yazışa görə"
221
-
222
- #: counter-options.php:122
223
- #@ cpd
224
- msgid "Counter reseted."
225
- msgstr "Sayğac yenidən başlayıb"
226
-
227
- #: counter-options.php:403
228
- #@ default
229
- msgid "Dashboard"
230
- msgstr "Konsol"
231
-
232
- #: counter-options.php:439
233
- #: counter-options.php:443
234
- #@ cpd
235
- msgid "How many posts do you want to see on dashboard page?"
236
- msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
237
-
238
- #: counter-options.php:442
239
- #@ cpd
240
- msgid "Latest Counts - Posts"
241
- msgstr "Son sayğaclar - Yazılar"
242
-
243
- #: counter-options.php:446
244
- #@ cpd
245
- msgid "Latest Counts - Days"
246
- msgstr "Son sayğaclar - Günlər"
247
-
248
- #: counter-options.php:447
249
- #: counter-options.php:451
250
- #: counter-options.php:473
251
- #@ cpd
252
- msgid "How many days do you want look back?"
253
- msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
254
-
255
- #: counter-options.php:450
256
- #@ cpd
257
- msgid "Chart - Days"
258
- msgstr "Cədvəl - Günlər"
259
-
260
- #: counter-options.php:454
261
- #@ cpd
262
- msgid "Chart - Height"
263
- msgstr "Cədvəl - Hündürlük"
264
-
265
- #: counter-options.php:455
266
- #@ cpd
267
- msgid "Height of the biggest bar"
268
- msgstr "Ən böyük olan sütunun hündürlüyü"
269
-
270
- #: counter-options.php:488
271
- #@ cpd
272
- msgid "Show in lists"
273
- msgstr "Siyahıda göstərmək"
274
-
275
- #: counter-options.php:489
276
- #@ cpd
277
- msgid "Show \"Reads per Post\" in a new column in post management views."
278
- msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
279
-
280
- #: counter-options.php:777
281
- #: counter-options.php:787
282
- #@ cpd
283
- msgid "Reset the counter"
284
- msgstr "Sayğacı yenidən 0 qoymaq"
285
-
286
- #: counter-options.php:780
287
- #@ cpd
288
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
289
- msgstr "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
290
-
291
- #: counter.php:672
292
- #, php-format
293
- #@ cpd
294
- msgid "The %s most visited posts in last %s days:"
295
- msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
296
-
297
- #: counter-core.php:575
298
- #: counter-options.php:341
299
- #: counter-options.php:565
300
- #@ default
301
- msgid "Settings"
302
- msgstr "Kökləmələr"
303
-
304
- #: counter.php:262
305
- #@ cpd
306
- msgid "Reads per day"
307
- msgstr "Gün ərzində oxunuş"
308
-
309
- #: counter-core.php:639
310
- #: counter-options.php:392
311
- #: counter.php:159
312
- #: counter.php:875
313
- #@ cpd
314
- msgid "Reads"
315
- msgstr "Oxumalar"
316
-
317
- #: counter.php:1196
318
- #@ cpd
319
- msgid "This post"
320
- msgstr "Bu yazı"
321
-
322
- #: counter-options.php:60
323
- #, php-format
324
- #@ cpd
325
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
- msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
327
-
328
- #: counter-options.php:65
329
- #@ cpd
330
- msgid "update next"
331
- msgstr "sonraki yeniləşdirmək"
332
-
333
- #: counter-options.php:102
334
- #, php-format
335
- #@ cpd
336
- msgid "Mass Bots cleaned. %s counts deleted."
337
- msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
338
-
339
- #: counter-options.php:362
340
- #@ cpd
341
- msgid "until User Level"
342
- msgstr "istifadəçi səviyyəsinə qədər"
343
-
344
- #: counter-options.php:381
345
- #@ cpd
346
- msgid "Anonymous IP"
347
- msgstr "Anonim IP"
348
-
349
- #: counter-options.php:459
350
- #@ cpd
351
- msgid "Countries"
352
- msgstr "Ölkələr"
353
-
354
- #: counter-options.php:460
355
- #@ cpd
356
- msgid "How many countries do you want to see on dashboard page?"
357
- msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
358
-
359
- #: counter-options.php:497
360
- #@ cpd
361
- msgid "Start Values"
362
- msgstr "Başlanğıc məlumatlar"
363
-
364
- #: counter-options.php:501
365
- #@ cpd
366
- msgid "Here you can change the date of first count and add a start count."
367
- msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
368
-
369
- #: counter-options.php:505
370
- #@ cpd
371
- msgid "Start date"
372
- msgstr "Başlanğıc tarix"
373
-
374
- #: counter-options.php:506
375
- #@ cpd
376
- msgid "Your old Counter starts at?"
377
- msgstr "Sizin köhnə Sayğacınız başlanır?"
378
-
379
- #: counter-options.php:509
380
- #: counter-options.php:513
381
- #@ cpd
382
- msgid "Start count"
383
- msgstr "Sayın başlanğıcı"
384
-
385
- #: counter-options.php:510
386
- #@ cpd
387
- msgid "Add this value to \"Total visitors\"."
388
- msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
389
-
390
- #: counter-options.php:727
391
- #@ cpd
392
- msgid "GeoIP - Countries"
393
- msgstr "GeoIP - Ölkələr"
394
-
395
- #: counter-options.php:736
396
- #@ cpd
397
- msgid "Update old counter data"
398
- msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
399
-
400
- #: counter-options.php:748
401
- #@ cpd
402
- msgid "Update GeoIP database"
403
- msgstr "GeoIP məlumat bazasını yeniləşdirmək"
404
-
405
- #: counter-options.php:743
406
- #@ cpd
407
- msgid "Download a new version of GeoIP.dat file."
408
- msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
409
-
410
- #: counter-options.php:753
411
- #@ cpd
412
- msgid "More informations about GeoIP"
413
- msgstr " GeoIP haqqında daha da çox məlumat"
414
-
415
- #: counter-options.php:580
416
- #: massbots.php:35
417
- #@ cpd
418
- msgid "Mass Bots"
419
- msgstr "Mümkün olan botlar"
420
-
421
- #: counter-options.php:584
422
- #, php-format
423
- #@ cpd
424
- msgid "Show all IPs with more than %s page views per day"
425
- msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
426
-
427
- #: counter-options.php:585
428
- #: notes.php:71
429
- #: userperspan.php:44
430
- #@ cpd
431
- msgid "show"
432
- msgstr "göstərməkl"
433
-
434
- #: counter-options.php:593
435
- #@ cpd
436
- msgid "IP"
437
- msgstr "IP"
438
-
439
- #: counter-options.php:594
440
- #: notes.php:75
441
- #@ cpd
442
- #@ default
443
- msgid "Date"
444
- msgstr "Tarix"
445
-
446
- #: counter-options.php:595
447
- #@ cpd
448
- msgid "Client"
449
- msgstr "Müştəri"
450
-
451
- #: counter-options.php:596
452
- #@ cpd
453
- msgid "Views"
454
- msgstr "Baxış"
455
-
456
- #: counter-options.php:611
457
- #: counter-options.php:627
458
- #, php-format
459
- #@ cpd
460
- msgid "Delete these %s counts"
461
- msgstr "Bu %s sayğacları silmək"
462
-
463
- #: counter-options.php:714
464
- #@ cpd
465
- msgid "Support"
466
- msgstr "Dəstək"
467
-
468
- #: counter-core.php:689
469
- #, php-format
470
- #@ cpd
471
- msgid "Time for Count per Day: <code>%s</code>."
472
- msgstr " Count per Day üçün vaxt: <code>%s</code>"
473
-
474
- #: counter-core.php:690
475
- #@ cpd
476
- msgid "Bug? Problem? Question? Hint? Praise?"
477
- msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
478
-
479
- #: counter-core.php:691
480
- #, php-format
481
- #@ cpd
482
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
483
- msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
484
-
485
- #: counter.php:155
486
- #: counter.php:1197
487
- #@ cpd
488
- msgid "Total reads"
489
- msgstr "Ümumi oxunuş"
490
-
491
- #: counter.php:156
492
- #: counter.php:1198
493
- #@ cpd
494
- msgid "Reads today"
495
- msgstr "Bu günkü oxunuş"
496
-
497
- #: counter.php:157
498
- #: counter.php:1199
499
- #@ cpd
500
- msgid "Reads yesterday"
501
- msgstr "Dünənki oxunuş"
502
-
503
- #: counter.php:788
504
- #: notes.php:42
505
- #: notes.php:76
506
- #@ cpd
507
- msgid "Notes"
508
- msgstr "Qeydlər"
509
-
510
- #: counter.php:786
511
- #@ default
512
- msgid "Show"
513
- msgstr "Göstərmək"
514
-
515
- #: counter.php:821
516
- #@ cpd
517
- msgid "Other"
518
- msgstr "Digər"
519
-
520
- #: counter.php:976
521
- #@ default
522
- msgid "Edit Post"
523
- msgstr "Yazışı redaktə etmək"
524
-
525
- #: counter.php:991
526
- #: massbots.php:52
527
- #: userperspan.php:63
528
- #@ default
529
- msgid "Front page displays"
530
- msgstr "Əsas səhifənin göstərişi"
531
-
532
- #: counter-core.php:733
533
- #: counter-options.php:464
534
- #@ cpd
535
- msgid "Browsers"
536
- msgstr "Brauzerlər"
537
-
538
- #: counter-core.php:728
539
- #@ cpd
540
- msgid "Latest Counts"
541
- msgstr "Yaxında keçirilmiş hesablamalar"
542
-
543
- #: counter-core.php:730
544
- #@ default
545
- msgid "Plugin"
546
- msgstr "Plagin"
547
-
548
- #: counter-core.php:738
549
- #@ cpd
550
- msgid "Reads per Country"
551
- msgstr "Ölkələr üzrə oxunuşlar"
552
-
553
- #: counter.php:353
554
- #: counter.php:1041
555
- #@ cpd
556
- msgid "Map"
557
- msgstr "Xəritə"
558
-
559
- #: geoip/geoip.php:93
560
- #@ cpd
561
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
- msgstr "Bağışlayın, lazım olna funksiyalar (zlib) quraşdırılmayıb yaxud php.ini.-yə daxil olmayıb"
563
-
564
- #: geoip/geoip.php:117
565
- #@ cpd
566
- msgid "New GeoIP database installed."
567
- msgstr "GeoIP-nin yeni məlumat bazası quraşdırılıb."
568
-
569
- #: geoip/geoip.php:119
570
- #@ cpd
571
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
- msgstr "Bağışlayin. səhv oldu. Yenidən sınayın yaxud \"geoip\" - 777 papkasına keçidi yoxlayın."
573
-
574
- #: notes.php:77
575
- #@ default
576
- msgid "Action"
577
- msgstr "Hərəkət"
578
-
579
- #: notes.php:82
580
- #@ cpd
581
- msgid "add"
582
- msgstr "əlavə etmək"
583
-
584
- #: notes.php:98
585
- #@ cpd
586
- msgid "save"
587
- msgstr "yaddaşda saxlamaq"
588
-
589
- #: notes.php:99
590
- #@ cpd
591
- msgid "delete"
592
- msgstr "silmək"
593
-
594
- #: notes.php:110
595
- #@ cpd
596
- msgid "edit"
597
- msgstr "redaktə etmək"
598
-
599
- #: counter-options.php:385
600
- #@ cpd
601
- msgid "Cache"
602
- msgstr "Keş"
603
-
604
- #: counter-options.php:386
605
- #@ cpd
606
- msgid "I use a cache plugin. Count these visits with ajax."
607
- msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
608
-
609
- #: counter-options.php:465
610
- #@ cpd
611
- msgid "Substring of the user agent, separated by comma"
612
- msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
613
-
614
- #: counter-options.php:554
615
- #@ cpd
616
- msgid "Debug mode"
617
- msgstr "Düzəliş rejimi"
618
-
619
- #: counter-options.php:556
620
- #@ cpd
621
- msgid "Show debug informations at the bottom of all pages."
622
- msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
623
-
624
- #: counter-core.php:739
625
- #@ cpd
626
- msgid "Visitors per Country"
627
- msgstr "Ölkə üzrə gəlişlər"
628
-
629
- #: userperspan.php:38
630
- #@ cpd
631
- msgid "Start"
632
- msgstr "Başlamaq"
633
-
634
- #: userperspan.php:40
635
- #@ cpd
636
- msgid "End"
637
- msgstr "Son"
638
-
639
- #: userperspan.php:42
640
- #@ cpd
641
- msgid "PostID"
642
- msgstr "ID məlumatlar"
643
-
644
- #: counter-options.php:514
645
- #@ cpd
646
- msgid "Add this value to \"Total reads\"."
647
- msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
648
-
649
- #: counter-options.php:730
650
- #@ cpd
651
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
652
- msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
653
-
654
- #: userperspan.php:50
655
- #@ cpd
656
- msgid "no data found"
657
- msgstr "heç bir məlumat tapılmayıb"
658
-
659
- #: counter-options.php:351
660
- #@ cpd
661
- msgid "Counter"
662
- msgstr "Sayğac"
663
-
664
- #: counter-options.php:389
665
- #@ cpd
666
- msgid "Clients and referrers"
667
- msgstr "Müştərilər və istinad olan saytlar"
668
-
669
- #: counter-options.php:392
670
- #@ cpd
671
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
- msgstr "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
673
-
674
- #: counter-options.php:476
675
- #@ cpd
676
- msgid "Local URLs"
677
- msgstr "Lokal URL"
678
-
679
- #: counter-options.php:477
680
- #@ cpd
681
- msgid "Show local referrers too."
682
- msgstr "Lokal keçidləri də göstərmək."
683
-
684
- #: counter-options.php:485
685
- #@ default
686
- msgid "Posts"
687
- msgstr "Yazılar"
688
-
689
- #: counter-options.php:485
690
- #@ default
691
- msgid "Pages"
692
- msgstr "Səhifələr"
693
-
694
- #: counter.php:158
695
- #: counter.php:1200
696
- #@ cpd
697
- msgid "Reads last week"
698
- msgstr "Ötən həftənin oxunuşları"
699
-
700
- #: counter.php:985
701
- #@ default
702
- msgid "Category"
703
- msgstr "Kateqoriyalar"
704
-
705
- #: counter.php:988
706
- #@ default
707
- msgid "Tag"
708
- msgstr "Teq"
709
-
710
- #: counter-core.php:692
711
- #@ default
712
- msgid "License"
713
- msgstr "Lisenziya"
714
-
715
- #: counter-core.php:726
716
- #: counter.php:1201
717
- #@ cpd
718
- msgid "Reads per month"
719
- msgstr "Ay ərzində oxunuşlar"
720
-
721
- #: counter-core.php:734
722
- #@ cpd
723
- msgid "Referrer"
724
- msgstr "İstinad olunan sayt"
725
-
726
- #: counter-options.php:468
727
- #@ cpd
728
- msgid "Referrers - Entries"
729
- msgstr "İstenad olan saytlar - Girişlər"
730
-
731
- #: counter-options.php:469
732
- #@ cpd
733
- msgid "How many referrers do you want to see on dashboard page?"
734
- msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
735
-
736
- #: counter-options.php:472
737
- #@ cpd
738
- msgid "Referrers - Days"
739
- msgstr "İstenad olan saytlar - Günlər"
740
-
741
- #: counter.php:845
742
- #, php-format
743
- #@ cpd
744
- msgid "The %s referrers in last %s days:"
745
- msgstr "%s istenad olan saytlar son %s günlər:"
746
-
747
- #: counter-core.php:724
748
- #@ cpd
749
- msgid "Visitors online"
750
- msgstr "Qonaq onlayn"
751
-
752
- #: counter.php:1220
753
- #@ default
754
- msgid "Title"
755
- msgstr "Başlıq"
756
-
757
- #: counter-core.php:186
758
- #, php-format
759
- #@ cpd
760
- msgid "\"Count per Day\" updated to version %s."
761
- msgstr ""
762
-
763
- #: counter-core.php:917
764
- #@ cpd
765
- msgid "Backup failed! Cannot open file"
766
- msgstr ""
767
-
768
- #: counter-core.php:940
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr ""
773
-
774
- #: counter-core.php:1027
775
- #@ cpd
776
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
- msgstr ""
778
-
779
- #: counter-core.php:1033
780
- #, php-format
781
- #@ cpd
782
- msgid "Backup of counter table saved in %s."
783
- msgstr ""
784
-
785
- #: counter-core.php:1035
786
- #, php-format
787
- #@ cpd
788
- msgid "Backup of counter options and collection saved in %s."
789
- msgstr ""
790
-
791
- #: counter-options.php:170
792
- #@ cpd
793
- msgid "Collection in progress..."
794
- msgstr ""
795
-
796
- #: counter-options.php:240
797
- #@ cpd
798
- msgid "Get Visitors per Post..."
799
- msgstr ""
800
-
801
- #: counter-options.php:261
802
- #@ cpd
803
- msgid "Delete old data..."
804
- msgstr ""
805
-
806
- #: counter-options.php:285
807
- #, php-format
808
- #@ cpd
809
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
- msgstr ""
811
-
812
- #: counter-options.php:294
813
- #@ cpd
814
- msgid "Installation of \"Count per Day\" checked"
815
- msgstr ""
816
-
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- #@ default
820
- msgid "Tools"
821
- msgstr ""
822
-
823
- #: counter-options.php:394
824
- #@ cpd
825
- msgid "Save URL only, no query string."
826
- msgstr ""
827
-
828
- #: counter-options.php:419
829
- #@ cpd
830
- msgid "Who can see it"
831
- msgstr ""
832
-
833
- #: counter-options.php:428
834
- #@ cpd
835
- msgid "custom"
836
- msgstr ""
837
-
838
- #: counter-options.php:430
839
- #@ cpd
840
- msgid "and higher are allowed to see the statistics page."
841
- msgstr ""
842
-
843
- #: counter-options.php:432
844
- #, php-format
845
- #@ cpd
846
- msgid "Set the %s capability %s a user need:"
847
- msgstr ""
848
-
849
- #: counter-options.php:522
850
- #@ cpd
851
- msgid "Stylesheet"
852
- msgstr ""
853
-
854
- #: counter-options.php:525
855
- #@ cpd
856
- msgid "NO Stylesheet in Frontend"
857
- msgstr ""
858
-
859
- #: counter-options.php:526
860
- #@ cpd
861
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
- msgstr ""
863
-
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- #@ cpd
867
- msgid "Backup"
868
- msgstr ""
869
-
870
- #: counter-options.php:537
871
- #@ cpd
872
- msgid "Entries per pass"
873
- msgstr ""
874
-
875
- #: counter-options.php:540
876
- #@ cpd
877
- msgid "How many entries should be saved per pass? Default: 10000"
878
- msgstr ""
879
-
880
- #: counter-options.php:545
881
- #@ cpd
882
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
- msgstr ""
884
-
885
- #: counter-options.php:643
886
- #, php-format
887
- #@ cpd
888
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
- msgstr ""
890
-
891
- #: counter-options.php:647
892
- #@ cpd
893
- msgid "Backup the database"
894
- msgstr ""
895
-
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- #@ cpd
899
- msgid "Collect old data"
900
- msgstr ""
901
-
902
- #: counter-options.php:679
903
- #, php-format
904
- #@ cpd
905
- msgid "Current size of your counter table %s is %s."
906
- msgstr ""
907
-
908
- #: counter-options.php:681
909
- #@ cpd
910
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
- msgstr ""
912
-
913
- #: counter-options.php:686
914
- #, php-format
915
- #@ cpd
916
- msgid "Currently your collection contains data until %s."
917
- msgstr ""
918
-
919
- #: counter-options.php:690
920
- #@ cpd
921
- msgid "Normally new data will be added to the collection."
922
- msgstr ""
923
-
924
- #: counter-options.php:696
925
- #@ cpd
926
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
- msgstr ""
928
-
929
- #: counter-options.php:697
930
- #, php-format
931
- #@ cpd
932
- msgid "All collected data until %s will deleted."
933
- msgstr ""
934
-
935
- #: counter-options.php:702
936
- #, php-format
937
- #@ cpd
938
- msgid "Keep entries of last %s full months + current month in counter table."
939
- msgstr ""
940
-
941
- #: counter-options.php:761
942
- #@ cpd
943
- msgid "ReActivation"
944
- msgstr ""
945
-
946
- #: counter-options.php:764
947
- #@ cpd
948
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
- msgstr ""
950
-
951
- #: counter-options.php:769
952
- #@ cpd
953
- msgid "ReActivate the plugin"
954
- msgstr ""
955
-
956
- #: counter.php:165
957
- #: counter.php:899
958
- #@ cpd
959
- msgid "Visitors"
960
- msgstr ""
961
-
962
- #: counter.php:168
963
- #: counter.php:169
964
- #@ cpd
965
- msgid "Most visited day"
966
- msgstr ""
967
-
968
- #: counter.php:1239
969
- #@ cpd
970
- msgid "drag and drop to sort"
971
- msgstr ""
972
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Madat <translator.baku@gmail.com>\n"
8
+ "Language-Team: Webmestre <translator.baku@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Azerbaijani\n"
14
+ "X-Poedit-Country: AZERBAIJAN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:49
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Opsiyalar yaddaşda saxlanılıb"
26
+
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Database cleaned. %s rows deleted."
31
+ msgstr "Məlumat bazası silinib. %s sətir silinib."
32
+
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
38
+
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ #@ cpd
44
+ msgid "Table %s deleted"
45
+ msgstr "Cədvəl %s silinib"
46
+
47
+ #: counter-options.php:135
48
+ #@ cpd
49
+ msgid "Options deleted"
50
+ msgstr "Opsiyalar silinib"
51
+
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ #@ cpd
55
+ msgid "Uninstall"
56
+ msgstr "Deinstalyasiya"
57
+
58
+ #: counter-options.php:317
59
+ #@ cpd
60
+ msgid "Click here"
61
+ msgstr "Bura basın"
62
+
63
+ #: counter-options.php:317
64
+ #@ cpd
65
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
+ msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
67
+
68
+ #: counter-options.php:355
69
+ #@ cpd
70
+ msgid "Online time"
71
+ msgstr "Onlayn vaxt"
72
+
73
+ #: counter-options.php:356
74
+ #@ cpd
75
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
+ msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
77
+
78
+ #: counter-options.php:359
79
+ #@ cpd
80
+ msgid "Logged on Users"
81
+ msgstr "Daxil olmuş istifadəçilər"
82
+
83
+ #: counter-options.php:361
84
+ #@ cpd
85
+ msgid "count too"
86
+ msgstr "onu da saymaq"
87
+
88
+ #: counter-options.php:373
89
+ #@ cpd
90
+ msgid "Auto counter"
91
+ msgstr "Avtomatik sayğac"
92
+
93
+ #: counter-options.php:374
94
+ #@ cpd
95
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
96
+ msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
97
+
98
+ #: counter-options.php:377
99
+ #@ cpd
100
+ msgid "Bots to ignore"
101
+ msgstr "Botları əhəmiyyət verməmək"
102
+
103
+ #: counter-options.php:561
104
+ #@ cpd
105
+ msgid "Update options"
106
+ msgstr "Opsiyaları yeniləşdirmək"
107
+
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ #@ cpd
111
+ msgid "Clean the database"
112
+ msgstr "Məlumat bazasının silmək"
113
+
114
+ #: counter-options.php:659
115
+ #@ cpd
116
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
+ msgstr "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz və botun baş çəkməsini silə bilərsiniz."
118
+
119
+ #: counter-options.php:799
120
+ #@ cpd
121
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
+ msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
123
+
124
+ #: counter-options.php:800
125
+ #@ cpd
126
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
127
+ msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
128
+
129
+ #: counter-options.php:803
130
+ #@ cpd
131
+ msgid "WARNING"
132
+ msgstr "DİQQƏT"
133
+
134
+ #: counter-options.php:804
135
+ #@ cpd
136
+ msgid "These tables (with ALL counter data) will be deleted."
137
+ msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
138
+
139
+ #: counter-options.php:806
140
+ #@ cpd
141
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
+ msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
143
+
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ #@ cpd
147
+ msgid "Yes"
148
+ msgstr "Bəli"
149
+
150
+ #: counter-options.php:810
151
+ #@ cpd
152
+ msgid "You are sure to disable Count per Day and delete all data?"
153
+ msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
154
+
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ #@ cpd
158
+ msgid "Statistics"
159
+ msgstr "Statistika"
160
+
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ #@ cpd
166
+ msgid "Total visitors"
167
+ msgstr "Ümümi qonaqların sayı"
168
+
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ #@ cpd
172
+ msgid "Visitors currently online"
173
+ msgstr "İndi qonaqların sayı saytda "
174
+
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ #@ cpd
178
+ msgid "Visitors today"
179
+ msgstr "Qonaqlar sayı bu gün"
180
+
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ #@ cpd
184
+ msgid "Visitors yesterday"
185
+ msgstr "Qonaqların sayı dünən"
186
+
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ #@ cpd
190
+ msgid "Visitors last week"
191
+ msgstr "Qonaqların sayı keçən həftə"
192
+
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ #@ cpd
197
+ msgid "Counter starts on"
198
+ msgstr "Sayğac başlanır -dan"
199
+
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ #@ cpd
207
+ msgid "Visitors per day"
208
+ msgstr "Gonaqlarn sayı gündə"
209
+
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ #@ cpd
213
+ msgid "Visitors per month"
214
+ msgstr "Qonaqların sayı ayda"
215
+
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ #@ cpd
219
+ msgid "Visitors per post"
220
+ msgstr "Qonaqların sayı yazışa görə"
221
+
222
+ #: counter-options.php:122
223
+ #@ cpd
224
+ msgid "Counter reseted."
225
+ msgstr "Sayğac yenidən başlayıb"
226
+
227
+ #: counter-options.php:403
228
+ #@ default
229
+ msgid "Dashboard"
230
+ msgstr "Konsol"
231
+
232
+ #: counter-options.php:439
233
+ #: counter-options.php:443
234
+ #@ cpd
235
+ msgid "How many posts do you want to see on dashboard page?"
236
+ msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
237
+
238
+ #: counter-options.php:442
239
+ #@ cpd
240
+ msgid "Latest Counts - Posts"
241
+ msgstr "Son sayğaclar - Yazılar"
242
+
243
+ #: counter-options.php:446
244
+ #@ cpd
245
+ msgid "Latest Counts - Days"
246
+ msgstr "Son sayğaclar - Günlər"
247
+
248
+ #: counter-options.php:447
249
+ #: counter-options.php:451
250
+ #: counter-options.php:473
251
+ #@ cpd
252
+ msgid "How many days do you want look back?"
253
+ msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
254
+
255
+ #: counter-options.php:450
256
+ #@ cpd
257
+ msgid "Chart - Days"
258
+ msgstr "Cədvəl - Günlər"
259
+
260
+ #: counter-options.php:454
261
+ #@ cpd
262
+ msgid "Chart - Height"
263
+ msgstr "Cədvəl - Hündürlük"
264
+
265
+ #: counter-options.php:455
266
+ #@ cpd
267
+ msgid "Height of the biggest bar"
268
+ msgstr "Ən böyük olan sütunun hündürlüyü"
269
+
270
+ #: counter-options.php:488
271
+ #@ cpd
272
+ msgid "Show in lists"
273
+ msgstr "Siyahıda göstərmək"
274
+
275
+ #: counter-options.php:489
276
+ #@ cpd
277
+ msgid "Show \"Reads per Post\" in a new column in post management views."
278
+ msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
279
+
280
+ #: counter-options.php:777
281
+ #: counter-options.php:787
282
+ #@ cpd
283
+ msgid "Reset the counter"
284
+ msgstr "Sayğacı yenidən 0 qoymaq"
285
+
286
+ #: counter-options.php:780
287
+ #@ cpd
288
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
289
+ msgstr "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
290
+
291
+ #: counter.php:672
292
+ #, php-format
293
+ #@ cpd
294
+ msgid "The %s most visited posts in last %s days:"
295
+ msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
296
+
297
+ #: counter-core.php:575
298
+ #: counter-options.php:341
299
+ #: counter-options.php:565
300
+ #@ default
301
+ msgid "Settings"
302
+ msgstr "Kökləmələr"
303
+
304
+ #: counter.php:262
305
+ #@ cpd
306
+ msgid "Reads per day"
307
+ msgstr "Gün ərzində oxunuş"
308
+
309
+ #: counter-core.php:639
310
+ #: counter-options.php:392
311
+ #: counter.php:159
312
+ #: counter.php:875
313
+ #@ cpd
314
+ msgid "Reads"
315
+ msgstr "Oxumalar"
316
+
317
+ #: counter.php:1196
318
+ #@ cpd
319
+ msgid "This post"
320
+ msgstr "Bu yazı"
321
+
322
+ #: counter-options.php:60
323
+ #, php-format
324
+ #@ cpd
325
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
326
+ msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
327
+
328
+ #: counter-options.php:65
329
+ #@ cpd
330
+ msgid "update next"
331
+ msgstr "sonraki yeniləşdirmək"
332
+
333
+ #: counter-options.php:102
334
+ #, php-format
335
+ #@ cpd
336
+ msgid "Mass Bots cleaned. %s counts deleted."
337
+ msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
338
+
339
+ #: counter-options.php:362
340
+ #@ cpd
341
+ msgid "until User Level"
342
+ msgstr "istifadəçi səviyyəsinə qədər"
343
+
344
+ #: counter-options.php:381
345
+ #@ cpd
346
+ msgid "Anonymous IP"
347
+ msgstr "Anonim IP"
348
+
349
+ #: counter-options.php:459
350
+ #@ cpd
351
+ msgid "Countries"
352
+ msgstr "Ölkələr"
353
+
354
+ #: counter-options.php:460
355
+ #@ cpd
356
+ msgid "How many countries do you want to see on dashboard page?"
357
+ msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
358
+
359
+ #: counter-options.php:497
360
+ #@ cpd
361
+ msgid "Start Values"
362
+ msgstr "Başlanğıc məlumatlar"
363
+
364
+ #: counter-options.php:501
365
+ #@ cpd
366
+ msgid "Here you can change the date of first count and add a start count."
367
+ msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
368
+
369
+ #: counter-options.php:505
370
+ #@ cpd
371
+ msgid "Start date"
372
+ msgstr "Başlanğıc tarix"
373
+
374
+ #: counter-options.php:506
375
+ #@ cpd
376
+ msgid "Your old Counter starts at?"
377
+ msgstr "Sizin köhnə Sayğacınız başlanır?"
378
+
379
+ #: counter-options.php:509
380
+ #: counter-options.php:513
381
+ #@ cpd
382
+ msgid "Start count"
383
+ msgstr "Sayın başlanğıcı"
384
+
385
+ #: counter-options.php:510
386
+ #@ cpd
387
+ msgid "Add this value to \"Total visitors\"."
388
+ msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
389
+
390
+ #: counter-options.php:727
391
+ #@ cpd
392
+ msgid "GeoIP - Countries"
393
+ msgstr "GeoIP - Ölkələr"
394
+
395
+ #: counter-options.php:736
396
+ #@ cpd
397
+ msgid "Update old counter data"
398
+ msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
399
+
400
+ #: counter-options.php:748
401
+ #@ cpd
402
+ msgid "Update GeoIP database"
403
+ msgstr "GeoIP məlumat bazasını yeniləşdirmək"
404
+
405
+ #: counter-options.php:743
406
+ #@ cpd
407
+ msgid "Download a new version of GeoIP.dat file."
408
+ msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
409
+
410
+ #: counter-options.php:753
411
+ #@ cpd
412
+ msgid "More informations about GeoIP"
413
+ msgstr " GeoIP haqqında daha da çox məlumat"
414
+
415
+ #: counter-options.php:580
416
+ #: massbots.php:35
417
+ #@ cpd
418
+ msgid "Mass Bots"
419
+ msgstr "Mümkün olan botlar"
420
+
421
+ #: counter-options.php:584
422
+ #, php-format
423
+ #@ cpd
424
+ msgid "Show all IPs with more than %s page views per day"
425
+ msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
426
+
427
+ #: counter-options.php:585
428
+ #: notes.php:71
429
+ #: userperspan.php:44
430
+ #@ cpd
431
+ msgid "show"
432
+ msgstr "göstərməkl"
433
+
434
+ #: counter-options.php:593
435
+ #@ cpd
436
+ msgid "IP"
437
+ msgstr "IP"
438
+
439
+ #: counter-options.php:594
440
+ #: notes.php:75
441
+ #@ cpd
442
+ #@ default
443
+ msgid "Date"
444
+ msgstr "Tarix"
445
+
446
+ #: counter-options.php:595
447
+ #@ cpd
448
+ msgid "Client"
449
+ msgstr "Müştəri"
450
+
451
+ #: counter-options.php:596
452
+ #@ cpd
453
+ msgid "Views"
454
+ msgstr "Baxış"
455
+
456
+ #: counter-options.php:611
457
+ #: counter-options.php:627
458
+ #, php-format
459
+ #@ cpd
460
+ msgid "Delete these %s counts"
461
+ msgstr "Bu %s sayğacları silmək"
462
+
463
+ #: counter-options.php:714
464
+ #@ cpd
465
+ msgid "Support"
466
+ msgstr "Dəstək"
467
+
468
+ #: counter-core.php:689
469
+ #, php-format
470
+ #@ cpd
471
+ msgid "Time for Count per Day: <code>%s</code>."
472
+ msgstr " Count per Day üçün vaxt: <code>%s</code>"
473
+
474
+ #: counter-core.php:690
475
+ #@ cpd
476
+ msgid "Bug? Problem? Question? Hint? Praise?"
477
+ msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
478
+
479
+ #: counter-core.php:691
480
+ #, php-format
481
+ #@ cpd
482
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
483
+ msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
484
+
485
+ #: counter.php:155
486
+ #: counter.php:1197
487
+ #@ cpd
488
+ msgid "Total reads"
489
+ msgstr "Ümumi oxunuş"
490
+
491
+ #: counter.php:156
492
+ #: counter.php:1198
493
+ #@ cpd
494
+ msgid "Reads today"
495
+ msgstr "Bu günkü oxunuş"
496
+
497
+ #: counter.php:157
498
+ #: counter.php:1199
499
+ #@ cpd
500
+ msgid "Reads yesterday"
501
+ msgstr "Dünənki oxunuş"
502
+
503
+ #: counter.php:788
504
+ #: notes.php:42
505
+ #: notes.php:76
506
+ #@ cpd
507
+ msgid "Notes"
508
+ msgstr "Qeydlər"
509
+
510
+ #: counter.php:786
511
+ #@ default
512
+ msgid "Show"
513
+ msgstr "Göstərmək"
514
+
515
+ #: counter.php:821
516
+ #@ cpd
517
+ msgid "Other"
518
+ msgstr "Digər"
519
+
520
+ #: counter.php:976
521
+ #@ default
522
+ msgid "Edit Post"
523
+ msgstr "Yazışı redaktə etmək"
524
+
525
+ #: counter.php:991
526
+ #: massbots.php:52
527
+ #: userperspan.php:63
528
+ #@ default
529
+ msgid "Front page displays"
530
+ msgstr "Əsas səhifənin göstərişi"
531
+
532
+ #: counter-core.php:733
533
+ #: counter-options.php:464
534
+ #@ cpd
535
+ msgid "Browsers"
536
+ msgstr "Brauzerlər"
537
+
538
+ #: counter-core.php:728
539
+ #@ cpd
540
+ msgid "Latest Counts"
541
+ msgstr "Yaxında keçirilmiş hesablamalar"
542
+
543
+ #: counter-core.php:730
544
+ #@ default
545
+ msgid "Plugin"
546
+ msgstr "Plagin"
547
+
548
+ #: counter-core.php:738
549
+ #@ cpd
550
+ msgid "Reads per Country"
551
+ msgstr "Ölkələr üzrə oxunuşlar"
552
+
553
+ #: counter.php:353
554
+ #: counter.php:1041
555
+ #@ cpd
556
+ msgid "Map"
557
+ msgstr "Xəritə"
558
+
559
+ #: geoip/geoip.php:93
560
+ #@ cpd
561
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
+ msgstr "Bağışlayın, lazım olna funksiyalar (zlib) quraşdırılmayıb yaxud php.ini.-yə daxil olmayıb"
563
+
564
+ #: geoip/geoip.php:117
565
+ #@ cpd
566
+ msgid "New GeoIP database installed."
567
+ msgstr "GeoIP-nin yeni məlumat bazası quraşdırılıb."
568
+
569
+ #: geoip/geoip.php:119
570
+ #@ cpd
571
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
+ msgstr "Bağışlayin. səhv oldu. Yenidən sınayın yaxud \"geoip\" - 777 papkasına keçidi yoxlayın."
573
+
574
+ #: notes.php:77
575
+ #@ default
576
+ msgid "Action"
577
+ msgstr "Hərəkət"
578
+
579
+ #: notes.php:82
580
+ #@ cpd
581
+ msgid "add"
582
+ msgstr "əlavə etmək"
583
+
584
+ #: notes.php:98
585
+ #@ cpd
586
+ msgid "save"
587
+ msgstr "yaddaşda saxlamaq"
588
+
589
+ #: notes.php:99
590
+ #@ cpd
591
+ msgid "delete"
592
+ msgstr "silmək"
593
+
594
+ #: notes.php:110
595
+ #@ cpd
596
+ msgid "edit"
597
+ msgstr "redaktə etmək"
598
+
599
+ #: counter-options.php:385
600
+ #@ cpd
601
+ msgid "Cache"
602
+ msgstr "Keş"
603
+
604
+ #: counter-options.php:386
605
+ #@ cpd
606
+ msgid "I use a cache plugin. Count these visits with ajax."
607
+ msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
608
+
609
+ #: counter-options.php:465
610
+ #@ cpd
611
+ msgid "Substring of the user agent, separated by comma"
612
+ msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
613
+
614
+ #: counter-options.php:554
615
+ #@ cpd
616
+ msgid "Debug mode"
617
+ msgstr "Düzəliş rejimi"
618
+
619
+ #: counter-options.php:556
620
+ #@ cpd
621
+ msgid "Show debug informations at the bottom of all pages."
622
+ msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
623
+
624
+ #: counter-core.php:739
625
+ #@ cpd
626
+ msgid "Visitors per Country"
627
+ msgstr "Ölkə üzrə gəlişlər"
628
+
629
+ #: userperspan.php:38
630
+ #@ cpd
631
+ msgid "Start"
632
+ msgstr "Başlamaq"
633
+
634
+ #: userperspan.php:40
635
+ #@ cpd
636
+ msgid "End"
637
+ msgstr "Son"
638
+
639
+ #: userperspan.php:42
640
+ #@ cpd
641
+ msgid "PostID"
642
+ msgstr "ID məlumatlar"
643
+
644
+ #: counter-options.php:514
645
+ #@ cpd
646
+ msgid "Add this value to \"Total reads\"."
647
+ msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
648
+
649
+ #: counter-options.php:730
650
+ #@ cpd
651
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
652
+ msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
653
+
654
+ #: userperspan.php:50
655
+ #@ cpd
656
+ msgid "no data found"
657
+ msgstr "heç bir məlumat tapılmayıb"
658
+
659
+ #: counter-options.php:351
660
+ #@ cpd
661
+ msgid "Counter"
662
+ msgstr "Sayğac"
663
+
664
+ #: counter-options.php:389
665
+ #@ cpd
666
+ msgid "Clients and referrers"
667
+ msgstr "Müştərilər və istinad olan saytlar"
668
+
669
+ #: counter-options.php:392
670
+ #@ cpd
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
673
+
674
+ #: counter-options.php:476
675
+ #@ cpd
676
+ msgid "Local URLs"
677
+ msgstr "Lokal URL"
678
+
679
+ #: counter-options.php:477
680
+ #@ cpd
681
+ msgid "Show local referrers too."
682
+ msgstr "Lokal keçidləri də göstərmək."
683
+
684
+ #: counter-options.php:485
685
+ #@ default
686
+ msgid "Posts"
687
+ msgstr "Yazılar"
688
+
689
+ #: counter-options.php:485
690
+ #@ default
691
+ msgid "Pages"
692
+ msgstr "Səhifələr"
693
+
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ #@ cpd
697
+ msgid "Reads last week"
698
+ msgstr "Ötən həftənin oxunuşları"
699
+
700
+ #: counter.php:985
701
+ #@ default
702
+ msgid "Category"
703
+ msgstr "Kateqoriyalar"
704
+
705
+ #: counter.php:988
706
+ #@ default
707
+ msgid "Tag"
708
+ msgstr "Teq"
709
+
710
+ #: counter-core.php:692
711
+ #@ default
712
+ msgid "License"
713
+ msgstr "Lisenziya"
714
+
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ #@ cpd
718
+ msgid "Reads per month"
719
+ msgstr "Ay ərzində oxunuşlar"
720
+
721
+ #: counter-core.php:734
722
+ #@ cpd
723
+ msgid "Referrer"
724
+ msgstr "İstinad olunan sayt"
725
+
726
+ #: counter-options.php:468
727
+ #@ cpd
728
+ msgid "Referrers - Entries"
729
+ msgstr "İstenad olan saytlar - Girişlər"
730
+
731
+ #: counter-options.php:469
732
+ #@ cpd
733
+ msgid "How many referrers do you want to see on dashboard page?"
734
+ msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
735
+
736
+ #: counter-options.php:472
737
+ #@ cpd
738
+ msgid "Referrers - Days"
739
+ msgstr "İstenad olan saytlar - Günlər"
740
+
741
+ #: counter.php:845
742
+ #, php-format
743
+ #@ cpd
744
+ msgid "The %s referrers in last %s days:"
745
+ msgstr "%s istenad olan saytlar son %s günlər:"
746
+
747
+ #: counter-core.php:724
748
+ #@ cpd
749
+ msgid "Visitors online"
750
+ msgstr "Qonaq onlayn"
751
+
752
+ #: counter.php:1220
753
+ #@ default
754
+ msgid "Title"
755
+ msgstr "Başlıq"
756
+
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:917
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr ""
972
+
locale/cpd-be_BY.po CHANGED
@@ -1,784 +1,784 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Belarusian\n"
14
- "X-Poedit-Country: BELARUS\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:46
23
- msgid "Options updated"
24
- msgstr "Налады захаваныя"
25
-
26
- #@ cpd
27
- #: counter-options.php:111
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
31
-
32
- #@ cpd
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "Выдаліць Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Табліца% s выдалена"
45
-
46
- #@ cpd
47
- #: counter-options.php:132
48
- msgid "Options deleted"
49
- msgstr "Налады выдалены"
50
-
51
- #@ cpd
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
- msgid "Uninstall"
55
- msgstr "Деинсталяция"
56
-
57
- #@ cpd
58
- #: counter-options.php:157
59
- msgid "Click here"
60
- msgstr "Націсніце сюды"
61
-
62
- #@ cpd
63
- #: counter-options.php:157
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
66
-
67
- #@ cpd
68
- #: counter-options.php:179
69
- msgid "Options"
70
- msgstr "Налады"
71
-
72
- #@ cpd
73
- #: counter-options.php:190
74
- msgid "Online time"
75
- msgstr "Час онлайн"
76
-
77
- #@ cpd
78
- #: counter-options.php:191
79
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
- msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
81
-
82
- #@ cpd
83
- #: counter-options.php:194
84
- msgid "Logged on Users"
85
- msgstr "Якія ўвайшлі карыстальнікаў"
86
-
87
- #@ cpd
88
- #: counter-options.php:196
89
- msgid "count too"
90
- msgstr "Таксама лічыць"
91
-
92
- #@ cpd
93
- #: counter-options.php:208
94
- msgid "Auto counter"
95
- msgstr "Аўтаматычны лічыльнік"
96
-
97
- #@ cpd
98
- #: counter-options.php:209
99
- msgid "Counts automatically single-posts and pages, no changes on template needed."
100
- msgstr "Лічыць аўтаматычна асобныя публікацыі і старонкі, ніякіх зменаў у шаблон не спатрэбіцца."
101
-
102
- #@ cpd
103
- #: counter-options.php:212
104
- msgid "Bots to ignore"
105
- msgstr "Ігнараваць робатаў"
106
-
107
- #@ cpd
108
- #: counter-options.php:331
109
- msgid "Update options"
110
- msgstr "Захаваць наладкі"
111
-
112
- #@ cpd
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
- msgid "Clean the database"
116
- msgstr "Ачысьціць базу даных"
117
-
118
- #@ cpd
119
- #: counter-options.php:448
120
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
- msgstr "Вы можаце ачысціць лічыльнік выдаліўшы \" Спам \". <br /> Калі вы дадасце новых робатаў-над \"Спам \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць наведвання ботаў. "
122
-
123
- #@ cpd
124
- #: counter-options.php:484
125
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
- msgstr "Калі \" Штодзённы лічыльнік \"актываваны, табліцы ў базах дадзеных будуць захаваныя:)."
127
-
128
- #@ cpd
129
- #: counter-options.php:485
130
- msgid "Here you can delete the tables and disable \"Count per Day\"."
131
- msgstr "Тут вы можаце выдаліць табліцы і адключыць \" Штодзённы лічыльнік \"."
132
-
133
- #@ cpd
134
- #: counter-options.php:488
135
- msgid "WARNING"
136
- msgstr "УВАГА"
137
-
138
- #@ cpd
139
- #: counter-options.php:489
140
- msgid "These tables (with ALL counter data) will be deleted."
141
- msgstr "Гэтыя табліцы (са усімі дадзенымі лічыльніка), будуць выдаленыя."
142
-
143
- #@ cpd
144
- #: counter-options.php:491
145
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
- msgstr "Калі \" Штодзённы лічыльнік \"переинсталлирован, лічыльнік пачынаецца з 0."
147
-
148
- #@ cpd
149
- #: counter-options.php:495
150
- msgid "Yes"
151
- msgstr "Так"
152
-
153
- #@ cpd
154
- #: counter-options.php:496
155
- msgid "You are sure to disable Count per Day and delete all data?"
156
- msgstr "Ці вы ўпэўненыя, што жадаеце адключыць \" Штодзённы лічыльнік \"і выдаліць усе дадзеныя?"
157
-
158
- #@ cpd
159
- #: counter.php:1786
160
- #: counter.php:2147
161
- msgid "Statistics"
162
- msgstr "Статыстыка"
163
-
164
- #@ cpd
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
- msgid "Total visitors"
171
- msgstr "Усяго наведвальнікаў"
172
-
173
- #@ cpd
174
- #: counter.php:530
175
- #: counter.php:2230
176
- msgid "Visitors currently online"
177
- msgstr "Наведвальнікаў зараз на сайце"
178
-
179
- #@ cpd
180
- #: counter.php:531
181
- #: counter.php:2225
182
- msgid "Visitors today"
183
- msgstr "Наведвальнікаў сёння"
184
-
185
- #@ cpd
186
- #: counter.php:532
187
- #: counter.php:2226
188
- msgid "Visitors yesterday"
189
- msgstr "Наведвальнікаў ўчора"
190
-
191
- #@ cpd
192
- #: counter.php:533
193
- #: counter.php:2227
194
- msgid "Visitors last week"
195
- msgstr "Наведвальнікаў на мінулым тыдні"
196
-
197
- #@ cpd
198
- #: counter.php:536
199
- #: counter.php:2231
200
- msgid "Counter starts on"
201
- msgstr "Лічыльнік пачынаецца з"
202
-
203
- #@ cpd
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
- msgid "Visitors per day"
212
- msgstr "Наведвальнікаў у дзень"
213
-
214
- #@ cpd
215
- #: counter.php:1752
216
- #: counter.php:2228
217
- msgid "Visitors per month"
218
- msgstr "Наведвальнікаў у месяц"
219
-
220
- #@ cpd
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
- msgid "Visitors per post"
224
- msgstr "Наведвальнікаў запісы"
225
-
226
- #@ cpd
227
- #: counter-options.php:117
228
- msgid "Counter reseted."
229
- msgstr "Лічыльнік абнулены"
230
-
231
- #@ default
232
- #: counter-options.php:233
233
- msgid "Dashboard"
234
- msgstr "Кансоль"
235
-
236
- #@ cpd
237
- #: counter-options.php:237
238
- #: counter-options.php:241
239
- msgid "How many posts do you want to see on dashboard page?"
240
- msgstr "Колькі запісаў вы хочаце бачыць на старонцы кансолі?"
241
-
242
- #@ cpd
243
- #: counter-options.php:240
244
- msgid "Latest Counts - Posts"
245
- msgstr "Апошнія лічыльнікі - Запісы"
246
-
247
- #@ cpd
248
- #: counter-options.php:244
249
- msgid "Latest Counts - Days"
250
- msgstr "Апошнія лічыльнікі - Дні"
251
-
252
- #@ cpd
253
- #: counter-options.php:245
254
- #: counter-options.php:249
255
- #: counter-options.php:275
256
- msgid "How many days do you want look back?"
257
- msgstr "Наколькі дзён таму вы хочаце бачыць статыстыку?"
258
-
259
- #@ cpd
260
- #: counter-options.php:248
261
- msgid "Chart - Days"
262
- msgstr "Табліца - Дні"
263
-
264
- #@ cpd
265
- #: counter-options.php:252
266
- msgid "Chart - Height"
267
- msgstr "Табліца - Вышыня"
268
-
269
- #@ cpd
270
- #: counter-options.php:253
271
- msgid "Height of the biggest bar"
272
- msgstr "Вышыня самага вялікага слупка"
273
-
274
- #@ cpd
275
- #: counter-options.php:290
276
- msgid "Show in lists"
277
- msgstr "Паказаць ў спісах"
278
-
279
- #@ cpd
280
- #: counter-options.php:291
281
- msgid "Show \"Reads per Post\" in a new column in post management views."
282
- msgstr "Паказаць \" чытанне паведамленняў\"у новай калонцы ва ўпраўленні запісамі"
283
-
284
- #@ cpd
285
- #: counter-options.php:463
286
- #: counter-options.php:472
287
- msgid "Reset the counter"
288
- msgstr "Абнуліць лічыльнік"
289
-
290
- #@ cpd
291
- #: counter-options.php:466
292
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
293
- msgstr "Вы можаце абнуліць лічыльнік шляхам ачысткі табліцы. УСЕ У 0! <br /> Захавайце рэзервовую копію калі вам неабходныя бягучыя дадзеныя "
294
-
295
- #@ cpd
296
- #: counter.php:845
297
- msgid "no reads at this time"
298
- msgstr "Няма разоў прачытана да гэтага часу"
299
-
300
- #@ cpd
301
- #: counter.php:819
302
- msgid "days"
303
- msgstr "Дзён"
304
-
305
- #@ cpd
306
- #: counter.php:1257
307
- #, php-format
308
- msgid "The %s most visited posts in last %s days:"
309
- msgstr "Самае% s наведвальныя запісы за апошнія% s дзён:"
310
-
311
- #@ default
312
- #: counter.php:1591
313
- msgid "Settings"
314
- msgstr "Налады"
315
-
316
- #@ cpd
317
- #: counter.php:635
318
- #: counter.php:1766
319
- msgid "Reads per day"
320
- msgstr "Чытанне ў дзень"
321
-
322
- #@ cpd
323
- #: counter-options.php:225
324
- #: counter.php:528
325
- #: counter.php:1661
326
- msgid "Reads"
327
- msgstr "Чытанне"
328
-
329
- #@ cpd
330
- #: counter.php:2218
331
- msgid "This post"
332
- msgstr "Гэтая запіс"
333
-
334
- #@ cpd
335
- #: counter-options.php:57
336
- #, php-format
337
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
- msgstr "Краіны <b>абноўлены.% s</b> запісаў у% s засталося без краін"
339
-
340
- #@ cpd
341
- #: counter-options.php:62
342
- msgid "update next"
343
- msgstr "Абнавіць наступны"
344
-
345
- #@ cpd
346
- #: counter-options.php:104
347
- #, php-format
348
- msgid "Mass Bots cleaned. %s counts deleted."
349
- msgstr "Табліца робатаў ачышчана.% s запісаў выдаленае"
350
-
351
- #@ cpd
352
- #: counter-options.php:197
353
- msgid "until User Level"
354
- msgstr "Да ўзроўню карыстальніка"
355
-
356
- #@ cpd
357
- #: counter-options.php:216
358
- msgid "Anonymous IP"
359
- msgstr "Ананімны IP"
360
-
361
- #@ cpd
362
- #: counter-options.php:261
363
- msgid "Countries"
364
- msgstr "Краіны"
365
-
366
- #@ cpd
367
- #: counter-options.php:262
368
- msgid "How many countries do you want to see on dashboard page?"
369
- msgstr "Колькі краін вы хочаце бачыць у спісе?"
370
-
371
- #@ cpd
372
- #: counter-options.php:299
373
- msgid "Start Values"
374
- msgstr "Пачатковыя дадзеныя"
375
-
376
- #@ cpd
377
- #: counter-options.php:303
378
- msgid "Here you can change the date of first count and add a start count."
379
- msgstr "Тут вы можаце памяняць дату пачатку адліку і дадаць пачатковы лічыльнік"
380
-
381
- #@ cpd
382
- #: counter-options.php:307
383
- msgid "Start date"
384
- msgstr "Дата пачатку"
385
-
386
- #@ cpd
387
- #: counter-options.php:308
388
- msgid "Your old Counter starts at?"
389
- msgstr "Ваш стары Лічыльнік пачынаўся з"
390
-
391
- #@ cpd
392
- #: counter-options.php:311
393
- #: counter-options.php:315
394
- msgid "Start count"
395
- msgstr "Пачатак адліку"
396
-
397
- #@ cpd
398
- #: counter-options.php:312
399
- msgid "Add this value to \"Total visitors\"."
400
- msgstr "Дадаць значэнне да \" Усяго наведвальнікаў \"."
401
-
402
- #@ cpd
403
- #: counter-options.php:340
404
- msgid "GeoIP - Countries"
405
- msgstr "GeoIP - Краіны"
406
-
407
- #@ cpd
408
- #: counter-options.php:349
409
- msgid "Update old counter data"
410
- msgstr "Абнавіць дадзеныя старога лічыльніка"
411
-
412
- #@ cpd
413
- #: counter-options.php:362
414
- msgid "Update GeoIP database"
415
- msgstr "Абнавіць базу дадзеных GeoIP"
416
-
417
- #@ cpd
418
- #: counter-options.php:365
419
- msgid "Download a new version of GeoIP.dat file."
420
- msgstr "Запампаваць новую версію файла GeoIP.dat."
421
-
422
- #@ cpd
423
- #: counter-options.php:371
424
- msgid "More informations about GeoIP"
425
- msgstr "Больш інфармацыі пра GeoIP"
426
-
427
- #@ cpd
428
- #: counter-options.php:386
429
- #: massbots.php:33
430
- msgid "Mass Bots"
431
- msgstr "Верагодныя боты"
432
-
433
- #@ cpd
434
- #: counter-options.php:390
435
- #, php-format
436
- msgid "Show all IPs with more than %s page views per day"
437
- msgstr "Паказаць усе IP з больш чым% s праглядаў у суткі"
438
-
439
- #@ cpd
440
- #: counter-options.php:391
441
- #: notes.php:76
442
- #: userperspan.php:43
443
- msgid "show"
444
- msgstr "Паказаць"
445
-
446
- #@ cpd
447
- #: counter-options.php:399
448
- msgid "IP"
449
- msgstr "IP"
450
-
451
- #@ cpd
452
- #@ default
453
- #: counter-options.php:400
454
- #: notes.php:80
455
- msgid "Date"
456
- msgstr "Дата"
457
-
458
- #@ cpd
459
- #: counter-options.php:401
460
- msgid "Client"
461
- msgstr "Кліент"
462
-
463
- #@ cpd
464
- #: counter-options.php:402
465
- msgid "Views"
466
- msgstr "Праглядаў"
467
-
468
- #@ cpd
469
- #: counter-options.php:413
470
- #: counter-options.php:435
471
- #, php-format
472
- msgid "Delete these %s counts"
473
- msgstr "Выдаліць гэтыя% s лічыльнікаў"
474
-
475
- #@ cpd
476
- #: counter-options.php:504
477
- msgid "Support"
478
- msgstr "Падтрымка"
479
-
480
- #@ cpd
481
- #: counter.php:1716
482
- #, php-format
483
- msgid "Time for Count per Day: <code>%s</code>."
484
- msgstr "Час для Count per Day: <code>%s</code> "
485
-
486
- #@ cpd
487
- #: counter.php:1717
488
- msgid "Bug? Problem? Question? Hint? Praise?"
489
- msgstr "Памылка? Праблема? Пытанне? Савет? Хвала?"
490
-
491
- #@ cpd
492
- #: counter.php:1718
493
- #, php-format
494
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
495
- msgstr "Напішыце каментар на <a href=\"%s\">старонцы плагіна</a> "
496
-
497
- #@ cpd
498
- #: counter.php:524
499
- #: counter.php:2219
500
- msgid "Total reads"
501
- msgstr "Усяго чытанняў"
502
-
503
- #@ cpd
504
- #: counter.php:525
505
- #: counter.php:2220
506
- msgid "Reads today"
507
- msgstr "Чытанне сёння"
508
-
509
- #@ cpd
510
- #: counter.php:526
511
- #: counter.php:2221
512
- msgid "Reads yesterday"
513
- msgstr "Чытанне ўчора"
514
-
515
- #@ cpd
516
- #: counter.php:822
517
- #: counter.php:1376
518
- #: notes.php:47
519
- #: notes.php:81
520
- msgid "Notes"
521
- msgstr "Нататкі"
522
-
523
- #@ default
524
- #: counter.php:1374
525
- msgid "Show"
526
- msgstr "Паказаць"
527
-
528
- #@ cpd
529
- #: counter.php:1421
530
- msgid "Other"
531
- msgstr "Іншыя"
532
-
533
- #@ default
534
- #: counter.php:1505
535
- msgid "Edit Post"
536
- msgstr "Рэдагаваць запіс"
537
-
538
- #@ default
539
- #: counter.php:1520
540
- #: massbots.php:50
541
- #: userperspan.php:63
542
- msgid "Front page displays"
543
- msgstr "Адлюстраванне галоўнай старонкі"
544
-
545
- #@ cpd
546
- #: counter-options.php:266
547
- #: counter.php:1760
548
- msgid "Browsers"
549
- msgstr "Браўзэры"
550
-
551
- #@ cpd
552
- #: counter.php:1755
553
- msgid "Latest Counts"
554
- msgstr "Нядаўнія падлікі"
555
-
556
- #@ default
557
- #: counter.php:1757
558
- msgid "Plugin"
559
- msgstr "Плагін"
560
-
561
- #@ cpd
562
- #: counter.php:1770
563
- msgid "Reads per Country"
564
- msgstr "Чытанне па краінах"
565
-
566
- #@ cpd
567
- #: counter.php:900
568
- #: counter.php:1856
569
- msgid "Map"
570
- msgstr "Карта"
571
-
572
- #@ cpd
573
- #: geoip/geoip.php:108
574
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
575
- msgstr "Прыносім выбачэнні, неабходныя функцыі (zlib) не ўстаноўлена або не ўключана ў php.ini."
576
-
577
- #@ cpd
578
- #: geoip/geoip.php:132
579
- msgid "New GeoIP database installed."
580
- msgstr "Новая база дадзеных GeoIP ўсталяваная."
581
-
582
- #@ cpd
583
- #: geoip/geoip.php:134
584
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
585
- msgstr "Прыносім выбачэнні, адбылася памылка. Паспрабуйце зноў або праверце што правы доступу да тэчцы \" geoip \"- 777"
586
-
587
- #@ cpd
588
- #: notes.php:81
589
- msgid "(1 per day)"
590
- msgstr "(1 на суткі)"
591
-
592
- #@ default
593
- #: notes.php:82
594
- msgid "Action"
595
- msgstr "Дзеянне"
596
-
597
- #@ cpd
598
- #: notes.php:87
599
- msgid "add"
600
- msgstr "Дадаць"
601
-
602
- #@ cpd
603
- #: notes.php:102
604
- msgid "save"
605
- msgstr "Захаваць"
606
-
607
- #@ cpd
608
- #: notes.php:103
609
- msgid "delete"
610
- msgstr "Выдаліць"
611
-
612
- #@ cpd
613
- #: notes.php:114
614
- msgid "edit"
615
- msgstr "Рэдагаваць"
616
-
617
- #@ cpd
618
- #: counter-options.php:220
619
- msgid "Cache"
620
- msgstr "Кэш"
621
-
622
- #@ cpd
623
- #: counter-options.php:221
624
- msgid "I use a cache plugin. Count these visits with ajax."
625
- msgstr "Я выкарыстоўваю кэшавання убудова. Лічыць гэтыя наведвання пры дапамозе ajax"
626
-
627
- #@ cpd
628
- #: counter-options.php:267
629
- msgid "Substring of the user agent, separated by comma"
630
- msgstr "Падрадок агента карыстальніка падзелены коскі"
631
-
632
- #@ cpd
633
- #: counter-options.php:324
634
- msgid "Debug mode"
635
- msgstr "Рэжым адладкі"
636
-
637
- #@ cpd
638
- #: counter-options.php:326
639
- msgid "Show debug informations at the bottom of all pages."
640
- msgstr "Дадаць дапаможную інфармацыю ўнізе кожнай старонкі."
641
-
642
- #@ cpd
643
- #: counter.php:1771
644
- msgid "Visitors per Country"
645
- msgstr "Наведвальнікаў па краінах"
646
-
647
- #@ cpd
648
- #: userperspan.php:37
649
- msgid "Start"
650
- msgstr "Пачатак"
651
-
652
- #@ cpd
653
- #: userperspan.php:39
654
- msgid "End"
655
- msgstr "Канец"
656
-
657
- #@ cpd
658
- #: userperspan.php:41
659
- msgid "PostID"
660
- msgstr "ID паведамлення"
661
-
662
- #@ cpd
663
- #: counter-options.php:316
664
- msgid "Add this value to \"Total reads\"."
665
- msgstr "Дадаць значэнне да \" Усяго разоў прачытана \"."
666
-
667
- #@ cpd
668
- #: counter-options.php:352
669
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
670
- msgstr "Вы можаце атрымаць дадзеныя краін для ўсіх запісаў праверыўшы IP адрасы зноўку. Можа заняць некаторы час!"
671
-
672
- #@ cpd
673
- #: userperspan.php:49
674
- msgid "no data found"
675
- msgstr "Нічога не знойдзена"
676
-
677
- #@ cpd
678
- #: counter-options.php:186
679
- msgid "Counter"
680
- msgstr "Лічыльнік"
681
-
682
- #@ cpd
683
- #: counter-options.php:224
684
- msgid "Clients and referrers"
685
- msgstr "Кліенты і якія спасылаюцца сайты"
686
-
687
- #@ cpd
688
- #: counter-options.php:225
689
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
- msgstr "Захаваць і паказаць кліентаў і якія спасылаюцца сайты. <br /> Патрабуе шмат дыскавай прасторы ў базе дадзеных, але дае больш дэталёвую інфармацыю аб вашых наведвальніках. "
691
-
692
- #@ cpd
693
- #: counter-options.php:278
694
- msgid "Local URLs"
695
- msgstr "Лакальныя URL"
696
-
697
- #@ cpd
698
- #: counter-options.php:279
699
- msgid "Show local referrers too."
700
- msgstr "Паказваць лакальныя пераходы таксама."
701
-
702
- #@ default
703
- #: counter-options.php:287
704
- msgid "Posts"
705
- msgstr "Запісы"
706
-
707
- #@ default
708
- #: counter-options.php:287
709
- msgid "Pages"
710
- msgstr "Старонкі"
711
-
712
- #@ cpd
713
- #: counter.php:527
714
- #: counter.php:2222
715
- msgid "Reads last week"
716
- msgstr "Чытанне на мінулым тыдні"
717
-
718
- #@ default
719
- #: counter.php:1514
720
- msgid "Category"
721
- msgstr "Катэгорыя"
722
-
723
- #@ default
724
- #: counter.php:1517
725
- msgid "Tag"
726
- msgstr "Тег"
727
-
728
- #@ default
729
- #: counter.php:1719
730
- msgid "License"
731
- msgstr "Ліцэнзія"
732
-
733
- #@ cpd
734
- #: counter.php:1753
735
- #: counter.php:2223
736
- msgid "Reads per month"
737
- msgstr "Чытанне за месяц"
738
-
739
- #@ cpd
740
- #: counter.php:1761
741
- msgid "Referrer"
742
- msgstr "Спасылаецца сайт"
743
-
744
- #@ cpd
745
- #: counter-options.php:256
746
- msgid "Old Charts"
747
- msgstr "Старыя табліцы"
748
-
749
- #@ cpd
750
- #: counter-options.php:257
751
- msgid "Show old bar charts."
752
- msgstr "Паказаць у табліцу слупкамі"
753
-
754
- #@ cpd
755
- #: counter-options.php:270
756
- msgid "Referrers - Entries"
757
- msgstr "Старонкі, якія спасылаюцца сайты - Уваходжанне"
758
-
759
- #@ cpd
760
- #: counter-options.php:271
761
- msgid "How many referrers do you want to see on dashboard page?"
762
- msgstr "Колькі спасылаюцца сайтаў вы хочаце ўбачыць на старонцы статыстыкі?"
763
-
764
- #@ cpd
765
- #: counter-options.php:274
766
- msgid "Referrers - Days"
767
- msgstr "Старонкі, якія спасылаюцца сайты - Дні"
768
-
769
- #@ cpd
770
- #: counter.php:1449
771
- #, php-format
772
- msgid "The %s referrers in last %s days:"
773
- msgstr "%s спасылаюцца сайтаў за апошнія% s дзён:"
774
-
775
- #@ cpd
776
- #: counter.php:1751
777
- msgid "Visitors online"
778
- msgstr "Наведвальнікаў на сайце"
779
-
780
- #@ default
781
- #: counter.php:2242
782
- msgid "Title"
783
- msgstr "Загаловак"
784
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Belarusian\n"
14
+ "X-Poedit-Country: BELARUS\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:46
23
+ msgid "Options updated"
24
+ msgstr "Налады захаваныя"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:111
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "База дадзеных ачышчана.%s радкоў выдаленае."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:121
34
+ #: counter-options.php:496
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "Выдаліць Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:126
40
+ #: counter-options.php:128
41
+ #: counter-options.php:130
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Табліца% s выдалена"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:132
48
+ msgid "Options deleted"
49
+ msgstr "Налады выдалены"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:156
53
+ #: counter-options.php:481
54
+ msgid "Uninstall"
55
+ msgstr "Деинсталяция"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:157
59
+ msgid "Click here"
60
+ msgstr "Націсніце сюды"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:157
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "Для завяршэння деинсталяции і адключэння \" Штодзённага лічыльніка\"."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:179
69
+ msgid "Options"
70
+ msgstr "Налады"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:190
74
+ msgid "Online time"
75
+ msgstr "Час онлайн"
76
+
77
+ #@ cpd
78
+ #: counter-options.php:191
79
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
+ msgstr "Сэкунд для онлайн лічыльніка. Выкарыстоўваецца для \" Наведвальнікаў онлайн\"на \" Панэлі інструмэнтаў\"."
81
+
82
+ #@ cpd
83
+ #: counter-options.php:194
84
+ msgid "Logged on Users"
85
+ msgstr "Якія ўвайшлі карыстальнікаў"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:196
89
+ msgid "count too"
90
+ msgstr "Таксама лічыць"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:208
94
+ msgid "Auto counter"
95
+ msgstr "Аўтаматычны лічыльнік"
96
+
97
+ #@ cpd
98
+ #: counter-options.php:209
99
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
100
+ msgstr "Лічыць аўтаматычна асобныя публікацыі і старонкі, ніякіх зменаў у шаблон не спатрэбіцца."
101
+
102
+ #@ cpd
103
+ #: counter-options.php:212
104
+ msgid "Bots to ignore"
105
+ msgstr "Ігнараваць робатаў"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:331
109
+ msgid "Update options"
110
+ msgstr "Захаваць наладкі"
111
+
112
+ #@ cpd
113
+ #: counter-options.php:445
114
+ #: counter-options.php:454
115
+ msgid "Clean the database"
116
+ msgstr "Ачысьціць базу даных"
117
+
118
+ #@ cpd
119
+ #: counter-options.php:448
120
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
+ msgstr "Вы можаце ачысціць лічыльнік выдаліўшы \" Спам \". <br /> Калі вы дадасце новых робатаў-над \"Спам \", вы захаваеце базу дадзеных. <br /> Тут вы можаце запусціць бот-фільтр зноў і выдаліць наведвання ботаў. "
122
+
123
+ #@ cpd
124
+ #: counter-options.php:484
125
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
+ msgstr "Калі \" Штодзённы лічыльнік \"актываваны, табліцы ў базах дадзеных будуць захаваныя:)."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:485
130
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
131
+ msgstr "Тут вы можаце выдаліць табліцы і адключыць \" Штодзённы лічыльнік \"."
132
+
133
+ #@ cpd
134
+ #: counter-options.php:488
135
+ msgid "WARNING"
136
+ msgstr "УВАГА"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:489
140
+ msgid "These tables (with ALL counter data) will be deleted."
141
+ msgstr "Гэтыя табліцы (са усімі дадзенымі лічыльніка), будуць выдаленыя."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:491
145
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
+ msgstr "Калі \" Штодзённы лічыльнік \"переинсталлирован, лічыльнік пачынаецца з 0."
147
+
148
+ #@ cpd
149
+ #: counter-options.php:495
150
+ msgid "Yes"
151
+ msgstr "Так"
152
+
153
+ #@ cpd
154
+ #: counter-options.php:496
155
+ msgid "You are sure to disable Count per Day and delete all data?"
156
+ msgstr "Ці вы ўпэўненыя, што жадаеце адключыць \" Штодзённы лічыльнік \"і выдаліць усе дадзеныя?"
157
+
158
+ #@ cpd
159
+ #: counter.php:1786
160
+ #: counter.php:2147
161
+ msgid "Statistics"
162
+ msgstr "Статыстыка"
163
+
164
+ #@ cpd
165
+ #: counter.php:529
166
+ #: counter.php:534
167
+ #: counter.php:1604
168
+ #: counter.php:1750
169
+ #: counter.php:2224
170
+ msgid "Total visitors"
171
+ msgstr "Усяго наведвальнікаў"
172
+
173
+ #@ cpd
174
+ #: counter.php:530
175
+ #: counter.php:2230
176
+ msgid "Visitors currently online"
177
+ msgstr "Наведвальнікаў зараз на сайце"
178
+
179
+ #@ cpd
180
+ #: counter.php:531
181
+ #: counter.php:2225
182
+ msgid "Visitors today"
183
+ msgstr "Наведвальнікаў сёння"
184
+
185
+ #@ cpd
186
+ #: counter.php:532
187
+ #: counter.php:2226
188
+ msgid "Visitors yesterday"
189
+ msgstr "Наведвальнікаў ўчора"
190
+
191
+ #@ cpd
192
+ #: counter.php:533
193
+ #: counter.php:2227
194
+ msgid "Visitors last week"
195
+ msgstr "Наведвальнікаў на мінулым тыдні"
196
+
197
+ #@ cpd
198
+ #: counter.php:536
199
+ #: counter.php:2231
200
+ msgid "Counter starts on"
201
+ msgstr "Лічыльнік пачынаецца з"
202
+
203
+ #@ cpd
204
+ #: counter.php:535
205
+ #: counter.php:636
206
+ #: counter.php:1606
207
+ #: counter.php:1756
208
+ #: counter.php:1765
209
+ #: counter.php:2229
210
+ #: userperspan.php:33
211
+ msgid "Visitors per day"
212
+ msgstr "Наведвальнікаў у дзень"
213
+
214
+ #@ cpd
215
+ #: counter.php:1752
216
+ #: counter.php:2228
217
+ msgid "Visitors per month"
218
+ msgstr "Наведвальнікаў у месяц"
219
+
220
+ #@ cpd
221
+ #: counter-options.php:236
222
+ #: counter.php:1754
223
+ msgid "Visitors per post"
224
+ msgstr "Наведвальнікаў запісы"
225
+
226
+ #@ cpd
227
+ #: counter-options.php:117
228
+ msgid "Counter reseted."
229
+ msgstr "Лічыльнік абнулены"
230
+
231
+ #@ default
232
+ #: counter-options.php:233
233
+ msgid "Dashboard"
234
+ msgstr "Кансоль"
235
+
236
+ #@ cpd
237
+ #: counter-options.php:237
238
+ #: counter-options.php:241
239
+ msgid "How many posts do you want to see on dashboard page?"
240
+ msgstr "Колькі запісаў вы хочаце бачыць на старонцы кансолі?"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:240
244
+ msgid "Latest Counts - Posts"
245
+ msgstr "Апошнія лічыльнікі - Запісы"
246
+
247
+ #@ cpd
248
+ #: counter-options.php:244
249
+ msgid "Latest Counts - Days"
250
+ msgstr "Апошнія лічыльнікі - Дні"
251
+
252
+ #@ cpd
253
+ #: counter-options.php:245
254
+ #: counter-options.php:249
255
+ #: counter-options.php:275
256
+ msgid "How many days do you want look back?"
257
+ msgstr "Наколькі дзён таму вы хочаце бачыць статыстыку?"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:248
261
+ msgid "Chart - Days"
262
+ msgstr "Табліца - Дні"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:252
266
+ msgid "Chart - Height"
267
+ msgstr "Табліца - Вышыня"
268
+
269
+ #@ cpd
270
+ #: counter-options.php:253
271
+ msgid "Height of the biggest bar"
272
+ msgstr "Вышыня самага вялікага слупка"
273
+
274
+ #@ cpd
275
+ #: counter-options.php:290
276
+ msgid "Show in lists"
277
+ msgstr "Паказаць ў спісах"
278
+
279
+ #@ cpd
280
+ #: counter-options.php:291
281
+ msgid "Show \"Reads per Post\" in a new column in post management views."
282
+ msgstr "Паказаць \" чытанне паведамленняў\"у новай калонцы ва ўпраўленні запісамі"
283
+
284
+ #@ cpd
285
+ #: counter-options.php:463
286
+ #: counter-options.php:472
287
+ msgid "Reset the counter"
288
+ msgstr "Абнуліць лічыльнік"
289
+
290
+ #@ cpd
291
+ #: counter-options.php:466
292
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
293
+ msgstr "Вы можаце абнуліць лічыльнік шляхам ачысткі табліцы. УСЕ У 0! <br /> Захавайце рэзервовую копію калі вам неабходныя бягучыя дадзеныя "
294
+
295
+ #@ cpd
296
+ #: counter.php:845
297
+ msgid "no reads at this time"
298
+ msgstr "Няма разоў прачытана да гэтага часу"
299
+
300
+ #@ cpd
301
+ #: counter.php:819
302
+ msgid "days"
303
+ msgstr "Дзён"
304
+
305
+ #@ cpd
306
+ #: counter.php:1257
307
+ #, php-format
308
+ msgid "The %s most visited posts in last %s days:"
309
+ msgstr "Самае% s наведвальныя запісы за апошнія% s дзён:"
310
+
311
+ #@ default
312
+ #: counter.php:1591
313
+ msgid "Settings"
314
+ msgstr "Налады"
315
+
316
+ #@ cpd
317
+ #: counter.php:635
318
+ #: counter.php:1766
319
+ msgid "Reads per day"
320
+ msgstr "Чытанне ў дзень"
321
+
322
+ #@ cpd
323
+ #: counter-options.php:225
324
+ #: counter.php:528
325
+ #: counter.php:1661
326
+ msgid "Reads"
327
+ msgstr "Чытанне"
328
+
329
+ #@ cpd
330
+ #: counter.php:2218
331
+ msgid "This post"
332
+ msgstr "Гэтая запіс"
333
+
334
+ #@ cpd
335
+ #: counter-options.php:57
336
+ #, php-format
337
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
+ msgstr "Краіны <b>абноўлены.% s</b> запісаў у% s засталося без краін"
339
+
340
+ #@ cpd
341
+ #: counter-options.php:62
342
+ msgid "update next"
343
+ msgstr "Абнавіць наступны"
344
+
345
+ #@ cpd
346
+ #: counter-options.php:104
347
+ #, php-format
348
+ msgid "Mass Bots cleaned. %s counts deleted."
349
+ msgstr "Табліца робатаў ачышчана.% s запісаў выдаленае"
350
+
351
+ #@ cpd
352
+ #: counter-options.php:197
353
+ msgid "until User Level"
354
+ msgstr "Да ўзроўню карыстальніка"
355
+
356
+ #@ cpd
357
+ #: counter-options.php:216
358
+ msgid "Anonymous IP"
359
+ msgstr "Ананімны IP"
360
+
361
+ #@ cpd
362
+ #: counter-options.php:261
363
+ msgid "Countries"
364
+ msgstr "Краіны"
365
+
366
+ #@ cpd
367
+ #: counter-options.php:262
368
+ msgid "How many countries do you want to see on dashboard page?"
369
+ msgstr "Колькі краін вы хочаце бачыць у спісе?"
370
+
371
+ #@ cpd
372
+ #: counter-options.php:299
373
+ msgid "Start Values"
374
+ msgstr "Пачатковыя дадзеныя"
375
+
376
+ #@ cpd
377
+ #: counter-options.php:303
378
+ msgid "Here you can change the date of first count and add a start count."
379
+ msgstr "Тут вы можаце памяняць дату пачатку адліку і дадаць пачатковы лічыльнік"
380
+
381
+ #@ cpd
382
+ #: counter-options.php:307
383
+ msgid "Start date"
384
+ msgstr "Дата пачатку"
385
+
386
+ #@ cpd
387
+ #: counter-options.php:308
388
+ msgid "Your old Counter starts at?"
389
+ msgstr "Ваш стары Лічыльнік пачынаўся з"
390
+
391
+ #@ cpd
392
+ #: counter-options.php:311
393
+ #: counter-options.php:315
394
+ msgid "Start count"
395
+ msgstr "Пачатак адліку"
396
+
397
+ #@ cpd
398
+ #: counter-options.php:312
399
+ msgid "Add this value to \"Total visitors\"."
400
+ msgstr "Дадаць значэнне да \" Усяго наведвальнікаў \"."
401
+
402
+ #@ cpd
403
+ #: counter-options.php:340
404
+ msgid "GeoIP - Countries"
405
+ msgstr "GeoIP - Краіны"
406
+
407
+ #@ cpd
408
+ #: counter-options.php:349
409
+ msgid "Update old counter data"
410
+ msgstr "Абнавіць дадзеныя старога лічыльніка"
411
+
412
+ #@ cpd
413
+ #: counter-options.php:362
414
+ msgid "Update GeoIP database"
415
+ msgstr "Абнавіць базу дадзеных GeoIP"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:365
419
+ msgid "Download a new version of GeoIP.dat file."
420
+ msgstr "Запампаваць новую версію файла GeoIP.dat."
421
+
422
+ #@ cpd
423
+ #: counter-options.php:371
424
+ msgid "More informations about GeoIP"
425
+ msgstr "Больш інфармацыі пра GeoIP"
426
+
427
+ #@ cpd
428
+ #: counter-options.php:386
429
+ #: massbots.php:33
430
+ msgid "Mass Bots"
431
+ msgstr "Верагодныя боты"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:390
435
+ #, php-format
436
+ msgid "Show all IPs with more than %s page views per day"
437
+ msgstr "Паказаць усе IP з больш чым% s праглядаў у суткі"
438
+
439
+ #@ cpd
440
+ #: counter-options.php:391
441
+ #: notes.php:76
442
+ #: userperspan.php:43
443
+ msgid "show"
444
+ msgstr "Паказаць"
445
+
446
+ #@ cpd
447
+ #: counter-options.php:399
448
+ msgid "IP"
449
+ msgstr "IP"
450
+
451
+ #@ cpd
452
+ #@ default
453
+ #: counter-options.php:400
454
+ #: notes.php:80
455
+ msgid "Date"
456
+ msgstr "Дата"
457
+
458
+ #@ cpd
459
+ #: counter-options.php:401
460
+ msgid "Client"
461
+ msgstr "Кліент"
462
+
463
+ #@ cpd
464
+ #: counter-options.php:402
465
+ msgid "Views"
466
+ msgstr "Праглядаў"
467
+
468
+ #@ cpd
469
+ #: counter-options.php:413
470
+ #: counter-options.php:435
471
+ #, php-format
472
+ msgid "Delete these %s counts"
473
+ msgstr "Выдаліць гэтыя% s лічыльнікаў"
474
+
475
+ #@ cpd
476
+ #: counter-options.php:504
477
+ msgid "Support"
478
+ msgstr "Падтрымка"
479
+
480
+ #@ cpd
481
+ #: counter.php:1716
482
+ #, php-format
483
+ msgid "Time for Count per Day: <code>%s</code>."
484
+ msgstr "Час для Count per Day: <code>%s</code> "
485
+
486
+ #@ cpd
487
+ #: counter.php:1717
488
+ msgid "Bug? Problem? Question? Hint? Praise?"
489
+ msgstr "Памылка? Праблема? Пытанне? Савет? Хвала?"
490
+
491
+ #@ cpd
492
+ #: counter.php:1718
493
+ #, php-format
494
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
495
+ msgstr "Напішыце каментар на <a href=\"%s\">старонцы плагіна</a> "
496
+
497
+ #@ cpd
498
+ #: counter.php:524
499
+ #: counter.php:2219
500
+ msgid "Total reads"
501
+ msgstr "Усяго чытанняў"
502
+
503
+ #@ cpd
504
+ #: counter.php:525
505
+ #: counter.php:2220
506
+ msgid "Reads today"
507
+ msgstr "Чытанне сёння"
508
+
509
+ #@ cpd
510
+ #: counter.php:526
511
+ #: counter.php:2221
512
+ msgid "Reads yesterday"
513
+ msgstr "Чытанне ўчора"
514
+
515
+ #@ cpd
516
+ #: counter.php:822
517
+ #: counter.php:1376
518
+ #: notes.php:47
519
+ #: notes.php:81
520
+ msgid "Notes"
521
+ msgstr "Нататкі"
522
+
523
+ #@ default
524
+ #: counter.php:1374
525
+ msgid "Show"
526
+ msgstr "Паказаць"
527
+
528
+ #@ cpd
529
+ #: counter.php:1421
530
+ msgid "Other"
531
+ msgstr "Іншыя"
532
+
533
+ #@ default
534
+ #: counter.php:1505
535
+ msgid "Edit Post"
536
+ msgstr "Рэдагаваць запіс"
537
+
538
+ #@ default
539
+ #: counter.php:1520
540
+ #: massbots.php:50
541
+ #: userperspan.php:63
542
+ msgid "Front page displays"
543
+ msgstr "Адлюстраванне галоўнай старонкі"
544
+
545
+ #@ cpd
546
+ #: counter-options.php:266
547
+ #: counter.php:1760
548
+ msgid "Browsers"
549
+ msgstr "Браўзэры"
550
+
551
+ #@ cpd
552
+ #: counter.php:1755
553
+ msgid "Latest Counts"
554
+ msgstr "Нядаўнія падлікі"
555
+
556
+ #@ default
557
+ #: counter.php:1757
558
+ msgid "Plugin"
559
+ msgstr "Плагін"
560
+
561
+ #@ cpd
562
+ #: counter.php:1770
563
+ msgid "Reads per Country"
564
+ msgstr "Чытанне па краінах"
565
+
566
+ #@ cpd
567
+ #: counter.php:900
568
+ #: counter.php:1856
569
+ msgid "Map"
570
+ msgstr "Карта"
571
+
572
+ #@ cpd
573
+ #: geoip/geoip.php:108
574
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
575
+ msgstr "Прыносім выбачэнні, неабходныя функцыі (zlib) не ўстаноўлена або не ўключана ў php.ini."
576
+
577
+ #@ cpd
578
+ #: geoip/geoip.php:132
579
+ msgid "New GeoIP database installed."
580
+ msgstr "Новая база дадзеных GeoIP ўсталяваная."
581
+
582
+ #@ cpd
583
+ #: geoip/geoip.php:134
584
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
585
+ msgstr "Прыносім выбачэнні, адбылася памылка. Паспрабуйце зноў або праверце што правы доступу да тэчцы \" geoip \"- 777"
586
+
587
+ #@ cpd
588
+ #: notes.php:81
589
+ msgid "(1 per day)"
590
+ msgstr "(1 на суткі)"
591
+
592
+ #@ default
593
+ #: notes.php:82
594
+ msgid "Action"
595
+ msgstr "Дзеянне"
596
+
597
+ #@ cpd
598
+ #: notes.php:87
599
+ msgid "add"
600
+ msgstr "Дадаць"
601
+
602
+ #@ cpd
603
+ #: notes.php:102
604
+ msgid "save"
605
+ msgstr "Захаваць"
606
+
607
+ #@ cpd
608
+ #: notes.php:103
609
+ msgid "delete"
610
+ msgstr "Выдаліць"
611
+
612
+ #@ cpd
613
+ #: notes.php:114
614
+ msgid "edit"
615
+ msgstr "Рэдагаваць"
616
+
617
+ #@ cpd
618
+ #: counter-options.php:220
619
+ msgid "Cache"
620
+ msgstr "Кэш"
621
+
622
+ #@ cpd
623
+ #: counter-options.php:221
624
+ msgid "I use a cache plugin. Count these visits with ajax."
625
+ msgstr "Я выкарыстоўваю кэшавання убудова. Лічыць гэтыя наведвання пры дапамозе ajax"
626
+
627
+ #@ cpd
628
+ #: counter-options.php:267
629
+ msgid "Substring of the user agent, separated by comma"
630
+ msgstr "Падрадок агента карыстальніка падзелены коскі"
631
+
632
+ #@ cpd
633
+ #: counter-options.php:324
634
+ msgid "Debug mode"
635
+ msgstr "Рэжым адладкі"
636
+
637
+ #@ cpd
638
+ #: counter-options.php:326
639
+ msgid "Show debug informations at the bottom of all pages."
640
+ msgstr "Дадаць дапаможную інфармацыю ўнізе кожнай старонкі."
641
+
642
+ #@ cpd
643
+ #: counter.php:1771
644
+ msgid "Visitors per Country"
645
+ msgstr "Наведвальнікаў па краінах"
646
+
647
+ #@ cpd
648
+ #: userperspan.php:37
649
+ msgid "Start"
650
+ msgstr "Пачатак"
651
+
652
+ #@ cpd
653
+ #: userperspan.php:39
654
+ msgid "End"
655
+ msgstr "Канец"
656
+
657
+ #@ cpd
658
+ #: userperspan.php:41
659
+ msgid "PostID"
660
+ msgstr "ID паведамлення"
661
+
662
+ #@ cpd
663
+ #: counter-options.php:316
664
+ msgid "Add this value to \"Total reads\"."
665
+ msgstr "Дадаць значэнне да \" Усяго разоў прачытана \"."
666
+
667
+ #@ cpd
668
+ #: counter-options.php:352
669
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
670
+ msgstr "Вы можаце атрымаць дадзеныя краін для ўсіх запісаў праверыўшы IP адрасы зноўку. Можа заняць некаторы час!"
671
+
672
+ #@ cpd
673
+ #: userperspan.php:49
674
+ msgid "no data found"
675
+ msgstr "Нічога не знойдзена"
676
+
677
+ #@ cpd
678
+ #: counter-options.php:186
679
+ msgid "Counter"
680
+ msgstr "Лічыльнік"
681
+
682
+ #@ cpd
683
+ #: counter-options.php:224
684
+ msgid "Clients and referrers"
685
+ msgstr "Кліенты і якія спасылаюцца сайты"
686
+
687
+ #@ cpd
688
+ #: counter-options.php:225
689
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
+ msgstr "Захаваць і паказаць кліентаў і якія спасылаюцца сайты. <br /> Патрабуе шмат дыскавай прасторы ў базе дадзеных, але дае больш дэталёвую інфармацыю аб вашых наведвальніках. "
691
+
692
+ #@ cpd
693
+ #: counter-options.php:278
694
+ msgid "Local URLs"
695
+ msgstr "Лакальныя URL"
696
+
697
+ #@ cpd
698
+ #: counter-options.php:279
699
+ msgid "Show local referrers too."
700
+ msgstr "Паказваць лакальныя пераходы таксама."
701
+
702
+ #@ default
703
+ #: counter-options.php:287
704
+ msgid "Posts"
705
+ msgstr "Запісы"
706
+
707
+ #@ default
708
+ #: counter-options.php:287
709
+ msgid "Pages"
710
+ msgstr "Старонкі"
711
+
712
+ #@ cpd
713
+ #: counter.php:527
714
+ #: counter.php:2222
715
+ msgid "Reads last week"
716
+ msgstr "Чытанне на мінулым тыдні"
717
+
718
+ #@ default
719
+ #: counter.php:1514
720
+ msgid "Category"
721
+ msgstr "Катэгорыя"
722
+
723
+ #@ default
724
+ #: counter.php:1517
725
+ msgid "Tag"
726
+ msgstr "Тег"
727
+
728
+ #@ default
729
+ #: counter.php:1719
730
+ msgid "License"
731
+ msgstr "Ліцэнзія"
732
+
733
+ #@ cpd
734
+ #: counter.php:1753
735
+ #: counter.php:2223
736
+ msgid "Reads per month"
737
+ msgstr "Чытанне за месяц"
738
+
739
+ #@ cpd
740
+ #: counter.php:1761
741
+ msgid "Referrer"
742
+ msgstr "Спасылаецца сайт"
743
+
744
+ #@ cpd
745
+ #: counter-options.php:256
746
+ msgid "Old Charts"
747
+ msgstr "Старыя табліцы"
748
+
749
+ #@ cpd
750
+ #: counter-options.php:257
751
+ msgid "Show old bar charts."
752
+ msgstr "Паказаць у табліцу слупкамі"
753
+
754
+ #@ cpd
755
+ #: counter-options.php:270
756
+ msgid "Referrers - Entries"
757
+ msgstr "Старонкі, якія спасылаюцца сайты - Уваходжанне"
758
+
759
+ #@ cpd
760
+ #: counter-options.php:271
761
+ msgid "How many referrers do you want to see on dashboard page?"
762
+ msgstr "Колькі спасылаюцца сайтаў вы хочаце ўбачыць на старонцы статыстыкі?"
763
+
764
+ #@ cpd
765
+ #: counter-options.php:274
766
+ msgid "Referrers - Days"
767
+ msgstr "Старонкі, якія спасылаюцца сайты - Дні"
768
+
769
+ #@ cpd
770
+ #: counter.php:1449
771
+ #, php-format
772
+ msgid "The %s referrers in last %s days:"
773
+ msgstr "%s спасылаюцца сайтаў за апошнія% s дзён:"
774
+
775
+ #@ cpd
776
+ #: counter.php:1751
777
+ msgid "Visitors online"
778
+ msgstr "Наведвальнікаў на сайце"
779
+
780
+ #@ default
781
+ #: counter.php:2242
782
+ msgid "Title"
783
+ msgstr "Загаловак"
784
+
locale/cpd-bg_BG.po CHANGED
@@ -1,971 +1,971 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v2.15\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2012-07-18 18:39+0200\n"
7
- "Last-Translator: Joro <Joro2007@Gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Bulgarian\n"
14
- "X-Poedit-Country: BULGARIA\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "Настройките са обновени"
25
-
26
- #@ cpd
27
- #: counter-options.php:60
28
- #, php-format
29
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
- msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
31
-
32
- #@ cpd
33
- #: counter-options.php:65
34
- msgid "update next"
35
- msgstr "следващо обновяване"
36
-
37
- #@ cpd
38
- #: counter-options.php:102
39
- #, php-format
40
- msgid "Mass Bots cleaned. %s counts deleted."
41
- msgstr "Ботовете са изчистени. %s броячите изтрити."
42
-
43
- #@ cpd
44
- #: counter-options.php:112
45
- #, php-format
46
- msgid "Database cleaned. %s rows deleted."
47
- msgstr "Базата-данни е изчистена. %s редовете са премахнати."
48
-
49
- #@ cpd
50
- #: counter-options.php:122
51
- msgid "Counter reseted."
52
- msgstr "Броячът е нулиран."
53
-
54
- #@ cpd
55
- #: counter-options.php:127
56
- #: counter-options.php:810
57
- msgid "UNINSTALL Count per Day"
58
- msgstr "Деинсталирай Count per Day"
59
-
60
- #@ cpd
61
- #: counter-options.php:132
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #, php-format
65
- msgid "Table %s deleted"
66
- msgstr "Таблицата %s премахната"
67
-
68
- #@ cpd
69
- #: counter-options.php:135
70
- msgid "Options deleted"
71
- msgstr "Настройките са премахнати"
72
-
73
- #@ cpd
74
- #: counter-options.php:316
75
- #: counter-options.php:796
76
- msgid "Uninstall"
77
- msgstr "Деинсталиране"
78
-
79
- #@ cpd
80
- #: counter-options.php:317
81
- msgid "Click here"
82
- msgstr "Натиснете тук"
83
-
84
- #@ cpd
85
- #: counter-options.php:317
86
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
- msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
88
-
89
- #@ cpd
90
- #: counter-options.php:351
91
- msgid "Counter"
92
- msgstr "Брояч"
93
-
94
- #@ cpd
95
- #: counter-options.php:355
96
- msgid "Online time"
97
- msgstr "Време онлайн"
98
-
99
- #@ cpd
100
- #: counter-options.php:356
101
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
- msgstr "Време онлайн"
103
-
104
- #@ cpd
105
- #: counter-options.php:359
106
- msgid "Logged on Users"
107
- msgstr "Включени потребители"
108
-
109
- #@ cpd
110
- #: counter-options.php:361
111
- msgid "count too"
112
- msgstr "преброявай също"
113
-
114
- #@ cpd
115
- #: counter-options.php:362
116
- msgid "until User Level"
117
- msgstr "до нивото на потребителя"
118
-
119
- #@ cpd
120
- #: counter-options.php:373
121
- msgid "Auto counter"
122
- msgstr "Автоматичен брояч"
123
-
124
- #@ cpd
125
- #: counter-options.php:374
126
- msgid "Counts automatically single-posts and pages, no changes on template needed."
127
- msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
128
-
129
- #@ cpd
130
- #: counter-options.php:377
131
- msgid "Bots to ignore"
132
- msgstr "Игнорирай тези Ботове"
133
-
134
- #@ cpd
135
- #: counter-options.php:381
136
- msgid "Anonymous IP"
137
- msgstr "Анонимно IP"
138
-
139
- #@ cpd
140
- #: counter-options.php:385
141
- msgid "Cache"
142
- msgstr "Кеш"
143
-
144
- #@ cpd
145
- #: counter-options.php:386
146
- msgid "I use a cache plugin. Count these visits with ajax."
147
- msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
148
-
149
- #@ cpd
150
- #: counter-options.php:389
151
- msgid "Clients and referrers"
152
- msgstr "Потребители и препращащи сайтове"
153
-
154
- #@ cpd
155
- #: counter-options.php:392
156
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
157
- msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
158
-
159
- #@ cpd
160
- #: counter-core.php:639
161
- #: counter-options.php:392
162
- #: counter.php:159
163
- #: counter.php:875
164
- msgid "Reads"
165
- msgstr "Прочетени"
166
-
167
- #@ default
168
- #: counter-options.php:403
169
- msgid "Dashboard"
170
- msgstr "Табло"
171
-
172
- #@ cpd
173
- #: counter-core.php:727
174
- #: counter-options.php:438
175
- msgid "Visitors per post"
176
- msgstr "Посетители за публикация"
177
-
178
- #@ cpd
179
- #: counter-options.php:439
180
- #: counter-options.php:443
181
- msgid "How many posts do you want to see on dashboard page?"
182
- msgstr "Колко публикации искате се покажат на таблото?"
183
-
184
- #@ cpd
185
- #: counter-options.php:442
186
- msgid "Latest Counts - Posts"
187
- msgstr "Последни преброявания - Публикации"
188
-
189
- #@ cpd
190
- #: counter-options.php:446
191
- msgid "Latest Counts - Days"
192
- msgstr "Последни преброявания - Дни"
193
-
194
- #@ cpd
195
- #: counter-options.php:447
196
- #: counter-options.php:451
197
- #: counter-options.php:473
198
- msgid "How many days do you want look back?"
199
- msgstr "Колко дни искате да бъдат показани?"
200
-
201
- #@ cpd
202
- #: counter-options.php:450
203
- msgid "Chart - Days"
204
- msgstr "Графика - Дни"
205
-
206
- #@ cpd
207
- #: counter-options.php:454
208
- msgid "Chart - Height"
209
- msgstr "Графика - Височина"
210
-
211
- #@ cpd
212
- #: counter-options.php:455
213
- msgid "Height of the biggest bar"
214
- msgstr "Височина на най-голямото показание"
215
-
216
- #@ cpd
217
- #: counter-options.php:459
218
- msgid "Countries"
219
- msgstr "Държави"
220
-
221
- #@ cpd
222
- #: counter-options.php:460
223
- msgid "How many countries do you want to see on dashboard page?"
224
- msgstr "Колко държави искате да виждате на таблото?"
225
-
226
- #@ cpd
227
- #: counter-core.php:733
228
- #: counter-options.php:464
229
- msgid "Browsers"
230
- msgstr "Браузъри"
231
-
232
- #@ cpd
233
- #: counter-options.php:465
234
- msgid "Substring of the user agent, separated by comma"
235
- msgstr "Поднизове на потребителя, разделени със запетая"
236
-
237
- #@ cpd
238
- #: counter-options.php:476
239
- msgid "Local URLs"
240
- msgstr "Локални URLs"
241
-
242
- #@ cpd
243
- #: counter-options.php:477
244
- msgid "Show local referrers too."
245
- msgstr "Покажи и местните препращащи сайтове."
246
-
247
- #@ default
248
- #: counter-options.php:485
249
- msgid "Posts"
250
- msgstr "Публикации"
251
-
252
- #@ default
253
- #: counter-options.php:485
254
- msgid "Pages"
255
- msgstr "Страници"
256
-
257
- #@ cpd
258
- #: counter-options.php:488
259
- msgid "Show in lists"
260
- msgstr "Покажи в списъците"
261
-
262
- #@ cpd
263
- #: counter-options.php:489
264
- msgid "Show \"Reads per Post\" in a new column in post management views."
265
- msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
266
-
267
- #@ cpd
268
- #: counter-options.php:497
269
- msgid "Start Values"
270
- msgstr "Начални стойности"
271
-
272
- #@ cpd
273
- #: counter-options.php:501
274
- msgid "Here you can change the date of first count and add a start count."
275
- msgstr "Тук можете да промените началната дата и да добавите нова дата."
276
-
277
- #@ cpd
278
- #: counter-options.php:505
279
- msgid "Start date"
280
- msgstr "Начална дата"
281
-
282
- #@ cpd
283
- #: counter-options.php:506
284
- msgid "Your old Counter starts at?"
285
- msgstr "Кога да стартира броячът?"
286
-
287
- #@ cpd
288
- #: counter-options.php:509
289
- #: counter-options.php:513
290
- msgid "Start count"
291
- msgstr "Стартиране на брояча"
292
-
293
- #@ cpd
294
- #: counter-options.php:510
295
- msgid "Add this value to \"Total visitors\"."
296
- msgstr "Добави тази стойност към \"Общо посетители\"."
297
-
298
- #@ cpd
299
- #: counter-options.php:514
300
- msgid "Add this value to \"Total reads\"."
301
- msgstr "Добави тази стойност към \"Общо прочетени\"."
302
-
303
- #@ cpd
304
- #: counter-options.php:554
305
- msgid "Debug mode"
306
- msgstr "Дебъг режим"
307
-
308
- #@ cpd
309
- #: counter-options.php:556
310
- msgid "Show debug informations at the bottom of all pages."
311
- msgstr "Покажи дебъг информация в дъното на всяка страница."
312
-
313
- #@ cpd
314
- #: counter-options.php:561
315
- msgid "Update options"
316
- msgstr "Обнови настройките"
317
-
318
- #@ cpd
319
- #: counter-options.php:727
320
- msgid "GeoIP - Countries"
321
- msgstr "GeoIP - Държави"
322
-
323
- #@ cpd
324
- #: counter-options.php:736
325
- msgid "Update old counter data"
326
- msgstr "Обнови старите данни на брояча"
327
-
328
- #@ cpd
329
- #: counter-options.php:730
330
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
331
- msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
332
-
333
- #@ cpd
334
- #: counter-options.php:748
335
- msgid "Update GeoIP database"
336
- msgstr "Обнови GeoIP базата-данни"
337
-
338
- #@ cpd
339
- #: counter-options.php:743
340
- msgid "Download a new version of GeoIP.dat file."
341
- msgstr "Изтегли нова версия на GeoIP.dat"
342
-
343
- #@ cpd
344
- #: counter-options.php:753
345
- msgid "More informations about GeoIP"
346
- msgstr "Повече информация за GeoIP"
347
-
348
- #@ cpd
349
- #: counter-options.php:580
350
- #: massbots.php:35
351
- msgid "Mass Bots"
352
- msgstr "Ботове"
353
-
354
- #@ cpd
355
- #: counter-options.php:584
356
- #, php-format
357
- msgid "Show all IPs with more than %s page views per day"
358
- msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
359
-
360
- #@ cpd
361
- #: counter-options.php:585
362
- #: notes.php:71
363
- #: userperspan.php:44
364
- msgid "show"
365
- msgstr "покажи"
366
-
367
- #@ cpd
368
- #: counter-options.php:593
369
- msgid "IP"
370
- msgstr "IP"
371
-
372
- #@ cpd
373
- #@ default
374
- #: counter-options.php:594
375
- #: notes.php:75
376
- msgid "Date"
377
- msgstr "Дата"
378
-
379
- #@ cpd
380
- #: counter-options.php:595
381
- msgid "Client"
382
- msgstr "Потребител"
383
-
384
- #@ cpd
385
- #: counter-options.php:596
386
- msgid "Views"
387
- msgstr "Прегледи"
388
-
389
- #@ cpd
390
- #: counter-options.php:611
391
- #: counter-options.php:627
392
- #, php-format
393
- msgid "Delete these %s counts"
394
- msgstr "Изтрий тези %s броячи"
395
-
396
- #@ cpd
397
- #: counter-options.php:656
398
- #: counter-options.php:665
399
- msgid "Clean the database"
400
- msgstr "Изчисти базата-данни"
401
-
402
- #@ cpd
403
- #: counter-options.php:659
404
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
405
- msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
406
-
407
- #@ cpd
408
- #: counter-options.php:777
409
- #: counter-options.php:787
410
- msgid "Reset the counter"
411
- msgstr "Изтрий брояча"
412
-
413
- #@ cpd
414
- #: counter-options.php:780
415
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
416
- msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
417
-
418
- #@ cpd
419
- #: counter-options.php:799
420
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
421
- msgstr "Ако \"Count per Day\" е изключено, само изключените таблици в базата-данни ще бъдат запазени."
422
-
423
- #@ cpd
424
- #: counter-options.php:800
425
- msgid "Here you can delete the tables and disable \"Count per Day\"."
426
- msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
427
-
428
- #@ cpd
429
- #: counter-options.php:803
430
- msgid "WARNING"
431
- msgstr "ПРЕДУПРЕЖДЕНИЕ"
432
-
433
- #@ cpd
434
- #: counter-options.php:804
435
- msgid "These tables (with ALL counter data) will be deleted."
436
- msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
437
-
438
- #@ cpd
439
- #: counter-options.php:806
440
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
441
- msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
442
-
443
- #@ cpd
444
- #: counter-options.php:786
445
- #: counter-options.php:809
446
- msgid "Yes"
447
- msgstr "Да"
448
-
449
- #@ cpd
450
- #: counter-options.php:810
451
- msgid "You are sure to disable Count per Day and delete all data?"
452
- msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
453
-
454
- #@ cpd
455
- #: counter-options.php:714
456
- msgid "Support"
457
- msgstr "Поддръжка"
458
-
459
- #@ cpd
460
- #: counter.php:155
461
- #: counter.php:1197
462
- msgid "Total reads"
463
- msgstr "Общо прочетени"
464
-
465
- #@ cpd
466
- #: counter.php:156
467
- #: counter.php:1198
468
- msgid "Reads today"
469
- msgstr "Прочетени днес"
470
-
471
- #@ cpd
472
- #: counter.php:157
473
- #: counter.php:1199
474
- msgid "Reads yesterday"
475
- msgstr "Прочетени вчера"
476
-
477
- #@ cpd
478
- #: counter.php:158
479
- #: counter.php:1200
480
- msgid "Reads last week"
481
- msgstr "Прочетени последната седмица"
482
-
483
- #@ cpd
484
- #: counter-core.php:723
485
- #: counter.php:160
486
- #: counter.php:1010
487
- #: counter.php:1202
488
- msgid "Total visitors"
489
- msgstr "Общо посетители"
490
-
491
- #@ cpd
492
- #: counter.php:161
493
- #: counter.php:1208
494
- msgid "Visitors currently online"
495
- msgstr "Посетители онлайн"
496
-
497
- #@ cpd
498
- #: counter.php:162
499
- #: counter.php:1203
500
- msgid "Visitors today"
501
- msgstr "Посетители днес"
502
-
503
- #@ cpd
504
- #: counter.php:163
505
- #: counter.php:1204
506
- msgid "Visitors yesterday"
507
- msgstr "Посетители вчера"
508
-
509
- #@ cpd
510
- #: counter.php:164
511
- #: counter.php:1205
512
- msgid "Visitors last week"
513
- msgstr "Посетители през последната седмица"
514
-
515
- #@ cpd
516
- #: counter-core.php:729
517
- #: counter.php:166
518
- #: counter.php:263
519
- #: counter.php:1012
520
- #: counter.php:1207
521
- #: userperspan.php:34
522
- msgid "Visitors per day"
523
- msgstr "Посетители по дни"
524
-
525
- #@ cpd
526
- #: counter.php:167
527
- #: counter.php:825
528
- #: counter.php:1209
529
- msgid "Counter starts on"
530
- msgstr "Броячът е стартиран"
531
-
532
- #@ cpd
533
- #: counter.php:788
534
- #: notes.php:42
535
- #: notes.php:76
536
- msgid "Notes"
537
- msgstr "Забележки"
538
-
539
- #@ cpd
540
- #: counter.php:672
541
- #, php-format
542
- msgid "The %s most visited posts in last %s days:"
543
- msgstr "Най-много %s посетени публикации в последните %s дни:"
544
-
545
- #@ default
546
- #: counter.php:786
547
- msgid "Show"
548
- msgstr "Показване"
549
-
550
- #@ cpd
551
- #: counter.php:821
552
- msgid "Other"
553
- msgstr "Други"
554
-
555
- #@ default
556
- #: counter.php:976
557
- msgid "Edit Post"
558
- msgstr "Редактиране на публикацията"
559
-
560
- #@ default
561
- #: counter.php:985
562
- msgid "Category"
563
- msgstr "Категория"
564
-
565
- #@ default
566
- #: counter.php:988
567
- msgid "Tag"
568
- msgstr "Етикет"
569
-
570
- #@ default
571
- #: counter.php:991
572
- #: massbots.php:52
573
- #: userperspan.php:63
574
- msgid "Front page displays"
575
- msgstr "Изобразяване на заглавна страница"
576
-
577
- #@ default
578
- #: counter-core.php:575
579
- #: counter-options.php:341
580
- #: counter-options.php:565
581
- msgid "Settings"
582
- msgstr "Настройки"
583
-
584
- #@ cpd
585
- #: counter-core.php:689
586
- #, php-format
587
- msgid "Time for Count per Day: <code>%s</code>."
588
- msgstr "Време за Count per Day: <code>%s</code>."
589
-
590
- #@ cpd
591
- #: counter-core.php:690
592
- msgid "Bug? Problem? Question? Hint? Praise?"
593
- msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
594
-
595
- #@ cpd
596
- #: counter-core.php:691
597
- #, php-format
598
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
599
- msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
600
-
601
- #@ default
602
- #: counter-core.php:692
603
- msgid "License"
604
- msgstr "Лиценз"
605
-
606
- #@ cpd
607
- #: counter.php:262
608
- msgid "Reads per day"
609
- msgstr "Прочетени по дни"
610
-
611
- #@ cpd
612
- #: counter-core.php:725
613
- #: counter.php:1206
614
- msgid "Visitors per month"
615
- msgstr "Посетители по месеци"
616
-
617
- #@ cpd
618
- #: counter-core.php:726
619
- #: counter.php:1201
620
- msgid "Reads per month"
621
- msgstr "Прочетени по месеци"
622
-
623
- #@ cpd
624
- #: counter-core.php:728
625
- msgid "Latest Counts"
626
- msgstr "Последни броячи"
627
-
628
- #@ default
629
- #: counter-core.php:730
630
- msgid "Plugin"
631
- msgstr "Разширение"
632
-
633
- #@ cpd
634
- #: counter-core.php:734
635
- msgid "Referrer"
636
- msgstr "Препращащ сайт"
637
-
638
- #@ cpd
639
- #: counter-core.php:738
640
- msgid "Reads per Country"
641
- msgstr "Прочитания по държави"
642
-
643
- #@ cpd
644
- #: counter-core.php:739
645
- msgid "Visitors per Country"
646
- msgstr "Посетители по държави"
647
-
648
- #@ cpd
649
- #: counter-core.php:754
650
- #: counter.php:1124
651
- msgid "Statistics"
652
- msgstr "Статистика"
653
-
654
- #@ cpd
655
- #: counter.php:353
656
- #: counter.php:1041
657
- msgid "Map"
658
- msgstr "Карта"
659
-
660
- #@ cpd
661
- #: counter.php:1196
662
- msgid "This post"
663
- msgstr "Тази публикация"
664
-
665
- #@ default
666
- #: counter.php:1220
667
- msgid "Title"
668
- msgstr "Заглавие"
669
-
670
- #@ cpd
671
- #: geoip/geoip.php:93
672
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
673
- msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
674
-
675
- #@ cpd
676
- #: geoip/geoip.php:117
677
- msgid "New GeoIP database installed."
678
- msgstr "Новата GeoIP база-данни е инсталирана."
679
-
680
- #@ cpd
681
- #: geoip/geoip.php:119
682
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
683
- msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
684
-
685
- #@ default
686
- #: notes.php:77
687
- msgid "Action"
688
- msgstr "Действие"
689
-
690
- #@ cpd
691
- #: notes.php:82
692
- msgid "add"
693
- msgstr "добави"
694
-
695
- #@ cpd
696
- #: notes.php:98
697
- msgid "save"
698
- msgstr "запази"
699
-
700
- #@ cpd
701
- #: notes.php:99
702
- msgid "delete"
703
- msgstr "изтрий"
704
-
705
- #@ cpd
706
- #: notes.php:110
707
- msgid "edit"
708
- msgstr "редакция"
709
-
710
- #@ cpd
711
- #: userperspan.php:38
712
- msgid "Start"
713
- msgstr "Начало"
714
-
715
- #@ cpd
716
- #: userperspan.php:40
717
- msgid "End"
718
- msgstr "Край"
719
-
720
- #@ cpd
721
- #: userperspan.php:42
722
- msgid "PostID"
723
- msgstr "PostID"
724
-
725
- #@ cpd
726
- #: userperspan.php:50
727
- msgid "no data found"
728
- msgstr "няма намерени данни"
729
-
730
- #@ cpd
731
- #: counter-options.php:468
732
- msgid "Referrers - Entries"
733
- msgstr "Референти - Вписвания"
734
-
735
- #@ cpd
736
- #: counter-options.php:469
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "Брой референти, показвани на страницата на таблото?"
739
-
740
- #@ cpd
741
- #: counter-options.php:472
742
- msgid "Referrers - Days"
743
- msgstr "Референти - Дни"
744
-
745
- #@ cpd
746
- #: counter.php:845
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "%s Референти в последните %s дни:"
750
-
751
- #@ cpd
752
- #: counter-core.php:724
753
- msgid "Visitors online"
754
- msgstr "Посетители на линия"
755
-
756
- #@ cpd
757
- #: counter-core.php:186
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "\"Count per Day\" е обновен до версия %s."
761
-
762
- #@ cpd
763
- #: counter-core.php:917
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "Архивирането е неуспешно! Файлът не може да се отвори"
766
-
767
- #@ cpd
768
- #: counter-core.php:940
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "Извършва се архивиране на %s. Всяка точка отговаря на %s вписване."
772
-
773
- #@ cpd
774
- #: counter-core.php:1027
775
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
- msgstr "Съдържанието на директорията не е разрешено за писане. Можете да копирате съдържанието на това поле в обикновен текстов файл."
777
-
778
- #@ cpd
779
- #: counter-core.php:1033
780
- #, php-format
781
- msgid "Backup of counter table saved in %s."
782
- msgstr "Архивът на таблицата е запазен в %s."
783
-
784
- #@ cpd
785
- #: counter-core.php:1035
786
- #, php-format
787
- msgid "Backup of counter options and collection saved in %s."
788
- msgstr "Архивът на опциите на броячите е запазено в %s."
789
-
790
- #@ cpd
791
- #: counter-options.php:170
792
- msgid "Collection in progress..."
793
- msgstr "Събирането е стартирано..."
794
-
795
- #@ cpd
796
- #: counter-options.php:240
797
- msgid "Get Visitors per Post..."
798
- msgstr "Прегледай посетителите за публикация"
799
-
800
- #@ cpd
801
- #: counter-options.php:261
802
- msgid "Delete old data..."
803
- msgstr "Изтриване на стари данни"
804
-
805
- #@ cpd
806
- #: counter-options.php:285
807
- #, php-format
808
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
- msgstr "Броячът на вписвания до%s събира и броячът на таблицата%s е оптимизиран (размер, преди> размер =%s след =%s)."
810
-
811
- #@ cpd
812
- #: counter-options.php:294
813
- msgid "Installation of \"Count per Day\" checked"
814
- msgstr "Инсталацията на \"Count per Day\" е проверена"
815
-
816
- #@ default
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- msgid "Tools"
820
- msgstr "Инструменти"
821
-
822
- #@ cpd
823
- #: counter-options.php:394
824
- msgid "Save URL only, no query string."
825
- msgstr "Запази само URL, без стринг за запитване."
826
-
827
- #@ cpd
828
- #: counter-options.php:419
829
- msgid "Who can see it"
830
- msgstr "Кой има право да вижда това"
831
-
832
- #@ cpd
833
- #: counter-options.php:428
834
- msgid "custom"
835
- msgstr "по избор"
836
-
837
- #@ cpd
838
- #: counter-options.php:430
839
- msgid "and higher are allowed to see the statistics page."
840
- msgstr "и по-високо е позволено да вижде статистиката."
841
-
842
- #@ cpd
843
- #: counter-options.php:432
844
- #, php-format
845
- msgid "Set the %s capability %s a user need:"
846
- msgstr "Задайте способност %s %s ако потребителят има необходимост:"
847
-
848
- #@ cpd
849
- #: counter-options.php:522
850
- msgid "Stylesheet"
851
- msgstr "Таблица"
852
-
853
- #@ cpd
854
- #: counter-options.php:525
855
- msgid "NO Stylesheet in Frontend"
856
- msgstr "БЕЗ таблица в началната страница"
857
-
858
- #@ cpd
859
- #: counter-options.php:526
860
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
- msgstr "Не зареждай таблицата \"counter.css\" в началната страница."
862
-
863
- #@ cpd
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- msgid "Backup"
867
- msgstr "Архивиране"
868
-
869
- #@ cpd
870
- #: counter-options.php:537
871
- msgid "Entries per pass"
872
- msgstr "Влизания"
873
-
874
- #@ cpd
875
- #: counter-options.php:540
876
- msgid "How many entries should be saved per pass? Default: 10000"
877
- msgstr "Колко посещения трябва да бъдат запазени? По подразбиране: 10000"
878
-
879
- #@ cpd
880
- #: counter-options.php:545
881
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
- msgstr "Ако лимитът на PHP паметта е по-малък от 50 МВ и получавате бяла страница или съобщения за грешки, опитайте с по-малка стойност."
883
-
884
- #@ cpd
885
- #: counter-options.php:643
886
- #, php-format
887
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
- msgstr "Създаване на резервно копие на брояча %s в WP-съдържанието на директорията (ако е с права за запис)."
889
-
890
- #@ cpd
891
- #: counter-options.php:647
892
- msgid "Backup the database"
893
- msgstr "Архивиране на базата-данни"
894
-
895
- #@ cpd
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- msgid "Collect old data"
899
- msgstr "Събиране на стари данни"
900
-
901
- #@ cpd
902
- #: counter-options.php:679
903
- #, php-format
904
- msgid "Current size of your counter table %s is %s."
905
- msgstr "Съществуващият размер на таблицата %s е %s."
906
-
907
- #@ cpd
908
- #: counter-options.php:681
909
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
- msgstr "Можете да съберете стари данни и да почистите таблицата. <br/> Прочитанията и посетителите ще бъдат запазени по месеци, по страни и по публикации. <br/> Клиенти и референти ще се премахват."
911
-
912
- #@ cpd
913
- #: counter-options.php:686
914
- #, php-format
915
- msgid "Currently your collection contains data until %s."
916
- msgstr "В момента вашата колекция съдържа данни до %s."
917
-
918
- #@ cpd
919
- #: counter-options.php:690
920
- msgid "Normally new data will be added to the collection."
921
- msgstr "Обикновено новите данни ще бъдат добавени към колекцията."
922
-
923
- #@ cpd
924
- #: counter-options.php:696
925
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
- msgstr "Премахване на старата колекция и създаване на нова, която съдържа единствено данните от таблицата."
927
-
928
- #@ cpd
929
- #: counter-options.php:697
930
- #, php-format
931
- msgid "All collected data until %s will deleted."
932
- msgstr "Всички събрани данни до%s ще бъдат премахнати."
933
-
934
- #@ cpd
935
- #: counter-options.php:702
936
- #, php-format
937
- msgid "Keep entries of last %s full months + current month in counter table."
938
- msgstr "Пазене на записи за всички месеци на миналата%s и текущия месец в таблицата."
939
-
940
- #@ cpd
941
- #: counter-options.php:761
942
- msgid "ReActivation"
943
- msgstr "Активиране отново"
944
-
945
- #@ cpd
946
- #: counter-options.php:764
947
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
- msgstr "Тук можете да стартирате инсталацията ръчно. <br/> Също можете да деактивирате и да реактивирате добавка."
949
-
950
- #@ cpd
951
- #: counter-options.php:769
952
- msgid "ReActivate the plugin"
953
- msgstr "Включване отново на тази добавка"
954
-
955
- #@ cpd
956
- #: counter.php:165
957
- #: counter.php:899
958
- msgid "Visitors"
959
- msgstr "Посетители"
960
-
961
- #@ cpd
962
- #: counter.php:168
963
- #: counter.php:169
964
- msgid "Most visited day"
965
- msgstr "Най-много посещения"
966
-
967
- #@ cpd
968
- #: counter.php:1239
969
- msgid "drag and drop to sort"
970
- msgstr "провлачете и пуснете, за да сортирате"
971
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v2.15\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2012-07-18 18:39+0200\n"
7
+ "Last-Translator: Joro <Joro2007@Gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Bulgarian\n"
14
+ "X-Poedit-Country: BULGARIA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Настройките са обновени"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:60
28
+ #, php-format
29
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
+ msgstr "Държавите са обновени. <b>%s</b> вписванията %s без тези държави"
31
+
32
+ #@ cpd
33
+ #: counter-options.php:65
34
+ msgid "update next"
35
+ msgstr "следващо обновяване"
36
+
37
+ #@ cpd
38
+ #: counter-options.php:102
39
+ #, php-format
40
+ msgid "Mass Bots cleaned. %s counts deleted."
41
+ msgstr "Ботовете са изчистени. %s броячите изтрити."
42
+
43
+ #@ cpd
44
+ #: counter-options.php:112
45
+ #, php-format
46
+ msgid "Database cleaned. %s rows deleted."
47
+ msgstr "Базата-данни е изчистена. %s редовете са премахнати."
48
+
49
+ #@ cpd
50
+ #: counter-options.php:122
51
+ msgid "Counter reseted."
52
+ msgstr "Броячът е нулиран."
53
+
54
+ #@ cpd
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
+ msgid "UNINSTALL Count per Day"
58
+ msgstr "Деинсталирай Count per Day"
59
+
60
+ #@ cpd
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
+ #, php-format
65
+ msgid "Table %s deleted"
66
+ msgstr "Таблицата %s премахната"
67
+
68
+ #@ cpd
69
+ #: counter-options.php:135
70
+ msgid "Options deleted"
71
+ msgstr "Настройките са премахнати"
72
+
73
+ #@ cpd
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
+ msgid "Uninstall"
77
+ msgstr "Деинсталиране"
78
+
79
+ #@ cpd
80
+ #: counter-options.php:317
81
+ msgid "Click here"
82
+ msgstr "Натиснете тук"
83
+
84
+ #@ cpd
85
+ #: counter-options.php:317
86
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
+ msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
88
+
89
+ #@ cpd
90
+ #: counter-options.php:351
91
+ msgid "Counter"
92
+ msgstr "Брояч"
93
+
94
+ #@ cpd
95
+ #: counter-options.php:355
96
+ msgid "Online time"
97
+ msgstr "Време онлайн"
98
+
99
+ #@ cpd
100
+ #: counter-options.php:356
101
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
+ msgstr "Време онлайн"
103
+
104
+ #@ cpd
105
+ #: counter-options.php:359
106
+ msgid "Logged on Users"
107
+ msgstr "Включени потребители"
108
+
109
+ #@ cpd
110
+ #: counter-options.php:361
111
+ msgid "count too"
112
+ msgstr "преброявай също"
113
+
114
+ #@ cpd
115
+ #: counter-options.php:362
116
+ msgid "until User Level"
117
+ msgstr "до нивото на потребителя"
118
+
119
+ #@ cpd
120
+ #: counter-options.php:373
121
+ msgid "Auto counter"
122
+ msgstr "Автоматичен брояч"
123
+
124
+ #@ cpd
125
+ #: counter-options.php:374
126
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
127
+ msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
128
+
129
+ #@ cpd
130
+ #: counter-options.php:377
131
+ msgid "Bots to ignore"
132
+ msgstr "Игнорирай тези Ботове"
133
+
134
+ #@ cpd
135
+ #: counter-options.php:381
136
+ msgid "Anonymous IP"
137
+ msgstr "Анонимно IP"
138
+
139
+ #@ cpd
140
+ #: counter-options.php:385
141
+ msgid "Cache"
142
+ msgstr "Кеш"
143
+
144
+ #@ cpd
145
+ #: counter-options.php:386
146
+ msgid "I use a cache plugin. Count these visits with ajax."
147
+ msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
148
+
149
+ #@ cpd
150
+ #: counter-options.php:389
151
+ msgid "Clients and referrers"
152
+ msgstr "Потребители и препращащи сайтове"
153
+
154
+ #@ cpd
155
+ #: counter-options.php:392
156
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
157
+ msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
158
+
159
+ #@ cpd
160
+ #: counter-core.php:639
161
+ #: counter-options.php:392
162
+ #: counter.php:159
163
+ #: counter.php:875
164
+ msgid "Reads"
165
+ msgstr "Прочетени"
166
+
167
+ #@ default
168
+ #: counter-options.php:403
169
+ msgid "Dashboard"
170
+ msgstr "Табло"
171
+
172
+ #@ cpd
173
+ #: counter-core.php:727
174
+ #: counter-options.php:438
175
+ msgid "Visitors per post"
176
+ msgstr "Посетители за публикация"
177
+
178
+ #@ cpd
179
+ #: counter-options.php:439
180
+ #: counter-options.php:443
181
+ msgid "How many posts do you want to see on dashboard page?"
182
+ msgstr "Колко публикации искате се покажат на таблото?"
183
+
184
+ #@ cpd
185
+ #: counter-options.php:442
186
+ msgid "Latest Counts - Posts"
187
+ msgstr "Последни преброявания - Публикации"
188
+
189
+ #@ cpd
190
+ #: counter-options.php:446
191
+ msgid "Latest Counts - Days"
192
+ msgstr "Последни преброявания - Дни"
193
+
194
+ #@ cpd
195
+ #: counter-options.php:447
196
+ #: counter-options.php:451
197
+ #: counter-options.php:473
198
+ msgid "How many days do you want look back?"
199
+ msgstr "Колко дни искате да бъдат показани?"
200
+
201
+ #@ cpd
202
+ #: counter-options.php:450
203
+ msgid "Chart - Days"
204
+ msgstr "Графика - Дни"
205
+
206
+ #@ cpd
207
+ #: counter-options.php:454
208
+ msgid "Chart - Height"
209
+ msgstr "Графика - Височина"
210
+
211
+ #@ cpd
212
+ #: counter-options.php:455
213
+ msgid "Height of the biggest bar"
214
+ msgstr "Височина на най-голямото показание"
215
+
216
+ #@ cpd
217
+ #: counter-options.php:459
218
+ msgid "Countries"
219
+ msgstr "Държави"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:460
223
+ msgid "How many countries do you want to see on dashboard page?"
224
+ msgstr "Колко държави искате да виждате на таблото?"
225
+
226
+ #@ cpd
227
+ #: counter-core.php:733
228
+ #: counter-options.php:464
229
+ msgid "Browsers"
230
+ msgstr "Браузъри"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:465
234
+ msgid "Substring of the user agent, separated by comma"
235
+ msgstr "Поднизове на потребителя, разделени със запетая"
236
+
237
+ #@ cpd
238
+ #: counter-options.php:476
239
+ msgid "Local URLs"
240
+ msgstr "Локални URLs"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:477
244
+ msgid "Show local referrers too."
245
+ msgstr "Покажи и местните препращащи сайтове."
246
+
247
+ #@ default
248
+ #: counter-options.php:485
249
+ msgid "Posts"
250
+ msgstr "Публикации"
251
+
252
+ #@ default
253
+ #: counter-options.php:485
254
+ msgid "Pages"
255
+ msgstr "Страници"
256
+
257
+ #@ cpd
258
+ #: counter-options.php:488
259
+ msgid "Show in lists"
260
+ msgstr "Покажи в списъците"
261
+
262
+ #@ cpd
263
+ #: counter-options.php:489
264
+ msgid "Show \"Reads per Post\" in a new column in post management views."
265
+ msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
266
+
267
+ #@ cpd
268
+ #: counter-options.php:497
269
+ msgid "Start Values"
270
+ msgstr "Начални стойности"
271
+
272
+ #@ cpd
273
+ #: counter-options.php:501
274
+ msgid "Here you can change the date of first count and add a start count."
275
+ msgstr "Тук можете да промените началната дата и да добавите нова дата."
276
+
277
+ #@ cpd
278
+ #: counter-options.php:505
279
+ msgid "Start date"
280
+ msgstr "Начална дата"
281
+
282
+ #@ cpd
283
+ #: counter-options.php:506
284
+ msgid "Your old Counter starts at?"
285
+ msgstr "Кога да стартира броячът?"
286
+
287
+ #@ cpd
288
+ #: counter-options.php:509
289
+ #: counter-options.php:513
290
+ msgid "Start count"
291
+ msgstr "Стартиране на брояча"
292
+
293
+ #@ cpd
294
+ #: counter-options.php:510
295
+ msgid "Add this value to \"Total visitors\"."
296
+ msgstr "Добави тази стойност към \"Общо посетители\"."
297
+
298
+ #@ cpd
299
+ #: counter-options.php:514
300
+ msgid "Add this value to \"Total reads\"."
301
+ msgstr "Добави тази стойност към \"Общо прочетени\"."
302
+
303
+ #@ cpd
304
+ #: counter-options.php:554
305
+ msgid "Debug mode"
306
+ msgstr "Дебъг режим"
307
+
308
+ #@ cpd
309
+ #: counter-options.php:556
310
+ msgid "Show debug informations at the bottom of all pages."
311
+ msgstr "Покажи дебъг информация в дъното на всяка страница."
312
+
313
+ #@ cpd
314
+ #: counter-options.php:561
315
+ msgid "Update options"
316
+ msgstr "Обнови настройките"
317
+
318
+ #@ cpd
319
+ #: counter-options.php:727
320
+ msgid "GeoIP - Countries"
321
+ msgstr "GeoIP - Държави"
322
+
323
+ #@ cpd
324
+ #: counter-options.php:736
325
+ msgid "Update old counter data"
326
+ msgstr "Обнови старите данни на брояча"
327
+
328
+ #@ cpd
329
+ #: counter-options.php:730
330
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
331
+ msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
332
+
333
+ #@ cpd
334
+ #: counter-options.php:748
335
+ msgid "Update GeoIP database"
336
+ msgstr "Обнови GeoIP базата-данни"
337
+
338
+ #@ cpd
339
+ #: counter-options.php:743
340
+ msgid "Download a new version of GeoIP.dat file."
341
+ msgstr "Изтегли нова версия на GeoIP.dat"
342
+
343
+ #@ cpd
344
+ #: counter-options.php:753
345
+ msgid "More informations about GeoIP"
346
+ msgstr "Повече информация за GeoIP"
347
+
348
+ #@ cpd
349
+ #: counter-options.php:580
350
+ #: massbots.php:35
351
+ msgid "Mass Bots"
352
+ msgstr "Ботове"
353
+
354
+ #@ cpd
355
+ #: counter-options.php:584
356
+ #, php-format
357
+ msgid "Show all IPs with more than %s page views per day"
358
+ msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
359
+
360
+ #@ cpd
361
+ #: counter-options.php:585
362
+ #: notes.php:71
363
+ #: userperspan.php:44
364
+ msgid "show"
365
+ msgstr "покажи"
366
+
367
+ #@ cpd
368
+ #: counter-options.php:593
369
+ msgid "IP"
370
+ msgstr "IP"
371
+
372
+ #@ cpd
373
+ #@ default
374
+ #: counter-options.php:594
375
+ #: notes.php:75
376
+ msgid "Date"
377
+ msgstr "Дата"
378
+
379
+ #@ cpd
380
+ #: counter-options.php:595
381
+ msgid "Client"
382
+ msgstr "Потребител"
383
+
384
+ #@ cpd
385
+ #: counter-options.php:596
386
+ msgid "Views"
387
+ msgstr "Прегледи"
388
+
389
+ #@ cpd
390
+ #: counter-options.php:611
391
+ #: counter-options.php:627
392
+ #, php-format
393
+ msgid "Delete these %s counts"
394
+ msgstr "Изтрий тези %s броячи"
395
+
396
+ #@ cpd
397
+ #: counter-options.php:656
398
+ #: counter-options.php:665
399
+ msgid "Clean the database"
400
+ msgstr "Изчисти базата-данни"
401
+
402
+ #@ cpd
403
+ #: counter-options.php:659
404
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
405
+ msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
406
+
407
+ #@ cpd
408
+ #: counter-options.php:777
409
+ #: counter-options.php:787
410
+ msgid "Reset the counter"
411
+ msgstr "Изтрий брояча"
412
+
413
+ #@ cpd
414
+ #: counter-options.php:780
415
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
416
+ msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
417
+
418
+ #@ cpd
419
+ #: counter-options.php:799
420
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
421
+ msgstr "Ако \"Count per Day\" е изключено, само изключените таблици в базата-данни ще бъдат запазени."
422
+
423
+ #@ cpd
424
+ #: counter-options.php:800
425
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
426
+ msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
427
+
428
+ #@ cpd
429
+ #: counter-options.php:803
430
+ msgid "WARNING"
431
+ msgstr "ПРЕДУПРЕЖДЕНИЕ"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:804
435
+ msgid "These tables (with ALL counter data) will be deleted."
436
+ msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
437
+
438
+ #@ cpd
439
+ #: counter-options.php:806
440
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
441
+ msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
442
+
443
+ #@ cpd
444
+ #: counter-options.php:786
445
+ #: counter-options.php:809
446
+ msgid "Yes"
447
+ msgstr "Да"
448
+
449
+ #@ cpd
450
+ #: counter-options.php:810
451
+ msgid "You are sure to disable Count per Day and delete all data?"
452
+ msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
453
+
454
+ #@ cpd
455
+ #: counter-options.php:714
456
+ msgid "Support"
457
+ msgstr "Поддръжка"
458
+
459
+ #@ cpd
460
+ #: counter.php:155
461
+ #: counter.php:1197
462
+ msgid "Total reads"
463
+ msgstr "Общо прочетени"
464
+
465
+ #@ cpd
466
+ #: counter.php:156
467
+ #: counter.php:1198
468
+ msgid "Reads today"
469
+ msgstr "Прочетени днес"
470
+
471
+ #@ cpd
472
+ #: counter.php:157
473
+ #: counter.php:1199
474
+ msgid "Reads yesterday"
475
+ msgstr "Прочетени вчера"
476
+
477
+ #@ cpd
478
+ #: counter.php:158
479
+ #: counter.php:1200
480
+ msgid "Reads last week"
481
+ msgstr "Прочетени последната седмица"
482
+
483
+ #@ cpd
484
+ #: counter-core.php:723
485
+ #: counter.php:160
486
+ #: counter.php:1010
487
+ #: counter.php:1202
488
+ msgid "Total visitors"
489
+ msgstr "Общо посетители"
490
+
491
+ #@ cpd
492
+ #: counter.php:161
493
+ #: counter.php:1208
494
+ msgid "Visitors currently online"
495
+ msgstr "Посетители онлайн"
496
+
497
+ #@ cpd
498
+ #: counter.php:162
499
+ #: counter.php:1203
500
+ msgid "Visitors today"
501
+ msgstr "Посетители днес"
502
+
503
+ #@ cpd
504
+ #: counter.php:163
505
+ #: counter.php:1204
506
+ msgid "Visitors yesterday"
507
+ msgstr "Посетители вчера"
508
+
509
+ #@ cpd
510
+ #: counter.php:164
511
+ #: counter.php:1205
512
+ msgid "Visitors last week"
513
+ msgstr "Посетители през последната седмица"
514
+
515
+ #@ cpd
516
+ #: counter-core.php:729
517
+ #: counter.php:166
518
+ #: counter.php:263
519
+ #: counter.php:1012
520
+ #: counter.php:1207
521
+ #: userperspan.php:34
522
+ msgid "Visitors per day"
523
+ msgstr "Посетители по дни"
524
+
525
+ #@ cpd
526
+ #: counter.php:167
527
+ #: counter.php:825
528
+ #: counter.php:1209
529
+ msgid "Counter starts on"
530
+ msgstr "Броячът е стартиран"
531
+
532
+ #@ cpd
533
+ #: counter.php:788
534
+ #: notes.php:42
535
+ #: notes.php:76
536
+ msgid "Notes"
537
+ msgstr "Забележки"
538
+
539
+ #@ cpd
540
+ #: counter.php:672
541
+ #, php-format
542
+ msgid "The %s most visited posts in last %s days:"
543
+ msgstr "Най-много %s посетени публикации в последните %s дни:"
544
+
545
+ #@ default
546
+ #: counter.php:786
547
+ msgid "Show"
548
+ msgstr "Показване"
549
+
550
+ #@ cpd
551
+ #: counter.php:821
552
+ msgid "Other"
553
+ msgstr "Други"
554
+
555
+ #@ default
556
+ #: counter.php:976
557
+ msgid "Edit Post"
558
+ msgstr "Редактиране на публикацията"
559
+
560
+ #@ default
561
+ #: counter.php:985
562
+ msgid "Category"
563
+ msgstr "Категория"
564
+
565
+ #@ default
566
+ #: counter.php:988
567
+ msgid "Tag"
568
+ msgstr "Етикет"
569
+
570
+ #@ default
571
+ #: counter.php:991
572
+ #: massbots.php:52
573
+ #: userperspan.php:63
574
+ msgid "Front page displays"
575
+ msgstr "Изобразяване на заглавна страница"
576
+
577
+ #@ default
578
+ #: counter-core.php:575
579
+ #: counter-options.php:341
580
+ #: counter-options.php:565
581
+ msgid "Settings"
582
+ msgstr "Настройки"
583
+
584
+ #@ cpd
585
+ #: counter-core.php:689
586
+ #, php-format
587
+ msgid "Time for Count per Day: <code>%s</code>."
588
+ msgstr "Време за Count per Day: <code>%s</code>."
589
+
590
+ #@ cpd
591
+ #: counter-core.php:690
592
+ msgid "Bug? Problem? Question? Hint? Praise?"
593
+ msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
594
+
595
+ #@ cpd
596
+ #: counter-core.php:691
597
+ #, php-format
598
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
599
+ msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
600
+
601
+ #@ default
602
+ #: counter-core.php:692
603
+ msgid "License"
604
+ msgstr "Лиценз"
605
+
606
+ #@ cpd
607
+ #: counter.php:262
608
+ msgid "Reads per day"
609
+ msgstr "Прочетени по дни"
610
+
611
+ #@ cpd
612
+ #: counter-core.php:725
613
+ #: counter.php:1206
614
+ msgid "Visitors per month"
615
+ msgstr "Посетители по месеци"
616
+
617
+ #@ cpd
618
+ #: counter-core.php:726
619
+ #: counter.php:1201
620
+ msgid "Reads per month"
621
+ msgstr "Прочетени по месеци"
622
+
623
+ #@ cpd
624
+ #: counter-core.php:728
625
+ msgid "Latest Counts"
626
+ msgstr "Последни броячи"
627
+
628
+ #@ default
629
+ #: counter-core.php:730
630
+ msgid "Plugin"
631
+ msgstr "Разширение"
632
+
633
+ #@ cpd
634
+ #: counter-core.php:734
635
+ msgid "Referrer"
636
+ msgstr "Препращащ сайт"
637
+
638
+ #@ cpd
639
+ #: counter-core.php:738
640
+ msgid "Reads per Country"
641
+ msgstr "Прочитания по държави"
642
+
643
+ #@ cpd
644
+ #: counter-core.php:739
645
+ msgid "Visitors per Country"
646
+ msgstr "Посетители по държави"
647
+
648
+ #@ cpd
649
+ #: counter-core.php:754
650
+ #: counter.php:1124
651
+ msgid "Statistics"
652
+ msgstr "Статистика"
653
+
654
+ #@ cpd
655
+ #: counter.php:353
656
+ #: counter.php:1041
657
+ msgid "Map"
658
+ msgstr "Карта"
659
+
660
+ #@ cpd
661
+ #: counter.php:1196
662
+ msgid "This post"
663
+ msgstr "Тази публикация"
664
+
665
+ #@ default
666
+ #: counter.php:1220
667
+ msgid "Title"
668
+ msgstr "Заглавие"
669
+
670
+ #@ cpd
671
+ #: geoip/geoip.php:93
672
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
673
+ msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
674
+
675
+ #@ cpd
676
+ #: geoip/geoip.php:117
677
+ msgid "New GeoIP database installed."
678
+ msgstr "Новата GeoIP база-данни е инсталирана."
679
+
680
+ #@ cpd
681
+ #: geoip/geoip.php:119
682
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
683
+ msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
684
+
685
+ #@ default
686
+ #: notes.php:77
687
+ msgid "Action"
688
+ msgstr "Действие"
689
+
690
+ #@ cpd
691
+ #: notes.php:82
692
+ msgid "add"
693
+ msgstr "добави"
694
+
695
+ #@ cpd
696
+ #: notes.php:98
697
+ msgid "save"
698
+ msgstr "запази"
699
+
700
+ #@ cpd
701
+ #: notes.php:99
702
+ msgid "delete"
703
+ msgstr "изтрий"
704
+
705
+ #@ cpd
706
+ #: notes.php:110
707
+ msgid "edit"
708
+ msgstr "редакция"
709
+
710
+ #@ cpd
711
+ #: userperspan.php:38
712
+ msgid "Start"
713
+ msgstr "Начало"
714
+
715
+ #@ cpd
716
+ #: userperspan.php:40
717
+ msgid "End"
718
+ msgstr "Край"
719
+
720
+ #@ cpd
721
+ #: userperspan.php:42
722
+ msgid "PostID"
723
+ msgstr "PostID"
724
+
725
+ #@ cpd
726
+ #: userperspan.php:50
727
+ msgid "no data found"
728
+ msgstr "няма намерени данни"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:468
732
+ msgid "Referrers - Entries"
733
+ msgstr "Референти - Вписвания"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:469
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Брой референти, показвани на страницата на таблото?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:472
742
+ msgid "Referrers - Days"
743
+ msgstr "Референти - Дни"
744
+
745
+ #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "%s Референти в последните %s дни:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:724
753
+ msgid "Visitors online"
754
+ msgstr "Посетители на линия"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" е обновен до версия %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Архивирането е неуспешно! Файлът не може да се отвори"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Извършва се архивиране на %s. Всяка точка отговаря на %s вписване."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Съдържанието на директорията не е разрешено за писане. Можете да копирате съдържанието на това поле в обикновен текстов файл."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Архивът на таблицата е запазен в %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Архивът на опциите на броячите е запазено в %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Събирането е стартирано..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Прегледай посетителите за публикация"
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Изтриване на стари данни"
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Броячът на вписвания до%s събира и броячът на таблицата%s е оптимизиран (размер, преди> размер =%s след =%s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Инсталацията на \"Count per Day\" е проверена"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Инструменти"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Запази само URL, без стринг за запитване."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Кой има право да вижда това"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "по избор"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "и по-високо е позволено да вижде статистиката."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Задайте способност %s %s ако потребителят има необходимост:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Таблица"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "БЕЗ таблица в началната страница"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Не зареждай таблицата \"counter.css\" в началната страница."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Архивиране"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Влизания"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Колко посещения трябва да бъдат запазени? По подразбиране: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Ако лимитът на PHP паметта е по-малък от 50 МВ и получавате бяла страница или съобщения за грешки, опитайте с по-малка стойност."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Създаване на резервно копие на брояча %s в WP-съдържанието на директорията (ако е с права за запис)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Архивиране на базата-данни"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Събиране на стари данни"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "Съществуващият размер на таблицата %s е %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Можете да съберете стари данни и да почистите таблицата. <br/> Прочитанията и посетителите ще бъдат запазени по месеци, по страни и по публикации. <br/> Клиенти и референти ще се премахват."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "В момента вашата колекция съдържа данни до %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Обикновено новите данни ще бъдат добавени към колекцията."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Премахване на старата колекция и създаване на нова, която съдържа единствено данните от таблицата."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Всички събрани данни до%s ще бъдат премахнати."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Пазене на записи за всички месеци на миналата%s и текущия месец в таблицата."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Активиране отново"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Тук можете да стартирате инсталацията ръчно. <br/> Също можете да деактивирате и да реактивирате добавка."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Включване отново на тази добавка"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Посетители"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Най-много посещения"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "провлачете и пуснете, за да сортирате"
971
+
locale/cpd-da_DK.po CHANGED
@@ -1,973 +1,973 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day Development version\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Danish\n"
14
- "X-Poedit-Country: DENMARK\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:49
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Indstillingerne er blevet gemt"
26
-
27
- #: counter-options.php:60
28
- #, php-format
29
- #@ cpd
30
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
- msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
32
-
33
- #: counter-options.php:65
34
- #@ cpd
35
- msgid "update next"
36
- msgstr "opdatér næste"
37
-
38
- #: counter-options.php:102
39
- #, php-format
40
- #@ cpd
41
- msgid "Mass Bots cleaned. %s counts deleted."
42
- msgstr "Massebots renset. %s rækker slettet."
43
-
44
- #: counter-options.php:112
45
- #, php-format
46
- #@ cpd
47
- msgid "Database cleaned. %s rows deleted."
48
- msgstr "Databasen renset. %s rækker slettet."
49
-
50
- #: counter-options.php:122
51
- #@ cpd
52
- msgid "Counter reseted."
53
- msgstr "Tæller nulstillet."
54
-
55
- #: counter-options.php:127
56
- #: counter-options.php:810
57
- #@ cpd
58
- msgid "UNINSTALL Count per Day"
59
- msgstr "AFINSTALLÉR Count per Day"
60
-
61
- #: counter-options.php:132
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #, php-format
65
- #@ cpd
66
- msgid "Table %s deleted"
67
- msgstr "Tabellen %s blev slettet"
68
-
69
- #: counter-options.php:135
70
- #@ cpd
71
- msgid "Options deleted"
72
- msgstr "Indstillinger slettet"
73
-
74
- #: counter-options.php:316
75
- #: counter-options.php:796
76
- #@ cpd
77
- msgid "Uninstall"
78
- msgstr "Afinstallér"
79
-
80
- #: counter-options.php:317
81
- #@ cpd
82
- msgid "Click here"
83
- msgstr "Klik her"
84
-
85
- #: counter-options.php:317
86
- #@ cpd
87
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
- msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
89
-
90
- #: counter-options.php:355
91
- #@ cpd
92
- msgid "Online time"
93
- msgstr "Tid online"
94
-
95
- #: counter-options.php:356
96
- #@ cpd
97
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
- msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
99
-
100
- #: counter-options.php:359
101
- #@ cpd
102
- msgid "Logged on Users"
103
- msgstr "Indloggede brugere"
104
-
105
- #: counter-options.php:361
106
- #@ cpd
107
- msgid "count too"
108
- msgstr "tæl også"
109
-
110
- #: counter-options.php:362
111
- #@ cpd
112
- msgid "until User Level"
113
- msgstr "til og med brugerniveau"
114
-
115
- #: counter-options.php:373
116
- #@ cpd
117
- msgid "Auto counter"
118
- msgstr "Auto-tæller"
119
-
120
- #: counter-options.php:374
121
- #@ cpd
122
- msgid "Counts automatically single-posts and pages, no changes on template needed."
123
- msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
124
-
125
- #: counter-options.php:377
126
- #@ cpd
127
- msgid "Bots to ignore"
128
- msgstr "Ignorér følgende bots"
129
-
130
- #: counter-options.php:381
131
- #@ cpd
132
- msgid "Anonymous IP"
133
- msgstr "Anonymt IP-nummer"
134
-
135
- #: counter-options.php:385
136
- #@ cpd
137
- msgid "Cache"
138
- msgstr "Cache"
139
-
140
- #: counter-options.php:386
141
- #@ cpd
142
- msgid "I use a cache plugin. Count these visits with ajax."
143
- msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
144
-
145
- #: counter-options.php:561
146
- #@ cpd
147
- msgid "Update options"
148
- msgstr "Opdatér indstillinger"
149
-
150
- #: counter-options.php:403
151
- #@ default
152
- msgid "Dashboard"
153
- msgstr "Kontrolpanel"
154
-
155
- #: counter-core.php:727
156
- #: counter-options.php:438
157
- #@ cpd
158
- msgid "Visitors per post"
159
- msgstr "Besøgende per indlæg"
160
-
161
- #: counter-options.php:439
162
- #: counter-options.php:443
163
- #@ cpd
164
- msgid "How many posts do you want to see on dashboard page?"
165
- msgstr "Hvor mange indlæg vil du se på kontrolpanel"
166
-
167
- #: counter-options.php:442
168
- #@ cpd
169
- msgid "Latest Counts - Posts"
170
- msgstr "Seneste læste - Indlæg"
171
-
172
- #: counter-options.php:446
173
- #@ cpd
174
- msgid "Latest Counts - Days"
175
- msgstr "Seneste læste - Dage"
176
-
177
- #: counter-options.php:447
178
- #: counter-options.php:451
179
- #: counter-options.php:473
180
- #@ cpd
181
- msgid "How many days do you want look back?"
182
- msgstr "Hvor mange dage vil du se tilbage?"
183
-
184
- #: counter-options.php:450
185
- #@ cpd
186
- msgid "Chart - Days"
187
- msgstr "Diagram - Dage"
188
-
189
- #: counter-options.php:454
190
- #@ cpd
191
- msgid "Chart - Height"
192
- msgstr "Diagram - Højde"
193
-
194
- #: counter-options.php:455
195
- #@ cpd
196
- msgid "Height of the biggest bar"
197
- msgstr "Højde på den største søjle"
198
-
199
- #: counter-options.php:459
200
- #@ cpd
201
- msgid "Countries"
202
- msgstr "Lande"
203
-
204
- #: counter-options.php:460
205
- #@ cpd
206
- msgid "How many countries do you want to see on dashboard page?"
207
- msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
208
-
209
- #: counter-core.php:733
210
- #: counter-options.php:464
211
- #@ cpd
212
- msgid "Browsers"
213
- msgstr "Browsere"
214
-
215
- #: counter-options.php:465
216
- #@ cpd
217
- msgid "Substring of the user agent, separated by comma"
218
- msgstr "Delstrenge, der identificerer en browser, kommasepareret"
219
-
220
- #: counter-options.php:488
221
- #@ cpd
222
- msgid "Show in lists"
223
- msgstr "Vis som liste"
224
-
225
- #: counter-options.php:489
226
- #@ cpd
227
- msgid "Show \"Reads per Post\" in a new column in post management views."
228
- msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
229
-
230
- #: counter-options.php:497
231
- #@ cpd
232
- msgid "Start Values"
233
- msgstr "Startværdier"
234
-
235
- #: counter-options.php:501
236
- #@ cpd
237
- msgid "Here you can change the date of first count and add a start count."
238
- msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
239
-
240
- #: counter-options.php:505
241
- #@ cpd
242
- msgid "Start date"
243
- msgstr "Startdato"
244
-
245
- #: counter-options.php:506
246
- #@ cpd
247
- msgid "Your old Counter starts at?"
248
- msgstr "Hvornår starter din gamle tæller?"
249
-
250
- #: counter-options.php:509
251
- #: counter-options.php:513
252
- #@ cpd
253
- msgid "Start count"
254
- msgstr "Start-tæller"
255
-
256
- #: counter-options.php:510
257
- #@ cpd
258
- msgid "Add this value to \"Total visitors\"."
259
- msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
260
-
261
- #: counter-options.php:514
262
- #@ cpd
263
- msgid "Add this value to \"Total reads\"."
264
- msgstr "Tilføj denne værdi til \"Læst i alt\"."
265
-
266
- #: counter-options.php:554
267
- #@ cpd
268
- msgid "Debug mode"
269
- msgstr "Debug-modus"
270
-
271
- #: counter-options.php:556
272
- #@ cpd
273
- msgid "Show debug informations at the bottom of all pages."
274
- msgstr "Vis debug-information i bunden af alle sider."
275
-
276
- #: counter-options.php:727
277
- #@ cpd
278
- msgid "GeoIP - Countries"
279
- msgstr "GeoIP - Lande"
280
-
281
- #: counter-options.php:736
282
- #@ cpd
283
- msgid "Update old counter data"
284
- msgstr "Opdatér gamle tællerdata"
285
-
286
- #: counter-options.php:748
287
- #@ cpd
288
- msgid "Update GeoIP database"
289
- msgstr "Opdatér GeoIP-database"
290
-
291
- #: counter-options.php:743
292
- #@ cpd
293
- msgid "Download a new version of GeoIP.dat file."
294
- msgstr "Download en ny version af GeoIP.dat-filen."
295
-
296
- #: counter-options.php:753
297
- #@ cpd
298
- msgid "More informations about GeoIP"
299
- msgstr "Flere oplysninger om GeoIP"
300
-
301
- #: counter-options.php:580
302
- #: massbots.php:35
303
- #@ cpd
304
- msgid "Mass Bots"
305
- msgstr "Massebots"
306
-
307
- #: counter-options.php:584
308
- #, php-format
309
- #@ cpd
310
- msgid "Show all IPs with more than %s page views per day"
311
- msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
312
-
313
- #: counter-options.php:585
314
- #: notes.php:71
315
- #: userperspan.php:44
316
- #@ cpd
317
- msgid "show"
318
- msgstr "vis"
319
-
320
- #: counter-options.php:593
321
- #@ cpd
322
- msgid "IP"
323
- msgstr "IP"
324
-
325
- #: counter-options.php:594
326
- #: notes.php:75
327
- #@ cpd
328
- #@ default
329
- msgid "Date"
330
- msgstr "Dato"
331
-
332
- #: counter-options.php:595
333
- #@ cpd
334
- msgid "Client"
335
- msgstr "Klient"
336
-
337
- #: counter-options.php:596
338
- #@ cpd
339
- msgid "Views"
340
- msgstr "Visninger"
341
-
342
- #: counter-options.php:611
343
- #: counter-options.php:627
344
- #, php-format
345
- #@ cpd
346
- msgid "Delete these %s counts"
347
- msgstr "Slet disse %s hits"
348
-
349
- #: counter-options.php:656
350
- #: counter-options.php:665
351
- #@ cpd
352
- msgid "Clean the database"
353
- msgstr "Rens databasen"
354
-
355
- #: counter-options.php:659
356
- #@ cpd
357
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
- msgstr "Du kan rense tællertabellen for \"spam-data\".<br />Når du tilføjer nye bots ovenfor, forbliver de gamle \"spam-data\" i databasen.<br />Her kan du køre bot-filteret igen og slette bot-besøgene."
359
-
360
- #: counter-options.php:777
361
- #: counter-options.php:787
362
- #@ cpd
363
- msgid "Reset the counter"
364
- msgstr "Nulstil tælleren"
365
-
366
- #: counter-options.php:780
367
- #@ cpd
368
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
- msgstr "Du kan nulstille tælleren ved at tømme tabellen. Alt bliver nulstillet.<br />Tag en sikkerhedskopi, hvis du har brug for de aktuelle data."
370
-
371
- #: counter-options.php:799
372
- #@ cpd
373
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
- msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
375
-
376
- #: counter-options.php:800
377
- #@ cpd
378
- msgid "Here you can delete the tables and disable \"Count per Day\"."
379
- msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
380
-
381
- #: counter-options.php:803
382
- #@ cpd
383
- msgid "WARNING"
384
- msgstr "ADVARSEL"
385
-
386
- #: counter-options.php:804
387
- #@ cpd
388
- msgid "These tables (with ALL counter data) will be deleted."
389
- msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
390
-
391
- #: counter-options.php:806
392
- #@ cpd
393
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
- msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
395
-
396
- #: counter-options.php:786
397
- #: counter-options.php:809
398
- #@ cpd
399
- msgid "Yes"
400
- msgstr "Ja"
401
-
402
- #: counter-options.php:810
403
- #@ cpd
404
- msgid "You are sure to disable Count per Day and delete all data?"
405
- msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
406
-
407
- #: counter-options.php:714
408
- #@ cpd
409
- msgid "Support"
410
- msgstr "Support"
411
-
412
- #: counter-core.php:689
413
- #, php-format
414
- #@ cpd
415
- msgid "Time for Count per Day: <code>%s</code>."
416
- msgstr "Tidspunkt for Count per Day: <code>%s</code>."
417
-
418
- #: counter-core.php:690
419
- #@ cpd
420
- msgid "Bug? Problem? Question? Hint? Praise?"
421
- msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
422
-
423
- #: counter-core.php:691
424
- #, php-format
425
- #@ cpd
426
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
- msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
428
-
429
- #: counter.php:155
430
- #: counter.php:1197
431
- #@ cpd
432
- msgid "Total reads"
433
- msgstr "Læsninger i alt"
434
-
435
- #: counter.php:156
436
- #: counter.php:1198
437
- #@ cpd
438
- msgid "Reads today"
439
- msgstr "Læsninger i dag"
440
-
441
- #: counter.php:157
442
- #: counter.php:1199
443
- #@ cpd
444
- msgid "Reads yesterday"
445
- msgstr "Læsninger i går"
446
-
447
- #: counter-core.php:723
448
- #: counter.php:160
449
- #: counter.php:1010
450
- #: counter.php:1202
451
- #@ cpd
452
- msgid "Total visitors"
453
- msgstr "Antal besøgende i alt"
454
-
455
- #: counter.php:161
456
- #: counter.php:1208
457
- #@ cpd
458
- msgid "Visitors currently online"
459
- msgstr "Besøgende online lige nu"
460
-
461
- #: counter.php:162
462
- #: counter.php:1203
463
- #@ cpd
464
- msgid "Visitors today"
465
- msgstr "Besøgende i dag"
466
-
467
- #: counter.php:163
468
- #: counter.php:1204
469
- #@ cpd
470
- msgid "Visitors yesterday"
471
- msgstr "Besøgende i går"
472
-
473
- #: counter.php:164
474
- #: counter.php:1205
475
- #@ cpd
476
- msgid "Visitors last week"
477
- msgstr "Besøgende sidste weekend"
478
-
479
- #: counter-core.php:729
480
- #: counter.php:166
481
- #: counter.php:263
482
- #: counter.php:1012
483
- #: counter.php:1207
484
- #: userperspan.php:34
485
- #@ cpd
486
- msgid "Visitors per day"
487
- msgstr "Besøgende per dag"
488
-
489
- #: counter.php:167
490
- #: counter.php:825
491
- #: counter.php:1209
492
- #@ cpd
493
- msgid "Counter starts on"
494
- msgstr "Tæller starter på"
495
-
496
- #: counter.php:788
497
- #: notes.php:42
498
- #: notes.php:76
499
- #@ cpd
500
- msgid "Notes"
501
- msgstr "Noter"
502
-
503
- #: counter.php:672
504
- #, php-format
505
- #@ cpd
506
- msgid "The %s most visited posts in last %s days:"
507
- msgstr "De %s mest sete indlæg i de sidste %s dage:"
508
-
509
- #: counter.php:786
510
- #@ default
511
- msgid "Show"
512
- msgstr "Vis"
513
-
514
- #: counter.php:821
515
- #@ cpd
516
- msgid "Other"
517
- msgstr "Andre"
518
-
519
- #: counter.php:976
520
- #@ default
521
- msgid "Edit Post"
522
- msgstr "Redigér indlæg"
523
-
524
- #: counter.php:991
525
- #: massbots.php:52
526
- #: userperspan.php:63
527
- #@ default
528
- msgid "Front page displays"
529
- msgstr "Visninger af forsiden"
530
-
531
- #: counter-core.php:575
532
- #: counter-options.php:341
533
- #: counter-options.php:565
534
- #@ default
535
- msgid "Settings"
536
- msgstr "Indstillinger"
537
-
538
- # tjekkes
539
- #: counter-core.php:639
540
- #: counter-options.php:392
541
- #: counter.php:159
542
- #: counter.php:875
543
- #@ cpd
544
- msgid "Reads"
545
- msgstr "Læsninger"
546
-
547
- #: counter.php:1196
548
- #@ cpd
549
- msgid "This post"
550
- msgstr "Dette indlæg"
551
-
552
- #: counter.php:262
553
- #@ cpd
554
- msgid "Reads per day"
555
- msgstr "Læsninger per dag"
556
-
557
- #: counter-core.php:725
558
- #: counter.php:1206
559
- #@ cpd
560
- msgid "Visitors per month"
561
- msgstr "Besøgende per måned"
562
-
563
- #: counter-core.php:728
564
- #@ cpd
565
- msgid "Latest Counts"
566
- msgstr "Seneste læste"
567
-
568
- #: counter-core.php:730
569
- #@ default
570
- msgid "Plugin"
571
- msgstr "Plugin"
572
-
573
- #: counter-core.php:738
574
- #@ cpd
575
- msgid "Reads per Country"
576
- msgstr "Læsninger per land"
577
-
578
- #: counter-core.php:739
579
- #@ cpd
580
- msgid "Visitors per Country"
581
- msgstr "Besøgende per land"
582
-
583
- #: counter-core.php:754
584
- #: counter.php:1124
585
- #@ cpd
586
- msgid "Statistics"
587
- msgstr "Statistik"
588
-
589
- #: counter.php:353
590
- #: counter.php:1041
591
- #@ cpd
592
- msgid "Map"
593
- msgstr "Kort"
594
-
595
- #: notes.php:77
596
- #@ default
597
- msgid "Action"
598
- msgstr "Handling"
599
-
600
- #: notes.php:82
601
- #@ cpd
602
- msgid "add"
603
- msgstr "tilføj"
604
-
605
- #: notes.php:98
606
- #@ cpd
607
- msgid "save"
608
- msgstr "gem"
609
-
610
- #: notes.php:99
611
- #@ cpd
612
- msgid "delete"
613
- msgstr "slet"
614
-
615
- #: notes.php:110
616
- #@ cpd
617
- msgid "edit"
618
- msgstr "redigér"
619
-
620
- #: userperspan.php:38
621
- #@ cpd
622
- msgid "Start"
623
- msgstr "Start"
624
-
625
- #: userperspan.php:40
626
- #@ cpd
627
- msgid "End"
628
- msgstr "Slut"
629
-
630
- #: userperspan.php:42
631
- #@ cpd
632
- msgid "PostID"
633
- msgstr "Indlægs-id"
634
-
635
- #: userperspan.php:50
636
- #@ cpd
637
- msgid "no data found"
638
- msgstr "ingen data fundet"
639
-
640
- #: geoip/geoip.php:93
641
- #@ cpd
642
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
- msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
644
-
645
- #: geoip/geoip.php:117
646
- #@ cpd
647
- msgid "New GeoIP database installed."
648
- msgstr "Ny GeoIP-database installeret."
649
-
650
- #: geoip/geoip.php:119
651
- #@ cpd
652
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
- msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
654
-
655
- #: counter-options.php:730
656
- #@ cpd
657
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
- msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
659
-
660
- #: counter-options.php:351
661
- #@ cpd
662
- msgid "Counter"
663
- msgstr "Tæller"
664
-
665
- #: counter-options.php:389
666
- #@ cpd
667
- msgid "Clients and referrers"
668
- msgstr "Klienter og henvisere"
669
-
670
- #: counter-options.php:392
671
- #@ cpd
672
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
- msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
674
-
675
- #: counter-options.php:476
676
- #@ cpd
677
- msgid "Local URLs"
678
- msgstr "Lokale adresser"
679
-
680
- #: counter-options.php:477
681
- #@ cpd
682
- msgid "Show local referrers too."
683
- msgstr "Vis også lokale henvisninger"
684
-
685
- #: counter-options.php:485
686
- #@ default
687
- msgid "Posts"
688
- msgstr "Indlæg"
689
-
690
- #: counter-options.php:485
691
- #@ default
692
- msgid "Pages"
693
- msgstr "Sider"
694
-
695
- #: counter.php:158
696
- #: counter.php:1200
697
- #@ cpd
698
- msgid "Reads last week"
699
- msgstr "Læsninger i sidste uge"
700
-
701
- #: counter.php:985
702
- #@ default
703
- msgid "Category"
704
- msgstr "Kategori"
705
-
706
- #: counter.php:988
707
- #@ default
708
- msgid "Tag"
709
- msgstr "Tag"
710
-
711
- #: counter-core.php:692
712
- #@ default
713
- msgid "License"
714
- msgstr "Licens"
715
-
716
- #: counter-core.php:726
717
- #: counter.php:1201
718
- #@ cpd
719
- msgid "Reads per month"
720
- msgstr "Læsninger per måned"
721
-
722
- #: counter-core.php:734
723
- #@ cpd
724
- msgid "Referrer"
725
- msgstr "Henviser"
726
-
727
- #: counter.php:1220
728
- #@ default
729
- msgid "Title"
730
- msgstr "Titel"
731
-
732
- #: counter-options.php:468
733
- #@ cpd
734
- msgid "Referrers - Entries"
735
- msgstr "Henvisere - poster"
736
-
737
- #: counter-options.php:469
738
- #@ cpd
739
- msgid "How many referrers do you want to see on dashboard page?"
740
- msgstr "Hvor mange henvisere vil du se på dashboardet?"
741
-
742
- #: counter-options.php:472
743
- #@ cpd
744
- msgid "Referrers - Days"
745
- msgstr "Henvisere - Dage"
746
-
747
- #: counter.php:845
748
- #, php-format
749
- #@ cpd
750
- msgid "The %s referrers in last %s days:"
751
- msgstr "De %s henvisere i de sidste %s dage:"
752
-
753
- #: counter-core.php:724
754
- #@ cpd
755
- msgid "Visitors online"
756
- msgstr "Brugere online"
757
-
758
- #: counter-core.php:186
759
- #, php-format
760
- #@ cpd
761
- msgid "\"Count per Day\" updated to version %s."
762
- msgstr ""
763
-
764
- #: counter-core.php:917
765
- #@ cpd
766
- msgid "Backup failed! Cannot open file"
767
- msgstr ""
768
-
769
- #: counter-core.php:940
770
- #, php-format
771
- #@ cpd
772
- msgid "Backup of %s entries in progress. Every point complies %s entries."
773
- msgstr ""
774
-
775
- #: counter-core.php:1027
776
- #@ cpd
777
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
- msgstr ""
779
-
780
- #: counter-core.php:1033
781
- #, php-format
782
- #@ cpd
783
- msgid "Backup of counter table saved in %s."
784
- msgstr ""
785
-
786
- #: counter-core.php:1035
787
- #, php-format
788
- #@ cpd
789
- msgid "Backup of counter options and collection saved in %s."
790
- msgstr ""
791
-
792
- #: counter-options.php:170
793
- #@ cpd
794
- msgid "Collection in progress..."
795
- msgstr ""
796
-
797
- #: counter-options.php:240
798
- #@ cpd
799
- msgid "Get Visitors per Post..."
800
- msgstr ""
801
-
802
- #: counter-options.php:261
803
- #@ cpd
804
- msgid "Delete old data..."
805
- msgstr ""
806
-
807
- #: counter-options.php:285
808
- #, php-format
809
- #@ cpd
810
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
- msgstr ""
812
-
813
- #: counter-options.php:294
814
- #@ cpd
815
- msgid "Installation of \"Count per Day\" checked"
816
- msgstr ""
817
-
818
- #: counter-options.php:342
819
- #: counter-options.php:566
820
- #@ default
821
- msgid "Tools"
822
- msgstr ""
823
-
824
- #: counter-options.php:394
825
- #@ cpd
826
- msgid "Save URL only, no query string."
827
- msgstr ""
828
-
829
- #: counter-options.php:419
830
- #@ cpd
831
- msgid "Who can see it"
832
- msgstr ""
833
-
834
- #: counter-options.php:428
835
- #@ cpd
836
- msgid "custom"
837
- msgstr ""
838
-
839
- #: counter-options.php:430
840
- #@ cpd
841
- msgid "and higher are allowed to see the statistics page."
842
- msgstr ""
843
-
844
- #: counter-options.php:432
845
- #, php-format
846
- #@ cpd
847
- msgid "Set the %s capability %s a user need:"
848
- msgstr ""
849
-
850
- #: counter-options.php:522
851
- #@ cpd
852
- msgid "Stylesheet"
853
- msgstr ""
854
-
855
- #: counter-options.php:525
856
- #@ cpd
857
- msgid "NO Stylesheet in Frontend"
858
- msgstr ""
859
-
860
- #: counter-options.php:526
861
- #@ cpd
862
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
- msgstr ""
864
-
865
- #: counter-options.php:534
866
- #: counter-options.php:639
867
- #@ cpd
868
- msgid "Backup"
869
- msgstr ""
870
-
871
- #: counter-options.php:537
872
- #@ cpd
873
- msgid "Entries per pass"
874
- msgstr ""
875
-
876
- #: counter-options.php:540
877
- #@ cpd
878
- msgid "How many entries should be saved per pass? Default: 10000"
879
- msgstr ""
880
-
881
- #: counter-options.php:545
882
- #@ cpd
883
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
- msgstr ""
885
-
886
- #: counter-options.php:643
887
- #, php-format
888
- #@ cpd
889
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
- msgstr ""
891
-
892
- #: counter-options.php:647
893
- #@ cpd
894
- msgid "Backup the database"
895
- msgstr ""
896
-
897
- #: counter-options.php:674
898
- #: counter-options.php:706
899
- #@ cpd
900
- msgid "Collect old data"
901
- msgstr ""
902
-
903
- #: counter-options.php:679
904
- #, php-format
905
- #@ cpd
906
- msgid "Current size of your counter table %s is %s."
907
- msgstr ""
908
-
909
- #: counter-options.php:681
910
- #@ cpd
911
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
- msgstr ""
913
-
914
- #: counter-options.php:686
915
- #, php-format
916
- #@ cpd
917
- msgid "Currently your collection contains data until %s."
918
- msgstr ""
919
-
920
- #: counter-options.php:690
921
- #@ cpd
922
- msgid "Normally new data will be added to the collection."
923
- msgstr ""
924
-
925
- #: counter-options.php:696
926
- #@ cpd
927
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
- msgstr ""
929
-
930
- #: counter-options.php:697
931
- #, php-format
932
- #@ cpd
933
- msgid "All collected data until %s will deleted."
934
- msgstr ""
935
-
936
- #: counter-options.php:702
937
- #, php-format
938
- #@ cpd
939
- msgid "Keep entries of last %s full months + current month in counter table."
940
- msgstr ""
941
-
942
- #: counter-options.php:761
943
- #@ cpd
944
- msgid "ReActivation"
945
- msgstr ""
946
-
947
- #: counter-options.php:764
948
- #@ cpd
949
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
- msgstr ""
951
-
952
- #: counter-options.php:769
953
- #@ cpd
954
- msgid "ReActivate the plugin"
955
- msgstr ""
956
-
957
- #: counter.php:165
958
- #: counter.php:899
959
- #@ cpd
960
- msgid "Visitors"
961
- msgstr ""
962
-
963
- #: counter.php:168
964
- #: counter.php:169
965
- #@ cpd
966
- msgid "Most visited day"
967
- msgstr ""
968
-
969
- #: counter.php:1239
970
- #@ cpd
971
- msgid "drag and drop to sort"
972
- msgstr ""
973
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day Development version\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Danish\n"
14
+ "X-Poedit-Country: DENMARK\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:49
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Indstillingerne er blevet gemt"
26
+
27
+ #: counter-options.php:60
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
+ msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
32
+
33
+ #: counter-options.php:65
34
+ #@ cpd
35
+ msgid "update next"
36
+ msgstr "opdatér næste"
37
+
38
+ #: counter-options.php:102
39
+ #, php-format
40
+ #@ cpd
41
+ msgid "Mass Bots cleaned. %s counts deleted."
42
+ msgstr "Massebots renset. %s rækker slettet."
43
+
44
+ #: counter-options.php:112
45
+ #, php-format
46
+ #@ cpd
47
+ msgid "Database cleaned. %s rows deleted."
48
+ msgstr "Databasen renset. %s rækker slettet."
49
+
50
+ #: counter-options.php:122
51
+ #@ cpd
52
+ msgid "Counter reseted."
53
+ msgstr "Tæller nulstillet."
54
+
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
+ #@ cpd
58
+ msgid "UNINSTALL Count per Day"
59
+ msgstr "AFINSTALLÉR Count per Day"
60
+
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
+ #, php-format
65
+ #@ cpd
66
+ msgid "Table %s deleted"
67
+ msgstr "Tabellen %s blev slettet"
68
+
69
+ #: counter-options.php:135
70
+ #@ cpd
71
+ msgid "Options deleted"
72
+ msgstr "Indstillinger slettet"
73
+
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
+ #@ cpd
77
+ msgid "Uninstall"
78
+ msgstr "Afinstallér"
79
+
80
+ #: counter-options.php:317
81
+ #@ cpd
82
+ msgid "Click here"
83
+ msgstr "Klik her"
84
+
85
+ #: counter-options.php:317
86
+ #@ cpd
87
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
+ msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
89
+
90
+ #: counter-options.php:355
91
+ #@ cpd
92
+ msgid "Online time"
93
+ msgstr "Tid online"
94
+
95
+ #: counter-options.php:356
96
+ #@ cpd
97
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
+ msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
99
+
100
+ #: counter-options.php:359
101
+ #@ cpd
102
+ msgid "Logged on Users"
103
+ msgstr "Indloggede brugere"
104
+
105
+ #: counter-options.php:361
106
+ #@ cpd
107
+ msgid "count too"
108
+ msgstr "tæl også"
109
+
110
+ #: counter-options.php:362
111
+ #@ cpd
112
+ msgid "until User Level"
113
+ msgstr "til og med brugerniveau"
114
+
115
+ #: counter-options.php:373
116
+ #@ cpd
117
+ msgid "Auto counter"
118
+ msgstr "Auto-tæller"
119
+
120
+ #: counter-options.php:374
121
+ #@ cpd
122
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
123
+ msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
124
+
125
+ #: counter-options.php:377
126
+ #@ cpd
127
+ msgid "Bots to ignore"
128
+ msgstr "Ignorér følgende bots"
129
+
130
+ #: counter-options.php:381
131
+ #@ cpd
132
+ msgid "Anonymous IP"
133
+ msgstr "Anonymt IP-nummer"
134
+
135
+ #: counter-options.php:385
136
+ #@ cpd
137
+ msgid "Cache"
138
+ msgstr "Cache"
139
+
140
+ #: counter-options.php:386
141
+ #@ cpd
142
+ msgid "I use a cache plugin. Count these visits with ajax."
143
+ msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
144
+
145
+ #: counter-options.php:561
146
+ #@ cpd
147
+ msgid "Update options"
148
+ msgstr "Opdatér indstillinger"
149
+
150
+ #: counter-options.php:403
151
+ #@ default
152
+ msgid "Dashboard"
153
+ msgstr "Kontrolpanel"
154
+
155
+ #: counter-core.php:727
156
+ #: counter-options.php:438
157
+ #@ cpd
158
+ msgid "Visitors per post"
159
+ msgstr "Besøgende per indlæg"
160
+
161
+ #: counter-options.php:439
162
+ #: counter-options.php:443
163
+ #@ cpd
164
+ msgid "How many posts do you want to see on dashboard page?"
165
+ msgstr "Hvor mange indlæg vil du se på kontrolpanel"
166
+
167
+ #: counter-options.php:442
168
+ #@ cpd
169
+ msgid "Latest Counts - Posts"
170
+ msgstr "Seneste læste - Indlæg"
171
+
172
+ #: counter-options.php:446
173
+ #@ cpd
174
+ msgid "Latest Counts - Days"
175
+ msgstr "Seneste læste - Dage"
176
+
177
+ #: counter-options.php:447
178
+ #: counter-options.php:451
179
+ #: counter-options.php:473
180
+ #@ cpd
181
+ msgid "How many days do you want look back?"
182
+ msgstr "Hvor mange dage vil du se tilbage?"
183
+
184
+ #: counter-options.php:450
185
+ #@ cpd
186
+ msgid "Chart - Days"
187
+ msgstr "Diagram - Dage"
188
+
189
+ #: counter-options.php:454
190
+ #@ cpd
191
+ msgid "Chart - Height"
192
+ msgstr "Diagram - Højde"
193
+
194
+ #: counter-options.php:455
195
+ #@ cpd
196
+ msgid "Height of the biggest bar"
197
+ msgstr "Højde på den største søjle"
198
+
199
+ #: counter-options.php:459
200
+ #@ cpd
201
+ msgid "Countries"
202
+ msgstr "Lande"
203
+
204
+ #: counter-options.php:460
205
+ #@ cpd
206
+ msgid "How many countries do you want to see on dashboard page?"
207
+ msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
208
+
209
+ #: counter-core.php:733
210
+ #: counter-options.php:464
211
+ #@ cpd
212
+ msgid "Browsers"
213
+ msgstr "Browsere"
214
+
215
+ #: counter-options.php:465
216
+ #@ cpd
217
+ msgid "Substring of the user agent, separated by comma"
218
+ msgstr "Delstrenge, der identificerer en browser, kommasepareret"
219
+
220
+ #: counter-options.php:488
221
+ #@ cpd
222
+ msgid "Show in lists"
223
+ msgstr "Vis som liste"
224
+
225
+ #: counter-options.php:489
226
+ #@ cpd
227
+ msgid "Show \"Reads per Post\" in a new column in post management views."
228
+ msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
229
+
230
+ #: counter-options.php:497
231
+ #@ cpd
232
+ msgid "Start Values"
233
+ msgstr "Startværdier"
234
+
235
+ #: counter-options.php:501
236
+ #@ cpd
237
+ msgid "Here you can change the date of first count and add a start count."
238
+ msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
239
+
240
+ #: counter-options.php:505
241
+ #@ cpd
242
+ msgid "Start date"
243
+ msgstr "Startdato"
244
+
245
+ #: counter-options.php:506
246
+ #@ cpd
247
+ msgid "Your old Counter starts at?"
248
+ msgstr "Hvornår starter din gamle tæller?"
249
+
250
+ #: counter-options.php:509
251
+ #: counter-options.php:513
252
+ #@ cpd
253
+ msgid "Start count"
254
+ msgstr "Start-tæller"
255
+
256
+ #: counter-options.php:510
257
+ #@ cpd
258
+ msgid "Add this value to \"Total visitors\"."
259
+ msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
260
+
261
+ #: counter-options.php:514
262
+ #@ cpd
263
+ msgid "Add this value to \"Total reads\"."
264
+ msgstr "Tilføj denne værdi til \"Læst i alt\"."
265
+
266
+ #: counter-options.php:554
267
+ #@ cpd
268
+ msgid "Debug mode"
269
+ msgstr "Debug-modus"
270
+
271
+ #: counter-options.php:556
272
+ #@ cpd
273
+ msgid "Show debug informations at the bottom of all pages."
274
+ msgstr "Vis debug-information i bunden af alle sider."
275
+
276
+ #: counter-options.php:727
277
+ #@ cpd
278
+ msgid "GeoIP - Countries"
279
+ msgstr "GeoIP - Lande"
280
+
281
+ #: counter-options.php:736
282
+ #@ cpd
283
+ msgid "Update old counter data"
284
+ msgstr "Opdatér gamle tællerdata"
285
+
286
+ #: counter-options.php:748
287
+ #@ cpd
288
+ msgid "Update GeoIP database"
289
+ msgstr "Opdatér GeoIP-database"
290
+
291
+ #: counter-options.php:743
292
+ #@ cpd
293
+ msgid "Download a new version of GeoIP.dat file."
294
+ msgstr "Download en ny version af GeoIP.dat-filen."
295
+
296
+ #: counter-options.php:753
297
+ #@ cpd
298
+ msgid "More informations about GeoIP"
299
+ msgstr "Flere oplysninger om GeoIP"
300
+
301
+ #: counter-options.php:580
302
+ #: massbots.php:35
303
+ #@ cpd
304
+ msgid "Mass Bots"
305
+ msgstr "Massebots"
306
+
307
+ #: counter-options.php:584
308
+ #, php-format
309
+ #@ cpd
310
+ msgid "Show all IPs with more than %s page views per day"
311
+ msgstr "Vis alle IP&#39;er med mere end %s sidevisninger per dag"
312
+
313
+ #: counter-options.php:585
314
+ #: notes.php:71
315
+ #: userperspan.php:44
316
+ #@ cpd
317
+ msgid "show"
318
+ msgstr "vis"
319
+
320
+ #: counter-options.php:593
321
+ #@ cpd
322
+ msgid "IP"
323
+ msgstr "IP"
324
+
325
+ #: counter-options.php:594
326
+ #: notes.php:75
327
+ #@ cpd
328
+ #@ default
329
+ msgid "Date"
330
+ msgstr "Dato"
331
+
332
+ #: counter-options.php:595
333
+ #@ cpd
334
+ msgid "Client"
335
+ msgstr "Klient"
336
+
337
+ #: counter-options.php:596
338
+ #@ cpd
339
+ msgid "Views"
340
+ msgstr "Visninger"
341
+
342
+ #: counter-options.php:611
343
+ #: counter-options.php:627
344
+ #, php-format
345
+ #@ cpd
346
+ msgid "Delete these %s counts"
347
+ msgstr "Slet disse %s hits"
348
+
349
+ #: counter-options.php:656
350
+ #: counter-options.php:665
351
+ #@ cpd
352
+ msgid "Clean the database"
353
+ msgstr "Rens databasen"
354
+
355
+ #: counter-options.php:659
356
+ #@ cpd
357
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
+ msgstr "Du kan rense tællertabellen for \"spam-data\".<br />Når du tilføjer nye bots ovenfor, forbliver de gamle \"spam-data\" i databasen.<br />Her kan du køre bot-filteret igen og slette bot-besøgene."
359
+
360
+ #: counter-options.php:777
361
+ #: counter-options.php:787
362
+ #@ cpd
363
+ msgid "Reset the counter"
364
+ msgstr "Nulstil tælleren"
365
+
366
+ #: counter-options.php:780
367
+ #@ cpd
368
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
+ msgstr "Du kan nulstille tælleren ved at tømme tabellen. Alt bliver nulstillet.<br />Tag en sikkerhedskopi, hvis du har brug for de aktuelle data."
370
+
371
+ #: counter-options.php:799
372
+ #@ cpd
373
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
+ msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
375
+
376
+ #: counter-options.php:800
377
+ #@ cpd
378
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
379
+ msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
380
+
381
+ #: counter-options.php:803
382
+ #@ cpd
383
+ msgid "WARNING"
384
+ msgstr "ADVARSEL"
385
+
386
+ #: counter-options.php:804
387
+ #@ cpd
388
+ msgid "These tables (with ALL counter data) will be deleted."
389
+ msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
390
+
391
+ #: counter-options.php:806
392
+ #@ cpd
393
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
+ msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
395
+
396
+ #: counter-options.php:786
397
+ #: counter-options.php:809
398
+ #@ cpd
399
+ msgid "Yes"
400
+ msgstr "Ja"
401
+
402
+ #: counter-options.php:810
403
+ #@ cpd
404
+ msgid "You are sure to disable Count per Day and delete all data?"
405
+ msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
406
+
407
+ #: counter-options.php:714
408
+ #@ cpd
409
+ msgid "Support"
410
+ msgstr "Support"
411
+
412
+ #: counter-core.php:689
413
+ #, php-format
414
+ #@ cpd
415
+ msgid "Time for Count per Day: <code>%s</code>."
416
+ msgstr "Tidspunkt for Count per Day: <code>%s</code>."
417
+
418
+ #: counter-core.php:690
419
+ #@ cpd
420
+ msgid "Bug? Problem? Question? Hint? Praise?"
421
+ msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
422
+
423
+ #: counter-core.php:691
424
+ #, php-format
425
+ #@ cpd
426
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
+ msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
428
+
429
+ #: counter.php:155
430
+ #: counter.php:1197
431
+ #@ cpd
432
+ msgid "Total reads"
433
+ msgstr "Læsninger i alt"
434
+
435
+ #: counter.php:156
436
+ #: counter.php:1198
437
+ #@ cpd
438
+ msgid "Reads today"
439
+ msgstr "Læsninger i dag"
440
+
441
+ #: counter.php:157
442
+ #: counter.php:1199
443
+ #@ cpd
444
+ msgid "Reads yesterday"
445
+ msgstr "Læsninger i går"
446
+
447
+ #: counter-core.php:723
448
+ #: counter.php:160
449
+ #: counter.php:1010
450
+ #: counter.php:1202
451
+ #@ cpd
452
+ msgid "Total visitors"
453
+ msgstr "Antal besøgende i alt"
454
+
455
+ #: counter.php:161
456
+ #: counter.php:1208
457
+ #@ cpd
458
+ msgid "Visitors currently online"
459
+ msgstr "Besøgende online lige nu"
460
+
461
+ #: counter.php:162
462
+ #: counter.php:1203
463
+ #@ cpd
464
+ msgid "Visitors today"
465
+ msgstr "Besøgende i dag"
466
+
467
+ #: counter.php:163
468
+ #: counter.php:1204
469
+ #@ cpd
470
+ msgid "Visitors yesterday"
471
+ msgstr "Besøgende i går"
472
+
473
+ #: counter.php:164
474
+ #: counter.php:1205
475
+ #@ cpd
476
+ msgid "Visitors last week"
477
+ msgstr "Besøgende sidste weekend"
478
+
479
+ #: counter-core.php:729
480
+ #: counter.php:166
481
+ #: counter.php:263
482
+ #: counter.php:1012
483
+ #: counter.php:1207
484
+ #: userperspan.php:34
485
+ #@ cpd
486
+ msgid "Visitors per day"
487
+ msgstr "Besøgende per dag"
488
+
489
+ #: counter.php:167
490
+ #: counter.php:825
491
+ #: counter.php:1209
492
+ #@ cpd
493
+ msgid "Counter starts on"
494
+ msgstr "Tæller starter på"
495
+
496
+ #: counter.php:788
497
+ #: notes.php:42
498
+ #: notes.php:76
499
+ #@ cpd
500
+ msgid "Notes"
501
+ msgstr "Noter"
502
+
503
+ #: counter.php:672
504
+ #, php-format
505
+ #@ cpd
506
+ msgid "The %s most visited posts in last %s days:"
507
+ msgstr "De %s mest sete indlæg i de sidste %s dage:"
508
+
509
+ #: counter.php:786
510
+ #@ default
511
+ msgid "Show"
512
+ msgstr "Vis"
513
+
514
+ #: counter.php:821
515
+ #@ cpd
516
+ msgid "Other"
517
+ msgstr "Andre"
518
+
519
+ #: counter.php:976
520
+ #@ default
521
+ msgid "Edit Post"
522
+ msgstr "Redigér indlæg"
523
+
524
+ #: counter.php:991
525
+ #: massbots.php:52
526
+ #: userperspan.php:63
527
+ #@ default
528
+ msgid "Front page displays"
529
+ msgstr "Visninger af forsiden"
530
+
531
+ #: counter-core.php:575
532
+ #: counter-options.php:341
533
+ #: counter-options.php:565
534
+ #@ default
535
+ msgid "Settings"
536
+ msgstr "Indstillinger"
537
+
538
+ # tjekkes
539
+ #: counter-core.php:639
540
+ #: counter-options.php:392
541
+ #: counter.php:159
542
+ #: counter.php:875
543
+ #@ cpd
544
+ msgid "Reads"
545
+ msgstr "Læsninger"
546
+
547
+ #: counter.php:1196
548
+ #@ cpd
549
+ msgid "This post"
550
+ msgstr "Dette indlæg"
551
+
552
+ #: counter.php:262
553
+ #@ cpd
554
+ msgid "Reads per day"
555
+ msgstr "Læsninger per dag"
556
+
557
+ #: counter-core.php:725
558
+ #: counter.php:1206
559
+ #@ cpd
560
+ msgid "Visitors per month"
561
+ msgstr "Besøgende per måned"
562
+
563
+ #: counter-core.php:728
564
+ #@ cpd
565
+ msgid "Latest Counts"
566
+ msgstr "Seneste læste"
567
+
568
+ #: counter-core.php:730
569
+ #@ default
570
+ msgid "Plugin"
571
+ msgstr "Plugin"
572
+
573
+ #: counter-core.php:738
574
+ #@ cpd
575
+ msgid "Reads per Country"
576
+ msgstr "Læsninger per land"
577
+
578
+ #: counter-core.php:739
579
+ #@ cpd
580
+ msgid "Visitors per Country"
581
+ msgstr "Besøgende per land"
582
+
583
+ #: counter-core.php:754
584
+ #: counter.php:1124
585
+ #@ cpd
586
+ msgid "Statistics"
587
+ msgstr "Statistik"
588
+
589
+ #: counter.php:353
590
+ #: counter.php:1041
591
+ #@ cpd
592
+ msgid "Map"
593
+ msgstr "Kort"
594
+
595
+ #: notes.php:77
596
+ #@ default
597
+ msgid "Action"
598
+ msgstr "Handling"
599
+
600
+ #: notes.php:82
601
+ #@ cpd
602
+ msgid "add"
603
+ msgstr "tilføj"
604
+
605
+ #: notes.php:98
606
+ #@ cpd
607
+ msgid "save"
608
+ msgstr "gem"
609
+
610
+ #: notes.php:99
611
+ #@ cpd
612
+ msgid "delete"
613
+ msgstr "slet"
614
+
615
+ #: notes.php:110
616
+ #@ cpd
617
+ msgid "edit"
618
+ msgstr "redigér"
619
+
620
+ #: userperspan.php:38
621
+ #@ cpd
622
+ msgid "Start"
623
+ msgstr "Start"
624
+
625
+ #: userperspan.php:40
626
+ #@ cpd
627
+ msgid "End"
628
+ msgstr "Slut"
629
+
630
+ #: userperspan.php:42
631
+ #@ cpd
632
+ msgid "PostID"
633
+ msgstr "Indlægs-id"
634
+
635
+ #: userperspan.php:50
636
+ #@ cpd
637
+ msgid "no data found"
638
+ msgstr "ingen data fundet"
639
+
640
+ #: geoip/geoip.php:93
641
+ #@ cpd
642
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
+ msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
644
+
645
+ #: geoip/geoip.php:117
646
+ #@ cpd
647
+ msgid "New GeoIP database installed."
648
+ msgstr "Ny GeoIP-database installeret."
649
+
650
+ #: geoip/geoip.php:119
651
+ #@ cpd
652
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
+ msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
654
+
655
+ #: counter-options.php:730
656
+ #@ cpd
657
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
+ msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
659
+
660
+ #: counter-options.php:351
661
+ #@ cpd
662
+ msgid "Counter"
663
+ msgstr "Tæller"
664
+
665
+ #: counter-options.php:389
666
+ #@ cpd
667
+ msgid "Clients and referrers"
668
+ msgstr "Klienter og henvisere"
669
+
670
+ #: counter-options.php:392
671
+ #@ cpd
672
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
+ msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
674
+
675
+ #: counter-options.php:476
676
+ #@ cpd
677
+ msgid "Local URLs"
678
+ msgstr "Lokale adresser"
679
+
680
+ #: counter-options.php:477
681
+ #@ cpd
682
+ msgid "Show local referrers too."
683
+ msgstr "Vis også lokale henvisninger"
684
+
685
+ #: counter-options.php:485
686
+ #@ default
687
+ msgid "Posts"
688
+ msgstr "Indlæg"
689
+
690
+ #: counter-options.php:485
691
+ #@ default
692
+ msgid "Pages"
693
+ msgstr "Sider"
694
+
695
+ #: counter.php:158
696
+ #: counter.php:1200
697
+ #@ cpd
698
+ msgid "Reads last week"
699
+ msgstr "Læsninger i sidste uge"
700
+
701
+ #: counter.php:985
702
+ #@ default
703
+ msgid "Category"
704
+ msgstr "Kategori"
705
+
706
+ #: counter.php:988
707
+ #@ default
708
+ msgid "Tag"
709
+ msgstr "Tag"
710
+
711
+ #: counter-core.php:692
712
+ #@ default
713
+ msgid "License"
714
+ msgstr "Licens"
715
+
716
+ #: counter-core.php:726
717
+ #: counter.php:1201
718
+ #@ cpd
719
+ msgid "Reads per month"
720
+ msgstr "Læsninger per måned"
721
+
722
+ #: counter-core.php:734
723
+ #@ cpd
724
+ msgid "Referrer"
725
+ msgstr "Henviser"
726
+
727
+ #: counter.php:1220
728
+ #@ default
729
+ msgid "Title"
730
+ msgstr "Titel"
731
+
732
+ #: counter-options.php:468
733
+ #@ cpd
734
+ msgid "Referrers - Entries"
735
+ msgstr "Henvisere - poster"
736
+
737
+ #: counter-options.php:469
738
+ #@ cpd
739
+ msgid "How many referrers do you want to see on dashboard page?"
740
+ msgstr "Hvor mange henvisere vil du se på dashboardet?"
741
+
742
+ #: counter-options.php:472
743
+ #@ cpd
744
+ msgid "Referrers - Days"
745
+ msgstr "Henvisere - Dage"
746
+
747
+ #: counter.php:845
748
+ #, php-format
749
+ #@ cpd
750
+ msgid "The %s referrers in last %s days:"
751
+ msgstr "De %s henvisere i de sidste %s dage:"
752
+
753
+ #: counter-core.php:724
754
+ #@ cpd
755
+ msgid "Visitors online"
756
+ msgstr "Brugere online"
757
+
758
+ #: counter-core.php:186
759
+ #, php-format
760
+ #@ cpd
761
+ msgid "\"Count per Day\" updated to version %s."
762
+ msgstr ""
763
+
764
+ #: counter-core.php:917
765
+ #@ cpd
766
+ msgid "Backup failed! Cannot open file"
767
+ msgstr ""
768
+
769
+ #: counter-core.php:940
770
+ #, php-format
771
+ #@ cpd
772
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
773
+ msgstr ""
774
+
775
+ #: counter-core.php:1027
776
+ #@ cpd
777
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
+ msgstr ""
779
+
780
+ #: counter-core.php:1033
781
+ #, php-format
782
+ #@ cpd
783
+ msgid "Backup of counter table saved in %s."
784
+ msgstr ""
785
+
786
+ #: counter-core.php:1035
787
+ #, php-format
788
+ #@ cpd
789
+ msgid "Backup of counter options and collection saved in %s."
790
+ msgstr ""
791
+
792
+ #: counter-options.php:170
793
+ #@ cpd
794
+ msgid "Collection in progress..."
795
+ msgstr ""
796
+
797
+ #: counter-options.php:240
798
+ #@ cpd
799
+ msgid "Get Visitors per Post..."
800
+ msgstr ""
801
+
802
+ #: counter-options.php:261
803
+ #@ cpd
804
+ msgid "Delete old data..."
805
+ msgstr ""
806
+
807
+ #: counter-options.php:285
808
+ #, php-format
809
+ #@ cpd
810
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
+ msgstr ""
812
+
813
+ #: counter-options.php:294
814
+ #@ cpd
815
+ msgid "Installation of \"Count per Day\" checked"
816
+ msgstr ""
817
+
818
+ #: counter-options.php:342
819
+ #: counter-options.php:566
820
+ #@ default
821
+ msgid "Tools"
822
+ msgstr ""
823
+
824
+ #: counter-options.php:394
825
+ #@ cpd
826
+ msgid "Save URL only, no query string."
827
+ msgstr ""
828
+
829
+ #: counter-options.php:419
830
+ #@ cpd
831
+ msgid "Who can see it"
832
+ msgstr ""
833
+
834
+ #: counter-options.php:428
835
+ #@ cpd
836
+ msgid "custom"
837
+ msgstr ""
838
+
839
+ #: counter-options.php:430
840
+ #@ cpd
841
+ msgid "and higher are allowed to see the statistics page."
842
+ msgstr ""
843
+
844
+ #: counter-options.php:432
845
+ #, php-format
846
+ #@ cpd
847
+ msgid "Set the %s capability %s a user need:"
848
+ msgstr ""
849
+
850
+ #: counter-options.php:522
851
+ #@ cpd
852
+ msgid "Stylesheet"
853
+ msgstr ""
854
+
855
+ #: counter-options.php:525
856
+ #@ cpd
857
+ msgid "NO Stylesheet in Frontend"
858
+ msgstr ""
859
+
860
+ #: counter-options.php:526
861
+ #@ cpd
862
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
+ msgstr ""
864
+
865
+ #: counter-options.php:534
866
+ #: counter-options.php:639
867
+ #@ cpd
868
+ msgid "Backup"
869
+ msgstr ""
870
+
871
+ #: counter-options.php:537
872
+ #@ cpd
873
+ msgid "Entries per pass"
874
+ msgstr ""
875
+
876
+ #: counter-options.php:540
877
+ #@ cpd
878
+ msgid "How many entries should be saved per pass? Default: 10000"
879
+ msgstr ""
880
+
881
+ #: counter-options.php:545
882
+ #@ cpd
883
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
+ msgstr ""
885
+
886
+ #: counter-options.php:643
887
+ #, php-format
888
+ #@ cpd
889
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
+ msgstr ""
891
+
892
+ #: counter-options.php:647
893
+ #@ cpd
894
+ msgid "Backup the database"
895
+ msgstr ""
896
+
897
+ #: counter-options.php:674
898
+ #: counter-options.php:706
899
+ #@ cpd
900
+ msgid "Collect old data"
901
+ msgstr ""
902
+
903
+ #: counter-options.php:679
904
+ #, php-format
905
+ #@ cpd
906
+ msgid "Current size of your counter table %s is %s."
907
+ msgstr ""
908
+
909
+ #: counter-options.php:681
910
+ #@ cpd
911
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
+ msgstr ""
913
+
914
+ #: counter-options.php:686
915
+ #, php-format
916
+ #@ cpd
917
+ msgid "Currently your collection contains data until %s."
918
+ msgstr ""
919
+
920
+ #: counter-options.php:690
921
+ #@ cpd
922
+ msgid "Normally new data will be added to the collection."
923
+ msgstr ""
924
+
925
+ #: counter-options.php:696
926
+ #@ cpd
927
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
+ msgstr ""
929
+
930
+ #: counter-options.php:697
931
+ #, php-format
932
+ #@ cpd
933
+ msgid "All collected data until %s will deleted."
934
+ msgstr ""
935
+
936
+ #: counter-options.php:702
937
+ #, php-format
938
+ #@ cpd
939
+ msgid "Keep entries of last %s full months + current month in counter table."
940
+ msgstr ""
941
+
942
+ #: counter-options.php:761
943
+ #@ cpd
944
+ msgid "ReActivation"
945
+ msgstr ""
946
+
947
+ #: counter-options.php:764
948
+ #@ cpd
949
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
+ msgstr ""
951
+
952
+ #: counter-options.php:769
953
+ #@ cpd
954
+ msgid "ReActivate the plugin"
955
+ msgstr ""
956
+
957
+ #: counter.php:165
958
+ #: counter.php:899
959
+ #@ cpd
960
+ msgid "Visitors"
961
+ msgstr ""
962
+
963
+ #: counter.php:168
964
+ #: counter.php:169
965
+ #@ cpd
966
+ msgid "Most visited day"
967
+ msgstr ""
968
+
969
+ #: counter.php:1239
970
+ #@ cpd
971
+ msgid "drag and drop to sort"
972
+ msgstr ""
973
+
locale/cpd-de_DE.po CHANGED
@@ -1,1231 +1,1231 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2012-07-13 17:28:12+0000\n"
7
- "Last-Translator: Tom Braider <post@tomsdimension.de>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: German\n"
14
- "X-Poedit-Country: GERMANY\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: Copy of counter-options.php:50
23
- #: counter-options.php:52
24
- #@ cpd
25
- msgid "Options updated"
26
- msgstr "Einstellungen aktualisiert"
27
-
28
- #: Copy of counter-options.php:111
29
- #: counter-options.php:113
30
- #, php-format
31
- #@ cpd
32
- msgid "Database cleaned. %s rows deleted."
33
- msgstr "Datenbank aufger&auml;umt. %s Datens&auml;tze gel&ouml;scht."
34
-
35
- #: Copy of counter-options.php:126
36
- #: Copy of counter-options.php:839
37
- #: counter-options.php:128
38
- #: counter-options.php:693
39
- #@ cpd
40
- msgid "UNINSTALL Count per Day"
41
- msgstr "DEINSTALLIERE Count per Day"
42
-
43
- #: Copy of counter-options.php:131
44
- #: Copy of counter-options.php:132
45
- #: Copy of counter-options.php:133
46
- #: counter-options.php:133
47
- #: counter-options.php:134
48
- #: counter-options.php:135
49
- #, php-format
50
- #@ cpd
51
- msgid "Table %s deleted"
52
- msgstr "Tabelle %s gel&ouml;scht"
53
-
54
- #: Copy of counter-options.php:134
55
- #: counter-options.php:136
56
- #@ cpd
57
- msgid "Options deleted"
58
- msgstr "Einstellungen gel&ouml;scht"
59
-
60
- #: Copy of counter-options.php:321
61
- #: Copy of counter-options.php:825
62
- #: counter-options.php:362
63
- #: counter-options.php:679
64
- #@ cpd
65
- msgid "Uninstall"
66
- msgstr "Deinstallation"
67
-
68
- #: Copy of counter-options.php:322
69
- #: counter-options.php:363
70
- #@ cpd
71
- msgid "Click here"
72
- msgstr "Klick hier"
73
-
74
- #: Copy of counter-options.php:322
75
- #: counter-options.php:363
76
- #@ cpd
77
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
78
- msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
79
-
80
- #: Copy of counter-options.php:359
81
- #: counter-options.php:726
82
- #@ cpd
83
- msgid "Online time"
84
- msgstr "Onlinezeit"
85
-
86
- #: Copy of counter-options.php:360
87
- #: counter-options.php:727
88
- #@ cpd
89
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
90
- msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
91
-
92
- #: Copy of counter-options.php:363
93
- #: counter-options.php:730
94
- #@ cpd
95
- msgid "Logged on Users"
96
- msgstr "Angemeldete Benutzer"
97
-
98
- #: Copy of counter-options.php:365
99
- #: counter-options.php:732
100
- #@ cpd
101
- msgid "count too"
102
- msgstr "auch mit z&auml;hlen"
103
-
104
- #: Copy of counter-options.php:377
105
- #: counter-options.php:744
106
- #@ cpd
107
- msgid "Auto counter"
108
- msgstr "Auto-Counter"
109
-
110
- #: Copy of counter-options.php:378
111
- #: counter-options.php:745
112
- #@ cpd
113
- msgid "Counts automatically single-posts and pages, no changes on template needed."
114
- msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
115
-
116
- #: Copy of counter-options.php:381
117
- #: counter-options.php:748
118
- #@ cpd
119
- msgid "Bots to ignore"
120
- msgstr "Spam/Suchmaschinen Bots ignorieren"
121
-
122
- #: Copy of counter-options.php:559
123
- #: counter-options.php:926
124
- #@ cpd
125
- msgid "Update options"
126
- msgstr "Einstellungen aktualisieren"
127
-
128
- #: Copy of counter-options.php:685
129
- #: Copy of counter-options.php:694
130
- #: counter-options.php:540
131
- #: counter-options.php:548
132
- #@ cpd
133
- msgid "Clean the database"
134
- msgstr "Datenbank aufr&auml;umen"
135
-
136
- #: Copy of counter-options.php:688
137
- #: counter-options.php:543
138
- #@ cpd
139
- 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."
140
- 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."
141
-
142
- #: Copy of counter-options.php:828
143
- #: counter-options.php:682
144
- #@ cpd
145
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
146
- msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
147
-
148
- #: Copy of counter-options.php:829
149
- #: counter-options.php:683
150
- #@ cpd
151
- msgid "Here you can delete the tables and disable \"Count per Day\"."
152
- msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
153
-
154
- #: Copy of counter-options.php:832
155
- #: counter-options.php:686
156
- #@ cpd
157
- msgid "WARNING"
158
- msgstr "WARNUNG"
159
-
160
- #: Copy of counter-options.php:833
161
- #: counter-options.php:687
162
- #@ cpd
163
- msgid "These tables (with ALL counter data) will be deleted."
164
- msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
165
-
166
- #: Copy of counter-options.php:835
167
- #: counter-options.php:689
168
- #@ cpd
169
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
170
- msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
171
-
172
- #: Copy of counter-options.php:815
173
- #: Copy of counter-options.php:838
174
- #: counter-options.php:669
175
- #: counter-options.php:692
176
- #@ cpd
177
- msgid "Yes"
178
- msgstr "Ja, los!"
179
-
180
- #: Copy of counter-options.php:839
181
- #: counter-options.php:693
182
- #@ cpd
183
- msgid "You are sure to disable Count per Day and delete all data?"
184
- msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
185
-
186
- #: counter-core.php:844
187
- #: counter.php:1232
188
- #@ cpd
189
- msgid "Statistics"
190
- msgstr "Statistiken"
191
-
192
- #: counter-core.php:812
193
- #: counter.php:190
194
- #: counter.php:1118
195
- #: counter.php:1310
196
- #@ cpd
197
- msgid "Total visitors"
198
- msgstr "Besucher gesamt"
199
-
200
- #: counter.php:191
201
- #: counter.php:1316
202
- #@ cpd
203
- msgid "Visitors currently online"
204
- msgstr "Besucher momentan online"
205
-
206
- #: counter.php:192
207
- #: counter.php:1311
208
- #@ cpd
209
- msgid "Visitors today"
210
- msgstr "Besucher heute"
211
-
212
- #: counter.php:193
213
- #: counter.php:1312
214
- #@ cpd
215
- msgid "Visitors yesterday"
216
- msgstr "Besucher gestern"
217
-
218
- #: counter.php:194
219
- #: counter.php:1313
220
- #@ cpd
221
- msgid "Visitors last week"
222
- msgstr "Besucher letzte Woche"
223
-
224
- #: counter.php:197
225
- #: counter.php:877
226
- #: counter.php:1317
227
- #@ cpd
228
- msgid "Counter starts on"
229
- msgstr "gez&auml;hlt ab"
230
-
231
- #: counter-core.php:818
232
- #: counter.php:196
233
- #: counter.php:295
234
- #: counter.php:1120
235
- #: counter.php:1315
236
- #: userperspan.php:34
237
- #@ cpd
238
- msgid "Visitors per day"
239
- msgstr "Besucher pro Tag"
240
-
241
- #: counter-core.php:814
242
- #: counter.php:1314
243
- #@ cpd
244
- msgid "Visitors per month"
245
- msgstr "Besucher pro Monat"
246
-
247
- #: Copy of counter-options.php:441
248
- #: counter-core.php:816
249
- #: counter-options.php:808
250
- #@ cpd
251
- msgid "Visitors per post"
252
- msgstr "Besucher pro Artikel"
253
-
254
- #: Copy of counter-options.php:121
255
- #: counter-options.php:123
256
- #@ cpd
257
- msgid "Counter reseted."
258
- msgstr "Z&auml;hler zur&uuml;ckgesetzt."
259
-
260
- #: Copy of counter-options.php:442
261
- #: Copy of counter-options.php:446
262
- #: counter-options.php:809
263
- #: counter-options.php:813
264
- #@ cpd
265
- msgid "How many posts do you want to see on dashboard page?"
266
- msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
267
-
268
- #: Copy of counter-options.php:445
269
- #: counter-options.php:812
270
- #@ cpd
271
- msgid "Latest Counts - Posts"
272
- msgstr "Aktuelle Besuche - Artikel"
273
-
274
- #: Copy of counter-options.php:449
275
- #: counter-options.php:816
276
- #@ cpd
277
- msgid "Latest Counts - Days"
278
- msgstr "Aktuelle Besuche - Tage"
279
-
280
- #: Copy of counter-options.php:450
281
- #: Copy of counter-options.php:454
282
- #: Copy of counter-options.php:476
283
- #: counter-options.php:817
284
- #: counter-options.php:821
285
- #: counter-options.php:843
286
- #@ cpd
287
- msgid "How many days do you want look back?"
288
- msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
289
-
290
- #: Copy of counter-options.php:490
291
- #: counter-options.php:857
292
- #@ cpd
293
- msgid "Show in lists"
294
- msgstr "In &Uuml;bersichten anzeigen"
295
-
296
- #: Copy of counter-options.php:491
297
- #: counter-options.php:858
298
- #@ cpd
299
- msgid "Show \"Reads per Post\" in a new column in post management views."
300
- msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
301
-
302
- #: Copy of counter-options.php:806
303
- #: Copy of counter-options.php:816
304
- #: counter-options.php:660
305
- #: counter-options.php:670
306
- #@ cpd
307
- msgid "Reset the counter"
308
- msgstr "Z&auml;hler zur&uuml;cksetzen"
309
-
310
- #: Copy of counter-options.php:809
311
- #: counter-options.php:663
312
- #@ cpd
313
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
314
- 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!"
315
-
316
- #: counter.php:708
317
- #, php-format
318
- #@ cpd
319
- msgid "The %s most visited posts in last %s days:"
320
- msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
321
-
322
- #: Copy of counter-options.php:346
323
- #: Copy of counter-options.php:563
324
- #: counter-core.php:649
325
- #: counter-options.php:386
326
- #: counter-options.php:714
327
- #@ default
328
- msgid "Settings"
329
- msgstr ""
330
-
331
- #: Copy of counter-options.php:396
332
- #: counter-core.php:714
333
- #: counter-options.php:763
334
- #: counter.php:189
335
- #: counter.php:927
336
- #@ cpd
337
- msgid "Reads"
338
- msgstr "Seitenaufrufe"
339
-
340
- #: counter-core.php:817
341
- #@ cpd
342
- msgid "Latest Counts"
343
- msgstr "Letzte Seitenaufrufe"
344
-
345
- #: Copy of counter-options.php:453
346
- #: counter-options.php:820
347
- #@ cpd
348
- msgid "Chart - Days"
349
- msgstr "Diagramm - Tage"
350
-
351
- #: Copy of counter-options.php:457
352
- #: counter-options.php:824
353
- #@ cpd
354
- msgid "Chart - Height"
355
- msgstr "Diagramm - H&ouml;he"
356
-
357
- #: Copy of counter-options.php:458
358
- #: counter-options.php:825
359
- #@ cpd
360
- msgid "Height of the biggest bar"
361
- msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
362
-
363
- #: counter.php:1304
364
- #@ cpd
365
- msgid "This post"
366
- msgstr "Diese Seite"
367
-
368
- #: Copy of counter-options.php:406
369
- #: counter-options.php:773
370
- #@ default
371
- msgid "Dashboard"
372
- msgstr ""
373
-
374
- #: counter.php:294
375
- #@ cpd
376
- msgid "Reads per day"
377
- msgstr "Seitenaufrufe pro Tag"
378
-
379
- #: Copy of counter-options.php:61
380
- #: counter-options.php:63
381
- #, php-format
382
- #@ cpd
383
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
384
- msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
385
-
386
- #: Copy of counter-options.php:64
387
- #: counter-options.php:66
388
- #@ cpd
389
- msgid "update next"
390
- msgstr "weiter aktualisieren"
391
-
392
- #: Copy of counter-options.php:756
393
- #: counter-options.php:610
394
- #@ cpd
395
- msgid "GeoIP - Countries"
396
- msgstr "GeoIP - L&auml;nder"
397
-
398
- #: Copy of counter-options.php:765
399
- #: counter-options.php:619
400
- #@ cpd
401
- msgid "Update old counter data"
402
- msgstr "Aktualisiere alte Z&auml;hlerdaten"
403
-
404
- #: Copy of counter-options.php:777
405
- #: counter-options.php:631
406
- #@ cpd
407
- msgid "Update GeoIP database"
408
- msgstr "Aktualisiere GeoIP Datenbank"
409
-
410
- #: Copy of counter-options.php:772
411
- #: counter-options.php:626
412
- #@ cpd
413
- msgid "Download a new version of GeoIP.dat file."
414
- msgstr "Neue Version von GeoIP.dat herunterladen."
415
-
416
- #: Copy of counter-options.php:782
417
- #: counter-options.php:636
418
- #@ cpd
419
- msgid "More informations about GeoIP"
420
- msgstr "Mehr Informationen über GeoIP"
421
-
422
- #: counter-core.php:828
423
- #@ cpd
424
- msgid "Reads per Country"
425
- msgstr "Seitenaufrufe pro Land"
426
-
427
- #: geoip/geoip.php:114
428
- #@ cpd
429
- msgid "New GeoIP database installed."
430
- msgstr "Neue GeoIP Datenbank installiert."
431
-
432
- #: geoip/geoip.php:116
433
- #@ cpd
434
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
435
- msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder &uuml;berpr&uuml;fe ob du für das Verzeichnis \"geoip\" Schreibrechte (777) hast."
436
-
437
- #: geoip/geoip.php:90
438
- #@ cpd
439
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
440
- msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
441
-
442
- #: Copy of counter-options.php:462
443
- #: counter-options.php:829
444
- #@ cpd
445
- msgid "Countries"
446
- msgstr "L&auml;nder"
447
-
448
- #: Copy of counter-options.php:463
449
- #: counter-options.php:830
450
- #@ cpd
451
- msgid "How many countries do you want to see on dashboard page?"
452
- msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
453
-
454
- #: Copy of counter-options.php:104
455
- #: counter-options.php:106
456
- #, php-format
457
- #@ cpd
458
- msgid "Mass Bots cleaned. %s counts deleted."
459
- msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
460
-
461
- #: Copy of counter-options.php:578
462
- #: counter-options.php:402
463
- #: massbots.php:36
464
- #@ cpd
465
- msgid "Mass Bots"
466
- msgstr "Massen-Bots"
467
-
468
- #: Copy of counter-options.php:582
469
- #: counter-options.php:406
470
- #, php-format
471
- #@ cpd
472
- msgid "Show all IPs with more than %s page views per day"
473
- msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
474
-
475
- #: Copy of counter-options.php:583
476
- #: counter-options.php:407
477
- #: notes.php:71
478
- #: userperspan.php:44
479
- #@ cpd
480
- msgid "show"
481
- msgstr "anzeigen"
482
-
483
- #: Copy of counter-options.php:609
484
- #: Copy of counter-options.php:625
485
- #: counter-options.php:433
486
- #: counter-options.php:449
487
- #, php-format
488
- #@ cpd
489
- msgid "Delete these %s counts"
490
- msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
491
-
492
- #: counter.php:865
493
- #@ cpd
494
- msgid "Other"
495
- msgstr "Sonstige"
496
-
497
- #: counter.php:1054
498
- #: massbots.php:53
499
- #: userperspan.php:63
500
- #@ default
501
- msgid "Front page displays"
502
- msgstr ""
503
-
504
- #: Copy of counter-options.php:467
505
- #: counter-core.php:823
506
- #: counter-options.php:834
507
- #@ cpd
508
- msgid "Browsers"
509
- msgstr "Browser"
510
-
511
- #: Copy of counter-options.php:591
512
- #: counter-options.php:415
513
- #@ cpd
514
- msgid "IP"
515
- msgstr "IP"
516
-
517
- #: Copy of counter-options.php:592
518
- #: counter-options.php:416
519
- #: notes.php:75
520
- #@ cpd
521
- #@ default
522
- msgid "Date"
523
- msgstr "Datum"
524
-
525
- #: Copy of counter-options.php:593
526
- #: counter-options.php:417
527
- #@ cpd
528
- msgid "Client"
529
- msgstr "Browser"
530
-
531
- #: Copy of counter-options.php:594
532
- #: counter-options.php:418
533
- #@ cpd
534
- msgid "Views"
535
- msgstr "Seitenaufrufe"
536
-
537
- #: Copy of counter-options.php:498
538
- #: counter-options.php:865
539
- #@ cpd
540
- msgid "Start Values"
541
- msgstr "Startwerte"
542
-
543
- #: Copy of counter-options.php:502
544
- #: counter-options.php:869
545
- #@ cpd
546
- msgid "Here you can change the date of first count and add a start count."
547
- msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
548
-
549
- #: Copy of counter-options.php:506
550
- #: counter-options.php:873
551
- #@ cpd
552
- msgid "Start date"
553
- msgstr "Startdatum"
554
-
555
- #: Copy of counter-options.php:507
556
- #: counter-options.php:874
557
- #@ cpd
558
- msgid "Your old Counter starts at?"
559
- msgstr "Dein alter Z&auml;hler begann am?"
560
-
561
- #: Copy of counter-options.php:510
562
- #: Copy of counter-options.php:514
563
- #: counter-options.php:877
564
- #: counter-options.php:881
565
- #@ cpd
566
- msgid "Start count"
567
- msgstr "Startz&auml;hlerstand"
568
-
569
- #: Copy of counter-options.php:511
570
- #: counter-options.php:878
571
- #@ cpd
572
- msgid "Add this value to \"Total visitors\"."
573
- msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
574
-
575
- #: Copy of counter-options.php:743
576
- #: counter-options.php:701
577
- #@ cpd
578
- msgid "Support"
579
- msgstr "Kontakt"
580
-
581
- #: counter-core.php:778
582
- #@ cpd
583
- msgid "Bug? Problem? Question? Hint? Praise?"
584
- msgstr "Bug? Problem? Frage? Tipp? Lob?"
585
-
586
- #: counter-core.php:779
587
- #, php-format
588
- #@ cpd
589
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
590
- msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
591
-
592
- #: counter.php:824
593
- #@ default
594
- msgid "Show"
595
- msgstr ""
596
-
597
- #: counter.php:1039
598
- #@ default
599
- msgid "Edit Post"
600
- msgstr ""
601
-
602
- #: counter-core.php:777
603
- #, php-format
604
- #@ cpd
605
- msgid "Time for Count per Day: <code>%s</code>."
606
- msgstr "Zeit bei Count per Day: <code>%s</code>"
607
-
608
- #: Copy of counter-options.php:366
609
- #: counter-options.php:733
610
- #@ cpd
611
- msgid "until User Level"
612
- msgstr "bis Benutzerlevel"
613
-
614
- #: counter-core.php:820
615
- #@ default
616
- msgid "Plugin"
617
- msgstr ""
618
-
619
- #: counter.php:826
620
- #: notes.php:42
621
- #: notes.php:76
622
- #@ cpd
623
- msgid "Notes"
624
- msgstr "Notizen"
625
-
626
- #: notes.php:77
627
- #@ default
628
- msgid "Action"
629
- msgstr ""
630
-
631
- #: notes.php:82
632
- #@ cpd
633
- msgid "add"
634
- msgstr "hinzuf&uuml;gen"
635
-
636
- #: notes.php:98
637
- #@ cpd
638
- msgid "save"
639
- msgstr "speichern"
640
-
641
- #: notes.php:99
642
- #@ cpd
643
- msgid "delete"
644
- msgstr "l&ouml;schen"
645
-
646
- #: notes.php:110
647
- #@ cpd
648
- msgid "edit"
649
- msgstr "&auml;ndern"
650
-
651
- #: Copy of counter-options.php:515
652
- #: counter-options.php:882
653
- #@ cpd
654
- msgid "Add this value to \"Total reads\"."
655
- msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
656
-
657
- #: counter.php:185
658
- #: counter.php:1305
659
- #@ cpd
660
- msgid "Total reads"
661
- msgstr "Seitenaufrufe gesamt"
662
-
663
- #: counter.php:186
664
- #: counter.php:1306
665
- #@ cpd
666
- msgid "Reads today"
667
- msgstr "Seitenaufrufe heute"
668
-
669
- #: counter.php:187
670
- #: counter.php:1307
671
- #@ cpd
672
- msgid "Reads yesterday"
673
- msgstr "Seitenaufrufe gestern"
674
-
675
- #: counter.php:385
676
- #: counter.php:1149
677
- #@ cpd
678
- msgid "Map"
679
- msgstr "Weltkarte"
680
-
681
- #: Copy of counter-options.php:385
682
- #: counter-options.php:752
683
- #@ cpd
684
- msgid "Anonymous IP"
685
- msgstr "Anonyme IP-Adresse"
686
-
687
- #: Copy of counter-options.php:389
688
- #: counter-options.php:756
689
- #@ cpd
690
- msgid "Cache"
691
- msgstr "Cache"
692
-
693
- #: Copy of counter-options.php:390
694
- #: counter-options.php:757
695
- #@ cpd
696
- msgid "I use a cache plugin. Count these visits with ajax."
697
- msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
698
-
699
- #: Copy of counter-options.php:468
700
- #: counter-options.php:835
701
- #@ cpd
702
- msgid "Substring of the user agent, separated by comma"
703
- msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
704
-
705
- #: counter-core.php:829
706
- #@ cpd
707
- msgid "Visitors per Country"
708
- msgstr "Besucher pro Land"
709
-
710
- #: Copy of counter-options.php:552
711
- #: counter-options.php:919
712
- #@ cpd
713
- msgid "Debug mode"
714
- msgstr "Debug Modus"
715
-
716
- #: Copy of counter-options.php:554
717
- #: counter-options.php:921
718
- #@ cpd
719
- msgid "Show debug informations at the bottom of all pages."
720
- msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
721
-
722
- #: userperspan.php:38
723
- #@ cpd
724
- msgid "Start"
725
- msgstr "Start"
726
-
727
- #: userperspan.php:40
728
- #@ cpd
729
- msgid "End"
730
- msgstr "Ende"
731
-
732
- #: userperspan.php:42
733
- #@ cpd
734
- msgid "PostID"
735
- msgstr "Artikel-ID"
736
-
737
- #: userperspan.php:50
738
- #@ cpd
739
- msgid "no data found"
740
- msgstr "keine passenden Daten gefunden"
741
-
742
- #: Copy of counter-options.php:759
743
- #: counter-options.php:613
744
- #@ cpd
745
- 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!"
746
- 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."
747
-
748
- #: Copy of counter-options.php:355
749
- #: counter-options.php:722
750
- #@ cpd
751
- msgid "Counter"
752
- msgstr "Z&auml;hler"
753
-
754
- #: Copy of counter-options.php:479
755
- #: counter-options.php:846
756
- #@ cpd
757
- msgid "Local URLs"
758
- msgstr "Lokale URLs"
759
-
760
- #: Copy of counter-options.php:480
761
- #: counter-options.php:847
762
- #@ cpd
763
- msgid "Show local referrers too."
764
- msgstr "Zeige auch lokale Referrer."
765
-
766
- #: Copy of counter-options.php:487
767
- #: counter-options.php:854
768
- #@ default
769
- msgid "Posts"
770
- msgstr ""
771
-
772
- #: Copy of counter-options.php:487
773
- #: counter-options.php:854
774
- #@ default
775
- msgid "Pages"
776
- msgstr ""
777
-
778
- #: counter.php:1048
779
- #@ default
780
- msgid "Category"
781
- msgstr ""
782
-
783
- #: counter.php:1051
784
- #@ default
785
- msgid "Tag"
786
- msgstr ""
787
-
788
- #: counter-core.php:780
789
- #@ default
790
- msgid "License"
791
- msgstr ""
792
-
793
- #: counter-core.php:824
794
- #@ cpd
795
- msgid "Referrer"
796
- msgstr "Herkunft"
797
-
798
- #: counter.php:1328
799
- #@ default
800
- msgid "Title"
801
- msgstr ""
802
-
803
- #: Copy of counter-options.php:396
804
- #: counter-options.php:763
805
- #@ cpd
806
- 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."
807
- 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."
808
-
809
- #: Copy of counter-options.php:393
810
- #: counter-options.php:760
811
- #@ cpd
812
- msgid "Clients and referrers"
813
- msgstr "Browser und Herkunft"
814
-
815
- #: counter.php:188
816
- #: counter.php:1308
817
- #@ cpd
818
- msgid "Reads last week"
819
- msgstr "Seitenaufrufe letzte Woche"
820
-
821
- #: counter-core.php:815
822
- #: counter.php:1309
823
- #@ cpd
824
- msgid "Reads per month"
825
- msgstr "Seitenaufrufe pro Monat"
826
-
827
- #: Copy of counter-options.php:471
828
- #: counter-options.php:838
829
- #@ cpd
830
- msgid "Referrers - Entries"
831
- msgstr "Herkunft - Einträge"
832
-
833
- #: Copy of counter-options.php:472
834
- #: counter-options.php:839
835
- #@ cpd
836
- msgid "How many referrers do you want to see on dashboard page?"
837
- msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
838
-
839
- #: Copy of counter-options.php:475
840
- #: counter-options.php:842
841
- #@ cpd
842
- msgid "Referrers - Days"
843
- msgstr "Herkunft - Tage"
844
-
845
- #: counter.php:897
846
- #, php-format
847
- #@ cpd
848
- msgid "The %s referrers in last %s days:"
849
- msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
850
-
851
- #: counter-core.php:813
852
- #@ cpd
853
- msgid "Visitors online"
854
- msgstr "Besucher online"
855
-
856
- #: Copy of counter-options.php:522
857
- #: counter-options.php:889
858
- #@ cpd
859
- msgid "Stylesheet"
860
- msgstr "Stylesheet"
861
-
862
- #: Copy of counter-options.php:525
863
- #: counter-options.php:892
864
- #@ cpd
865
- msgid "NO Stylesheet in Frontend"
866
- msgstr "KEIN Stylesheet im Frontend"
867
-
868
- #: Copy of counter-options.php:526
869
- #: counter-options.php:893
870
- #@ cpd
871
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
872
- msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
873
-
874
- #: Copy of counter-options.php:422
875
- #: counter-options.php:789
876
- #@ cpd
877
- msgid "Who can see it"
878
- msgstr "Wer darf es sehen"
879
-
880
- #: Copy of counter-options.php:431
881
- #: counter-options.php:798
882
- #@ cpd
883
- msgid "custom"
884
- msgstr "benutzerdefiniert"
885
-
886
- #: Copy of counter-options.php:433
887
- #: counter-options.php:800
888
- #@ cpd
889
- msgid "and higher are allowed to see the statistics page."
890
- msgstr "und höher haben Zugriff auf die Statistikseite."
891
-
892
- #: Copy of counter-options.php:435
893
- #: counter-options.php:802
894
- #, php-format
895
- #@ cpd
896
- msgid "Set the %s capability %s a user need:"
897
- msgstr "Gibt die benötigte %s Rolle %s ein."
898
-
899
- #: counter-core.php:252
900
- #, php-format
901
- #@ cpd
902
- msgid "\"Count per Day\" updated to version %s."
903
- msgstr "&quot;Count per Day&quot; aktualisiert auf Version %s."
904
-
905
- #: counter-core.php:1016
906
- #@ cpd
907
- msgid "Backup failed! Cannot open file"
908
- msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
909
-
910
- #: counter-core.php:1042
911
- #, php-format
912
- #@ cpd
913
- msgid "Backup of %s entries in progress. Every point complies %s entries."
914
- msgstr "Sicherung von %s Einträge. Jeder Punkt entspricht %s Einträgen."
915
-
916
- #: counter-core.php:1133
917
- #: counter-core.php:1141
918
- #, php-format
919
- #@ cpd
920
- msgid "Backup of counter table saved in %s."
921
- msgstr "Die Zähler-Tabelle wurde in %s gesichert."
922
-
923
- #: counter-core.php:1135
924
- #: counter-core.php:1143
925
- #, php-format
926
- #@ cpd
927
- msgid "Backup of counter options and collection saved in %s."
928
- msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
929
-
930
- #: Copy of counter-options.php:169
931
- #: counter-options.php:169
932
- #@ cpd
933
- msgid "Collection in progress..."
934
- msgstr "Zusammenfassung erfolgt ..."
935
-
936
- #: Copy of counter-options.php:245
937
- #: counter-options.php:263
938
- #@ cpd
939
- msgid "Get Visitors per Post..."
940
- msgstr "Besucher pro Artikel bearbeiten..."
941
-
942
- #: Copy of counter-options.php:266
943
- #: counter-options.php:284
944
- #@ cpd
945
- msgid "Delete old data..."
946
- msgstr "L&ouml;schen alter Daten..."
947
-
948
- #: Copy of counter-options.php:290
949
- #: counter-options.php:308
950
- #, php-format
951
- #@ cpd
952
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
953
- 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)."
954
-
955
- #: Copy of counter-options.php:299
956
- #: counter-options.php:317
957
- #@ cpd
958
- msgid "Installation of \"Count per Day\" checked"
959
- msgstr "Installation von &quot;Count per Day&quot; überpr&uuml;ft"
960
-
961
- #: Copy of counter-options.php:347
962
- #: Copy of counter-options.php:564
963
- #: counter-options.php:385
964
- #: counter-options.php:713
965
- #@ default
966
- msgid "Tools"
967
- msgstr ""
968
-
969
- #: Copy of counter-options.php:398
970
- #: counter-options.php:765
971
- #@ cpd
972
- msgid "Save URL only, no query string."
973
- msgstr "Speichere nur die URL, keinen Query-String."
974
-
975
- #: Copy of counter-options.php:533
976
- #: Copy of counter-options.php:637
977
- #: counter-options.php:461
978
- #: counter-options.php:900
979
- #@ cpd
980
- msgid "Backup"
981
- msgstr "Backup"
982
-
983
- #: Copy of counter-options.php:536
984
- #: counter-options.php:903
985
- #@ cpd
986
- msgid "Entries per pass"
987
- msgstr "Einträge pro Durchgang"
988
-
989
- #: Copy of counter-options.php:539
990
- #: counter-options.php:906
991
- #@ cpd
992
- msgid "How many entries should be saved per pass? Default: 10000"
993
- msgstr "Wie viele Eintr&auml;ge sollen pro Durchgang bearbeitet werden? Standard: 10000"
994
-
995
- #: Copy of counter-options.php:544
996
- #: counter-options.php:911
997
- #@ cpd
998
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
999
- 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."
1000
-
1001
- #: Copy of counter-options.php:641
1002
- #: counter-options.php:465
1003
- #, php-format
1004
- #@ cpd
1005
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
1006
- msgstr "Erstelle eine Sicherungskopie der Z&auml;hler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
1007
-
1008
- #: Copy of counter-options.php:648
1009
- #: counter-options.php:472
1010
- #@ cpd
1011
- msgid "Backup the database"
1012
- msgstr "Datenbank sichern"
1013
-
1014
- #: Copy of counter-options.php:703
1015
- #: Copy of counter-options.php:735
1016
- #: counter-options.php:565
1017
- #: counter-options.php:597
1018
- #@ cpd
1019
- msgid "Collect old data"
1020
- msgstr "Alte Daten zusammenfassen"
1021
-
1022
- #: Copy of counter-options.php:708
1023
- #: counter-options.php:570
1024
- #, php-format
1025
- #@ cpd
1026
- msgid "Current size of your counter table %s is %s."
1027
- msgstr "Die aktuelle Gr&ouml;&szlig;e der Z&auml;hler-Tabelle %s ist %s."
1028
-
1029
- #: Copy of counter-options.php:710
1030
- #: counter-options.php:572
1031
- #@ cpd
1032
- 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."
1033
- 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."
1034
-
1035
- #: Copy of counter-options.php:715
1036
- #: counter-options.php:577
1037
- #, php-format
1038
- #@ cpd
1039
- msgid "Currently your collection contains data until %s."
1040
- msgstr "Momentan enth&auml;lt die Zusammenfassung Daten bis %s."
1041
-
1042
- #: Copy of counter-options.php:719
1043
- #: counter-options.php:581
1044
- #@ cpd
1045
- msgid "Normally new data will be added to the collection."
1046
- msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugef&uuml;gt."
1047
-
1048
- #: Copy of counter-options.php:725
1049
- #: counter-options.php:587
1050
- #@ cpd
1051
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
1052
- 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."
1053
-
1054
- #: Copy of counter-options.php:726
1055
- #: counter-options.php:588
1056
- #, php-format
1057
- #@ cpd
1058
- msgid "All collected data until %s will deleted."
1059
- msgstr "Alle zusammengefassten Daten bis %s werden gel&ouml;scht."
1060
-
1061
- #: Copy of counter-options.php:731
1062
- #: counter-options.php:593
1063
- #, php-format
1064
- #@ cpd
1065
- msgid "Keep entries of last %s full months + current month in counter table."
1066
- msgstr "Behalte die Eintr&auml;ge der letzten %s vollen Monate plus des aktuellen Monats in der Z&auml;hler-Tabelle."
1067
-
1068
- #: Copy of counter-options.php:790
1069
- #: counter-options.php:644
1070
- #@ cpd
1071
- msgid "ReActivation"
1072
- msgstr "ReAktivierung"
1073
-
1074
- #: Copy of counter-options.php:793
1075
- #: counter-options.php:647
1076
- #@ cpd
1077
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1078
- msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
1079
-
1080
- #: Copy of counter-options.php:798
1081
- #: counter-options.php:652
1082
- #@ cpd
1083
- msgid "ReActivate the plugin"
1084
- msgstr "ReAktiviere das Plugin"
1085
-
1086
- #: counter.php:195
1087
- #: counter.php:951
1088
- #@ cpd
1089
- msgid "Visitors"
1090
- msgstr "Besucher"
1091
-
1092
- #: counter.php:198
1093
- #: counter.php:199
1094
- #@ cpd
1095
- msgid "Most visited day"
1096
- msgstr "meistbesuchter Tag"
1097
-
1098
- #: counter.php:1347
1099
- #@ cpd
1100
- msgid "drag and drop to sort"
1101
- msgstr "per Drag &amp; Drop sortieren"
1102
-
1103
- #: counter-core.php:1129
1104
- #@ cpd
1105
- msgid "Your can download the backup files here and now."
1106
- msgstr "Du kannst die Sicherungen nur hier und jetzt herunterladen."
1107
-
1108
- #: Copy of counter-options.php:644
1109
- #: counter-options.php:468
1110
- #@ cpd
1111
- msgid "Download only"
1112
- msgstr "nur zum Download anbieten, nicht speichern"
1113
-
1114
- #: Copy of counter-options.php:673
1115
- #: counter-options.php:519
1116
- #@ default
1117
- msgid "Delete"
1118
- msgstr ""
1119
-
1120
- #: Copy of counter-options.php:674
1121
- #: counter-options.php:520
1122
- #, php-format
1123
- #@ cpd
1124
- msgid "Delete the backup file %s ?"
1125
- msgstr "Sicherung %s l&ouml;schen?"
1126
-
1127
- #: counter-core.php:819
1128
- #: counter-options.php:838
1129
- #: counter-options.php:842
1130
- #@ cpd
1131
- msgid "Search strings"
1132
- msgstr "Suchw&ouml;rter"
1133
-
1134
- #: counter-core.php:1199
1135
- #@ cpd
1136
- msgid "Error while reading backup file!"
1137
- msgstr "Fehler beim Lesen der Sicherungsdatei!"
1138
-
1139
- #: counter-core.php:1203
1140
- #, php-format
1141
- #@ cpd
1142
- msgid "The backup was added to counter table %s."
1143
- msgstr "Die Sicherung wurde zur Tabelle %s hinzugef&uuml;gt."
1144
-
1145
- #: counter-core.php:1205
1146
- #, php-format
1147
- #@ cpd
1148
- msgid "The counter table %s was restored from backup."
1149
- msgstr "Die Z&auml;hlertabelle %s wurde wiederhergestellt."
1150
-
1151
- #: counter-core.php:1222
1152
- #@ cpd
1153
- msgid "Options restored from backup."
1154
- msgstr "Einstellungen wiederhergestellt."
1155
-
1156
- #: counter-options.php:501
1157
- #@ cpd
1158
- msgid "Settings and collections"
1159
- msgstr "Einstellungen und Zusammenfassung"
1160
-
1161
- #: counter-options.php:506
1162
- #, php-format
1163
- #@ cpd
1164
- msgid "Counter table %s"
1165
- msgstr "Z&auml;hlertabelle %s"
1166
-
1167
- #: counter-options.php:513
1168
- #, php-format
1169
- #@ cpd
1170
- msgid "Add data from the backup file %s to existing counter table?"
1171
- msgstr "Die Daten der Sicherung zur vorhandenen Z&auml;hlertabelle %s hinzuf&uuml;gen?"
1172
-
1173
- #: counter-options.php:517
1174
- #, php-format
1175
- #@ cpd
1176
- msgid "Restore data from the backup file %s ?"
1177
- msgstr "Daten aus der Sicherung %s wiederherstellen?"
1178
-
1179
- #: counter-options.php:517
1180
- #@ default
1181
- msgid "Restore"
1182
- msgstr ""
1183
-
1184
- #: counter-options.php:526
1185
- #@ cpd
1186
- msgid "add backup to current counter table"
1187
- msgstr "Sicherung zu aktuellen Daten hinzuf&uuml;gen"
1188
-
1189
- #: counter-options.php:527
1190
- #@ cpd
1191
- msgid "replace current counter table with with backup"
1192
- msgstr "aktuelle Daten durch Sicherung ersetzen"
1193
-
1194
- #: counter-options.php:528
1195
- #@ cpd
1196
- msgid "delete backup file"
1197
- msgstr "Sicherung l&ouml;schen"
1198
-
1199
- #: counter.php:1094
1200
- #, php-format
1201
- #@ cpd
1202
- msgid "The %s most searched strings:"
1203
- msgstr "Die %s am meisten gesuchten W&ouml;rter:"
1204
-
1205
- #: counter.php:1103
1206
- #, php-format
1207
- #@ cpd
1208
- msgid "The search strings of the last %s days:"
1209
- msgstr "Die Suchw&ouml;rter der letzten %s Tage:"
1210
-
1211
- #: counter-options.php:332
1212
- #@ cpd
1213
- msgid "Old search strings deleted"
1214
- msgstr "Alte Suchw&ouml;rter wurden gel&ouml;scht."
1215
-
1216
- #: counter-options.php:554
1217
- #, php-format
1218
- #@ cpd
1219
- msgid "Delete search strings older than %s days."
1220
- msgstr "L&ouml;sche Suchw&ouml;rter die älter als %s Tage sind!"
1221
-
1222
- #: counter-options.php:556
1223
- #@ cpd
1224
- msgid "Delete search strings"
1225
- msgstr "L&ouml;sche Suchw&ouml;rter"
1226
-
1227
- #: counter-options.php:513
1228
- #@ cpd
1229
- msgid "Add"
1230
- msgstr "Hinzuf&uuml;gen"
1231
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: 2012-07-13 17:28:12+0000\n"
7
+ "Last-Translator: Tom Braider <post@tomsdimension.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: German\n"
14
+ "X-Poedit-Country: GERMANY\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: Copy of counter-options.php:50
23
+ #: counter-options.php:52
24
+ #@ cpd
25
+ msgid "Options updated"
26
+ msgstr "Einstellungen aktualisiert"
27
+
28
+ #: Copy of counter-options.php:111
29
+ #: counter-options.php:113
30
+ #, php-format
31
+ #@ cpd
32
+ msgid "Database cleaned. %s rows deleted."
33
+ msgstr "Datenbank aufger&auml;umt. %s Datens&auml;tze gel&ouml;scht."
34
+
35
+ #: Copy of counter-options.php:126
36
+ #: Copy of counter-options.php:839
37
+ #: counter-options.php:128
38
+ #: counter-options.php:693
39
+ #@ cpd
40
+ msgid "UNINSTALL Count per Day"
41
+ msgstr "DEINSTALLIERE Count per Day"
42
+
43
+ #: Copy of counter-options.php:131
44
+ #: Copy of counter-options.php:132
45
+ #: Copy of counter-options.php:133
46
+ #: counter-options.php:133
47
+ #: counter-options.php:134
48
+ #: counter-options.php:135
49
+ #, php-format
50
+ #@ cpd
51
+ msgid "Table %s deleted"
52
+ msgstr "Tabelle %s gel&ouml;scht"
53
+
54
+ #: Copy of counter-options.php:134
55
+ #: counter-options.php:136
56
+ #@ cpd
57
+ msgid "Options deleted"
58
+ msgstr "Einstellungen gel&ouml;scht"
59
+
60
+ #: Copy of counter-options.php:321
61
+ #: Copy of counter-options.php:825
62
+ #: counter-options.php:362
63
+ #: counter-options.php:679
64
+ #@ cpd
65
+ msgid "Uninstall"
66
+ msgstr "Deinstallation"
67
+
68
+ #: Copy of counter-options.php:322
69
+ #: counter-options.php:363
70
+ #@ cpd
71
+ msgid "Click here"
72
+ msgstr "Klick hier"
73
+
74
+ #: Copy of counter-options.php:322
75
+ #: counter-options.php:363
76
+ #@ cpd
77
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
78
+ msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
79
+
80
+ #: Copy of counter-options.php:359
81
+ #: counter-options.php:726
82
+ #@ cpd
83
+ msgid "Online time"
84
+ msgstr "Onlinezeit"
85
+
86
+ #: Copy of counter-options.php:360
87
+ #: counter-options.php:727
88
+ #@ cpd
89
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
90
+ msgstr "Sekunden f&uuml;r Onlinecounter. Wird f&uuml;r die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
91
+
92
+ #: Copy of counter-options.php:363
93
+ #: counter-options.php:730
94
+ #@ cpd
95
+ msgid "Logged on Users"
96
+ msgstr "Angemeldete Benutzer"
97
+
98
+ #: Copy of counter-options.php:365
99
+ #: counter-options.php:732
100
+ #@ cpd
101
+ msgid "count too"
102
+ msgstr "auch mit z&auml;hlen"
103
+
104
+ #: Copy of counter-options.php:377
105
+ #: counter-options.php:744
106
+ #@ cpd
107
+ msgid "Auto counter"
108
+ msgstr "Auto-Counter"
109
+
110
+ #: Copy of counter-options.php:378
111
+ #: counter-options.php:745
112
+ #@ cpd
113
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
114
+ msgstr "Z&auml;hlt automatisch Besuche auf Single-Posts und Seiten ohne &Auml;nderungen am Template."
115
+
116
+ #: Copy of counter-options.php:381
117
+ #: counter-options.php:748
118
+ #@ cpd
119
+ msgid "Bots to ignore"
120
+ msgstr "Spam/Suchmaschinen Bots ignorieren"
121
+
122
+ #: Copy of counter-options.php:559
123
+ #: counter-options.php:926
124
+ #@ cpd
125
+ msgid "Update options"
126
+ msgstr "Einstellungen aktualisieren"
127
+
128
+ #: Copy of counter-options.php:685
129
+ #: Copy of counter-options.php:694
130
+ #: counter-options.php:540
131
+ #: counter-options.php:548
132
+ #@ cpd
133
+ msgid "Clean the database"
134
+ msgstr "Datenbank aufr&auml;umen"
135
+
136
+ #: Copy of counter-options.php:688
137
+ #: counter-options.php:543
138
+ #@ cpd
139
+ 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."
140
+ 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."
141
+
142
+ #: Copy of counter-options.php:828
143
+ #: counter-options.php:682
144
+ #@ cpd
145
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
146
+ msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
147
+
148
+ #: Copy of counter-options.php:829
149
+ #: counter-options.php:683
150
+ #@ cpd
151
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
152
+ msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen l&ouml;schen."
153
+
154
+ #: Copy of counter-options.php:832
155
+ #: counter-options.php:686
156
+ #@ cpd
157
+ msgid "WARNING"
158
+ msgstr "WARNUNG"
159
+
160
+ #: Copy of counter-options.php:833
161
+ #: counter-options.php:687
162
+ #@ cpd
163
+ msgid "These tables (with ALL counter data) will be deleted."
164
+ msgstr "Diese Tabellen werden mit ALLEN Z&auml;hlerdaten gel&ouml;scht."
165
+
166
+ #: Copy of counter-options.php:835
167
+ #: counter-options.php:689
168
+ #@ cpd
169
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
170
+ msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Z&auml;hler bei 0."
171
+
172
+ #: Copy of counter-options.php:815
173
+ #: Copy of counter-options.php:838
174
+ #: counter-options.php:669
175
+ #: counter-options.php:692
176
+ #@ cpd
177
+ msgid "Yes"
178
+ msgstr "Ja, los!"
179
+
180
+ #: Copy of counter-options.php:839
181
+ #: counter-options.php:693
182
+ #@ cpd
183
+ msgid "You are sure to disable Count per Day and delete all data?"
184
+ msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten l&ouml;schen willst?"
185
+
186
+ #: counter-core.php:844
187
+ #: counter.php:1232
188
+ #@ cpd
189
+ msgid "Statistics"
190
+ msgstr "Statistiken"
191
+
192
+ #: counter-core.php:812
193
+ #: counter.php:190
194
+ #: counter.php:1118
195
+ #: counter.php:1310
196
+ #@ cpd
197
+ msgid "Total visitors"
198
+ msgstr "Besucher gesamt"
199
+
200
+ #: counter.php:191
201
+ #: counter.php:1316
202
+ #@ cpd
203
+ msgid "Visitors currently online"
204
+ msgstr "Besucher momentan online"
205
+
206
+ #: counter.php:192
207
+ #: counter.php:1311
208
+ #@ cpd
209
+ msgid "Visitors today"
210
+ msgstr "Besucher heute"
211
+
212
+ #: counter.php:193
213
+ #: counter.php:1312
214
+ #@ cpd
215
+ msgid "Visitors yesterday"
216
+ msgstr "Besucher gestern"
217
+
218
+ #: counter.php:194
219
+ #: counter.php:1313
220
+ #@ cpd
221
+ msgid "Visitors last week"
222
+ msgstr "Besucher letzte Woche"
223
+
224
+ #: counter.php:197
225
+ #: counter.php:877
226
+ #: counter.php:1317
227
+ #@ cpd
228
+ msgid "Counter starts on"
229
+ msgstr "gez&auml;hlt ab"
230
+
231
+ #: counter-core.php:818
232
+ #: counter.php:196
233
+ #: counter.php:295
234
+ #: counter.php:1120
235
+ #: counter.php:1315
236
+ #: userperspan.php:34
237
+ #@ cpd
238
+ msgid "Visitors per day"
239
+ msgstr "Besucher pro Tag"
240
+
241
+ #: counter-core.php:814
242
+ #: counter.php:1314
243
+ #@ cpd
244
+ msgid "Visitors per month"
245
+ msgstr "Besucher pro Monat"
246
+
247
+ #: Copy of counter-options.php:441
248
+ #: counter-core.php:816
249
+ #: counter-options.php:808
250
+ #@ cpd
251
+ msgid "Visitors per post"
252
+ msgstr "Besucher pro Artikel"
253
+
254
+ #: Copy of counter-options.php:121
255
+ #: counter-options.php:123
256
+ #@ cpd
257
+ msgid "Counter reseted."
258
+ msgstr "Z&auml;hler zur&uuml;ckgesetzt."
259
+
260
+ #: Copy of counter-options.php:442
261
+ #: Copy of counter-options.php:446
262
+ #: counter-options.php:809
263
+ #: counter-options.php:813
264
+ #@ cpd
265
+ msgid "How many posts do you want to see on dashboard page?"
266
+ msgstr "Wie viele Eintr&auml;ge m&ouml;chtest du auf der Dashboard Seite sehen?"
267
+
268
+ #: Copy of counter-options.php:445
269
+ #: counter-options.php:812
270
+ #@ cpd
271
+ msgid "Latest Counts - Posts"
272
+ msgstr "Aktuelle Besuche - Artikel"
273
+
274
+ #: Copy of counter-options.php:449
275
+ #: counter-options.php:816
276
+ #@ cpd
277
+ msgid "Latest Counts - Days"
278
+ msgstr "Aktuelle Besuche - Tage"
279
+
280
+ #: Copy of counter-options.php:450
281
+ #: Copy of counter-options.php:454
282
+ #: Copy of counter-options.php:476
283
+ #: counter-options.php:817
284
+ #: counter-options.php:821
285
+ #: counter-options.php:843
286
+ #@ cpd
287
+ msgid "How many days do you want look back?"
288
+ msgstr "Wie viele Tage m&ouml;chtest du zur&uuml;ck schauen?"
289
+
290
+ #: Copy of counter-options.php:490
291
+ #: counter-options.php:857
292
+ #@ cpd
293
+ msgid "Show in lists"
294
+ msgstr "In &Uuml;bersichten anzeigen"
295
+
296
+ #: Copy of counter-options.php:491
297
+ #: counter-options.php:858
298
+ #@ cpd
299
+ msgid "Show \"Reads per Post\" in a new column in post management views."
300
+ msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikel&uuml;bersicht."
301
+
302
+ #: Copy of counter-options.php:806
303
+ #: Copy of counter-options.php:816
304
+ #: counter-options.php:660
305
+ #: counter-options.php:670
306
+ #@ cpd
307
+ msgid "Reset the counter"
308
+ msgstr "Z&auml;hler zur&uuml;cksetzen"
309
+
310
+ #: Copy of counter-options.php:809
311
+ #: counter-options.php:663
312
+ #@ cpd
313
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
314
+ 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!"
315
+
316
+ #: counter.php:708
317
+ #, php-format
318
+ #@ cpd
319
+ msgid "The %s most visited posts in last %s days:"
320
+ msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
321
+
322
+ #: Copy of counter-options.php:346
323
+ #: Copy of counter-options.php:563
324
+ #: counter-core.php:649
325
+ #: counter-options.php:386
326
+ #: counter-options.php:714
327
+ #@ default
328
+ msgid "Settings"
329
+ msgstr ""
330
+
331
+ #: Copy of counter-options.php:396
332
+ #: counter-core.php:714
333
+ #: counter-options.php:763
334
+ #: counter.php:189
335
+ #: counter.php:927
336
+ #@ cpd
337
+ msgid "Reads"
338
+ msgstr "Seitenaufrufe"
339
+
340
+ #: counter-core.php:817
341
+ #@ cpd
342
+ msgid "Latest Counts"
343
+ msgstr "Letzte Seitenaufrufe"
344
+
345
+ #: Copy of counter-options.php:453
346
+ #: counter-options.php:820
347
+ #@ cpd
348
+ msgid "Chart - Days"
349
+ msgstr "Diagramm - Tage"
350
+
351
+ #: Copy of counter-options.php:457
352
+ #: counter-options.php:824
353
+ #@ cpd
354
+ msgid "Chart - Height"
355
+ msgstr "Diagramm - H&ouml;he"
356
+
357
+ #: Copy of counter-options.php:458
358
+ #: counter-options.php:825
359
+ #@ cpd
360
+ msgid "Height of the biggest bar"
361
+ msgstr "H&ouml;he des gr&ouml;&szlig;ten Balkens"
362
+
363
+ #: counter.php:1304
364
+ #@ cpd
365
+ msgid "This post"
366
+ msgstr "Diese Seite"
367
+
368
+ #: Copy of counter-options.php:406
369
+ #: counter-options.php:773
370
+ #@ default
371
+ msgid "Dashboard"
372
+ msgstr ""
373
+
374
+ #: counter.php:294
375
+ #@ cpd
376
+ msgid "Reads per day"
377
+ msgstr "Seitenaufrufe pro Tag"
378
+
379
+ #: Copy of counter-options.php:61
380
+ #: counter-options.php:63
381
+ #, php-format
382
+ #@ cpd
383
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
384
+ msgstr "L&auml;nder aktualisiert. <b>%s</b> Datens&auml;tze in %s noch offen."
385
+
386
+ #: Copy of counter-options.php:64
387
+ #: counter-options.php:66
388
+ #@ cpd
389
+ msgid "update next"
390
+ msgstr "weiter aktualisieren"
391
+
392
+ #: Copy of counter-options.php:756
393
+ #: counter-options.php:610
394
+ #@ cpd
395
+ msgid "GeoIP - Countries"
396
+ msgstr "GeoIP - L&auml;nder"
397
+
398
+ #: Copy of counter-options.php:765
399
+ #: counter-options.php:619
400
+ #@ cpd
401
+ msgid "Update old counter data"
402
+ msgstr "Aktualisiere alte Z&auml;hlerdaten"
403
+
404
+ #: Copy of counter-options.php:777
405
+ #: counter-options.php:631
406
+ #@ cpd
407
+ msgid "Update GeoIP database"
408
+ msgstr "Aktualisiere GeoIP Datenbank"
409
+
410
+ #: Copy of counter-options.php:772
411
+ #: counter-options.php:626
412
+ #@ cpd
413
+ msgid "Download a new version of GeoIP.dat file."
414
+ msgstr "Neue Version von GeoIP.dat herunterladen."
415
+
416
+ #: Copy of counter-options.php:782
417
+ #: counter-options.php:636
418
+ #@ cpd
419
+ msgid "More informations about GeoIP"
420
+ msgstr "Mehr Informationen über GeoIP"
421
+
422
+ #: counter-core.php:828
423
+ #@ cpd
424
+ msgid "Reads per Country"
425
+ msgstr "Seitenaufrufe pro Land"
426
+
427
+ #: geoip/geoip.php:114
428
+ #@ cpd
429
+ msgid "New GeoIP database installed."
430
+ msgstr "Neue GeoIP Datenbank installiert."
431
+
432
+ #: geoip/geoip.php:116
433
+ #@ cpd
434
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
435
+ msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder &uuml;berpr&uuml;fe ob du für das Verzeichnis \"geoip\" Schreibrechte (777) hast."
436
+
437
+ #: geoip/geoip.php:90
438
+ #@ cpd
439
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
440
+ msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
441
+
442
+ #: Copy of counter-options.php:462
443
+ #: counter-options.php:829
444
+ #@ cpd
445
+ msgid "Countries"
446
+ msgstr "L&auml;nder"
447
+
448
+ #: Copy of counter-options.php:463
449
+ #: counter-options.php:830
450
+ #@ cpd
451
+ msgid "How many countries do you want to see on dashboard page?"
452
+ msgstr "Wie viele L&auml;nder m&ouml;chtest du auf der Dashboard Seite sehen?"
453
+
454
+ #: Copy of counter-options.php:104
455
+ #: counter-options.php:106
456
+ #, php-format
457
+ #@ cpd
458
+ msgid "Mass Bots cleaned. %s counts deleted."
459
+ msgstr "Massen-Bots bereinigt. %s Z&auml;hlerdaten gel&ouml;scht."
460
+
461
+ #: Copy of counter-options.php:578
462
+ #: counter-options.php:402
463
+ #: massbots.php:36
464
+ #@ cpd
465
+ msgid "Mass Bots"
466
+ msgstr "Massen-Bots"
467
+
468
+ #: Copy of counter-options.php:582
469
+ #: counter-options.php:406
470
+ #, php-format
471
+ #@ cpd
472
+ msgid "Show all IPs with more than %s page views per day"
473
+ msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
474
+
475
+ #: Copy of counter-options.php:583
476
+ #: counter-options.php:407
477
+ #: notes.php:71
478
+ #: userperspan.php:44
479
+ #@ cpd
480
+ msgid "show"
481
+ msgstr "anzeigen"
482
+
483
+ #: Copy of counter-options.php:609
484
+ #: Copy of counter-options.php:625
485
+ #: counter-options.php:433
486
+ #: counter-options.php:449
487
+ #, php-format
488
+ #@ cpd
489
+ msgid "Delete these %s counts"
490
+ msgstr "L&ouml;sche diese %s Z&auml;hlerdaten"
491
+
492
+ #: counter.php:865
493
+ #@ cpd
494
+ msgid "Other"
495
+ msgstr "Sonstige"
496
+
497
+ #: counter.php:1054
498
+ #: massbots.php:53
499
+ #: userperspan.php:63
500
+ #@ default
501
+ msgid "Front page displays"
502
+ msgstr ""
503
+
504
+ #: Copy of counter-options.php:467
505
+ #: counter-core.php:823
506
+ #: counter-options.php:834
507
+ #@ cpd
508
+ msgid "Browsers"
509
+ msgstr "Browser"
510
+
511
+ #: Copy of counter-options.php:591
512
+ #: counter-options.php:415
513
+ #@ cpd
514
+ msgid "IP"
515
+ msgstr "IP"
516
+
517
+ #: Copy of counter-options.php:592
518
+ #: counter-options.php:416
519
+ #: notes.php:75
520
+ #@ cpd
521
+ #@ default
522
+ msgid "Date"
523
+ msgstr "Datum"
524
+
525
+ #: Copy of counter-options.php:593
526
+ #: counter-options.php:417
527
+ #@ cpd
528
+ msgid "Client"
529
+ msgstr "Browser"
530
+
531
+ #: Copy of counter-options.php:594
532
+ #: counter-options.php:418
533
+ #@ cpd
534
+ msgid "Views"
535
+ msgstr "Seitenaufrufe"
536
+
537
+ #: Copy of counter-options.php:498
538
+ #: counter-options.php:865
539
+ #@ cpd
540
+ msgid "Start Values"
541
+ msgstr "Startwerte"
542
+
543
+ #: Copy of counter-options.php:502
544
+ #: counter-options.php:869
545
+ #@ cpd
546
+ msgid "Here you can change the date of first count and add a start count."
547
+ msgstr "Hier kannst du das Startdatum und den Startz&auml;hlerstand überschreiben."
548
+
549
+ #: Copy of counter-options.php:506
550
+ #: counter-options.php:873
551
+ #@ cpd
552
+ msgid "Start date"
553
+ msgstr "Startdatum"
554
+
555
+ #: Copy of counter-options.php:507
556
+ #: counter-options.php:874
557
+ #@ cpd
558
+ msgid "Your old Counter starts at?"
559
+ msgstr "Dein alter Z&auml;hler begann am?"
560
+
561
+ #: Copy of counter-options.php:510
562
+ #: Copy of counter-options.php:514
563
+ #: counter-options.php:877
564
+ #: counter-options.php:881
565
+ #@ cpd
566
+ msgid "Start count"
567
+ msgstr "Startz&auml;hlerstand"
568
+
569
+ #: Copy of counter-options.php:511
570
+ #: counter-options.php:878
571
+ #@ cpd
572
+ msgid "Add this value to \"Total visitors\"."
573
+ msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
574
+
575
+ #: Copy of counter-options.php:743
576
+ #: counter-options.php:701
577
+ #@ cpd
578
+ msgid "Support"
579
+ msgstr "Kontakt"
580
+
581
+ #: counter-core.php:778
582
+ #@ cpd
583
+ msgid "Bug? Problem? Question? Hint? Praise?"
584
+ msgstr "Bug? Problem? Frage? Tipp? Lob?"
585
+
586
+ #: counter-core.php:779
587
+ #, php-format
588
+ #@ cpd
589
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
590
+ msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
591
+
592
+ #: counter.php:824
593
+ #@ default
594
+ msgid "Show"
595
+ msgstr ""
596
+
597
+ #: counter.php:1039
598
+ #@ default
599
+ msgid "Edit Post"
600
+ msgstr ""
601
+
602
+ #: counter-core.php:777
603
+ #, php-format
604
+ #@ cpd
605
+ msgid "Time for Count per Day: <code>%s</code>."
606
+ msgstr "Zeit bei Count per Day: <code>%s</code>"
607
+
608
+ #: Copy of counter-options.php:366
609
+ #: counter-options.php:733
610
+ #@ cpd
611
+ msgid "until User Level"
612
+ msgstr "bis Benutzerlevel"
613
+
614
+ #: counter-core.php:820
615
+ #@ default
616
+ msgid "Plugin"
617
+ msgstr ""
618
+
619
+ #: counter.php:826
620
+ #: notes.php:42
621
+ #: notes.php:76
622
+ #@ cpd
623
+ msgid "Notes"
624
+ msgstr "Notizen"
625
+
626
+ #: notes.php:77
627
+ #@ default
628
+ msgid "Action"
629
+ msgstr ""
630
+
631
+ #: notes.php:82
632
+ #@ cpd
633
+ msgid "add"
634
+ msgstr "hinzuf&uuml;gen"
635
+
636
+ #: notes.php:98
637
+ #@ cpd
638
+ msgid "save"
639
+ msgstr "speichern"
640
+
641
+ #: notes.php:99
642
+ #@ cpd
643
+ msgid "delete"
644
+ msgstr "l&ouml;schen"
645
+
646
+ #: notes.php:110
647
+ #@ cpd
648
+ msgid "edit"
649
+ msgstr "&auml;ndern"
650
+
651
+ #: Copy of counter-options.php:515
652
+ #: counter-options.php:882
653
+ #@ cpd
654
+ msgid "Add this value to \"Total reads\"."
655
+ msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
656
+
657
+ #: counter.php:185
658
+ #: counter.php:1305
659
+ #@ cpd
660
+ msgid "Total reads"
661
+ msgstr "Seitenaufrufe gesamt"
662
+
663
+ #: counter.php:186
664
+ #: counter.php:1306
665
+ #@ cpd
666
+ msgid "Reads today"
667
+ msgstr "Seitenaufrufe heute"
668
+
669
+ #: counter.php:187
670
+ #: counter.php:1307
671
+ #@ cpd
672
+ msgid "Reads yesterday"
673
+ msgstr "Seitenaufrufe gestern"
674
+
675
+ #: counter.php:385
676
+ #: counter.php:1149
677
+ #@ cpd
678
+ msgid "Map"
679
+ msgstr "Weltkarte"
680
+
681
+ #: Copy of counter-options.php:385
682
+ #: counter-options.php:752
683
+ #@ cpd
684
+ msgid "Anonymous IP"
685
+ msgstr "Anonyme IP-Adresse"
686
+
687
+ #: Copy of counter-options.php:389
688
+ #: counter-options.php:756
689
+ #@ cpd
690
+ msgid "Cache"
691
+ msgstr "Cache"
692
+
693
+ #: Copy of counter-options.php:390
694
+ #: counter-options.php:757
695
+ #@ cpd
696
+ msgid "I use a cache plugin. Count these visits with ajax."
697
+ msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
698
+
699
+ #: Copy of counter-options.php:468
700
+ #: counter-options.php:835
701
+ #@ cpd
702
+ msgid "Substring of the user agent, separated by comma"
703
+ msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
704
+
705
+ #: counter-core.php:829
706
+ #@ cpd
707
+ msgid "Visitors per Country"
708
+ msgstr "Besucher pro Land"
709
+
710
+ #: Copy of counter-options.php:552
711
+ #: counter-options.php:919
712
+ #@ cpd
713
+ msgid "Debug mode"
714
+ msgstr "Debug Modus"
715
+
716
+ #: Copy of counter-options.php:554
717
+ #: counter-options.php:921
718
+ #@ cpd
719
+ msgid "Show debug informations at the bottom of all pages."
720
+ msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
721
+
722
+ #: userperspan.php:38
723
+ #@ cpd
724
+ msgid "Start"
725
+ msgstr "Start"
726
+
727
+ #: userperspan.php:40
728
+ #@ cpd
729
+ msgid "End"
730
+ msgstr "Ende"
731
+
732
+ #: userperspan.php:42
733
+ #@ cpd
734
+ msgid "PostID"
735
+ msgstr "Artikel-ID"
736
+
737
+ #: userperspan.php:50
738
+ #@ cpd
739
+ msgid "no data found"
740
+ msgstr "keine passenden Daten gefunden"
741
+
742
+ #: Copy of counter-options.php:759
743
+ #: counter-options.php:613
744
+ #@ cpd
745
+ 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!"
746
+ 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."
747
+
748
+ #: Copy of counter-options.php:355
749
+ #: counter-options.php:722
750
+ #@ cpd
751
+ msgid "Counter"
752
+ msgstr "Z&auml;hler"
753
+
754
+ #: Copy of counter-options.php:479
755
+ #: counter-options.php:846
756
+ #@ cpd
757
+ msgid "Local URLs"
758
+ msgstr "Lokale URLs"
759
+
760
+ #: Copy of counter-options.php:480
761
+ #: counter-options.php:847
762
+ #@ cpd
763
+ msgid "Show local referrers too."
764
+ msgstr "Zeige auch lokale Referrer."
765
+
766
+ #: Copy of counter-options.php:487
767
+ #: counter-options.php:854
768
+ #@ default
769
+ msgid "Posts"
770
+ msgstr ""
771
+
772
+ #: Copy of counter-options.php:487
773
+ #: counter-options.php:854
774
+ #@ default
775
+ msgid "Pages"
776
+ msgstr ""
777
+
778
+ #: counter.php:1048
779
+ #@ default
780
+ msgid "Category"
781
+ msgstr ""
782
+
783
+ #: counter.php:1051
784
+ #@ default
785
+ msgid "Tag"
786
+ msgstr ""
787
+
788
+ #: counter-core.php:780
789
+ #@ default
790
+ msgid "License"
791
+ msgstr ""
792
+
793
+ #: counter-core.php:824
794
+ #@ cpd
795
+ msgid "Referrer"
796
+ msgstr "Herkunft"
797
+
798
+ #: counter.php:1328
799
+ #@ default
800
+ msgid "Title"
801
+ msgstr ""
802
+
803
+ #: Copy of counter-options.php:396
804
+ #: counter-options.php:763
805
+ #@ cpd
806
+ 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."
807
+ 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."
808
+
809
+ #: Copy of counter-options.php:393
810
+ #: counter-options.php:760
811
+ #@ cpd
812
+ msgid "Clients and referrers"
813
+ msgstr "Browser und Herkunft"
814
+
815
+ #: counter.php:188
816
+ #: counter.php:1308
817
+ #@ cpd
818
+ msgid "Reads last week"
819
+ msgstr "Seitenaufrufe letzte Woche"
820
+
821
+ #: counter-core.php:815
822
+ #: counter.php:1309
823
+ #@ cpd
824
+ msgid "Reads per month"
825
+ msgstr "Seitenaufrufe pro Monat"
826
+
827
+ #: Copy of counter-options.php:471
828
+ #: counter-options.php:838
829
+ #@ cpd
830
+ msgid "Referrers - Entries"
831
+ msgstr "Herkunft - Einträge"
832
+
833
+ #: Copy of counter-options.php:472
834
+ #: counter-options.php:839
835
+ #@ cpd
836
+ msgid "How many referrers do you want to see on dashboard page?"
837
+ msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
838
+
839
+ #: Copy of counter-options.php:475
840
+ #: counter-options.php:842
841
+ #@ cpd
842
+ msgid "Referrers - Days"
843
+ msgstr "Herkunft - Tage"
844
+
845
+ #: counter.php:897
846
+ #, php-format
847
+ #@ cpd
848
+ msgid "The %s referrers in last %s days:"
849
+ msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
850
+
851
+ #: counter-core.php:813
852
+ #@ cpd
853
+ msgid "Visitors online"
854
+ msgstr "Besucher online"
855
+
856
+ #: Copy of counter-options.php:522
857
+ #: counter-options.php:889
858
+ #@ cpd
859
+ msgid "Stylesheet"
860
+ msgstr "Stylesheet"
861
+
862
+ #: Copy of counter-options.php:525
863
+ #: counter-options.php:892
864
+ #@ cpd
865
+ msgid "NO Stylesheet in Frontend"
866
+ msgstr "KEIN Stylesheet im Frontend"
867
+
868
+ #: Copy of counter-options.php:526
869
+ #: counter-options.php:893
870
+ #@ cpd
871
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
872
+ msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
873
+
874
+ #: Copy of counter-options.php:422
875
+ #: counter-options.php:789
876
+ #@ cpd
877
+ msgid "Who can see it"
878
+ msgstr "Wer darf es sehen"
879
+
880
+ #: Copy of counter-options.php:431
881
+ #: counter-options.php:798
882
+ #@ cpd
883
+ msgid "custom"
884
+ msgstr "benutzerdefiniert"
885
+
886
+ #: Copy of counter-options.php:433
887
+ #: counter-options.php:800
888
+ #@ cpd
889
+ msgid "and higher are allowed to see the statistics page."
890
+ msgstr "und höher haben Zugriff auf die Statistikseite."
891
+
892
+ #: Copy of counter-options.php:435
893
+ #: counter-options.php:802
894
+ #, php-format
895
+ #@ cpd
896
+ msgid "Set the %s capability %s a user need:"
897
+ msgstr "Gibt die benötigte %s Rolle %s ein."
898
+
899
+ #: counter-core.php:252
900
+ #, php-format
901
+ #@ cpd
902
+ msgid "\"Count per Day\" updated to version %s."
903
+ msgstr "&quot;Count per Day&quot; aktualisiert auf Version %s."
904
+
905
+ #: counter-core.php:1016
906
+ #@ cpd
907
+ msgid "Backup failed! Cannot open file"
908
+ msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
909
+
910
+ #: counter-core.php:1042
911
+ #, php-format
912
+ #@ cpd
913
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
914
+ msgstr "Sicherung von %s Einträge. Jeder Punkt entspricht %s Einträgen."
915
+
916
+ #: counter-core.php:1133
917
+ #: counter-core.php:1141
918
+ #, php-format
919
+ #@ cpd
920
+ msgid "Backup of counter table saved in %s."
921
+ msgstr "Die Zähler-Tabelle wurde in %s gesichert."
922
+
923
+ #: counter-core.php:1135
924
+ #: counter-core.php:1143
925
+ #, php-format
926
+ #@ cpd
927
+ msgid "Backup of counter options and collection saved in %s."
928
+ msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
929
+
930
+ #: Copy of counter-options.php:169
931
+ #: counter-options.php:169
932
+ #@ cpd
933
+ msgid "Collection in progress..."
934
+ msgstr "Zusammenfassung erfolgt ..."
935
+
936
+ #: Copy of counter-options.php:245
937
+ #: counter-options.php:263
938
+ #@ cpd
939
+ msgid "Get Visitors per Post..."
940
+ msgstr "Besucher pro Artikel bearbeiten..."
941
+
942
+ #: Copy of counter-options.php:266
943
+ #: counter-options.php:284
944
+ #@ cpd
945
+ msgid "Delete old data..."
946
+ msgstr "L&ouml;schen alter Daten..."
947
+
948
+ #: Copy of counter-options.php:290
949
+ #: counter-options.php:308
950
+ #, php-format
951
+ #@ cpd
952
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
953
+ 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)."
954
+
955
+ #: Copy of counter-options.php:299
956
+ #: counter-options.php:317
957
+ #@ cpd
958
+ msgid "Installation of \"Count per Day\" checked"
959
+ msgstr "Installation von &quot;Count per Day&quot; überpr&uuml;ft"
960
+
961
+ #: Copy of counter-options.php:347
962
+ #: Copy of counter-options.php:564
963
+ #: counter-options.php:385
964
+ #: counter-options.php:713
965
+ #@ default
966
+ msgid "Tools"
967
+ msgstr ""
968
+
969
+ #: Copy of counter-options.php:398
970
+ #: counter-options.php:765
971
+ #@ cpd
972
+ msgid "Save URL only, no query string."
973
+ msgstr "Speichere nur die URL, keinen Query-String."
974
+
975
+ #: Copy of counter-options.php:533
976
+ #: Copy of counter-options.php:637
977
+ #: counter-options.php:461
978
+ #: counter-options.php:900
979
+ #@ cpd
980
+ msgid "Backup"
981
+ msgstr "Backup"
982
+
983
+ #: Copy of counter-options.php:536
984
+ #: counter-options.php:903
985
+ #@ cpd
986
+ msgid "Entries per pass"
987
+ msgstr "Einträge pro Durchgang"
988
+
989
+ #: Copy of counter-options.php:539
990
+ #: counter-options.php:906
991
+ #@ cpd
992
+ msgid "How many entries should be saved per pass? Default: 10000"
993
+ msgstr "Wie viele Eintr&auml;ge sollen pro Durchgang bearbeitet werden? Standard: 10000"
994
+
995
+ #: Copy of counter-options.php:544
996
+ #: counter-options.php:911
997
+ #@ cpd
998
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
999
+ 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."
1000
+
1001
+ #: Copy of counter-options.php:641
1002
+ #: counter-options.php:465
1003
+ #, php-format
1004
+ #@ cpd
1005
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
1006
+ msgstr "Erstelle eine Sicherungskopie der Z&auml;hler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
1007
+
1008
+ #: Copy of counter-options.php:648
1009
+ #: counter-options.php:472
1010
+ #@ cpd
1011
+ msgid "Backup the database"
1012
+ msgstr "Datenbank sichern"
1013
+
1014
+ #: Copy of counter-options.php:703
1015
+ #: Copy of counter-options.php:735
1016
+ #: counter-options.php:565
1017
+ #: counter-options.php:597
1018
+ #@ cpd
1019
+ msgid "Collect old data"
1020
+ msgstr "Alte Daten zusammenfassen"
1021
+
1022
+ #: Copy of counter-options.php:708
1023
+ #: counter-options.php:570
1024
+ #, php-format
1025
+ #@ cpd
1026
+ msgid "Current size of your counter table %s is %s."
1027
+ msgstr "Die aktuelle Gr&ouml;&szlig;e der Z&auml;hler-Tabelle %s ist %s."
1028
+
1029
+ #: Copy of counter-options.php:710
1030
+ #: counter-options.php:572
1031
+ #@ cpd
1032
+ 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."
1033
+ 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."
1034
+
1035
+ #: Copy of counter-options.php:715
1036
+ #: counter-options.php:577
1037
+ #, php-format
1038
+ #@ cpd
1039
+ msgid "Currently your collection contains data until %s."
1040
+ msgstr "Momentan enth&auml;lt die Zusammenfassung Daten bis %s."
1041
+
1042
+ #: Copy of counter-options.php:719
1043
+ #: counter-options.php:581
1044
+ #@ cpd
1045
+ msgid "Normally new data will be added to the collection."
1046
+ msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugef&uuml;gt."
1047
+
1048
+ #: Copy of counter-options.php:725
1049
+ #: counter-options.php:587
1050
+ #@ cpd
1051
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
1052
+ 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."
1053
+
1054
+ #: Copy of counter-options.php:726
1055
+ #: counter-options.php:588
1056
+ #, php-format
1057
+ #@ cpd
1058
+ msgid "All collected data until %s will deleted."
1059
+ msgstr "Alle zusammengefassten Daten bis %s werden gel&ouml;scht."
1060
+
1061
+ #: Copy of counter-options.php:731
1062
+ #: counter-options.php:593
1063
+ #, php-format
1064
+ #@ cpd
1065
+ msgid "Keep entries of last %s full months + current month in counter table."
1066
+ msgstr "Behalte die Eintr&auml;ge der letzten %s vollen Monate plus des aktuellen Monats in der Z&auml;hler-Tabelle."
1067
+
1068
+ #: Copy of counter-options.php:790
1069
+ #: counter-options.php:644
1070
+ #@ cpd
1071
+ msgid "ReActivation"
1072
+ msgstr "ReAktivierung"
1073
+
1074
+ #: Copy of counter-options.php:793
1075
+ #: counter-options.php:647
1076
+ #@ cpd
1077
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
1078
+ msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
1079
+
1080
+ #: Copy of counter-options.php:798
1081
+ #: counter-options.php:652
1082
+ #@ cpd
1083
+ msgid "ReActivate the plugin"
1084
+ msgstr "ReAktiviere das Plugin"
1085
+
1086
+ #: counter.php:195
1087
+ #: counter.php:951
1088
+ #@ cpd
1089
+ msgid "Visitors"
1090
+ msgstr "Besucher"
1091
+
1092
+ #: counter.php:198
1093
+ #: counter.php:199
1094
+ #@ cpd
1095
+ msgid "Most visited day"
1096
+ msgstr "meistbesuchter Tag"
1097
+
1098
+ #: counter.php:1347
1099
+ #@ cpd
1100
+ msgid "drag and drop to sort"
1101
+ msgstr "per Drag &amp; Drop sortieren"
1102
+
1103
+ #: counter-core.php:1129
1104
+ #@ cpd
1105
+ msgid "Your can download the backup files here and now."
1106
+ msgstr "Du kannst die Sicherungen nur hier und jetzt herunterladen."
1107
+
1108
+ #: Copy of counter-options.php:644
1109
+ #: counter-options.php:468
1110
+ #@ cpd
1111
+ msgid "Download only"
1112
+ msgstr "nur zum Download anbieten, nicht speichern"
1113
+
1114
+ #: Copy of counter-options.php:673
1115
+ #: counter-options.php:519
1116
+ #@ default
1117
+ msgid "Delete"
1118
+ msgstr ""
1119
+
1120
+ #: Copy of counter-options.php:674
1121
+ #: counter-options.php:520
1122
+ #, php-format
1123
+ #@ cpd
1124
+ msgid "Delete the backup file %s ?"
1125
+ msgstr "Sicherung %s l&ouml;schen?"
1126
+
1127
+ #: counter-core.php:819
1128
+ #: counter-options.php:838
1129
+ #: counter-options.php:842
1130
+ #@ cpd
1131
+ msgid "Search strings"
1132
+ msgstr "Suchw&ouml;rter"
1133
+
1134
+ #: counter-core.php:1199
1135
+ #@ cpd
1136
+ msgid "Error while reading backup file!"
1137
+ msgstr "Fehler beim Lesen der Sicherungsdatei!"
1138
+
1139
+ #: counter-core.php:1203
1140
+ #, php-format
1141
+ #@ cpd
1142
+ msgid "The backup was added to counter table %s."
1143
+ msgstr "Die Sicherung wurde zur Tabelle %s hinzugef&uuml;gt."
1144
+
1145
+ #: counter-core.php:1205
1146
+ #, php-format
1147
+ #@ cpd
1148
+ msgid "The counter table %s was restored from backup."
1149
+ msgstr "Die Z&auml;hlertabelle %s wurde wiederhergestellt."
1150
+
1151
+ #: counter-core.php:1222
1152
+ #@ cpd
1153
+ msgid "Options restored from backup."
1154
+ msgstr "Einstellungen wiederhergestellt."
1155
+
1156
+ #: counter-options.php:501
1157
+ #@ cpd
1158
+ msgid "Settings and collections"
1159
+ msgstr "Einstellungen und Zusammenfassung"
1160
+
1161
+ #: counter-options.php:506
1162
+ #, php-format
1163
+ #@ cpd
1164
+ msgid "Counter table %s"
1165
+ msgstr "Z&auml;hlertabelle %s"
1166
+
1167
+ #: counter-options.php:513
1168
+ #, php-format
1169
+ #@ cpd
1170
+ msgid "Add data from the backup file %s to existing counter table?"
1171
+ msgstr "Die Daten der Sicherung zur vorhandenen Z&auml;hlertabelle %s hinzuf&uuml;gen?"
1172
+
1173
+ #: counter-options.php:517
1174
+ #, php-format
1175
+ #@ cpd
1176
+ msgid "Restore data from the backup file %s ?"
1177
+ msgstr "Daten aus der Sicherung %s wiederherstellen?"
1178
+
1179
+ #: counter-options.php:517
1180
+ #@ default
1181
+ msgid "Restore"
1182
+ msgstr ""
1183
+
1184
+ #: counter-options.php:526
1185
+ #@ cpd
1186
+ msgid "add backup to current counter table"
1187
+ msgstr "Sicherung zu aktuellen Daten hinzuf&uuml;gen"
1188
+
1189
+ #: counter-options.php:527
1190
+ #@ cpd
1191
+ msgid "replace current counter table with with backup"
1192
+ msgstr "aktuelle Daten durch Sicherung ersetzen"
1193
+
1194
+ #: counter-options.php:528
1195
+ #@ cpd
1196
+ msgid "delete backup file"
1197
+ msgstr "Sicherung l&ouml;schen"
1198
+
1199
+ #: counter.php:1094
1200
+ #, php-format
1201
+ #@ cpd
1202
+ msgid "The %s most searched strings:"
1203
+ msgstr "Die %s am meisten gesuchten W&ouml;rter:"
1204
+
1205
+ #: counter.php:1103
1206
+ #, php-format
1207
+ #@ cpd
1208
+ msgid "The search strings of the last %s days:"
1209
+ msgstr "Die Suchw&ouml;rter der letzten %s Tage:"
1210
+
1211
+ #: counter-options.php:332
1212
+ #@ cpd
1213
+ msgid "Old search strings deleted"
1214
+ msgstr "Alte Suchw&ouml;rter wurden gel&ouml;scht."
1215
+
1216
+ #: counter-options.php:554
1217
+ #, php-format
1218
+ #@ cpd
1219
+ msgid "Delete search strings older than %s days."
1220
+ msgstr "L&ouml;sche Suchw&ouml;rter die älter als %s Tage sind!"
1221
+
1222
+ #: counter-options.php:556
1223
+ #@ cpd
1224
+ msgid "Delete search strings"
1225
+ msgstr "L&ouml;sche Suchw&ouml;rter"
1226
+
1227
+ #: counter-options.php:513
1228
+ #@ cpd
1229
+ msgid "Add"
1230
+ msgstr "Hinzuf&uuml;gen"
1231
+
locale/cpd-el.po CHANGED
@@ -1,973 +1,973 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day Development version\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Polemos <temp2417@gmail.com>\n"
8
- "Language-Team: Elliniki Grothia <ellgrothia@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Greek\n"
14
- "X-Poedit-Country: GREECE\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:50
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Οι ρυθμίσεις σας ενημερώθηκαν"
26
-
27
- #: counter-options.php:61
28
- #, php-format
29
- #@ cpd
30
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
- msgstr "Οι χώρες ενημερώθηκαν. <b>%s</b> καταχωρήσεις στις %s δεν έχουν αντιστοιχηθεί με χώρες."
32
-
33
- #: counter-options.php:64
34
- #@ cpd
35
- msgid "update next"
36
- msgstr "ενημέρωση επόμενων"
37
-
38
- #: counter-options.php:104
39
- #, php-format
40
- #@ cpd
41
- msgid "Mass Bots cleaned. %s counts deleted."
42
- msgstr "Καθαρίστηκαν μαζικά bot. %s μετρήσεις σβήστηκαν."
43
-
44
- #: counter-options.php:114
45
- #, php-format
46
- #@ cpd
47
- msgid "Database cleaned. %s rows deleted."
48
- msgstr "Καθαρίστικε η βάση δεδομένων. %s γραμμές σβήστηκαν."
49
-
50
- #: counter-options.php:124
51
- #@ cpd
52
- msgid "Counter reseted."
53
- msgstr "Μηδενίστηκε ο μετρητής."
54
-
55
- #: counter-options.php:129
56
- #: counter-options.php:817
57
- #@ cpd
58
- msgid "UNINSTALL Count per Day"
59
- msgstr "Απεγκατάσταση του Count per Day"
60
-
61
- #: counter-options.php:134
62
- #: counter-options.php:135
63
- #: counter-options.php:136
64
- #, php-format
65
- #@ cpd
66
- msgid "Table %s deleted"
67
- msgstr "Πίνακες %s διαγράφηκαν"
68
-
69
- #: counter-options.php:137
70
- #@ cpd
71
- msgid "Options deleted"
72
- msgstr "Οι ρυθμίσεις διαγράφηκαν"
73
-
74
- #: counter-options.php:318
75
- #: counter-options.php:803
76
- #@ cpd
77
- msgid "Uninstall"
78
- msgstr "Απεγκατάσταση"
79
-
80
- #: counter-options.php:319
81
- #@ cpd
82
- msgid "Click here"
83
- msgstr "Κάντε κλικ εδώ"
84
-
85
- #: counter-options.php:319
86
- #@ cpd
87
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
- msgstr "για να ολοκληρώσετε την απεγκατάσταση και να απενεργοποιήσετε το \"Count per Day\"."
89
-
90
- #: counter-options.php:356
91
- #@ cpd
92
- msgid "Online time"
93
- msgstr "Χρόνος σε σύνδεση"
94
-
95
- #: counter-options.php:357
96
- #@ cpd
97
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
- msgstr "Δευτερόλεπτα για τον μετρητή συνδεδεμένων χρηστών. Χρησιμοποιείται για τους \"Visitors online\" στην κεντρική σελίδα."
99
-
100
- #: counter-options.php:360
101
- #@ cpd
102
- msgid "Logged on Users"
103
- msgstr "Εγγεγραμμένοι-Συνδεδεμένοι Χρήστες"
104
-
105
- #: counter-options.php:362
106
- #@ cpd
107
- msgid "count too"
108
- msgstr "μετρήστε επίσης"
109
-
110
- #: counter-options.php:363
111
- #@ cpd
112
- msgid "until User Level"
113
- msgstr "μέχρι το Επίπεδο Χρήστη"
114
-
115
- #: counter-options.php:374
116
- #@ cpd
117
- msgid "Auto counter"
118
- msgstr "Αυτόματος μετρητής"
119
-
120
- #: counter-options.php:375
121
- #@ cpd
122
- msgid "Counts automatically single-posts and pages, no changes on template needed."
123
- msgstr "Μετρά αυτόματα μονά-άρθρα και σελίδες, δεν χρειάζεται αλλαγή στο πρότυπο (template)."
124
-
125
- #: counter-options.php:378
126
- #@ cpd
127
- msgid "Bots to ignore"
128
- msgstr "Bots που θα αγνοηθούν"
129
-
130
- #: counter-options.php:382
131
- #@ cpd
132
- msgid "Anonymous IP"
133
- msgstr "Ανώνυμος IP"
134
-
135
- #: counter-options.php:386
136
- #@ cpd
137
- msgid "Cache"
138
- msgstr "Αποθυκευμένη μνήμη (Cache)"
139
-
140
- #: counter-options.php:387
141
- #@ cpd
142
- msgid "I use a cache plugin. Count these visits with ajax."
143
- msgstr "Χρησιμοποιώ ένα cache-πρόσθετο. Μετρήστε αυτές τις επισκέψεις με ajax."
144
-
145
- #: counter-options.php:556
146
- #@ cpd
147
- msgid "Update options"
148
- msgstr "Ενημέρωση ρυθμίσεων"
149
-
150
- #: counter-options.php:403
151
- #@ default
152
- msgid "Dashboard"
153
- msgstr "Κεντρικός πίνακας"
154
-
155
- #: counter-core.php:735
156
- #: counter-options.php:438
157
- #@ cpd
158
- msgid "Visitors per post"
159
- msgstr "Επισκέπτες ανά άρθρο"
160
-
161
- #: counter-options.php:439
162
- #: counter-options.php:443
163
- #@ cpd
164
- msgid "How many posts do you want to see on dashboard page?"
165
- msgstr "Πόσα άρθρα επιθυμείτε να βλέπετε στη κεντρική σελίδα σας;"
166
-
167
- #: counter-options.php:442
168
- #@ cpd
169
- msgid "Latest Counts - Posts"
170
- msgstr "Τελευταίες Μετρήσεις - Άρθρα"
171
-
172
- #: counter-options.php:446
173
- #@ cpd
174
- msgid "Latest Counts - Days"
175
- msgstr "Τελευταίες Μετρήσεις - Ημέρες"
176
-
177
- #: counter-options.php:447
178
- #: counter-options.php:451
179
- #: counter-options.php:473
180
- #@ cpd
181
- msgid "How many days do you want look back?"
182
- msgstr "Μέχρι πόσες ημέρες επιθυμείτε να βλέπετε στο παρελθόν;"
183
-
184
- #: counter-options.php:450
185
- #@ cpd
186
- msgid "Chart - Days"
187
- msgstr "Διάγραμμα - Ημερών"
188
-
189
- #: counter-options.php:454
190
- #@ cpd
191
- msgid "Chart - Height"
192
- msgstr "Διάγραμμα - Ύψος"
193
-
194
- #: counter-options.php:455
195
- #@ cpd
196
- msgid "Height of the biggest bar"
197
- msgstr "Ύψος της μεγαλύτερης μπάρας"
198
-
199
- #: counter-options.php:459
200
- #@ cpd
201
- msgid "Countries"
202
- msgstr "Χώρες"
203
-
204
- #: counter-options.php:460
205
- #@ cpd
206
- msgid "How many countries do you want to see on dashboard page?"
207
- msgstr "Πόσες χώρες επιθυμείτε να βλέπετε στην κεντρική σελίδα;"
208
-
209
- #: counter-core.php:741
210
- #: counter-options.php:464
211
- #@ cpd
212
- msgid "Browsers"
213
- msgstr "Περιηγητές"
214
-
215
- #: counter-options.php:465
216
- #@ cpd
217
- msgid "Substring of the user agent, separated by comma"
218
- msgstr "Υπορουτίνα του οδηγού χρήστη, χωρισμένες με κόμμα"
219
-
220
- #: counter-options.php:487
221
- #@ cpd
222
- msgid "Show in lists"
223
- msgstr "Εμφάνιση στις λίστες"
224
-
225
- #: counter-options.php:488
226
- #@ cpd
227
- msgid "Show \"Reads per Post\" in a new column in post management views."
228
- msgstr "Εμφάνιση \"Reads per Post\" σε νέα στήλη στις απεικονίσεις των άρθρων."
229
-
230
- #: counter-options.php:495
231
- #@ cpd
232
- msgid "Start Values"
233
- msgstr "Αρχικές Τιμές"
234
-
235
- #: counter-options.php:499
236
- #@ cpd
237
- msgid "Here you can change the date of first count and add a start count."
238
- msgstr "Εδώ μπορείτε να αλλάξετε την ημερομηνία της πρώτης μέτρησης και να προσθέσετε μια νέα μέτρηση"
239
-
240
- #: counter-options.php:503
241
- #@ cpd
242
- msgid "Start date"
243
- msgstr "Αρχική ημερομηνία"
244
-
245
- #: counter-options.php:504
246
- #@ cpd
247
- msgid "Your old Counter starts at?"
248
- msgstr "Πότε ξεκινά ο παλαιότερος σας Μετρητής;"
249
-
250
- #: counter-options.php:507
251
- #: counter-options.php:511
252
- #@ cpd
253
- msgid "Start count"
254
- msgstr "Έναρξη μέτρησης"
255
-
256
- #: counter-options.php:508
257
- #@ cpd
258
- msgid "Add this value to \"Total visitors\"."
259
- msgstr "Προσθήκη αυτής της τιμής στους \"Total visitors\"."
260
-
261
- #: counter-options.php:512
262
- #@ cpd
263
- msgid "Add this value to \"Total reads\"."
264
- msgstr "Προσθήκη αυτής της τιμής στους \"Total reads\"."
265
-
266
- #: counter-options.php:549
267
- #@ cpd
268
- msgid "Debug mode"
269
- msgstr "Λειτουργία εξακρίβωσης λαθών (Debug)"
270
-
271
- #: counter-options.php:551
272
- #@ cpd
273
- msgid "Show debug informations at the bottom of all pages."
274
- msgstr "Εμφάνιση πληροφοριών (debug) στο κάτω μέρος όλων των σελίδων."
275
-
276
- #: counter-options.php:734
277
- #@ cpd
278
- msgid "GeoIP - Countries"
279
- msgstr "Γαίο-ΙΡ - Χώρες"
280
-
281
- #: counter-options.php:743
282
- #@ cpd
283
- msgid "Update old counter data"
284
- msgstr "Ενημέρωση παλαιότερων δεδομένων μετρητή"
285
-
286
- #: counter-options.php:755
287
- #@ cpd
288
- msgid "Update GeoIP database"
289
- msgstr "Ενημέρωση Γαίο-ΙΡ βάσης δεδομένων"
290
-
291
- #: counter-options.php:750
292
- #@ cpd
293
- msgid "Download a new version of GeoIP.dat file."
294
- msgstr "Κατεβάστε νέα έκδοση του αρχείου GeoIP.dat."
295
-
296
- #: counter-options.php:760
297
- #@ cpd
298
- msgid "More informations about GeoIP"
299
- msgstr "Περισσότερες πληροφορίες για το Γαίο-ΙΡ"
300
-
301
- #: counter-options.php:575
302
- #: massbots.php:35
303
- #@ cpd
304
- msgid "Mass Bots"
305
- msgstr "Μαζικά bots"
306
-
307
- #: counter-options.php:579
308
- #, php-format
309
- #@ cpd
310
- msgid "Show all IPs with more than %s page views per day"
311
- msgstr "Εμφάνιση όλων των ΙΡ με περισσότερες από %s σελίδες ανά ημέρα"
312
-
313
- #: counter-options.php:580
314
- #: notes.php:71
315
- #: userperspan.php:44
316
- #@ cpd
317
- msgid "show"
318
- msgstr "εμφάνιση"
319
-
320
- #: counter-options.php:588
321
- #@ cpd
322
- msgid "IP"
323
- msgstr "IP"
324
-
325
- #: counter-options.php:589
326
- #: notes.php:75
327
- #@ cpd
328
- #@ default
329
- msgid "Date"
330
- msgstr "Ημερομηνία"
331
-
332
- #: counter-options.php:590
333
- #@ cpd
334
- msgid "Client"
335
- msgstr "Πελάτης"
336
-
337
- #: counter-options.php:591
338
- #@ cpd
339
- msgid "Views"
340
- msgstr "Αναγνώσεις"
341
-
342
- #: counter-options.php:606
343
- #: counter-options.php:622
344
- #, php-format
345
- #@ cpd
346
- msgid "Delete these %s counts"
347
- msgstr "Διαγράψτε αυτές τις %s μετρήσεις"
348
-
349
- #: counter-options.php:663
350
- #: counter-options.php:672
351
- #@ cpd
352
- msgid "Clean the database"
353
- msgstr "Εκκαθάριση βάσης δεδομένων"
354
-
355
- #: counter-options.php:666
356
- #@ cpd
357
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
- msgstr "Μπορείτε να καθαρίσετε το πίνακα μετρήσεων με τη διαγραφή των \"spam data\".<br />Άμα προσθέσετε νέα bots πάνω στα παλαιά \"spam data\" θα κρατηθούν στην βάση δεδομένων.<br />Εδώ μπορείτε να τρέξετε το φίλτρο bot ξανά και να σβήσετε τις επισκέψεις των bot."
359
-
360
- #: counter-options.php:784
361
- #: counter-options.php:794
362
- #@ cpd
363
- msgid "Reset the counter"
364
- msgstr "΄Μηδενισμός μετρητή"
365
-
366
- #: counter-options.php:787
367
- #@ cpd
368
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
- msgstr "Μπορείτε να μηδενίσετε τον μετρητή με την εκκαθάριση του πίνακα. ΟΛΑ ΣΕ 0!<br />Κάντε εφεδρικά αντίγραφα άμα χρειάζεστε τα τωρινά δεδομένα!"
370
-
371
- #: counter-options.php:806
372
- #@ cpd
373
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
- msgstr "Άμα το \"Count per Day\" είναι μόνο απενεργοποιημένο οι πίνακες στην βάση δεδομένων θα διατηρηθούν."
375
-
376
- #: counter-options.php:807
377
- #@ cpd
378
- msgid "Here you can delete the tables and disable \"Count per Day\"."
379
- msgstr "Εδώ μπορείτε να διαγράψετε τους πίνακες και να απενεργοποιήσετε το \"Count per Day\"."
380
-
381
- #: counter-options.php:810
382
- #@ cpd
383
- msgid "WARNING"
384
- msgstr "ΠΡΟΣΟΧΗ"
385
-
386
- #: counter-options.php:811
387
- #@ cpd
388
- msgid "These tables (with ALL counter data) will be deleted."
389
- msgstr "Αυτοί οι πίνακες (μαζί με ΌΛΑ τα δεδομένα των μετρήσεων) θα διαγραφούν."
390
-
391
- #: counter-options.php:813
392
- #@ cpd
393
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
- msgstr "Άμα το \"Count per Day\" επανεγκατασταθεί, ο μετρητής θα ξεκινήσει από το 0."
395
-
396
- #: counter-options.php:793
397
- #: counter-options.php:816
398
- #@ cpd
399
- msgid "Yes"
400
- msgstr "Ναι"
401
-
402
- #: counter-options.php:817
403
- #@ cpd
404
- msgid "You are sure to disable Count per Day and delete all data?"
405
- msgstr "Θέλετε σίγουρα να απενεργοποιήσετε το \"Count per Day\" και να σβήσετε όλα τα δεδομένα;"
406
-
407
- #: counter-options.php:721
408
- #@ cpd
409
- msgid "Support"
410
- msgstr "Υποστήριξη"
411
-
412
- #: counter-core.php:697
413
- #, php-format
414
- #@ cpd
415
- msgid "Time for Count per Day: <code>%s</code>."
416
- msgstr "Χρόνος για το Count per Day: <code>%s</code>."
417
-
418
- #: counter-core.php:698
419
- #@ cpd
420
- msgid "Bug? Problem? Question? Hint? Praise?"
421
- msgstr "Λάθη; Προβλήματα; Ερωτήσεις; Προτάσεις; Έπαινοι;"
422
-
423
- #: counter-core.php:699
424
- #, php-format
425
- #@ cpd
426
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
- msgstr "Γράψτε ένα σχόλιο στη <a href=\"%s\">σελίδα του πρόσθετου</a>."
428
-
429
- #: counter.php:155
430
- #: counter.php:1197
431
- #@ cpd
432
- msgid "Total reads"
433
- msgstr "Συνολικές αναγνώσεις"
434
-
435
- #: counter.php:156
436
- #: counter.php:1198
437
- #@ cpd
438
- msgid "Reads today"
439
- msgstr "Αναγνώσεις σήμερα"
440
-
441
- #: counter.php:157
442
- #: counter.php:1199
443
- #@ cpd
444
- msgid "Reads yesterday"
445
- msgstr "Αναγνώσεις χτες"
446
-
447
- #: counter-core.php:731
448
- #: counter.php:160
449
- #: counter.php:1010
450
- #: counter.php:1202
451
- #@ cpd
452
- msgid "Total visitors"
453
- msgstr "Συνολικοί επισκέπτες"
454
-
455
- #: counter.php:161
456
- #: counter.php:1208
457
- #@ cpd
458
- msgid "Visitors currently online"
459
- msgstr "Επισκέπτες αυτή την στιγμή"
460
-
461
- #: counter.php:162
462
- #: counter.php:1203
463
- #@ cpd
464
- msgid "Visitors today"
465
- msgstr "Επισκέπτες σήμερα"
466
-
467
- #: counter.php:163
468
- #: counter.php:1204
469
- #@ cpd
470
- msgid "Visitors yesterday"
471
- msgstr "Επισκέπτες χτες"
472
-
473
- #: counter.php:164
474
- #: counter.php:1205
475
- #@ cpd
476
- msgid "Visitors last week"
477
- msgstr "Επισκέπτες την προηγούμενη εβδομάδα"
478
-
479
- #: counter-core.php:737
480
- #: counter.php:166
481
- #: counter.php:263
482
- #: counter.php:1012
483
- #: counter.php:1207
484
- #: userperspan.php:34
485
- #@ cpd
486
- msgid "Visitors per day"
487
- msgstr "Επισκέπτες ανά ημέρα"
488
-
489
- #: counter.php:167
490
- #: counter.php:825
491
- #: counter.php:1209
492
- #@ cpd
493
- msgid "Counter starts on"
494
- msgstr "Ο μετρητής αρχίζει από"
495
-
496
- #: counter.php:788
497
- #: notes.php:42
498
- #: notes.php:76
499
- #@ cpd
500
- msgid "Notes"
501
- msgstr "Σημειώσεις"
502
-
503
- #: counter.php:672
504
- #, php-format
505
- #@ cpd
506
- msgid "The %s most visited posts in last %s days:"
507
- msgstr "Τα %s πιο αναγνωσμένα άρθρα τις τελευταίες %s ημέρες:"
508
-
509
- #: counter.php:786
510
- #@ default
511
- msgid "Show"
512
- msgstr "Εμφάνιση"
513
-
514
- #: counter.php:821
515
- #@ cpd
516
- msgid "Other"
517
- msgstr "Άλλα"
518
-
519
- #: counter.php:976
520
- #@ default
521
- msgid "Edit Post"
522
- msgstr "Επεξεργασία Άρθρου"
523
-
524
- #: counter.php:991
525
- #: massbots.php:52
526
- #: userperspan.php:63
527
- #@ default
528
- msgid "Front page displays"
529
- msgstr "Η πρώτη σελίδα εμφανίζει"
530
-
531
- #: counter-core.php:583
532
- #: counter-options.php:343
533
- #: counter-options.php:560
534
- #@ default
535
- msgid "Settings"
536
- msgstr "Ρυθμίσεις"
537
-
538
- # tjekkes
539
- #: counter-core.php:647
540
- #: counter-options.php:393
541
- #: counter.php:159
542
- #: counter.php:875
543
- #@ cpd
544
- msgid "Reads"
545
- msgstr "Αναγνώσεις"
546
-
547
- #: counter.php:1196
548
- #@ cpd
549
- msgid "This post"
550
- msgstr "Αυτό το άρθρο"
551
-
552
- #: counter.php:262
553
- #@ cpd
554
- msgid "Reads per day"
555
- msgstr "Αναγνώσεις ανά ημέρα"
556
-
557
- #: counter-core.php:733
558
- #: counter.php:1206
559
- #@ cpd
560
- msgid "Visitors per month"
561
- msgstr "Επισκέπτες ανά μήνα"
562
-
563
- #: counter-core.php:736
564
- #@ cpd
565
- msgid "Latest Counts"
566
- msgstr "Τελευταίες μετρήσεις"
567
-
568
- #: counter-core.php:738
569
- #@ default
570
- msgid "Plugin"
571
- msgstr "Πρόσθετο"
572
-
573
- #: counter-core.php:746
574
- #@ cpd
575
- msgid "Reads per Country"
576
- msgstr "Αναγνώσεις ανά χώρα"
577
-
578
- #: counter-core.php:747
579
- #@ cpd
580
- msgid "Visitors per Country"
581
- msgstr "Επισκέψεις ανά χώρα"
582
-
583
- #: counter-core.php:762
584
- #: counter.php:1124
585
- #@ cpd
586
- msgid "Statistics"
587
- msgstr "Στατιστικά"
588
-
589
- #: counter.php:353
590
- #: counter.php:1041
591
- #@ cpd
592
- msgid "Map"
593
- msgstr "Χάρτης"
594
-
595
- #: notes.php:77
596
- #@ default
597
- msgid "Action"
598
- msgstr "Δράση"
599
-
600
- #: notes.php:82
601
- #@ cpd
602
- msgid "add"
603
- msgstr "προσθήκη"
604
-
605
- #: notes.php:98
606
- #@ cpd
607
- msgid "save"
608
- msgstr "αποθήκευση"
609
-
610
- #: notes.php:99
611
- #@ cpd
612
- msgid "delete"
613
- msgstr "διαγραφή"
614
-
615
- #: notes.php:110
616
- #@ cpd
617
- msgid "edit"
618
- msgstr "επεξεργασία"
619
-
620
- #: userperspan.php:38
621
- #@ cpd
622
- msgid "Start"
623
- msgstr "Έναρξη"
624
-
625
- #: userperspan.php:40
626
- #@ cpd
627
- msgid "End"
628
- msgstr "Λήξη"
629
-
630
- #: userperspan.php:42
631
- #@ cpd
632
- msgid "PostID"
633
- msgstr "Κωδικός άρθρου (PostID)"
634
-
635
- #: userperspan.php:50
636
- #@ cpd
637
- msgid "no data found"
638
- msgstr "δεν βρέθηκαν δεδομένα"
639
-
640
- #: geoip/geoip.php:93
641
- #@ cpd
642
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
- msgstr "Συγνώμη αλλά αναγκαίες λειτουργίες (zlib) δεν βρέθηκαν ή δεν έχουν ενεργοποιηθεί στο php.ini."
644
-
645
- #: geoip/geoip.php:117
646
- #@ cpd
647
- msgid "New GeoIP database installed."
648
- msgstr "Νέα Γαίο-ΙΡ βάση δεδομένων εγκαταστάθηκε."
649
-
650
- #: geoip/geoip.php:119
651
- #@ cpd
652
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
- msgstr "Συγνώμη αλλά συναίβει λάθος. Δοκιμάστε ξανά ή ελέγξτε άμα τα δικαιώματα του φακέλου \"geoip\" είναι 777."
654
-
655
- #: counter-options.php:737
656
- #@ cpd
657
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
- msgstr "Μπορείτε να ενημερώσετε τα δεδομένα των χωρών για όλες τις καταχωρήσεις στην βάση δεδομένων με το να τις διασταυρώσετε με τις διευθύνσεις ΙΡ της βάσης δεδομένων της Γαίο-ΙΡ. Αυτό παίρνει πολύ ώρα!"
659
-
660
- #: counter-options.php:352
661
- #@ cpd
662
- msgid "Counter"
663
- msgstr "Μετρητής"
664
-
665
- #: counter-options.php:390
666
- #@ cpd
667
- msgid "Clients and referrers"
668
- msgstr "Πελάτες και εισερχόμενοι σύνδεσμοι (referrers)"
669
-
670
- #: counter-options.php:393
671
- #@ cpd
672
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
- msgstr "Αποθήκευση και απεικόνιση πελατών και εισερχόμενων συνδέσμων.<br />Απαιτεί μεγάλο χώρο στην βάση δεδομένων αλλά παρέχει ακριβέστερες πληροφορίες για τους επισκέπτες σας."
674
-
675
- #: counter-options.php:476
676
- #@ cpd
677
- msgid "Local URLs"
678
- msgstr "Τοπικές ιστοδιευθύνσεις"
679
-
680
- #: counter-options.php:477
681
- #@ cpd
682
- msgid "Show local referrers too."
683
- msgstr "Απεικόνιση και των τοπικών εισερχόμενων συνδέσμων (referrers)."
684
-
685
- #: counter-options.php:484
686
- #@ default
687
- msgid "Posts"
688
- msgstr "Άρθρα"
689
-
690
- #: counter-options.php:484
691
- #@ default
692
- msgid "Pages"
693
- msgstr "Σελίδες"
694
-
695
- #: counter.php:158
696
- #: counter.php:1200
697
- #@ cpd
698
- msgid "Reads last week"
699
- msgstr "Αναγνώσεις προηγούμενης εβδομάδας"
700
-
701
- #: counter.php:985
702
- #@ default
703
- msgid "Category"
704
- msgstr "Κατηγορία"
705
-
706
- #: counter.php:988
707
- #@ default
708
- msgid "Tag"
709
- msgstr "Πινακίδιο"
710
-
711
- #: counter-core.php:700
712
- #@ default
713
- msgid "License"
714
- msgstr "Άδεια"
715
-
716
- #: counter-core.php:734
717
- #: counter.php:1201
718
- #@ cpd
719
- msgid "Reads per month"
720
- msgstr "Αναγνώσεις ανά μήνα"
721
-
722
- #: counter-core.php:742
723
- #@ cpd
724
- msgid "Referrer"
725
- msgstr "Εισερχόμενοι σύνδεσμοι(referrers)"
726
-
727
- #: counter.php:1220
728
- #@ default
729
- msgid "Title"
730
- msgstr "Τίτλος"
731
-
732
- #: counter-options.php:468
733
- #@ cpd
734
- msgid "Referrers - Entries"
735
- msgstr "Εισερχόμενοι σύνδεσμοι - Καταχωρήσεις"
736
-
737
- #: counter-options.php:469
738
- #@ cpd
739
- msgid "How many referrers do you want to see on dashboard page?"
740
- msgstr "Πόσοι εισερχόμενοι σύνδεσμοι επιθυμείτε να εμφανίζονται στην κεντρική σελίδα;"
741
-
742
- #: counter-options.php:472
743
- #@ cpd
744
- msgid "Referrers - Days"
745
- msgstr "Εισερχόμενοι σύνδεσμοι - Ημέρες"
746
-
747
- #: counter.php:845
748
- #, php-format
749
- #@ cpd
750
- msgid "The %s referrers in last %s days:"
751
- msgstr "Οι πρόσφατοι %s εισερχόμενοι σύνδεσμοι των τελευταίων %s ημερών:"
752
-
753
- #: counter-core.php:732
754
- #@ cpd
755
- msgid "Visitors online"
756
- msgstr "Επισκέπτες σε σύνδεση"
757
-
758
- #: counter-core.php:194
759
- #, php-format
760
- #@ cpd
761
- msgid "\"Count per Day\" updated to version %s."
762
- msgstr ""
763
-
764
- #: counter-core.php:925
765
- #@ cpd
766
- msgid "Backup failed! Cannot open file"
767
- msgstr ""
768
-
769
- #: counter-core.php:948
770
- #, php-format
771
- #@ cpd
772
- msgid "Backup of %s entries in progress. Every point complies %s entries."
773
- msgstr ""
774
-
775
- #: counter-core.php:1035
776
- #@ cpd
777
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
- msgstr ""
779
-
780
- #: counter-core.php:1041
781
- #, php-format
782
- #@ cpd
783
- msgid "Backup of counter table saved in %s."
784
- msgstr ""
785
-
786
- #: counter-core.php:1043
787
- #, php-format
788
- #@ cpd
789
- msgid "Backup of counter options and collection saved in %s."
790
- msgstr ""
791
-
792
- #: counter-options.php:172
793
- #@ cpd
794
- msgid "Collection in progress..."
795
- msgstr ""
796
-
797
- #: counter-options.php:242
798
- #@ cpd
799
- msgid "Get Visitors per Post..."
800
- msgstr ""
801
-
802
- #: counter-options.php:263
803
- #@ cpd
804
- msgid "Delete old data..."
805
- msgstr ""
806
-
807
- #: counter-options.php:287
808
- #, php-format
809
- #@ cpd
810
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
- msgstr ""
812
-
813
- #: counter-options.php:296
814
- #@ cpd
815
- msgid "Installation of \"Count per Day\" checked"
816
- msgstr ""
817
-
818
- #: counter-options.php:344
819
- #: counter-options.php:561
820
- #@ default
821
- msgid "Tools"
822
- msgstr ""
823
-
824
- #: counter-options.php:395
825
- #@ cpd
826
- msgid "Save URL only, no query string."
827
- msgstr ""
828
-
829
- #: counter-options.php:419
830
- #@ cpd
831
- msgid "Who can see it"
832
- msgstr ""
833
-
834
- #: counter-options.php:428
835
- #@ cpd
836
- msgid "custom"
837
- msgstr ""
838
-
839
- #: counter-options.php:430
840
- #@ cpd
841
- msgid "and higher are allowed to see the statistics page."
842
- msgstr ""
843
-
844
- #: counter-options.php:432
845
- #, php-format
846
- #@ cpd
847
- msgid "Set the %s capability %s a user need:"
848
- msgstr ""
849
-
850
- #: counter-options.php:519
851
- #@ cpd
852
- msgid "Stylesheet"
853
- msgstr ""
854
-
855
- #: counter-options.php:522
856
- #@ cpd
857
- msgid "NO Stylesheet in Frontend"
858
- msgstr ""
859
-
860
- #: counter-options.php:523
861
- #@ cpd
862
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
- msgstr ""
864
-
865
- #: counter-options.php:530
866
- #: counter-options.php:634
867
- #@ cpd
868
- msgid "Backup"
869
- msgstr ""
870
-
871
- #: counter-options.php:533
872
- #@ cpd
873
- msgid "Entries per pass"
874
- msgstr ""
875
-
876
- #: counter-options.php:536
877
- #@ cpd
878
- msgid "How many entries should be saved per pass? Default: 10000"
879
- msgstr ""
880
-
881
- #: counter-options.php:541
882
- #@ cpd
883
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
- msgstr ""
885
-
886
- #: counter-options.php:638
887
- #, php-format
888
- #@ cpd
889
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
- msgstr ""
891
-
892
- #: counter-options.php:642
893
- #@ cpd
894
- msgid "Backup the database"
895
- msgstr ""
896
-
897
- #: counter-options.php:681
898
- #: counter-options.php:713
899
- #@ cpd
900
- msgid "Collect old data"
901
- msgstr ""
902
-
903
- #: counter-options.php:686
904
- #, php-format
905
- #@ cpd
906
- msgid "Current size of your counter table %s is %s."
907
- msgstr ""
908
-
909
- #: counter-options.php:688
910
- #@ cpd
911
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
- msgstr ""
913
-
914
- #: counter-options.php:693
915
- #, php-format
916
- #@ cpd
917
- msgid "Currently your collection contains data until %s."
918
- msgstr ""
919
-
920
- #: counter-options.php:697
921
- #@ cpd
922
- msgid "Normally new data will be added to the collection."
923
- msgstr ""
924
-
925
- #: counter-options.php:703
926
- #@ cpd
927
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
- msgstr ""
929
-
930
- #: counter-options.php:704
931
- #, php-format
932
- #@ cpd
933
- msgid "All collected data until %s will deleted."
934
- msgstr ""
935
-
936
- #: counter-options.php:709
937
- #, php-format
938
- #@ cpd
939
- msgid "Keep entries of last %s full months + current month in counter table."
940
- msgstr ""
941
-
942
- #: counter-options.php:768
943
- #@ cpd
944
- msgid "ReActivation"
945
- msgstr ""
946
-
947
- #: counter-options.php:771
948
- #@ cpd
949
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
- msgstr ""
951
-
952
- #: counter-options.php:776
953
- #@ cpd
954
- msgid "ReActivate the plugin"
955
- msgstr ""
956
-
957
- #: counter.php:165
958
- #: counter.php:899
959
- #@ cpd
960
- msgid "Visitors"
961
- msgstr ""
962
-
963
- #: counter.php:168
964
- #: counter.php:169
965
- #@ cpd
966
- msgid "Most visited day"
967
- msgstr ""
968
-
969
- #: counter.php:1239
970
- #@ cpd
971
- msgid "drag and drop to sort"
972
- msgstr ""
973
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day Development version\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Polemos <temp2417@gmail.com>\n"
8
+ "Language-Team: Elliniki Grothia <ellgrothia@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Greek\n"
14
+ "X-Poedit-Country: GREECE\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:50
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Οι ρυθμίσεις σας ενημερώθηκαν"
26
+
27
+ #: counter-options.php:61
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
+ msgstr "Οι χώρες ενημερώθηκαν. <b>%s</b> καταχωρήσεις στις %s δεν έχουν αντιστοιχηθεί με χώρες."
32
+
33
+ #: counter-options.php:64
34
+ #@ cpd
35
+ msgid "update next"
36
+ msgstr "ενημέρωση επόμενων"
37
+
38
+ #: counter-options.php:104
39
+ #, php-format
40
+ #@ cpd
41
+ msgid "Mass Bots cleaned. %s counts deleted."
42
+ msgstr "Καθαρίστηκαν μαζικά bot. %s μετρήσεις σβήστηκαν."
43
+
44
+ #: counter-options.php:114
45
+ #, php-format
46
+ #@ cpd
47
+ msgid "Database cleaned. %s rows deleted."
48
+ msgstr "Καθαρίστικε η βάση δεδομένων. %s γραμμές σβήστηκαν."
49
+
50
+ #: counter-options.php:124
51
+ #@ cpd
52
+ msgid "Counter reseted."
53
+ msgstr "Μηδενίστηκε ο μετρητής."
54
+
55
+ #: counter-options.php:129
56
+ #: counter-options.php:817
57
+ #@ cpd
58
+ msgid "UNINSTALL Count per Day"
59
+ msgstr "Απεγκατάσταση του Count per Day"
60
+
61
+ #: counter-options.php:134
62
+ #: counter-options.php:135
63
+ #: counter-options.php:136
64
+ #, php-format
65
+ #@ cpd
66
+ msgid "Table %s deleted"
67
+ msgstr "Πίνακες %s διαγράφηκαν"
68
+
69
+ #: counter-options.php:137
70
+ #@ cpd
71
+ msgid "Options deleted"
72
+ msgstr "Οι ρυθμίσεις διαγράφηκαν"
73
+
74
+ #: counter-options.php:318
75
+ #: counter-options.php:803
76
+ #@ cpd
77
+ msgid "Uninstall"
78
+ msgstr "Απεγκατάσταση"
79
+
80
+ #: counter-options.php:319
81
+ #@ cpd
82
+ msgid "Click here"
83
+ msgstr "Κάντε κλικ εδώ"
84
+
85
+ #: counter-options.php:319
86
+ #@ cpd
87
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
+ msgstr "για να ολοκληρώσετε την απεγκατάσταση και να απενεργοποιήσετε το \"Count per Day\"."
89
+
90
+ #: counter-options.php:356
91
+ #@ cpd
92
+ msgid "Online time"
93
+ msgstr "Χρόνος σε σύνδεση"
94
+
95
+ #: counter-options.php:357
96
+ #@ cpd
97
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
+ msgstr "Δευτερόλεπτα για τον μετρητή συνδεδεμένων χρηστών. Χρησιμοποιείται για τους \"Visitors online\" στην κεντρική σελίδα."
99
+
100
+ #: counter-options.php:360
101
+ #@ cpd
102
+ msgid "Logged on Users"
103
+ msgstr "Εγγεγραμμένοι-Συνδεδεμένοι Χρήστες"
104
+
105
+ #: counter-options.php:362
106
+ #@ cpd
107
+ msgid "count too"
108
+ msgstr "μετρήστε επίσης"
109
+
110
+ #: counter-options.php:363
111
+ #@ cpd
112
+ msgid "until User Level"
113
+ msgstr "μέχρι το Επίπεδο Χρήστη"
114
+
115
+ #: counter-options.php:374
116
+ #@ cpd
117
+ msgid "Auto counter"
118
+ msgstr "Αυτόματος μετρητής"
119
+
120
+ #: counter-options.php:375
121
+ #@ cpd
122
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
123
+ msgstr "Μετρά αυτόματα μονά-άρθρα και σελίδες, δεν χρειάζεται αλλαγή στο πρότυπο (template)."
124
+
125
+ #: counter-options.php:378
126
+ #@ cpd
127
+ msgid "Bots to ignore"
128
+ msgstr "Bots που θα αγνοηθούν"
129
+
130
+ #: counter-options.php:382
131
+ #@ cpd
132
+ msgid "Anonymous IP"
133
+ msgstr "Ανώνυμος IP"
134
+
135
+ #: counter-options.php:386
136
+ #@ cpd
137
+ msgid "Cache"
138
+ msgstr "Αποθυκευμένη μνήμη (Cache)"
139
+
140
+ #: counter-options.php:387
141
+ #@ cpd
142
+ msgid "I use a cache plugin. Count these visits with ajax."
143
+ msgstr "Χρησιμοποιώ ένα cache-πρόσθετο. Μετρήστε αυτές τις επισκέψεις με ajax."
144
+
145
+ #: counter-options.php:556
146
+ #@ cpd
147
+ msgid "Update options"
148
+ msgstr "Ενημέρωση ρυθμίσεων"
149
+
150
+ #: counter-options.php:403
151
+ #@ default
152
+ msgid "Dashboard"
153
+ msgstr "Κεντρικός πίνακας"
154
+
155
+ #: counter-core.php:735
156
+ #: counter-options.php:438
157
+ #@ cpd
158
+ msgid "Visitors per post"
159
+ msgstr "Επισκέπτες ανά άρθρο"
160
+
161
+ #: counter-options.php:439
162
+ #: counter-options.php:443
163
+ #@ cpd
164
+ msgid "How many posts do you want to see on dashboard page?"
165
+ msgstr "Πόσα άρθρα επιθυμείτε να βλέπετε στη κεντρική σελίδα σας;"
166
+
167
+ #: counter-options.php:442
168
+ #@ cpd
169
+ msgid "Latest Counts - Posts"
170
+ msgstr "Τελευταίες Μετρήσεις - Άρθρα"
171
+
172
+ #: counter-options.php:446
173
+ #@ cpd
174
+ msgid "Latest Counts - Days"
175
+ msgstr "Τελευταίες Μετρήσεις - Ημέρες"
176
+
177
+ #: counter-options.php:447
178
+ #: counter-options.php:451
179
+ #: counter-options.php:473
180
+ #@ cpd
181
+ msgid "How many days do you want look back?"
182
+ msgstr "Μέχρι πόσες ημέρες επιθυμείτε να βλέπετε στο παρελθόν;"
183
+
184
+ #: counter-options.php:450
185
+ #@ cpd
186
+ msgid "Chart - Days"
187
+ msgstr "Διάγραμμα - Ημερών"
188
+
189
+ #: counter-options.php:454
190
+ #@ cpd
191
+ msgid "Chart - Height"
192
+ msgstr "Διάγραμμα - Ύψος"
193
+
194
+ #: counter-options.php:455
195
+ #@ cpd
196
+ msgid "Height of the biggest bar"
197
+ msgstr "Ύψος της μεγαλύτερης μπάρας"
198
+
199
+ #: counter-options.php:459
200
+ #@ cpd
201
+ msgid "Countries"
202
+ msgstr "Χώρες"
203
+
204
+ #: counter-options.php:460
205
+ #@ cpd
206
+ msgid "How many countries do you want to see on dashboard page?"
207
+ msgstr "Πόσες χώρες επιθυμείτε να βλέπετε στην κεντρική σελίδα;"
208
+
209
+ #: counter-core.php:741
210
+ #: counter-options.php:464
211
+ #@ cpd
212
+ msgid "Browsers"
213
+ msgstr "Περιηγητές"
214
+
215
+ #: counter-options.php:465
216
+ #@ cpd
217
+ msgid "Substring of the user agent, separated by comma"
218
+ msgstr "Υπορουτίνα του οδηγού χρήστη, χωρισμένες με κόμμα"
219
+
220
+ #: counter-options.php:487
221
+ #@ cpd
222
+ msgid "Show in lists"
223
+ msgstr "Εμφάνιση στις λίστες"
224
+
225
+ #: counter-options.php:488
226
+ #@ cpd
227
+ msgid "Show \"Reads per Post\" in a new column in post management views."
228
+ msgstr "Εμφάνιση \"Reads per Post\" σε νέα στήλη στις απεικονίσεις των άρθρων."
229
+
230
+ #: counter-options.php:495
231
+ #@ cpd
232
+ msgid "Start Values"
233
+ msgstr "Αρχικές Τιμές"
234
+
235
+ #: counter-options.php:499
236
+ #@ cpd
237
+ msgid "Here you can change the date of first count and add a start count."
238
+ msgstr "Εδώ μπορείτε να αλλάξετε την ημερομηνία της πρώτης μέτρησης και να προσθέσετε μια νέα μέτρηση"
239
+
240
+ #: counter-options.php:503
241
+ #@ cpd
242
+ msgid "Start date"
243
+ msgstr "Αρχική ημερομηνία"
244
+
245
+ #: counter-options.php:504
246
+ #@ cpd
247
+ msgid "Your old Counter starts at?"
248
+ msgstr "Πότε ξεκινά ο παλαιότερος σας Μετρητής;"
249
+
250
+ #: counter-options.php:507
251
+ #: counter-options.php:511
252
+ #@ cpd
253
+ msgid "Start count"
254
+ msgstr "Έναρξη μέτρησης"
255
+
256
+ #: counter-options.php:508
257
+ #@ cpd
258
+ msgid "Add this value to \"Total visitors\"."
259
+ msgstr "Προσθήκη αυτής της τιμής στους \"Total visitors\"."
260
+
261
+ #: counter-options.php:512
262
+ #@ cpd
263
+ msgid "Add this value to \"Total reads\"."
264
+ msgstr "Προσθήκη αυτής της τιμής στους \"Total reads\"."
265
+
266
+ #: counter-options.php:549
267
+ #@ cpd
268
+ msgid "Debug mode"
269
+ msgstr "Λειτουργία εξακρίβωσης λαθών (Debug)"
270
+
271
+ #: counter-options.php:551
272
+ #@ cpd
273
+ msgid "Show debug informations at the bottom of all pages."
274
+ msgstr "Εμφάνιση πληροφοριών (debug) στο κάτω μέρος όλων των σελίδων."
275
+
276
+ #: counter-options.php:734
277
+ #@ cpd
278
+ msgid "GeoIP - Countries"
279
+ msgstr "Γαίο-ΙΡ - Χώρες"
280
+
281
+ #: counter-options.php:743
282
+ #@ cpd
283
+ msgid "Update old counter data"
284
+ msgstr "Ενημέρωση παλαιότερων δεδομένων μετρητή"
285
+
286
+ #: counter-options.php:755
287
+ #@ cpd
288
+ msgid "Update GeoIP database"
289
+ msgstr "Ενημέρωση Γαίο-ΙΡ βάσης δεδομένων"
290
+
291
+ #: counter-options.php:750
292
+ #@ cpd
293
+ msgid "Download a new version of GeoIP.dat file."
294
+ msgstr "Κατεβάστε νέα έκδοση του αρχείου GeoIP.dat."
295
+
296
+ #: counter-options.php:760
297
+ #@ cpd
298
+ msgid "More informations about GeoIP"
299
+ msgstr "Περισσότερες πληροφορίες για το Γαίο-ΙΡ"
300
+
301
+ #: counter-options.php:575
302
+ #: massbots.php:35
303
+ #@ cpd
304
+ msgid "Mass Bots"
305
+ msgstr "Μαζικά bots"
306
+
307
+ #: counter-options.php:579
308
+ #, php-format
309
+ #@ cpd
310
+ msgid "Show all IPs with more than %s page views per day"
311
+ msgstr "Εμφάνιση όλων των ΙΡ με περισσότερες από %s σελίδες ανά ημέρα"
312
+
313
+ #: counter-options.php:580
314
+ #: notes.php:71
315
+ #: userperspan.php:44
316
+ #@ cpd
317
+ msgid "show"
318
+ msgstr "εμφάνιση"
319
+
320
+ #: counter-options.php:588
321
+ #@ cpd
322
+ msgid "IP"
323
+ msgstr "IP"
324
+
325
+ #: counter-options.php:589
326
+ #: notes.php:75
327
+ #@ cpd
328
+ #@ default
329
+ msgid "Date"
330
+ msgstr "Ημερομηνία"
331
+
332
+ #: counter-options.php:590
333
+ #@ cpd
334
+ msgid "Client"
335
+ msgstr "Πελάτης"
336
+
337
+ #: counter-options.php:591
338
+ #@ cpd
339
+ msgid "Views"
340
+ msgstr "Αναγνώσεις"
341
+
342
+ #: counter-options.php:606
343
+ #: counter-options.php:622
344
+ #, php-format
345
+ #@ cpd
346
+ msgid "Delete these %s counts"
347
+ msgstr "Διαγράψτε αυτές τις %s μετρήσεις"
348
+
349
+ #: counter-options.php:663
350
+ #: counter-options.php:672
351
+ #@ cpd
352
+ msgid "Clean the database"
353
+ msgstr "Εκκαθάριση βάσης δεδομένων"
354
+
355
+ #: counter-options.php:666
356
+ #@ cpd
357
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
358
+ msgstr "Μπορείτε να καθαρίσετε το πίνακα μετρήσεων με τη διαγραφή των \"spam data\".<br />Άμα προσθέσετε νέα bots πάνω στα παλαιά \"spam data\" θα κρατηθούν στην βάση δεδομένων.<br />Εδώ μπορείτε να τρέξετε το φίλτρο bot ξανά και να σβήσετε τις επισκέψεις των bot."
359
+
360
+ #: counter-options.php:784
361
+ #: counter-options.php:794
362
+ #@ cpd
363
+ msgid "Reset the counter"
364
+ msgstr "΄Μηδενισμός μετρητή"
365
+
366
+ #: counter-options.php:787
367
+ #@ cpd
368
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
369
+ msgstr "Μπορείτε να μηδενίσετε τον μετρητή με την εκκαθάριση του πίνακα. ΟΛΑ ΣΕ 0!<br />Κάντε εφεδρικά αντίγραφα άμα χρειάζεστε τα τωρινά δεδομένα!"
370
+
371
+ #: counter-options.php:806
372
+ #@ cpd
373
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
374
+ msgstr "Άμα το \"Count per Day\" είναι μόνο απενεργοποιημένο οι πίνακες στην βάση δεδομένων θα διατηρηθούν."
375
+
376
+ #: counter-options.php:807
377
+ #@ cpd
378
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
379
+ msgstr "Εδώ μπορείτε να διαγράψετε τους πίνακες και να απενεργοποιήσετε το \"Count per Day\"."
380
+
381
+ #: counter-options.php:810
382
+ #@ cpd
383
+ msgid "WARNING"
384
+ msgstr "ΠΡΟΣΟΧΗ"
385
+
386
+ #: counter-options.php:811
387
+ #@ cpd
388
+ msgid "These tables (with ALL counter data) will be deleted."
389
+ msgstr "Αυτοί οι πίνακες (μαζί με ΌΛΑ τα δεδομένα των μετρήσεων) θα διαγραφούν."
390
+
391
+ #: counter-options.php:813
392
+ #@ cpd
393
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
394
+ msgstr "Άμα το \"Count per Day\" επανεγκατασταθεί, ο μετρητής θα ξεκινήσει από το 0."
395
+
396
+ #: counter-options.php:793
397
+ #: counter-options.php:816
398
+ #@ cpd
399
+ msgid "Yes"
400
+ msgstr "Ναι"
401
+
402
+ #: counter-options.php:817
403
+ #@ cpd
404
+ msgid "You are sure to disable Count per Day and delete all data?"
405
+ msgstr "Θέλετε σίγουρα να απενεργοποιήσετε το \"Count per Day\" και να σβήσετε όλα τα δεδομένα;"
406
+
407
+ #: counter-options.php:721
408
+ #@ cpd
409
+ msgid "Support"
410
+ msgstr "Υποστήριξη"
411
+
412
+ #: counter-core.php:697
413
+ #, php-format
414
+ #@ cpd
415
+ msgid "Time for Count per Day: <code>%s</code>."
416
+ msgstr "Χρόνος για το Count per Day: <code>%s</code>."
417
+
418
+ #: counter-core.php:698
419
+ #@ cpd
420
+ msgid "Bug? Problem? Question? Hint? Praise?"
421
+ msgstr "Λάθη; Προβλήματα; Ερωτήσεις; Προτάσεις; Έπαινοι;"
422
+
423
+ #: counter-core.php:699
424
+ #, php-format
425
+ #@ cpd
426
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
427
+ msgstr "Γράψτε ένα σχόλιο στη <a href=\"%s\">σελίδα του πρόσθετου</a>."
428
+
429
+ #: counter.php:155
430
+ #: counter.php:1197
431
+ #@ cpd
432
+ msgid "Total reads"
433
+ msgstr "Συνολικές αναγνώσεις"
434
+
435
+ #: counter.php:156
436
+ #: counter.php:1198
437
+ #@ cpd
438
+ msgid "Reads today"
439
+ msgstr "Αναγνώσεις σήμερα"
440
+
441
+ #: counter.php:157
442
+ #: counter.php:1199
443
+ #@ cpd
444
+ msgid "Reads yesterday"
445
+ msgstr "Αναγνώσεις χτες"
446
+
447
+ #: counter-core.php:731
448
+ #: counter.php:160
449
+ #: counter.php:1010
450
+ #: counter.php:1202
451
+ #@ cpd
452
+ msgid "Total visitors"
453
+ msgstr "Συνολικοί επισκέπτες"
454
+
455
+ #: counter.php:161
456
+ #: counter.php:1208
457
+ #@ cpd
458
+ msgid "Visitors currently online"
459
+ msgstr "Επισκέπτες αυτή την στιγμή"
460
+
461
+ #: counter.php:162
462
+ #: counter.php:1203
463
+ #@ cpd
464
+ msgid "Visitors today"
465
+ msgstr "Επισκέπτες σήμερα"
466
+
467
+ #: counter.php:163
468
+ #: counter.php:1204
469
+ #@ cpd
470
+ msgid "Visitors yesterday"
471
+ msgstr "Επισκέπτες χτες"
472
+
473
+ #: counter.php:164
474
+ #: counter.php:1205
475
+ #@ cpd
476
+ msgid "Visitors last week"
477
+ msgstr "Επισκέπτες την προηγούμενη εβδομάδα"
478
+
479
+ #: counter-core.php:737
480
+ #: counter.php:166
481
+ #: counter.php:263
482
+ #: counter.php:1012
483
+ #: counter.php:1207
484
+ #: userperspan.php:34
485
+ #@ cpd
486
+ msgid "Visitors per day"
487
+ msgstr "Επισκέπτες ανά ημέρα"
488
+
489
+ #: counter.php:167
490
+ #: counter.php:825
491
+ #: counter.php:1209
492
+ #@ cpd
493
+ msgid "Counter starts on"
494
+ msgstr "Ο μετρητής αρχίζει από"
495
+
496
+ #: counter.php:788
497
+ #: notes.php:42
498
+ #: notes.php:76
499
+ #@ cpd
500
+ msgid "Notes"
501
+ msgstr "Σημειώσεις"
502
+
503
+ #: counter.php:672
504
+ #, php-format
505
+ #@ cpd
506
+ msgid "The %s most visited posts in last %s days:"
507
+ msgstr "Τα %s πιο αναγνωσμένα άρθρα τις τελευταίες %s ημέρες:"
508
+
509
+ #: counter.php:786
510
+ #@ default
511
+ msgid "Show"
512
+ msgstr "Εμφάνιση"
513
+
514
+ #: counter.php:821
515
+ #@ cpd
516
+ msgid "Other"
517
+ msgstr "Άλλα"
518
+
519
+ #: counter.php:976
520
+ #@ default
521
+ msgid "Edit Post"
522
+ msgstr "Επεξεργασία Άρθρου"
523
+
524
+ #: counter.php:991
525
+ #: massbots.php:52
526
+ #: userperspan.php:63
527
+ #@ default
528
+ msgid "Front page displays"
529
+ msgstr "Η πρώτη σελίδα εμφανίζει"
530
+
531
+ #: counter-core.php:583
532
+ #: counter-options.php:343
533
+ #: counter-options.php:560
534
+ #@ default
535
+ msgid "Settings"
536
+ msgstr "Ρυθμίσεις"
537
+
538
+ # tjekkes
539
+ #: counter-core.php:647
540
+ #: counter-options.php:393
541
+ #: counter.php:159
542
+ #: counter.php:875
543
+ #@ cpd
544
+ msgid "Reads"
545
+ msgstr "Αναγνώσεις"
546
+
547
+ #: counter.php:1196
548
+ #@ cpd
549
+ msgid "This post"
550
+ msgstr "Αυτό το άρθρο"
551
+
552
+ #: counter.php:262
553
+ #@ cpd
554
+ msgid "Reads per day"
555
+ msgstr "Αναγνώσεις ανά ημέρα"
556
+
557
+ #: counter-core.php:733
558
+ #: counter.php:1206
559
+ #@ cpd
560
+ msgid "Visitors per month"
561
+ msgstr "Επισκέπτες ανά μήνα"
562
+
563
+ #: counter-core.php:736
564
+ #@ cpd
565
+ msgid "Latest Counts"
566
+ msgstr "Τελευταίες μετρήσεις"
567
+
568
+ #: counter-core.php:738
569
+ #@ default
570
+ msgid "Plugin"
571
+ msgstr "Πρόσθετο"
572
+
573
+ #: counter-core.php:746
574
+ #@ cpd
575
+ msgid "Reads per Country"
576
+ msgstr "Αναγνώσεις ανά χώρα"
577
+
578
+ #: counter-core.php:747
579
+ #@ cpd
580
+ msgid "Visitors per Country"
581
+ msgstr "Επισκέψεις ανά χώρα"
582
+
583
+ #: counter-core.php:762
584
+ #: counter.php:1124
585
+ #@ cpd
586
+ msgid "Statistics"
587
+ msgstr "Στατιστικά"
588
+
589
+ #: counter.php:353
590
+ #: counter.php:1041
591
+ #@ cpd
592
+ msgid "Map"
593
+ msgstr "Χάρτης"
594
+
595
+ #: notes.php:77
596
+ #@ default
597
+ msgid "Action"
598
+ msgstr "Δράση"
599
+
600
+ #: notes.php:82
601
+ #@ cpd
602
+ msgid "add"
603
+ msgstr "προσθήκη"
604
+
605
+ #: notes.php:98
606
+ #@ cpd
607
+ msgid "save"
608
+ msgstr "αποθήκευση"
609
+
610
+ #: notes.php:99
611
+ #@ cpd
612
+ msgid "delete"
613
+ msgstr "διαγραφή"
614
+
615
+ #: notes.php:110
616
+ #@ cpd
617
+ msgid "edit"
618
+ msgstr "επεξεργασία"
619
+
620
+ #: userperspan.php:38
621
+ #@ cpd
622
+ msgid "Start"
623
+ msgstr "Έναρξη"
624
+
625
+ #: userperspan.php:40
626
+ #@ cpd
627
+ msgid "End"
628
+ msgstr "Λήξη"
629
+
630
+ #: userperspan.php:42
631
+ #@ cpd
632
+ msgid "PostID"
633
+ msgstr "Κωδικός άρθρου (PostID)"
634
+
635
+ #: userperspan.php:50
636
+ #@ cpd
637
+ msgid "no data found"
638
+ msgstr "δεν βρέθηκαν δεδομένα"
639
+
640
+ #: geoip/geoip.php:93
641
+ #@ cpd
642
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
643
+ msgstr "Συγνώμη αλλά αναγκαίες λειτουργίες (zlib) δεν βρέθηκαν ή δεν έχουν ενεργοποιηθεί στο php.ini."
644
+
645
+ #: geoip/geoip.php:117
646
+ #@ cpd
647
+ msgid "New GeoIP database installed."
648
+ msgstr "Νέα Γαίο-ΙΡ βάση δεδομένων εγκαταστάθηκε."
649
+
650
+ #: geoip/geoip.php:119
651
+ #@ cpd
652
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
653
+ msgstr "Συγνώμη αλλά συναίβει λάθος. Δοκιμάστε ξανά ή ελέγξτε άμα τα δικαιώματα του φακέλου \"geoip\" είναι 777."
654
+
655
+ #: counter-options.php:737
656
+ #@ cpd
657
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
658
+ msgstr "Μπορείτε να ενημερώσετε τα δεδομένα των χωρών για όλες τις καταχωρήσεις στην βάση δεδομένων με το να τις διασταυρώσετε με τις διευθύνσεις ΙΡ της βάσης δεδομένων της Γαίο-ΙΡ. Αυτό παίρνει πολύ ώρα!"
659
+
660
+ #: counter-options.php:352
661
+ #@ cpd
662
+ msgid "Counter"
663
+ msgstr "Μετρητής"
664
+
665
+ #: counter-options.php:390
666
+ #@ cpd
667
+ msgid "Clients and referrers"
668
+ msgstr "Πελάτες και εισερχόμενοι σύνδεσμοι (referrers)"
669
+
670
+ #: counter-options.php:393
671
+ #@ cpd
672
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
673
+ msgstr "Αποθήκευση και απεικόνιση πελατών και εισερχόμενων συνδέσμων.<br />Απαιτεί μεγάλο χώρο στην βάση δεδομένων αλλά παρέχει ακριβέστερες πληροφορίες για τους επισκέπτες σας."
674
+
675
+ #: counter-options.php:476
676
+ #@ cpd
677
+ msgid "Local URLs"
678
+ msgstr "Τοπικές ιστοδιευθύνσεις"
679
+
680
+ #: counter-options.php:477
681
+ #@ cpd
682
+ msgid "Show local referrers too."
683
+ msgstr "Απεικόνιση και των τοπικών εισερχόμενων συνδέσμων (referrers)."
684
+
685
+ #: counter-options.php:484
686
+ #@ default
687
+ msgid "Posts"
688
+ msgstr "Άρθρα"
689
+
690
+ #: counter-options.php:484
691
+ #@ default
692
+ msgid "Pages"
693
+ msgstr "Σελίδες"
694
+
695
+ #: counter.php:158
696
+ #: counter.php:1200
697
+ #@ cpd
698
+ msgid "Reads last week"
699
+ msgstr "Αναγνώσεις προηγούμενης εβδομάδας"
700
+
701
+ #: counter.php:985
702
+ #@ default
703
+ msgid "Category"
704
+ msgstr "Κατηγορία"
705
+
706
+ #: counter.php:988
707
+ #@ default
708
+ msgid "Tag"
709
+ msgstr "Πινακίδιο"
710
+
711
+ #: counter-core.php:700
712
+ #@ default
713
+ msgid "License"
714
+ msgstr "Άδεια"
715
+
716
+ #: counter-core.php:734
717
+ #: counter.php:1201
718
+ #@ cpd
719
+ msgid "Reads per month"
720
+ msgstr "Αναγνώσεις ανά μήνα"
721
+
722
+ #: counter-core.php:742
723
+ #@ cpd
724
+ msgid "Referrer"
725
+ msgstr "Εισερχόμενοι σύνδεσμοι(referrers)"
726
+
727
+ #: counter.php:1220
728
+ #@ default
729
+ msgid "Title"
730
+ msgstr "Τίτλος"
731
+
732
+ #: counter-options.php:468
733
+ #@ cpd
734
+ msgid "Referrers - Entries"
735
+ msgstr "Εισερχόμενοι σύνδεσμοι - Καταχωρήσεις"
736
+
737
+ #: counter-options.php:469
738
+ #@ cpd
739
+ msgid "How many referrers do you want to see on dashboard page?"
740
+ msgstr "Πόσοι εισερχόμενοι σύνδεσμοι επιθυμείτε να εμφανίζονται στην κεντρική σελίδα;"
741
+
742
+ #: counter-options.php:472
743
+ #@ cpd
744
+ msgid "Referrers - Days"
745
+ msgstr "Εισερχόμενοι σύνδεσμοι - Ημέρες"
746
+
747
+ #: counter.php:845
748
+ #, php-format
749
+ #@ cpd
750
+ msgid "The %s referrers in last %s days:"
751
+ msgstr "Οι πρόσφατοι %s εισερχόμενοι σύνδεσμοι των τελευταίων %s ημερών:"
752
+
753
+ #: counter-core.php:732
754
+ #@ cpd
755
+ msgid "Visitors online"
756
+ msgstr "Επισκέπτες σε σύνδεση"
757
+
758
+ #: counter-core.php:194
759
+ #, php-format
760
+ #@ cpd
761
+ msgid "\"Count per Day\" updated to version %s."
762
+ msgstr ""
763
+
764
+ #: counter-core.php:925
765
+ #@ cpd
766
+ msgid "Backup failed! Cannot open file"
767
+ msgstr ""
768
+
769
+ #: counter-core.php:948
770
+ #, php-format
771
+ #@ cpd
772
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
773
+ msgstr ""
774
+
775
+ #: counter-core.php:1035
776
+ #@ cpd
777
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
778
+ msgstr ""
779
+
780
+ #: counter-core.php:1041
781
+ #, php-format
782
+ #@ cpd
783
+ msgid "Backup of counter table saved in %s."
784
+ msgstr ""
785
+
786
+ #: counter-core.php:1043
787
+ #, php-format
788
+ #@ cpd
789
+ msgid "Backup of counter options and collection saved in %s."
790
+ msgstr ""
791
+
792
+ #: counter-options.php:172
793
+ #@ cpd
794
+ msgid "Collection in progress..."
795
+ msgstr ""
796
+
797
+ #: counter-options.php:242
798
+ #@ cpd
799
+ msgid "Get Visitors per Post..."
800
+ msgstr ""
801
+
802
+ #: counter-options.php:263
803
+ #@ cpd
804
+ msgid "Delete old data..."
805
+ msgstr ""
806
+
807
+ #: counter-options.php:287
808
+ #, php-format
809
+ #@ cpd
810
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
811
+ msgstr ""
812
+
813
+ #: counter-options.php:296
814
+ #@ cpd
815
+ msgid "Installation of \"Count per Day\" checked"
816
+ msgstr ""
817
+
818
+ #: counter-options.php:344
819
+ #: counter-options.php:561
820
+ #@ default
821
+ msgid "Tools"
822
+ msgstr ""
823
+
824
+ #: counter-options.php:395
825
+ #@ cpd
826
+ msgid "Save URL only, no query string."
827
+ msgstr ""
828
+
829
+ #: counter-options.php:419
830
+ #@ cpd
831
+ msgid "Who can see it"
832
+ msgstr ""
833
+
834
+ #: counter-options.php:428
835
+ #@ cpd
836
+ msgid "custom"
837
+ msgstr ""
838
+
839
+ #: counter-options.php:430
840
+ #@ cpd
841
+ msgid "and higher are allowed to see the statistics page."
842
+ msgstr ""
843
+
844
+ #: counter-options.php:432
845
+ #, php-format
846
+ #@ cpd
847
+ msgid "Set the %s capability %s a user need:"
848
+ msgstr ""
849
+
850
+ #: counter-options.php:519
851
+ #@ cpd
852
+ msgid "Stylesheet"
853
+ msgstr ""
854
+
855
+ #: counter-options.php:522
856
+ #@ cpd
857
+ msgid "NO Stylesheet in Frontend"
858
+ msgstr ""
859
+
860
+ #: counter-options.php:523
861
+ #@ cpd
862
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
863
+ msgstr ""
864
+
865
+ #: counter-options.php:530
866
+ #: counter-options.php:634
867
+ #@ cpd
868
+ msgid "Backup"
869
+ msgstr ""
870
+
871
+ #: counter-options.php:533
872
+ #@ cpd
873
+ msgid "Entries per pass"
874
+ msgstr ""
875
+
876
+ #: counter-options.php:536
877
+ #@ cpd
878
+ msgid "How many entries should be saved per pass? Default: 10000"
879
+ msgstr ""
880
+
881
+ #: counter-options.php:541
882
+ #@ cpd
883
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
884
+ msgstr ""
885
+
886
+ #: counter-options.php:638
887
+ #, php-format
888
+ #@ cpd
889
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
890
+ msgstr ""
891
+
892
+ #: counter-options.php:642
893
+ #@ cpd
894
+ msgid "Backup the database"
895
+ msgstr ""
896
+
897
+ #: counter-options.php:681
898
+ #: counter-options.php:713
899
+ #@ cpd
900
+ msgid "Collect old data"
901
+ msgstr ""
902
+
903
+ #: counter-options.php:686
904
+ #, php-format
905
+ #@ cpd
906
+ msgid "Current size of your counter table %s is %s."
907
+ msgstr ""
908
+
909
+ #: counter-options.php:688
910
+ #@ cpd
911
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
912
+ msgstr ""
913
+
914
+ #: counter-options.php:693
915
+ #, php-format
916
+ #@ cpd
917
+ msgid "Currently your collection contains data until %s."
918
+ msgstr ""
919
+
920
+ #: counter-options.php:697
921
+ #@ cpd
922
+ msgid "Normally new data will be added to the collection."
923
+ msgstr ""
924
+
925
+ #: counter-options.php:703
926
+ #@ cpd
927
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
928
+ msgstr ""
929
+
930
+ #: counter-options.php:704
931
+ #, php-format
932
+ #@ cpd
933
+ msgid "All collected data until %s will deleted."
934
+ msgstr ""
935
+
936
+ #: counter-options.php:709
937
+ #, php-format
938
+ #@ cpd
939
+ msgid "Keep entries of last %s full months + current month in counter table."
940
+ msgstr ""
941
+
942
+ #: counter-options.php:768
943
+ #@ cpd
944
+ msgid "ReActivation"
945
+ msgstr ""
946
+
947
+ #: counter-options.php:771
948
+ #@ cpd
949
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
950
+ msgstr ""
951
+
952
+ #: counter-options.php:776
953
+ #@ cpd
954
+ msgid "ReActivate the plugin"
955
+ msgstr ""
956
+
957
+ #: counter.php:165
958
+ #: counter.php:899
959
+ #@ cpd
960
+ msgid "Visitors"
961
+ msgstr ""
962
+
963
+ #: counter.php:168
964
+ #: counter.php:169
965
+ #@ cpd
966
+ msgid "Most visited day"
967
+ msgstr ""
968
+
969
+ #: counter.php:1239
970
+ #@ cpd
971
+ msgid "drag and drop to sort"
972
+ msgstr ""
973
+
locale/cpd-es_ES.po CHANGED
@@ -1,972 +1,972 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day en español\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Juan Carlos del Río <jcrio@hotmail.com>\n"
8
- "Language-Team: Juan Carlos del Río <jcrio[at]hotmail[dot]com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Spanish\n"
14
- "X-Poedit-Country: SPAIN\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:49
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Las opciones han sido guardadas"
26
-
27
- #: counter-options.php:112
28
- #, php-format
29
- #@ cpd
30
- msgid "Database cleaned. %s rows deleted."
31
- msgstr "Base de datos borrada. %s filas borradas."
32
-
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- #@ cpd
36
- msgid "UNINSTALL Count per Day"
37
- msgstr "DESINSTALA Count per Day"
38
-
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- #@ cpd
44
- msgid "Table %s deleted"
45
- msgstr "La tabla %s ha sido borrada"
46
-
47
- #: counter-options.php:135
48
- #@ cpd
49
- msgid "Options deleted"
50
- msgstr "Las opciones han sido canceladas"
51
-
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- #@ cpd
55
- msgid "Uninstall"
56
- msgstr "Desinstala"
57
-
58
- #: counter-options.php:317
59
- #@ cpd
60
- msgid "Click here"
61
- msgstr "Hacer click aquí"
62
-
63
- #: counter-options.php:317
64
- #@ cpd
65
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
- msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
67
-
68
- #: counter-options.php:355
69
- #@ cpd
70
- msgid "Online time"
71
- msgstr "Tiempo online"
72
-
73
- #: counter-options.php:356
74
- #@ cpd
75
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
- msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
77
-
78
- #: counter-options.php:359
79
- #@ cpd
80
- msgid "Logged on Users"
81
- msgstr "Usuarios conectados"
82
-
83
- #: counter-options.php:361
84
- #@ cpd
85
- msgid "count too"
86
- msgstr "contar también"
87
-
88
- #: counter-options.php:373
89
- #@ cpd
90
- msgid "Auto counter"
91
- msgstr "Auto contador"
92
-
93
- #: counter-options.php:374
94
- #@ cpd
95
- msgid "Counts automatically single-posts and pages, no changes on template needed."
96
- msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
97
-
98
- #: counter-options.php:377
99
- #@ cpd
100
- msgid "Bots to ignore"
101
- msgstr "Bots a ignorar"
102
-
103
- #: counter-options.php:561
104
- #@ cpd
105
- msgid "Update options"
106
- msgstr "Actualiza las opciones"
107
-
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- #@ cpd
111
- msgid "Clean the database"
112
- msgstr "Borrar la base de datos"
113
-
114
- #: counter-options.php:659
115
- #@ cpd
116
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
- msgstr "Puedes borrar la tabla del contador para eliminar el \"spam\". <br /> Agregando nuevos bots encima del viejo \"spam\" se mantendrán en la base de datos. <br /> A continuación puedes activar el filtro de nuevo y eliminar las visitas de los robots."
118
-
119
- #: counter-options.php:799
120
- #@ cpd
121
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
- msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
123
-
124
- #: counter-options.php:800
125
- #@ cpd
126
- msgid "Here you can delete the tables and disable \"Count per Day\"."
127
- msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
128
-
129
- #: counter-options.php:803
130
- #@ cpd
131
- msgid "WARNING"
132
- msgstr "ATENCIÓN"
133
-
134
- #: counter-options.php:804
135
- #@ cpd
136
- msgid "These tables (with ALL counter data) will be deleted."
137
- msgstr "Estas tablas (con TODOS los datos) serán borradas."
138
-
139
- #: counter-options.php:806
140
- #@ cpd
141
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
- msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
143
-
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- #@ cpd
147
- msgid "Yes"
148
- msgstr "Sí"
149
-
150
- #: counter-options.php:810
151
- #@ cpd
152
- msgid "You are sure to disable Count per Day and delete all data?"
153
- msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
154
-
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- #@ cpd
158
- msgid "Statistics"
159
- msgstr "Estadísticas"
160
-
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- #@ cpd
166
- msgid "Total visitors"
167
- msgstr "Total de visitas"
168
-
169
- #: counter.php:161
170
- #: counter.php:1208
171
- #@ cpd
172
- msgid "Visitors currently online"
173
- msgstr "Visitantes conectados"
174
-
175
- #: counter.php:162
176
- #: counter.php:1203
177
- #@ cpd
178
- msgid "Visitors today"
179
- msgstr "Hoy"
180
-
181
- #: counter.php:163
182
- #: counter.php:1204
183
- #@ cpd
184
- msgid "Visitors yesterday"
185
- msgstr "Ayer"
186
-
187
- #: counter.php:164
188
- #: counter.php:1205
189
- #@ cpd
190
- msgid "Visitors last week"
191
- msgstr "La semana anterior"
192
-
193
- #: counter.php:167
194
- #: counter.php:825
195
- #: counter.php:1209
196
- #@ cpd
197
- msgid "Counter starts on"
198
- msgstr "El contador comenzó el"
199
-
200
- #: counter-core.php:729
201
- #: counter.php:166
202
- #: counter.php:263
203
- #: counter.php:1012
204
- #: counter.php:1207
205
- #: userperspan.php:34
206
- #@ cpd
207
- msgid "Visitors per day"
208
- msgstr "Visitantes por día"
209
-
210
- #: counter-core.php:725
211
- #: counter.php:1206
212
- #@ cpd
213
- msgid "Visitors per month"
214
- msgstr "Visitantes por mes"
215
-
216
- #: counter-core.php:727
217
- #: counter-options.php:438
218
- #@ cpd
219
- msgid "Visitors per post"
220
- msgstr "Visitantes por entrada"
221
-
222
- #: counter-options.php:122
223
- #@ cpd
224
- msgid "Counter reseted."
225
- msgstr "El contador ha sido reinicializado."
226
-
227
- #: counter-options.php:439
228
- #: counter-options.php:443
229
- #@ cpd
230
- msgid "How many posts do you want to see on dashboard page?"
231
- msgstr "Número de entradas que quieres ver en el escritorio"
232
-
233
- #: counter-options.php:442
234
- #@ cpd
235
- msgid "Latest Counts - Posts"
236
- msgstr "Últimos conteos - Entradas"
237
-
238
- #: counter-options.php:446
239
- #@ cpd
240
- msgid "Latest Counts - Days"
241
- msgstr "Últimos conteos - Días"
242
-
243
- #: counter-options.php:447
244
- #: counter-options.php:451
245
- #: counter-options.php:473
246
- #@ cpd
247
- msgid "How many days do you want look back?"
248
- msgstr "¿Cuántos días hacia atrás quieres ver?"
249
-
250
- #: counter-options.php:488
251
- #@ cpd
252
- msgid "Show in lists"
253
- msgstr "Mostrar en las listas"
254
-
255
- #: counter-options.php:489
256
- #@ cpd
257
- msgid "Show \"Reads per Post\" in a new column in post management views."
258
- msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
259
-
260
- #: counter-options.php:777
261
- #: counter-options.php:787
262
- #@ cpd
263
- msgid "Reset the counter"
264
- msgstr "Reinicia el contador"
265
-
266
- #: counter-options.php:780
267
- #@ cpd
268
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
269
- msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
270
-
271
- #: counter.php:672
272
- #, php-format
273
- #@ cpd
274
- msgid "The %s most visited posts in last %s days:"
275
- msgstr "Las %s entradas más visitadas en los últimos %s días:"
276
-
277
- #: counter-core.php:575
278
- #: counter-options.php:341
279
- #: counter-options.php:565
280
- #@ default
281
- msgid "Settings"
282
- msgstr "Configuración"
283
-
284
- #: counter-core.php:639
285
- #: counter-options.php:392
286
- #: counter.php:159
287
- #: counter.php:875
288
- #@ cpd
289
- msgid "Reads"
290
- msgstr "Visitas"
291
-
292
- #: counter-core.php:728
293
- #@ cpd
294
- msgid "Latest Counts"
295
- msgstr "Últimos conteos"
296
-
297
- #: counter-options.php:450
298
- #@ cpd
299
- msgid "Chart - Days"
300
- msgstr "Gráfica - Días"
301
-
302
- #: counter-options.php:454
303
- #@ cpd
304
- msgid "Chart - Height"
305
- msgstr "Gráfica - Altura"
306
-
307
- #: counter-options.php:455
308
- #@ cpd
309
- msgid "Height of the biggest bar"
310
- msgstr "Altura de la categoría mayor"
311
-
312
- #: counter.php:1196
313
- #@ cpd
314
- msgid "This post"
315
- msgstr "Este artículo"
316
-
317
- #: counter-options.php:403
318
- #@ default
319
- msgid "Dashboard"
320
- msgstr "Escritorio"
321
-
322
- #: counter.php:262
323
- #@ cpd
324
- msgid "Reads per day"
325
- msgstr "Lecturas por día"
326
-
327
- #: counter-options.php:60
328
- #, php-format
329
- #@ cpd
330
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
- msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
332
-
333
- #: counter-options.php:65
334
- #@ cpd
335
- msgid "update next"
336
- msgstr "actualiza el próximo"
337
-
338
- #: counter-options.php:727
339
- #@ cpd
340
- msgid "GeoIP - Countries"
341
- msgstr "GeoIP - Países"
342
-
343
- #: counter-options.php:736
344
- #@ cpd
345
- msgid "Update old counter data"
346
- msgstr "Actualiza los datos antiguos"
347
-
348
- #: counter-options.php:748
349
- #@ cpd
350
- msgid "Update GeoIP database"
351
- msgstr "Actualiza la base de datos de GeoIP"
352
-
353
- #: counter-options.php:743
354
- #@ cpd
355
- msgid "Download a new version of GeoIP.dat file."
356
- msgstr "Decarga la nueva versión del archivo GeoIP.dat."
357
-
358
- #: counter-options.php:753
359
- #@ cpd
360
- msgid "More informations about GeoIP"
361
- msgstr "Más información sobre GeoIP"
362
-
363
- #: counter-core.php:738
364
- #@ cpd
365
- msgid "Reads per Country"
366
- msgstr "Lecturas por país"
367
-
368
- #: geoip/geoip.php:117
369
- #@ cpd
370
- msgid "New GeoIP database installed."
371
- msgstr "La nueva base de datos de GeoIP ha sido instalada."
372
-
373
- #: geoip/geoip.php:119
374
- #@ cpd
375
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
376
- msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos de la carpeta \"geoip\" están como 777."
377
-
378
- #: geoip/geoip.php:93
379
- #@ cpd
380
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
- msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
382
-
383
- #: counter-options.php:459
384
- #@ cpd
385
- msgid "Countries"
386
- msgstr "Países"
387
-
388
- #: counter-options.php:460
389
- #@ cpd
390
- msgid "How many countries do you want to see on dashboard page?"
391
- msgstr "¿Cuántos países desea ver en el escritorio?"
392
-
393
- #: counter-options.php:102
394
- #, php-format
395
- #@ cpd
396
- msgid "Mass Bots cleaned. %s counts deleted."
397
- msgstr "Robots borrados. %s conteos borrados."
398
-
399
- #: counter-options.php:580
400
- #: massbots.php:35
401
- #@ cpd
402
- msgid "Mass Bots"
403
- msgstr "Robots"
404
-
405
- #: counter-options.php:584
406
- #, php-format
407
- #@ cpd
408
- msgid "Show all IPs with more than %s page views per day"
409
- msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
410
-
411
- #: counter-options.php:585
412
- #: notes.php:71
413
- #: userperspan.php:44
414
- #@ cpd
415
- msgid "show"
416
- msgstr "muestra"
417
-
418
- #: counter-options.php:611
419
- #: counter-options.php:627
420
- #, php-format
421
- #@ cpd
422
- msgid "Delete these %s counts"
423
- msgstr "Borra estos %s conteos"
424
-
425
- #: counter.php:821
426
- #@ cpd
427
- msgid "Other"
428
- msgstr "Otro"
429
-
430
- #: counter.php:991
431
- #: massbots.php:52
432
- #: userperspan.php:63
433
- #@ default
434
- msgid "Front page displays"
435
- msgstr "Página inicial mostradas"
436
-
437
- #: counter-core.php:733
438
- #: counter-options.php:464
439
- #@ cpd
440
- msgid "Browsers"
441
- msgstr "Navegador"
442
-
443
- #: counter-options.php:593
444
- #@ cpd
445
- msgid "IP"
446
- msgstr "IP"
447
-
448
- #: counter-options.php:594
449
- #: notes.php:75
450
- #@ cpd
451
- #@ default
452
- msgid "Date"
453
- msgstr "Fecha"
454
-
455
- #: counter-options.php:595
456
- #@ cpd
457
- msgid "Client"
458
- msgstr "Cliente"
459
-
460
- #: counter-options.php:596
461
- #@ cpd
462
- msgid "Views"
463
- msgstr "Vistas"
464
-
465
- #: counter-options.php:497
466
- #@ cpd
467
- msgid "Start Values"
468
- msgstr "Valores de inicio"
469
-
470
- #: counter-options.php:501
471
- #@ cpd
472
- msgid "Here you can change the date of first count and add a start count."
473
- msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
474
-
475
- #: counter-options.php:505
476
- #@ cpd
477
- msgid "Start date"
478
- msgstr "Fecha de inicio"
479
-
480
- #: counter-options.php:506
481
- #@ cpd
482
- msgid "Your old Counter starts at?"
483
- msgstr "Su antiguo contador comienza el"
484
-
485
- #: counter-options.php:509
486
- #: counter-options.php:513
487
- #@ cpd
488
- msgid "Start count"
489
- msgstr "Iniciar el conteo"
490
-
491
- #: counter-options.php:510
492
- #@ cpd
493
- msgid "Add this value to \"Total visitors\"."
494
- msgstr "Añadir este valor al \"Total de visitas\"."
495
-
496
- #: counter-options.php:714
497
- #@ cpd
498
- msgid "Support"
499
- msgstr "Soporte"
500
-
501
- #: counter-core.php:690
502
- #@ cpd
503
- msgid "Bug? Problem? Question? Hint? Praise?"
504
- msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
505
-
506
- #: counter-core.php:691
507
- #, php-format
508
- #@ cpd
509
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
- msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
511
-
512
- #: counter.php:786
513
- #@ default
514
- msgid "Show"
515
- msgstr "Muestra"
516
-
517
- #: counter.php:976
518
- #@ default
519
- msgid "Edit Post"
520
- msgstr "Modifica entrada"
521
-
522
- #: counter-core.php:689
523
- #, php-format
524
- #@ cpd
525
- msgid "Time for Count per Day: <code>%s</code>."
526
- msgstr "Huso horario para Count per Day: <code>%s</code>."
527
-
528
- #: counter-options.php:362
529
- #@ cpd
530
- msgid "until User Level"
531
- msgstr "hasta el Nivel de Usuario"
532
-
533
- #: counter-core.php:730
534
- #@ default
535
- msgid "Plugin"
536
- msgstr "Plugin"
537
-
538
- #: counter.php:788
539
- #: notes.php:42
540
- #: notes.php:76
541
- #@ cpd
542
- msgid "Notes"
543
- msgstr "Notas"
544
-
545
- #: notes.php:77
546
- #@ default
547
- msgid "Action"
548
- msgstr "Acción"
549
-
550
- #: notes.php:82
551
- #@ cpd
552
- msgid "add"
553
- msgstr "añade"
554
-
555
- #: notes.php:98
556
- #@ cpd
557
- msgid "save"
558
- msgstr "salva"
559
-
560
- #: notes.php:99
561
- #@ cpd
562
- msgid "delete"
563
- msgstr "borra"
564
-
565
- #: notes.php:110
566
- #@ cpd
567
- msgid "edit"
568
- msgstr "modifica"
569
-
570
- #: counter-options.php:514
571
- #@ cpd
572
- msgid "Add this value to \"Total reads\"."
573
- msgstr "Añade este valor a \"Total de lecturas\"."
574
-
575
- #: counter.php:155
576
- #: counter.php:1197
577
- #@ cpd
578
- msgid "Total reads"
579
- msgstr "Total de lecturas"
580
-
581
- #: counter.php:156
582
- #: counter.php:1198
583
- #@ cpd
584
- msgid "Reads today"
585
- msgstr "Lecturas hoy"
586
-
587
- #: counter.php:157
588
- #: counter.php:1199
589
- #@ cpd
590
- msgid "Reads yesterday"
591
- msgstr "Lecturas ayer"
592
-
593
- #: counter.php:353
594
- #: counter.php:1041
595
- #@ cpd
596
- msgid "Map"
597
- msgstr "Mapa"
598
-
599
- #: counter-options.php:381
600
- #@ cpd
601
- msgid "Anonymous IP"
602
- msgstr "IP anónimo"
603
-
604
- #: counter-options.php:385
605
- #@ cpd
606
- msgid "Cache"
607
- msgstr "Cache"
608
-
609
- #: counter-options.php:386
610
- #@ cpd
611
- msgid "I use a cache plugin. Count these visits with ajax."
612
- msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
613
-
614
- #: counter-options.php:465
615
- #@ cpd
616
- msgid "Substring of the user agent, separated by comma"
617
- msgstr "Subcadena del user agent, separados por comas"
618
-
619
- #: counter-options.php:554
620
- #@ cpd
621
- msgid "Debug mode"
622
- msgstr "Modo debug"
623
-
624
- #: counter-options.php:556
625
- #@ cpd
626
- msgid "Show debug informations at the bottom of all pages."
627
- msgstr "Muestra información de debug al final de todas las páginas."
628
-
629
- #: counter-core.php:739
630
- #@ cpd
631
- msgid "Visitors per Country"
632
- msgstr "Visitas por país"
633
-
634
- #: userperspan.php:38
635
- #@ cpd
636
- msgid "Start"
637
- msgstr "Inicio"
638
-
639
- #: userperspan.php:40
640
- #@ cpd
641
- msgid "End"
642
- msgstr "Fin"
643
-
644
- #: userperspan.php:42
645
- #@ cpd
646
- msgid "PostID"
647
- msgstr "ID entrada"
648
-
649
- #: userperspan.php:50
650
- #@ cpd
651
- msgid "no data found"
652
- msgstr "no se han encontrado datos"
653
-
654
- #: counter-options.php:730
655
- #@ cpd
656
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
- msgstr "Puede obtener los datos de países de todas las entradas verificando de nuevo la dirección IP en la base de datos de GeoIP. ¡Esto tomará un tiempo!"
658
-
659
- #: counter-options.php:351
660
- #@ cpd
661
- msgid "Counter"
662
- msgstr ""
663
-
664
- #: counter-options.php:389
665
- #@ cpd
666
- msgid "Clients and referrers"
667
- msgstr ""
668
-
669
- #: counter-options.php:392
670
- #@ cpd
671
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
- msgstr ""
673
-
674
- #: counter-options.php:476
675
- #@ cpd
676
- msgid "Local URLs"
677
- msgstr ""
678
-
679
- #: counter-options.php:477
680
- #@ cpd
681
- msgid "Show local referrers too."
682
- msgstr ""
683
-
684
- #: counter-options.php:485
685
- #@ default
686
- msgid "Posts"
687
- msgstr ""
688
-
689
- #: counter-options.php:485
690
- #@ default
691
- msgid "Pages"
692
- msgstr ""
693
-
694
- #: counter.php:158
695
- #: counter.php:1200
696
- #@ cpd
697
- msgid "Reads last week"
698
- msgstr ""
699
-
700
- #: counter.php:985
701
- #@ default
702
- msgid "Category"
703
- msgstr ""
704
-
705
- #: counter.php:988
706
- #@ default
707
- msgid "Tag"
708
- msgstr ""
709
-
710
- #: counter-core.php:692
711
- #@ default
712
- msgid "License"
713
- msgstr ""
714
-
715
- #: counter-core.php:726
716
- #: counter.php:1201
717
- #@ cpd
718
- msgid "Reads per month"
719
- msgstr ""
720
-
721
- #: counter-core.php:734
722
- #@ cpd
723
- msgid "Referrer"
724
- msgstr ""
725
-
726
- #: counter.php:1220
727
- #@ default
728
- msgid "Title"
729
- msgstr ""
730
-
731
- #: counter-options.php:468
732
- #@ cpd
733
- msgid "Referrers - Entries"
734
- msgstr ""
735
-
736
- #: counter-options.php:469
737
- #@ cpd
738
- msgid "How many referrers do you want to see on dashboard page?"
739
- msgstr ""
740
-
741
- #: counter-options.php:472
742
- #@ cpd
743
- msgid "Referrers - Days"
744
- msgstr ""
745
-
746
- #: counter.php:845
747
- #, php-format
748
- #@ cpd
749
- msgid "The %s referrers in last %s days:"
750
- msgstr ""
751
-
752
- #: counter-core.php:724
753
- #@ cpd
754
- msgid "Visitors online"
755
- msgstr ""
756
-
757
- #: counter-core.php:186
758
- #, php-format
759
- #@ cpd
760
- msgid "\"Count per Day\" updated to version %s."
761
- msgstr ""
762
-
763
- #: counter-core.php:917
764
- #@ cpd
765
- msgid "Backup failed! Cannot open file"
766
- msgstr ""
767
-
768
- #: counter-core.php:940
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr ""
773
-
774
- #: counter-core.php:1027
775
- #@ cpd
776
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
- msgstr ""
778
-
779
- #: counter-core.php:1033
780
- #, php-format
781
- #@ cpd
782
- msgid "Backup of counter table saved in %s."
783
- msgstr ""
784
-
785
- #: counter-core.php:1035
786
- #, php-format
787
- #@ cpd
788
- msgid "Backup of counter options and collection saved in %s."
789
- msgstr ""
790
-
791
- #: counter-options.php:170
792
- #@ cpd
793
- msgid "Collection in progress..."
794
- msgstr ""
795
-
796
- #: counter-options.php:240
797
- #@ cpd
798
- msgid "Get Visitors per Post..."
799
- msgstr ""
800
-
801
- #: counter-options.php:261
802
- #@ cpd
803
- msgid "Delete old data..."
804
- msgstr ""
805
-
806
- #: counter-options.php:285
807
- #, php-format
808
- #@ cpd
809
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
- msgstr ""
811
-
812
- #: counter-options.php:294
813
- #@ cpd
814
- msgid "Installation of \"Count per Day\" checked"
815
- msgstr ""
816
-
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- #@ default
820
- msgid "Tools"
821
- msgstr ""
822
-
823
- #: counter-options.php:394
824
- #@ cpd
825
- msgid "Save URL only, no query string."
826
- msgstr ""
827
-
828
- #: counter-options.php:419
829
- #@ cpd
830
- msgid "Who can see it"
831
- msgstr ""
832
-
833
- #: counter-options.php:428
834
- #@ cpd
835
- msgid "custom"
836
- msgstr ""
837
-
838
- #: counter-options.php:430
839
- #@ cpd
840
- msgid "and higher are allowed to see the statistics page."
841
- msgstr ""
842
-
843
- #: counter-options.php:432
844
- #, php-format
845
- #@ cpd
846
- msgid "Set the %s capability %s a user need:"
847
- msgstr ""
848
-
849
- #: counter-options.php:522
850
- #@ cpd
851
- msgid "Stylesheet"
852
- msgstr ""
853
-
854
- #: counter-options.php:525
855
- #@ cpd
856
- msgid "NO Stylesheet in Frontend"
857
- msgstr ""
858
-
859
- #: counter-options.php:526
860
- #@ cpd
861
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
- msgstr ""
863
-
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- #@ cpd
867
- msgid "Backup"
868
- msgstr ""
869
-
870
- #: counter-options.php:537
871
- #@ cpd
872
- msgid "Entries per pass"
873
- msgstr ""
874
-
875
- #: counter-options.php:540
876
- #@ cpd
877
- msgid "How many entries should be saved per pass? Default: 10000"
878
- msgstr ""
879
-
880
- #: counter-options.php:545
881
- #@ cpd
882
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
- msgstr ""
884
-
885
- #: counter-options.php:643
886
- #, php-format
887
- #@ cpd
888
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
- msgstr ""
890
-
891
- #: counter-options.php:647
892
- #@ cpd
893
- msgid "Backup the database"
894
- msgstr ""
895
-
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- #@ cpd
899
- msgid "Collect old data"
900
- msgstr ""
901
-
902
- #: counter-options.php:679
903
- #, php-format
904
- #@ cpd
905
- msgid "Current size of your counter table %s is %s."
906
- msgstr ""
907
-
908
- #: counter-options.php:681
909
- #@ cpd
910
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
- msgstr ""
912
-
913
- #: counter-options.php:686
914
- #, php-format
915
- #@ cpd
916
- msgid "Currently your collection contains data until %s."
917
- msgstr ""
918
-
919
- #: counter-options.php:690
920
- #@ cpd
921
- msgid "Normally new data will be added to the collection."
922
- msgstr ""
923
-
924
- #: counter-options.php:696
925
- #@ cpd
926
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
- msgstr ""
928
-
929
- #: counter-options.php:697
930
- #, php-format
931
- #@ cpd
932
- msgid "All collected data until %s will deleted."
933
- msgstr ""
934
-
935
- #: counter-options.php:702
936
- #, php-format
937
- #@ cpd
938
- msgid "Keep entries of last %s full months + current month in counter table."
939
- msgstr ""
940
-
941
- #: counter-options.php:761
942
- #@ cpd
943
- msgid "ReActivation"
944
- msgstr ""
945
-
946
- #: counter-options.php:764
947
- #@ cpd
948
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
- msgstr ""
950
-
951
- #: counter-options.php:769
952
- #@ cpd
953
- msgid "ReActivate the plugin"
954
- msgstr ""
955
-
956
- #: counter.php:165
957
- #: counter.php:899
958
- #@ cpd
959
- msgid "Visitors"
960
- msgstr ""
961
-
962
- #: counter.php:168
963
- #: counter.php:169
964
- #@ cpd
965
- msgid "Most visited day"
966
- msgstr ""
967
-
968
- #: counter.php:1239
969
- #@ cpd
970
- msgid "drag and drop to sort"
971
- msgstr ""
972
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day en español\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Juan Carlos del Río <jcrio@hotmail.com>\n"
8
+ "Language-Team: Juan Carlos del Río <jcrio[at]hotmail[dot]com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Spanish\n"
14
+ "X-Poedit-Country: SPAIN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:49
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Las opciones han sido guardadas"
26
+
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Database cleaned. %s rows deleted."
31
+ msgstr "Base de datos borrada. %s filas borradas."
32
+
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ #@ cpd
36
+ msgid "UNINSTALL Count per Day"
37
+ msgstr "DESINSTALA Count per Day"
38
+
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ #@ cpd
44
+ msgid "Table %s deleted"
45
+ msgstr "La tabla %s ha sido borrada"
46
+
47
+ #: counter-options.php:135
48
+ #@ cpd
49
+ msgid "Options deleted"
50
+ msgstr "Las opciones han sido canceladas"
51
+
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ #@ cpd
55
+ msgid "Uninstall"
56
+ msgstr "Desinstala"
57
+
58
+ #: counter-options.php:317
59
+ #@ cpd
60
+ msgid "Click here"
61
+ msgstr "Hacer click aquí"
62
+
63
+ #: counter-options.php:317
64
+ #@ cpd
65
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
+ msgstr "para completar la desinstalación y desactivar \"Count per Day\"."
67
+
68
+ #: counter-options.php:355
69
+ #@ cpd
70
+ msgid "Online time"
71
+ msgstr "Tiempo online"
72
+
73
+ #: counter-options.php:356
74
+ #@ cpd
75
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
+ msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
77
+
78
+ #: counter-options.php:359
79
+ #@ cpd
80
+ msgid "Logged on Users"
81
+ msgstr "Usuarios conectados"
82
+
83
+ #: counter-options.php:361
84
+ #@ cpd
85
+ msgid "count too"
86
+ msgstr "contar también"
87
+
88
+ #: counter-options.php:373
89
+ #@ cpd
90
+ msgid "Auto counter"
91
+ msgstr "Auto contador"
92
+
93
+ #: counter-options.php:374
94
+ #@ cpd
95
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
96
+ msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
97
+
98
+ #: counter-options.php:377
99
+ #@ cpd
100
+ msgid "Bots to ignore"
101
+ msgstr "Bots a ignorar"
102
+
103
+ #: counter-options.php:561
104
+ #@ cpd
105
+ msgid "Update options"
106
+ msgstr "Actualiza las opciones"
107
+
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ #@ cpd
111
+ msgid "Clean the database"
112
+ msgstr "Borrar la base de datos"
113
+
114
+ #: counter-options.php:659
115
+ #@ cpd
116
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
+ msgstr "Puedes borrar la tabla del contador para eliminar el \"spam\". <br /> Agregando nuevos bots encima del viejo \"spam\" se mantendrán en la base de datos. <br /> A continuación puedes activar el filtro de nuevo y eliminar las visitas de los robots."
118
+
119
+ #: counter-options.php:799
120
+ #@ cpd
121
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
+ msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
123
+
124
+ #: counter-options.php:800
125
+ #@ cpd
126
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
127
+ msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
128
+
129
+ #: counter-options.php:803
130
+ #@ cpd
131
+ msgid "WARNING"
132
+ msgstr "ATENCIÓN"
133
+
134
+ #: counter-options.php:804
135
+ #@ cpd
136
+ msgid "These tables (with ALL counter data) will be deleted."
137
+ msgstr "Estas tablas (con TODOS los datos) serán borradas."
138
+
139
+ #: counter-options.php:806
140
+ #@ cpd
141
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
+ msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
143
+
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ #@ cpd
147
+ msgid "Yes"
148
+ msgstr "Sí"
149
+
150
+ #: counter-options.php:810
151
+ #@ cpd
152
+ msgid "You are sure to disable Count per Day and delete all data?"
153
+ msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
154
+
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ #@ cpd
158
+ msgid "Statistics"
159
+ msgstr "Estadísticas"
160
+
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ #@ cpd
166
+ msgid "Total visitors"
167
+ msgstr "Total de visitas"
168
+
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ #@ cpd
172
+ msgid "Visitors currently online"
173
+ msgstr "Visitantes conectados"
174
+
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ #@ cpd
178
+ msgid "Visitors today"
179
+ msgstr "Hoy"
180
+
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ #@ cpd
184
+ msgid "Visitors yesterday"
185
+ msgstr "Ayer"
186
+
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ #@ cpd
190
+ msgid "Visitors last week"
191
+ msgstr "La semana anterior"
192
+
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ #@ cpd
197
+ msgid "Counter starts on"
198
+ msgstr "El contador comenzó el"
199
+
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ #@ cpd
207
+ msgid "Visitors per day"
208
+ msgstr "Visitantes por día"
209
+
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ #@ cpd
213
+ msgid "Visitors per month"
214
+ msgstr "Visitantes por mes"
215
+
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ #@ cpd
219
+ msgid "Visitors per post"
220
+ msgstr "Visitantes por entrada"
221
+
222
+ #: counter-options.php:122
223
+ #@ cpd
224
+ msgid "Counter reseted."
225
+ msgstr "El contador ha sido reinicializado."
226
+
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
+ #@ cpd
230
+ msgid "How many posts do you want to see on dashboard page?"
231
+ msgstr "Número de entradas que quieres ver en el escritorio"
232
+
233
+ #: counter-options.php:442
234
+ #@ cpd
235
+ msgid "Latest Counts - Posts"
236
+ msgstr "Últimos conteos - Entradas"
237
+
238
+ #: counter-options.php:446
239
+ #@ cpd
240
+ msgid "Latest Counts - Days"
241
+ msgstr "Últimos conteos - Días"
242
+
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
+ #@ cpd
247
+ msgid "How many days do you want look back?"
248
+ msgstr "¿Cuántos días hacia atrás quieres ver?"
249
+
250
+ #: counter-options.php:488
251
+ #@ cpd
252
+ msgid "Show in lists"
253
+ msgstr "Mostrar en las listas"
254
+
255
+ #: counter-options.php:489
256
+ #@ cpd
257
+ msgid "Show \"Reads per Post\" in a new column in post management views."
258
+ msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
259
+
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
+ #@ cpd
263
+ msgid "Reset the counter"
264
+ msgstr "Reinicia el contador"
265
+
266
+ #: counter-options.php:780
267
+ #@ cpd
268
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
269
+ msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
270
+
271
+ #: counter.php:672
272
+ #, php-format
273
+ #@ cpd
274
+ msgid "The %s most visited posts in last %s days:"
275
+ msgstr "Las %s entradas más visitadas en los últimos %s días:"
276
+
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
+ #@ default
281
+ msgid "Settings"
282
+ msgstr "Configuración"
283
+
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
+ #@ cpd
289
+ msgid "Reads"
290
+ msgstr "Visitas"
291
+
292
+ #: counter-core.php:728
293
+ #@ cpd
294
+ msgid "Latest Counts"
295
+ msgstr "Últimos conteos"
296
+
297
+ #: counter-options.php:450
298
+ #@ cpd
299
+ msgid "Chart - Days"
300
+ msgstr "Gráfica - Días"
301
+
302
+ #: counter-options.php:454
303
+ #@ cpd
304
+ msgid "Chart - Height"
305
+ msgstr "Gráfica - Altura"
306
+
307
+ #: counter-options.php:455
308
+ #@ cpd
309
+ msgid "Height of the biggest bar"
310
+ msgstr "Altura de la categoría mayor"
311
+
312
+ #: counter.php:1196
313
+ #@ cpd
314
+ msgid "This post"
315
+ msgstr "Este artículo"
316
+
317
+ #: counter-options.php:403
318
+ #@ default
319
+ msgid "Dashboard"
320
+ msgstr "Escritorio"
321
+
322
+ #: counter.php:262
323
+ #@ cpd
324
+ msgid "Reads per day"
325
+ msgstr "Lecturas por día"
326
+
327
+ #: counter-options.php:60
328
+ #, php-format
329
+ #@ cpd
330
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
331
+ msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
332
+
333
+ #: counter-options.php:65
334
+ #@ cpd
335
+ msgid "update next"
336
+ msgstr "actualiza el próximo"
337
+
338
+ #: counter-options.php:727
339
+ #@ cpd
340
+ msgid "GeoIP - Countries"
341
+ msgstr "GeoIP - Países"
342
+
343
+ #: counter-options.php:736
344
+ #@ cpd
345
+ msgid "Update old counter data"
346
+ msgstr "Actualiza los datos antiguos"
347
+
348
+ #: counter-options.php:748
349
+ #@ cpd
350
+ msgid "Update GeoIP database"
351
+ msgstr "Actualiza la base de datos de GeoIP"
352
+
353
+ #: counter-options.php:743
354
+ #@ cpd
355
+ msgid "Download a new version of GeoIP.dat file."
356
+ msgstr "Decarga la nueva versión del archivo GeoIP.dat."
357
+
358
+ #: counter-options.php:753
359
+ #@ cpd
360
+ msgid "More informations about GeoIP"
361
+ msgstr "Más información sobre GeoIP"
362
+
363
+ #: counter-core.php:738
364
+ #@ cpd
365
+ msgid "Reads per Country"
366
+ msgstr "Lecturas por país"
367
+
368
+ #: geoip/geoip.php:117
369
+ #@ cpd
370
+ msgid "New GeoIP database installed."
371
+ msgstr "La nueva base de datos de GeoIP ha sido instalada."
372
+
373
+ #: geoip/geoip.php:119
374
+ #@ cpd
375
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
376
+ msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos de la carpeta \"geoip\" están como 777."
377
+
378
+ #: geoip/geoip.php:93
379
+ #@ cpd
380
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
381
+ msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
382
+
383
+ #: counter-options.php:459
384
+ #@ cpd
385
+ msgid "Countries"
386
+ msgstr "Países"
387
+
388
+ #: counter-options.php:460
389
+ #@ cpd
390
+ msgid "How many countries do you want to see on dashboard page?"
391
+ msgstr "¿Cuántos países desea ver en el escritorio?"
392
+
393
+ #: counter-options.php:102
394
+ #, php-format
395
+ #@ cpd
396
+ msgid "Mass Bots cleaned. %s counts deleted."
397
+ msgstr "Robots borrados. %s conteos borrados."
398
+
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
+ #@ cpd
402
+ msgid "Mass Bots"
403
+ msgstr "Robots"
404
+
405
+ #: counter-options.php:584
406
+ #, php-format
407
+ #@ cpd
408
+ msgid "Show all IPs with more than %s page views per day"
409
+ msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
410
+
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
+ #@ cpd
415
+ msgid "show"
416
+ msgstr "muestra"
417
+
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
+ #, php-format
421
+ #@ cpd
422
+ msgid "Delete these %s counts"
423
+ msgstr "Borra estos %s conteos"
424
+
425
+ #: counter.php:821
426
+ #@ cpd
427
+ msgid "Other"
428
+ msgstr "Otro"
429
+
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
+ #: userperspan.php:63
433
+ #@ default
434
+ msgid "Front page displays"
435
+ msgstr "Página inicial mostradas"
436
+
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
+ #@ cpd
440
+ msgid "Browsers"
441
+ msgstr "Navegador"
442
+
443
+ #: counter-options.php:593
444
+ #@ cpd
445
+ msgid "IP"
446
+ msgstr "IP"
447
+
448
+ #: counter-options.php:594
449
+ #: notes.php:75
450
+ #@ cpd
451
+ #@ default
452
+ msgid "Date"
453
+ msgstr "Fecha"
454
+
455
+ #: counter-options.php:595
456
+ #@ cpd
457
+ msgid "Client"
458
+ msgstr "Cliente"
459
+
460
+ #: counter-options.php:596
461
+ #@ cpd
462
+ msgid "Views"
463
+ msgstr "Vistas"
464
+
465
+ #: counter-options.php:497
466
+ #@ cpd
467
+ msgid "Start Values"
468
+ msgstr "Valores de inicio"
469
+
470
+ #: counter-options.php:501
471
+ #@ cpd
472
+ msgid "Here you can change the date of first count and add a start count."
473
+ msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
474
+
475
+ #: counter-options.php:505
476
+ #@ cpd
477
+ msgid "Start date"
478
+ msgstr "Fecha de inicio"
479
+
480
+ #: counter-options.php:506
481
+ #@ cpd
482
+ msgid "Your old Counter starts at?"
483
+ msgstr "Su antiguo contador comienza el"
484
+
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
+ #@ cpd
488
+ msgid "Start count"
489
+ msgstr "Iniciar el conteo"
490
+
491
+ #: counter-options.php:510
492
+ #@ cpd
493
+ msgid "Add this value to \"Total visitors\"."
494
+ msgstr "Añadir este valor al \"Total de visitas\"."
495
+
496
+ #: counter-options.php:714
497
+ #@ cpd
498
+ msgid "Support"
499
+ msgstr "Soporte"
500
+
501
+ #: counter-core.php:690
502
+ #@ cpd
503
+ msgid "Bug? Problem? Question? Hint? Praise?"
504
+ msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
505
+
506
+ #: counter-core.php:691
507
+ #, php-format
508
+ #@ cpd
509
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
510
+ msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
511
+
512
+ #: counter.php:786
513
+ #@ default
514
+ msgid "Show"
515
+ msgstr "Muestra"
516
+
517
+ #: counter.php:976
518
+ #@ default
519
+ msgid "Edit Post"
520
+ msgstr "Modifica entrada"
521
+
522
+ #: counter-core.php:689
523
+ #, php-format
524
+ #@ cpd
525
+ msgid "Time for Count per Day: <code>%s</code>."
526
+ msgstr "Huso horario para Count per Day: <code>%s</code>."
527
+
528
+ #: counter-options.php:362
529
+ #@ cpd
530
+ msgid "until User Level"
531
+ msgstr "hasta el Nivel de Usuario"
532
+
533
+ #: counter-core.php:730
534
+ #@ default
535
+ msgid "Plugin"
536
+ msgstr "Plugin"
537
+
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
541
+ #@ cpd
542
+ msgid "Notes"
543
+ msgstr "Notas"
544
+
545
+ #: notes.php:77
546
+ #@ default
547
+ msgid "Action"
548
+ msgstr "Acción"
549
+
550
+ #: notes.php:82
551
+ #@ cpd
552
+ msgid "add"
553
+ msgstr "añade"
554
+
555
+ #: notes.php:98
556
+ #@ cpd
557
+ msgid "save"
558
+ msgstr "salva"
559
+
560
+ #: notes.php:99
561
+ #@ cpd
562
+ msgid "delete"
563
+ msgstr "borra"
564
+
565
+ #: notes.php:110
566
+ #@ cpd
567
+ msgid "edit"
568
+ msgstr "modifica"
569
+
570
+ #: counter-options.php:514
571
+ #@ cpd
572
+ msgid "Add this value to \"Total reads\"."
573
+ msgstr "Añade este valor a \"Total de lecturas\"."
574
+
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
+ #@ cpd
578
+ msgid "Total reads"
579
+ msgstr "Total de lecturas"
580
+
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
+ #@ cpd
584
+ msgid "Reads today"
585
+ msgstr "Lecturas hoy"
586
+
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
+ #@ cpd
590
+ msgid "Reads yesterday"
591
+ msgstr "Lecturas ayer"
592
+
593
+ #: counter.php:353
594
+ #: counter.php:1041
595
+ #@ cpd
596
+ msgid "Map"
597
+ msgstr "Mapa"
598
+
599
+ #: counter-options.php:381
600
+ #@ cpd
601
+ msgid "Anonymous IP"
602
+ msgstr "IP anónimo"
603
+
604
+ #: counter-options.php:385
605
+ #@ cpd
606
+ msgid "Cache"
607
+ msgstr "Cache"
608
+
609
+ #: counter-options.php:386
610
+ #@ cpd
611
+ msgid "I use a cache plugin. Count these visits with ajax."
612
+ msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
613
+
614
+ #: counter-options.php:465
615
+ #@ cpd
616
+ msgid "Substring of the user agent, separated by comma"
617
+ msgstr "Subcadena del user agent, separados por comas"
618
+
619
+ #: counter-options.php:554
620
+ #@ cpd
621
+ msgid "Debug mode"
622
+ msgstr "Modo debug"
623
+
624
+ #: counter-options.php:556
625
+ #@ cpd
626
+ msgid "Show debug informations at the bottom of all pages."
627
+ msgstr "Muestra información de debug al final de todas las páginas."
628
+
629
+ #: counter-core.php:739
630
+ #@ cpd
631
+ msgid "Visitors per Country"
632
+ msgstr "Visitas por país"
633
+
634
+ #: userperspan.php:38
635
+ #@ cpd
636
+ msgid "Start"
637
+ msgstr "Inicio"
638
+
639
+ #: userperspan.php:40
640
+ #@ cpd
641
+ msgid "End"
642
+ msgstr "Fin"
643
+
644
+ #: userperspan.php:42
645
+ #@ cpd
646
+ msgid "PostID"
647
+ msgstr "ID entrada"
648
+
649
+ #: userperspan.php:50
650
+ #@ cpd
651
+ msgid "no data found"
652
+ msgstr "no se han encontrado datos"
653
+
654
+ #: counter-options.php:730
655
+ #@ cpd
656
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
+ msgstr "Puede obtener los datos de países de todas las entradas verificando de nuevo la dirección IP en la base de datos de GeoIP. ¡Esto tomará un tiempo!"
658
+
659
+ #: counter-options.php:351
660
+ #@ cpd
661
+ msgid "Counter"
662
+ msgstr ""
663
+
664
+ #: counter-options.php:389
665
+ #@ cpd
666
+ msgid "Clients and referrers"
667
+ msgstr ""
668
+
669
+ #: counter-options.php:392
670
+ #@ cpd
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr ""
673
+
674
+ #: counter-options.php:476
675
+ #@ cpd
676
+ msgid "Local URLs"
677
+ msgstr ""
678
+
679
+ #: counter-options.php:477
680
+ #@ cpd
681
+ msgid "Show local referrers too."
682
+ msgstr ""
683
+
684
+ #: counter-options.php:485
685
+ #@ default
686
+ msgid "Posts"
687
+ msgstr ""
688
+
689
+ #: counter-options.php:485
690
+ #@ default
691
+ msgid "Pages"
692
+ msgstr ""
693
+
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ #@ cpd
697
+ msgid "Reads last week"
698
+ msgstr ""
699
+
700
+ #: counter.php:985
701
+ #@ default
702
+ msgid "Category"
703
+ msgstr ""
704
+
705
+ #: counter.php:988
706
+ #@ default
707
+ msgid "Tag"
708
+ msgstr ""
709
+
710
+ #: counter-core.php:692
711
+ #@ default
712
+ msgid "License"
713
+ msgstr ""
714
+
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ #@ cpd
718
+ msgid "Reads per month"
719
+ msgstr ""
720
+
721
+ #: counter-core.php:734
722
+ #@ cpd
723
+ msgid "Referrer"
724
+ msgstr ""
725
+
726
+ #: counter.php:1220
727
+ #@ default
728
+ msgid "Title"
729
+ msgstr ""
730
+
731
+ #: counter-options.php:468
732
+ #@ cpd
733
+ msgid "Referrers - Entries"
734
+ msgstr ""
735
+
736
+ #: counter-options.php:469
737
+ #@ cpd
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
+ msgstr ""
740
+
741
+ #: counter-options.php:472
742
+ #@ cpd
743
+ msgid "Referrers - Days"
744
+ msgstr ""
745
+
746
+ #: counter.php:845
747
+ #, php-format
748
+ #@ cpd
749
+ msgid "The %s referrers in last %s days:"
750
+ msgstr ""
751
+
752
+ #: counter-core.php:724
753
+ #@ cpd
754
+ msgid "Visitors online"
755
+ msgstr ""
756
+
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:917
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr ""
972
+
locale/cpd-fi.po CHANGED
@@ -1,970 +1,970 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Jani Alha <tuki@wysiwyg.fi>\n"
8
- "Language-Team: Jani Alha <jani.alha@wysiwyg.fi>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Finnish\n"
14
- "X-Poedit-Country: FINLAND\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Textdomain-Support: yes\n"
18
-
19
- #@ cpd
20
- #: counter-options.php:49
21
- msgid "Options updated"
22
- msgstr "Valinnat päivitetty"
23
-
24
- #@ cpd
25
- #: counter-options.php:60
26
- #, php-format
27
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
28
- msgstr "Maat päivitetty. <b>%s</b> merkintää %s ilman maatietoa jäljellä"
29
-
30
- #@ cpd
31
- #: counter-options.php:65
32
- msgid "update next"
33
- msgstr "päivitä seuraavaksi"
34
-
35
- #@ cpd
36
- #: counter-options.php:102
37
- #, php-format
38
- msgid "Mass Bots cleaned. %s counts deleted."
39
- msgstr "Robotit puhdistettu. %s osumaa poistettu."
40
-
41
- #@ cpd
42
- #: counter-options.php:112
43
- #, php-format
44
- msgid "Database cleaned. %s rows deleted."
45
- msgstr "Tietokanta puhdistettu. %s riviä poistettu."
46
-
47
- #@ cpd
48
- #: counter-options.php:122
49
- msgid "Counter reseted."
50
- msgstr "Laskuri nollattu."
51
-
52
- #@ cpd
53
- #: counter-options.php:127
54
- #: counter-options.php:810
55
- msgid "UNINSTALL Count per Day"
56
- msgstr "POISTA Count per Day"
57
-
58
- #@ cpd
59
- #: counter-options.php:132
60
- #: counter-options.php:133
61
- #: counter-options.php:134
62
- #, php-format
63
- msgid "Table %s deleted"
64
- msgstr "Taulukko %s poistettu"
65
-
66
- #@ cpd
67
- #: counter-options.php:135
68
- msgid "Options deleted"
69
- msgstr "Valinta poistettu"
70
-
71
- #@ cpd
72
- #: counter-options.php:316
73
- #: counter-options.php:796
74
- msgid "Uninstall"
75
- msgstr "Poista asennus"
76
-
77
- #@ cpd
78
- #: counter-options.php:317
79
- msgid "Click here"
80
- msgstr "Napsauta tästä"
81
-
82
- #@ cpd
83
- #: counter-options.php:317
84
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
85
- msgstr "viimeistelläksesi asennuksen poiston ja \"Count per Day\" käytöstä poistamisen."
86
-
87
- #@ cpd
88
- #: counter-options.php:355
89
- msgid "Online time"
90
- msgstr "Online-aika"
91
-
92
- #@ cpd
93
- #: counter-options.php:356
94
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
95
- msgstr "Sekuntia online-laskuria varten. Käytetään \"Vierailijat online-tilassa\" ohjausnäkymän sivulla."
96
-
97
- #@ cpd
98
- #: counter-options.php:359
99
- msgid "Logged on Users"
100
- msgstr "Kirjautuneet käyttäjinä"
101
-
102
- #@ cpd
103
- #: counter-options.php:361
104
- msgid "count too"
105
- msgstr "laske myös"
106
-
107
- #@ cpd
108
- #: counter-options.php:362
109
- msgid "until User Level"
110
- msgstr "kunnes käyttäjätaso"
111
-
112
- #@ cpd
113
- #: counter-options.php:373
114
- msgid "Auto counter"
115
- msgstr "Automaattinen laskuri"
116
-
117
- #@ cpd
118
- #: counter-options.php:374
119
- msgid "Counts automatically single-posts and pages, no changes on template needed."
120
- msgstr "Laskee automaattisesti artikkelit ja sivut, muutoksia sivupohjiin ei tarvita."
121
-
122
- #@ cpd
123
- #: counter-options.php:377
124
- msgid "Bots to ignore"
125
- msgstr "Robotit, jotka jätetään huomioimatta"
126
-
127
- #@ cpd
128
- #: counter-options.php:381
129
- msgid "Anonymous IP"
130
- msgstr "Anonyymi IP"
131
-
132
- #@ cpd
133
- #: counter-options.php:385
134
- msgid "Cache"
135
- msgstr "Välimuisti"
136
-
137
- #@ cpd
138
- #: counter-options.php:386
139
- msgid "I use a cache plugin. Count these visits with ajax."
140
- msgstr "Käytän välimuistilisäosaa. Laske nämä käynnit ajaxilla."
141
-
142
- #@ cpd
143
- #: counter-options.php:561
144
- msgid "Update options"
145
- msgstr "Päivitä valinnat"
146
-
147
- #@ default
148
- #: counter-options.php:403
149
- msgid "Dashboard"
150
- msgstr "Ohjausnäkymä"
151
-
152
- #@ cpd
153
- #: counter-core.php:727
154
- #: counter-options.php:438
155
- msgid "Visitors per post"
156
- msgstr "Vierailijaa per artikkeli"
157
-
158
- #@ cpd
159
- #: counter-options.php:439
160
- #: counter-options.php:443
161
- msgid "How many posts do you want to see on dashboard page?"
162
- msgstr "Kuinka monta artikkelia haluat nähdä ohjausnäkymän sivulla?"
163
-
164
- #@ cpd
165
- #: counter-options.php:442
166
- msgid "Latest Counts - Posts"
167
- msgstr "Viimeisimmät osumat - artikkelit"
168
-
169
- #@ cpd
170
- #: counter-options.php:446
171
- msgid "Latest Counts - Days"
172
- msgstr "Viimeisimmät osumat - päivät"
173
-
174
- #@ cpd
175
- #: counter-options.php:447
176
- #: counter-options.php:451
177
- #: counter-options.php:473
178
- msgid "How many days do you want look back?"
179
- msgstr "Kuinka monta päivää haluat katsoa taaksepäin?"
180
-
181
- #@ cpd
182
- #: counter-options.php:450
183
- msgid "Chart - Days"
184
- msgstr "Kaavio - päiviä"
185
-
186
- #@ cpd
187
- #: counter-options.php:454
188
- msgid "Chart - Height"
189
- msgstr "Kaavio - korkeus"
190
-
191
- #@ cpd
192
- #: counter-options.php:455
193
- msgid "Height of the biggest bar"
194
- msgstr "Suurimman pylvään korkeus"
195
-
196
- #@ cpd
197
- #: counter-options.php:459
198
- msgid "Countries"
199
- msgstr "Maat"
200
-
201
- #@ cpd
202
- #: counter-options.php:460
203
- msgid "How many countries do you want to see on dashboard page?"
204
- msgstr "Kuinka monta maata haluat nähdä ohjausnäkymän sivulla?"
205
-
206
- #@ cpd
207
- #: counter-core.php:733
208
- #: counter-options.php:464
209
- msgid "Browsers"
210
- msgstr "Selaimet"
211
-
212
- #@ cpd
213
- #: counter-options.php:465
214
- msgid "Substring of the user agent, separated by comma"
215
- msgstr "Selaimet lyhyessä muodossa, pilkulla eroteltuna"
216
-
217
- #@ cpd
218
- #: counter-options.php:488
219
- msgid "Show in lists"
220
- msgstr "Näytä listana"
221
-
222
- #@ cpd
223
- #: counter-options.php:489
224
- msgid "Show \"Reads per Post\" in a new column in post management views."
225
- msgstr "Näytä \"Luettu per artikkeli\" uudella sarakkeella artikkelihallinnan näkymissä."
226
-
227
- #@ cpd
228
- #: counter-options.php:497
229
- msgid "Start Values"
230
- msgstr "Aloitusarvot"
231
-
232
- #@ cpd
233
- #: counter-options.php:501
234
- msgid "Here you can change the date of first count and add a start count."
235
- msgstr "Täällä voit muuttaa ensimmäisen osuman päiväystä ja lisätä aloituslaskurin."
236
-
237
- #@ cpd
238
- #: counter-options.php:505
239
- msgid "Start date"
240
- msgstr "Aloituspäivä"
241
-
242
- #@ cpd
243
- #: counter-options.php:506
244
- msgid "Your old Counter starts at?"
245
- msgstr "Vanha laskurisi alkaa?"
246
-
247
- #@ cpd
248
- #: counter-options.php:509
249
- #: counter-options.php:513
250
- msgid "Start count"
251
- msgstr "Aloita laskuri"
252
-
253
- #@ cpd
254
- #: counter-options.php:510
255
- msgid "Add this value to \"Total visitors\"."
256
- msgstr "Lisää tämä arvo \"Vierailijaa yhteensä\"."
257
-
258
- #@ cpd
259
- #: counter-options.php:514
260
- msgid "Add this value to \"Total reads\"."
261
- msgstr "Lisää tämä arvo \"Luettu yhteensä\"."
262
-
263
- #@ cpd
264
- #: counter-options.php:554
265
- msgid "Debug mode"
266
- msgstr "Debug-moodi"
267
-
268
- #@ cpd
269
- #: counter-options.php:556
270
- msgid "Show debug informations at the bottom of all pages."
271
- msgstr "Näytä debug-tiedot kaikkien sivujen alalaidassa."
272
-
273
- #@ cpd
274
- #: counter-options.php:727
275
- msgid "GeoIP - Countries"
276
- msgstr "GeoIP - Maat"
277
-
278
- #@ cpd
279
- #: counter-options.php:736
280
- msgid "Update old counter data"
281
- msgstr "Pävitä vanhat laskutiedot"
282
-
283
- #@ cpd
284
- #: counter-options.php:748
285
- msgid "Update GeoIP database"
286
- msgstr "Päivitä GeoIP-tietokanta"
287
-
288
- #@ cpd
289
- #: counter-options.php:743
290
- msgid "Download a new version of GeoIP.dat file."
291
- msgstr "Lataa uusi versio GeoIP.dat -tiedostosta."
292
-
293
- #@ cpd
294
- #: counter-options.php:753
295
- msgid "More informations about GeoIP"
296
- msgstr "Lisää tietoa GeoIP:stä"
297
-
298
- #@ cpd
299
- #: counter-options.php:580
300
- #: massbots.php:35
301
- msgid "Mass Bots"
302
- msgstr "Robotit"
303
-
304
- #@ cpd
305
- #: counter-options.php:584
306
- #, php-format
307
- msgid "Show all IPs with more than %s page views per day"
308
- msgstr "Näytä kaikki IP-osoitteet, joilla on enemmän kuin %s sivunäyttöä päivässä"
309
-
310
- #@ cpd
311
- #: counter-options.php:585
312
- #: notes.php:71
313
- #: userperspan.php:44
314
- msgid "show"
315
- msgstr "näytä"
316
-
317
- #@ cpd
318
- #: counter-options.php:593
319
- msgid "IP"
320
- msgstr "IP"
321
-
322
- #@ cpd
323
- #@ default
324
- #: counter-options.php:594
325
- #: notes.php:75
326
- msgid "Date"
327
- msgstr "Päivä"
328
-
329
- #@ cpd
330
- #: counter-options.php:595
331
- msgid "Client"
332
- msgstr "Asiakas"
333
-
334
- #@ cpd
335
- #: counter-options.php:596
336
- msgid "Views"
337
- msgstr "Näyttöä"
338
-
339
- #@ cpd
340
- #: counter-options.php:611
341
- #: counter-options.php:627
342
- #, php-format
343
- msgid "Delete these %s counts"
344
- msgstr "Poista nämä %s osumat"
345
-
346
- #@ cpd
347
- #: counter-options.php:656
348
- #: counter-options.php:665
349
- msgid "Clean the database"
350
- msgstr "Puhdista tietokanta"
351
-
352
- #@ cpd
353
- #: counter-options.php:659
354
- 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."
355
- msgstr "Voit puhdistaa laskuritaulun poistamalla \"spam-data\".<br />Mikäli lisäät uusia robotteja yläpuolelle, vanha \"spam-data\" säilytetään tietokannassa.<br />Täällä voit suorittaa robottisuodattimen uudelleen ja poistaa robottien vierailut."
356
-
357
- #@ cpd
358
- #: counter-options.php:777
359
- #: counter-options.php:787
360
- msgid "Reset the counter"
361
- msgstr "Nollaa laskuri"
362
-
363
- #@ cpd
364
- #: counter-options.php:780
365
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
366
- msgstr "Voit nollata laskurin tyhjentämällä taulun. KAIKKI ARVOIKSI 0.<br />Ota varmuuskopio mikäli tarvitset nykyisiä tietoja!"
367
-
368
- #@ cpd
369
- #: counter-options.php:799
370
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
371
- msgstr "Mikäli \"Count per Day\" on ainoastaan poistettu käytöstä, tullaan taulut tietokannassa säilyttämään."
372
-
373
- #@ cpd
374
- #: counter-options.php:800
375
- msgid "Here you can delete the tables and disable \"Count per Day\"."
376
- msgstr "Täällä voit poistaa taulut ja poistaa \"Count per Day\" -lisäosan käytöstä."
377
-
378
- #@ cpd
379
- #: counter-options.php:803
380
- msgid "WARNING"
381
- msgstr "VAROITUS"
382
-
383
- #@ cpd
384
- #: counter-options.php:804
385
- msgid "These tables (with ALL counter data) will be deleted."
386
- msgstr "Nämä taulut (KAIKKI laskutiedot mukaan luettuina) tullaan poistamaan."
387
-
388
- #@ cpd
389
- #: counter-options.php:806
390
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
391
- msgstr "Mikäli \"Count per Day\" asennetaan uudelleen, laskuri alkaa arvosta 0."
392
-
393
- #@ cpd
394
- #: counter-options.php:786
395
- #: counter-options.php:809
396
- msgid "Yes"
397
- msgstr "Kyllä"
398
-
399
- #@ cpd
400
- #: counter-options.php:810
401
- msgid "You are sure to disable Count per Day and delete all data?"
402
- msgstr "Oletko varma, että haluat poistaa \"Count per Day\" -lisäosan käytöstä ja poistaa kaikki tiedot?"
403
-
404
- #@ cpd
405
- #: counter-options.php:714
406
- msgid "Support"
407
- msgstr "Tuki"
408
-
409
- #@ cpd
410
- #: counter-core.php:689
411
- #, php-format
412
- msgid "Time for Count per Day: <code>%s</code>."
413
- msgstr "Aika osumille per päivä: <code>%s</code>."
414
-
415
- #@ cpd
416
- #: counter-core.php:690
417
- msgid "Bug? Problem? Question? Hint? Praise?"
418
- msgstr "Virhe? Ongelma? Kysymys? Vihje? Kehu?"
419
-
420
- #@ cpd
421
- #: counter-core.php:691
422
- #, php-format
423
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
424
- msgstr "Kirjoita kommentti <a href=\"%s\">lisäosan sivulle</a>."
425
-
426
- #@ cpd
427
- #: counter.php:155
428
- #: counter.php:1197
429
- msgid "Total reads"
430
- msgstr "Luettuja yhteensä"
431
-
432
- #@ cpd
433
- #: counter.php:156
434
- #: counter.php:1198
435
- msgid "Reads today"
436
- msgstr "Luettuja tänään"
437
-
438
- #@ cpd
439
- #: counter.php:157
440
- #: counter.php:1199
441
- msgid "Reads yesterday"
442
- msgstr "Luettuja eilen"
443
-
444
- #@ cpd
445
- #: counter-core.php:723
446
- #: counter.php:160
447
- #: counter.php:1010
448
- #: counter.php:1202
449
- msgid "Total visitors"
450
- msgstr "Vierailijoita yhteensä"
451
-
452
- #@ cpd
453
- #: counter.php:161
454
- #: counter.php:1208
455
- msgid "Visitors currently online"
456
- msgstr "Vierailijat parhaillaan online-tilassa"
457
-
458
- #@ cpd
459
- #: counter.php:162
460
- #: counter.php:1203
461
- msgid "Visitors today"
462
- msgstr "Vierailijoita tänään"
463
-
464
- #@ cpd
465
- #: counter.php:163
466
- #: counter.php:1204
467
- msgid "Visitors yesterday"
468
- msgstr "Vierailijoita eilen"
469
-
470
- #@ cpd
471
- #: counter.php:164
472
- #: counter.php:1205
473
- msgid "Visitors last week"
474
- msgstr "Vierailijoita viime viikolla"
475
-
476
- #@ cpd
477
- #: counter-core.php:729
478
- #: counter.php:166
479
- #: counter.php:263
480
- #: counter.php:1012
481
- #: counter.php:1207
482
- #: userperspan.php:34
483
- msgid "Visitors per day"
484
- msgstr "Vierailijoita päivässä"
485
-
486
- #@ cpd
487
- #: counter.php:167
488
- #: counter.php:825
489
- #: counter.php:1209
490
- msgid "Counter starts on"
491
- msgstr "Laskuri alkaa"
492
-
493
- #@ cpd
494
- #: counter.php:788
495
- #: notes.php:42
496
- #: notes.php:76
497
- msgid "Notes"
498
- msgstr "Huomioita"
499
-
500
- #@ cpd
501
- #: counter.php:672
502
- #, php-format
503
- msgid "The %s most visited posts in last %s days:"
504
- msgstr "%s eniten vierailtua artikkelia viimeisen %s päivän aikana:"
505
-
506
- #@ default
507
- #: counter.php:786
508
- msgid "Show"
509
- msgstr "Näytä"
510
-
511
- #@ cpd
512
- #: counter.php:821
513
- msgid "Other"
514
- msgstr "Toinen"
515
-
516
- #@ default
517
- #: counter.php:976
518
- msgid "Edit Post"
519
- msgstr "Muokkaa artikkelia"
520
-
521
- #@ default
522
- #: counter.php:991
523
- #: massbots.php:52
524
- #: userperspan.php:63
525
- msgid "Front page displays"
526
- msgstr "Etusivulla näytetään"
527
-
528
- #@ default
529
- #: counter-core.php:575
530
- #: counter-options.php:341
531
- #: counter-options.php:565
532
- msgid "Settings"
533
- msgstr "Asetukset"
534
-
535
- # tjekkes
536
- #@ cpd
537
- #: counter-core.php:639
538
- #: counter-options.php:392
539
- #: counter.php:159
540
- #: counter.php:875
541
- msgid "Reads"
542
- msgstr "Luettuja"
543
-
544
- #@ cpd
545
- #: counter.php:1196
546
- msgid "This post"
547
- msgstr "Tämä artikkeli"
548
-
549
- #@ cpd
550
- #: counter.php:262
551
- msgid "Reads per day"
552
- msgstr "Luettuja päivässä"
553
-
554
- #@ cpd
555
- #: counter-core.php:725
556
- #: counter.php:1206
557
- msgid "Visitors per month"
558
- msgstr "Vierailijoita kuukaudessa"
559
-
560
- #@ cpd
561
- #: counter-core.php:728
562
- msgid "Latest Counts"
563
- msgstr "Viimeisimmät osumat"
564
-
565
- #@ default
566
- #: counter-core.php:730
567
- msgid "Plugin"
568
- msgstr "Lisäosa"
569
-
570
- #@ cpd
571
- #: counter-core.php:738
572
- msgid "Reads per Country"
573
- msgstr "Luetut per maa"
574
-
575
- #@ cpd
576
- #: counter-core.php:739
577
- msgid "Visitors per Country"
578
- msgstr "Vierailijat per maa"
579
-
580
- #@ cpd
581
- #: counter-core.php:754
582
- #: counter.php:1124
583
- msgid "Statistics"
584
- msgstr "Tilastot"
585
-
586
- #@ cpd
587
- #: counter.php:353
588
- #: counter.php:1041
589
- msgid "Map"
590
- msgstr "Kartta"
591
-
592
- #@ default
593
- #: notes.php:77
594
- msgid "Action"
595
- msgstr "Toiminto"
596
-
597
- #@ cpd
598
- #: notes.php:82
599
- msgid "add"
600
- msgstr "lisää"
601
-
602
- #@ cpd
603
- #: notes.php:98
604
- msgid "save"
605
- msgstr "tallenna"
606
-
607
- #@ cpd
608
- #: notes.php:99
609
- msgid "delete"
610
- msgstr "poista"
611
-
612
- #@ cpd
613
- #: notes.php:110
614
- msgid "edit"
615
- msgstr "muokkaa"
616
-
617
- #@ cpd
618
- #: userperspan.php:38
619
- msgid "Start"
620
- msgstr "Aloita"
621
-
622
- #@ cpd
623
- #: userperspan.php:40
624
- msgid "End"
625
- msgstr "Lopeta"
626
-
627
- #@ cpd
628
- #: userperspan.php:42
629
- msgid "PostID"
630
- msgstr "Artikkeli-ID"
631
-
632
- #@ cpd
633
- #: userperspan.php:50
634
- msgid "no data found"
635
- msgstr "tietoja ei löytynyt"
636
-
637
- #@ cpd
638
- #: geoip/geoip.php:93
639
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
640
- msgstr "Valitettavasti tarvittavaa toimintoa (zlib) ei ole asennettu tai käyttöönotettu php.ini:ssä."
641
-
642
- #@ cpd
643
- #: geoip/geoip.php:117
644
- msgid "New GeoIP database installed."
645
- msgstr "Uusi GeoIP-tietokanta asennettu."
646
-
647
- #@ cpd
648
- #: geoip/geoip.php:119
649
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
650
- msgstr "Virhe on tapahtunut. Yritä uudelleen ja tarkista, että kansiolla \"geoip\" on oikeudet 777."
651
-
652
- #@ cpd
653
- #: counter-options.php:730
654
- 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!"
655
- msgstr "Voit saada maatiedot kaikista tietokannan merkinnoistä tarkistamalla IP-osoitteet GeoIP:n tietokannasta. Tämä voi kestää hetken!"
656
-
657
- #@ cpd
658
- #: counter-options.php:351
659
- msgid "Counter"
660
- msgstr "Laskuri"
661
-
662
- #@ cpd
663
- #: counter-options.php:389
664
- msgid "Clients and referrers"
665
- msgstr "Asiakkaat ja viittaavat sivustot"
666
-
667
- #@ cpd
668
- #: counter-options.php:392
669
- 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."
670
- msgstr "Tallenna ja näytä asiakkaat sekä viittaavat sivustot.<br />Tarvitsee paljon tilaa tietokannasta, mutta antaa enemmän tarkempaa tietoa käyttäjistä."
671
-
672
- #@ cpd
673
- #: counter-options.php:476
674
- msgid "Local URLs"
675
- msgstr "Paikalliset URL-osoitteet"
676
-
677
- #@ cpd
678
- #: counter-options.php:477
679
- msgid "Show local referrers too."
680
- msgstr "Näytä myös paikalliset viittaavat sivustot."
681
-
682
- #@ default
683
- #: counter-options.php:485
684
- msgid "Posts"
685
- msgstr "Artikkeleja"
686
-
687
- #@ default
688
- #: counter-options.php:485
689
- msgid "Pages"
690
- msgstr "Sivuja"
691
-
692
- #@ cpd
693
- #: counter.php:158
694
- #: counter.php:1200
695
- msgid "Reads last week"
696
- msgstr "Luettuja viime viikolla"
697
-
698
- #@ default
699
- #: counter.php:985
700
- msgid "Category"
701
- msgstr "Kategoria"
702
-
703
- #@ default
704
- #: counter.php:988
705
- msgid "Tag"
706
- msgstr "Tagi"
707
-
708
- #@ default
709
- #: counter-core.php:692
710
- msgid "License"
711
- msgstr "Lisenssi"
712
-
713
- #@ cpd
714
- #: counter-core.php:726
715
- #: counter.php:1201
716
- msgid "Reads per month"
717
- msgstr "Luettu per kuukausi"
718
-
719
- #@ cpd
720
- #: counter-core.php:734
721
- msgid "Referrer"
722
- msgstr "Viittaavat sivustot"
723
-
724
- #@ default
725
- #: counter.php:1220
726
- msgid "Title"
727
- msgstr "Otsikko"
728
-
729
- #@ cpd
730
- #: counter-options.php:468
731
- msgid "Referrers - Entries"
732
- msgstr "Viittaavat sivustot - merkinnät"
733
-
734
- #@ cpd
735
- #: counter-options.php:469
736
- msgid "How many referrers do you want to see on dashboard page?"
737
- msgstr "Kuinka monta viittaavaa sivustoa haluat näyttää ohjausnäkymän sivulla?"
738
-
739
- #@ cpd
740
- #: counter-options.php:472
741
- msgid "Referrers - Days"
742
- msgstr "Viittaavat sivustot - päivää"
743
-
744
- #@ cpd
745
- #: counter.php:845
746
- #, php-format
747
- msgid "The %s referrers in last %s days:"
748
- msgstr "%s viittaavaa sivustoa viimeisen %s päivän aikana:"
749
-
750
- #@ cpd
751
- #: counter-core.php:724
752
- msgid "Visitors online"
753
- msgstr "Vierailijat online-tilassa"
754
-
755
- #@ cpd
756
- #: counter-core.php:186
757
- #, php-format
758
- msgid "\"Count per Day\" updated to version %s."
759
- msgstr "\"Count per Day\" päivitetty versioon %s."
760
-
761
- #@ cpd
762
- #: counter-core.php:917
763
- msgid "Backup failed! Cannot open file"
764
- msgstr "Varmuuskopiointi epäonnistui! Tiedostoa ei voida avata"
765
-
766
- #@ cpd
767
- #: counter-core.php:940
768
- #, php-format
769
- msgid "Backup of %s entries in progress. Every point complies %s entries."
770
- msgstr "%s merkinnän varmuuskopiointi käynnissä. Jokainen piste sisältää %s merkintää."
771
-
772
- #@ cpd
773
- #: counter-core.php:1027
774
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
775
- msgstr "wp-content kansiosi ei ole kirjoitettavissa. Voit kuitenkin kopioida laatikon sisällön tekstitiedostoon."
776
-
777
- #@ cpd
778
- #: counter-core.php:1033
779
- #, php-format
780
- msgid "Backup of counter table saved in %s."
781
- msgstr "Varmuuskopio laskuritaulusta tallennettu %s."
782
-
783
- #@ cpd
784
- #: counter-core.php:1035
785
- #, php-format
786
- msgid "Backup of counter options and collection saved in %s."
787
- msgstr "Varmuuskopio laskurivalinnoista ja -kokoelmasta tallennettu %s."
788
-
789
- #@ cpd
790
- #: counter-options.php:170
791
- msgid "Collection in progress..."
792
- msgstr "Tiedonkeräys meneillään..."
793
-
794
- #@ cpd
795
- #: counter-options.php:240
796
- msgid "Get Visitors per Post..."
797
- msgstr "Hae vierailijat per artikkeli..."
798
-
799
- #@ cpd
800
- #: counter-options.php:261
801
- msgid "Delete old data..."
802
- msgstr "Poista vanhat tiedot..."
803
-
804
- #@ cpd
805
- #: counter-options.php:285
806
- #, php-format
807
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
808
- msgstr "Laskurin merkintöjä %s saakka kerätty ja laskurin taulu %s optimoitu (koko ennen = %s &gt; koko jälkeen = %s)."
809
-
810
- #@ cpd
811
- #: counter-options.php:294
812
- msgid "Installation of \"Count per Day\" checked"
813
- msgstr "\"Count per day\" asennus valittu"
814
-
815
- #@ default
816
- #: counter-options.php:342
817
- #: counter-options.php:566
818
- msgid "Tools"
819
- msgstr "Työkalut"
820
-
821
- #@ cpd
822
- #: counter-options.php:394
823
- msgid "Save URL only, no query string."
824
- msgstr "Tallenna vain URL-osoite, ei kyselytietuetta."
825
-
826
- #@ cpd
827
- #: counter-options.php:419
828
- msgid "Who can see it"
829
- msgstr "Ketkä voivat nähdä sen"
830
-
831
- #@ cpd
832
- #: counter-options.php:428
833
- msgid "custom"
834
- msgstr "omavalintainen"
835
-
836
- #@ cpd
837
- #: counter-options.php:430
838
- msgid "and higher are allowed to see the statistics page."
839
- msgstr "ja korkeammille sallitaan tilastosivujen katsominen."
840
-
841
- #@ cpd
842
- #: counter-options.php:432
843
- #, php-format
844
- msgid "Set the %s capability %s a user need:"
845
- msgstr "Määritä %s oikeustaso, jonka %s käyttäjä tarvitsee:"
846
-
847
- #@ cpd
848
- #: counter-options.php:522
849
- msgid "Stylesheet"
850
- msgstr "Tyylitiedosto"
851
-
852
- #@ cpd
853
- #: counter-options.php:525
854
- msgid "NO Stylesheet in Frontend"
855
- msgstr "EI tyylitiedostoa julkisella sivustolla"
856
-
857
- #@ cpd
858
- #: counter-options.php:526
859
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
860
- msgstr "Älä lataa tyylitiedostoa \"counter.css\" julkisella sivustolla."
861
-
862
- #@ cpd
863
- #: counter-options.php:534
864
- #: counter-options.php:639
865
- msgid "Backup"
866
- msgstr "Varmuuskopioi"
867
-
868
- #@ cpd
869
- #: counter-options.php:537
870
- msgid "Entries per pass"
871
- msgstr "Merkintöjä hyväksytään"
872
-
873
- #@ cpd
874
- #: counter-options.php:540
875
- msgid "How many entries should be saved per pass? Default: 10000"
876
- msgstr "Kuinka monta merkintää tallennetaan? Oletus: 10000"
877
-
878
- #@ cpd
879
- #: counter-options.php:545
880
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
881
- msgstr "Mikäli PHP-muistiraja on vähemmän kuin 50 MB ja näet valkoisen sivun tai virheilmoituksen, yritä pienemmällä arvolla."
882
-
883
- #@ cpd
884
- #: counter-options.php:643
885
- #, php-format
886
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
887
- msgstr "Luo varmuuskopio laskuritaulusta %s wp-content -kansioon (mikäli kirjoitettavissa)."
888
-
889
- #@ cpd
890
- #: counter-options.php:647
891
- msgid "Backup the database"
892
- msgstr "Varmuuskopioi tietokanta"
893
-
894
- #@ cpd
895
- #: counter-options.php:674
896
- #: counter-options.php:706
897
- msgid "Collect old data"
898
- msgstr "Kerää vanhat tiedot"
899
-
900
- #@ cpd
901
- #: counter-options.php:679
902
- #, php-format
903
- msgid "Current size of your counter table %s is %s."
904
- msgstr "Nykyinen laskentataulukon %s koko on %s."
905
-
906
- #@ cpd
907
- #: counter-options.php:681
908
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
909
- msgstr "Voit kerätä vanhat tiedot ja puhdistaa laskuritaulun.<br/>Luetut ja vierailijat tullaan tallentamaan kuukausittain, maittain ja artikkeleittain.<br/>Asiakkaat ja viittaavat sivustot tulaan poistamaan."
910
-
911
- #@ cpd
912
- #: counter-options.php:686
913
- #, php-format
914
- msgid "Currently your collection contains data until %s."
915
- msgstr "Parhaillaan kokoelmasi sisältää tietoja %s asti."
916
-
917
- #@ cpd
918
- #: counter-options.php:690
919
- msgid "Normally new data will be added to the collection."
920
- msgstr "Uudet tiedot tullaat tavallisesti lisäämään kokoelmaan."
921
-
922
- #@ cpd
923
- #: counter-options.php:696
924
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
- msgstr "Poista vanha kokoelma ja luo uusi joka sisältää ainoastaan ne tiedot, jotka ovat parhaillaan laskuritaulussa."
926
-
927
- #@ cpd
928
- #: counter-options.php:697
929
- #, php-format
930
- msgid "All collected data until %s will deleted."
931
- msgstr "Kaikki kerätyt tiedot kunnes %s poistetaan."
932
-
933
- #@ cpd
934
- #: counter-options.php:702
935
- #, php-format
936
- msgid "Keep entries of last %s full months + current month in counter table."
937
- msgstr "Säilytä merkinnät viimiseltä %s kokonaiselta kuukaudelta + kuluva kuukausi laskuritaulussa."
938
-
939
- #@ cpd
940
- #: counter-options.php:761
941
- msgid "ReActivation"
942
- msgstr "Uudelleen aktivointi"
943
-
944
- #@ cpd
945
- #: counter-options.php:764
946
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
- msgstr "Täällä voit aloittaa asennustoiminnot manuaalisesti.<br/>Sama kuin lisäosan deaktivointi ja uudelleen aktivointi."
948
-
949
- #@ cpd
950
- #: counter-options.php:769
951
- msgid "ReActivate the plugin"
952
- msgstr "Aktivoi lisäosa uudelleen"
953
-
954
- #@ cpd
955
- #: counter.php:165
956
- #: counter.php:899
957
- msgid "Visitors"
958
- msgstr "Vierailijaa"
959
-
960
- #@ cpd
961
- #: counter.php:168
962
- #: counter.php:169
963
- msgid "Most visited day"
964
- msgstr "Eniten vierailtu päivä"
965
-
966
- #@ cpd
967
- #: counter.php:1239
968
- msgid "drag and drop to sort"
969
- msgstr "raahaa ja pudota lajitellaksesi"
970
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Jani Alha <tuki@wysiwyg.fi>\n"
8
+ "Language-Team: Jani Alha <jani.alha@wysiwyg.fi>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Finnish\n"
14
+ "X-Poedit-Country: FINLAND\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Textdomain-Support: yes\n"
18
+
19
+ #@ cpd
20
+ #: counter-options.php:49
21
+ msgid "Options updated"
22
+ msgstr "Valinnat päivitetty"
23
+
24
+ #@ cpd
25
+ #: counter-options.php:60
26
+ #, php-format
27
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
28
+ msgstr "Maat päivitetty. <b>%s</b> merkintää %s ilman maatietoa jäljellä"
29
+
30
+ #@ cpd
31
+ #: counter-options.php:65
32
+ msgid "update next"
33
+ msgstr "päivitä seuraavaksi"
34
+
35
+ #@ cpd
36
+ #: counter-options.php:102
37
+ #, php-format
38
+ msgid "Mass Bots cleaned. %s counts deleted."
39
+ msgstr "Robotit puhdistettu. %s osumaa poistettu."
40
+
41
+ #@ cpd
42
+ #: counter-options.php:112
43
+ #, php-format
44
+ msgid "Database cleaned. %s rows deleted."
45
+ msgstr "Tietokanta puhdistettu. %s riviä poistettu."
46
+
47
+ #@ cpd
48
+ #: counter-options.php:122
49
+ msgid "Counter reseted."
50
+ msgstr "Laskuri nollattu."
51
+
52
+ #@ cpd
53
+ #: counter-options.php:127
54
+ #: counter-options.php:810
55
+ msgid "UNINSTALL Count per Day"
56
+ msgstr "POISTA Count per Day"
57
+
58
+ #@ cpd
59
+ #: counter-options.php:132
60
+ #: counter-options.php:133
61
+ #: counter-options.php:134
62
+ #, php-format
63
+ msgid "Table %s deleted"
64
+ msgstr "Taulukko %s poistettu"
65
+
66
+ #@ cpd
67
+ #: counter-options.php:135
68
+ msgid "Options deleted"
69
+ msgstr "Valinta poistettu"
70
+
71
+ #@ cpd
72
+ #: counter-options.php:316
73
+ #: counter-options.php:796
74
+ msgid "Uninstall"
75
+ msgstr "Poista asennus"
76
+
77
+ #@ cpd
78
+ #: counter-options.php:317
79
+ msgid "Click here"
80
+ msgstr "Napsauta tästä"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:317
84
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
85
+ msgstr "viimeistelläksesi asennuksen poiston ja \"Count per Day\" käytöstä poistamisen."
86
+
87
+ #@ cpd
88
+ #: counter-options.php:355
89
+ msgid "Online time"
90
+ msgstr "Online-aika"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:356
94
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
95
+ msgstr "Sekuntia online-laskuria varten. Käytetään \"Vierailijat online-tilassa\" ohjausnäkymän sivulla."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:359
99
+ msgid "Logged on Users"
100
+ msgstr "Kirjautuneet käyttäjinä"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:361
104
+ msgid "count too"
105
+ msgstr "laske myös"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:362
109
+ msgid "until User Level"
110
+ msgstr "kunnes käyttäjätaso"
111
+
112
+ #@ cpd
113
+ #: counter-options.php:373
114
+ msgid "Auto counter"
115
+ msgstr "Automaattinen laskuri"
116
+
117
+ #@ cpd
118
+ #: counter-options.php:374
119
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
120
+ msgstr "Laskee automaattisesti artikkelit ja sivut, muutoksia sivupohjiin ei tarvita."
121
+
122
+ #@ cpd
123
+ #: counter-options.php:377
124
+ msgid "Bots to ignore"
125
+ msgstr "Robotit, jotka jätetään huomioimatta"
126
+
127
+ #@ cpd
128
+ #: counter-options.php:381
129
+ msgid "Anonymous IP"
130
+ msgstr "Anonyymi IP"
131
+
132
+ #@ cpd
133
+ #: counter-options.php:385
134
+ msgid "Cache"
135
+ msgstr "Välimuisti"
136
+
137
+ #@ cpd
138
+ #: counter-options.php:386
139
+ msgid "I use a cache plugin. Count these visits with ajax."
140
+ msgstr "Käytän välimuistilisäosaa. Laske nämä käynnit ajaxilla."
141
+
142
+ #@ cpd
143
+ #: counter-options.php:561
144
+ msgid "Update options"
145
+ msgstr "Päivitä valinnat"
146
+
147
+ #@ default
148
+ #: counter-options.php:403
149
+ msgid "Dashboard"
150
+ msgstr "Ohjausnäkymä"
151
+
152
+ #@ cpd
153
+ #: counter-core.php:727
154
+ #: counter-options.php:438
155
+ msgid "Visitors per post"
156
+ msgstr "Vierailijaa per artikkeli"
157
+
158
+ #@ cpd
159
+ #: counter-options.php:439
160
+ #: counter-options.php:443
161
+ msgid "How many posts do you want to see on dashboard page?"
162
+ msgstr "Kuinka monta artikkelia haluat nähdä ohjausnäkymän sivulla?"
163
+
164
+ #@ cpd
165
+ #: counter-options.php:442
166
+ msgid "Latest Counts - Posts"
167
+ msgstr "Viimeisimmät osumat - artikkelit"
168
+
169
+ #@ cpd
170
+ #: counter-options.php:446
171
+ msgid "Latest Counts - Days"
172
+ msgstr "Viimeisimmät osumat - päivät"
173
+
174
+ #@ cpd
175
+ #: counter-options.php:447
176
+ #: counter-options.php:451
177
+ #: counter-options.php:473
178
+ msgid "How many days do you want look back?"
179
+ msgstr "Kuinka monta päivää haluat katsoa taaksepäin?"
180
+
181
+ #@ cpd
182
+ #: counter-options.php:450
183
+ msgid "Chart - Days"
184
+ msgstr "Kaavio - päiviä"
185
+
186
+ #@ cpd
187
+ #: counter-options.php:454
188
+ msgid "Chart - Height"
189
+ msgstr "Kaavio - korkeus"
190
+
191
+ #@ cpd
192
+ #: counter-options.php:455
193
+ msgid "Height of the biggest bar"
194
+ msgstr "Suurimman pylvään korkeus"
195
+
196
+ #@ cpd
197
+ #: counter-options.php:459
198
+ msgid "Countries"
199
+ msgstr "Maat"
200
+
201
+ #@ cpd
202
+ #: counter-options.php:460
203
+ msgid "How many countries do you want to see on dashboard page?"
204
+ msgstr "Kuinka monta maata haluat nähdä ohjausnäkymän sivulla?"
205
+
206
+ #@ cpd
207
+ #: counter-core.php:733
208
+ #: counter-options.php:464
209
+ msgid "Browsers"
210
+ msgstr "Selaimet"
211
+
212
+ #@ cpd
213
+ #: counter-options.php:465
214
+ msgid "Substring of the user agent, separated by comma"
215
+ msgstr "Selaimet lyhyessä muodossa, pilkulla eroteltuna"
216
+
217
+ #@ cpd
218
+ #: counter-options.php:488
219
+ msgid "Show in lists"
220
+ msgstr "Näytä listana"
221
+
222
+ #@ cpd
223
+ #: counter-options.php:489
224
+ msgid "Show \"Reads per Post\" in a new column in post management views."
225
+ msgstr "Näytä \"Luettu per artikkeli\" uudella sarakkeella artikkelihallinnan näkymissä."
226
+
227
+ #@ cpd
228
+ #: counter-options.php:497
229
+ msgid "Start Values"
230
+ msgstr "Aloitusarvot"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:501
234
+ msgid "Here you can change the date of first count and add a start count."
235
+ msgstr "Täällä voit muuttaa ensimmäisen osuman päiväystä ja lisätä aloituslaskurin."
236
+
237
+ #@ cpd
238
+ #: counter-options.php:505
239
+ msgid "Start date"
240
+ msgstr "Aloituspäivä"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:506
244
+ msgid "Your old Counter starts at?"
245
+ msgstr "Vanha laskurisi alkaa?"
246
+
247
+ #@ cpd
248
+ #: counter-options.php:509
249
+ #: counter-options.php:513
250
+ msgid "Start count"
251
+ msgstr "Aloita laskuri"
252
+
253
+ #@ cpd
254
+ #: counter-options.php:510
255
+ msgid "Add this value to \"Total visitors\"."
256
+ msgstr "Lisää tämä arvo \"Vierailijaa yhteensä\"."
257
+
258
+ #@ cpd
259
+ #: counter-options.php:514
260
+ msgid "Add this value to \"Total reads\"."
261
+ msgstr "Lisää tämä arvo \"Luettu yhteensä\"."
262
+
263
+ #@ cpd
264
+ #: counter-options.php:554
265
+ msgid "Debug mode"
266
+ msgstr "Debug-moodi"
267
+
268
+ #@ cpd
269
+ #: counter-options.php:556
270
+ msgid "Show debug informations at the bottom of all pages."
271
+ msgstr "Näytä debug-tiedot kaikkien sivujen alalaidassa."
272
+
273
+ #@ cpd
274
+ #: counter-options.php:727
275
+ msgid "GeoIP - Countries"
276
+ msgstr "GeoIP - Maat"
277
+
278
+ #@ cpd
279
+ #: counter-options.php:736
280
+ msgid "Update old counter data"
281
+ msgstr "Pävitä vanhat laskutiedot"
282
+
283
+ #@ cpd
284
+ #: counter-options.php:748
285
+ msgid "Update GeoIP database"
286
+ msgstr "Päivitä GeoIP-tietokanta"
287
+
288
+ #@ cpd
289
+ #: counter-options.php:743
290
+ msgid "Download a new version of GeoIP.dat file."
291
+ msgstr "Lataa uusi versio GeoIP.dat -tiedostosta."
292
+
293
+ #@ cpd
294
+ #: counter-options.php:753
295
+ msgid "More informations about GeoIP"
296
+ msgstr "Lisää tietoa GeoIP:stä"
297
+
298
+ #@ cpd
299
+ #: counter-options.php:580
300
+ #: massbots.php:35
301
+ msgid "Mass Bots"
302
+ msgstr "Robotit"
303
+
304
+ #@ cpd
305
+ #: counter-options.php:584
306
+ #, php-format
307
+ msgid "Show all IPs with more than %s page views per day"
308
+ msgstr "Näytä kaikki IP-osoitteet, joilla on enemmän kuin %s sivunäyttöä päivässä"
309
+
310
+ #@ cpd
311
+ #: counter-options.php:585
312
+ #: notes.php:71
313
+ #: userperspan.php:44
314
+ msgid "show"
315
+ msgstr "näytä"
316
+
317
+ #@ cpd
318
+ #: counter-options.php:593
319
+ msgid "IP"
320
+ msgstr "IP"
321
+
322
+ #@ cpd
323
+ #@ default
324
+ #: counter-options.php:594
325
+ #: notes.php:75
326
+ msgid "Date"
327
+ msgstr "Päivä"
328
+
329
+ #@ cpd
330
+ #: counter-options.php:595
331
+ msgid "Client"
332
+ msgstr "Asiakas"
333
+
334
+ #@ cpd
335
+ #: counter-options.php:596
336
+ msgid "Views"
337
+ msgstr "Näyttöä"
338
+
339
+ #@ cpd
340
+ #: counter-options.php:611
341
+ #: counter-options.php:627
342
+ #, php-format
343
+ msgid "Delete these %s counts"
344
+ msgstr "Poista nämä %s osumat"
345
+
346
+ #@ cpd
347
+ #: counter-options.php:656
348
+ #: counter-options.php:665
349
+ msgid "Clean the database"
350
+ msgstr "Puhdista tietokanta"
351
+
352
+ #@ cpd
353
+ #: counter-options.php:659
354
+ 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."
355
+ msgstr "Voit puhdistaa laskuritaulun poistamalla \"spam-data\".<br />Mikäli lisäät uusia robotteja yläpuolelle, vanha \"spam-data\" säilytetään tietokannassa.<br />Täällä voit suorittaa robottisuodattimen uudelleen ja poistaa robottien vierailut."
356
+
357
+ #@ cpd
358
+ #: counter-options.php:777
359
+ #: counter-options.php:787
360
+ msgid "Reset the counter"
361
+ msgstr "Nollaa laskuri"
362
+
363
+ #@ cpd
364
+ #: counter-options.php:780
365
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
366
+ msgstr "Voit nollata laskurin tyhjentämällä taulun. KAIKKI ARVOIKSI 0.<br />Ota varmuuskopio mikäli tarvitset nykyisiä tietoja!"
367
+
368
+ #@ cpd
369
+ #: counter-options.php:799
370
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
371
+ msgstr "Mikäli \"Count per Day\" on ainoastaan poistettu käytöstä, tullaan taulut tietokannassa säilyttämään."
372
+
373
+ #@ cpd
374
+ #: counter-options.php:800
375
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
376
+ msgstr "Täällä voit poistaa taulut ja poistaa \"Count per Day\" -lisäosan käytöstä."
377
+
378
+ #@ cpd
379
+ #: counter-options.php:803
380
+ msgid "WARNING"
381
+ msgstr "VAROITUS"
382
+
383
+ #@ cpd
384
+ #: counter-options.php:804
385
+ msgid "These tables (with ALL counter data) will be deleted."
386
+ msgstr "Nämä taulut (KAIKKI laskutiedot mukaan luettuina) tullaan poistamaan."
387
+
388
+ #@ cpd
389
+ #: counter-options.php:806
390
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
391
+ msgstr "Mikäli \"Count per Day\" asennetaan uudelleen, laskuri alkaa arvosta 0."
392
+
393
+ #@ cpd
394
+ #: counter-options.php:786
395
+ #: counter-options.php:809
396
+ msgid "Yes"
397
+ msgstr "Kyllä"
398
+
399
+ #@ cpd
400
+ #: counter-options.php:810
401
+ msgid "You are sure to disable Count per Day and delete all data?"
402
+ msgstr "Oletko varma, että haluat poistaa \"Count per Day\" -lisäosan käytöstä ja poistaa kaikki tiedot?"
403
+
404
+ #@ cpd
405
+ #: counter-options.php:714
406
+ msgid "Support"
407
+ msgstr "Tuki"
408
+
409
+ #@ cpd
410
+ #: counter-core.php:689
411
+ #, php-format
412
+ msgid "Time for Count per Day: <code>%s</code>."
413
+ msgstr "Aika osumille per päivä: <code>%s</code>."
414
+
415
+ #@ cpd
416
+ #: counter-core.php:690
417
+ msgid "Bug? Problem? Question? Hint? Praise?"
418
+ msgstr "Virhe? Ongelma? Kysymys? Vihje? Kehu?"
419
+
420
+ #@ cpd
421
+ #: counter-core.php:691
422
+ #, php-format
423
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
424
+ msgstr "Kirjoita kommentti <a href=\"%s\">lisäosan sivulle</a>."
425
+
426
+ #@ cpd
427
+ #: counter.php:155
428
+ #: counter.php:1197
429
+ msgid "Total reads"
430
+ msgstr "Luettuja yhteensä"
431
+
432
+ #@ cpd
433
+ #: counter.php:156
434
+ #: counter.php:1198
435
+ msgid "Reads today"
436
+ msgstr "Luettuja tänään"
437
+
438
+ #@ cpd
439
+ #: counter.php:157
440
+ #: counter.php:1199
441
+ msgid "Reads yesterday"
442
+ msgstr "Luettuja eilen"
443
+
444
+ #@ cpd
445
+ #: counter-core.php:723
446
+ #: counter.php:160
447
+ #: counter.php:1010
448
+ #: counter.php:1202
449
+ msgid "Total visitors"
450
+ msgstr "Vierailijoita yhteensä"
451
+
452
+ #@ cpd
453
+ #: counter.php:161
454
+ #: counter.php:1208
455
+ msgid "Visitors currently online"
456
+ msgstr "Vierailijat parhaillaan online-tilassa"
457
+
458
+ #@ cpd
459
+ #: counter.php:162
460
+ #: counter.php:1203
461
+ msgid "Visitors today"
462
+ msgstr "Vierailijoita tänään"
463
+
464
+ #@ cpd
465
+ #: counter.php:163
466
+ #: counter.php:1204
467
+ msgid "Visitors yesterday"
468
+ msgstr "Vierailijoita eilen"
469
+
470
+ #@ cpd
471
+ #: counter.php:164
472
+ #: counter.php:1205
473
+ msgid "Visitors last week"
474
+ msgstr "Vierailijoita viime viikolla"
475
+
476
+ #@ cpd
477
+ #: counter-core.php:729
478
+ #: counter.php:166
479
+ #: counter.php:263
480
+ #: counter.php:1012
481
+ #: counter.php:1207
482
+ #: userperspan.php:34
483
+ msgid "Visitors per day"
484
+ msgstr "Vierailijoita päivässä"
485
+
486
+ #@ cpd
487
+ #: counter.php:167
488
+ #: counter.php:825
489
+ #: counter.php:1209
490
+ msgid "Counter starts on"
491
+ msgstr "Laskuri alkaa"
492
+
493
+ #@ cpd
494
+ #: counter.php:788
495
+ #: notes.php:42
496
+ #: notes.php:76
497
+ msgid "Notes"
498
+ msgstr "Huomioita"
499
+
500
+ #@ cpd
501
+ #: counter.php:672
502
+ #, php-format
503
+ msgid "The %s most visited posts in last %s days:"
504
+ msgstr "%s eniten vierailtua artikkelia viimeisen %s päivän aikana:"
505
+
506
+ #@ default
507
+ #: counter.php:786
508
+ msgid "Show"
509
+ msgstr "Näytä"
510
+
511
+ #@ cpd
512
+ #: counter.php:821
513
+ msgid "Other"
514
+ msgstr "Toinen"
515
+
516
+ #@ default
517
+ #: counter.php:976
518
+ msgid "Edit Post"
519
+ msgstr "Muokkaa artikkelia"
520
+
521
+ #@ default
522
+ #: counter.php:991
523
+ #: massbots.php:52
524
+ #: userperspan.php:63
525
+ msgid "Front page displays"
526
+ msgstr "Etusivulla näytetään"
527
+
528
+ #@ default
529
+ #: counter-core.php:575
530
+ #: counter-options.php:341
531
+ #: counter-options.php:565
532
+ msgid "Settings"
533
+ msgstr "Asetukset"
534
+
535
+ # tjekkes
536
+ #@ cpd
537
+ #: counter-core.php:639
538
+ #: counter-options.php:392
539
+ #: counter.php:159
540
+ #: counter.php:875
541
+ msgid "Reads"
542
+ msgstr "Luettuja"
543
+
544
+ #@ cpd
545
+ #: counter.php:1196
546
+ msgid "This post"
547
+ msgstr "Tämä artikkeli"
548
+
549
+ #@ cpd
550
+ #: counter.php:262
551
+ msgid "Reads per day"
552
+ msgstr "Luettuja päivässä"
553
+
554
+ #@ cpd
555
+ #: counter-core.php:725
556
+ #: counter.php:1206
557
+ msgid "Visitors per month"
558
+ msgstr "Vierailijoita kuukaudessa"
559
+
560
+ #@ cpd
561
+ #: counter-core.php:728
562
+ msgid "Latest Counts"
563
+ msgstr "Viimeisimmät osumat"
564
+
565
+ #@ default
566
+ #: counter-core.php:730
567
+ msgid "Plugin"
568
+ msgstr "Lisäosa"
569
+
570
+ #@ cpd
571
+ #: counter-core.php:738
572
+ msgid "Reads per Country"
573
+ msgstr "Luetut per maa"
574
+
575
+ #@ cpd
576
+ #: counter-core.php:739
577
+ msgid "Visitors per Country"
578
+ msgstr "Vierailijat per maa"
579
+
580
+ #@ cpd
581
+ #: counter-core.php:754
582
+ #: counter.php:1124
583
+ msgid "Statistics"
584
+ msgstr "Tilastot"
585
+
586
+ #@ cpd
587
+ #: counter.php:353
588
+ #: counter.php:1041
589
+ msgid "Map"
590
+ msgstr "Kartta"
591
+
592
+ #@ default
593
+ #: notes.php:77
594
+ msgid "Action"
595
+ msgstr "Toiminto"
596
+
597
+ #@ cpd
598
+ #: notes.php:82
599
+ msgid "add"
600
+ msgstr "lisää"
601
+
602
+ #@ cpd
603
+ #: notes.php:98
604
+ msgid "save"
605
+ msgstr "tallenna"
606
+
607
+ #@ cpd
608
+ #: notes.php:99
609
+ msgid "delete"
610
+ msgstr "poista"
611
+
612
+ #@ cpd
613
+ #: notes.php:110
614
+ msgid "edit"
615
+ msgstr "muokkaa"
616
+
617
+ #@ cpd
618
+ #: userperspan.php:38
619
+ msgid "Start"
620
+ msgstr "Aloita"
621
+
622
+ #@ cpd
623
+ #: userperspan.php:40
624
+ msgid "End"
625
+ msgstr "Lopeta"
626
+
627
+ #@ cpd
628
+ #: userperspan.php:42
629
+ msgid "PostID"
630
+ msgstr "Artikkeli-ID"
631
+
632
+ #@ cpd
633
+ #: userperspan.php:50
634
+ msgid "no data found"
635
+ msgstr "tietoja ei löytynyt"
636
+
637
+ #@ cpd
638
+ #: geoip/geoip.php:93
639
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
640
+ msgstr "Valitettavasti tarvittavaa toimintoa (zlib) ei ole asennettu tai käyttöönotettu php.ini:ssä."
641
+
642
+ #@ cpd
643
+ #: geoip/geoip.php:117
644
+ msgid "New GeoIP database installed."
645
+ msgstr "Uusi GeoIP-tietokanta asennettu."
646
+
647
+ #@ cpd
648
+ #: geoip/geoip.php:119
649
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
650
+ msgstr "Virhe on tapahtunut. Yritä uudelleen ja tarkista, että kansiolla \"geoip\" on oikeudet 777."
651
+
652
+ #@ cpd
653
+ #: counter-options.php:730
654
+ 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!"
655
+ msgstr "Voit saada maatiedot kaikista tietokannan merkinnoistä tarkistamalla IP-osoitteet GeoIP:n tietokannasta. Tämä voi kestää hetken!"
656
+
657
+ #@ cpd
658
+ #: counter-options.php:351
659
+ msgid "Counter"
660
+ msgstr "Laskuri"
661
+
662
+ #@ cpd
663
+ #: counter-options.php:389
664
+ msgid "Clients and referrers"
665
+ msgstr "Asiakkaat ja viittaavat sivustot"
666
+
667
+ #@ cpd
668
+ #: counter-options.php:392
669
+ 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."
670
+ msgstr "Tallenna ja näytä asiakkaat sekä viittaavat sivustot.<br />Tarvitsee paljon tilaa tietokannasta, mutta antaa enemmän tarkempaa tietoa käyttäjistä."
671
+
672
+ #@ cpd
673
+ #: counter-options.php:476
674
+ msgid "Local URLs"
675
+ msgstr "Paikalliset URL-osoitteet"
676
+
677
+ #@ cpd
678
+ #: counter-options.php:477
679
+ msgid "Show local referrers too."
680
+ msgstr "Näytä myös paikalliset viittaavat sivustot."
681
+
682
+ #@ default
683
+ #: counter-options.php:485
684
+ msgid "Posts"
685
+ msgstr "Artikkeleja"
686
+
687
+ #@ default
688
+ #: counter-options.php:485
689
+ msgid "Pages"
690
+ msgstr "Sivuja"
691
+
692
+ #@ cpd
693
+ #: counter.php:158
694
+ #: counter.php:1200
695
+ msgid "Reads last week"
696
+ msgstr "Luettuja viime viikolla"
697
+
698
+ #@ default
699
+ #: counter.php:985
700
+ msgid "Category"
701
+ msgstr "Kategoria"
702
+
703
+ #@ default
704
+ #: counter.php:988
705
+ msgid "Tag"
706
+ msgstr "Tagi"
707
+
708
+ #@ default
709
+ #: counter-core.php:692
710
+ msgid "License"
711
+ msgstr "Lisenssi"
712
+
713
+ #@ cpd
714
+ #: counter-core.php:726
715
+ #: counter.php:1201
716
+ msgid "Reads per month"
717
+ msgstr "Luettu per kuukausi"
718
+
719
+ #@ cpd
720
+ #: counter-core.php:734
721
+ msgid "Referrer"
722
+ msgstr "Viittaavat sivustot"
723
+
724
+ #@ default
725
+ #: counter.php:1220
726
+ msgid "Title"
727
+ msgstr "Otsikko"
728
+
729
+ #@ cpd
730
+ #: counter-options.php:468
731
+ msgid "Referrers - Entries"
732
+ msgstr "Viittaavat sivustot - merkinnät"
733
+
734
+ #@ cpd
735
+ #: counter-options.php:469
736
+ msgid "How many referrers do you want to see on dashboard page?"
737
+ msgstr "Kuinka monta viittaavaa sivustoa haluat näyttää ohjausnäkymän sivulla?"
738
+
739
+ #@ cpd
740
+ #: counter-options.php:472
741
+ msgid "Referrers - Days"
742
+ msgstr "Viittaavat sivustot - päivää"
743
+
744
+ #@ cpd
745
+ #: counter.php:845
746
+ #, php-format
747
+ msgid "The %s referrers in last %s days:"
748
+ msgstr "%s viittaavaa sivustoa viimeisen %s päivän aikana:"
749
+
750
+ #@ cpd
751
+ #: counter-core.php:724
752
+ msgid "Visitors online"
753
+ msgstr "Vierailijat online-tilassa"
754
+
755
+ #@ cpd
756
+ #: counter-core.php:186
757
+ #, php-format
758
+ msgid "\"Count per Day\" updated to version %s."
759
+ msgstr "\"Count per Day\" päivitetty versioon %s."
760
+
761
+ #@ cpd
762
+ #: counter-core.php:917
763
+ msgid "Backup failed! Cannot open file"
764
+ msgstr "Varmuuskopiointi epäonnistui! Tiedostoa ei voida avata"
765
+
766
+ #@ cpd
767
+ #: counter-core.php:940
768
+ #, php-format
769
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
770
+ msgstr "%s merkinnän varmuuskopiointi käynnissä. Jokainen piste sisältää %s merkintää."
771
+
772
+ #@ cpd
773
+ #: counter-core.php:1027
774
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
775
+ msgstr "wp-content kansiosi ei ole kirjoitettavissa. Voit kuitenkin kopioida laatikon sisällön tekstitiedostoon."
776
+
777
+ #@ cpd
778
+ #: counter-core.php:1033
779
+ #, php-format
780
+ msgid "Backup of counter table saved in %s."
781
+ msgstr "Varmuuskopio laskuritaulusta tallennettu %s."
782
+
783
+ #@ cpd
784
+ #: counter-core.php:1035
785
+ #, php-format
786
+ msgid "Backup of counter options and collection saved in %s."
787
+ msgstr "Varmuuskopio laskurivalinnoista ja -kokoelmasta tallennettu %s."
788
+
789
+ #@ cpd
790
+ #: counter-options.php:170
791
+ msgid "Collection in progress..."
792
+ msgstr "Tiedonkeräys meneillään..."
793
+
794
+ #@ cpd
795
+ #: counter-options.php:240
796
+ msgid "Get Visitors per Post..."
797
+ msgstr "Hae vierailijat per artikkeli..."
798
+
799
+ #@ cpd
800
+ #: counter-options.php:261
801
+ msgid "Delete old data..."
802
+ msgstr "Poista vanhat tiedot..."
803
+
804
+ #@ cpd
805
+ #: counter-options.php:285
806
+ #, php-format
807
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
808
+ msgstr "Laskurin merkintöjä %s saakka kerätty ja laskurin taulu %s optimoitu (koko ennen = %s &gt; koko jälkeen = %s)."
809
+
810
+ #@ cpd
811
+ #: counter-options.php:294
812
+ msgid "Installation of \"Count per Day\" checked"
813
+ msgstr "\"Count per day\" asennus valittu"
814
+
815
+ #@ default
816
+ #: counter-options.php:342
817
+ #: counter-options.php:566
818
+ msgid "Tools"
819
+ msgstr "Työkalut"
820
+
821
+ #@ cpd
822
+ #: counter-options.php:394
823
+ msgid "Save URL only, no query string."
824
+ msgstr "Tallenna vain URL-osoite, ei kyselytietuetta."
825
+
826
+ #@ cpd
827
+ #: counter-options.php:419
828
+ msgid "Who can see it"
829
+ msgstr "Ketkä voivat nähdä sen"
830
+
831
+ #@ cpd
832
+ #: counter-options.php:428
833
+ msgid "custom"
834
+ msgstr "omavalintainen"
835
+
836
+ #@ cpd
837
+ #: counter-options.php:430
838
+ msgid "and higher are allowed to see the statistics page."
839
+ msgstr "ja korkeammille sallitaan tilastosivujen katsominen."
840
+
841
+ #@ cpd
842
+ #: counter-options.php:432
843
+ #, php-format
844
+ msgid "Set the %s capability %s a user need:"
845
+ msgstr "Määritä %s oikeustaso, jonka %s käyttäjä tarvitsee:"
846
+
847
+ #@ cpd
848
+ #: counter-options.php:522
849
+ msgid "Stylesheet"
850
+ msgstr "Tyylitiedosto"
851
+
852
+ #@ cpd
853
+ #: counter-options.php:525
854
+ msgid "NO Stylesheet in Frontend"
855
+ msgstr "EI tyylitiedostoa julkisella sivustolla"
856
+
857
+ #@ cpd
858
+ #: counter-options.php:526
859
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
860
+ msgstr "Älä lataa tyylitiedostoa \"counter.css\" julkisella sivustolla."
861
+
862
+ #@ cpd
863
+ #: counter-options.php:534
864
+ #: counter-options.php:639
865
+ msgid "Backup"
866
+ msgstr "Varmuuskopioi"
867
+
868
+ #@ cpd
869
+ #: counter-options.php:537
870
+ msgid "Entries per pass"
871
+ msgstr "Merkintöjä hyväksytään"
872
+
873
+ #@ cpd
874
+ #: counter-options.php:540
875
+ msgid "How many entries should be saved per pass? Default: 10000"
876
+ msgstr "Kuinka monta merkintää tallennetaan? Oletus: 10000"
877
+
878
+ #@ cpd
879
+ #: counter-options.php:545
880
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
881
+ msgstr "Mikäli PHP-muistiraja on vähemmän kuin 50 MB ja näet valkoisen sivun tai virheilmoituksen, yritä pienemmällä arvolla."
882
+
883
+ #@ cpd
884
+ #: counter-options.php:643
885
+ #, php-format
886
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
887
+ msgstr "Luo varmuuskopio laskuritaulusta %s wp-content -kansioon (mikäli kirjoitettavissa)."
888
+
889
+ #@ cpd
890
+ #: counter-options.php:647
891
+ msgid "Backup the database"
892
+ msgstr "Varmuuskopioi tietokanta"
893
+
894
+ #@ cpd
895
+ #: counter-options.php:674
896
+ #: counter-options.php:706
897
+ msgid "Collect old data"
898
+ msgstr "Kerää vanhat tiedot"
899
+
900
+ #@ cpd
901
+ #: counter-options.php:679
902
+ #, php-format
903
+ msgid "Current size of your counter table %s is %s."
904
+ msgstr "Nykyinen laskentataulukon %s koko on %s."
905
+
906
+ #@ cpd
907
+ #: counter-options.php:681
908
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
909
+ msgstr "Voit kerätä vanhat tiedot ja puhdistaa laskuritaulun.<br/>Luetut ja vierailijat tullaan tallentamaan kuukausittain, maittain ja artikkeleittain.<br/>Asiakkaat ja viittaavat sivustot tulaan poistamaan."
910
+
911
+ #@ cpd
912
+ #: counter-options.php:686
913
+ #, php-format
914
+ msgid "Currently your collection contains data until %s."
915
+ msgstr "Parhaillaan kokoelmasi sisältää tietoja %s asti."
916
+
917
+ #@ cpd
918
+ #: counter-options.php:690
919
+ msgid "Normally new data will be added to the collection."
920
+ msgstr "Uudet tiedot tullaat tavallisesti lisäämään kokoelmaan."
921
+
922
+ #@ cpd
923
+ #: counter-options.php:696
924
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
925
+ msgstr "Poista vanha kokoelma ja luo uusi joka sisältää ainoastaan ne tiedot, jotka ovat parhaillaan laskuritaulussa."
926
+
927
+ #@ cpd
928
+ #: counter-options.php:697
929
+ #, php-format
930
+ msgid "All collected data until %s will deleted."
931
+ msgstr "Kaikki kerätyt tiedot kunnes %s poistetaan."
932
+
933
+ #@ cpd
934
+ #: counter-options.php:702
935
+ #, php-format
936
+ msgid "Keep entries of last %s full months + current month in counter table."
937
+ msgstr "Säilytä merkinnät viimiseltä %s kokonaiselta kuukaudelta + kuluva kuukausi laskuritaulussa."
938
+
939
+ #@ cpd
940
+ #: counter-options.php:761
941
+ msgid "ReActivation"
942
+ msgstr "Uudelleen aktivointi"
943
+
944
+ #@ cpd
945
+ #: counter-options.php:764
946
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
947
+ msgstr "Täällä voit aloittaa asennustoiminnot manuaalisesti.<br/>Sama kuin lisäosan deaktivointi ja uudelleen aktivointi."
948
+
949
+ #@ cpd
950
+ #: counter-options.php:769
951
+ msgid "ReActivate the plugin"
952
+ msgstr "Aktivoi lisäosa uudelleen"
953
+
954
+ #@ cpd
955
+ #: counter.php:165
956
+ #: counter.php:899
957
+ msgid "Visitors"
958
+ msgstr "Vierailijaa"
959
+
960
+ #@ cpd
961
+ #: counter.php:168
962
+ #: counter.php:169
963
+ msgid "Most visited day"
964
+ msgstr "Eniten vierailtu päivä"
965
+
966
+ #@ cpd
967
+ #: counter.php:1239
968
+ msgid "drag and drop to sort"
969
+ msgstr "raahaa ja pudota lajitellaksesi"
970
+
locale/cpd-fr_FR.po CHANGED
@@ -1,971 +1,971 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: Bjork - Habbzone.fr <bjork@habbzone.fr>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: French\n"
14
- "X-Poedit-Country: FRANCE\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "Paramètres mis à jour"
25
-
26
- #@ cpd
27
- #: counter-options.php:112
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Base de données nettoyée. %s lignes supprimées."
31
-
32
- #@ cpd
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "Désinstaller Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Table %s supprimée"
45
-
46
- #@ cpd
47
- #: counter-options.php:135
48
- msgid "Options deleted"
49
- msgstr "Paramètres supprimés"
50
-
51
- #@ cpd
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- msgid "Uninstall"
55
- msgstr "Désinstaller"
56
-
57
- #@ cpd
58
- #: counter-options.php:317
59
- msgid "Click here"
60
- msgstr "Cliquez ici"
61
-
62
- #@ cpd
63
- #: counter-options.php:317
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "pour terminer de désinstaller et désactiver \"Count per Day\"."
66
-
67
- #@ cpd
68
- #: counter-options.php:355
69
- msgid "Online time"
70
- msgstr "Temps en ligne"
71
-
72
- #@ cpd
73
- #: counter-options.php:356
74
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
- msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
76
-
77
- #@ cpd
78
- #: counter-options.php:359
79
- msgid "Logged on Users"
80
- msgstr "Utilisateurs Connectés"
81
-
82
- #@ cpd
83
- #: counter-options.php:361
84
- msgid "count too"
85
- msgstr "compter aussi"
86
-
87
- #@ cpd
88
- #: counter-options.php:373
89
- msgid "Auto counter"
90
- msgstr "Compteur automatique"
91
-
92
- #@ cpd
93
- #: counter-options.php:374
94
- msgid "Counts automatically single-posts and pages, no changes on template needed."
95
- msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
96
-
97
- #@ cpd
98
- #: counter-options.php:377
99
- msgid "Bots to ignore"
100
- msgstr "Robots à ignorer"
101
-
102
- #@ cpd
103
- #: counter-options.php:561
104
- msgid "Update options"
105
- msgstr "Mettre à jour les options"
106
-
107
- #@ cpd
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- msgid "Clean the database"
111
- msgstr "Nettoyer la base de données"
112
-
113
- #@ cpd
114
- #: counter-options.php:659
115
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
- msgstr "Vous pouvez nettoyer la table du compteur en supprimant le \"spam\".<br />Si vous ajoutez de nouveaux robots au dessus les anciens \"spams\" restent dans la base de données.<br />Ici, vous pouvez exécuter le filtre robot de nouveau et supprimer les visites des robots."
117
-
118
- #@ cpd
119
- #: counter-options.php:799
120
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
- msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
122
-
123
- #@ cpd
124
- #: counter-options.php:800
125
- msgid "Here you can delete the tables and disable \"Count per Day\"."
126
- msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
127
-
128
- #@ cpd
129
- #: counter-options.php:803
130
- msgid "WARNING"
131
- msgstr "ATTENTION"
132
-
133
- #@ cpd
134
- #: counter-options.php:804
135
- msgid "These tables (with ALL counter data) will be deleted."
136
- msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
137
-
138
- #@ cpd
139
- #: counter-options.php:806
140
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
- msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
142
-
143
- #@ cpd
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- msgid "Yes"
147
- msgstr "Oui"
148
-
149
- #@ cpd
150
- #: counter-options.php:810
151
- msgid "You are sure to disable Count per Day and delete all data?"
152
- msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
153
-
154
- #@ cpd
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- msgid "Statistics"
158
- msgstr "Statistiques"
159
-
160
- #@ cpd
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- msgid "Total visitors"
166
- msgstr "Visiteurs Total"
167
-
168
- #@ cpd
169
- #: counter.php:161
170
- #: counter.php:1208
171
- msgid "Visitors currently online"
172
- msgstr "Visiteur actuellement en ligne"
173
-
174
- #@ cpd
175
- #: counter.php:162
176
- #: counter.php:1203
177
- msgid "Visitors today"
178
- msgstr "Visiteurs aujourd'hui"
179
-
180
- #@ cpd
181
- #: counter.php:163
182
- #: counter.php:1204
183
- msgid "Visitors yesterday"
184
- msgstr "Visiteurs hier"
185
-
186
- #@ cpd
187
- #: counter.php:164
188
- #: counter.php:1205
189
- msgid "Visitors last week"
190
- msgstr "Visiteurs la semaine dernière"
191
-
192
- #@ cpd
193
- #: counter.php:167
194
- #: counter.php:825
195
- #: counter.php:1209
196
- msgid "Counter starts on"
197
- msgstr "Compteur activé le "
198
-
199
- #@ cpd
200
- #: counter-core.php:729
201
- #: counter.php:166
202
- #: counter.php:263
203
- #: counter.php:1012
204
- #: counter.php:1207
205
- #: userperspan.php:34
206
- msgid "Visitors per day"
207
- msgstr "Visiteurs par jour"
208
-
209
- #@ cpd
210
- #: counter-core.php:725
211
- #: counter.php:1206
212
- msgid "Visitors per month"
213
- msgstr "Visiteurs par mois"
214
-
215
- #@ cpd
216
- #: counter-core.php:727
217
- #: counter-options.php:438
218
- msgid "Visitors per post"
219
- msgstr "Visiteurs par articles"
220
-
221
- #@ cpd
222
- #: counter-options.php:122
223
- msgid "Counter reseted."
224
- msgstr "Compteur remis à zéro."
225
-
226
- #@ cpd
227
- #: counter-options.php:439
228
- #: counter-options.php:443
229
- msgid "How many posts do you want to see on dashboard page?"
230
- msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
231
-
232
- #@ cpd
233
- #: counter-options.php:442
234
- msgid "Latest Counts - Posts"
235
- msgstr "Dernier Comptes - Articles"
236
-
237
- #@ cpd
238
- #: counter-options.php:446
239
- msgid "Latest Counts - Days"
240
- msgstr "Dernier Compte - Jours"
241
-
242
- #@ cpd
243
- #: counter-options.php:447
244
- #: counter-options.php:451
245
- #: counter-options.php:473
246
- msgid "How many days do you want look back?"
247
- msgstr "Combien de jours vous voulez regarder en arrière?"
248
-
249
- #@ cpd
250
- #: counter-options.php:488
251
- msgid "Show in lists"
252
- msgstr "Montrer dans la liste"
253
-
254
- #@ cpd
255
- #: counter-options.php:489
256
- msgid "Show \"Reads per Post\" in a new column in post management views."
257
- msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
258
-
259
- #@ cpd
260
- #: counter-options.php:777
261
- #: counter-options.php:787
262
- msgid "Reset the counter"
263
- msgstr "Remise à zéro du compteur"
264
-
265
- #@ cpd
266
- #: counter-options.php:780
267
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
- msgstr "Vous pouvez réinitialiser le compteur en vidant la table. TOUT à 0!<br />Faites un Backup si vous avez besoin des données actuelles!"
269
-
270
- #@ cpd
271
- #: counter.php:672
272
- #, php-format
273
- msgid "The %s most visited posts in last %s days:"
274
- msgstr "Les %s articles les plus visités dans les derniers %s jours:"
275
-
276
- #@ default
277
- #: counter-core.php:575
278
- #: counter-options.php:341
279
- #: counter-options.php:565
280
- msgid "Settings"
281
- msgstr "Options"
282
-
283
- #@ cpd
284
- #: counter-core.php:639
285
- #: counter-options.php:392
286
- #: counter.php:159
287
- #: counter.php:875
288
- msgid "Reads"
289
- msgstr "Lectures"
290
-
291
- #@ cpd
292
- #: counter-core.php:728
293
- msgid "Latest Counts"
294
- msgstr "Dernier Comptes"
295
-
296
- #@ cpd
297
- #: counter-options.php:450
298
- msgid "Chart - Days"
299
- msgstr "Graphique - Jours"
300
-
301
- #@ cpd
302
- #: counter-options.php:454
303
- msgid "Chart - Height"
304
- msgstr "Graphique - Hauteur"
305
-
306
- #@ cpd
307
- #: counter-options.php:455
308
- msgid "Height of the biggest bar"
309
- msgstr "Hauteur de la plus grande barre"
310
-
311
- #@ cpd
312
- #: counter.php:1196
313
- msgid "This post"
314
- msgstr "Cet article"
315
-
316
- #@ default
317
- #: counter-options.php:403
318
- msgid "Dashboard"
319
- msgstr "Tableau de bord"
320
-
321
- #@ cpd
322
- #: counter.php:262
323
- msgid "Reads per day"
324
- msgstr "Lectures par jour"
325
-
326
- #@ cpd
327
- #: counter-options.php:60
328
- #, php-format
329
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
- msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
331
-
332
- #@ cpd
333
- #: counter-options.php:65
334
- msgid "update next"
335
- msgstr "mettre à jour le prochain"
336
-
337
- #@ cpd
338
- #: counter-options.php:727
339
- msgid "GeoIP - Countries"
340
- msgstr "GeoIP - Pays"
341
-
342
- #@ cpd
343
- #: counter-options.php:736
344
- msgid "Update old counter data"
345
- msgstr "Mettre à jour les données du vieux compteur"
346
-
347
- #@ cpd
348
- #: counter-options.php:748
349
- msgid "Update GeoIP database"
350
- msgstr "Mettre à jour les données de GeoIP"
351
-
352
- #@ cpd
353
- #: counter-options.php:743
354
- msgid "Download a new version of GeoIP.dat file."
355
- msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
356
-
357
- #@ cpd
358
- #: counter-options.php:753
359
- msgid "More informations about GeoIP"
360
- msgstr "Plus d'infos sur GeoIP"
361
-
362
- #@ cpd
363
- #: counter-core.php:738
364
- msgid "Reads per Country"
365
- msgstr "Lectures par Pays"
366
-
367
- #@ cpd
368
- #: geoip/geoip.php:117
369
- msgid "New GeoIP database installed."
370
- msgstr "Nouvelle base de données de GeoIp installée."
371
-
372
- #@ cpd
373
- #: geoip/geoip.php:119
374
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
- msgstr "Désolé,une erreur est survenue. Merci de réessayer ou de vérifier que les droit d'accès du dossier\"geoip\" sont mis sur 777."
376
-
377
- #@ cpd
378
- #: geoip/geoip.php:93
379
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
- msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
381
-
382
- #@ cpd
383
- #: counter-options.php:459
384
- msgid "Countries"
385
- msgstr "Pays"
386
-
387
- #@ cpd
388
- #: counter-options.php:460
389
- msgid "How many countries do you want to see on dashboard page?"
390
- msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
391
-
392
- #@ cpd
393
- #: counter-options.php:102
394
- #, php-format
395
- msgid "Mass Bots cleaned. %s counts deleted."
396
- msgstr "Robots nettoyés en masse. %s comptes supprimés."
397
-
398
- #@ cpd
399
- #: counter-options.php:580
400
- #: massbots.php:35
401
- msgid "Mass Bots"
402
- msgstr "Robots en masse"
403
-
404
- #@ cpd
405
- #: counter-options.php:584
406
- #, php-format
407
- msgid "Show all IPs with more than %s page views per day"
408
- msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
409
-
410
- #@ cpd
411
- #: counter-options.php:585
412
- #: notes.php:71
413
- #: userperspan.php:44
414
- msgid "show"
415
- msgstr "montrer"
416
-
417
- #@ cpd
418
- #: counter-options.php:611
419
- #: counter-options.php:627
420
- #, php-format
421
- msgid "Delete these %s counts"
422
- msgstr "Supprimer ces %s comptes"
423
-
424
- #@ cpd
425
- #: counter.php:821
426
- msgid "Other"
427
- msgstr "Autre"
428
-
429
- #@ default
430
- #: counter.php:991
431
- #: massbots.php:52
432
- #: userperspan.php:63
433
- msgid "Front page displays"
434
- msgstr "Page d'accueil affiche"
435
-
436
- #@ cpd
437
- #: counter-core.php:733
438
- #: counter-options.php:464
439
- msgid "Browsers"
440
- msgstr "Navigateurs"
441
-
442
- #@ cpd
443
- #: counter-options.php:593
444
- msgid "IP"
445
- msgstr "IP"
446
-
447
- #@ cpd
448
- #@ default
449
- #: counter-options.php:594
450
- #: notes.php:75
451
- msgid "Date"
452
- msgstr "Date"
453
-
454
- #@ cpd
455
- #: counter-options.php:595
456
- msgid "Client"
457
- msgstr "Client"
458
-
459
- #@ cpd
460
- #: counter-options.php:596
461
- msgid "Views"
462
- msgstr "Vues"
463
-
464
- #@ cpd
465
- #: counter-options.php:497
466
- msgid "Start Values"
467
- msgstr "Valeurs de départ"
468
-
469
- #@ cpd
470
- #: counter-options.php:501
471
- msgid "Here you can change the date of first count and add a start count."
472
- msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
473
-
474
- #@ cpd
475
- #: counter-options.php:505
476
- msgid "Start date"
477
- msgstr "Date de départ"
478
-
479
- #@ cpd
480
- #: counter-options.php:506
481
- msgid "Your old Counter starts at?"
482
- msgstr "Votre vieux compteur commence à?"
483
-
484
- #@ cpd
485
- #: counter-options.php:509
486
- #: counter-options.php:513
487
- msgid "Start count"
488
- msgstr "Commencer le compte"
489
-
490
- #@ cpd
491
- #: counter-options.php:510
492
- msgid "Add this value to \"Total visitors\"."
493
- msgstr "Ajouter cette valeur à \"visiteurs totals\"."
494
-
495
- #@ cpd
496
- #: counter-options.php:714
497
- msgid "Support"
498
- msgstr "Support"
499
-
500
- #@ cpd
501
- #: counter-core.php:690
502
- msgid "Bug? Problem? Question? Hint? Praise?"
503
- msgstr "Bug? Problème? Question? Allusion? Hommage?"
504
-
505
- #@ cpd
506
- #: counter-core.php:691
507
- #, php-format
508
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
- msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
510
-
511
- #@ default
512
- #: counter.php:786
513
- msgid "Show"
514
- msgstr "Montrer"
515
-
516
- #@ default
517
- #: counter.php:976
518
- msgid "Edit Post"
519
- msgstr "Editer"
520
-
521
- #@ cpd
522
- #: counter-core.php:689
523
- #, php-format
524
- msgid "Time for Count per Day: <code>%s</code>."
525
- msgstr "Temps pour Count Per Day: <code>%s</code>."
526
-
527
- #@ cpd
528
- #: counter-options.php:362
529
- msgid "until User Level"
530
- msgstr "jusqu'au niveau de l'utilisateur"
531
-
532
- #@ default
533
- #: counter-core.php:730
534
- msgid "Plugin"
535
- msgstr "Plugin"
536
-
537
- #@ cpd
538
- #: counter.php:788
539
- #: notes.php:42
540
- #: notes.php:76
541
- msgid "Notes"
542
- msgstr "Notes"
543
-
544
- #@ default
545
- #: notes.php:77
546
- msgid "Action"
547
- msgstr "Action"
548
-
549
- #@ cpd
550
- #: notes.php:82
551
- msgid "add"
552
- msgstr "ajouter"
553
-
554
- #@ cpd
555
- #: notes.php:98
556
- msgid "save"
557
- msgstr "sauvegarder"
558
-
559
- #@ cpd
560
- #: notes.php:99
561
- msgid "delete"
562
- msgstr "supprimer"
563
-
564
- #@ cpd
565
- #: notes.php:110
566
- msgid "edit"
567
- msgstr "éditer"
568
-
569
- #@ cpd
570
- #: counter-options.php:514
571
- msgid "Add this value to \"Total reads\"."
572
- msgstr "Ajouter cette valeur à \"Lectures totales\"."
573
-
574
- #@ cpd
575
- #: counter.php:155
576
- #: counter.php:1197
577
- msgid "Total reads"
578
- msgstr "Lectures totales"
579
-
580
- #@ cpd
581
- #: counter.php:156
582
- #: counter.php:1198
583
- msgid "Reads today"
584
- msgstr "Lectures aujourd'hui"
585
-
586
- #@ cpd
587
- #: counter.php:157
588
- #: counter.php:1199
589
- msgid "Reads yesterday"
590
- msgstr "Lectures hier"
591
-
592
- #@ cpd
593
- #: counter-options.php:381
594
- msgid "Anonymous IP"
595
- msgstr "Adresse IP Anonyme"
596
-
597
- #@ cpd
598
- #: counter-options.php:385
599
- msgid "Cache"
600
- msgstr "Cache"
601
-
602
- #@ cpd
603
- #: counter-options.php:386
604
- msgid "I use a cache plugin. Count these visits with ajax."
605
- msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
606
-
607
- #@ cpd
608
- #: counter-options.php:465
609
- msgid "Substring of the user agent, separated by comma"
610
- msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
611
-
612
- #@ cpd
613
- #: counter-options.php:554
614
- msgid "Debug mode"
615
- msgstr "Mode Debug"
616
-
617
- #@ cpd
618
- #: counter-options.php:556
619
- msgid "Show debug informations at the bottom of all pages."
620
- msgstr "Afficher les informations de débogage au bas de toutes les pages."
621
-
622
- #@ cpd
623
- #: counter-core.php:739
624
- msgid "Visitors per Country"
625
- msgstr "Visiteurs par Pays"
626
-
627
- #@ cpd
628
- #: counter.php:353
629
- #: counter.php:1041
630
- msgid "Map"
631
- msgstr "Carte"
632
-
633
- #@ cpd
634
- #: userperspan.php:38
635
- msgid "Start"
636
- msgstr "Début"
637
-
638
- #@ cpd
639
- #: userperspan.php:40
640
- msgid "End"
641
- msgstr "Fin"
642
-
643
- #@ cpd
644
- #: userperspan.php:42
645
- msgid "PostID"
646
- msgstr "PostID"
647
-
648
- #@ cpd
649
- #: userperspan.php:50
650
- msgid "no data found"
651
- msgstr "aucune donnée trouvée"
652
-
653
- #@ cpd
654
- #: counter-options.php:730
655
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
- msgstr "Vous pouvez obtenir les données par pays pour toutes les entrées dans la base de données bei vérifier l'adresse IP à nouveau GeoIP base de données. Ceci peut prendre un certain temps!"
657
-
658
- #@ cpd
659
- #: counter-options.php:351
660
- msgid "Counter"
661
- msgstr "Compteur"
662
-
663
- #@ cpd
664
- #: counter-options.php:389
665
- msgid "Clients and referrers"
666
- msgstr "Clients et Référents"
667
-
668
- #@ cpd
669
- #: counter-options.php:392
670
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
- msgstr "Enregistrer et afficher les clients et les référents.<br />Besoin de beaucoup d'espace dans la base de données, mais vous donne des informations plus détaillées de vos visiteurs."
672
-
673
- #@ cpd
674
- #: counter-options.php:476
675
- msgid "Local URLs"
676
- msgstr "Liens Locals"
677
-
678
- #@ cpd
679
- #: counter-options.php:477
680
- msgid "Show local referrers too."
681
- msgstr "Montrer les référents locals également."
682
-
683
- #@ default
684
- #: counter-options.php:485
685
- msgid "Posts"
686
- msgstr "Articles"
687
-
688
- #@ default
689
- #: counter-options.php:485
690
- msgid "Pages"
691
- msgstr "Pages"
692
-
693
- #@ cpd
694
- #: counter.php:158
695
- #: counter.php:1200
696
- msgid "Reads last week"
697
- msgstr "Lectures - Semaine Dernière"
698
-
699
- #@ default
700
- #: counter.php:985
701
- msgid "Category"
702
- msgstr "Catégorie"
703
-
704
- #@ default
705
- #: counter.php:988
706
- msgid "Tag"
707
- msgstr "Tag"
708
-
709
- #@ default
710
- #: counter-core.php:692
711
- msgid "License"
712
- msgstr "License"
713
-
714
- #@ cpd
715
- #: counter-core.php:726
716
- #: counter.php:1201
717
- msgid "Reads per month"
718
- msgstr "Lectures par mois"
719
-
720
- #@ cpd
721
- #: counter-core.php:734
722
- msgid "Referrer"
723
- msgstr "Référent"
724
-
725
- #@ default
726
- #: counter.php:1220
727
- msgid "Title"
728
- msgstr "Titre"
729
-
730
- #@ cpd
731
- #: counter-options.php:468
732
- msgid "Referrers - Entries"
733
- msgstr "Référents - Entrées"
734
-
735
- #@ cpd
736
- #: counter-options.php:469
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
739
-
740
- #@ cpd
741
- #: counter-options.php:472
742
- msgid "Referrers - Days"
743
- msgstr "Référents - Jours"
744
-
745
- #@ cpd
746
- #: counter.php:845
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "Les %s référents des %s derniers jours:"
750
-
751
- #@ cpd
752
- #: counter-core.php:724
753
- msgid "Visitors online"
754
- msgstr "Visiteurs en ligne"
755
-
756
- #@ cpd
757
- #: counter-core.php:186
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "\"Count per Day\" mis à jour en version %s."
761
-
762
- #@ cpd
763
- #: counter-core.php:917
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "Sauvegarde échouée! Impossible d'ouvrir le fichier"
766
-
767
- #@ cpd
768
- #: counter-core.php:940
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "Sauvegarde de %s entrées en cours. Chaque point compile %s entrées"
772
-
773
- #@ cpd
774
- #: counter-core.php:1027
775
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
- msgstr "Votre dossier wp-content est protégé en écriture. Mais vous pouvez copier le contenu ce cadre dans un bloc note."
777
-
778
- #@ cpd
779
- #: counter-core.php:1033
780
- #, php-format
781
- msgid "Backup of counter table saved in %s."
782
- msgstr "ASAuve"
783
-
784
- #@ cpd
785
- #: counter-core.php:1035
786
- #, php-format
787
- msgid "Backup of counter options and collection saved in %s."
788
- msgstr "Sauvegarde des entrées du compteur et collectes enregistrés dans %s."
789
-
790
- #@ cpd
791
- #: counter-options.php:170
792
- msgid "Collection in progress..."
793
- msgstr "Collecte en cours..."
794
-
795
- #@ cpd
796
- #: counter-options.php:240
797
- msgid "Get Visitors per Post..."
798
- msgstr "Voir Visiteurs par Article..."
799
-
800
- #@ cpd
801
- #: counter-options.php:261
802
- msgid "Delete old data..."
803
- msgstr "Supprimer les anciennes données..."
804
-
805
- #@ cpd
806
- #: counter-options.php:285
807
- #, php-format
808
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
- msgstr "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s &gt; taille après = %s)."
810
-
811
- #@ cpd
812
- #: counter-options.php:294
813
- msgid "Installation of \"Count per Day\" checked"
814
- msgstr "Installation de \"Count per Day\" cochée"
815
-
816
- #@ default
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- msgid "Tools"
820
- msgstr "Outils"
821
-
822
- #@ cpd
823
- #: counter-options.php:394
824
- msgid "Save URL only, no query string."
825
- msgstr "Enregistrer le lien seulement, pas de chaine de requête."
826
-
827
- #@ cpd
828
- #: counter-options.php:419
829
- msgid "Who can see it"
830
- msgstr "Qui peut le voir?"
831
-
832
- #@ cpd
833
- #: counter-options.php:428
834
- msgid "custom"
835
- msgstr "personnalisée"
836
-
837
- #@ cpd
838
- #: counter-options.php:430
839
- msgid "and higher are allowed to see the statistics page."
840
- msgstr "et plus sont autorisés à voir la page de statistiques."
841
-
842
- #@ cpd
843
- #: counter-options.php:432
844
- #, php-format
845
- msgid "Set the %s capability %s a user need:"
846
- msgstr "Set the %s capability %s a user need:"
847
-
848
- #@ cpd
849
- #: counter-options.php:522
850
- msgid "Stylesheet"
851
- msgstr "Stylesheet"
852
-
853
- #@ cpd
854
- #: counter-options.php:525
855
- msgid "NO Stylesheet in Frontend"
856
- msgstr "PAS de Stylesheet en Frontend"
857
-
858
- #@ cpd
859
- #: counter-options.php:526
860
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
- msgstr "Ne pas charger le fichier de style \"counter.css\" en frontend."
862
-
863
- #@ cpd
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- msgid "Backup"
867
- msgstr "Sauvegarde"
868
-
869
- #@ cpd
870
- #: counter-options.php:537
871
- msgid "Entries per pass"
872
- msgstr "Entrées par passe"
873
-
874
- #@ cpd
875
- #: counter-options.php:540
876
- msgid "How many entries should be saved per pass? Default: 10000"
877
- msgstr "Combien d'entrées doivent être enregistrées par passe? Par défaut: 10000"
878
-
879
- #@ cpd
880
- #: counter-options.php:545
881
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
- msgstr "Si votre mémoire PHP limite de moins de 50 Mo et vous obtenez une page blanche ou des messages d'erreur essayez une valeur inférieure."
883
-
884
- #@ cpd
885
- #: counter-options.php:643
886
- #, php-format
887
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
- msgstr "Créer une sauvegarde du compteur %s dans le dossier wp-content (si possible en écriture)."
889
-
890
- #@ cpd
891
- #: counter-options.php:647
892
- msgid "Backup the database"
893
- msgstr "Sauvegarde de la base de données"
894
-
895
- #@ cpd
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- msgid "Collect old data"
899
- msgstr "Collecter les vieilles données"
900
-
901
- #@ cpd
902
- #: counter-options.php:679
903
- #, php-format
904
- msgid "Current size of your counter table %s is %s."
905
- msgstr "La taille actuelle de la table compteur %s est de %s."
906
-
907
- #@ cpd
908
- #: counter-options.php:681
909
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
- msgstr "Vous pouvez collecter des données anciennes et nettoyer la table compteur. <br/>Lectures et visiteurs seront sauvegardés par mois, par pays et par article.<br/> Clients et référenceurs seront supprimés."
911
-
912
- #@ cpd
913
- #: counter-options.php:686
914
- #, php-format
915
- msgid "Currently your collection contains data until %s."
916
- msgstr "Actuellement, votre collection contient des données jusqu'à %s."
917
-
918
- #@ cpd
919
- #: counter-options.php:690
920
- msgid "Normally new data will be added to the collection."
921
- msgstr "Normalement les nouvelles données seront ajoutées à la collection."
922
-
923
- #@ cpd
924
- #: counter-options.php:696
925
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
- msgstr "Supprimer une collection ancienne et en créer un nouveau qui ne contient que les données actuellement dans le tableau du compteur."
927
-
928
- #@ cpd
929
- #: counter-options.php:697
930
- #, php-format
931
- msgid "All collected data until %s will deleted."
932
- msgstr "Toutes les collectes jusqu'à %s seront supprimées"
933
-
934
- #@ cpd
935
- #: counter-options.php:702
936
- #, php-format
937
- msgid "Keep entries of last %s full months + current month in counter table."
938
- msgstr "Garder les entrées des dernièrs %s mois + mois actuel dans la table compteur."
939
-
940
- #@ cpd
941
- #: counter-options.php:761
942
- msgid "ReActivation"
943
- msgstr "Ré-Activation"
944
-
945
- #@ cpd
946
- #: counter-options.php:764
947
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
- msgstr "Ici vous pouvez lancer les fonctions d'installation manuellement.<br/> La même chose pour désactiver et réactiver le plugin."
949
-
950
- #@ cpd
951
- #: counter-options.php:769
952
- msgid "ReActivate the plugin"
953
- msgstr "Ré-Activer le Plugin"
954
-
955
- #@ cpd
956
- #: counter.php:165
957
- #: counter.php:899
958
- msgid "Visitors"
959
- msgstr "Visiteurs"
960
-
961
- #@ cpd
962
- #: counter.php:168
963
- #: counter.php:169
964
- msgid "Most visited day"
965
- msgstr "Le jours le plus visité"
966
-
967
- #@ cpd
968
- #: counter.php:1239
969
- msgid "drag and drop to sort"
970
- msgstr "drag et drop pour trier"
971
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Bjork - Habbzone.fr <bjork@habbzone.fr>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: French\n"
14
+ "X-Poedit-Country: FRANCE\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Paramètres mis à jour"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Base de données nettoyée. %s lignes supprimées."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "Désinstaller Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Table %s supprimée"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:135
48
+ msgid "Options deleted"
49
+ msgstr "Paramètres supprimés"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ msgid "Uninstall"
55
+ msgstr "Désinstaller"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:317
59
+ msgid "Click here"
60
+ msgstr "Cliquez ici"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:317
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "pour terminer de désinstaller et désactiver \"Count per Day\"."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:355
69
+ msgid "Online time"
70
+ msgstr "Temps en ligne"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:356
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:359
79
+ msgid "Logged on Users"
80
+ msgstr "Utilisateurs Connectés"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:361
84
+ msgid "count too"
85
+ msgstr "compter aussi"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:373
89
+ msgid "Auto counter"
90
+ msgstr "Compteur automatique"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:374
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:377
99
+ msgid "Bots to ignore"
100
+ msgstr "Robots à ignorer"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:561
104
+ msgid "Update options"
105
+ msgstr "Mettre à jour les options"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ msgid "Clean the database"
111
+ msgstr "Nettoyer la base de données"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:659
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "Vous pouvez nettoyer la table du compteur en supprimant le \"spam\".<br />Si vous ajoutez de nouveaux robots au dessus les anciens \"spams\" restent dans la base de données.<br />Ici, vous pouvez exécuter le filtre robot de nouveau et supprimer les visites des robots."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:799
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:800
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:803
130
+ msgid "WARNING"
131
+ msgstr "ATTENTION"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:804
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
137
+
138
+ #@ cpd
139
+ #: counter-options.php:806
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ msgid "Yes"
147
+ msgstr "Oui"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:810
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ msgid "Statistics"
158
+ msgstr "Statistiques"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ msgid "Total visitors"
166
+ msgstr "Visiteurs Total"
167
+
168
+ #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ msgid "Visitors currently online"
172
+ msgstr "Visiteur actuellement en ligne"
173
+
174
+ #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ msgid "Visitors today"
178
+ msgstr "Visiteurs aujourd'hui"
179
+
180
+ #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ msgid "Visitors yesterday"
184
+ msgstr "Visiteurs hier"
185
+
186
+ #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ msgid "Visitors last week"
190
+ msgstr "Visiteurs la semaine dernière"
191
+
192
+ #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ msgid "Counter starts on"
197
+ msgstr "Compteur activé le "
198
+
199
+ #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ msgid "Visitors per day"
207
+ msgstr "Visiteurs par jour"
208
+
209
+ #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ msgid "Visitors per month"
213
+ msgstr "Visiteurs par mois"
214
+
215
+ #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ msgid "Visitors per post"
219
+ msgstr "Visiteurs par articles"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:122
223
+ msgid "Counter reseted."
224
+ msgstr "Compteur remis à zéro."
225
+
226
+ #@ cpd
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
+ msgid "How many posts do you want to see on dashboard page?"
230
+ msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:442
234
+ msgid "Latest Counts - Posts"
235
+ msgstr "Dernier Comptes - Articles"
236
+
237
+ #@ cpd
238
+ #: counter-options.php:446
239
+ msgid "Latest Counts - Days"
240
+ msgstr "Dernier Compte - Jours"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
+ msgid "How many days do you want look back?"
247
+ msgstr "Combien de jours vous voulez regarder en arrière?"
248
+
249
+ #@ cpd
250
+ #: counter-options.php:488
251
+ msgid "Show in lists"
252
+ msgstr "Montrer dans la liste"
253
+
254
+ #@ cpd
255
+ #: counter-options.php:489
256
+ msgid "Show \"Reads per Post\" in a new column in post management views."
257
+ msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
258
+
259
+ #@ cpd
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
+ msgid "Reset the counter"
263
+ msgstr "Remise à zéro du compteur"
264
+
265
+ #@ cpd
266
+ #: counter-options.php:780
267
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
+ msgstr "Vous pouvez réinitialiser le compteur en vidant la table. TOUT à 0!<br />Faites un Backup si vous avez besoin des données actuelles!"
269
+
270
+ #@ cpd
271
+ #: counter.php:672
272
+ #, php-format
273
+ msgid "The %s most visited posts in last %s days:"
274
+ msgstr "Les %s articles les plus visités dans les derniers %s jours:"
275
+
276
+ #@ default
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
+ msgid "Settings"
281
+ msgstr "Options"
282
+
283
+ #@ cpd
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
+ msgid "Reads"
289
+ msgstr "Lectures"
290
+
291
+ #@ cpd
292
+ #: counter-core.php:728
293
+ msgid "Latest Counts"
294
+ msgstr "Dernier Comptes"
295
+
296
+ #@ cpd
297
+ #: counter-options.php:450
298
+ msgid "Chart - Days"
299
+ msgstr "Graphique - Jours"
300
+
301
+ #@ cpd
302
+ #: counter-options.php:454
303
+ msgid "Chart - Height"
304
+ msgstr "Graphique - Hauteur"
305
+
306
+ #@ cpd
307
+ #: counter-options.php:455
308
+ msgid "Height of the biggest bar"
309
+ msgstr "Hauteur de la plus grande barre"
310
+
311
+ #@ cpd
312
+ #: counter.php:1196
313
+ msgid "This post"
314
+ msgstr "Cet article"
315
+
316
+ #@ default
317
+ #: counter-options.php:403
318
+ msgid "Dashboard"
319
+ msgstr "Tableau de bord"
320
+
321
+ #@ cpd
322
+ #: counter.php:262
323
+ msgid "Reads per day"
324
+ msgstr "Lectures par jour"
325
+
326
+ #@ cpd
327
+ #: counter-options.php:60
328
+ #, php-format
329
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
+ msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
331
+
332
+ #@ cpd
333
+ #: counter-options.php:65
334
+ msgid "update next"
335
+ msgstr "mettre à jour le prochain"
336
+
337
+ #@ cpd
338
+ #: counter-options.php:727
339
+ msgid "GeoIP - Countries"
340
+ msgstr "GeoIP - Pays"
341
+
342
+ #@ cpd
343
+ #: counter-options.php:736
344
+ msgid "Update old counter data"
345
+ msgstr "Mettre à jour les données du vieux compteur"
346
+
347
+ #@ cpd
348
+ #: counter-options.php:748
349
+ msgid "Update GeoIP database"
350
+ msgstr "Mettre à jour les données de GeoIP"
351
+
352
+ #@ cpd
353
+ #: counter-options.php:743
354
+ msgid "Download a new version of GeoIP.dat file."
355
+ msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
356
+
357
+ #@ cpd
358
+ #: counter-options.php:753
359
+ msgid "More informations about GeoIP"
360
+ msgstr "Plus d'infos sur GeoIP"
361
+
362
+ #@ cpd
363
+ #: counter-core.php:738
364
+ msgid "Reads per Country"
365
+ msgstr "Lectures par Pays"
366
+
367
+ #@ cpd
368
+ #: geoip/geoip.php:117
369
+ msgid "New GeoIP database installed."
370
+ msgstr "Nouvelle base de données de GeoIp installée."
371
+
372
+ #@ cpd
373
+ #: geoip/geoip.php:119
374
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
+ msgstr "Désolé,une erreur est survenue. Merci de réessayer ou de vérifier que les droit d'accès du dossier\"geoip\" sont mis sur 777."
376
+
377
+ #@ cpd
378
+ #: geoip/geoip.php:93
379
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
+ msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
381
+
382
+ #@ cpd
383
+ #: counter-options.php:459
384
+ msgid "Countries"
385
+ msgstr "Pays"
386
+
387
+ #@ cpd
388
+ #: counter-options.php:460
389
+ msgid "How many countries do you want to see on dashboard page?"
390
+ msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
391
+
392
+ #@ cpd
393
+ #: counter-options.php:102
394
+ #, php-format
395
+ msgid "Mass Bots cleaned. %s counts deleted."
396
+ msgstr "Robots nettoyés en masse. %s comptes supprimés."
397
+
398
+ #@ cpd
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
+ msgid "Mass Bots"
402
+ msgstr "Robots en masse"
403
+
404
+ #@ cpd
405
+ #: counter-options.php:584
406
+ #, php-format
407
+ msgid "Show all IPs with more than %s page views per day"
408
+ msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
409
+
410
+ #@ cpd
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
+ msgid "show"
415
+ msgstr "montrer"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
+ #, php-format
421
+ msgid "Delete these %s counts"
422
+ msgstr "Supprimer ces %s comptes"
423
+
424
+ #@ cpd
425
+ #: counter.php:821
426
+ msgid "Other"
427
+ msgstr "Autre"
428
+
429
+ #@ default
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
+ #: userperspan.php:63
433
+ msgid "Front page displays"
434
+ msgstr "Page d'accueil affiche"
435
+
436
+ #@ cpd
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
+ msgid "Browsers"
440
+ msgstr "Navigateurs"
441
+
442
+ #@ cpd
443
+ #: counter-options.php:593
444
+ msgid "IP"
445
+ msgstr "IP"
446
+
447
+ #@ cpd
448
+ #@ default
449
+ #: counter-options.php:594
450
+ #: notes.php:75
451
+ msgid "Date"
452
+ msgstr "Date"
453
+
454
+ #@ cpd
455
+ #: counter-options.php:595
456
+ msgid "Client"
457
+ msgstr "Client"
458
+
459
+ #@ cpd
460
+ #: counter-options.php:596
461
+ msgid "Views"
462
+ msgstr "Vues"
463
+
464
+ #@ cpd
465
+ #: counter-options.php:497
466
+ msgid "Start Values"
467
+ msgstr "Valeurs de départ"
468
+
469
+ #@ cpd
470
+ #: counter-options.php:501
471
+ msgid "Here you can change the date of first count and add a start count."
472
+ msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
473
+
474
+ #@ cpd
475
+ #: counter-options.php:505
476
+ msgid "Start date"
477
+ msgstr "Date de départ"
478
+
479
+ #@ cpd
480
+ #: counter-options.php:506
481
+ msgid "Your old Counter starts at?"
482
+ msgstr "Votre vieux compteur commence à?"
483
+
484
+ #@ cpd
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
+ msgid "Start count"
488
+ msgstr "Commencer le compte"
489
+
490
+ #@ cpd
491
+ #: counter-options.php:510
492
+ msgid "Add this value to \"Total visitors\"."
493
+ msgstr "Ajouter cette valeur à \"visiteurs totals\"."
494
+
495
+ #@ cpd
496
+ #: counter-options.php:714
497
+ msgid "Support"
498
+ msgstr "Support"
499
+
500
+ #@ cpd
501
+ #: counter-core.php:690
502
+ msgid "Bug? Problem? Question? Hint? Praise?"
503
+ msgstr "Bug? Problème? Question? Allusion? Hommage?"
504
+
505
+ #@ cpd
506
+ #: counter-core.php:691
507
+ #, php-format
508
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
+ msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
510
+
511
+ #@ default
512
+ #: counter.php:786
513
+ msgid "Show"
514
+ msgstr "Montrer"
515
+
516
+ #@ default
517
+ #: counter.php:976
518
+ msgid "Edit Post"
519
+ msgstr "Editer"
520
+
521
+ #@ cpd
522
+ #: counter-core.php:689
523
+ #, php-format
524
+ msgid "Time for Count per Day: <code>%s</code>."
525
+ msgstr "Temps pour Count Per Day: <code>%s</code>."
526
+
527
+ #@ cpd
528
+ #: counter-options.php:362
529
+ msgid "until User Level"
530
+ msgstr "jusqu'au niveau de l'utilisateur"
531
+
532
+ #@ default
533
+ #: counter-core.php:730
534
+ msgid "Plugin"
535
+ msgstr "Plugin"
536
+
537
+ #@ cpd
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
541
+ msgid "Notes"
542
+ msgstr "Notes"
543
+
544
+ #@ default
545
+ #: notes.php:77
546
+ msgid "Action"
547
+ msgstr "Action"
548
+
549
+ #@ cpd
550
+ #: notes.php:82
551
+ msgid "add"
552
+ msgstr "ajouter"
553
+
554
+ #@ cpd
555
+ #: notes.php:98
556
+ msgid "save"
557
+ msgstr "sauvegarder"
558
+
559
+ #@ cpd
560
+ #: notes.php:99
561
+ msgid "delete"
562
+ msgstr "supprimer"
563
+
564
+ #@ cpd
565
+ #: notes.php:110
566
+ msgid "edit"
567
+ msgstr "éditer"
568
+
569
+ #@ cpd
570
+ #: counter-options.php:514
571
+ msgid "Add this value to \"Total reads\"."
572
+ msgstr "Ajouter cette valeur à \"Lectures totales\"."
573
+
574
+ #@ cpd
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
+ msgid "Total reads"
578
+ msgstr "Lectures totales"
579
+
580
+ #@ cpd
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
+ msgid "Reads today"
584
+ msgstr "Lectures aujourd'hui"
585
+
586
+ #@ cpd
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
+ msgid "Reads yesterday"
590
+ msgstr "Lectures hier"
591
+
592
+ #@ cpd
593
+ #: counter-options.php:381
594
+ msgid "Anonymous IP"
595
+ msgstr "Adresse IP Anonyme"
596
+
597
+ #@ cpd
598
+ #: counter-options.php:385
599
+ msgid "Cache"
600
+ msgstr "Cache"
601
+
602
+ #@ cpd
603
+ #: counter-options.php:386
604
+ msgid "I use a cache plugin. Count these visits with ajax."
605
+ msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
606
+
607
+ #@ cpd
608
+ #: counter-options.php:465
609
+ msgid "Substring of the user agent, separated by comma"
610
+ msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
611
+
612
+ #@ cpd
613
+ #: counter-options.php:554
614
+ msgid "Debug mode"
615
+ msgstr "Mode Debug"
616
+
617
+ #@ cpd
618
+ #: counter-options.php:556
619
+ msgid "Show debug informations at the bottom of all pages."
620
+ msgstr "Afficher les informations de débogage au bas de toutes les pages."
621
+
622
+ #@ cpd
623
+ #: counter-core.php:739
624
+ msgid "Visitors per Country"
625
+ msgstr "Visiteurs par Pays"
626
+
627
+ #@ cpd
628
+ #: counter.php:353
629
+ #: counter.php:1041
630
+ msgid "Map"
631
+ msgstr "Carte"
632
+
633
+ #@ cpd
634
+ #: userperspan.php:38
635
+ msgid "Start"
636
+ msgstr "Début"
637
+
638
+ #@ cpd
639
+ #: userperspan.php:40
640
+ msgid "End"
641
+ msgstr "Fin"
642
+
643
+ #@ cpd
644
+ #: userperspan.php:42
645
+ msgid "PostID"
646
+ msgstr "PostID"
647
+
648
+ #@ cpd
649
+ #: userperspan.php:50
650
+ msgid "no data found"
651
+ msgstr "aucune donnée trouvée"
652
+
653
+ #@ cpd
654
+ #: counter-options.php:730
655
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
+ msgstr "Vous pouvez obtenir les données par pays pour toutes les entrées dans la base de données bei vérifier l'adresse IP à nouveau GeoIP base de données. Ceci peut prendre un certain temps!"
657
+
658
+ #@ cpd
659
+ #: counter-options.php:351
660
+ msgid "Counter"
661
+ msgstr "Compteur"
662
+
663
+ #@ cpd
664
+ #: counter-options.php:389
665
+ msgid "Clients and referrers"
666
+ msgstr "Clients et Référents"
667
+
668
+ #@ cpd
669
+ #: counter-options.php:392
670
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
+ msgstr "Enregistrer et afficher les clients et les référents.<br />Besoin de beaucoup d'espace dans la base de données, mais vous donne des informations plus détaillées de vos visiteurs."
672
+
673
+ #@ cpd
674
+ #: counter-options.php:476
675
+ msgid "Local URLs"
676
+ msgstr "Liens Locals"
677
+
678
+ #@ cpd
679
+ #: counter-options.php:477
680
+ msgid "Show local referrers too."
681
+ msgstr "Montrer les référents locals également."
682
+
683
+ #@ default
684
+ #: counter-options.php:485
685
+ msgid "Posts"
686
+ msgstr "Articles"
687
+
688
+ #@ default
689
+ #: counter-options.php:485
690
+ msgid "Pages"
691
+ msgstr "Pages"
692
+
693
+ #@ cpd
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ msgid "Reads last week"
697
+ msgstr "Lectures - Semaine Dernière"
698
+
699
+ #@ default
700
+ #: counter.php:985
701
+ msgid "Category"
702
+ msgstr "Catégorie"
703
+
704
+ #@ default
705
+ #: counter.php:988
706
+ msgid "Tag"
707
+ msgstr "Tag"
708
+
709
+ #@ default
710
+ #: counter-core.php:692
711
+ msgid "License"
712
+ msgstr "License"
713
+
714
+ #@ cpd
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ msgid "Reads per month"
718
+ msgstr "Lectures par mois"
719
+
720
+ #@ cpd
721
+ #: counter-core.php:734
722
+ msgid "Referrer"
723
+ msgstr "Référent"
724
+
725
+ #@ default
726
+ #: counter.php:1220
727
+ msgid "Title"
728
+ msgstr "Titre"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:468
732
+ msgid "Referrers - Entries"
733
+ msgstr "Référents - Entrées"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:469
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:472
742
+ msgid "Referrers - Days"
743
+ msgstr "Référents - Jours"
744
+
745
+ #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "Les %s référents des %s derniers jours:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:724
753
+ msgid "Visitors online"
754
+ msgstr "Visiteurs en ligne"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" mis à jour en version %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Sauvegarde échouée! Impossible d'ouvrir le fichier"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Sauvegarde de %s entrées en cours. Chaque point compile %s entrées"
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Votre dossier wp-content est protégé en écriture. Mais vous pouvez copier le contenu ce cadre dans un bloc note."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "ASAuve"
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Sauvegarde des entrées du compteur et collectes enregistrés dans %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Collecte en cours..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Voir Visiteurs par Article..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Supprimer les anciennes données..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s &gt; taille après = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Installation de \"Count per Day\" cochée"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Outils"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Enregistrer le lien seulement, pas de chaine de requête."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Qui peut le voir?"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "personnalisée"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "et plus sont autorisés à voir la page de statistiques."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Set the %s capability %s a user need:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Stylesheet"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "PAS de Stylesheet en Frontend"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Ne pas charger le fichier de style \"counter.css\" en frontend."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Sauvegarde"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Entrées par passe"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Combien d'entrées doivent être enregistrées par passe? Par défaut: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Si votre mémoire PHP limite de moins de 50 Mo et vous obtenez une page blanche ou des messages d'erreur essayez une valeur inférieure."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Créer une sauvegarde du compteur %s dans le dossier wp-content (si possible en écriture)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Sauvegarde de la base de données"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Collecter les vieilles données"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "La taille actuelle de la table compteur %s est de %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Vous pouvez collecter des données anciennes et nettoyer la table compteur. <br/>Lectures et visiteurs seront sauvegardés par mois, par pays et par article.<br/> Clients et référenceurs seront supprimés."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "Actuellement, votre collection contient des données jusqu'à %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Normalement les nouvelles données seront ajoutées à la collection."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Supprimer une collection ancienne et en créer un nouveau qui ne contient que les données actuellement dans le tableau du compteur."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Toutes les collectes jusqu'à %s seront supprimées"
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Garder les entrées des dernièrs %s mois + mois actuel dans la table compteur."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Ré-Activation"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Ici vous pouvez lancer les fonctions d'installation manuellement.<br/> La même chose pour désactiver et réactiver le plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Ré-Activer le Plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Visiteurs"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Le jours le plus visité"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "drag et drop pour trier"
971
+
locale/cpd-hi_IN_HI.po CHANGED
@@ -1,971 +1,971 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v2.15\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2012-05-23 18:31+0530\n"
7
- "Last-Translator: shivangi <shivangi@outshinesolutions.com>\n"
8
- "Language-Team: Team Outshine <ash.pr@outsshinesolutions.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Hindi\n"
14
- "X-Poedit-Country: INDIA\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "विकल्प अद्यतन"
25
-
26
- #@ cpd
27
- #: counter-options.php:60
28
- #, php-format
29
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
- msgstr "देश अपडेट. <b>%s </b> बिना देश%s में प्रविष्टियों को छोड़ दिया"
31
-
32
- #@ cpd
33
- #: counter-options.php:65
34
- msgid "update next"
35
- msgstr "अगले अद्यतन"
36
-
37
- #@ cpd
38
- #: counter-options.php:102
39
- #, php-format
40
- msgid "Mass Bots cleaned. %s counts deleted."
41
- msgstr "मास Bots साफ. %s के मायने रखता है नष्ट कर दिया."
42
-
43
- #@ cpd
44
- #: counter-options.php:112
45
- #, php-format
46
- msgid "Database cleaned. %s rows deleted."
47
- msgstr "डेटाबेस साफ. %s पंक्तियों को नष्ट कर दिया."
48
-
49
- #@ cpd
50
- #: counter-options.php:122
51
- msgid "Counter reseted."
52
- msgstr "Reseted का मुकाबला."
53
-
54
- #@ cpd
55
- #: counter-options.php:127
56
- #: counter-options.php:810
57
- msgid "UNINSTALL Count per Day"
58
- msgstr "दिन प्रति गणना की स्थापना रद्द"
59
-
60
- #@ cpd
61
- #: counter-options.php:132
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #, php-format
65
- msgid "Table %s deleted"
66
- msgstr "टेबल%s नष्ट कर दिया है"
67
-
68
- #@ cpd
69
- #: counter-options.php:135
70
- msgid "Options deleted"
71
- msgstr "विकल्प नष्ट कर दिया"
72
-
73
- #@ cpd
74
- #: counter-options.php:316
75
- #: counter-options.php:796
76
- msgid "Uninstall"
77
- msgstr "स्थापना रद्द करें"
78
-
79
- #@ cpd
80
- #: counter-options.php:317
81
- msgid "Click here"
82
- msgstr "यहाँ क्लिक करें"
83
-
84
- #@ cpd
85
- #: counter-options.php:317
86
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
- msgstr "स्थापना रद्द खत्म और \"गणना प्रति दिन \" निष्क्रिय."
88
-
89
- #@ cpd
90
- #: counter-options.php:351
91
- msgid "Counter"
92
- msgstr "काउंटर"
93
-
94
- #@ cpd
95
- #: counter-options.php:355
96
- msgid "Online time"
97
- msgstr "ऑनलाइन समय"
98
-
99
- #@ cpd
100
- #: counter-options.php:356
101
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
- msgstr "ऑनलाइन काउंटर के लिए सेकंड. डैशबोर्ड पृष्ठ पर \"आगंतुकों ऑनलाइन \" के लिए प्रयुक्त."
103
-
104
- #@ cpd
105
- #: counter-options.php:359
106
- msgid "Logged on Users"
107
- msgstr "उपयोगकर्ताओं पर लॉग इन"
108
-
109
- #@ cpd
110
- #: counter-options.php:361
111
- msgid "count too"
112
- msgstr "गिनती"
113
-
114
- #@ cpd
115
- #: counter-options.php:362
116
- msgid "until User Level"
117
- msgstr "जब तक उपयोगकर्ता स्तर"
118
-
119
- #@ cpd
120
- #: counter-options.php:373
121
- msgid "Auto counter"
122
- msgstr "ऑटो काउंटर"
123
-
124
- #@ cpd
125
- #: counter-options.php:374
126
- msgid "Counts automatically single-posts and pages, no changes on template needed."
127
- msgstr "स्वचालित रूप से मायने रखता है एकल पोस्ट और पृष्ठों टेम्पलेट पर कोई परिवर्तन की जरूरत है."
128
-
129
- #@ cpd
130
- #: counter-options.php:377
131
- msgid "Bots to ignore"
132
- msgstr "उपेक्षा bots"
133
-
134
- #@ cpd
135
- #: counter-options.php:381
136
- msgid "Anonymous IP"
137
- msgstr "गुमनाम आईपी"
138
-
139
- #@ cpd
140
- #: counter-options.php:385
141
- msgid "Cache"
142
- msgstr "कैश"
143
-
144
- #@ cpd
145
- #: counter-options.php:386
146
- msgid "I use a cache plugin. Count these visits with ajax."
147
- msgstr "मैं एक कैश प्लगइन का उपयोग करें. AJAX के साथ इन यात्राओं की गणना."
148
-
149
- #@ cpd
150
- #: counter-options.php:389
151
- msgid "Clients and referrers"
152
- msgstr "ग्राहक और सन्दर्भदाता"
153
-
154
- #@ cpd
155
- #: counter-options.php:392
156
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
157
- msgstr "सहेजें और दिखाने के ग्राहकों और सन्दर्भदाता. डेटाबेस में अंतरिक्ष के एक बहुत जरूरत है.<br/> लेकिन तुम अपने आगंतुकों के और अधिक विस्तृत informations देता है."
158
-
159
- #@ cpd
160
- #: counter-core.php:639
161
- #: counter-options.php:392
162
- #: counter.php:159
163
- #: counter.php:875
164
- msgid "Reads"
165
- msgstr "पढ़ता"
166
-
167
- #@ default
168
- #: counter-options.php:403
169
- msgid "Dashboard"
170
- msgstr "डैशबोर्ड"
171
-
172
- #@ cpd
173
- #: counter-core.php:727
174
- #: counter-options.php:438
175
- msgid "Visitors per post"
176
- msgstr "पोस्ट प्रति आगंतुक"
177
-
178
- #@ cpd
179
- #: counter-options.php:439
180
- #: counter-options.php:443
181
- msgid "How many posts do you want to see on dashboard page?"
182
- msgstr "कितने पोस्ट आप डैशबोर्ड पृष्ठ पर देखना चाहते हैं?"
183
-
184
- #@ cpd
185
- #: counter-options.php:442
186
- msgid "Latest Counts - Posts"
187
- msgstr "नवीनतम गणना - डाक"
188
-
189
- #@ cpd
190
- #: counter-options.php:446
191
- msgid "Latest Counts - Days"
192
- msgstr "नवीनतम गणना - दिन"
193
-
194
- #@ cpd
195
- #: counter-options.php:447
196
- #: counter-options.php:451
197
- #: counter-options.php:473
198
- msgid "How many days do you want look back?"
199
- msgstr "कितने दिन तुम चाहते हो वापस देखो?"
200
-
201
- #@ cpd
202
- #: counter-options.php:450
203
- msgid "Chart - Days"
204
- msgstr "चार्ट - दिन"
205
-
206
- #@ cpd
207
- #: counter-options.php:454
208
- msgid "Chart - Height"
209
- msgstr "चार्ट ऊंचाई"
210
-
211
- #@ cpd
212
- #: counter-options.php:455
213
- msgid "Height of the biggest bar"
214
- msgstr "सबसे बड़ी पट्टी की ऊँचाई"
215
-
216
- #@ cpd
217
- #: counter-options.php:459
218
- msgid "Countries"
219
- msgstr "देश"
220
-
221
- #@ cpd
222
- #: counter-options.php:460
223
- msgid "How many countries do you want to see on dashboard page?"
224
- msgstr "आप कितने देश डैशबोर्ड पृष्ठ पर देखना चाहते हैं?"
225
-
226
- #@ cpd
227
- #: counter-core.php:733
228
- #: counter-options.php:464
229
- msgid "Browsers"
230
- msgstr "ब्राउज़र्स"
231
-
232
- #@ cpd
233
- #: counter-options.php:465
234
- msgid "Substring of the user agent, separated by comma"
235
- msgstr "उपयोगकर्ता एजेंट की substring, अल्पविराम के द्वारा अलग"
236
-
237
- #@ cpd
238
- #: counter-options.php:476
239
- msgid "Local URLs"
240
- msgstr "स्थानीय यूआरएल"
241
-
242
- #@ cpd
243
- #: counter-options.php:477
244
- msgid "Show local referrers too."
245
- msgstr " स्थानीय सन्दर्भदाता भी दिखाएँ."
246
-
247
- #@ default
248
- #: counter-options.php:485
249
- msgid "Posts"
250
- msgstr "पोस्ट"
251
-
252
- #@ default
253
- #: counter-options.php:485
254
- msgid "Pages"
255
- msgstr "पन्ने"
256
-
257
- #@ cpd
258
- #: counter-options.php:488
259
- msgid "Show in lists"
260
- msgstr "सूचियों में दिखाएँ "
261
-
262
- #@ cpd
263
- #: counter-options.php:489
264
- msgid "Show \"Reads per Post\" in a new column in post management views."
265
- msgstr "\"दिखाएँ पढ़ता प्रति पोस्ट \"के बाद प्रबंधन दृश्य में एक नया स्तंभ."
266
-
267
- #@ cpd
268
- #: counter-options.php:497
269
- msgid "Start Values"
270
- msgstr "मान प्रारंभ करें"
271
-
272
- #@ cpd
273
- #: counter-options.php:501
274
- msgid "Here you can change the date of first count and add a start count."
275
- msgstr "यहाँ आप पहले गिनती की तारीख बदलने के लिए और एक शुरुआत संख्या को जोड़ सकते हैं."
276
-
277
- #@ cpd
278
- #: counter-options.php:505
279
- msgid "Start date"
280
- msgstr "प्रारंभ दिनांक"
281
-
282
- #@ cpd
283
- #: counter-options.php:506
284
- msgid "Your old Counter starts at?"
285
- msgstr "अपने पुराने काउंटर पर शुरू होता है?"
286
-
287
- #@ cpd
288
- #: counter-options.php:509
289
- #: counter-options.php:513
290
- msgid "Start count"
291
- msgstr "गिनती प्रारंभ करें"
292
-
293
- #@ cpd
294
- #: counter-options.php:510
295
- msgid "Add this value to \"Total visitors\"."
296
- msgstr " \"कुल आगंतुकों \" इस मूल्य में जोड़ें."
297
-
298
- #@ cpd
299
- #: counter-options.php:514
300
- msgid "Add this value to \"Total reads\"."
301
- msgstr "\" कुल पढ़ता है\" इस मूल्य में जोड़ें."
302
-
303
- #@ cpd
304
- #: counter-options.php:554
305
- msgid "Debug mode"
306
- msgstr "मोड डीबग"
307
-
308
- #@ cpd
309
- #: counter-options.php:556
310
- msgid "Show debug informations at the bottom of all pages."
311
- msgstr "डिबग informations के सभी पृष्ठों के नीचे है."
312
-
313
- #@ cpd
314
- #: counter-options.php:561
315
- msgid "Update options"
316
- msgstr "विकल्प अपडेट"
317
-
318
- #@ cpd
319
- #: counter-options.php:727
320
- msgid "GeoIP - Countries"
321
- msgstr "GeoIP - देश"
322
-
323
- #@ cpd
324
- #: counter-options.php:736
325
- msgid "Update old counter data"
326
- msgstr "पुराने काउंटर डेटा अद्यतन"
327
-
328
- #@ cpd
329
- #: counter-options.php:730
330
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
331
- msgstr "GeoIP डेटाबेस के खिलाफ आईपी पते की जाँच करके आप डेटाबेस में सभी प्रविष्टियों के लिए देश के डेटा प्राप्त कर सकते हैं. यह एक समय लग सकता है!"
332
-
333
- #@ cpd
334
- #: counter-options.php:748
335
- msgid "Update GeoIP database"
336
- msgstr "अपडेट GeoIP डेटाबेस"
337
-
338
- #@ cpd
339
- #: counter-options.php:743
340
- msgid "Download a new version of GeoIP.dat file."
341
- msgstr "GeoIP.dat फ़ाइल का एक नया संस्करण डाउनलोड करें."
342
-
343
- #@ cpd
344
- #: counter-options.php:753
345
- msgid "More informations about GeoIP"
346
- msgstr "GeoIP के बारे में अधिक informations"
347
-
348
- #@ cpd
349
- #: counter-options.php:580
350
- #: massbots.php:35
351
- msgid "Mass Bots"
352
- msgstr "मास Bots"
353
-
354
- #@ cpd
355
- #: counter-options.php:584
356
- #, php-format
357
- msgid "Show all IPs with more than %s page views per day"
358
- msgstr "%s से अधिक दिन प्रति पृष्ठ विचारों के साथ सभी आईपी दिखाएँ"
359
-
360
- #@ cpd
361
- #: counter-options.php:585
362
- #: notes.php:71
363
- #: userperspan.php:44
364
- msgid "show"
365
- msgstr "दिखाना"
366
-
367
- #@ cpd
368
- #: counter-options.php:593
369
- msgid "IP"
370
- msgstr "IP"
371
-
372
- #@ cpd
373
- #@ default
374
- #: counter-options.php:594
375
- #: notes.php:75
376
- msgid "Date"
377
- msgstr "तारीख"
378
-
379
- #@ cpd
380
- #: counter-options.php:595
381
- msgid "Client"
382
- msgstr "ग्राहक"
383
-
384
- #@ cpd
385
- #: counter-options.php:596
386
- msgid "Views"
387
- msgstr "दृश्य"
388
-
389
- #@ cpd
390
- #: counter-options.php:611
391
- #: counter-options.php:627
392
- #, php-format
393
- msgid "Delete these %s counts"
394
- msgstr "%s गिना जाता है हटाएँ"
395
-
396
- #@ cpd
397
- #: counter-options.php:656
398
- #: counter-options.php:665
399
- msgid "Clean the database"
400
- msgstr "डेटाबेस साफ करें"
401
-
402
- #@ cpd
403
- #: counter-options.php:659
404
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
405
- msgstr "आप द्वारा काउंटर मेज साफ कर सकते हैं \"स्पैम डेटा \" <br. यदि आप पुराने \"स्पैम डेटा \" डेटाबेस में रहता है. <br ऊपर नई बॉट /> यहाँ आप चला सकते हैं बॉट फिल्टर को हटानाफिर और bots की यात्राओं को हटा दें."
406
-
407
- #@ cpd
408
- #: counter-options.php:777
409
- #: counter-options.php:787
410
- msgid "Reset the counter"
411
- msgstr "काउंटर रीसेट करें"
412
-
413
- #@ cpd
414
- #: counter-options.php:780
415
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
416
- msgstr "आप खाली मेज द्वारा काउंटर पुनर्स्थापित कर सकते हैं. सभी 0 से <br एक बैकअप अगर आप मौजूदा डेटा की जरूरत है!"
417
-
418
- #@ cpd
419
- #: counter-options.php:799
420
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
421
- msgstr "अगर \"गणना प्रति दिन \" केवल अक्षम है डेटाबेस में तालिकाओं को संरक्षित किया जाएगा."
422
-
423
- #@ cpd
424
- #: counter-options.php:800
425
- msgid "Here you can delete the tables and disable \"Count per Day\"."
426
- msgstr "यहाँ आप तालिका को हटा सकते हैं और अक्षम \"\" गणना प्रति दिन कर सकते हैं."
427
-
428
- #@ cpd
429
- #: counter-options.php:803
430
- msgid "WARNING"
431
- msgstr "चेतावनी"
432
-
433
- #@ cpd
434
- #: counter-options.php:804
435
- msgid "These tables (with ALL counter data) will be deleted."
436
- msgstr "इन तालिकाओं (सभी काउंटर डेटा के साथ) को हटा दिया जाएगा."
437
-
438
- #@ cpd
439
- #: counter-options.php:806
440
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
441
- msgstr "अगर \"गणना प्रति दिन \" फिर से स्थापित, काउंटर 0 में शुरू होता है."
442
-
443
- #@ cpd
444
- #: counter-options.php:786
445
- #: counter-options.php:809
446
- msgid "Yes"
447
- msgstr "हां"
448
-
449
- #@ cpd
450
- #: counter-options.php:810
451
- msgid "You are sure to disable Count per Day and delete all data?"
452
- msgstr "आप प्रति दिन अक्षम गणना और सभी डेटा को हटाने के लिए सुनिश्चित कर रहे हैं?"
453
-
454
- #@ cpd
455
- #: counter-options.php:714
456
- msgid "Support"
457
- msgstr "समर्थन"
458
-
459
- #@ cpd
460
- #: counter.php:155
461
- #: counter.php:1197
462
- msgid "Total reads"
463
- msgstr "कुल पढ़ता"
464
-
465
- #@ cpd
466
- #: counter.php:156
467
- #: counter.php:1198
468
- msgid "Reads today"
469
- msgstr "आज पढ़ता है"
470
-
471
- #@ cpd
472
- #: counter.php:157
473
- #: counter.php:1199
474
- msgid "Reads yesterday"
475
- msgstr "कल पढ़ता है"
476
-
477
- #@ cpd
478
- #: counter.php:158
479
- #: counter.php:1200
480
- msgid "Reads last week"
481
- msgstr "पिछले हफ्ते पढ़ता है"
482
-
483
- #@ cpd
484
- #: counter-core.php:723
485
- #: counter.php:160
486
- #: counter.php:1010
487
- #: counter.php:1202
488
- msgid "Total visitors"
489
- msgstr "कुल आगंतुकों"
490
-
491
- #@ cpd
492
- #: counter.php:161
493
- #: counter.php:1208
494
- msgid "Visitors currently online"
495
- msgstr "वर्तमान में ऑनलाइन आगंतुकों"
496
-
497
- #@ cpd
498
- #: counter.php:162
499
- #: counter.php:1203
500
- msgid "Visitors today"
501
- msgstr "आज आगंतुकों"
502
-
503
- #@ cpd
504
- #: counter.php:163
505
- #: counter.php:1204
506
- msgid "Visitors yesterday"
507
- msgstr "कल आगंतुकों"
508
-
509
- #@ cpd
510
- #: counter.php:164
511
- #: counter.php:1205
512
- msgid "Visitors last week"
513
- msgstr "पिछले सप्ताह आगंतुकों"
514
-
515
- #@ cpd
516
- #: counter-core.php:729
517
- #: counter.php:166
518
- #: counter.php:263
519
- #: counter.php:1012
520
- #: counter.php:1207
521
- #: userperspan.php:34
522
- msgid "Visitors per day"
523
- msgstr "प्रति दिन आगंतुक"
524
-
525
- #@ cpd
526
- #: counter.php:167
527
- #: counter.php:825
528
- #: counter.php:1209
529
- msgid "Counter starts on"
530
- msgstr "काउंटर पर शुरू होता है"
531
-
532
- #@ cpd
533
- #: counter.php:788
534
- #: notes.php:42
535
- #: notes.php:76
536
- msgid "Notes"
537
- msgstr "नोट्स"
538
-
539
- #@ cpd
540
- #: counter.php:672
541
- #, php-format
542
- msgid "The %s most visited posts in last %s days:"
543
- msgstr "%s के सबसे पिछले%s के दिनों में पदों का दौरा किया:"
544
-
545
- #@ default
546
- #: counter.php:786
547
- msgid "Show"
548
- msgstr "दिखाना"
549
-
550
- #@ cpd
551
- #: counter.php:821
552
- msgid "Other"
553
- msgstr "अन्य"
554
-
555
- #@ default
556
- #: counter.php:976
557
- msgid "Edit Post"
558
- msgstr "पोस्ट संपादित करें"
559
-
560
- #@ default
561
- #: counter.php:985
562
- msgid "Category"
563
- msgstr "श्रेणी"
564
-
565
- #@ default
566
- #: counter.php:988
567
- msgid "Tag"
568
- msgstr "टैग"
569
-
570
- #@ default
571
- #: counter.php:991
572
- #: massbots.php:52
573
- #: userperspan.php:63
574
- msgid "Front page displays"
575
- msgstr "सामने पृष्ठ दिखाता है"
576
-
577
- #@ default
578
- #: counter-core.php:575
579
- #: counter-options.php:341
580
- #: counter-options.php:565
581
- msgid "Settings"
582
- msgstr "Settings"
583
-
584
- #@ cpd
585
- #: counter-core.php:689
586
- #, php-format
587
- msgid "Time for Count per Day: <code>%s</code>."
588
- msgstr "<code>%s </code>: गणना प्रति दिवस के लिए समय."
589
-
590
- #@ cpd
591
- #: counter-core.php:690
592
- msgid "Bug? Problem? Question? Hint? Praise?"
593
- msgstr "बग? समस्या है? प्रश्न? सुझाव? प्रशंसा?"
594
-
595
- #@ cpd
596
- #: counter-core.php:691
597
- #, php-format
598
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
599
- msgstr "<a Href=\"%s\"> प्लगइन पृष्ठ पर एक टिप्पणी लिखें </ a> देखें."
600
-
601
- #@ default
602
- #: counter-core.php:692
603
- msgid "License"
604
- msgstr "लाइसेंस"
605
-
606
- #@ cpd
607
- #: counter.php:262
608
- msgid "Reads per day"
609
- msgstr "प्रति दिन पढ़ता है"
610
-
611
- #@ cpd
612
- #: counter-core.php:725
613
- #: counter.php:1206
614
- msgid "Visitors per month"
615
- msgstr "प्रति माह आगंतुकों"
616
-
617
- #@ cpd
618
- #: counter-core.php:726
619
- #: counter.php:1201
620
- msgid "Reads per month"
621
- msgstr "प्रति माह पढ़ता है"
622
-
623
- #@ cpd
624
- #: counter-core.php:728
625
- msgid "Latest Counts"
626
- msgstr "नवीनतम गणना"
627
-
628
- #@ default
629
- #: counter-core.php:730
630
- msgid "Plugin"
631
- msgstr "प्लगइन"
632
-
633
- #@ cpd
634
- #: counter-core.php:734
635
- msgid "Referrer"
636
- msgstr "संदर्भ"
637
-
638
- #@ cpd
639
- #: counter-core.php:738
640
- msgid "Reads per Country"
641
- msgstr "देश के प्रति पढ़ता है"
642
-
643
- #@ cpd
644
- #: counter-core.php:739
645
- msgid "Visitors per Country"
646
- msgstr "देश के प्रति आगंतुक"
647
-
648
- #@ cpd
649
- #: counter-core.php:754
650
- #: counter.php:1124
651
- msgid "Statistics"
652
- msgstr "आँकड़े"
653
-
654
- #@ cpd
655
- #: counter.php:353
656
- #: counter.php:1041
657
- msgid "Map"
658
- msgstr "नक्शा"
659
-
660
- #@ cpd
661
- #: counter.php:1196
662
- msgid "This post"
663
- msgstr "यह पोस्ट"
664
-
665
- #@ default
666
- #: counter.php:1220
667
- msgid "Title"
668
- msgstr "शीर्षक"
669
-
670
- #@ cpd
671
- #: geoip/geoip.php:93
672
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
673
- msgstr "माफ करना, आवश्यक कार्यों (zlib) स्थापित php.ini में सक्षम है या नहीं."
674
-
675
- #@ cpd
676
- #: geoip/geoip.php:117
677
- msgid "New GeoIP database installed."
678
- msgstr "स्थापित नई GeoIP डेटाबेस."
679
-
680
- #@ cpd
681
- #: geoip/geoip.php:119
682
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
683
- msgstr "क्षमा करें, कोई त्रुटि हुई है. फिर से कोशिश करें या निर्देशिका के अधिकारों का उपयोग जाँच \"geoip, \" 777 है."
684
-
685
- #@ default
686
- #: notes.php:77
687
- msgid "Action"
688
- msgstr "कार्रवाई"
689
-
690
- #@ cpd
691
- #: notes.php:82
692
- msgid "add"
693
- msgstr "जोड़ना"
694
-
695
- #@ cpd
696
- #: notes.php:98
697
- msgid "save"
698
- msgstr "बचाना"
699
-
700
- #@ cpd
701
- #: notes.php:99
702
- msgid "delete"
703
- msgstr "हटाना"
704
-
705
- #@ cpd
706
- #: notes.php:110
707
- msgid "edit"
708
- msgstr "संपादित"
709
-
710
- #@ cpd
711
- #: userperspan.php:38
712
- msgid "Start"
713
- msgstr "प्रारंभ"
714
-
715
- #@ cpd
716
- #: userperspan.php:40
717
- msgid "End"
718
- msgstr "अंत"
719
-
720
- #@ cpd
721
- #: userperspan.php:42
722
- msgid "PostID"
723
- msgstr "PostID"
724
-
725
- #@ cpd
726
- #: userperspan.php:50
727
- msgid "no data found"
728
- msgstr "कोई डेटा नहीं मिला"
729
-
730
- #@ cpd
731
- #: counter-options.php:468
732
- msgid "Referrers - Entries"
733
- msgstr "सन्दर्भदाता - प्रविष्टियां"
734
-
735
- #@ cpd
736
- #: counter-options.php:469
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "कितने सन्दर्भदाता आपको डैशबोर्ड पृष्ठ पर देखना चाहते हैं?"
739
-
740
- #@ cpd
741
- #: counter-options.php:472
742
- msgid "Referrers - Days"
743
- msgstr "सन्दर्भदाता - दिन"
744
-
745
- #@ cpd
746
- #: counter.php:845
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "पिछले%s के दिनों में सन्दर्भदाता%s:"
750
-
751
- #@ cpd
752
- #: counter-core.php:724
753
- msgid "Visitors online"
754
- msgstr "ऑनलाइन आगंतुकों"
755
-
756
- #@ cpd
757
- #: counter-core.php:186
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "\"गणना प्रति दिन \"%s संस्करण के लिए अद्यतन."
761
-
762
- #@ cpd
763
- #: counter-core.php:917
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "बैकअप में विफल रहा है! फ़ाइल नहीं खोल सकता"
766
-
767
- #@ cpd
768
- #: counter-core.php:940
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "रगति में%s प्रविष्टियों का बैकअप. हर बिंदु%s प्रविष्टियों अनुरूप है."
772
-
773
- #@ cpd
774
- #: counter-core.php:1027
775
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
- msgstr "आपका निर्देशिका wp-सामग्री लिखने योग्य नहीं . लेकिन तुम एक सादा पाठ फ़ाइल के लिए इस बॉक्स का सामग्री को कॉपी कर सकते हैं."
777
-
778
- #@ cpd
779
- #: counter-core.php:1033
780
- #, php-format
781
- msgid "Backup of counter table saved in %s."
782
- msgstr "काउंटर तालिका का बैकअप%s में सहेजा जाता है."
783
-
784
- #@ cpd
785
- #: counter-core.php:1035
786
- #, php-format
787
- msgid "Backup of counter options and collection saved in %s."
788
- msgstr "काउंटर विकल्प और%s में सहेजा संग्रह का बैकअप."
789
-
790
- #@ cpd
791
- #: counter-options.php:170
792
- msgid "Collection in progress..."
793
- msgstr "संग्रह में प्रगति ..."
794
-
795
- #@ cpd
796
- #: counter-options.php:240
797
- msgid "Get Visitors per Post..."
798
- msgstr "डाक के प्रति आगंतुक प्राप्त करें ..."
799
-
800
- #@ cpd
801
- #: counter-options.php:261
802
- msgid "Delete old data..."
803
- msgstr "पुराने डेटा को हटाएँ ..."
804
-
805
- #@ cpd
806
- #: counter-options.php:285
807
- #, php-format
808
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
- msgstr "काउंटर प्रविष्टियों तक%s एकत्र और काउंटर तालिका%s अनुकूलित (पहले के आकार =%s> आकार बाद =%s)."
810
-
811
- #@ cpd
812
- #: counter-options.php:294
813
- msgid "Installation of \"Count per Day\" checked"
814
- msgstr "\"गणना प्रति दिन \" जाँच की स्थापना"
815
-
816
- #@ default
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- msgid "Tools"
820
- msgstr "उपकरण"
821
-
822
- #@ cpd
823
- #: counter-options.php:394
824
- msgid "Save URL only, no query string."
825
- msgstr "यूआरएल केवल सहेजें, कोई क्वेरी स्ट्रिंग."
826
-
827
- #@ cpd
828
- #: counter-options.php:419
829
- msgid "Who can see it"
830
- msgstr "यह कौन देख सकते हैं"
831
-
832
- #@ cpd
833
- #: counter-options.php:428
834
- msgid "custom"
835
- msgstr "रिवाज"
836
-
837
- #@ cpd
838
- #: counter-options.php:430
839
- msgid "and higher are allowed to see the statistics page."
840
- msgstr "और अधिक आँकड़े पृष्ठ को देखने के लिए अनुमति दी जाती है."
841
-
842
- #@ cpd
843
- #: counter-options.php:432
844
- #, php-format
845
- msgid "Set the %s capability %s a user need:"
846
- msgstr "%s%s क्षमता है एक उपयोगकर्ता की आवश्यकता सेट करें:"
847
-
848
- #@ cpd
849
- #: counter-options.php:522
850
- msgid "Stylesheet"
851
- msgstr "स्टाइलशीट"
852
-
853
- #@ cpd
854
- #: counter-options.php:525
855
- msgid "NO Stylesheet in Frontend"
856
- msgstr "दृश्यपटल में स्टाइलशीट नहीं है "
857
-
858
- #@ cpd
859
- #: counter-options.php:526
860
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
- msgstr " \"Counter.css \" दृश्यपटल में लोड स्टाइलशीट नहीं है."
862
-
863
- #@ cpd
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- msgid "Backup"
867
- msgstr "बैकअप"
868
-
869
- #@ cpd
870
- #: counter-options.php:537
871
- msgid "Entries per pass"
872
- msgstr "पास प्रति प्रविष्टियां"
873
-
874
- #@ cpd
875
- #: counter-options.php:540
876
- msgid "How many entries should be saved per pass? Default: 10000"
877
- msgstr "कितनी प्रविष्टियों पास प्रति बचाया जाना चाहिए? डिफ़ॉल्ट: 10000"
878
-
879
- #@ cpd
880
- #: counter-options.php:545
881
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
- msgstr "यदि आपके PHP स्मृति सीमा से कम 50 एमबी और फिर आपको एक सफेद पृष्ठ या त्रुटि संदेश मिलता है एक छोटे मूल्य का प्रयास करें"
883
-
884
- #@ cpd
885
- #: counter-options.php:643
886
- #, php-format
887
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
- msgstr " आपका निर्देशिका wp-सामग्री में काउंटर तालिका% s (अगर लिखने योग्य) का एक बैकअप बनाएँ."
889
-
890
- #@ cpd
891
- #: counter-options.php:647
892
- msgid "Backup the database"
893
- msgstr "डेटाबेस बैकअप"
894
-
895
- #@ cpd
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- msgid "Collect old data"
899
- msgstr "पुराने डेटा लीजिए"
900
-
901
- #@ cpd
902
- #: counter-options.php:679
903
- #, php-format
904
- msgid "Current size of your counter table %s is %s."
905
- msgstr "अपने काउंटर तालिका%s के वर्तमान आकार%s है."
906
-
907
- #@ cpd
908
- #: counter-options.php:681
909
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
- msgstr "आप पुराने आंकड़ों को इकट्ठा करने और काउंटर मेज साफ कर सकते हैं करें <br/>. पुस्तकें और आगंतुकों प्रति माह बचाया किया जाएगा, देश के प्रति और पोस्ट प्रति. ग्राहक करें <br/> और सन्दर्भदाता हटा दिया जाएगा."
911
-
912
- #@ cpd
913
- #: counter-options.php:686
914
- #, php-format
915
- msgid "Currently your collection contains data until %s."
916
- msgstr "वर्तमान में अपने संग्रह%s जब तक डेटा शामिल हैं."
917
-
918
- #@ cpd
919
- #: counter-options.php:690
920
- msgid "Normally new data will be added to the collection."
921
- msgstr "आम तौर पर नया डेटा संग्रह करने के लिए जोड़ दिया जाएगा."
922
-
923
- #@ cpd
924
- #: counter-options.php:696
925
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
- msgstr "पुराने संग्रह हटाएँ और एक नया है जो केवल डेटा काउंटर तालिका में वर्तमान में होता है."
927
-
928
- #@ cpd
929
- #: counter-options.php:697
930
- #, php-format
931
- msgid "All collected data until %s will deleted."
932
- msgstr "%s जब तक सभी एकत्र आंकड़ों को नष्ट कर दिया जाएगा."
933
-
934
- #@ cpd
935
- #: counter-options.php:702
936
- #, php-format
937
- msgid "Keep entries of last %s full months + current month in counter table."
938
- msgstr "पिछले%s पूर्ण महीने की प्रविष्टियों + काउंटर तालिका में वर्तमान माह रखें."
939
-
940
- #@ cpd
941
- #: counter-options.php:761
942
- msgid "ReActivation"
943
- msgstr "पुनः सक्रियण"
944
-
945
- #@ cpd
946
- #: counter-options.php:764
947
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
- msgstr "पिछले%s पूर्ण महीने की प्रविष्टियों + काउंटर तालिका में वर्तमान माह रखें."
949
-
950
- #@ cpd
951
- #: counter-options.php:769
952
- msgid "ReActivate the plugin"
953
- msgstr "प्लगइन को पुन: सक्रिय"
954
-
955
- #@ cpd
956
- #: counter.php:165
957
- #: counter.php:899
958
- msgid "Visitors"
959
- msgstr "आगंतुक"
960
-
961
- #@ cpd
962
- #: counter.php:168
963
- #: counter.php:169
964
- msgid "Most visited day"
965
- msgstr "दौरा किया दिन"
966
-
967
- #@ cpd
968
- #: counter.php:1239
969
- msgid "drag and drop to sort"
970
- msgstr "खींचें और ड्रॉप सॉर्ट"
971
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v2.15\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2012-05-23 18:31+0530\n"
7
+ "Last-Translator: shivangi <shivangi@outshinesolutions.com>\n"
8
+ "Language-Team: Team Outshine <ash.pr@outsshinesolutions.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Hindi\n"
14
+ "X-Poedit-Country: INDIA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "विकल्प अद्यतन"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:60
28
+ #, php-format
29
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
+ msgstr "देश अपडेट. <b>%s </b> बिना देश%s में प्रविष्टियों को छोड़ दिया"
31
+
32
+ #@ cpd
33
+ #: counter-options.php:65
34
+ msgid "update next"
35
+ msgstr "अगले अद्यतन"
36
+
37
+ #@ cpd
38
+ #: counter-options.php:102
39
+ #, php-format
40
+ msgid "Mass Bots cleaned. %s counts deleted."
41
+ msgstr "मास Bots साफ. %s के मायने रखता है नष्ट कर दिया."
42
+
43
+ #@ cpd
44
+ #: counter-options.php:112
45
+ #, php-format
46
+ msgid "Database cleaned. %s rows deleted."
47
+ msgstr "डेटाबेस साफ. %s पंक्तियों को नष्ट कर दिया."
48
+
49
+ #@ cpd
50
+ #: counter-options.php:122
51
+ msgid "Counter reseted."
52
+ msgstr "Reseted का मुकाबला."
53
+
54
+ #@ cpd
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
+ msgid "UNINSTALL Count per Day"
58
+ msgstr "दिन प्रति गणना की स्थापना रद्द"
59
+
60
+ #@ cpd
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
+ #, php-format
65
+ msgid "Table %s deleted"
66
+ msgstr "टेबल%s नष्ट कर दिया है"
67
+
68
+ #@ cpd
69
+ #: counter-options.php:135
70
+ msgid "Options deleted"
71
+ msgstr "विकल्प नष्ट कर दिया"
72
+
73
+ #@ cpd
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
+ msgid "Uninstall"
77
+ msgstr "स्थापना रद्द करें"
78
+
79
+ #@ cpd
80
+ #: counter-options.php:317
81
+ msgid "Click here"
82
+ msgstr "यहाँ क्लिक करें"
83
+
84
+ #@ cpd
85
+ #: counter-options.php:317
86
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
+ msgstr "स्थापना रद्द खत्म और \"गणना प्रति दिन \" निष्क्रिय."
88
+
89
+ #@ cpd
90
+ #: counter-options.php:351
91
+ msgid "Counter"
92
+ msgstr "काउंटर"
93
+
94
+ #@ cpd
95
+ #: counter-options.php:355
96
+ msgid "Online time"
97
+ msgstr "ऑनलाइन समय"
98
+
99
+ #@ cpd
100
+ #: counter-options.php:356
101
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
102
+ msgstr "ऑनलाइन काउंटर के लिए सेकंड. डैशबोर्ड पृष्ठ पर \"आगंतुकों ऑनलाइन \" के लिए प्रयुक्त."
103
+
104
+ #@ cpd
105
+ #: counter-options.php:359
106
+ msgid "Logged on Users"
107
+ msgstr "उपयोगकर्ताओं पर लॉग इन"
108
+
109
+ #@ cpd
110
+ #: counter-options.php:361
111
+ msgid "count too"
112
+ msgstr "गिनती"
113
+
114
+ #@ cpd
115
+ #: counter-options.php:362
116
+ msgid "until User Level"
117
+ msgstr "जब तक उपयोगकर्ता स्तर"
118
+
119
+ #@ cpd
120
+ #: counter-options.php:373
121
+ msgid "Auto counter"
122
+ msgstr "ऑटो काउंटर"
123
+
124
+ #@ cpd
125
+ #: counter-options.php:374
126
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
127
+ msgstr "स्वचालित रूप से मायने रखता है एकल पोस्ट और पृष्ठों टेम्पलेट पर कोई परिवर्तन की जरूरत है."
128
+
129
+ #@ cpd
130
+ #: counter-options.php:377
131
+ msgid "Bots to ignore"
132
+ msgstr "उपेक्षा bots"
133
+
134
+ #@ cpd
135
+ #: counter-options.php:381
136
+ msgid "Anonymous IP"
137
+ msgstr "गुमनाम आईपी"
138
+
139
+ #@ cpd
140
+ #: counter-options.php:385
141
+ msgid "Cache"
142
+ msgstr "कैश"
143
+
144
+ #@ cpd
145
+ #: counter-options.php:386
146
+ msgid "I use a cache plugin. Count these visits with ajax."
147
+ msgstr "मैं एक कैश प्लगइन का उपयोग करें. AJAX के साथ इन यात्राओं की गणना."
148
+
149
+ #@ cpd
150
+ #: counter-options.php:389
151
+ msgid "Clients and referrers"
152
+ msgstr "ग्राहक और सन्दर्भदाता"
153
+
154
+ #@ cpd
155
+ #: counter-options.php:392
156
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
157
+ msgstr "सहेजें और दिखाने के ग्राहकों और सन्दर्भदाता. डेटाबेस में अंतरिक्ष के एक बहुत जरूरत है.<br/> लेकिन तुम अपने आगंतुकों के और अधिक विस्तृत informations देता है."
158
+
159
+ #@ cpd
160
+ #: counter-core.php:639
161
+ #: counter-options.php:392
162
+ #: counter.php:159
163
+ #: counter.php:875
164
+ msgid "Reads"
165
+ msgstr "पढ़ता"
166
+
167
+ #@ default
168
+ #: counter-options.php:403
169
+ msgid "Dashboard"
170
+ msgstr "डैशबोर्ड"
171
+
172
+ #@ cpd
173
+ #: counter-core.php:727
174
+ #: counter-options.php:438
175
+ msgid "Visitors per post"
176
+ msgstr "पोस्ट प्रति आगंतुक"
177
+
178
+ #@ cpd
179
+ #: counter-options.php:439
180
+ #: counter-options.php:443
181
+ msgid "How many posts do you want to see on dashboard page?"
182
+ msgstr "कितने पोस्ट आप डैशबोर्ड पृष्ठ पर देखना चाहते हैं?"
183
+
184
+ #@ cpd
185
+ #: counter-options.php:442
186
+ msgid "Latest Counts - Posts"
187
+ msgstr "नवीनतम गणना - डाक"
188
+
189
+ #@ cpd
190
+ #: counter-options.php:446
191
+ msgid "Latest Counts - Days"
192
+ msgstr "नवीनतम गणना - दिन"
193
+
194
+ #@ cpd
195
+ #: counter-options.php:447
196
+ #: counter-options.php:451
197
+ #: counter-options.php:473
198
+ msgid "How many days do you want look back?"
199
+ msgstr "कितने दिन तुम चाहते हो वापस देखो?"
200
+
201
+ #@ cpd
202
+ #: counter-options.php:450
203
+ msgid "Chart - Days"
204
+ msgstr "चार्ट - दिन"
205
+
206
+ #@ cpd
207
+ #: counter-options.php:454
208
+ msgid "Chart - Height"
209
+ msgstr "चार्ट ऊंचाई"
210
+
211
+ #@ cpd
212
+ #: counter-options.php:455
213
+ msgid "Height of the biggest bar"
214
+ msgstr "सबसे बड़ी पट्टी की ऊँचाई"
215
+
216
+ #@ cpd
217
+ #: counter-options.php:459
218
+ msgid "Countries"
219
+ msgstr "देश"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:460
223
+ msgid "How many countries do you want to see on dashboard page?"
224
+ msgstr "आप कितने देश डैशबोर्ड पृष्ठ पर देखना चाहते हैं?"
225
+
226
+ #@ cpd
227
+ #: counter-core.php:733
228
+ #: counter-options.php:464
229
+ msgid "Browsers"
230
+ msgstr "ब्राउज़र्स"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:465
234
+ msgid "Substring of the user agent, separated by comma"
235
+ msgstr "उपयोगकर्ता एजेंट की substring, अल्पविराम के द्वारा अलग"
236
+
237
+ #@ cpd
238
+ #: counter-options.php:476
239
+ msgid "Local URLs"
240
+ msgstr "स्थानीय यूआरएल"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:477
244
+ msgid "Show local referrers too."
245
+ msgstr " स्थानीय सन्दर्भदाता भी दिखाएँ."
246
+
247
+ #@ default
248
+ #: counter-options.php:485
249
+ msgid "Posts"
250
+ msgstr "पोस्ट"
251
+
252
+ #@ default
253
+ #: counter-options.php:485
254
+ msgid "Pages"
255
+ msgstr "पन्ने"
256
+
257
+ #@ cpd
258
+ #: counter-options.php:488
259
+ msgid "Show in lists"
260
+ msgstr "सूचियों में दिखाएँ "
261
+
262
+ #@ cpd
263
+ #: counter-options.php:489
264
+ msgid "Show \"Reads per Post\" in a new column in post management views."
265
+ msgstr "\"दिखाएँ पढ़ता प्रति पोस्ट \"के बाद प्रबंधन दृश्य में एक नया स्तंभ."
266
+
267
+ #@ cpd
268
+ #: counter-options.php:497
269
+ msgid "Start Values"
270
+ msgstr "मान प्रारंभ करें"
271
+
272
+ #@ cpd
273
+ #: counter-options.php:501
274
+ msgid "Here you can change the date of first count and add a start count."
275
+ msgstr "यहाँ आप पहले गिनती की तारीख बदलने के लिए और एक शुरुआत संख्या को जोड़ सकते हैं."
276
+
277
+ #@ cpd
278
+ #: counter-options.php:505
279
+ msgid "Start date"
280
+ msgstr "प्रारंभ दिनांक"
281
+
282
+ #@ cpd
283
+ #: counter-options.php:506
284
+ msgid "Your old Counter starts at?"
285
+ msgstr "अपने पुराने काउंटर पर शुरू होता है?"
286
+
287
+ #@ cpd
288
+ #: counter-options.php:509
289
+ #: counter-options.php:513
290
+ msgid "Start count"
291
+ msgstr "गिनती प्रारंभ करें"
292
+
293
+ #@ cpd
294
+ #: counter-options.php:510
295
+ msgid "Add this value to \"Total visitors\"."
296
+ msgstr " \"कुल आगंतुकों \" इस मूल्य में जोड़ें."
297
+
298
+ #@ cpd
299
+ #: counter-options.php:514
300
+ msgid "Add this value to \"Total reads\"."
301
+ msgstr "\" कुल पढ़ता है\" इस मूल्य में जोड़ें."
302
+
303
+ #@ cpd
304
+ #: counter-options.php:554
305
+ msgid "Debug mode"
306
+ msgstr "मोड डीबग"
307
+
308
+ #@ cpd
309
+ #: counter-options.php:556
310
+ msgid "Show debug informations at the bottom of all pages."
311
+ msgstr "डिबग informations के सभी पृष्ठों के नीचे है."
312
+
313
+ #@ cpd
314
+ #: counter-options.php:561
315
+ msgid "Update options"
316
+ msgstr "विकल्प अपडेट"
317
+
318
+ #@ cpd
319
+ #: counter-options.php:727
320
+ msgid "GeoIP - Countries"
321
+ msgstr "GeoIP - देश"
322
+
323
+ #@ cpd
324
+ #: counter-options.php:736
325
+ msgid "Update old counter data"
326
+ msgstr "पुराने काउंटर डेटा अद्यतन"
327
+
328
+ #@ cpd
329
+ #: counter-options.php:730
330
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
331
+ msgstr "GeoIP डेटाबेस के खिलाफ आईपी पते की जाँच करके आप डेटाबेस में सभी प्रविष्टियों के लिए देश के डेटा प्राप्त कर सकते हैं. यह एक समय लग सकता है!"
332
+
333
+ #@ cpd
334
+ #: counter-options.php:748
335
+ msgid "Update GeoIP database"
336
+ msgstr "अपडेट GeoIP डेटाबेस"
337
+
338
+ #@ cpd
339
+ #: counter-options.php:743
340
+ msgid "Download a new version of GeoIP.dat file."
341
+ msgstr "GeoIP.dat फ़ाइल का एक नया संस्करण डाउनलोड करें."
342
+
343
+ #@ cpd
344
+ #: counter-options.php:753
345
+ msgid "More informations about GeoIP"
346
+ msgstr "GeoIP के बारे में अधिक informations"
347
+
348
+ #@ cpd
349
+ #: counter-options.php:580
350
+ #: massbots.php:35
351
+ msgid "Mass Bots"
352
+ msgstr "मास Bots"
353
+
354
+ #@ cpd
355
+ #: counter-options.php:584
356
+ #, php-format
357
+ msgid "Show all IPs with more than %s page views per day"
358
+ msgstr "%s से अधिक दिन प्रति पृष्ठ विचारों के साथ सभी आईपी दिखाएँ"
359
+
360
+ #@ cpd
361
+ #: counter-options.php:585
362
+ #: notes.php:71
363
+ #: userperspan.php:44
364
+ msgid "show"
365
+ msgstr "दिखाना"
366
+
367
+ #@ cpd
368
+ #: counter-options.php:593
369
+ msgid "IP"
370
+ msgstr "IP"
371
+
372
+ #@ cpd
373
+ #@ default
374
+ #: counter-options.php:594
375
+ #: notes.php:75
376
+ msgid "Date"
377
+ msgstr "तारीख"
378
+
379
+ #@ cpd
380
+ #: counter-options.php:595
381
+ msgid "Client"
382
+ msgstr "ग्राहक"
383
+
384
+ #@ cpd
385
+ #: counter-options.php:596
386
+ msgid "Views"
387
+ msgstr "दृश्य"
388
+
389
+ #@ cpd
390
+ #: counter-options.php:611
391
+ #: counter-options.php:627
392
+ #, php-format
393
+ msgid "Delete these %s counts"
394
+ msgstr "%s गिना जाता है हटाएँ"
395
+
396
+ #@ cpd
397
+ #: counter-options.php:656
398
+ #: counter-options.php:665
399
+ msgid "Clean the database"
400
+ msgstr "डेटाबेस साफ करें"
401
+
402
+ #@ cpd
403
+ #: counter-options.php:659
404
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
405
+ msgstr "आप द्वारा काउंटर मेज साफ कर सकते हैं \"स्पैम डेटा \" <br. यदि आप पुराने \"स्पैम डेटा \" डेटाबेस में रहता है. <br ऊपर नई बॉट /> यहाँ आप चला सकते हैं बॉट फिल्टर को हटानाफिर और bots की यात्राओं को हटा दें."
406
+
407
+ #@ cpd
408
+ #: counter-options.php:777
409
+ #: counter-options.php:787
410
+ msgid "Reset the counter"
411
+ msgstr "काउंटर रीसेट करें"
412
+
413
+ #@ cpd
414
+ #: counter-options.php:780
415
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
416
+ msgstr "आप खाली मेज द्वारा काउंटर पुनर्स्थापित कर सकते हैं. सभी 0 से <br एक बैकअप अगर आप मौजूदा डेटा की जरूरत है!"
417
+
418
+ #@ cpd
419
+ #: counter-options.php:799
420
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
421
+ msgstr "अगर \"गणना प्रति दिन \" केवल अक्षम है डेटाबेस में तालिकाओं को संरक्षित किया जाएगा."
422
+
423
+ #@ cpd
424
+ #: counter-options.php:800
425
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
426
+ msgstr "यहाँ आप तालिका को हटा सकते हैं और अक्षम \"\" गणना प्रति दिन कर सकते हैं."
427
+
428
+ #@ cpd
429
+ #: counter-options.php:803
430
+ msgid "WARNING"
431
+ msgstr "चेतावनी"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:804
435
+ msgid "These tables (with ALL counter data) will be deleted."
436
+ msgstr "इन तालिकाओं (सभी काउंटर डेटा के साथ) को हटा दिया जाएगा."
437
+
438
+ #@ cpd
439
+ #: counter-options.php:806
440
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
441
+ msgstr "अगर \"गणना प्रति दिन \" फिर से स्थापित, काउंटर 0 में शुरू होता है."
442
+
443
+ #@ cpd
444
+ #: counter-options.php:786
445
+ #: counter-options.php:809
446
+ msgid "Yes"
447
+ msgstr "हां"
448
+
449
+ #@ cpd
450
+ #: counter-options.php:810
451
+ msgid "You are sure to disable Count per Day and delete all data?"
452
+ msgstr "आप प्रति दिन अक्षम गणना और सभी डेटा को हटाने के लिए सुनिश्चित कर रहे हैं?"
453
+
454
+ #@ cpd
455
+ #: counter-options.php:714
456
+ msgid "Support"
457
+ msgstr "समर्थन"
458
+
459
+ #@ cpd
460
+ #: counter.php:155
461
+ #: counter.php:1197
462
+ msgid "Total reads"
463
+ msgstr "कुल पढ़ता"
464
+
465
+ #@ cpd
466
+ #: counter.php:156
467
+ #: counter.php:1198
468
+ msgid "Reads today"
469
+ msgstr "आज पढ़ता है"
470
+
471
+ #@ cpd
472
+ #: counter.php:157
473
+ #: counter.php:1199
474
+ msgid "Reads yesterday"
475
+ msgstr "कल पढ़ता है"
476
+
477
+ #@ cpd
478
+ #: counter.php:158
479
+ #: counter.php:1200
480
+ msgid "Reads last week"
481
+ msgstr "पिछले हफ्ते पढ़ता है"
482
+
483
+ #@ cpd
484
+ #: counter-core.php:723
485
+ #: counter.php:160
486
+ #: counter.php:1010
487
+ #: counter.php:1202
488
+ msgid "Total visitors"
489
+ msgstr "कुल आगंतुकों"
490
+
491
+ #@ cpd
492
+ #: counter.php:161
493
+ #: counter.php:1208
494
+ msgid "Visitors currently online"
495
+ msgstr "वर्तमान में ऑनलाइन आगंतुकों"
496
+
497
+ #@ cpd
498
+ #: counter.php:162
499
+ #: counter.php:1203
500
+ msgid "Visitors today"
501
+ msgstr "आज आगंतुकों"
502
+
503
+ #@ cpd
504
+ #: counter.php:163
505
+ #: counter.php:1204
506
+ msgid "Visitors yesterday"
507
+ msgstr "कल आगंतुकों"
508
+
509
+ #@ cpd
510
+ #: counter.php:164
511
+ #: counter.php:1205
512
+ msgid "Visitors last week"
513
+ msgstr "पिछले सप्ताह आगंतुकों"
514
+
515
+ #@ cpd
516
+ #: counter-core.php:729
517
+ #: counter.php:166
518
+ #: counter.php:263
519
+ #: counter.php:1012
520
+ #: counter.php:1207
521
+ #: userperspan.php:34
522
+ msgid "Visitors per day"
523
+ msgstr "प्रति दिन आगंतुक"
524
+
525
+ #@ cpd
526
+ #: counter.php:167
527
+ #: counter.php:825
528
+ #: counter.php:1209
529
+ msgid "Counter starts on"
530
+ msgstr "काउंटर पर शुरू होता है"
531
+
532
+ #@ cpd
533
+ #: counter.php:788
534
+ #: notes.php:42
535
+ #: notes.php:76
536
+ msgid "Notes"
537
+ msgstr "नोट्स"
538
+
539
+ #@ cpd
540
+ #: counter.php:672
541
+ #, php-format
542
+ msgid "The %s most visited posts in last %s days:"
543
+ msgstr "%s के सबसे पिछले%s के दिनों में पदों का दौरा किया:"
544
+
545
+ #@ default
546
+ #: counter.php:786
547
+ msgid "Show"
548
+ msgstr "दिखाना"
549
+
550
+ #@ cpd
551
+ #: counter.php:821
552
+ msgid "Other"
553
+ msgstr "अन्य"
554
+
555
+ #@ default
556
+ #: counter.php:976
557
+ msgid "Edit Post"
558
+ msgstr "पोस्ट संपादित करें"
559
+
560
+ #@ default
561
+ #: counter.php:985
562
+ msgid "Category"
563
+ msgstr "श्रेणी"
564
+
565
+ #@ default
566
+ #: counter.php:988
567
+ msgid "Tag"
568
+ msgstr "टैग"
569
+
570
+ #@ default
571
+ #: counter.php:991
572
+ #: massbots.php:52
573
+ #: userperspan.php:63
574
+ msgid "Front page displays"
575
+ msgstr "सामने पृष्ठ दिखाता है"
576
+
577
+ #@ default
578
+ #: counter-core.php:575
579
+ #: counter-options.php:341
580
+ #: counter-options.php:565
581
+ msgid "Settings"
582
+ msgstr "Settings"
583
+
584
+ #@ cpd
585
+ #: counter-core.php:689
586
+ #, php-format
587
+ msgid "Time for Count per Day: <code>%s</code>."
588
+ msgstr "<code>%s </code>: गणना प्रति दिवस के लिए समय."
589
+
590
+ #@ cpd
591
+ #: counter-core.php:690
592
+ msgid "Bug? Problem? Question? Hint? Praise?"
593
+ msgstr "बग? समस्या है? प्रश्न? सुझाव? प्रशंसा?"
594
+
595
+ #@ cpd
596
+ #: counter-core.php:691
597
+ #, php-format
598
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
599
+ msgstr "<a Href=\"%s\"> प्लगइन पृष्ठ पर एक टिप्पणी लिखें </ a> देखें."
600
+
601
+ #@ default
602
+ #: counter-core.php:692
603
+ msgid "License"
604
+ msgstr "लाइसेंस"
605
+
606
+ #@ cpd
607
+ #: counter.php:262
608
+ msgid "Reads per day"
609
+ msgstr "प्रति दिन पढ़ता है"
610
+
611
+ #@ cpd
612
+ #: counter-core.php:725
613
+ #: counter.php:1206
614
+ msgid "Visitors per month"
615
+ msgstr "प्रति माह आगंतुकों"
616
+
617
+ #@ cpd
618
+ #: counter-core.php:726
619
+ #: counter.php:1201
620
+ msgid "Reads per month"
621
+ msgstr "प्रति माह पढ़ता है"
622
+
623
+ #@ cpd
624
+ #: counter-core.php:728
625
+ msgid "Latest Counts"
626
+ msgstr "नवीनतम गणना"
627
+
628
+ #@ default
629
+ #: counter-core.php:730
630
+ msgid "Plugin"
631
+ msgstr "प्लगइन"
632
+
633
+ #@ cpd
634
+ #: counter-core.php:734
635
+ msgid "Referrer"
636
+ msgstr "संदर्भ"
637
+
638
+ #@ cpd
639
+ #: counter-core.php:738
640
+ msgid "Reads per Country"
641
+ msgstr "देश के प्रति पढ़ता है"
642
+
643
+ #@ cpd
644
+ #: counter-core.php:739
645
+ msgid "Visitors per Country"
646
+ msgstr "देश के प्रति आगंतुक"
647
+
648
+ #@ cpd
649
+ #: counter-core.php:754
650
+ #: counter.php:1124
651
+ msgid "Statistics"
652
+ msgstr "आँकड़े"
653
+
654
+ #@ cpd
655
+ #: counter.php:353
656
+ #: counter.php:1041
657
+ msgid "Map"
658
+ msgstr "नक्शा"
659
+
660
+ #@ cpd
661
+ #: counter.php:1196
662
+ msgid "This post"
663
+ msgstr "यह पोस्ट"
664
+
665
+ #@ default
666
+ #: counter.php:1220
667
+ msgid "Title"
668
+ msgstr "शीर्षक"
669
+
670
+ #@ cpd
671
+ #: geoip/geoip.php:93
672
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
673
+ msgstr "माफ करना, आवश्यक कार्यों (zlib) स्थापित php.ini में सक्षम है या नहीं."
674
+
675
+ #@ cpd
676
+ #: geoip/geoip.php:117
677
+ msgid "New GeoIP database installed."
678
+ msgstr "स्थापित नई GeoIP डेटाबेस."
679
+
680
+ #@ cpd
681
+ #: geoip/geoip.php:119
682
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
683
+ msgstr "क्षमा करें, कोई त्रुटि हुई है. फिर से कोशिश करें या निर्देशिका के अधिकारों का उपयोग जाँच \"geoip, \" 777 है."
684
+
685
+ #@ default
686
+ #: notes.php:77
687
+ msgid "Action"
688
+ msgstr "कार्रवाई"
689
+
690
+ #@ cpd
691
+ #: notes.php:82
692
+ msgid "add"
693
+ msgstr "जोड़ना"
694
+
695
+ #@ cpd
696
+ #: notes.php:98
697
+ msgid "save"
698
+ msgstr "बचाना"
699
+
700
+ #@ cpd
701
+ #: notes.php:99
702
+ msgid "delete"
703
+ msgstr "हटाना"
704
+
705
+ #@ cpd
706
+ #: notes.php:110
707
+ msgid "edit"
708
+ msgstr "संपादित"
709
+
710
+ #@ cpd
711
+ #: userperspan.php:38
712
+ msgid "Start"
713
+ msgstr "प्रारंभ"
714
+
715
+ #@ cpd
716
+ #: userperspan.php:40
717
+ msgid "End"
718
+ msgstr "अंत"
719
+
720
+ #@ cpd
721
+ #: userperspan.php:42
722
+ msgid "PostID"
723
+ msgstr "PostID"
724
+
725
+ #@ cpd
726
+ #: userperspan.php:50
727
+ msgid "no data found"
728
+ msgstr "कोई डेटा नहीं मिला"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:468
732
+ msgid "Referrers - Entries"
733
+ msgstr "सन्दर्भदाता - प्रविष्टियां"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:469
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "कितने सन्दर्भदाता आपको डैशबोर्ड पृष्ठ पर देखना चाहते हैं?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:472
742
+ msgid "Referrers - Days"
743
+ msgstr "सन्दर्भदाता - दिन"
744
+
745
+ #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "पिछले%s के दिनों में सन्दर्भदाता%s:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:724
753
+ msgid "Visitors online"
754
+ msgstr "ऑनलाइन आगंतुकों"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"गणना प्रति दिन \"%s संस्करण के लिए अद्यतन."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "बैकअप में विफल रहा है! फ़ाइल नहीं खोल सकता"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "रगति में%s प्रविष्टियों का बैकअप. हर बिंदु%s प्रविष्टियों अनुरूप है."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "आपका निर्देशिका wp-सामग्री लिखने योग्य नहीं . लेकिन तुम एक सादा पाठ फ़ाइल के लिए इस बॉक्स का सामग्री को कॉपी कर सकते हैं."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "काउंटर तालिका का बैकअप%s में सहेजा जाता है."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "काउंटर विकल्प और%s में सहेजा संग्रह का बैकअप."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "संग्रह में प्रगति ..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "डाक के प्रति आगंतुक प्राप्त करें ..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "पुराने डेटा को हटाएँ ..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "काउंटर प्रविष्टियों तक%s एकत्र और काउंटर तालिका%s अनुकूलित (पहले के आकार =%s> आकार बाद =%s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "\"गणना प्रति दिन \" जाँच की स्थापना"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "उपकरण"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "यूआरएल केवल सहेजें, कोई क्वेरी स्ट्रिंग."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "यह कौन देख सकते हैं"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "रिवाज"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "और अधिक आँकड़े पृष्ठ को देखने के लिए अनुमति दी जाती है."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "%s%s क्षमता है एक उपयोगकर्ता की आवश्यकता सेट करें:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "स्टाइलशीट"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "दृश्यपटल में स्टाइलशीट नहीं है "
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr " \"Counter.css \" दृश्यपटल में लोड स्टाइलशीट नहीं है."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "बैकअप"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "पास प्रति प्रविष्टियां"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "कितनी प्रविष्टियों पास प्रति बचाया जाना चाहिए? डिफ़ॉल्ट: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "यदि आपके PHP स्मृति सीमा से कम 50 एमबी और फिर आपको एक सफेद पृष्ठ या त्रुटि संदेश मिलता है एक छोटे मूल्य का प्रयास करें"
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr " आपका निर्देशिका wp-सामग्री में काउंटर तालिका% s (अगर लिखने योग्य) का एक बैकअप बनाएँ."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "डेटाबेस बैकअप"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "पुराने डेटा लीजिए"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "अपने काउंटर तालिका%s के वर्तमान आकार%s है."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "आप पुराने आंकड़ों को इकट्ठा करने और काउंटर मेज साफ कर सकते हैं करें <br/>. पुस्तकें और आगंतुकों प्रति माह बचाया किया जाएगा, देश के प्रति और पोस्ट प्रति. ग्राहक करें <br/> और सन्दर्भदाता हटा दिया जाएगा."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "वर्तमान में अपने संग्रह%s जब तक डेटा शामिल हैं."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "आम तौर पर नया डेटा संग्रह करने के लिए जोड़ दिया जाएगा."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "पुराने संग्रह हटाएँ और एक नया है जो केवल डेटा काउंटर तालिका में वर्तमान में होता है."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "%s जब तक सभी एकत्र आंकड़ों को नष्ट कर दिया जाएगा."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "पिछले%s पूर्ण महीने की प्रविष्टियों + काउंटर तालिका में वर्तमान माह रखें."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "पुनः सक्रियण"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "पिछले%s पूर्ण महीने की प्रविष्टियों + काउंटर तालिका में वर्तमान माह रखें."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "प्लगइन को पुन: सक्रिय"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "आगंतुक"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "दौरा किया दिन"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "खींचें और ड्रॉप सॉर्ट"
971
+
locale/cpd-it_IT.po CHANGED
@@ -1,971 +1,971 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day in italiano\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
- "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Italian\n"
14
- "X-Poedit-Country: ITALY\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "Le opzioni sono state aggiornate"
25
-
26
- #@ cpd
27
- #: counter-options.php:112
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Database svuotato. %s record cancellato."
31
-
32
- #@ cpd
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "DISINSTALLA Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "La tabella %s é stata cancellata"
45
-
46
- #@ cpd
47
- #: counter-options.php:135
48
- msgid "Options deleted"
49
- msgstr "Le opzioni sono state cancellate"
50
-
51
- #@ cpd
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- msgid "Uninstall"
55
- msgstr "Disinstalla"
56
-
57
- #@ cpd
58
- #: counter-options.php:317
59
- msgid "Click here"
60
- msgstr "Clicca qui"
61
-
62
- #@ cpd
63
- #: counter-options.php:317
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
66
-
67
- #@ cpd
68
- #: counter-options.php:355
69
- msgid "Online time"
70
- msgstr "Durata del collegamento"
71
-
72
- #@ cpd
73
- #: counter-options.php:356
74
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
- msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
76
-
77
- #@ cpd
78
- #: counter-options.php:359
79
- msgid "Logged on Users"
80
- msgstr "Utenti accreditati"
81
-
82
- #@ cpd
83
- #: counter-options.php:361
84
- msgid "count too"
85
- msgstr "conteggia anche loro"
86
-
87
- #@ cpd
88
- #: counter-options.php:373
89
- msgid "Auto counter"
90
- msgstr "Contatore-automatico"
91
-
92
- #@ cpd
93
- #: counter-options.php:374
94
- msgid "Counts automatically single-posts and pages, no changes on template needed."
95
- msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
96
-
97
- #@ cpd
98
- #: counter-options.php:377
99
- msgid "Bots to ignore"
100
- msgstr "Bots da ignorare"
101
-
102
- #@ cpd
103
- #: counter-options.php:561
104
- msgid "Update options"
105
- msgstr "Aggiorna le opzioni"
106
-
107
- #@ cpd
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- msgid "Clean the database"
111
- msgstr "Svuota il database"
112
-
113
- #@ cpd
114
- #: counter-options.php:659
115
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
- msgstr "Puoi svuotare la tabella del contatore dai \"dati spam\".<br />Aggiungendo dei nuovi bots sopra ai vecchi \"dati spam\" conservati nel database.<br />Qui tu puoi avviare nuovamente il filtro per i bot e cancellare le visite dei bots."
117
-
118
- #@ cpd
119
- #: counter-options.php:799
120
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
- msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
122
-
123
- #@ cpd
124
- #: counter-options.php:800
125
- msgid "Here you can delete the tables and disable \"Count per Day\"."
126
- msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
127
-
128
- #@ cpd
129
- #: counter-options.php:803
130
- msgid "WARNING"
131
- msgstr "ATTENZIONE"
132
-
133
- #@ cpd
134
- #: counter-options.php:804
135
- msgid "These tables (with ALL counter data) will be deleted."
136
- msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
137
-
138
- #@ cpd
139
- #: counter-options.php:806
140
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
- msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
142
-
143
- #@ cpd
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- msgid "Yes"
147
- msgstr "Sì"
148
-
149
- #@ cpd
150
- #: counter-options.php:810
151
- msgid "You are sure to disable Count per Day and delete all data?"
152
- msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
153
-
154
- #@ cpd
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- msgid "Statistics"
158
- msgstr "Satistiche"
159
-
160
- #@ cpd
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- msgid "Total visitors"
166
- msgstr "Totale visitatori"
167
-
168
- #@ cpd
169
- #: counter.php:161
170
- #: counter.php:1208
171
- msgid "Visitors currently online"
172
- msgstr "Utenti attualmente in linea"
173
-
174
- #@ cpd
175
- #: counter.php:162
176
- #: counter.php:1203
177
- msgid "Visitors today"
178
- msgstr "Oggi"
179
-
180
- #@ cpd
181
- #: counter.php:163
182
- #: counter.php:1204
183
- msgid "Visitors yesterday"
184
- msgstr "Ieri"
185
-
186
- #@ cpd
187
- #: counter.php:164
188
- #: counter.php:1205
189
- msgid "Visitors last week"
190
- msgstr "La scorsa settimana"
191
-
192
- #@ cpd
193
- #: counter.php:167
194
- #: counter.php:825
195
- #: counter.php:1209
196
- msgid "Counter starts on"
197
- msgstr "Il contatore parte dal"
198
-
199
- #@ cpd
200
- #: counter-core.php:729
201
- #: counter.php:166
202
- #: counter.php:263
203
- #: counter.php:1012
204
- #: counter.php:1207
205
- #: userperspan.php:34
206
- msgid "Visitors per day"
207
- msgstr "Visitatori per giorno"
208
-
209
- #@ cpd
210
- #: counter-core.php:725
211
- #: counter.php:1206
212
- msgid "Visitors per month"
213
- msgstr "Visitatori per mese"
214
-
215
- #@ cpd
216
- #: counter-core.php:727
217
- #: counter-options.php:438
218
- msgid "Visitors per post"
219
- msgstr "Visitatori per articolo"
220
-
221
- #@ cpd
222
- #: counter-options.php:122
223
- msgid "Counter reseted."
224
- msgstr "Il contatore é stato azzerato."
225
-
226
- #@ cpd
227
- #: counter-options.php:439
228
- #: counter-options.php:443
229
- msgid "How many posts do you want to see on dashboard page?"
230
- msgstr "Quanti articoli desideri siano visibili nella bacheca?"
231
-
232
- #@ cpd
233
- #: counter-options.php:442
234
- msgid "Latest Counts - Posts"
235
- msgstr "Totale corrente - Articoli"
236
-
237
- #@ cpd
238
- #: counter-options.php:446
239
- msgid "Latest Counts - Days"
240
- msgstr "Totale corrente - pagine"
241
-
242
- #@ cpd
243
- #: counter-options.php:447
244
- #: counter-options.php:451
245
- #: counter-options.php:473
246
- msgid "How many days do you want look back?"
247
- msgstr "Quanti giorni desideri visionare a ritroso?"
248
-
249
- #@ cpd
250
- #: counter-options.php:488
251
- msgid "Show in lists"
252
- msgstr "Mostra nelle liste"
253
-
254
- #@ cpd
255
- #: counter-options.php:489
256
- msgid "Show \"Reads per Post\" in a new column in post management views."
257
- msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
258
-
259
- #@ cpd
260
- #: counter-options.php:777
261
- #: counter-options.php:787
262
- msgid "Reset the counter"
263
- msgstr "Azzera il contatore"
264
-
265
- #@ cpd
266
- #: counter-options.php:780
267
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
- msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
269
-
270
- #@ cpd
271
- #: counter.php:672
272
- #, php-format
273
- msgid "The %s most visited posts in last %s days:"
274
- msgstr "I %s articoli più letti negli ultimi %s giorni:"
275
-
276
- #@ default
277
- #: counter-core.php:575
278
- #: counter-options.php:341
279
- #: counter-options.php:565
280
- msgid "Settings"
281
- msgstr "Impostazioni"
282
-
283
- #@ cpd
284
- #: counter-core.php:639
285
- #: counter-options.php:392
286
- #: counter.php:159
287
- #: counter.php:875
288
- msgid "Reads"
289
- msgstr "Visitatori"
290
-
291
- #@ cpd
292
- #: counter-core.php:728
293
- msgid "Latest Counts"
294
- msgstr "Totale corrente"
295
-
296
- #@ cpd
297
- #: counter-options.php:450
298
- msgid "Chart - Days"
299
- msgstr "Diagramma - Giorni"
300
-
301
- #@ cpd
302
- #: counter-options.php:454
303
- msgid "Chart - Height"
304
- msgstr "Diagramma - Altezza"
305
-
306
- #@ cpd
307
- #: counter-options.php:455
308
- msgid "Height of the biggest bar"
309
- msgstr "Altezza della categoria maggiore"
310
-
311
- #@ cpd
312
- #: counter.php:1196
313
- msgid "This post"
314
- msgstr "Questo articolo"
315
-
316
- #@ default
317
- #: counter-options.php:403
318
- msgid "Dashboard"
319
- msgstr "Bacheca"
320
-
321
- #@ cpd
322
- #: counter.php:262
323
- msgid "Reads per day"
324
- msgstr "Letture per giorno"
325
-
326
- #@ cpd
327
- #: counter-options.php:60
328
- #, php-format
329
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
- msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
331
-
332
- #@ cpd
333
- #: counter-options.php:65
334
- msgid "update next"
335
- msgstr "aggiorna il prossimo"
336
-
337
- #@ cpd
338
- #: counter-options.php:727
339
- msgid "GeoIP - Countries"
340
- msgstr "GeoIP - Stati"
341
-
342
- #@ cpd
343
- #: counter-options.php:736
344
- msgid "Update old counter data"
345
- msgstr "Aggiorna i vecchi dati per gli stati"
346
-
347
- #@ cpd
348
- #: counter-options.php:748
349
- msgid "Update GeoIP database"
350
- msgstr "Aggiorna database GeoIP"
351
-
352
- #@ cpd
353
- #: counter-options.php:743
354
- msgid "Download a new version of GeoIP.dat file."
355
- msgstr "Scarica la nuova versione del file GeoIP.dat."
356
-
357
- #@ cpd
358
- #: counter-options.php:753
359
- msgid "More informations about GeoIP"
360
- msgstr "Informazioni su GeoIP"
361
-
362
- #@ cpd
363
- #: counter-core.php:738
364
- msgid "Reads per Country"
365
- msgstr "Letture per stato"
366
-
367
- #@ cpd
368
- #: geoip/geoip.php:117
369
- msgid "New GeoIP database installed."
370
- msgstr "Il nuovo database GeoIP é stato installato."
371
-
372
- #@ cpd
373
- #: geoip/geoip.php:119
374
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
- msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
376
-
377
- #@ cpd
378
- #: geoip/geoip.php:93
379
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
- msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
381
-
382
- #@ cpd
383
- #: counter-options.php:459
384
- msgid "Countries"
385
- msgstr "Stati"
386
-
387
- #@ cpd
388
- #: counter-options.php:460
389
- msgid "How many countries do you want to see on dashboard page?"
390
- msgstr "Quanti stati desideri siano visibili nella bacheca?"
391
-
392
- #@ cpd
393
- #: counter-options.php:102
394
- #, php-format
395
- msgid "Mass Bots cleaned. %s counts deleted."
396
- msgstr "Mass Bots svuotato. %s totali cancellati."
397
-
398
- #@ cpd
399
- #: counter-options.php:580
400
- #: massbots.php:35
401
- msgid "Mass Bots"
402
- msgstr "Mass Bots"
403
-
404
- #@ cpd
405
- #: counter-options.php:584
406
- #, php-format
407
- msgid "Show all IPs with more than %s page views per day"
408
- msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
409
-
410
- #@ cpd
411
- #: counter-options.php:585
412
- #: notes.php:71
413
- #: userperspan.php:44
414
- msgid "show"
415
- msgstr "mostra"
416
-
417
- #@ cpd
418
- #: counter-options.php:611
419
- #: counter-options.php:627
420
- #, php-format
421
- msgid "Delete these %s counts"
422
- msgstr "Cancella questi %s totali"
423
-
424
- #@ cpd
425
- #: counter.php:821
426
- msgid "Other"
427
- msgstr "Altro"
428
-
429
- #@ default
430
- #: counter.php:991
431
- #: massbots.php:52
432
- #: userperspan.php:63
433
- msgid "Front page displays"
434
- msgstr "Mostra nella front page"
435
-
436
- #@ cpd
437
- #: counter-core.php:733
438
- #: counter-options.php:464
439
- msgid "Browsers"
440
- msgstr "Browser"
441
-
442
- #@ cpd
443
- #: counter-options.php:593
444
- msgid "IP"
445
- msgstr "IP"
446
-
447
- #@ cpd
448
- #@ default
449
- #: counter-options.php:594
450
- #: notes.php:75
451
- msgid "Date"
452
- msgstr "Data"
453
-
454
- #@ cpd
455
- #: counter-options.php:595
456
- msgid "Client"
457
- msgstr "Client"
458
-
459
- #@ cpd
460
- #: counter-options.php:596
461
- msgid "Views"
462
- msgstr "Visualizzazioni"
463
-
464
- #@ cpd
465
- #: counter-options.php:497
466
- msgid "Start Values"
467
- msgstr "Valori di partenza"
468
-
469
- #@ cpd
470
- #: counter-options.php:501
471
- msgid "Here you can change the date of first count and add a start count."
472
- msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
473
-
474
- #@ cpd
475
- #: counter-options.php:505
476
- msgid "Start date"
477
- msgstr "Data di inizio"
478
-
479
- #@ cpd
480
- #: counter-options.php:506
481
- msgid "Your old Counter starts at?"
482
- msgstr "Il vecchio contatore parte da?"
483
-
484
- #@ cpd
485
- #: counter-options.php:509
486
- #: counter-options.php:513
487
- msgid "Start count"
488
- msgstr "Avvia conteggio"
489
-
490
- #@ cpd
491
- #: counter-options.php:510
492
- msgid "Add this value to \"Total visitors\"."
493
- msgstr "Aggiungi questo valore a \"Totale visitatori\"."
494
-
495
- #@ cpd
496
- #: counter-options.php:714
497
- msgid "Support"
498
- msgstr "Supporto"
499
-
500
- #@ cpd
501
- #: counter-core.php:690
502
- msgid "Bug? Problem? Question? Hint? Praise?"
503
- msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
504
-
505
- #@ cpd
506
- #: counter-core.php:691
507
- #, php-format
508
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
- msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
510
-
511
- #@ default
512
- #: counter.php:786
513
- msgid "Show"
514
- msgstr "Mostra"
515
-
516
- #@ default
517
- #: counter.php:976
518
- msgid "Edit Post"
519
- msgstr "modifica articolo"
520
-
521
- #@ cpd
522
- #: counter-core.php:689
523
- #, php-format
524
- msgid "Time for Count per Day: <code>%s</code>."
525
- msgstr "Fuso orario Count per Day: <code>%s</code>."
526
-
527
- #@ cpd
528
- #: counter-options.php:362
529
- msgid "until User Level"
530
- msgstr "sino a livello utente"
531
-
532
- #@ default
533
- #: counter-core.php:730
534
- msgid "Plugin"
535
- msgstr "Plugin"
536
-
537
- #@ cpd
538
- #: counter.php:788
539
- #: notes.php:42
540
- #: notes.php:76
541
- msgid "Notes"
542
- msgstr "Note"
543
-
544
- #@ default
545
- #: notes.php:77
546
- msgid "Action"
547
- msgstr "Azione"
548
-
549
- #@ cpd
550
- #: notes.php:82
551
- msgid "add"
552
- msgstr "aggiungi"
553
-
554
- #@ cpd
555
- #: notes.php:98
556
- msgid "save"
557
- msgstr "salva"
558
-
559
- #@ cpd
560
- #: notes.php:99
561
- msgid "delete"
562
- msgstr "cancella"
563
-
564
- #@ cpd
565
- #: notes.php:110
566
- msgid "edit"
567
- msgstr "modifica"
568
-
569
- #@ cpd
570
- #: counter-options.php:514
571
- msgid "Add this value to \"Total reads\"."
572
- msgstr "Aggiungi questo valore a \"Totale letture\"."
573
-
574
- #@ cpd
575
- #: counter.php:155
576
- #: counter.php:1197
577
- msgid "Total reads"
578
- msgstr "Totale letture"
579
-
580
- #@ cpd
581
- #: counter.php:156
582
- #: counter.php:1198
583
- msgid "Reads today"
584
- msgstr "Letture odierne"
585
-
586
- #@ cpd
587
- #: counter.php:157
588
- #: counter.php:1199
589
- msgid "Reads yesterday"
590
- msgstr "Letture di ieri"
591
-
592
- #@ cpd
593
- #: counter.php:353
594
- #: counter.php:1041
595
- msgid "Map"
596
- msgstr "Mappa"
597
-
598
- #@ cpd
599
- #: counter-options.php:381
600
- msgid "Anonymous IP"
601
- msgstr "IP anonimo"
602
-
603
- #@ cpd
604
- #: counter-options.php:385
605
- msgid "Cache"
606
- msgstr "Cache"
607
-
608
- #@ cpd
609
- #: counter-options.php:386
610
- msgid "I use a cache plugin. Count these visits with ajax."
611
- msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
612
-
613
- #@ cpd
614
- #: counter-options.php:465
615
- msgid "Substring of the user agent, separated by comma"
616
- msgstr "Sub-stringa user agent, separa con una virgola"
617
-
618
- #@ cpd
619
- #: counter-core.php:739
620
- msgid "Visitors per Country"
621
- msgstr "Visitatori per paese"
622
-
623
- #@ cpd
624
- #: counter-options.php:554
625
- msgid "Debug mode"
626
- msgstr "Modalità debug"
627
-
628
- #@ cpd
629
- #: counter-options.php:556
630
- msgid "Show debug informations at the bottom of all pages."
631
- msgstr "Mostra info debug al fondo di tutte le pagine."
632
-
633
- #@ cpd
634
- #: userperspan.php:38
635
- msgid "Start"
636
- msgstr "Inizio"
637
-
638
- #@ cpd
639
- #: userperspan.php:40
640
- msgid "End"
641
- msgstr "Termine"
642
-
643
- #@ cpd
644
- #: userperspan.php:42
645
- msgid "PostID"
646
- msgstr "ID articolo"
647
-
648
- #@ cpd
649
- #: userperspan.php:50
650
- msgid "no data found"
651
- msgstr "nessun dato trovato"
652
-
653
- #@ cpd
654
- #: counter-options.php:730
655
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
- msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
657
-
658
- #@ cpd
659
- #: counter-options.php:351
660
- msgid "Counter"
661
- msgstr "Contatore"
662
-
663
- #@ cpd
664
- #: counter-options.php:476
665
- msgid "Local URLs"
666
- msgstr "URL locali"
667
-
668
- #@ cpd
669
- #: counter-options.php:477
670
- msgid "Show local referrers too."
671
- msgstr "Mostra anche i referenti locali."
672
-
673
- #@ default
674
- #: counter-options.php:485
675
- msgid "Posts"
676
- msgstr "Articoli"
677
-
678
- #@ default
679
- #: counter-options.php:485
680
- msgid "Pages"
681
- msgstr "Pagine"
682
-
683
- #@ default
684
- #: counter.php:985
685
- msgid "Category"
686
- msgstr "Categoria"
687
-
688
- #@ default
689
- #: counter.php:988
690
- msgid "Tag"
691
- msgstr "Tag"
692
-
693
- #@ default
694
- #: counter-core.php:692
695
- msgid "License"
696
- msgstr "Licenza"
697
-
698
- #@ cpd
699
- #: counter-core.php:734
700
- msgid "Referrer"
701
- msgstr "Referente"
702
-
703
- #@ default
704
- #: counter.php:1220
705
- msgid "Title"
706
- msgstr "Titolo"
707
-
708
- #@ cpd
709
- #: counter-options.php:392
710
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
711
- msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
712
-
713
- #@ cpd
714
- #: counter-options.php:389
715
- msgid "Clients and referrers"
716
- msgstr "Client e referenti"
717
-
718
- #@ cpd
719
- #: counter.php:158
720
- #: counter.php:1200
721
- msgid "Reads last week"
722
- msgstr "Letture scorsa settimana"
723
-
724
- #@ cpd
725
- #: counter-core.php:726
726
- #: counter.php:1201
727
- msgid "Reads per month"
728
- msgstr "Letture scorso mese"
729
-
730
- #@ cpd
731
- #: counter-options.php:468
732
- msgid "Referrers - Entries"
733
- msgstr "Referenti - Pubblicazioni"
734
-
735
- #@ cpd
736
- #: counter-options.php:469
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
739
-
740
- #@ cpd
741
- #: counter-options.php:472
742
- msgid "Referrers - Days"
743
- msgstr "Referenti - Giorni"
744
-
745
- #@ cpd
746
- #: counter.php:845
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "I %s referenti degli ultimi %s giorni:"
750
-
751
- #@ cpd
752
- #: counter-core.php:724
753
- msgid "Visitors online"
754
- msgstr "Visitatori online"
755
-
756
- #@ cpd
757
- #: counter-core.php:186
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "\"Count per Day\" é stato aggiornato alla versione %s."
761
-
762
- #@ cpd
763
- #: counter-core.php:917
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "Il backup é fallito! Non é possibile aprire il file"
766
-
767
- #@ cpd
768
- #: counter-core.php:940
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "Backup in corso per %s elementi. Ogni punto provvede a %s elementi."
772
-
773
- #@ cpd
774
- #: counter-core.php:1027
775
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
- msgstr "La tua cartella wp-content non é scrivibile. Puoi copiare il contenuto di questo box in un file di testo."
777
-
778
- #@ cpd
779
- #: counter-core.php:1033
780
- #, php-format
781
- msgid "Backup of counter table saved in %s."
782
- msgstr "Backup della tabella salvato in %s."
783
-
784
- #@ cpd
785
- #: counter-core.php:1035
786
- #, php-format
787
- msgid "Backup of counter options and collection saved in %s."
788
- msgstr "Backup delle opzioni e raccolta dati salvato in %s."
789
-
790
- #@ cpd
791
- #: counter-options.php:170
792
- msgid "Collection in progress..."
793
- msgstr "Raccolta in corso..."
794
-
795
- #@ cpd
796
- #: counter-options.php:240
797
- msgid "Get Visitors per Post..."
798
- msgstr "Visitatori per post..."
799
-
800
- #@ cpd
801
- #: counter-options.php:261
802
- msgid "Delete old data..."
803
- msgstr "Cancellazione vecchi dati..."
804
-
805
- #@ cpd
806
- #: counter-options.php:285
807
- #, php-format
808
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
- msgstr "Computo dati collezionati sino al %s e tabella %s ottimizzati (dimensione precedente = %s &gt; attuale = %s)."
810
-
811
- #@ cpd
812
- #: counter-options.php:294
813
- msgid "Installation of \"Count per Day\" checked"
814
- msgstr "Installazione di \"Count per Day\" selezionata"
815
-
816
- #@ default
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- msgid "Tools"
820
- msgstr "Strumenti"
821
-
822
- #@ cpd
823
- #: counter-options.php:394
824
- msgid "Save URL only, no query string."
825
- msgstr "Salva solo gli URL, no query string."
826
-
827
- #@ cpd
828
- #: counter-options.php:419
829
- msgid "Who can see it"
830
- msgstr "Chi può vedere"
831
-
832
- #@ cpd
833
- #: counter-options.php:428
834
- msgid "custom"
835
- msgstr "personalizzato"
836
-
837
- #@ cpd
838
- #: counter-options.php:430
839
- msgid "and higher are allowed to see the statistics page."
840
- msgstr "e superiore hanno il permesso per potere vedere le stat."
841
-
842
- #@ cpd
843
- #: counter-options.php:432
844
- #, php-format
845
- msgid "Set the %s capability %s a user need:"
846
- msgstr "Imposta %s ruolo %s necessario per l'utente:"
847
-
848
- #@ cpd
849
- #: counter-options.php:522
850
- msgid "Stylesheet"
851
- msgstr "Foglio di stile"
852
-
853
- #@ cpd
854
- #: counter-options.php:525
855
- msgid "NO Stylesheet in Frontend"
856
- msgstr "NO foglio di stile nel Frontend"
857
-
858
- #@ cpd
859
- #: counter-options.php:526
860
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
- msgstr "Non caricare il foglio di stile \"counter.css\" nel frontend."
862
-
863
- #@ cpd
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- msgid "Backup"
867
- msgstr "Backup"
868
-
869
- #@ cpd
870
- #: counter-options.php:537
871
- msgid "Entries per pass"
872
- msgstr "Elementi per pass"
873
-
874
- #@ cpd
875
- #: counter-options.php:540
876
- msgid "How many entries should be saved per pass? Default: 10000"
877
- msgstr "Quanti elementi salvare per pass? Predefinito: 10000"
878
-
879
- #@ cpd
880
- #: counter-options.php:545
881
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
- msgstr "Se il tuo limite di memoria PHP fosse inferiore a 50 MB ed ottenessi una pagina bianca o un messagigo di errore, inserisci un valore più piccolo."
883
-
884
- #@ cpd
885
- #: counter-options.php:643
886
- #, php-format
887
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
- msgstr "Crea un backup della tabella %s nella cartella wp-content (se scrivibile)."
889
-
890
- #@ cpd
891
- #: counter-options.php:647
892
- msgid "Backup the database"
893
- msgstr "Backup del database"
894
-
895
- #@ cpd
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- msgid "Collect old data"
899
- msgstr "Raccogli i vecchi dati"
900
-
901
- #@ cpd
902
- #: counter-options.php:679
903
- #, php-format
904
- msgid "Current size of your counter table %s is %s."
905
- msgstr "La dimensione attuale della tabella %s é %s."
906
-
907
- #@ cpd
908
- #: counter-options.php:681
909
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
- msgstr "Puoi raccogliere i vecchi dati e svuotare la tabella.<br/>Le letture ed i visitatori saranno salvati per mese, per paese e per articolo.<br/>Client e referrer saranno cancellati."
911
-
912
- #@ cpd
913
- #: counter-options.php:686
914
- #, php-format
915
- msgid "Currently your colletion contains data until %s."
916
- msgstr "Al mopmento, la tua collezione contiene dei dati sino al %s."
917
-
918
- #@ cpd
919
- #: counter-options.php:690
920
- msgid "Normally new data will be added to the collection."
921
- msgstr "Generalmente, i nuovi dati saranno aggiunti alla collezione."
922
-
923
- #@ cpd
924
- #: counter-options.php:696
925
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
- msgstr "Cancella la vecchia raccolta e creane una nuova che contenga solamente i dati attuali della tabella."
927
-
928
- #@ cpd
929
- #: counter-options.php:697
930
- #, php-format
931
- msgid "All collected data until %s will deleted."
932
- msgstr "Tutti i dati raccolti sino al %s saranno cancellati."
933
-
934
- #@ cpd
935
- #: counter-options.php:702
936
- #, php-format
937
- msgid "Keep entries of last %s full months + current month in counter table."
938
- msgstr "Conserva nella tabella i dati per gli ultimi %s mesi completi + mese corrente."
939
-
940
- #@ cpd
941
- #: counter-options.php:761
942
- msgid "ReActivation"
943
- msgstr "Riattivazione"
944
-
945
- #@ cpd
946
- #: counter-options.php:764
947
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
- msgstr "Qui puoi iniziare l'installazione manuale delle funzioni.<br/>Come attivare e riattivare il plugin."
949
-
950
- #@ cpd
951
- #: counter-options.php:769
952
- msgid "ReActivate the plugin"
953
- msgstr "Riattiva il plugin"
954
-
955
- #@ cpd
956
- #: counter.php:165
957
- #: counter.php:899
958
- msgid "Visitors"
959
- msgstr "Visitatori"
960
-
961
- #@ cpd
962
- #: counter.php:168
963
- #: counter.php:169
964
- msgid "Most visited day"
965
- msgstr "Giorno maggiori visite"
966
-
967
- #@ cpd
968
- #: counter.php:1239
969
- msgid "drag and drop to sort"
970
- msgstr "drag and drop per ordinare"
971
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day in italiano\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
8
+ "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Italian\n"
14
+ "X-Poedit-Country: ITALY\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Le opzioni sono state aggiornate"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Database svuotato. %s record cancellato."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "DISINSTALLA Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "La tabella %s é stata cancellata"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:135
48
+ msgid "Options deleted"
49
+ msgstr "Le opzioni sono state cancellate"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ msgid "Uninstall"
55
+ msgstr "Disinstalla"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:317
59
+ msgid "Click here"
60
+ msgstr "Clicca qui"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:317
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:355
69
+ msgid "Online time"
70
+ msgstr "Durata del collegamento"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:356
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:359
79
+ msgid "Logged on Users"
80
+ msgstr "Utenti accreditati"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:361
84
+ msgid "count too"
85
+ msgstr "conteggia anche loro"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:373
89
+ msgid "Auto counter"
90
+ msgstr "Contatore-automatico"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:374
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:377
99
+ msgid "Bots to ignore"
100
+ msgstr "Bots da ignorare"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:561
104
+ msgid "Update options"
105
+ msgstr "Aggiorna le opzioni"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ msgid "Clean the database"
111
+ msgstr "Svuota il database"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:659
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "Puoi svuotare la tabella del contatore dai \"dati spam\".<br />Aggiungendo dei nuovi bots sopra ai vecchi \"dati spam\" conservati nel database.<br />Qui tu puoi avviare nuovamente il filtro per i bot e cancellare le visite dei bots."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:799
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:800
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:803
130
+ msgid "WARNING"
131
+ msgstr "ATTENZIONE"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:804
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
137
+
138
+ #@ cpd
139
+ #: counter-options.php:806
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ msgid "Yes"
147
+ msgstr "Sì"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:810
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ msgid "Statistics"
158
+ msgstr "Satistiche"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ msgid "Total visitors"
166
+ msgstr "Totale visitatori"
167
+
168
+ #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ msgid "Visitors currently online"
172
+ msgstr "Utenti attualmente in linea"
173
+
174
+ #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ msgid "Visitors today"
178
+ msgstr "Oggi"
179
+
180
+ #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ msgid "Visitors yesterday"
184
+ msgstr "Ieri"
185
+
186
+ #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ msgid "Visitors last week"
190
+ msgstr "La scorsa settimana"
191
+
192
+ #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ msgid "Counter starts on"
197
+ msgstr "Il contatore parte dal"
198
+
199
+ #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ msgid "Visitors per day"
207
+ msgstr "Visitatori per giorno"
208
+
209
+ #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ msgid "Visitors per month"
213
+ msgstr "Visitatori per mese"
214
+
215
+ #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ msgid "Visitors per post"
219
+ msgstr "Visitatori per articolo"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:122
223
+ msgid "Counter reseted."
224
+ msgstr "Il contatore é stato azzerato."
225
+
226
+ #@ cpd
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
+ msgid "How many posts do you want to see on dashboard page?"
230
+ msgstr "Quanti articoli desideri siano visibili nella bacheca?"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:442
234
+ msgid "Latest Counts - Posts"
235
+ msgstr "Totale corrente - Articoli"
236
+
237
+ #@ cpd
238
+ #: counter-options.php:446
239
+ msgid "Latest Counts - Days"
240
+ msgstr "Totale corrente - pagine"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
+ msgid "How many days do you want look back?"
247
+ msgstr "Quanti giorni desideri visionare a ritroso?"
248
+
249
+ #@ cpd
250
+ #: counter-options.php:488
251
+ msgid "Show in lists"
252
+ msgstr "Mostra nelle liste"
253
+
254
+ #@ cpd
255
+ #: counter-options.php:489
256
+ msgid "Show \"Reads per Post\" in a new column in post management views."
257
+ msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
258
+
259
+ #@ cpd
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
+ msgid "Reset the counter"
263
+ msgstr "Azzera il contatore"
264
+
265
+ #@ cpd
266
+ #: counter-options.php:780
267
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
+ msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
269
+
270
+ #@ cpd
271
+ #: counter.php:672
272
+ #, php-format
273
+ msgid "The %s most visited posts in last %s days:"
274
+ msgstr "I %s articoli più letti negli ultimi %s giorni:"
275
+
276
+ #@ default
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
+ msgid "Settings"
281
+ msgstr "Impostazioni"
282
+
283
+ #@ cpd
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
+ msgid "Reads"
289
+ msgstr "Visitatori"
290
+
291
+ #@ cpd
292
+ #: counter-core.php:728
293
+ msgid "Latest Counts"
294
+ msgstr "Totale corrente"
295
+
296
+ #@ cpd
297
+ #: counter-options.php:450
298
+ msgid "Chart - Days"
299
+ msgstr "Diagramma - Giorni"
300
+
301
+ #@ cpd
302
+ #: counter-options.php:454
303
+ msgid "Chart - Height"
304
+ msgstr "Diagramma - Altezza"
305
+
306
+ #@ cpd
307
+ #: counter-options.php:455
308
+ msgid "Height of the biggest bar"
309
+ msgstr "Altezza della categoria maggiore"
310
+
311
+ #@ cpd
312
+ #: counter.php:1196
313
+ msgid "This post"
314
+ msgstr "Questo articolo"
315
+
316
+ #@ default
317
+ #: counter-options.php:403
318
+ msgid "Dashboard"
319
+ msgstr "Bacheca"
320
+
321
+ #@ cpd
322
+ #: counter.php:262
323
+ msgid "Reads per day"
324
+ msgstr "Letture per giorno"
325
+
326
+ #@ cpd
327
+ #: counter-options.php:60
328
+ #, php-format
329
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
+ msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
331
+
332
+ #@ cpd
333
+ #: counter-options.php:65
334
+ msgid "update next"
335
+ msgstr "aggiorna il prossimo"
336
+
337
+ #@ cpd
338
+ #: counter-options.php:727
339
+ msgid "GeoIP - Countries"
340
+ msgstr "GeoIP - Stati"
341
+
342
+ #@ cpd
343
+ #: counter-options.php:736
344
+ msgid "Update old counter data"
345
+ msgstr "Aggiorna i vecchi dati per gli stati"
346
+
347
+ #@ cpd
348
+ #: counter-options.php:748
349
+ msgid "Update GeoIP database"
350
+ msgstr "Aggiorna database GeoIP"
351
+
352
+ #@ cpd
353
+ #: counter-options.php:743
354
+ msgid "Download a new version of GeoIP.dat file."
355
+ msgstr "Scarica la nuova versione del file GeoIP.dat."
356
+
357
+ #@ cpd
358
+ #: counter-options.php:753
359
+ msgid "More informations about GeoIP"
360
+ msgstr "Informazioni su GeoIP"
361
+
362
+ #@ cpd
363
+ #: counter-core.php:738
364
+ msgid "Reads per Country"
365
+ msgstr "Letture per stato"
366
+
367
+ #@ cpd
368
+ #: geoip/geoip.php:117
369
+ msgid "New GeoIP database installed."
370
+ msgstr "Il nuovo database GeoIP é stato installato."
371
+
372
+ #@ cpd
373
+ #: geoip/geoip.php:119
374
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
+ msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
376
+
377
+ #@ cpd
378
+ #: geoip/geoip.php:93
379
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
+ msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
381
+
382
+ #@ cpd
383
+ #: counter-options.php:459
384
+ msgid "Countries"
385
+ msgstr "Stati"
386
+
387
+ #@ cpd
388
+ #: counter-options.php:460
389
+ msgid "How many countries do you want to see on dashboard page?"
390
+ msgstr "Quanti stati desideri siano visibili nella bacheca?"
391
+
392
+ #@ cpd
393
+ #: counter-options.php:102
394
+ #, php-format
395
+ msgid "Mass Bots cleaned. %s counts deleted."
396
+ msgstr "Mass Bots svuotato. %s totali cancellati."
397
+
398
+ #@ cpd
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
+ msgid "Mass Bots"
402
+ msgstr "Mass Bots"
403
+
404
+ #@ cpd
405
+ #: counter-options.php:584
406
+ #, php-format
407
+ msgid "Show all IPs with more than %s page views per day"
408
+ msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
409
+
410
+ #@ cpd
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
+ msgid "show"
415
+ msgstr "mostra"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
+ #, php-format
421
+ msgid "Delete these %s counts"
422
+ msgstr "Cancella questi %s totali"
423
+
424
+ #@ cpd
425
+ #: counter.php:821
426
+ msgid "Other"
427
+ msgstr "Altro"
428
+
429
+ #@ default
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
+ #: userperspan.php:63
433
+ msgid "Front page displays"
434
+ msgstr "Mostra nella front page"
435
+
436
+ #@ cpd
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
+ msgid "Browsers"
440
+ msgstr "Browser"
441
+
442
+ #@ cpd
443
+ #: counter-options.php:593
444
+ msgid "IP"
445
+ msgstr "IP"
446
+
447
+ #@ cpd
448
+ #@ default
449
+ #: counter-options.php:594
450
+ #: notes.php:75
451
+ msgid "Date"
452
+ msgstr "Data"
453
+
454
+ #@ cpd
455
+ #: counter-options.php:595
456
+ msgid "Client"
457
+ msgstr "Client"
458
+
459
+ #@ cpd
460
+ #: counter-options.php:596
461
+ msgid "Views"
462
+ msgstr "Visualizzazioni"
463
+
464
+ #@ cpd
465
+ #: counter-options.php:497
466
+ msgid "Start Values"
467
+ msgstr "Valori di partenza"
468
+
469
+ #@ cpd
470
+ #: counter-options.php:501
471
+ msgid "Here you can change the date of first count and add a start count."
472
+ msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
473
+
474
+ #@ cpd
475
+ #: counter-options.php:505
476
+ msgid "Start date"
477
+ msgstr "Data di inizio"
478
+
479
+ #@ cpd
480
+ #: counter-options.php:506
481
+ msgid "Your old Counter starts at?"
482
+ msgstr "Il vecchio contatore parte da?"
483
+
484
+ #@ cpd
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
+ msgid "Start count"
488
+ msgstr "Avvia conteggio"
489
+
490
+ #@ cpd
491
+ #: counter-options.php:510
492
+ msgid "Add this value to \"Total visitors\"."
493
+ msgstr "Aggiungi questo valore a \"Totale visitatori\"."
494
+
495
+ #@ cpd
496
+ #: counter-options.php:714
497
+ msgid "Support"
498
+ msgstr "Supporto"
499
+
500
+ #@ cpd
501
+ #: counter-core.php:690
502
+ msgid "Bug? Problem? Question? Hint? Praise?"
503
+ msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
504
+
505
+ #@ cpd
506
+ #: counter-core.php:691
507
+ #, php-format
508
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
+ msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
510
+
511
+ #@ default
512
+ #: counter.php:786
513
+ msgid "Show"
514
+ msgstr "Mostra"
515
+
516
+ #@ default
517
+ #: counter.php:976
518
+ msgid "Edit Post"
519
+ msgstr "modifica articolo"
520
+
521
+ #@ cpd
522
+ #: counter-core.php:689
523
+ #, php-format
524
+ msgid "Time for Count per Day: <code>%s</code>."
525
+ msgstr "Fuso orario Count per Day: <code>%s</code>."
526
+
527
+ #@ cpd
528
+ #: counter-options.php:362
529
+ msgid "until User Level"
530
+ msgstr "sino a livello utente"
531
+
532
+ #@ default
533
+ #: counter-core.php:730
534
+ msgid "Plugin"
535
+ msgstr "Plugin"
536
+
537
+ #@ cpd
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
541
+ msgid "Notes"
542
+ msgstr "Note"
543
+
544
+ #@ default
545
+ #: notes.php:77
546
+ msgid "Action"
547
+ msgstr "Azione"
548
+
549
+ #@ cpd
550
+ #: notes.php:82
551
+ msgid "add"
552
+ msgstr "aggiungi"
553
+
554
+ #@ cpd
555
+ #: notes.php:98
556
+ msgid "save"
557
+ msgstr "salva"
558
+
559
+ #@ cpd
560
+ #: notes.php:99
561
+ msgid "delete"
562
+ msgstr "cancella"
563
+
564
+ #@ cpd
565
+ #: notes.php:110
566
+ msgid "edit"
567
+ msgstr "modifica"
568
+
569
+ #@ cpd
570
+ #: counter-options.php:514
571
+ msgid "Add this value to \"Total reads\"."
572
+ msgstr "Aggiungi questo valore a \"Totale letture\"."
573
+
574
+ #@ cpd
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
+ msgid "Total reads"
578
+ msgstr "Totale letture"
579
+
580
+ #@ cpd
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
+ msgid "Reads today"
584
+ msgstr "Letture odierne"
585
+
586
+ #@ cpd
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
+ msgid "Reads yesterday"
590
+ msgstr "Letture di ieri"
591
+
592
+ #@ cpd
593
+ #: counter.php:353
594
+ #: counter.php:1041
595
+ msgid "Map"
596
+ msgstr "Mappa"
597
+
598
+ #@ cpd
599
+ #: counter-options.php:381
600
+ msgid "Anonymous IP"
601
+ msgstr "IP anonimo"
602
+
603
+ #@ cpd
604
+ #: counter-options.php:385
605
+ msgid "Cache"
606
+ msgstr "Cache"
607
+
608
+ #@ cpd
609
+ #: counter-options.php:386
610
+ msgid "I use a cache plugin. Count these visits with ajax."
611
+ msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
612
+
613
+ #@ cpd
614
+ #: counter-options.php:465
615
+ msgid "Substring of the user agent, separated by comma"
616
+ msgstr "Sub-stringa user agent, separa con una virgola"
617
+
618
+ #@ cpd
619
+ #: counter-core.php:739
620
+ msgid "Visitors per Country"
621
+ msgstr "Visitatori per paese"
622
+
623
+ #@ cpd
624
+ #: counter-options.php:554
625
+ msgid "Debug mode"
626
+ msgstr "Modalità debug"
627
+
628
+ #@ cpd
629
+ #: counter-options.php:556
630
+ msgid "Show debug informations at the bottom of all pages."
631
+ msgstr "Mostra info debug al fondo di tutte le pagine."
632
+
633
+ #@ cpd
634
+ #: userperspan.php:38
635
+ msgid "Start"
636
+ msgstr "Inizio"
637
+
638
+ #@ cpd
639
+ #: userperspan.php:40
640
+ msgid "End"
641
+ msgstr "Termine"
642
+
643
+ #@ cpd
644
+ #: userperspan.php:42
645
+ msgid "PostID"
646
+ msgstr "ID articolo"
647
+
648
+ #@ cpd
649
+ #: userperspan.php:50
650
+ msgid "no data found"
651
+ msgstr "nessun dato trovato"
652
+
653
+ #@ cpd
654
+ #: counter-options.php:730
655
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
+ msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
657
+
658
+ #@ cpd
659
+ #: counter-options.php:351
660
+ msgid "Counter"
661
+ msgstr "Contatore"
662
+
663
+ #@ cpd
664
+ #: counter-options.php:476
665
+ msgid "Local URLs"
666
+ msgstr "URL locali"
667
+
668
+ #@ cpd
669
+ #: counter-options.php:477
670
+ msgid "Show local referrers too."
671
+ msgstr "Mostra anche i referenti locali."
672
+
673
+ #@ default
674
+ #: counter-options.php:485
675
+ msgid "Posts"
676
+ msgstr "Articoli"
677
+
678
+ #@ default
679
+ #: counter-options.php:485
680
+ msgid "Pages"
681
+ msgstr "Pagine"
682
+
683
+ #@ default
684
+ #: counter.php:985
685
+ msgid "Category"
686
+ msgstr "Categoria"
687
+
688
+ #@ default
689
+ #: counter.php:988
690
+ msgid "Tag"
691
+ msgstr "Tag"
692
+
693
+ #@ default
694
+ #: counter-core.php:692
695
+ msgid "License"
696
+ msgstr "Licenza"
697
+
698
+ #@ cpd
699
+ #: counter-core.php:734
700
+ msgid "Referrer"
701
+ msgstr "Referente"
702
+
703
+ #@ default
704
+ #: counter.php:1220
705
+ msgid "Title"
706
+ msgstr "Titolo"
707
+
708
+ #@ cpd
709
+ #: counter-options.php:392
710
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
711
+ msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
712
+
713
+ #@ cpd
714
+ #: counter-options.php:389
715
+ msgid "Clients and referrers"
716
+ msgstr "Client e referenti"
717
+
718
+ #@ cpd
719
+ #: counter.php:158
720
+ #: counter.php:1200
721
+ msgid "Reads last week"
722
+ msgstr "Letture scorsa settimana"
723
+
724
+ #@ cpd
725
+ #: counter-core.php:726
726
+ #: counter.php:1201
727
+ msgid "Reads per month"
728
+ msgstr "Letture scorso mese"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:468
732
+ msgid "Referrers - Entries"
733
+ msgstr "Referenti - Pubblicazioni"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:469
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:472
742
+ msgid "Referrers - Days"
743
+ msgstr "Referenti - Giorni"
744
+
745
+ #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "I %s referenti degli ultimi %s giorni:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:724
753
+ msgid "Visitors online"
754
+ msgstr "Visitatori online"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" é stato aggiornato alla versione %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Il backup é fallito! Non é possibile aprire il file"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Backup in corso per %s elementi. Ogni punto provvede a %s elementi."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "La tua cartella wp-content non é scrivibile. Puoi copiare il contenuto di questo box in un file di testo."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Backup della tabella salvato in %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Backup delle opzioni e raccolta dati salvato in %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Raccolta in corso..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Visitatori per post..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Cancellazione vecchi dati..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Computo dati collezionati sino al %s e tabella %s ottimizzati (dimensione precedente = %s &gt; attuale = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Installazione di \"Count per Day\" selezionata"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Strumenti"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Salva solo gli URL, no query string."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Chi può vedere"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "personalizzato"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "e superiore hanno il permesso per potere vedere le stat."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Imposta %s ruolo %s necessario per l'utente:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Foglio di stile"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "NO foglio di stile nel Frontend"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Non caricare il foglio di stile \"counter.css\" nel frontend."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Backup"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Elementi per pass"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Quanti elementi salvare per pass? Predefinito: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Se il tuo limite di memoria PHP fosse inferiore a 50 MB ed ottenessi una pagina bianca o un messagigo di errore, inserisci un valore più piccolo."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Crea un backup della tabella %s nella cartella wp-content (se scrivibile)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Backup del database"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Raccogli i vecchi dati"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "La dimensione attuale della tabella %s é %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Puoi raccogliere i vecchi dati e svuotare la tabella.<br/>Le letture ed i visitatori saranno salvati per mese, per paese e per articolo.<br/>Client e referrer saranno cancellati."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your colletion contains data until %s."
916
+ msgstr "Al mopmento, la tua collezione contiene dei dati sino al %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Generalmente, i nuovi dati saranno aggiunti alla collezione."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Cancella la vecchia raccolta e creane una nuova che contenga solamente i dati attuali della tabella."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Tutti i dati raccolti sino al %s saranno cancellati."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Conserva nella tabella i dati per gli ultimi %s mesi completi + mese corrente."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "Riattivazione"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Qui puoi iniziare l'installazione manuale delle funzioni.<br/>Come attivare e riattivare il plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "Riattiva il plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Visitatori"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Giorno maggiori visite"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "drag and drop per ordinare"
971
+
locale/cpd-ja.po CHANGED
@@ -1,1095 +1,1095 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v3.00\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-14 21:55+0900\n"
6
- "PO-Revision-Date: 2012-07-14 22:43+0900\n"
7
- "Last-Translator: Juno Hayami <juno.hayami@gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Japanese\n"
14
- "X-Poedit-Country: JAPAN\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- # @ cpd
22
- #: counter-core.php:225
23
- #, php-format
24
- msgid "\"Count per Day\" updated to version %s."
25
- msgstr "\"Count per Day\" がバージョン %s にアップデートされました。"
26
-
27
- # @ default
28
- #: counter-core.php:612
29
- #: counter-options.php:386
30
- #: counter-options.php:712
31
- msgid "Settings"
32
- msgstr "設定"
33
-
34
- # @ cpd
35
- #: counter-core.php:677
36
- #: counter-options.php:761
37
- #: counter.php:186
38
- #: counter.php:922
39
- msgid "Reads"
40
- msgstr "総購読数"
41
-
42
- # @ cpd
43
- #: counter-core.php:740
44
- #, php-format
45
- msgid "Time for Count per Day: <code>%s</code>."
46
- msgstr "Count per Dayでの日時: <code>%s</code>."
47
-
48
- # @ cpd
49
- #: counter-core.php:741
50
- msgid "Bug? Problem? Question? Hint? Praise?"
51
- msgstr "バグ?問題?質問?ヒント?評価?"
52
-
53
- # @ cpd
54
- #: counter-core.php:742
55
- #, php-format
56
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
57
- msgstr "<a href=\"%s\">plugin page</a> にコメントする。"
58
-
59
- # @ default
60
- #: counter-core.php:743
61
- msgid "License"
62
- msgstr "ライセンス"
63
-
64
- # @ cpd
65
- #: counter-core.php:775
66
- #: counter.php:187
67
- #: counter.php:1113
68
- #: counter.php:1305
69
- msgid "Total visitors"
70
- msgstr "総訪問者数"
71
-
72
- # @ cpd
73
- #: counter-core.php:776
74
- msgid "Visitors online"
75
- msgstr "オンライン中の訪問者数"
76
-
77
- # @ cpd
78
- #: counter-core.php:777
79
- #: counter.php:1309
80
- msgid "Visitors per month"
81
- msgstr "月別訪問者数"
82
-
83
- # @ cpd
84
- #: counter-core.php:778
85
- #: counter.php:1304
86
- msgid "Reads per month"
87
- msgstr "月別閲覧数"
88
-
89
- # @ cpd
90
- #: counter-core.php:779
91
- #: counter-options.php:806
92
- msgid "Visitors per post"
93
- msgstr "記事別の訪問者数"
94
-
95
- # @ cpd
96
- #: counter-core.php:780
97
- msgid "Latest Counts"
98
- msgstr "最近のカウント"
99
-
100
- # @ cpd
101
- #: counter-core.php:781
102
- #: counter.php:193
103
- #: counter.php:292
104
- #: counter.php:1115
105
- #: counter.php:1310
106
- #: userperspan.php:34
107
- msgid "Visitors per day"
108
- msgstr "一日あたりの訪問者数"
109
-
110
- # @ default
111
- # @ cpd
112
- #: counter-core.php:782
113
- #: counter-options.php:836
114
- #: counter-options.php:840
115
- msgid "Search strings"
116
- msgstr "検索文字列"
117
-
118
- # @ default
119
- #: counter-core.php:783
120
- msgid "Plugin"
121
- msgstr "プラグイン"
122
-
123
- # @ cpd
124
- #: counter-core.php:786
125
- #: counter-options.php:832
126
- msgid "Browsers"
127
- msgstr "ブラウザ"
128
-
129
- # @ cpd
130
- #: counter-core.php:787
131
- msgid "Referrer"
132
- msgstr "リファラ"
133
-
134
- # @ cpd
135
- #: counter-core.php:791
136
- msgid "Reads per Country"
137
- msgstr "国ごとの閲覧数"
138
-
139
- # @ cpd
140
- #: counter-core.php:792
141
- msgid "Visitors per Country"
142
- msgstr "国ごとの訪問者数"
143
-
144
- # @ cpd
145
- #: counter-core.php:807
146
- #: counter.php:1227
147
- msgid "Statistics"
148
- msgstr "統計"
149
-
150
- # @ cpd
151
- #: counter-core.php:977
152
- msgid "Backup failed! Cannot open file"
153
- msgstr "バックアップに失敗しました! ファイルが開けません。"
154
-
155
- # @ cpd
156
- #: counter-core.php:1004
157
- #, php-format
158
- msgid "Backup of %s entries in progress. Every point complies %s entries."
159
- msgstr "%s 件の記録をバックアップ処理中。 %s 件の記録が完了しています。"
160
-
161
- # @ cpd
162
- #: counter-core.php:1091
163
- msgid "Your can download the backup files here and now."
164
- msgstr "今すぐにここからバックアップファイルをダウンロードできます。"
165
-
166
- # @ cpd
167
- #: counter-core.php:1095
168
- #: counter-core.php:1103
169
- #, php-format
170
- msgid "Backup of counter table saved in %s."
171
- msgstr "カウンターテーブルのバックアップを %s に保存しました。"
172
-
173
- # @ cpd
174
- #: counter-core.php:1097
175
- #: counter-core.php:1105
176
- #, php-format
177
- msgid "Backup of counter options and collection saved in %s."
178
- msgstr "カウンターオプションのバックアップと記録は %s に保存されました。"
179
-
180
- # @ cpd
181
- #: counter-core.php:1161
182
- msgid "Error while reading backup file!"
183
- msgstr "バックアップファイルの読み取り中にエラーが発生しました!"
184
-
185
- # @ cpd
186
- #: counter-core.php:1165
187
- #, php-format
188
- msgid "The backup was added to counter table %s."
189
- msgstr "カウンターテーブル %s にバックアップを追加しました。"
190
-
191
- # @ cpd
192
- #: counter-core.php:1167
193
- #, php-format
194
- msgid "The counter table %s was restored from backup."
195
- msgstr "カウンターテーブル %s をバックアップから復元しました。"
196
-
197
- # @ cpd
198
- #: counter-core.php:1184
199
- msgid "Options restored from backup."
200
- msgstr "オプションをバックアップから復元しました。"
201
-
202
- # @ cpd
203
- #: counter-options.php:52
204
- msgid "Options updated"
205
- msgstr "オプションを更新しました"
206
-
207
- # @ cpd
208
- #: counter-options.php:63
209
- #, php-format
210
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
211
- msgstr "訪問者の国情報を更新。%s 上の <b>%s</b> 件がまだ国と関連付けられていません。"
212
-
213
- # @ cpd
214
- #: counter-options.php:66
215
- msgid "update next"
216
- msgstr "次を更新"
217
-
218
- # @ cpd
219
- #: counter-options.php:106
220
- #, php-format
221
- msgid "Mass Bots cleaned. %s counts deleted."
222
- msgstr "Botをクリーンアップしました。 %s 件が削除されました。"
223
-
224
- # @ cpd
225
- #: counter-options.php:113
226
- #, php-format
227
- msgid "Database cleaned. %s rows deleted."
228
- msgstr "データベースをクリーンアップしました。 %s 行削除されました。"
229
-
230
- # @ cpd
231
- #: counter-options.php:123
232
- msgid "Counter reseted."
233
- msgstr "カウンターがリセットされました。"
234
-
235
- # @ cpd
236
- #: counter-options.php:128
237
- #: counter-options.php:691
238
- msgid "UNINSTALL Count per Day"
239
- msgstr "Count per Day のアンインストール"
240
-
241
- # @ cpd
242
- #: counter-options.php:133
243
- #: counter-options.php:134
244
- #: counter-options.php:135
245
- #, php-format
246
- msgid "Table %s deleted"
247
- msgstr "%s テーブルが削除されました"
248
-
249
- # @ cpd
250
- #: counter-options.php:136
251
- msgid "Options deleted"
252
- msgstr "オプションを削除しました"
253
-
254
- # @ cpd
255
- #: counter-options.php:169
256
- msgid "Collection in progress..."
257
- msgstr "整理中です…"
258
-
259
- # @ cpd
260
- #: counter-options.php:263
261
- msgid "Get Visitors per Post..."
262
- msgstr "記事別の訪問者数を取得…"
263
-
264
- # @ cpd
265
- #: counter-options.php:284
266
- msgid "Delete old data..."
267
- msgstr "古いデータを削除します…"
268
-
269
- # @ cpd
270
- #: counter-options.php:308
271
- #, php-format
272
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
273
- msgstr "%s までのカウンター記録を整理し、カウンターテーブル %s を最適化しました (最適化前のサイズ = %s &gt; 最適化後のサイズ = %s)。"
274
-
275
- # @ cpd
276
- #: counter-options.php:317
277
- msgid "Installation of \"Count per Day\" checked"
278
- msgstr "\"Count per Day\" のインストールが完了しました。"
279
-
280
- # @ cpd
281
- #: counter-options.php:332
282
- msgid "Old search strings deleted"
283
- msgstr "古い検索文字列を削除しました"
284
-
285
- # @ cpd
286
- #: counter-options.php:362
287
- #: counter-options.php:677
288
- msgid "Uninstall"
289
- msgstr "アンインストール"
290
-
291
- # @ cpd
292
- #: counter-options.php:363
293
- msgid "Click here"
294
- msgstr "Click here"
295
-
296
- # @ cpd
297
- #: counter-options.php:363
298
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
299
- msgstr "\"Count per Day\" を無効化してアンインストール"
300
-
301
- # @ default
302
- #: counter-options.php:385
303
- #: counter-options.php:711
304
- msgid "Tools"
305
- msgstr "ツール"
306
-
307
- # @ cpd
308
- #: counter-options.php:402
309
- #: massbots.php:36
310
- msgid "Mass Bots"
311
- msgstr "Bot"
312
-
313
- # @ cpd
314
- #: counter-options.php:406
315
- #, php-format
316
- msgid "Show all IPs with more than %s page views per day"
317
- msgstr "一日あたり %s ページ以上閲覧のIPを表示"
318
-
319
- # @ cpd
320
- #: counter-options.php:407
321
- #: notes.php:71
322
- #: userperspan.php:44
323
- msgid "show"
324
- msgstr "表示"
325
-
326
- # @ cpd
327
- #: counter-options.php:415
328
- msgid "IP"
329
- msgstr "IP"
330
-
331
- # @ cpd
332
- # @ default
333
- #: counter-options.php:416
334
- #: notes.php:75
335
- msgid "Date"
336
- msgstr "日付"
337
-
338
- # @ cpd
339
- #: counter-options.php:417
340
- msgid "Client"
341
- msgstr "クライアント"
342
-
343
- # @ cpd
344
- #: counter-options.php:418
345
- msgid "Views"
346
- msgstr "閲覧数"
347
-
348
- # @ cpd
349
- #: counter-options.php:433
350
- #: counter-options.php:449
351
- #, php-format
352
- msgid "Delete these %s counts"
353
- msgstr "これら %s 件を削除"
354
-
355
- # @ cpd
356
- #: counter-options.php:461
357
- #: counter-options.php:898
358
- msgid "Backup"
359
- msgstr "バックアップ"
360
-
361
- # @ cpd
362
- #: counter-options.php:465
363
- #, php-format
364
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
365
- msgstr "カウンターテーブル %s のバックアップをwp-contentディレクトリに作成します(書き込み可能な場合)。"
366
-
367
- # @ cpd
368
- #: counter-options.php:468
369
- msgid "Download only"
370
- msgstr "ダウンロードのみ"
371
-
372
- # @ cpd
373
- #: counter-options.php:472
374
- msgid "Backup the database"
375
- msgstr "データベースのバックアップ"
376
-
377
- # @ cpd
378
- #: counter-options.php:500
379
- msgid "Settings and collections"
380
- msgstr "設定とオプション"
381
-
382
- # @ cpd
383
- #: counter-options.php:505
384
- #, php-format
385
- msgid "Counter table %s"
386
- msgstr "カウンターテーブル %s"
387
-
388
- # @ cpd
389
- #: counter-options.php:512
390
- #, php-format
391
- msgid "Add data from the backup file %s to existing counter table?"
392
- msgstr "現在あるカウンターテーブルにバックアップファイル %s からデータを追加しますか?"
393
-
394
- # @ cpd
395
- #: counter-options.php:512
396
- msgid "Add"
397
- msgstr "追加"
398
-
399
- # @ cpd
400
- #: counter-options.php:516
401
- #, php-format
402
- msgid "Restore data from the backup file %s ?"
403
- msgstr "バックアップファイル %s からデータを復元しますか?"
404
-
405
- # @ cpd
406
- #: counter-options.php:516
407
- msgid "Restore"
408
- msgstr "復元"
409
-
410
- # @ cpd
411
- #: counter-options.php:518
412
- msgid "Delete"
413
- msgstr "削除"
414
-
415
- # @ cpd
416
- #: counter-options.php:519
417
- #, php-format
418
- msgid "Delete the backup file %s ?"
419
- msgstr "バックアップファイル %s を削除しますか?"
420
-
421
- # @ cpd
422
- #: counter-options.php:525
423
- msgid "add backup to current counter table"
424
- msgstr "新しいカウンターテーブルにバックアップを追加"
425
-
426
- # @ cpd
427
- #: counter-options.php:526
428
- msgid "replace current counter table with with backup"
429
- msgstr "カウンターテーブルをバックアップで置き換える"
430
-
431
- # @ cpd
432
- #: counter-options.php:527
433
- msgid "delete backup file"
434
- msgstr "バックアップファイルを削除"
435
-
436
- # @ cpd
437
- #: counter-options.php:538
438
- #: counter-options.php:546
439
- msgid "Clean the database"
440
- msgstr "データベースのクリーンアップ"
441
-
442
- # @ cpd
443
- #: counter-options.php:541
444
- 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."
445
- msgstr "\"スパムデータ\"を削除してカウンターテーブルをクリーンアップできます。<br />以前の\"スパムデータ\"に新規でBotを追加するとデータベースは保護されます。<br />ここではBotフィルターを再度実行したりBotの訪問データを削除できます。"
446
-
447
- # @ cpd
448
- #: counter-options.php:552
449
- #, php-format
450
- msgid "Delete search strings older than %s days."
451
- msgstr "%s 日より古い検索文字列を削除"
452
-
453
- # @ cpd
454
- #: counter-options.php:554
455
- msgid "Delete search strings"
456
- msgstr "検索文字列を削除する"
457
-
458
- # @ cpd
459
- #: counter-options.php:563
460
- #: counter-options.php:595
461
- msgid "Collect old data"
462
- msgstr "古いデータの整理"
463
-
464
- # @ cpd
465
- #: counter-options.php:568
466
- #, php-format
467
- msgid "Current size of your counter table %s is %s."
468
- msgstr "カウンターテーブル %s のサイズは %s です。"
469
-
470
- # @ cpd
471
- #: counter-options.php:570
472
- 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."
473
- msgstr "古いデータを整理し、カウンターテーブルをクリーンアップできます。<br/>月別・国別・記事別の購読数と訪問者数は保存されます。<br/>クライアントとリファラは削除されます。"
474
-
475
- # @ cpd
476
- #: counter-options.php:575
477
- #, php-format
478
- msgid "Currently your collection contains data until %s."
479
- msgstr "現在、%s までのデータが整理するデータに含まれています。"
480
-
481
- # @ cpd
482
- #: counter-options.php:579
483
- msgid "Normally new data will be added to the collection."
484
- msgstr "通常、新しいデータは整理したデータに追加されます。"
485
-
486
- # @ cpd
487
- #: counter-options.php:585
488
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
489
- msgstr "古いデータを消して、現在の内容のみの新しいデータをカウンターテーブルに作成する。"
490
-
491
- # @ cpd
492
- #: counter-options.php:586
493
- #, php-format
494
- msgid "All collected data until %s will deleted."
495
- msgstr "%s までの全てのデータは削除されます。"
496
-
497
- # @ cpd
498
- #: counter-options.php:591
499
- #, php-format
500
- msgid "Keep entries of last %s full months + current month in counter table."
501
- msgstr "過去 %s ヶ月間 + 今月 の記録をカウンターテーブルに保存する。"
502
-
503
- # @ cpd
504
- #: counter-options.php:608
505
- msgid "GeoIP - Countries"
506
- msgstr "GeoIP - 国別統計"
507
-
508
- # @ cpd
509
- #: counter-options.php:611
510
- 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!"
511
- msgstr "IPアドレスをチェックしてGeoIPデータベースと照合することにより全ての記事で国データを取得できます。これにはしばらく時間がかかります。"
512
-
513
- # @ cpd
514
- #: counter-options.php:617
515
- msgid "Update old counter data"
516
- msgstr "過去のカウンターデータを更新"
517
-
518
- # @ cpd
519
- #: counter-options.php:624
520
- msgid "Download a new version of GeoIP.dat file."
521
- msgstr "GeoIP.datファイルの新しいバージョンをダウンロードする。"
522
-
523
- # @ cpd
524
- #: counter-options.php:629
525
- msgid "Update GeoIP database"
526
- msgstr "GeoIPデータベースの更新"
527
-
528
- # @ cpd
529
- #: counter-options.php:634
530
- msgid "More informations about GeoIP"
531
- msgstr "GeoIPの詳しい情報"
532
-
533
- # @ cpd
534
- #: counter-options.php:642
535
- msgid "ReActivation"
536
- msgstr "プラグインを再度有効にする"
537
-
538
- # @ cpd
539
- #: counter-options.php:645
540
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
541
- msgstr "ここから手動で機能を開始できます。<br/>プラグインを無効にしてもう一度有効にするのと同じ効果です。"
542
-
543
- # @ cpd
544
- #: counter-options.php:650
545
- msgid "ReActivate the plugin"
546
- msgstr "プラグインを再度有効にする"
547
-
548
- # @ cpd
549
- #: counter-options.php:658
550
- #: counter-options.php:668
551
- msgid "Reset the counter"
552
- msgstr "カウンターのリセット"
553
-
554
- # @ cpd
555
- #: counter-options.php:661
556
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
557
- msgstr "テーブルを全て空にしてリセットできます。全てが0になります!<br />最新のデータが必要な場合はバックアップを作成してください!"
558
-
559
- # @ cpd
560
- #: counter-options.php:667
561
- #: counter-options.php:690
562
- msgid "Yes"
563
- msgstr "はい"
564
-
565
- # @ cpd
566
- #: counter-options.php:680
567
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
568
- msgstr "もしも\"Count per Day\"を無効にするだけであれば使用しているデータベース上のテーブルは保存され続けます。"
569
-
570
- # @ cpd
571
- #: counter-options.php:681
572
- msgid "Here you can delete the tables and disable \"Count per Day\"."
573
- msgstr "ここから\"Count per Day\"が使用しているテーブルを削除し無効にすることができます。"
574
-
575
- # @ cpd
576
- #: counter-options.php:684
577
- msgid "WARNING"
578
- msgstr "警告"
579
-
580
- # @ cpd
581
- #: counter-options.php:685
582
- msgid "These tables (with ALL counter data) will be deleted."
583
- msgstr "データベース上にある以下のテーブル(全てのカウンターデータ)が削除されます。"
584
-
585
- # @ cpd
586
- #: counter-options.php:687
587
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
588
- msgstr "\"Count per Day\"を再インストールした場合もカウントは0から始まります。"
589
-
590
- # @ cpd
591
- #: counter-options.php:691
592
- msgid "You are sure to disable Count per Day and delete all data?"
593
- msgstr "本当にCount per Dayを無効にして全てのデータを削除しますか?"
594
-
595
- # @ cpd
596
- #: counter-options.php:699
597
- msgid "Support"
598
- msgstr "サポート"
599
-
600
- # @ cpd
601
- #: counter-options.php:720
602
- msgid "Counter"
603
- msgstr "カウンター"
604
-
605
- # @ cpd
606
- #: counter-options.php:724
607
- msgid "Online time"
608
- msgstr "オンライン判定時間(秒)"
609
-
610
- # @ cpd
611
- #: counter-options.php:725
612
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
613
- msgstr "オンラインの数をカウントする秒数。 ダッシュボード上の\"オンライン中の訪問者数\"で使用。"
614
-
615
- # @ cpd
616
- #: counter-options.php:728
617
- msgid "Logged on Users"
618
- msgstr "ログインユーザー"
619
-
620
- # @ cpd
621
- #: counter-options.php:730
622
- msgid "count too"
623
- msgstr "カウントに含む"
624
-
625
- # @ cpd
626
- #: counter-options.php:731
627
- msgid "until User Level"
628
- msgstr "次のユーザーレベルまで"
629
-
630
- # @ cpd
631
- #: counter-options.php:742
632
- msgid "Auto counter"
633
- msgstr "自動でカウントする"
634
-
635
- # @ cpd
636
- #: counter-options.php:743
637
- msgid "Counts automatically single-posts and pages, no changes on template needed."
638
- msgstr "テンプレートの変更なしで自動的に個別記事や固定ページもカウントする"
639
-
640
- # @ cpd
641
- #: counter-options.php:746
642
- msgid "Bots to ignore"
643
- msgstr "無視するBot"
644
-
645
- # @ cpd
646
- #: counter-options.php:750
647
- msgid "Anonymous IP"
648
- msgstr "匿名IP"
649
-
650
- # @ cpd
651
- #: counter-options.php:754
652
- msgid "Cache"
653
- msgstr "キャッシュ"
654
-
655
- # @ cpd
656
- #: counter-options.php:755
657
- msgid "I use a cache plugin. Count these visits with ajax."
658
- msgstr "キャッシュプラグインを使用しています。ajaxでこれらの訪問者もカウントします。"
659
-
660
- # @ cpd
661
- #: counter-options.php:758
662
- msgid "Clients and referrers"
663
- msgstr "クライアントとリファラ"
664
-
665
- # @ cpd
666
- #: counter-options.php:761
667
- 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."
668
- msgstr "クライアントとリファラを表示・保存します。<br />多くのデータベース容量を必要としますがあなたのサイトへの訪問者情報をより細かく把握できます。"
669
-
670
- # @ cpd
671
- #: counter-options.php:763
672
- msgid "Save URL only, no query string."
673
- msgstr "URLのみ保存し、クエリ部分は含まない。"
674
-
675
- # @ default
676
- #: counter-options.php:771
677
- msgid "Dashboard"
678
- msgstr "ダッシュボード"
679
-
680
- # @ cpd
681
- #: counter-options.php:787
682
- msgid "Who can see it"
683
- msgstr "閲覧を許可する人"
684
-
685
- # @ cpd
686
- #: counter-options.php:796
687
- msgid "custom"
688
- msgstr "カスタム"
689
-
690
- # @ cpd
691
- #: counter-options.php:798
692
- msgid "and higher are allowed to see the statistics page."
693
- msgstr "これ以上の権限なら統計ページの閲覧を許可します。"
694
-
695
- # @ cpd
696
- #: counter-options.php:800
697
- #, php-format
698
- msgid "Set the %s capability %s a user need:"
699
- msgstr "ユーザに必要な %s 権限 %s の設定:"
700
-
701
- # @ cpd
702
- #: counter-options.php:807
703
- #: counter-options.php:811
704
- msgid "How many posts do you want to see on dashboard page?"
705
- msgstr "ダッシュボードで何件まで閲覧しますか?"
706
-
707
- # @ cpd
708
- #: counter-options.php:810
709
- msgid "Latest Counts - Posts"
710
- msgstr "最近のカウント - 記事"
711
-
712
- # @ cpd
713
- #: counter-options.php:814
714
- msgid "Latest Counts - Days"
715
- msgstr "最近のカウント - 日別"
716
-
717
- # @ cpd
718
- #: counter-options.php:815
719
- #: counter-options.php:819
720
- #: counter-options.php:841
721
- msgid "How many days do you want look back?"
722
- msgstr "今日から何日前まで表示しますか?"
723
-
724
- # @ cpd
725
- #: counter-options.php:818
726
- msgid "Chart - Days"
727
- msgstr "チャート(グラフ) - 日別"
728
-
729
- # @ cpd
730
- #: counter-options.php:822
731
- msgid "Chart - Height"
732
- msgstr "チャート(グラフ) - 高さ"
733
-
734
- # @ cpd
735
- #: counter-options.php:823
736
- msgid "Height of the biggest bar"
737
- msgstr "最大値のときの高さ"
738
-
739
- # @ cpd
740
- #: counter-options.php:827
741
- msgid "Countries"
742
- msgstr "国情報"
743
-
744
- # @ cpd
745
- #: counter-options.php:828
746
- msgid "How many countries do you want to see on dashboard page?"
747
- msgstr "ダッシュボード上で何ヶ国まで閲覧しますか?"
748
-
749
- # @ cpd
750
- #: counter-options.php:833
751
- msgid "Substring of the user agent, separated by comma"
752
- msgstr "ユーザーエージェントは種類ごとにカンマで区切ってください"
753
-
754
- # @ cpd
755
- #: counter-options.php:836
756
- msgid "Referrers - Entries"
757
- msgstr "リファラ - 投稿別"
758
-
759
- # @ cpd
760
- #: counter-options.php:837
761
- msgid "How many referrers do you want to see on dashboard page?"
762
- msgstr "ダッシュボード上で何件のリファラを表示しますか?"
763
-
764
- # @ cpd
765
- #: counter-options.php:840
766
- msgid "Referrers - Days"
767
- msgstr "リファラ - 日数"
768
-
769
- # @ cpd
770
- #: counter-options.php:844
771
- msgid "Local URLs"
772
- msgstr "ローカルURLの扱い"
773
-
774
- # @ cpd
775
- #: counter-options.php:845
776
- msgid "Show local referrers too."
777
- msgstr "ローカルのリファラも表示する"
778
-
779
- # @ default
780
- #: counter-options.php:852
781
- msgid "Posts"
782
- msgstr "記事"
783
-
784
- # @ default
785
- #: counter-options.php:852
786
- msgid "Pages"
787
- msgstr "固定ページ"
788
-
789
- # @ cpd
790
- #: counter-options.php:855
791
- msgid "Show in lists"
792
- msgstr "リスト表示"
793
-
794
- # @ cpd
795
- #: counter-options.php:856
796
- msgid "Show \"Reads per Post\" in a new column in post management views."
797
- msgstr "投稿管理画面に新しいカラムを追加して\"記事別閲覧数\"を表示します。"
798
-
799
- # @ cpd
800
- #: counter-options.php:863
801
- msgid "Start Values"
802
- msgstr "スタートする値"
803
-
804
- # @ cpd
805
- #: counter-options.php:867
806
- msgid "Here you can change the date of first count and add a start count."
807
- msgstr "ここでカウントを開始した日とカウントに加算する値を変更できます。"
808
-
809
- # @ cpd
810
- #: counter-options.php:871
811
- msgid "Start date"
812
- msgstr "開始日"
813
-
814
- # @ cpd
815
- #: counter-options.php:872
816
- msgid "Your old Counter starts at?"
817
- msgstr "前に使っていたカウンターはいつからカウントを開始しましたか?"
818
-
819
- # @ cpd
820
- #: counter-options.php:875
821
- #: counter-options.php:879
822
- msgid "Start count"
823
- msgstr "カウントスタート"
824
-
825
- # @ cpd
826
- #: counter-options.php:876
827
- msgid "Add this value to \"Total visitors\"."
828
- msgstr "この値を\"総訪問者数\"に追加します。"
829
-
830
- # @ cpd
831
- #: counter-options.php:880
832
- msgid "Add this value to \"Total reads\"."
833
- msgstr "この値を\"総閲覧数\"に追加します。"
834
-
835
- # @ cpd
836
- #: counter-options.php:887
837
- msgid "Stylesheet"
838
- msgstr "スタイルシート"
839
-
840
- # @ cpd
841
- #: counter-options.php:890
842
- msgid "NO Stylesheet in Frontend"
843
- msgstr "トップページにスタイルシートを使わない"
844
-
845
- # @ cpd
846
- #: counter-options.php:891
847
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
848
- msgstr "トップページに\"counter.css\"を読み込みません。"
849
-
850
- # @ cpd
851
- #: counter-options.php:901
852
- msgid "Entries per pass"
853
- msgstr "許可するエントリ"
854
-
855
- # @ cpd
856
- #: counter-options.php:904
857
- msgid "How many entries should be saved per pass? Default: 10000"
858
- msgstr "何件のエントリを保存しますか? デフォルト: 10000"
859
-
860
- # @ cpd
861
- #: counter-options.php:909
862
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
863
- msgstr "PHPのメモリ上限が 50 MB よりも少ない場合、真っ白なページかもっと小さい値にするようエラーメッセージが表示されます。"
864
-
865
- # @ cpd
866
- #: counter-options.php:917
867
- msgid "Debug mode"
868
- msgstr "デバッグモード"
869
-
870
- # @ cpd
871
- #: counter-options.php:919
872
- msgid "Show debug informations at the bottom of all pages."
873
- msgstr "全てのページの最下部にデバッグ情報を表示します。"
874
-
875
- # @ cpd
876
- #: counter-options.php:924
877
- msgid "Update options"
878
- msgstr "オプションの更新"
879
-
880
- # @ cpd
881
- #: counter.php:182
882
- #: counter.php:1300
883
- msgid "Total reads"
884
- msgstr "総閲覧数"
885
-
886
- # @ cpd
887
- #: counter.php:183
888
- #: counter.php:1301
889
- msgid "Reads today"
890
- msgstr "今日の閲覧数"
891
-
892
- # @ cpd
893
- #: counter.php:184
894
- #: counter.php:1302
895
- msgid "Reads yesterday"
896
- msgstr "昨日の閲覧数"
897
-
898
- # @ cpd
899
- #: counter.php:185
900
- #: counter.php:1303
901
- msgid "Reads last week"
902
- msgstr "先週の閲覧数"
903
-
904
- # @ cpd
905
- #: counter.php:188
906
- #: counter.php:1311
907
- msgid "Visitors currently online"
908
- msgstr "現在オンライン中の人数"
909
-
910
- # @ cpd
911
- #: counter.php:189
912
- #: counter.php:1306
913
- msgid "Visitors today"
914
- msgstr "今日の訪問者数"
915
-
916
- # @ cpd
917
- #: counter.php:190
918
- #: counter.php:1307
919
- msgid "Visitors yesterday"
920
- msgstr "昨日の訪問者数"
921
-
922
- # @ cpd
923
- #: counter.php:191
924
- #: counter.php:1308
925
- msgid "Visitors last week"
926
- msgstr "先週の訪問者数"
927
-
928
- # @ cpd
929
- #: counter.php:192
930
- #: counter.php:946
931
- msgid "Visitors"
932
- msgstr "訪問者数"
933
-
934
- # @ cpd
935
- #: counter.php:194
936
- #: counter.php:872
937
- #: counter.php:1312
938
- msgid "Counter starts on"
939
- msgstr "カウント開始日"
940
-
941
- # @ cpd
942
- #: counter.php:195
943
- #: counter.php:196
944
- msgid "Most visited day"
945
- msgstr "最も多かった日"
946
-
947
- # @ cpd
948
- #: counter.php:291
949
- msgid "Reads per day"
950
- msgstr "一日あたりの閲覧数"
951
-
952
- # @ cpd
953
- #: counter.php:382
954
- #: counter.php:1144
955
- msgid "Map"
956
- msgstr "マップ"
957
-
958
- # @ cpd
959
- #: counter.php:705
960
- #, php-format
961
- msgid "The %s most visited posts in last %s days:"
962
- msgstr "最も訪問者が多かった記事 %s 件 (過去 %s 日間)"
963
-
964
- # @ default
965
- #: counter.php:821
966
- msgid "Show"
967
- msgstr "表示"
968
-
969
- # @ cpd
970
- #: counter.php:823
971
- #: notes.php:42
972
- #: notes.php:76
973
- msgid "Notes"
974
- msgstr "メモ"
975
-
976
- # @ cpd
977
- #: counter.php:861
978
- msgid "Other"
979
- msgstr "その他"
980
-
981
- # @ cpd
982
- #: counter.php:892
983
- #, php-format
984
- msgid "The %s referrers in last %s days:"
985
- msgstr " %s 件のリファラ (過去 %s 日間)"
986
-
987
- # @ default
988
- #: counter.php:1034
989
- msgid "Edit Post"
990
- msgstr "記事編集"
991
-
992
- # @ default
993
- #: counter.php:1043
994
- msgid "Category"
995
- msgstr "カテゴリ"
996
-
997
- # @ default
998
- #: counter.php:1046
999
- msgid "Tag"
1000
- msgstr "タグ"
1001
-
1002
- # @ default
1003
- #: counter.php:1049
1004
- #: massbots.php:53
1005
- #: userperspan.php:63
1006
- msgid "Front page displays"
1007
- msgstr "トップページの表示"
1008
-
1009
- # @ cpd
1010
- #: counter.php:1089
1011
- #, php-format
1012
- msgid "The %s most searched strings:"
1013
- msgstr "最も検索された単語 (過去 %s 日間)"
1014
-
1015
- # @ cpd
1016
- #: counter.php:1098
1017
- #, php-format
1018
- msgid "The search strings of the last %s days:"
1019
- msgstr "最近 %s 日間で検索された単語"
1020
-
1021
- # @ cpd
1022
- #: counter.php:1299
1023
- msgid "This post"
1024
- msgstr "現在の記事"
1025
-
1026
- # @ default
1027
- #: counter.php:1323
1028
- msgid "Title"
1029
- msgstr "タイトル"
1030
-
1031
- # @ cpd
1032
- #: counter.php:1342
1033
- msgid "drag and drop to sort"
1034
- msgstr "ドラッグ アンド ドロップ で並び替え"
1035
-
1036
- # @ default
1037
- #: notes.php:77
1038
- msgid "Action"
1039
- msgstr "アクション"
1040
-
1041
- # @ cpd
1042
- #: notes.php:82
1043
- msgid "add"
1044
- msgstr "追加"
1045
-
1046
- # @ cpd
1047
- #: notes.php:98
1048
- msgid "save"
1049
- msgstr "保存"
1050
-
1051
- # @ cpd
1052
- #: notes.php:99
1053
- msgid "delete"
1054
- msgstr "削除"
1055
-
1056
- # @ cpd
1057
- #: notes.php:110
1058
- msgid "edit"
1059
- msgstr "編集"
1060
-
1061
- # @ cpd
1062
- #: userperspan.php:38
1063
- msgid "Start"
1064
- msgstr "開始"
1065
-
1066
- # @ cpd
1067
- #: userperspan.php:40
1068
- msgid "End"
1069
- msgstr "終了"
1070
-
1071
- # @ cpd
1072
- #: userperspan.php:42
1073
- msgid "PostID"
1074
- msgstr "記事ID"
1075
-
1076
- # @ cpd
1077
- #: userperspan.php:50
1078
- msgid "no data found"
1079
- msgstr "データが見つかりません"
1080
-
1081
- # @ cpd
1082
- #: geoip/geoip.php:90
1083
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
1084
- msgstr "申し訳ありません、 php.ini が無効になっているか必要な機能(zlib)がインストールされていません。"
1085
-
1086
- # @ cpd
1087
- #: geoip/geoip.php:114
1088
- msgid "New GeoIP database installed."
1089
- msgstr "新しいGeoIPデータベースがインストールされました。"
1090
-
1091
- # @ cpd
1092
- #: geoip/geoip.php:116
1093
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
1094
- msgstr "申し訳ありません、エラーが発生しました。 再度トライするか \"geoip\" のディレクトリ権限が777であることを確認してください。"
1095
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.00\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-14 21:55+0900\n"
6
+ "PO-Revision-Date: 2012-07-14 22:43+0900\n"
7
+ "Last-Translator: Juno Hayami <juno.hayami@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Japanese\n"
14
+ "X-Poedit-Country: JAPAN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ # @ cpd
22
+ #: counter-core.php:225
23
+ #, php-format
24
+ msgid "\"Count per Day\" updated to version %s."
25
+ msgstr "\"Count per Day\" がバージョン %s にアップデートされました。"
26
+
27
+ # @ default
28
+ #: counter-core.php:612
29
+ #: counter-options.php:386
30
+ #: counter-options.php:712
31
+ msgid "Settings"
32
+ msgstr "設定"
33
+
34
+ # @ cpd
35
+ #: counter-core.php:677
36
+ #: counter-options.php:761
37
+ #: counter.php:186
38
+ #: counter.php:922
39
+ msgid "Reads"
40
+ msgstr "総購読数"
41
+
42
+ # @ cpd
43
+ #: counter-core.php:740
44
+ #, php-format
45
+ msgid "Time for Count per Day: <code>%s</code>."
46
+ msgstr "Count per Dayでの日時: <code>%s</code>."
47
+
48
+ # @ cpd
49
+ #: counter-core.php:741
50
+ msgid "Bug? Problem? Question? Hint? Praise?"
51
+ msgstr "バグ?問題?質問?ヒント?評価?"
52
+
53
+ # @ cpd
54
+ #: counter-core.php:742
55
+ #, php-format
56
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
57
+ msgstr "<a href=\"%s\">plugin page</a> にコメントする。"
58
+
59
+ # @ default
60
+ #: counter-core.php:743
61
+ msgid "License"
62
+ msgstr "ライセンス"
63
+
64
+ # @ cpd
65
+ #: counter-core.php:775
66
+ #: counter.php:187
67
+ #: counter.php:1113
68
+ #: counter.php:1305
69
+ msgid "Total visitors"
70
+ msgstr "総訪問者数"
71
+
72
+ # @ cpd
73
+ #: counter-core.php:776
74
+ msgid "Visitors online"
75
+ msgstr "オンライン中の訪問者数"
76
+
77
+ # @ cpd
78
+ #: counter-core.php:777
79
+ #: counter.php:1309
80
+ msgid "Visitors per month"
81
+ msgstr "月別訪問者数"
82
+
83
+ # @ cpd
84
+ #: counter-core.php:778
85
+ #: counter.php:1304
86
+ msgid "Reads per month"
87
+ msgstr "月別閲覧数"
88
+
89
+ # @ cpd
90
+ #: counter-core.php:779
91
+ #: counter-options.php:806
92
+ msgid "Visitors per post"
93
+ msgstr "記事別の訪問者数"
94
+
95
+ # @ cpd
96
+ #: counter-core.php:780
97
+ msgid "Latest Counts"
98
+ msgstr "最近のカウント"
99
+
100
+ # @ cpd
101
+ #: counter-core.php:781
102
+ #: counter.php:193
103
+ #: counter.php:292
104
+ #: counter.php:1115
105
+ #: counter.php:1310
106
+ #: userperspan.php:34
107
+ msgid "Visitors per day"
108
+ msgstr "一日あたりの訪問者数"
109
+
110
+ # @ default
111
+ # @ cpd
112
+ #: counter-core.php:782
113
+ #: counter-options.php:836
114
+ #: counter-options.php:840
115
+ msgid "Search strings"
116
+ msgstr "検索文字列"
117
+
118
+ # @ default
119
+ #: counter-core.php:783
120
+ msgid "Plugin"
121
+ msgstr "プラグイン"
122
+
123
+ # @ cpd
124
+ #: counter-core.php:786
125
+ #: counter-options.php:832
126
+ msgid "Browsers"
127
+ msgstr "ブラウザ"
128
+
129
+ # @ cpd
130
+ #: counter-core.php:787
131
+ msgid "Referrer"
132
+ msgstr "リファラ"
133
+
134
+ # @ cpd
135
+ #: counter-core.php:791
136
+ msgid "Reads per Country"
137
+ msgstr "国ごとの閲覧数"
138
+
139
+ # @ cpd
140
+ #: counter-core.php:792
141
+ msgid "Visitors per Country"
142
+ msgstr "国ごとの訪問者数"
143
+
144
+ # @ cpd
145
+ #: counter-core.php:807
146
+ #: counter.php:1227
147
+ msgid "Statistics"
148
+ msgstr "統計"
149
+
150
+ # @ cpd
151
+ #: counter-core.php:977
152
+ msgid "Backup failed! Cannot open file"
153
+ msgstr "バックアップに失敗しました! ファイルが開けません。"
154
+
155
+ # @ cpd
156
+ #: counter-core.php:1004
157
+ #, php-format
158
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
159
+ msgstr "%s 件の記録をバックアップ処理中。 %s 件の記録が完了しています。"
160
+
161
+ # @ cpd
162
+ #: counter-core.php:1091
163
+ msgid "Your can download the backup files here and now."
164
+ msgstr "今すぐにここからバックアップファイルをダウンロードできます。"
165
+
166
+ # @ cpd
167
+ #: counter-core.php:1095
168
+ #: counter-core.php:1103
169
+ #, php-format
170
+ msgid "Backup of counter table saved in %s."
171
+ msgstr "カウンターテーブルのバックアップを %s に保存しました。"
172
+
173
+ # @ cpd
174
+ #: counter-core.php:1097
175
+ #: counter-core.php:1105
176
+ #, php-format
177
+ msgid "Backup of counter options and collection saved in %s."
178
+ msgstr "カウンターオプションのバックアップと記録は %s に保存されました。"
179
+
180
+ # @ cpd
181
+ #: counter-core.php:1161
182
+ msgid "Error while reading backup file!"
183
+ msgstr "バックアップファイルの読み取り中にエラーが発生しました!"
184
+
185
+ # @ cpd
186
+ #: counter-core.php:1165
187
+ #, php-format
188
+ msgid "The backup was added to counter table %s."
189
+ msgstr "カウンターテーブル %s にバックアップを追加しました。"
190
+
191
+ # @ cpd
192
+ #: counter-core.php:1167
193
+ #, php-format
194
+ msgid "The counter table %s was restored from backup."
195
+ msgstr "カウンターテーブル %s をバックアップから復元しました。"
196
+
197
+ # @ cpd
198
+ #: counter-core.php:1184
199
+ msgid "Options restored from backup."
200
+ msgstr "オプションをバックアップから復元しました。"
201
+
202
+ # @ cpd
203
+ #: counter-options.php:52
204
+ msgid "Options updated"
205
+ msgstr "オプションを更新しました"
206
+
207
+ # @ cpd
208
+ #: counter-options.php:63
209
+ #, php-format
210
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
211
+ msgstr "訪問者の国情報を更新。%s 上の <b>%s</b> 件がまだ国と関連付けられていません。"
212
+
213
+ # @ cpd
214
+ #: counter-options.php:66
215
+ msgid "update next"
216
+ msgstr "次を更新"
217
+
218
+ # @ cpd
219
+ #: counter-options.php:106
220
+ #, php-format
221
+ msgid "Mass Bots cleaned. %s counts deleted."
222
+ msgstr "Botをクリーンアップしました。 %s 件が削除されました。"
223
+
224
+ # @ cpd
225
+ #: counter-options.php:113
226
+ #, php-format
227
+ msgid "Database cleaned. %s rows deleted."
228
+ msgstr "データベースをクリーンアップしました。 %s 行削除されました。"
229
+
230
+ # @ cpd
231
+ #: counter-options.php:123
232
+ msgid "Counter reseted."
233
+ msgstr "カウンターがリセットされました。"
234
+
235
+ # @ cpd
236
+ #: counter-options.php:128
237
+ #: counter-options.php:691
238
+ msgid "UNINSTALL Count per Day"
239
+ msgstr "Count per Day のアンインストール"
240
+
241
+ # @ cpd
242
+ #: counter-options.php:133
243
+ #: counter-options.php:134
244
+ #: counter-options.php:135
245
+ #, php-format
246
+ msgid "Table %s deleted"
247
+ msgstr "%s テーブルが削除されました"
248
+
249
+ # @ cpd
250
+ #: counter-options.php:136
251
+ msgid "Options deleted"
252
+ msgstr "オプションを削除しました"
253
+
254
+ # @ cpd
255
+ #: counter-options.php:169
256
+ msgid "Collection in progress..."
257
+ msgstr "整理中です…"
258
+
259
+ # @ cpd
260
+ #: counter-options.php:263
261
+ msgid "Get Visitors per Post..."
262
+ msgstr "記事別の訪問者数を取得…"
263
+
264
+ # @ cpd
265
+ #: counter-options.php:284
266
+ msgid "Delete old data..."
267
+ msgstr "古いデータを削除します…"
268
+
269
+ # @ cpd
270
+ #: counter-options.php:308
271
+ #, php-format
272
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
273
+ msgstr "%s までのカウンター記録を整理し、カウンターテーブル %s を最適化しました (最適化前のサイズ = %s &gt; 最適化後のサイズ = %s)。"
274
+
275
+ # @ cpd
276
+ #: counter-options.php:317
277
+ msgid "Installation of \"Count per Day\" checked"
278
+ msgstr "\"Count per Day\" のインストールが完了しました。"
279
+
280
+ # @ cpd
281
+ #: counter-options.php:332
282
+ msgid "Old search strings deleted"
283
+ msgstr "古い検索文字列を削除しました"
284
+
285
+ # @ cpd
286
+ #: counter-options.php:362
287
+ #: counter-options.php:677
288
+ msgid "Uninstall"
289
+ msgstr "アンインストール"
290
+
291
+ # @ cpd
292
+ #: counter-options.php:363
293
+ msgid "Click here"
294
+ msgstr "Click here"
295
+
296
+ # @ cpd
297
+ #: counter-options.php:363
298
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
299
+ msgstr "\"Count per Day\" を無効化してアンインストール"
300
+
301
+ # @ default
302
+ #: counter-options.php:385
303
+ #: counter-options.php:711
304
+ msgid "Tools"
305
+ msgstr "ツール"
306
+
307
+ # @ cpd
308
+ #: counter-options.php:402
309
+ #: massbots.php:36
310
+ msgid "Mass Bots"
311
+ msgstr "Bot"
312
+
313
+ # @ cpd
314
+ #: counter-options.php:406
315
+ #, php-format
316
+ msgid "Show all IPs with more than %s page views per day"
317
+ msgstr "一日あたり %s ページ以上閲覧のIPを表示"
318
+
319
+ # @ cpd
320
+ #: counter-options.php:407
321
+ #: notes.php:71
322
+ #: userperspan.php:44
323
+ msgid "show"
324
+ msgstr "表示"
325
+
326
+ # @ cpd
327
+ #: counter-options.php:415
328
+ msgid "IP"
329
+ msgstr "IP"
330
+
331
+ # @ cpd
332
+ # @ default
333
+ #: counter-options.php:416
334
+ #: notes.php:75
335
+ msgid "Date"
336
+ msgstr "日付"
337
+
338
+ # @ cpd
339
+ #: counter-options.php:417
340
+ msgid "Client"
341
+ msgstr "クライアント"
342
+
343
+ # @ cpd
344
+ #: counter-options.php:418
345
+ msgid "Views"
346
+ msgstr "閲覧数"
347
+
348
+ # @ cpd
349
+ #: counter-options.php:433
350
+ #: counter-options.php:449
351
+ #, php-format
352
+ msgid "Delete these %s counts"
353
+ msgstr "これら %s 件を削除"
354
+
355
+ # @ cpd
356
+ #: counter-options.php:461
357
+ #: counter-options.php:898
358
+ msgid "Backup"
359
+ msgstr "バックアップ"
360
+
361
+ # @ cpd
362
+ #: counter-options.php:465
363
+ #, php-format
364
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
365
+ msgstr "カウンターテーブル %s のバックアップをwp-contentディレクトリに作成します(書き込み可能な場合)。"
366
+
367
+ # @ cpd
368
+ #: counter-options.php:468
369
+ msgid "Download only"
370
+ msgstr "ダウンロードのみ"
371
+
372
+ # @ cpd
373
+ #: counter-options.php:472
374
+ msgid "Backup the database"
375
+ msgstr "データベースのバックアップ"
376
+
377
+ # @ cpd
378
+ #: counter-options.php:500
379
+ msgid "Settings and collections"
380
+ msgstr "設定とオプション"
381
+
382
+ # @ cpd
383
+ #: counter-options.php:505
384
+ #, php-format
385
+ msgid "Counter table %s"
386
+ msgstr "カウンターテーブル %s"
387
+
388
+ # @ cpd
389
+ #: counter-options.php:512
390
+ #, php-format
391
+ msgid "Add data from the backup file %s to existing counter table?"
392
+ msgstr "現在あるカウンターテーブルにバックアップファイル %s からデータを追加しますか?"
393
+
394
+ # @ cpd
395
+ #: counter-options.php:512
396
+ msgid "Add"
397
+ msgstr "追加"
398
+
399
+ # @ cpd
400
+ #: counter-options.php:516
401
+ #, php-format
402
+ msgid "Restore data from the backup file %s ?"
403
+ msgstr "バックアップファイル %s からデータを復元しますか?"
404
+
405
+ # @ cpd
406
+ #: counter-options.php:516
407
+ msgid "Restore"
408
+ msgstr "復元"
409
+
410
+ # @ cpd
411
+ #: counter-options.php:518
412
+ msgid "Delete"
413
+ msgstr "削除"
414
+
415
+ # @ cpd
416
+ #: counter-options.php:519
417
+ #, php-format
418
+ msgid "Delete the backup file %s ?"
419
+ msgstr "バックアップファイル %s を削除しますか?"
420
+
421
+ # @ cpd
422
+ #: counter-options.php:525
423
+ msgid "add backup to current counter table"
424
+ msgstr "新しいカウンターテーブルにバックアップを追加"
425
+
426
+ # @ cpd
427
+ #: counter-options.php:526
428
+ msgid "replace current counter table with with backup"
429
+ msgstr "カウンターテーブルをバックアップで置き換える"
430
+
431
+ # @ cpd
432
+ #: counter-options.php:527
433
+ msgid "delete backup file"
434
+ msgstr "バックアップファイルを削除"
435
+
436
+ # @ cpd
437
+ #: counter-options.php:538
438
+ #: counter-options.php:546
439
+ msgid "Clean the database"
440
+ msgstr "データベースのクリーンアップ"
441
+
442
+ # @ cpd
443
+ #: counter-options.php:541
444
+ 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."
445
+ msgstr "\"スパムデータ\"を削除してカウンターテーブルをクリーンアップできます。<br />以前の\"スパムデータ\"に新規でBotを追加するとデータベースは保護されます。<br />ここではBotフィルターを再度実行したりBotの訪問データを削除できます。"
446
+
447
+ # @ cpd
448
+ #: counter-options.php:552
449
+ #, php-format
450
+ msgid "Delete search strings older than %s days."
451
+ msgstr "%s 日より古い検索文字列を削除"
452
+
453
+ # @ cpd
454
+ #: counter-options.php:554
455
+ msgid "Delete search strings"
456
+ msgstr "検索文字列を削除する"
457
+
458
+ # @ cpd
459
+ #: counter-options.php:563
460
+ #: counter-options.php:595
461
+ msgid "Collect old data"
462
+ msgstr "古いデータの整理"
463
+
464
+ # @ cpd
465
+ #: counter-options.php:568
466
+ #, php-format
467
+ msgid "Current size of your counter table %s is %s."
468
+ msgstr "カウンターテーブル %s のサイズは %s です。"
469
+
470
+ # @ cpd
471
+ #: counter-options.php:570
472
+ 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."
473
+ msgstr "古いデータを整理し、カウンターテーブルをクリーンアップできます。<br/>月別・国別・記事別の購読数と訪問者数は保存されます。<br/>クライアントとリファラは削除されます。"
474
+
475
+ # @ cpd
476
+ #: counter-options.php:575
477
+ #, php-format
478
+ msgid "Currently your collection contains data until %s."
479
+ msgstr "現在、%s までのデータが整理するデータに含まれています。"
480
+
481
+ # @ cpd
482
+ #: counter-options.php:579
483
+ msgid "Normally new data will be added to the collection."
484
+ msgstr "通常、新しいデータは整理したデータに追加されます。"
485
+
486
+ # @ cpd
487
+ #: counter-options.php:585
488
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
489
+ msgstr "古いデータを消して、現在の内容のみの新しいデータをカウンターテーブルに作成する。"
490
+
491
+ # @ cpd
492
+ #: counter-options.php:586
493
+ #, php-format
494
+ msgid "All collected data until %s will deleted."
495
+ msgstr "%s までの全てのデータは削除されます。"
496
+
497
+ # @ cpd
498
+ #: counter-options.php:591
499
+ #, php-format
500
+ msgid "Keep entries of last %s full months + current month in counter table."
501
+ msgstr "過去 %s ヶ月間 + 今月 の記録をカウンターテーブルに保存する。"
502
+
503
+ # @ cpd
504
+ #: counter-options.php:608
505
+ msgid "GeoIP - Countries"
506
+ msgstr "GeoIP - 国別統計"
507
+
508
+ # @ cpd
509
+ #: counter-options.php:611
510
+ 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!"
511
+ msgstr "IPアドレスをチェックしてGeoIPデータベースと照合することにより全ての記事で国データを取得できます。これにはしばらく時間がかかります。"
512
+
513
+ # @ cpd
514
+ #: counter-options.php:617
515
+ msgid "Update old counter data"
516
+ msgstr "過去のカウンターデータを更新"
517
+
518
+ # @ cpd
519
+ #: counter-options.php:624
520
+ msgid "Download a new version of GeoIP.dat file."
521
+ msgstr "GeoIP.datファイルの新しいバージョンをダウンロードする。"
522
+
523
+ # @ cpd
524
+ #: counter-options.php:629
525
+ msgid "Update GeoIP database"
526
+ msgstr "GeoIPデータベースの更新"
527
+
528
+ # @ cpd
529
+ #: counter-options.php:634
530
+ msgid "More informations about GeoIP"
531
+ msgstr "GeoIPの詳しい情報"
532
+
533
+ # @ cpd
534
+ #: counter-options.php:642
535
+ msgid "ReActivation"
536
+ msgstr "プラグインを再度有効にする"
537
+
538
+ # @ cpd
539
+ #: counter-options.php:645
540
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
541
+ msgstr "ここから手動で機能を開始できます。<br/>プラグインを無効にしてもう一度有効にするのと同じ効果です。"
542
+
543
+ # @ cpd
544
+ #: counter-options.php:650
545
+ msgid "ReActivate the plugin"
546
+ msgstr "プラグインを再度有効にする"
547
+
548
+ # @ cpd
549
+ #: counter-options.php:658
550
+ #: counter-options.php:668
551
+ msgid "Reset the counter"
552
+ msgstr "カウンターのリセット"
553
+
554
+ # @ cpd
555
+ #: counter-options.php:661
556
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
557
+ msgstr "テーブルを全て空にしてリセットできます。全てが0になります!<br />最新のデータが必要な場合はバックアップを作成してください!"
558
+
559
+ # @ cpd
560
+ #: counter-options.php:667
561
+ #: counter-options.php:690
562
+ msgid "Yes"
563
+ msgstr "はい"
564
+
565
+ # @ cpd
566
+ #: counter-options.php:680
567
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
568
+ msgstr "もしも\"Count per Day\"を無効にするだけであれば使用しているデータベース上のテーブルは保存され続けます。"
569
+
570
+ # @ cpd
571
+ #: counter-options.php:681
572
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
573
+ msgstr "ここから\"Count per Day\"が使用しているテーブルを削除し無効にすることができます。"
574
+
575
+ # @ cpd
576
+ #: counter-options.php:684
577
+ msgid "WARNING"
578
+ msgstr "警告"
579
+
580
+ # @ cpd
581
+ #: counter-options.php:685
582
+ msgid "These tables (with ALL counter data) will be deleted."
583
+ msgstr "データベース上にある以下のテーブル(全てのカウンターデータ)が削除されます。"
584
+
585
+ # @ cpd
586
+ #: counter-options.php:687
587
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
588
+ msgstr "\"Count per Day\"を再インストールした場合もカウントは0から始まります。"
589
+
590
+ # @ cpd
591
+ #: counter-options.php:691
592
+ msgid "You are sure to disable Count per Day and delete all data?"
593
+ msgstr "本当にCount per Dayを無効にして全てのデータを削除しますか?"
594
+
595
+ # @ cpd
596
+ #: counter-options.php:699
597
+ msgid "Support"
598
+ msgstr "サポート"
599
+
600
+ # @ cpd
601
+ #: counter-options.php:720
602
+ msgid "Counter"
603
+ msgstr "カウンター"
604
+
605
+ # @ cpd
606
+ #: counter-options.php:724
607
+ msgid "Online time"
608
+ msgstr "オンライン判定時間(秒)"
609
+
610
+ # @ cpd
611
+ #: counter-options.php:725
612
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
613
+ msgstr "オンラインの数をカウントする秒数。 ダッシュボード上の\"オンライン中の訪問者数\"で使用。"
614
+
615
+ # @ cpd
616
+ #: counter-options.php:728
617
+ msgid "Logged on Users"
618
+ msgstr "ログインユーザー"
619
+
620
+ # @ cpd
621
+ #: counter-options.php:730
622
+ msgid "count too"
623
+ msgstr "カウントに含む"
624
+
625
+ # @ cpd
626
+ #: counter-options.php:731
627
+ msgid "until User Level"
628
+ msgstr "次のユーザーレベルまで"
629
+
630
+ # @ cpd
631
+ #: counter-options.php:742
632
+ msgid "Auto counter"
633
+ msgstr "自動でカウントする"
634
+
635
+ # @ cpd
636
+ #: counter-options.php:743
637
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
638
+ msgstr "テンプレートの変更なしで自動的に個別記事や固定ページもカウントする"
639
+
640
+ # @ cpd
641
+ #: counter-options.php:746
642
+ msgid "Bots to ignore"
643
+ msgstr "無視するBot"
644
+
645
+ # @ cpd
646
+ #: counter-options.php:750
647
+ msgid "Anonymous IP"
648
+ msgstr "匿名IP"
649
+
650
+ # @ cpd
651
+ #: counter-options.php:754
652
+ msgid "Cache"
653
+ msgstr "キャッシュ"
654
+
655
+ # @ cpd
656
+ #: counter-options.php:755
657
+ msgid "I use a cache plugin. Count these visits with ajax."
658
+ msgstr "キャッシュプラグインを使用しています。ajaxでこれらの訪問者もカウントします。"
659
+
660
+ # @ cpd
661
+ #: counter-options.php:758
662
+ msgid "Clients and referrers"
663
+ msgstr "クライアントとリファラ"
664
+
665
+ # @ cpd
666
+ #: counter-options.php:761
667
+ 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."
668
+ msgstr "クライアントとリファラを表示・保存します。<br />多くのデータベース容量を必要としますがあなたのサイトへの訪問者情報をより細かく把握できます。"
669
+
670
+ # @ cpd
671
+ #: counter-options.php:763
672
+ msgid "Save URL only, no query string."
673
+ msgstr "URLのみ保存し、クエリ部分は含まない。"
674
+
675
+ # @ default
676
+ #: counter-options.php:771
677
+ msgid "Dashboard"
678
+ msgstr "ダッシュボード"
679
+
680
+ # @ cpd
681
+ #: counter-options.php:787
682
+ msgid "Who can see it"
683
+ msgstr "閲覧を許可する人"
684
+
685
+ # @ cpd
686
+ #: counter-options.php:796
687
+ msgid "custom"
688
+ msgstr "カスタム"
689
+
690
+ # @ cpd
691
+ #: counter-options.php:798
692
+ msgid "and higher are allowed to see the statistics page."
693
+ msgstr "これ以上の権限なら統計ページの閲覧を許可します。"
694
+
695
+ # @ cpd
696
+ #: counter-options.php:800
697
+ #, php-format
698
+ msgid "Set the %s capability %s a user need:"
699
+ msgstr "ユーザに必要な %s 権限 %s の設定:"
700
+
701
+ # @ cpd
702
+ #: counter-options.php:807
703
+ #: counter-options.php:811
704
+ msgid "How many posts do you want to see on dashboard page?"
705
+ msgstr "ダッシュボードで何件まで閲覧しますか?"
706
+
707
+ # @ cpd
708
+ #: counter-options.php:810
709
+ msgid "Latest Counts - Posts"
710
+ msgstr "最近のカウント - 記事"
711
+
712
+ # @ cpd
713
+ #: counter-options.php:814
714
+ msgid "Latest Counts - Days"
715
+ msgstr "最近のカウント - 日別"
716
+
717
+ # @ cpd
718
+ #: counter-options.php:815
719
+ #: counter-options.php:819
720
+ #: counter-options.php:841
721
+ msgid "How many days do you want look back?"
722
+ msgstr "今日から何日前まで表示しますか?"
723
+
724
+ # @ cpd
725
+ #: counter-options.php:818
726
+ msgid "Chart - Days"
727
+ msgstr "チャート(グラフ) - 日別"
728
+
729
+ # @ cpd
730
+ #: counter-options.php:822
731
+ msgid "Chart - Height"
732
+ msgstr "チャート(グラフ) - 高さ"
733
+
734
+ # @ cpd
735
+ #: counter-options.php:823
736
+ msgid "Height of the biggest bar"
737
+ msgstr "最大値のときの高さ"
738
+
739
+ # @ cpd
740
+ #: counter-options.php:827
741
+ msgid "Countries"
742
+ msgstr "国情報"
743
+
744
+ # @ cpd
745
+ #: counter-options.php:828
746
+ msgid "How many countries do you want to see on dashboard page?"
747
+ msgstr "ダッシュボード上で何ヶ国まで閲覧しますか?"
748
+
749
+ # @ cpd
750
+ #: counter-options.php:833
751
+ msgid "Substring of the user agent, separated by comma"
752
+ msgstr "ユーザーエージェントは種類ごとにカンマで区切ってください"
753
+
754
+ # @ cpd
755
+ #: counter-options.php:836
756
+ msgid "Referrers - Entries"
757
+ msgstr "リファラ - 投稿別"
758
+
759
+ # @ cpd
760
+ #: counter-options.php:837
761
+ msgid "How many referrers do you want to see on dashboard page?"
762
+ msgstr "ダッシュボード上で何件のリファラを表示しますか?"
763
+
764
+ # @ cpd
765
+ #: counter-options.php:840
766
+ msgid "Referrers - Days"
767
+ msgstr "リファラ - 日数"
768
+
769
+ # @ cpd
770
+ #: counter-options.php:844
771
+ msgid "Local URLs"
772
+ msgstr "ローカルURLの扱い"
773
+
774
+ # @ cpd
775
+ #: counter-options.php:845
776
+ msgid "Show local referrers too."
777
+ msgstr "ローカルのリファラも表示する"
778
+
779
+ # @ default
780
+ #: counter-options.php:852
781
+ msgid "Posts"
782
+ msgstr "記事"
783
+
784
+ # @ default
785
+ #: counter-options.php:852
786
+ msgid "Pages"
787
+ msgstr "固定ページ"
788
+
789
+ # @ cpd
790
+ #: counter-options.php:855
791
+ msgid "Show in lists"
792
+ msgstr "リスト表示"
793
+
794
+ # @ cpd
795
+ #: counter-options.php:856
796
+ msgid "Show \"Reads per Post\" in a new column in post management views."
797
+ msgstr "投稿管理画面に新しいカラムを追加して\"記事別閲覧数\"を表示します。"
798
+
799
+ # @ cpd
800
+ #: counter-options.php:863
801
+ msgid "Start Values"
802
+ msgstr "スタートする値"
803
+
804
+ # @ cpd
805
+ #: counter-options.php:867
806
+ msgid "Here you can change the date of first count and add a start count."
807
+ msgstr "ここでカウントを開始した日とカウントに加算する値を変更できます。"
808
+
809
+ # @ cpd
810
+ #: counter-options.php:871
811
+ msgid "Start date"
812
+ msgstr "開始日"
813
+
814
+ # @ cpd
815
+ #: counter-options.php:872
816
+ msgid "Your old Counter starts at?"
817
+ msgstr "前に使っていたカウンターはいつからカウントを開始しましたか?"
818
+
819
+ # @ cpd
820
+ #: counter-options.php:875
821
+ #: counter-options.php:879
822
+ msgid "Start count"
823
+ msgstr "カウントスタート"
824
+
825
+ # @ cpd
826
+ #: counter-options.php:876
827
+ msgid "Add this value to \"Total visitors\"."
828
+ msgstr "この値を\"総訪問者数\"に追加します。"
829
+
830
+ # @ cpd
831
+ #: counter-options.php:880
832
+ msgid "Add this value to \"Total reads\"."
833
+ msgstr "この値を\"総閲覧数\"に追加します。"
834
+
835
+ # @ cpd
836
+ #: counter-options.php:887
837
+ msgid "Stylesheet"
838
+ msgstr "スタイルシート"
839
+
840
+ # @ cpd
841
+ #: counter-options.php:890
842
+ msgid "NO Stylesheet in Frontend"
843
+ msgstr "トップページにスタイルシートを使わない"
844
+
845
+ # @ cpd
846
+ #: counter-options.php:891
847
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
848
+ msgstr "トップページに\"counter.css\"を読み込みません。"
849
+
850
+ # @ cpd
851
+ #: counter-options.php:901
852
+ msgid "Entries per pass"
853
+ msgstr "許可するエントリ"
854
+
855
+ # @ cpd
856
+ #: counter-options.php:904
857
+ msgid "How many entries should be saved per pass? Default: 10000"
858
+ msgstr "何件のエントリを保存しますか? デフォルト: 10000"
859
+
860
+ # @ cpd
861
+ #: counter-options.php:909
862
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
863
+ msgstr "PHPのメモリ上限が 50 MB よりも少ない場合、真っ白なページかもっと小さい値にするようエラーメッセージが表示されます。"
864
+
865
+ # @ cpd
866
+ #: counter-options.php:917
867
+ msgid "Debug mode"
868
+ msgstr "デバッグモード"
869
+
870
+ # @ cpd
871
+ #: counter-options.php:919
872
+ msgid "Show debug informations at the bottom of all pages."
873
+ msgstr "全てのページの最下部にデバッグ情報を表示します。"
874
+
875
+ # @ cpd
876
+ #: counter-options.php:924
877
+ msgid "Update options"
878
+ msgstr "オプションの更新"
879
+
880
+ # @ cpd
881
+ #: counter.php:182
882
+ #: counter.php:1300
883
+ msgid "Total reads"
884
+ msgstr "総閲覧数"
885
+
886
+ # @ cpd
887
+ #: counter.php:183
888
+ #: counter.php:1301
889
+ msgid "Reads today"
890
+ msgstr "今日の閲覧数"
891
+
892
+ # @ cpd
893
+ #: counter.php:184
894
+ #: counter.php:1302
895
+ msgid "Reads yesterday"
896
+ msgstr "昨日の閲覧数"
897
+
898
+ # @ cpd
899
+ #: counter.php:185
900
+ #: counter.php:1303
901
+ msgid "Reads last week"
902
+ msgstr "先週の閲覧数"
903
+
904
+ # @ cpd
905
+ #: counter.php:188
906
+ #: counter.php:1311
907
+ msgid "Visitors currently online"
908
+ msgstr "現在オンライン中の人数"
909
+
910
+ # @ cpd
911
+ #: counter.php:189
912
+ #: counter.php:1306
913
+ msgid "Visitors today"
914
+ msgstr "今日の訪問者数"
915
+
916
+ # @ cpd
917
+ #: counter.php:190
918
+ #: counter.php:1307
919
+ msgid "Visitors yesterday"
920
+ msgstr "昨日の訪問者数"
921
+
922
+ # @ cpd
923
+ #: counter.php:191
924
+ #: counter.php:1308
925
+ msgid "Visitors last week"
926
+ msgstr "先週の訪問者数"
927
+
928
+ # @ cpd
929
+ #: counter.php:192
930
+ #: counter.php:946
931
+ msgid "Visitors"
932
+ msgstr "訪問者数"
933
+
934
+ # @ cpd
935
+ #: counter.php:194
936
+ #: counter.php:872
937
+ #: counter.php:1312
938
+ msgid "Counter starts on"
939
+ msgstr "カウント開始日"
940
+
941
+ # @ cpd
942
+ #: counter.php:195
943
+ #: counter.php:196
944
+ msgid "Most visited day"
945
+ msgstr "最も多かった日"
946
+
947
+ # @ cpd
948
+ #: counter.php:291
949
+ msgid "Reads per day"
950
+ msgstr "一日あたりの閲覧数"
951
+
952
+ # @ cpd
953
+ #: counter.php:382
954
+ #: counter.php:1144
955
+ msgid "Map"
956
+ msgstr "マップ"
957
+
958
+ # @ cpd
959
+ #: counter.php:705
960
+ #, php-format
961
+ msgid "The %s most visited posts in last %s days:"
962
+ msgstr "最も訪問者が多かった記事 %s 件 (過去 %s 日間)"
963
+
964
+ # @ default
965
+ #: counter.php:821
966
+ msgid "Show"
967
+ msgstr "表示"
968
+
969
+ # @ cpd
970
+ #: counter.php:823
971
+ #: notes.php:42
972
+ #: notes.php:76
973
+ msgid "Notes"
974
+ msgstr "メモ"
975
+
976
+ # @ cpd
977
+ #: counter.php:861
978
+ msgid "Other"
979
+ msgstr "その他"
980
+
981
+ # @ cpd
982
+ #: counter.php:892
983
+ #, php-format
984
+ msgid "The %s referrers in last %s days:"
985
+ msgstr " %s 件のリファラ (過去 %s 日間)"
986
+
987
+ # @ default
988
+ #: counter.php:1034
989
+ msgid "Edit Post"
990
+ msgstr "記事編集"
991
+
992
+ # @ default
993
+ #: counter.php:1043
994
+ msgid "Category"
995
+ msgstr "カテゴリ"
996
+
997
+ # @ default
998
+ #: counter.php:1046
999
+ msgid "Tag"
1000
+ msgstr "タグ"
1001
+
1002
+ # @ default
1003
+ #: counter.php:1049
1004
+ #: massbots.php:53
1005
+ #: userperspan.php:63
1006
+ msgid "Front page displays"
1007
+ msgstr "トップページの表示"
1008
+
1009
+ # @ cpd
1010
+ #: counter.php:1089
1011
+ #, php-format
1012
+ msgid "The %s most searched strings:"
1013
+ msgstr "最も検索された単語 (過去 %s 日間)"
1014
+
1015
+ # @ cpd
1016
+ #: counter.php:1098
1017
+ #, php-format
1018
+ msgid "The search strings of the last %s days:"
1019
+ msgstr "最近 %s 日間で検索された単語"
1020
+
1021
+ # @ cpd
1022
+ #: counter.php:1299
1023
+ msgid "This post"
1024
+ msgstr "現在の記事"
1025
+
1026
+ # @ default
1027
+ #: counter.php:1323
1028
+ msgid "Title"
1029
+ msgstr "タイトル"
1030
+
1031
+ # @ cpd
1032
+ #: counter.php:1342
1033
+ msgid "drag and drop to sort"
1034
+ msgstr "ドラッグ アンド ドロップ で並び替え"
1035
+
1036
+ # @ default
1037
+ #: notes.php:77
1038
+ msgid "Action"
1039
+ msgstr "アクション"
1040
+
1041
+ # @ cpd
1042
+ #: notes.php:82
1043
+ msgid "add"
1044
+ msgstr "追加"
1045
+
1046
+ # @ cpd
1047
+ #: notes.php:98
1048
+ msgid "save"
1049
+ msgstr "保存"
1050
+
1051
+ # @ cpd
1052
+ #: notes.php:99
1053
+ msgid "delete"
1054
+ msgstr "削除"
1055
+
1056
+ # @ cpd
1057
+ #: notes.php:110
1058
+ msgid "edit"
1059
+ msgstr "編集"
1060
+
1061
+ # @ cpd
1062
+ #: userperspan.php:38
1063
+ msgid "Start"
1064
+ msgstr "開始"
1065
+
1066
+ # @ cpd
1067
+ #: userperspan.php:40
1068
+ msgid "End"
1069
+ msgstr "終了"
1070
+
1071
+ # @ cpd
1072
+ #: userperspan.php:42
1073
+ msgid "PostID"
1074
+ msgstr "記事ID"
1075
+
1076
+ # @ cpd
1077
+ #: userperspan.php:50
1078
+ msgid "no data found"
1079
+ msgstr "データが見つかりません"
1080
+
1081
+ # @ cpd
1082
+ #: geoip/geoip.php:90
1083
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
1084
+ msgstr "申し訳ありません、 php.ini が無効になっているか必要な機能(zlib)がインストールされていません。"
1085
+
1086
+ # @ cpd
1087
+ #: geoip/geoip.php:114
1088
+ msgid "New GeoIP database installed."
1089
+ msgstr "新しいGeoIPデータベースがインストールされました。"
1090
+
1091
+ # @ cpd
1092
+ #: geoip/geoip.php:116
1093
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
1094
+ msgstr "申し訳ありません、エラーが発生しました。 再度トライするか \"geoip\" のディレクトリ権限が777であることを確認してください。"
1095
+
locale/cpd-lt_LT.po CHANGED
@@ -1,784 +1,784 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Natalija Strazdauskienė <ciuvir@mail.ru>\n"
8
- "Language-Team: Nata Strazda <nata@epastas.lt>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Lithuanian\n"
14
- "X-Poedit-Country: LITHUANIA\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:46
23
- msgid "Options updated"
24
- msgstr "Parinktys atnaujintos"
25
-
26
- #@ cpd
27
- #: counter-options.php:111
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Duomenų bazė išvalyta. Ištrinta eilučių %s."
31
-
32
- #@ cpd
33
- #: counter-options.php:121
34
- #: counter-options.php:496
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "PAŠALINTI dienos skaičių"
37
-
38
- #@ cpd
39
- #: counter-options.php:126
40
- #: counter-options.php:128
41
- #: counter-options.php:130
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Lentelė %s pašalinta"
45
-
46
- #@ cpd
47
- #: counter-options.php:132
48
- msgid "Options deleted"
49
- msgstr "Parinktys ištrintos"
50
-
51
- #@ cpd
52
- #: counter-options.php:156
53
- #: counter-options.php:481
54
- msgid "Uninstall"
55
- msgstr "Pašalinti"
56
-
57
- #@ cpd
58
- #: counter-options.php:157
59
- msgid "Click here"
60
- msgstr "Spauskite čia"
61
-
62
- #@ cpd
63
- #: counter-options.php:157
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "baigti pašalinimą ir išjungti \"Skaičius per dieną\"."
66
-
67
- #@ cpd
68
- #: counter-options.php:179
69
- msgid "Options"
70
- msgstr "Parinktys"
71
-
72
- #@ cpd
73
- #: counter-options.php:190
74
- msgid "Online time"
75
- msgstr "Online laikas"
76
-
77
- #@ cpd
78
- #: counter-options.php:191
79
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
- msgstr "Online skaičius sekundėse. Panaudota iš \"Lankytojų online\" puslapio prietaisų skydelio."
81
-
82
- #@ cpd
83
- #: counter-options.php:194
84
- msgid "Logged on Users"
85
- msgstr "Prisijungę vartotojai"
86
-
87
- #@ cpd
88
- #: counter-options.php:196
89
- msgid "count too"
90
- msgstr "taipogi skaičiuoti"
91
-
92
- #@ cpd
93
- #: counter-options.php:208
94
- msgid "Auto counter"
95
- msgstr "Automatinis skaičiuotuvas"
96
-
97
- #@ cpd
98
- #: counter-options.php:209
99
- msgid "Counts automatically single-posts and pages, no changes on template needed."
100
- msgstr "Automatiškas vienos žinutės ir puslapių skaičiavimas, nereikalauja pakeitimų šablone."
101
-
102
- #@ cpd
103
- #: counter-options.php:212
104
- msgid "Bots to ignore"
105
- msgstr "Botus ignoruoti"
106
-
107
- #@ cpd
108
- #: counter-options.php:331
109
- msgid "Update options"
110
- msgstr "Atnaujinti parinktis"
111
-
112
- #@ cpd
113
- #: counter-options.php:445
114
- #: counter-options.php:454
115
- msgid "Clean the database"
116
- msgstr "Išvalyti duomenų bazę"
117
-
118
- #@ cpd
119
- #: counter-options.php:448
120
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
- msgstr "Jūs galite išvalyti skaičiavimo lentelę ištrinus \"spam duomenis\". <br /> Jei pridėsite naujų botų virš senųjų \"spam duomenų\", tai liks duomenų bazėje. <br /> Čia vėl galite paleisti boto filtrą ir ištrinti botų apsilankymus."
122
-
123
- #@ cpd
124
- #: counter-options.php:484
125
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
- msgstr "Jeigu \"Kasdienis skaičiavimas\" tik atjungia duomenų bazės lenteles, tai bus užšaldytas."
127
-
128
- #@ cpd
129
- #: counter-options.php:485
130
- msgid "Here you can delete the tables and disable \"Count per Day\"."
131
- msgstr "Čia galite ištrinti lenteles ir išjungti \"Kasdienį skaičiavimą\"."
132
-
133
- #@ cpd
134
- #: counter-options.php:488
135
- msgid "WARNING"
136
- msgstr "DĖMESIO"
137
-
138
- #@ cpd
139
- #: counter-options.php:489
140
- msgid "These tables (with ALL counter data) will be deleted."
141
- msgstr "Šios lentelės (su VISOM skaičiavimo duomenim) bus ištrintos."
142
-
143
- #@ cpd
144
- #: counter-options.php:491
145
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
- msgstr "Jeigu \"Kasdienis skaičiavimas\" įdiegtas iš naujo, skaitiklis prasideda 0."
147
-
148
- #@ cpd
149
- #: counter-options.php:495
150
- msgid "Yes"
151
- msgstr "Taip"
152
-
153
- #@ cpd
154
- #: counter-options.php:496
155
- msgid "You are sure to disable Count per Day and delete all data?"
156
- msgstr "Jūs esate tikras, kad norite išjungti Kasdienį Skaičiavimą ir ištrinti visus duomenis?"
157
-
158
- #@ cpd
159
- #: counter.php:1786
160
- #: counter.php:2147
161
- msgid "Statistics"
162
- msgstr "Statistika"
163
-
164
- #@ cpd
165
- #: counter.php:529
166
- #: counter.php:534
167
- #: counter.php:1604
168
- #: counter.php:1750
169
- #: counter.php:2224
170
- msgid "Total visitors"
171
- msgstr "Viso lankytojų"
172
-
173
- #@ cpd
174
- #: counter.php:530
175
- #: counter.php:2230
176
- msgid "Visitors currently online"
177
- msgstr "Šiuo metu lankytojų svetainėje"
178
-
179
- #@ cpd
180
- #: counter.php:531
181
- #: counter.php:2225
182
- msgid "Visitors today"
183
- msgstr "Lankytojų šiandien"
184
-
185
- #@ cpd
186
- #: counter.php:532
187
- #: counter.php:2226
188
- msgid "Visitors yesterday"
189
- msgstr "Lankytojų vakar"
190
-
191
- #@ cpd
192
- #: counter.php:533
193
- #: counter.php:2227
194
- msgid "Visitors last week"
195
- msgstr "Lankytojų praeitą savaitę"
196
-
197
- #@ cpd
198
- #: counter.php:536
199
- #: counter.php:2231
200
- msgid "Counter starts on"
201
- msgstr "Skaitiklis prasideda nuo"
202
-
203
- #@ cpd
204
- #: counter.php:535
205
- #: counter.php:636
206
- #: counter.php:1606
207
- #: counter.php:1756
208
- #: counter.php:1765
209
- #: counter.php:2229
210
- #: userperspan.php:33
211
- msgid "Visitors per day"
212
- msgstr "Lankytojų per dieną"
213
-
214
- #@ cpd
215
- #: counter.php:1752
216
- #: counter.php:2228
217
- msgid "Visitors per month"
218
- msgstr "Lankytojų per mėnesį"
219
-
220
- #@ cpd
221
- #: counter-options.php:236
222
- #: counter.php:1754
223
- msgid "Visitors per post"
224
- msgstr "Žinutės lankytojai"
225
-
226
- #@ cpd
227
- #: counter-options.php:117
228
- msgid "Counter reseted."
229
- msgstr "Skaitliukas išvalytas."
230
-
231
- #@ default
232
- #: counter-options.php:233
233
- msgid "Dashboard"
234
- msgstr "Konsolė"
235
-
236
- #@ cpd
237
- #: counter-options.php:237
238
- #: counter-options.php:241
239
- msgid "How many posts do you want to see on dashboard page?"
240
- msgstr "Kiek žinučių jūs norite pamatyti ant prietaisų skydelio puslapyje?"
241
-
242
- #@ cpd
243
- #: counter-options.php:240
244
- msgid "Latest Counts - Posts"
245
- msgstr "Paskutiniai skaitliukai - žinutės"
246
-
247
- #@ cpd
248
- #: counter-options.php:244
249
- msgid "Latest Counts - Days"
250
- msgstr "Paskutiniai skaitliukai - Dienos"
251
-
252
- #@ cpd
253
- #: counter-options.php:245
254
- #: counter-options.php:249
255
- #: counter-options.php:275
256
- msgid "How many days do you want look back?"
257
- msgstr "Kiek dienų atgal jūs norite peržiūrėti?"
258
-
259
- #@ cpd
260
- #: counter-options.php:248
261
- msgid "Chart - Days"
262
- msgstr "Diagrama - dienos"
263
-
264
- #@ cpd
265
- #: counter-options.php:252
266
- msgid "Chart - Height"
267
- msgstr "Diagrama - Aukštis"
268
-
269
- #@ cpd
270
- #: counter-options.php:253
271
- msgid "Height of the biggest bar"
272
- msgstr "Didžiausio baro aukštis"
273
-
274
- #@ cpd
275
- #: counter-options.php:290
276
- msgid "Show in lists"
277
- msgstr "Rodyti sąrašuose"
278
-
279
- #@ cpd
280
- #: counter-options.php:291
281
- msgid "Show \"Reads per Post\" in a new column in post management views."
282
- msgstr "Rodyti \"Žinutės skaitymai \" naujame stulpelyje žinutės peržiūrų valdyme."
283
-
284
- #@ cpd
285
- #: counter-options.php:463
286
- #: counter-options.php:472
287
- msgid "Reset the counter"
288
- msgstr "Atstatyti skaitliuką"
289
-
290
- #@ cpd
291
- #: counter-options.php:466
292
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
293
- msgstr "Skaitiklį galite atkurti tuščia lentele. VISOS su 0! <br /> Padarykite atsarginę kopiją, jei jums reikia dabartinių duomenų!"
294
-
295
- #@ cpd
296
- #: counter.php:845
297
- msgid "no reads at this time"
298
- msgstr "nėra skaitymų šiuo metu"
299
-
300
- #@ cpd
301
- #: counter.php:819
302
- msgid "days"
303
- msgstr "dienų"
304
-
305
- #@ cpd
306
- #: counter.php:1257
307
- #, php-format
308
- msgid "The %s most visited posts in last %s days:"
309
- msgstr "Paskutinių %s dienų labiausiai %s lankomų žinučių:"
310
-
311
- #@ default
312
- #: counter.php:1591
313
- msgid "Settings"
314
- msgstr "Nustatymai"
315
-
316
- #@ cpd
317
- #: counter.php:635
318
- #: counter.php:1766
319
- msgid "Reads per day"
320
- msgstr "Skaitymų per dieną"
321
-
322
- #@ cpd
323
- #: counter-options.php:225
324
- #: counter.php:528
325
- #: counter.php:1661
326
- msgid "Reads"
327
- msgstr "Skaitymų"
328
-
329
- #@ cpd
330
- #: counter.php:2218
331
- msgid "This post"
332
- msgstr "Ši žinutė"
333
-
334
- #@ cpd
335
- #: counter-options.php:57
336
- #, php-format
337
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
- msgstr "Šalys atnaujintos. <b>%s</b> įrašų %s liko be šalies"
339
-
340
- #@ cpd
341
- #: counter-options.php:62
342
- msgid "update next"
343
- msgstr "Atnaujinti sekantį"
344
-
345
- #@ cpd
346
- #: counter-options.php:104
347
- #, php-format
348
- msgid "Mass Bots cleaned. %s counts deleted."
349
- msgstr "Botų lentelė išvalyta. %s išbraukta."
350
-
351
- #@ cpd
352
- #: counter-options.php:197
353
- msgid "until User Level"
354
- msgstr "iki vartotojo lygmens"
355
-
356
- #@ cpd
357
- #: counter-options.php:216
358
- msgid "Anonymous IP"
359
- msgstr "Anoniminis IP"
360
-
361
- #@ cpd
362
- #: counter-options.php:261
363
- msgid "Countries"
364
- msgstr "Šalys"
365
-
366
- #@ cpd
367
- #: counter-options.php:262
368
- msgid "How many countries do you want to see on dashboard page?"
369
- msgstr "Kiek šalių tu nori matyti puslapyje prietaisų skydelyje?"
370
-
371
- #@ cpd
372
- #: counter-options.php:299
373
- msgid "Start Values"
374
- msgstr "Pradėti reikšmes"
375
-
376
- #@ cpd
377
- #: counter-options.php:303
378
- msgid "Here you can change the date of first count and add a start count."
379
- msgstr "Čia galite pakeisti pirmo skaičiavimo datą ir pradėti skaičiavimą."
380
-
381
- #@ cpd
382
- #: counter-options.php:307
383
- msgid "Start date"
384
- msgstr "Pradėti datą"
385
-
386
- #@ cpd
387
- #: counter-options.php:308
388
- msgid "Your old Counter starts at?"
389
- msgstr "Jūsų senas skaitliukas prasideda nuo?"
390
-
391
- #@ cpd
392
- #: counter-options.php:311
393
- #: counter-options.php:315
394
- msgid "Start count"
395
- msgstr "Pradėti skaičiavimą"
396
-
397
- #@ cpd
398
- #: counter-options.php:312
399
- msgid "Add this value to \"Total visitors\"."
400
- msgstr "Pridėti šią reikšmę \"Iš viso apsilankė\"."
401
-
402
- #@ cpd
403
- #: counter-options.php:340
404
- msgid "GeoIP - Countries"
405
- msgstr "GeoIP - Šalys"
406
-
407
- #@ cpd
408
- #: counter-options.php:349
409
- msgid "Update old counter data"
410
- msgstr "Atnaujinti senus skaitliuko duomenis"
411
-
412
- #@ cpd
413
- #: counter-options.php:362
414
- msgid "Update GeoIP database"
415
- msgstr "Atnaujinti GeoIP duomenų bazę"
416
-
417
- #@ cpd
418
- #: counter-options.php:365
419
- msgid "Download a new version of GeoIP.dat file."
420
- msgstr "Atsisiųsti naują GeoIP.dat failo versiją."
421
-
422
- #@ cpd
423
- #: counter-options.php:371
424
- msgid "More informations about GeoIP"
425
- msgstr "Daugiau informacijos apie GeoIP"
426
-
427
- #@ cpd
428
- #: counter-options.php:386
429
- #: massbots.php:33
430
- msgid "Mass Bots"
431
- msgstr "Botai"
432
-
433
- #@ cpd
434
- #: counter-options.php:390
435
- #, php-format
436
- msgid "Show all IPs with more than %s page views per day"
437
- msgstr "Rodyti visus IP su daugiau nei %s peržiūrų per parą"
438
-
439
- #@ cpd
440
- #: counter-options.php:391
441
- #: notes.php:76
442
- #: userperspan.php:43
443
- msgid "show"
444
- msgstr "parodyti"
445
-
446
- #@ cpd
447
- #: counter-options.php:399
448
- msgid "IP"
449
- msgstr "IP"
450
-
451
- #@ cpd
452
- #@ default
453
- #: counter-options.php:400
454
- #: notes.php:80
455
- msgid "Date"
456
- msgstr "Data"
457
-
458
- #@ cpd
459
- #: counter-options.php:401
460
- msgid "Client"
461
- msgstr "Klientas"
462
-
463
- #@ cpd
464
- #: counter-options.php:402
465
- msgid "Views"
466
- msgstr "Peržiūrų"
467
-
468
- #@ cpd
469
- #: counter-options.php:413
470
- #: counter-options.php:435
471
- #, php-format
472
- msgid "Delete these %s counts"
473
- msgstr "Pašalinti šiuos %s skaitliukų"
474
-
475
- #@ cpd
476
- #: counter-options.php:504
477
- msgid "Support"
478
- msgstr "Palaikymas"
479
-
480
- #@ cpd
481
- #: counter.php:1716
482
- #, php-format
483
- msgid "Time for Count per Day: <code>%s</code>."
484
- msgstr "Laikas skaičiaus per dieną: <code>%s</code>"
485
-
486
- #@ cpd
487
- #: counter.php:1717
488
- msgid "Bug? Problem? Question? Hint? Praise?"
489
- msgstr "Klaida? Problema? Klausimas? Patarimas? Pagirimas?"
490
-
491
- #@ cpd
492
- #: counter.php:1718
493
- #, php-format
494
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
495
- msgstr "Rašyti komentarą <a href=\"%s\">įskiepio puslapyje</a> ."
496
-
497
- #@ cpd
498
- #: counter.php:524
499
- #: counter.php:2219
500
- msgid "Total reads"
501
- msgstr "Viso skaityta"
502
-
503
- #@ cpd
504
- #: counter.php:525
505
- #: counter.php:2220
506
- msgid "Reads today"
507
- msgstr "Skaityta šiandien"
508
-
509
- #@ cpd
510
- #: counter.php:526
511
- #: counter.php:2221
512
- msgid "Reads yesterday"
513
- msgstr "Vakar skaityta"
514
-
515
- #@ cpd
516
- #: counter.php:822
517
- #: counter.php:1376
518
- #: notes.php:47
519
- #: notes.php:81
520
- msgid "Notes"
521
- msgstr "Pastabos"
522
-
523
- #@ default
524
- #: counter.php:1374
525
- msgid "Show"
526
- msgstr "Parodyti"
527
-
528
- #@ cpd
529
- #: counter.php:1421
530
- msgid "Other"
531
- msgstr "Kiti"
532
-
533
- #@ default
534
- #: counter.php:1505
535
- msgid "Edit Post"
536
- msgstr "Redaguoti žinutę"
537
-
538
- #@ default
539
- #: counter.php:1520
540
- #: massbots.php:50
541
- #: userperspan.php:63
542
- msgid "Front page displays"
543
- msgstr "Pirminio puslapio rodymas"
544
-
545
- #@ cpd
546
- #: counter-options.php:266
547
- #: counter.php:1760
548
- msgid "Browsers"
549
- msgstr "Naršyklės"
550
-
551
- #@ cpd
552
- #: counter.php:1755
553
- msgid "Latest Counts"
554
- msgstr "Paskutinieji skaičiavimai"
555
-
556
- #@ default
557
- #: counter.php:1757
558
- msgid "Plugin"
559
- msgstr "Įskiepis"
560
-
561
- #@ cpd
562
- #: counter.php:1770
563
- msgid "Reads per Country"
564
- msgstr "Peržiūrų per šalis"
565
-
566
- #@ cpd
567
- #: counter.php:900
568
- #: counter.php:1856
569
- msgid "Map"
570
- msgstr "Žemėlapis"
571
-
572
- #@ cpd
573
- #: geoip/geoip.php:108
574
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
575
- msgstr "Atsiprašome, būtinos funkcijos (zlib) neįdiegtos arba įjungtas php.ini."
576
-
577
- #@ cpd
578
- #: geoip/geoip.php:132
579
- msgid "New GeoIP database installed."
580
- msgstr "Įdiegta nauja GeoIP duomenų bazė."
581
-
582
- #@ cpd
583
- #: geoip/geoip.php:134
584
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
585
- msgstr "Atsiprašome, įvyko klaida. Bandykite dar kartą arba patikrinkite prieigos teises kataloge \"GeoIP\", turi būti 777."
586
-
587
- #@ cpd
588
- #: notes.php:81
589
- msgid "(1 per day)"
590
- msgstr "(1 per parą)"
591
-
592
- #@ default
593
- #: notes.php:82
594
- msgid "Action"
595
- msgstr "Veiksmas"
596
-
597
- #@ cpd
598
- #: notes.php:87
599
- msgid "add"
600
- msgstr "pridėti"
601
-
602
- #@ cpd
603
- #: notes.php:102
604
- msgid "save"
605
- msgstr "išsaugoti"
606
-
607
- #@ cpd
608
- #: notes.php:103
609
- msgid "delete"
610
- msgstr "pašalinti"
611
-
612
- #@ cpd
613
- #: notes.php:114
614
- msgid "edit"
615
- msgstr "redaguoti"
616
-
617
- #@ cpd
618
- #: counter-options.php:220
619
- msgid "Cache"
620
- msgstr "Talpykla"
621
-
622
- #@ cpd
623
- #: counter-options.php:221
624
- msgid "I use a cache plugin. Count these visits with ajax."
625
- msgstr "Aš naudojutalpinamą įskiepį. Skaičiuoti šiuos apsilankymus ajax pagalba."
626
-
627
- #@ cpd
628
- #: counter-options.php:267
629
- msgid "Substring of the user agent, separated by comma"
630
- msgstr "Vartotojo agento fragmentas, atskirtas kableliais"
631
-
632
- #@ cpd
633
- #: counter-options.php:324
634
- msgid "Debug mode"
635
- msgstr "Derinimo režimu"
636
-
637
- #@ cpd
638
- #: counter-options.php:326
639
- msgid "Show debug informations at the bottom of all pages."
640
- msgstr "Rodyti derinimo informacijas visų puslapių apačioje."
641
-
642
- #@ cpd
643
- #: counter.php:1771
644
- msgid "Visitors per Country"
645
- msgstr "Vartotojai pagal šalis"
646
-
647
- #@ cpd
648
- #: userperspan.php:37
649
- msgid "Start"
650
- msgstr "Pradžia"
651
-
652
- #@ cpd
653
- #: userperspan.php:39
654
- msgid "End"
655
- msgstr "Pabaiga"
656
-
657
- #@ cpd
658
- #: userperspan.php:41
659
- msgid "PostID"
660
- msgstr "ŽinutėsID"
661
-
662
- #@ cpd
663
- #: counter-options.php:316
664
- msgid "Add this value to \"Total reads\"."
665
- msgstr "Pridėti šią reikšmę, \"Viso skaityta\"."
666
-
667
- #@ cpd
668
- #: counter-options.php:352
669
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
670
- msgstr "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrinti IP adresą prieš GeoIP duomenų bazę. Tai gali užtrukti!"
671
-
672
- #@ cpd
673
- #: userperspan.php:49
674
- msgid "no data found"
675
- msgstr "Nėra duomenų"
676
-
677
- #@ cpd
678
- #: counter-options.php:186
679
- msgid "Counter"
680
- msgstr "Skaitliukas"
681
-
682
- #@ cpd
683
- #: counter-options.php:224
684
- msgid "Clients and referrers"
685
- msgstr "Klientai ir referalai"
686
-
687
- #@ cpd
688
- #: counter-options.php:225
689
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
- msgstr "Išsaugoti ir parodyti klientus bei referalus. <br /> Reikia daug vietos duomenų bazėje, tačiau suteikia jums daugiau išsamios informacijos apie jūsų lankytojus."
691
-
692
- #@ cpd
693
- #: counter-options.php:278
694
- msgid "Local URLs"
695
- msgstr "Vietiniai URL"
696
-
697
- #@ cpd
698
- #: counter-options.php:279
699
- msgid "Show local referrers too."
700
- msgstr "Taipat rodyti vietinisu referalus."
701
-
702
- #@ default
703
- #: counter-options.php:287
704
- msgid "Posts"
705
- msgstr "Žinutės"
706
-
707
- #@ default
708
- #: counter-options.php:287
709
- msgid "Pages"
710
- msgstr "Puslapiai"
711
-
712
- #@ cpd
713
- #: counter.php:527
714
- #: counter.php:2222
715
- msgid "Reads last week"
716
- msgstr "Skaitymų praeitą savaitę"
717
-
718
- #@ default
719
- #: counter.php:1514
720
- msgid "Category"
721
- msgstr "Kategorija"
722
-
723
- #@ default
724
- #: counter.php:1517
725
- msgid "Tag"
726
- msgstr "Žyma"
727
-
728
- #@ default
729
- #: counter.php:1719
730
- msgid "License"
731
- msgstr "Licenzija"
732
-
733
- #@ cpd
734
- #: counter.php:1753
735
- #: counter.php:2223
736
- msgid "Reads per month"
737
- msgstr "Skaitymų per mėnesį"
738
-
739
- #@ cpd
740
- #: counter.php:1761
741
- msgid "Referrer"
742
- msgstr "Referalas"
743
-
744
- #@ cpd
745
- #: counter-options.php:256
746
- msgid "Old Charts"
747
- msgstr "Seni grafikai"
748
-
749
- #@ cpd
750
- #: counter-options.php:257
751
- msgid "Show old bar charts."
752
- msgstr "Rodyti senus grafikus stulpeliais"
753
-
754
- #@ cpd
755
- #: counter-options.php:270
756
- msgid "Referrers - Entries"
757
- msgstr "Referalai - Įrašai"
758
-
759
- #@ cpd
760
- #: counter-options.php:271
761
- msgid "How many referrers do you want to see on dashboard page?"
762
- msgstr "Kiek referalų jūs norite pamatyti puslapio prietaisų skydelyje?"
763
-
764
- #@ cpd
765
- #: counter-options.php:274
766
- msgid "Referrers - Days"
767
- msgstr "Referalai - Dienos"
768
-
769
- #@ cpd
770
- #: counter.php:1449
771
- #, php-format
772
- msgid "The %s referrers in last %s days:"
773
- msgstr "%s referalų paskutinius %s dienų:"
774
-
775
- #@ cpd
776
- #: counter.php:1751
777
- msgid "Visitors online"
778
- msgstr "Lankytojų svetainėje"
779
-
780
- #@ default
781
- #: counter.php:2242
782
- msgid "Title"
783
- msgstr "Pavadinimas"
784
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Natalija Strazdauskienė <ciuvir@mail.ru>\n"
8
+ "Language-Team: Nata Strazda <nata@epastas.lt>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Lithuanian\n"
14
+ "X-Poedit-Country: LITHUANIA\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:46
23
+ msgid "Options updated"
24
+ msgstr "Parinktys atnaujintos"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:111
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Duomenų bazė išvalyta. Ištrinta eilučių %s."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:121
34
+ #: counter-options.php:496
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "PAŠALINTI dienos skaičių"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:126
40
+ #: counter-options.php:128
41
+ #: counter-options.php:130
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Lentelė %s pašalinta"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:132
48
+ msgid "Options deleted"
49
+ msgstr "Parinktys ištrintos"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:156
53
+ #: counter-options.php:481
54
+ msgid "Uninstall"
55
+ msgstr "Pašalinti"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:157
59
+ msgid "Click here"
60
+ msgstr "Spauskite čia"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:157
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "baigti pašalinimą ir išjungti \"Skaičius per dieną\"."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:179
69
+ msgid "Options"
70
+ msgstr "Parinktys"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:190
74
+ msgid "Online time"
75
+ msgstr "Online laikas"
76
+
77
+ #@ cpd
78
+ #: counter-options.php:191
79
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
80
+ msgstr "Online skaičius sekundėse. Panaudota iš \"Lankytojų online\" puslapio prietaisų skydelio."
81
+
82
+ #@ cpd
83
+ #: counter-options.php:194
84
+ msgid "Logged on Users"
85
+ msgstr "Prisijungę vartotojai"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:196
89
+ msgid "count too"
90
+ msgstr "taipogi skaičiuoti"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:208
94
+ msgid "Auto counter"
95
+ msgstr "Automatinis skaičiuotuvas"
96
+
97
+ #@ cpd
98
+ #: counter-options.php:209
99
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
100
+ msgstr "Automatiškas vienos žinutės ir puslapių skaičiavimas, nereikalauja pakeitimų šablone."
101
+
102
+ #@ cpd
103
+ #: counter-options.php:212
104
+ msgid "Bots to ignore"
105
+ msgstr "Botus ignoruoti"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:331
109
+ msgid "Update options"
110
+ msgstr "Atnaujinti parinktis"
111
+
112
+ #@ cpd
113
+ #: counter-options.php:445
114
+ #: counter-options.php:454
115
+ msgid "Clean the database"
116
+ msgstr "Išvalyti duomenų bazę"
117
+
118
+ #@ cpd
119
+ #: counter-options.php:448
120
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
121
+ msgstr "Jūs galite išvalyti skaičiavimo lentelę ištrinus \"spam duomenis\". <br /> Jei pridėsite naujų botų virš senųjų \"spam duomenų\", tai liks duomenų bazėje. <br /> Čia vėl galite paleisti boto filtrą ir ištrinti botų apsilankymus."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:484
125
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
126
+ msgstr "Jeigu \"Kasdienis skaičiavimas\" tik atjungia duomenų bazės lenteles, tai bus užšaldytas."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:485
130
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
131
+ msgstr "Čia galite ištrinti lenteles ir išjungti \"Kasdienį skaičiavimą\"."
132
+
133
+ #@ cpd
134
+ #: counter-options.php:488
135
+ msgid "WARNING"
136
+ msgstr "DĖMESIO"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:489
140
+ msgid "These tables (with ALL counter data) will be deleted."
141
+ msgstr "Šios lentelės (su VISOM skaičiavimo duomenim) bus ištrintos."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:491
145
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
146
+ msgstr "Jeigu \"Kasdienis skaičiavimas\" įdiegtas iš naujo, skaitiklis prasideda 0."
147
+
148
+ #@ cpd
149
+ #: counter-options.php:495
150
+ msgid "Yes"
151
+ msgstr "Taip"
152
+
153
+ #@ cpd
154
+ #: counter-options.php:496
155
+ msgid "You are sure to disable Count per Day and delete all data?"
156
+ msgstr "Jūs esate tikras, kad norite išjungti Kasdienį Skaičiavimą ir ištrinti visus duomenis?"
157
+
158
+ #@ cpd
159
+ #: counter.php:1786
160
+ #: counter.php:2147
161
+ msgid "Statistics"
162
+ msgstr "Statistika"
163
+
164
+ #@ cpd
165
+ #: counter.php:529
166
+ #: counter.php:534
167
+ #: counter.php:1604
168
+ #: counter.php:1750
169
+ #: counter.php:2224
170
+ msgid "Total visitors"
171
+ msgstr "Viso lankytojų"
172
+
173
+ #@ cpd
174
+ #: counter.php:530
175
+ #: counter.php:2230
176
+ msgid "Visitors currently online"
177
+ msgstr "Šiuo metu lankytojų svetainėje"
178
+
179
+ #@ cpd
180
+ #: counter.php:531
181
+ #: counter.php:2225
182
+ msgid "Visitors today"
183
+ msgstr "Lankytojų šiandien"
184
+
185
+ #@ cpd
186
+ #: counter.php:532
187
+ #: counter.php:2226
188
+ msgid "Visitors yesterday"
189
+ msgstr "Lankytojų vakar"
190
+
191
+ #@ cpd
192
+ #: counter.php:533
193
+ #: counter.php:2227
194
+ msgid "Visitors last week"
195
+ msgstr "Lankytojų praeitą savaitę"
196
+
197
+ #@ cpd
198
+ #: counter.php:536
199
+ #: counter.php:2231
200
+ msgid "Counter starts on"
201
+ msgstr "Skaitiklis prasideda nuo"
202
+
203
+ #@ cpd
204
+ #: counter.php:535
205
+ #: counter.php:636
206
+ #: counter.php:1606
207
+ #: counter.php:1756
208
+ #: counter.php:1765
209
+ #: counter.php:2229
210
+ #: userperspan.php:33
211
+ msgid "Visitors per day"
212
+ msgstr "Lankytojų per dieną"
213
+
214
+ #@ cpd
215
+ #: counter.php:1752
216
+ #: counter.php:2228
217
+ msgid "Visitors per month"
218
+ msgstr "Lankytojų per mėnesį"
219
+
220
+ #@ cpd
221
+ #: counter-options.php:236
222
+ #: counter.php:1754
223
+ msgid "Visitors per post"
224
+ msgstr "Žinutės lankytojai"
225
+
226
+ #@ cpd
227
+ #: counter-options.php:117
228
+ msgid "Counter reseted."
229
+ msgstr "Skaitliukas išvalytas."
230
+
231
+ #@ default
232
+ #: counter-options.php:233
233
+ msgid "Dashboard"
234
+ msgstr "Konsolė"
235
+
236
+ #@ cpd
237
+ #: counter-options.php:237
238
+ #: counter-options.php:241
239
+ msgid "How many posts do you want to see on dashboard page?"
240
+ msgstr "Kiek žinučių jūs norite pamatyti ant prietaisų skydelio puslapyje?"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:240
244
+ msgid "Latest Counts - Posts"
245
+ msgstr "Paskutiniai skaitliukai - žinutės"
246
+
247
+ #@ cpd
248
+ #: counter-options.php:244
249
+ msgid "Latest Counts - Days"
250
+ msgstr "Paskutiniai skaitliukai - Dienos"
251
+
252
+ #@ cpd
253
+ #: counter-options.php:245
254
+ #: counter-options.php:249
255
+ #: counter-options.php:275
256
+ msgid "How many days do you want look back?"
257
+ msgstr "Kiek dienų atgal jūs norite peržiūrėti?"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:248
261
+ msgid "Chart - Days"
262
+ msgstr "Diagrama - dienos"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:252
266
+ msgid "Chart - Height"
267
+ msgstr "Diagrama - Aukštis"
268
+
269
+ #@ cpd
270
+ #: counter-options.php:253
271
+ msgid "Height of the biggest bar"
272
+ msgstr "Didžiausio baro aukštis"
273
+
274
+ #@ cpd
275
+ #: counter-options.php:290
276
+ msgid "Show in lists"
277
+ msgstr "Rodyti sąrašuose"
278
+
279
+ #@ cpd
280
+ #: counter-options.php:291
281
+ msgid "Show \"Reads per Post\" in a new column in post management views."
282
+ msgstr "Rodyti \"Žinutės skaitymai \" naujame stulpelyje žinutės peržiūrų valdyme."
283
+
284
+ #@ cpd
285
+ #: counter-options.php:463
286
+ #: counter-options.php:472
287
+ msgid "Reset the counter"
288
+ msgstr "Atstatyti skaitliuką"
289
+
290
+ #@ cpd
291
+ #: counter-options.php:466
292
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
293
+ msgstr "Skaitiklį galite atkurti tuščia lentele. VISOS su 0! <br /> Padarykite atsarginę kopiją, jei jums reikia dabartinių duomenų!"
294
+
295
+ #@ cpd
296
+ #: counter.php:845
297
+ msgid "no reads at this time"
298
+ msgstr "nėra skaitymų šiuo metu"
299
+
300
+ #@ cpd
301
+ #: counter.php:819
302
+ msgid "days"
303
+ msgstr "dienų"
304
+
305
+ #@ cpd
306
+ #: counter.php:1257
307
+ #, php-format
308
+ msgid "The %s most visited posts in last %s days:"
309
+ msgstr "Paskutinių %s dienų labiausiai %s lankomų žinučių:"
310
+
311
+ #@ default
312
+ #: counter.php:1591
313
+ msgid "Settings"
314
+ msgstr "Nustatymai"
315
+
316
+ #@ cpd
317
+ #: counter.php:635
318
+ #: counter.php:1766
319
+ msgid "Reads per day"
320
+ msgstr "Skaitymų per dieną"
321
+
322
+ #@ cpd
323
+ #: counter-options.php:225
324
+ #: counter.php:528
325
+ #: counter.php:1661
326
+ msgid "Reads"
327
+ msgstr "Skaitymų"
328
+
329
+ #@ cpd
330
+ #: counter.php:2218
331
+ msgid "This post"
332
+ msgstr "Ši žinutė"
333
+
334
+ #@ cpd
335
+ #: counter-options.php:57
336
+ #, php-format
337
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
338
+ msgstr "Šalys atnaujintos. <b>%s</b> įrašų %s liko be šalies"
339
+
340
+ #@ cpd
341
+ #: counter-options.php:62
342
+ msgid "update next"
343
+ msgstr "Atnaujinti sekantį"
344
+
345
+ #@ cpd
346
+ #: counter-options.php:104
347
+ #, php-format
348
+ msgid "Mass Bots cleaned. %s counts deleted."
349
+ msgstr "Botų lentelė išvalyta. %s išbraukta."
350
+
351
+ #@ cpd
352
+ #: counter-options.php:197
353
+ msgid "until User Level"
354
+ msgstr "iki vartotojo lygmens"
355
+
356
+ #@ cpd
357
+ #: counter-options.php:216
358
+ msgid "Anonymous IP"
359
+ msgstr "Anoniminis IP"
360
+
361
+ #@ cpd
362
+ #: counter-options.php:261
363
+ msgid "Countries"
364
+ msgstr "Šalys"
365
+
366
+ #@ cpd
367
+ #: counter-options.php:262
368
+ msgid "How many countries do you want to see on dashboard page?"
369
+ msgstr "Kiek šalių tu nori matyti puslapyje prietaisų skydelyje?"
370
+
371
+ #@ cpd
372
+ #: counter-options.php:299
373
+ msgid "Start Values"
374
+ msgstr "Pradėti reikšmes"
375
+
376
+ #@ cpd
377
+ #: counter-options.php:303
378
+ msgid "Here you can change the date of first count and add a start count."
379
+ msgstr "Čia galite pakeisti pirmo skaičiavimo datą ir pradėti skaičiavimą."
380
+
381
+ #@ cpd
382
+ #: counter-options.php:307
383
+ msgid "Start date"
384
+ msgstr "Pradėti datą"
385
+
386
+ #@ cpd
387
+ #: counter-options.php:308
388
+ msgid "Your old Counter starts at?"
389
+ msgstr "Jūsų senas skaitliukas prasideda nuo?"
390
+
391
+ #@ cpd
392
+ #: counter-options.php:311
393
+ #: counter-options.php:315
394
+ msgid "Start count"
395
+ msgstr "Pradėti skaičiavimą"
396
+
397
+ #@ cpd
398
+ #: counter-options.php:312
399
+ msgid "Add this value to \"Total visitors\"."
400
+ msgstr "Pridėti šią reikšmę \"Iš viso apsilankė\"."
401
+
402
+ #@ cpd
403
+ #: counter-options.php:340
404
+ msgid "GeoIP - Countries"
405
+ msgstr "GeoIP - Šalys"
406
+
407
+ #@ cpd
408
+ #: counter-options.php:349
409
+ msgid "Update old counter data"
410
+ msgstr "Atnaujinti senus skaitliuko duomenis"
411
+
412
+ #@ cpd
413
+ #: counter-options.php:362
414
+ msgid "Update GeoIP database"
415
+ msgstr "Atnaujinti GeoIP duomenų bazę"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:365
419
+ msgid "Download a new version of GeoIP.dat file."
420
+ msgstr "Atsisiųsti naują GeoIP.dat failo versiją."
421
+
422
+ #@ cpd
423
+ #: counter-options.php:371
424
+ msgid "More informations about GeoIP"
425
+ msgstr "Daugiau informacijos apie GeoIP"
426
+
427
+ #@ cpd
428
+ #: counter-options.php:386
429
+ #: massbots.php:33
430
+ msgid "Mass Bots"
431
+ msgstr "Botai"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:390
435
+ #, php-format
436
+ msgid "Show all IPs with more than %s page views per day"
437
+ msgstr "Rodyti visus IP su daugiau nei %s peržiūrų per parą"
438
+
439
+ #@ cpd
440
+ #: counter-options.php:391
441
+ #: notes.php:76
442
+ #: userperspan.php:43
443
+ msgid "show"
444
+ msgstr "parodyti"
445
+
446
+ #@ cpd
447
+ #: counter-options.php:399
448
+ msgid "IP"
449
+ msgstr "IP"
450
+
451
+ #@ cpd
452
+ #@ default
453
+ #: counter-options.php:400
454
+ #: notes.php:80
455
+ msgid "Date"
456
+ msgstr "Data"
457
+
458
+ #@ cpd
459
+ #: counter-options.php:401
460
+ msgid "Client"
461
+ msgstr "Klientas"
462
+
463
+ #@ cpd
464
+ #: counter-options.php:402
465
+ msgid "Views"
466
+ msgstr "Peržiūrų"
467
+
468
+ #@ cpd
469
+ #: counter-options.php:413
470
+ #: counter-options.php:435
471
+ #, php-format
472
+ msgid "Delete these %s counts"
473
+ msgstr "Pašalinti šiuos %s skaitliukų"
474
+
475
+ #@ cpd
476
+ #: counter-options.php:504
477
+ msgid "Support"
478
+ msgstr "Palaikymas"
479
+
480
+ #@ cpd
481
+ #: counter.php:1716
482
+ #, php-format
483
+ msgid "Time for Count per Day: <code>%s</code>."
484
+ msgstr "Laikas skaičiaus per dieną: <code>%s</code>"
485
+
486
+ #@ cpd
487
+ #: counter.php:1717
488
+ msgid "Bug? Problem? Question? Hint? Praise?"
489
+ msgstr "Klaida? Problema? Klausimas? Patarimas? Pagirimas?"
490
+
491
+ #@ cpd
492
+ #: counter.php:1718
493
+ #, php-format
494
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
495
+ msgstr "Rašyti komentarą <a href=\"%s\">įskiepio puslapyje</a> ."
496
+
497
+ #@ cpd
498
+ #: counter.php:524
499
+ #: counter.php:2219
500
+ msgid "Total reads"
501
+ msgstr "Viso skaityta"
502
+
503
+ #@ cpd
504
+ #: counter.php:525
505
+ #: counter.php:2220
506
+ msgid "Reads today"
507
+ msgstr "Skaityta šiandien"
508
+
509
+ #@ cpd
510
+ #: counter.php:526
511
+ #: counter.php:2221
512
+ msgid "Reads yesterday"
513
+ msgstr "Vakar skaityta"
514
+
515
+ #@ cpd
516
+ #: counter.php:822
517
+ #: counter.php:1376
518
+ #: notes.php:47
519
+ #: notes.php:81
520
+ msgid "Notes"
521
+ msgstr "Pastabos"
522
+
523
+ #@ default
524
+ #: counter.php:1374
525
+ msgid "Show"
526
+ msgstr "Parodyti"
527
+
528
+ #@ cpd
529
+ #: counter.php:1421
530
+ msgid "Other"
531
+ msgstr "Kiti"
532
+
533
+ #@ default
534
+ #: counter.php:1505
535
+ msgid "Edit Post"
536
+ msgstr "Redaguoti žinutę"
537
+
538
+ #@ default
539
+ #: counter.php:1520
540
+ #: massbots.php:50
541
+ #: userperspan.php:63
542
+ msgid "Front page displays"
543
+ msgstr "Pirminio puslapio rodymas"
544
+
545
+ #@ cpd
546
+ #: counter-options.php:266
547
+ #: counter.php:1760
548
+ msgid "Browsers"
549
+ msgstr "Naršyklės"
550
+
551
+ #@ cpd
552
+ #: counter.php:1755
553
+ msgid "Latest Counts"
554
+ msgstr "Paskutinieji skaičiavimai"
555
+
556
+ #@ default
557
+ #: counter.php:1757
558
+ msgid "Plugin"
559
+ msgstr "Įskiepis"
560
+
561
+ #@ cpd
562
+ #: counter.php:1770
563
+ msgid "Reads per Country"
564
+ msgstr "Peržiūrų per šalis"
565
+
566
+ #@ cpd
567
+ #: counter.php:900
568
+ #: counter.php:1856
569
+ msgid "Map"
570
+ msgstr "Žemėlapis"
571
+
572
+ #@ cpd
573
+ #: geoip/geoip.php:108
574
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
575
+ msgstr "Atsiprašome, būtinos funkcijos (zlib) neįdiegtos arba įjungtas php.ini."
576
+
577
+ #@ cpd
578
+ #: geoip/geoip.php:132
579
+ msgid "New GeoIP database installed."
580
+ msgstr "Įdiegta nauja GeoIP duomenų bazė."
581
+
582
+ #@ cpd
583
+ #: geoip/geoip.php:134
584
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
585
+ msgstr "Atsiprašome, įvyko klaida. Bandykite dar kartą arba patikrinkite prieigos teises kataloge \"GeoIP\", turi būti 777."
586
+
587
+ #@ cpd
588
+ #: notes.php:81
589
+ msgid "(1 per day)"
590
+ msgstr "(1 per parą)"
591
+
592
+ #@ default
593
+ #: notes.php:82
594
+ msgid "Action"
595
+ msgstr "Veiksmas"
596
+
597
+ #@ cpd
598
+ #: notes.php:87
599
+ msgid "add"
600
+ msgstr "pridėti"
601
+
602
+ #@ cpd
603
+ #: notes.php:102
604
+ msgid "save"
605
+ msgstr "išsaugoti"
606
+
607
+ #@ cpd
608
+ #: notes.php:103
609
+ msgid "delete"
610
+ msgstr "pašalinti"
611
+
612
+ #@ cpd
613
+ #: notes.php:114
614
+ msgid "edit"
615
+ msgstr "redaguoti"
616
+
617
+ #@ cpd
618
+ #: counter-options.php:220
619
+ msgid "Cache"
620
+ msgstr "Talpykla"
621
+
622
+ #@ cpd
623
+ #: counter-options.php:221
624
+ msgid "I use a cache plugin. Count these visits with ajax."
625
+ msgstr "Aš naudojutalpinamą įskiepį. Skaičiuoti šiuos apsilankymus ajax pagalba."
626
+
627
+ #@ cpd
628
+ #: counter-options.php:267
629
+ msgid "Substring of the user agent, separated by comma"
630
+ msgstr "Vartotojo agento fragmentas, atskirtas kableliais"
631
+
632
+ #@ cpd
633
+ #: counter-options.php:324
634
+ msgid "Debug mode"
635
+ msgstr "Derinimo režimu"
636
+
637
+ #@ cpd
638
+ #: counter-options.php:326
639
+ msgid "Show debug informations at the bottom of all pages."
640
+ msgstr "Rodyti derinimo informacijas visų puslapių apačioje."
641
+
642
+ #@ cpd
643
+ #: counter.php:1771
644
+ msgid "Visitors per Country"
645
+ msgstr "Vartotojai pagal šalis"
646
+
647
+ #@ cpd
648
+ #: userperspan.php:37
649
+ msgid "Start"
650
+ msgstr "Pradžia"
651
+
652
+ #@ cpd
653
+ #: userperspan.php:39
654
+ msgid "End"
655
+ msgstr "Pabaiga"
656
+
657
+ #@ cpd
658
+ #: userperspan.php:41
659
+ msgid "PostID"
660
+ msgstr "ŽinutėsID"
661
+
662
+ #@ cpd
663
+ #: counter-options.php:316
664
+ msgid "Add this value to \"Total reads\"."
665
+ msgstr "Pridėti šią reikšmę, \"Viso skaityta\"."
666
+
667
+ #@ cpd
668
+ #: counter-options.php:352
669
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
670
+ msgstr "Galite gauti visų šalies reikšmių duomenų bazės įrašus patikrinti IP adresą prieš GeoIP duomenų bazę. Tai gali užtrukti!"
671
+
672
+ #@ cpd
673
+ #: userperspan.php:49
674
+ msgid "no data found"
675
+ msgstr "Nėra duomenų"
676
+
677
+ #@ cpd
678
+ #: counter-options.php:186
679
+ msgid "Counter"
680
+ msgstr "Skaitliukas"
681
+
682
+ #@ cpd
683
+ #: counter-options.php:224
684
+ msgid "Clients and referrers"
685
+ msgstr "Klientai ir referalai"
686
+
687
+ #@ cpd
688
+ #: counter-options.php:225
689
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
690
+ msgstr "Išsaugoti ir parodyti klientus bei referalus. <br /> Reikia daug vietos duomenų bazėje, tačiau suteikia jums daugiau išsamios informacijos apie jūsų lankytojus."
691
+
692
+ #@ cpd
693
+ #: counter-options.php:278
694
+ msgid "Local URLs"
695
+ msgstr "Vietiniai URL"
696
+
697
+ #@ cpd
698
+ #: counter-options.php:279
699
+ msgid "Show local referrers too."
700
+ msgstr "Taipat rodyti vietinisu referalus."
701
+
702
+ #@ default
703
+ #: counter-options.php:287
704
+ msgid "Posts"
705
+ msgstr "Žinutės"
706
+
707
+ #@ default
708
+ #: counter-options.php:287
709
+ msgid "Pages"
710
+ msgstr "Puslapiai"
711
+
712
+ #@ cpd
713
+ #: counter.php:527
714
+ #: counter.php:2222
715
+ msgid "Reads last week"
716
+ msgstr "Skaitymų praeitą savaitę"
717
+
718
+ #@ default
719
+ #: counter.php:1514
720
+ msgid "Category"
721
+ msgstr "Kategorija"
722
+
723
+ #@ default
724
+ #: counter.php:1517
725
+ msgid "Tag"
726
+ msgstr "Žyma"
727
+
728
+ #@ default
729
+ #: counter.php:1719
730
+ msgid "License"
731
+ msgstr "Licenzija"
732
+
733
+ #@ cpd
734
+ #: counter.php:1753
735
+ #: counter.php:2223
736
+ msgid "Reads per month"
737
+ msgstr "Skaitymų per mėnesį"
738
+
739
+ #@ cpd
740
+ #: counter.php:1761
741
+ msgid "Referrer"
742
+ msgstr "Referalas"
743
+
744
+ #@ cpd
745
+ #: counter-options.php:256
746
+ msgid "Old Charts"
747
+ msgstr "Seni grafikai"
748
+
749
+ #@ cpd
750
+ #: counter-options.php:257
751
+ msgid "Show old bar charts."
752
+ msgstr "Rodyti senus grafikus stulpeliais"
753
+
754
+ #@ cpd
755
+ #: counter-options.php:270
756
+ msgid "Referrers - Entries"
757
+ msgstr "Referalai - Įrašai"
758
+
759
+ #@ cpd
760
+ #: counter-options.php:271
761
+ msgid "How many referrers do you want to see on dashboard page?"
762
+ msgstr "Kiek referalų jūs norite pamatyti puslapio prietaisų skydelyje?"
763
+
764
+ #@ cpd
765
+ #: counter-options.php:274
766
+ msgid "Referrers - Days"
767
+ msgstr "Referalai - Dienos"
768
+
769
+ #@ cpd
770
+ #: counter.php:1449
771
+ #, php-format
772
+ msgid "The %s referrers in last %s days:"
773
+ msgstr "%s referalų paskutinius %s dienų:"
774
+
775
+ #@ cpd
776
+ #: counter.php:1751
777
+ msgid "Visitors online"
778
+ msgstr "Lankytojų svetainėje"
779
+
780
+ #@ default
781
+ #: counter.php:2242
782
+ msgid "Title"
783
+ msgstr "Pavadinimas"
784
+
locale/cpd-nb_NO.po CHANGED
@@ -1,972 +1,972 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: Stein Ivar Johnsen <sijo@dyg.no>\n"
8
- "Language-Team: Punktlig IKT <oversetter@punktlig-ikt.no>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Norwegian bokmal\n"
14
- "X-Poedit-Country: Norway\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: f:/wordpress/plugins/count-per-day\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "Innstillingene er oppdatert"
25
-
26
- #@ cpd
27
- #: counter-options.php:60
28
- #, php-format
29
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
- msgstr "Land oppdatert. <strong>%s</strong> poster i %s har stadig ingen angivelse av land."
31
-
32
- #@ cpd
33
- #: counter-options.php:65
34
- msgid "update next"
35
- msgstr "oppdater neste"
36
-
37
- #@ cpd
38
- #: counter-options.php:102
39
- #, php-format
40
- msgid "Mass Bots cleaned. %s counts deleted."
41
- msgstr "Massebotter renset. %s rader slettet."
42
-
43
- #@ cpd
44
- #: counter-options.php:112
45
- #, php-format
46
- msgid "Database cleaned. %s rows deleted."
47
- msgstr "Databasen renset. %s rader slettet."
48
-
49
- #@ cpd
50
- #: counter-options.php:122
51
- msgid "Counter reseted."
52
- msgstr "Teller nullstilt."
53
-
54
- #@ cpd
55
- #: counter-options.php:127
56
- #: counter-options.php:810
57
- msgid "UNINSTALL Count per Day"
58
- msgstr "AVINSTALLER Count per Day"
59
-
60
- #@ cpd
61
- #: counter-options.php:132
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #, php-format
65
- msgid "Table %s deleted"
66
- msgstr "Tabellen %s ble slettet"
67
-
68
- #@ cpd
69
- #: counter-options.php:135
70
- msgid "Options deleted"
71
- msgstr "Innstillinger slettet"
72
-
73
- #@ cpd
74
- #: counter-options.php:316
75
- #: counter-options.php:796
76
- msgid "Uninstall"
77
- msgstr "Avinstaller"
78
-
79
- #@ cpd
80
- #: counter-options.php:317
81
- msgid "Click here"
82
- msgstr "Klikk her"
83
-
84
- #@ cpd
85
- #: counter-options.php:317
86
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
- msgstr "for å fullføre avinstalleringen og deaktivere \"Count per Day\"."
88
-
89
- #@ cpd
90
- #: counter-options.php:355
91
- msgid "Online time"
92
- msgstr "Tid online"
93
-
94
- #@ cpd
95
- #: counter-options.php:356
96
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
97
- msgstr "Sekunder for online-teller. Brukes om \"Besøkende online\" i kontrollpanelet."
98
-
99
- #@ cpd
100
- #: counter-options.php:359
101
- msgid "Logged on Users"
102
- msgstr "Innloggede brukere"
103
-
104
- #@ cpd
105
- #: counter-options.php:361
106
- msgid "count too"
107
- msgstr "tell også"
108
-
109
- #@ cpd
110
- #: counter-options.php:362
111
- msgid "until User Level"
112
- msgstr "til og med brukernivå"
113
-
114
- #@ cpd
115
- #: counter-options.php:373
116
- msgid "Auto counter"
117
- msgstr "Auto-teller"
118
-
119
- #@ cpd
120
- #: counter-options.php:374
121
- msgid "Counts automatically single-posts and pages, no changes on template needed."
122
- msgstr "Teller automatisk enkelt-innlegg og -sider; ingen endringer i maler er nødvendig."
123
-
124
- #@ cpd
125
- #: counter-options.php:377
126
- msgid "Bots to ignore"
127
- msgstr "Ignorer følgende botter"
128
-
129
- #@ cpd
130
- #: counter-options.php:381
131
- msgid "Anonymous IP"
132
- msgstr "Anonym IP"
133
-
134
- #@ cpd
135
- #: counter-options.php:385
136
- msgid "Cache"
137
- msgstr "Buffer"
138
-
139
- #@ cpd
140
- #: counter-options.php:386
141
- msgid "I use a cache plugin. Count these visits with ajax."
142
- msgstr "Jeg bruker et buffer-innstikk. Tell disse besøkene med Ajax."
143
-
144
- #@ cpd
145
- #: counter-options.php:561
146
- msgid "Update options"
147
- msgstr "Oppdater innstillinger"
148
-
149
- #@ default
150
- #: counter-options.php:403
151
- msgid "Dashboard"
152
- msgstr "Kontrollpanel"
153
-
154
- #@ cpd
155
- #: counter-core.php:727
156
- #: counter-options.php:438
157
- msgid "Visitors per post"
158
- msgstr "Besøkende pr innlegg"
159
-
160
- #@ cpd
161
- #: counter-options.php:439
162
- #: counter-options.php:443
163
- msgid "How many posts do you want to see on dashboard page?"
164
- msgstr "Hvor mange innlegg vil du se på kontrollpanelet?"
165
-
166
- #@ cpd
167
- #: counter-options.php:442
168
- msgid "Latest Counts - Posts"
169
- msgstr "Sist leste - innlegg"
170
-
171
- #@ cpd
172
- #: counter-options.php:446
173
- msgid "Latest Counts - Days"
174
- msgstr "Sist leste - dager"
175
-
176
- #@ cpd
177
- #: counter-options.php:447
178
- #: counter-options.php:451
179
- #: counter-options.php:473
180
- msgid "How many days do you want look back?"
181
- msgstr "Hvor mange dager vil du se tilbake?"
182
-
183
- #@ cpd
184
- #: counter-options.php:450
185
- msgid "Chart - Days"
186
- msgstr "Diagram - dager"
187
-
188
- #@ cpd
189
- #: counter-options.php:454
190
- msgid "Chart - Height"
191
- msgstr "Diagram - høyde"
192
-
193
- #@ cpd
194
- #: counter-options.php:455
195
- msgid "Height of the biggest bar"
196
- msgstr "Høyde på den største søylen"
197
-
198
- #@ cpd
199
- #: counter-options.php:459
200
- msgid "Countries"
201
- msgstr "Land"
202
-
203
- #@ cpd
204
- #: counter-options.php:460
205
- msgid "How many countries do you want to see on dashboard page?"
206
- msgstr "Hvor mange land vil du se på innstikkets side i kontrollpanelet?"
207
-
208
- #@ cpd
209
- #: counter-core.php:733
210
- #: counter-options.php:464
211
- msgid "Browsers"
212
- msgstr "Nettlesere"
213
-
214
- #@ cpd
215
- #: counter-options.php:465
216
- msgid "Substring of the user agent, separated by comma"
217
- msgstr "Delstrenger som identifiserer en nettleser, kommaseparert"
218
-
219
- #@ cpd
220
- #: counter-options.php:488
221
- msgid "Show in lists"
222
- msgstr "Vis som liste"
223
-
224
- #@ cpd
225
- #: counter-options.php:489
226
- msgid "Show \"Reads per Post\" in a new column in post management views."
227
- msgstr "Vis \"Lest pr innlegg\" i en ny kolonne siden for innleggsadministrasjon."
228
-
229
- #@ cpd
230
- #: counter-options.php:497
231
- msgid "Start Values"
232
- msgstr "Startverdier"
233
-
234
- #@ cpd
235
- #: counter-options.php:501
236
- msgid "Here you can change the date of first count and add a start count."
237
- msgstr "Her kan du endre datoen på første treff og tilføye et tall som telleren skal starte på."
238
-
239
- #@ cpd
240
- #: counter-options.php:505
241
- msgid "Start date"
242
- msgstr "Startdato"
243
-
244
- #@ cpd
245
- #: counter-options.php:506
246
- msgid "Your old Counter starts at?"
247
- msgstr "Din gamle teller starter når?"
248
-
249
- #@ cpd
250
- #: counter-options.php:509
251
- #: counter-options.php:513
252
- msgid "Start count"
253
- msgstr "Start på antall treff"
254
-
255
- #@ cpd
256
- #: counter-options.php:510
257
- msgid "Add this value to \"Total visitors\"."
258
- msgstr "Tilføy denne verdien til \"Besøkende i alt\"."
259
-
260
- #@ cpd
261
- #: counter-options.php:514
262
- msgid "Add this value to \"Total reads\"."
263
- msgstr "Tilføy denne verdi til \"Lest i alt\"."
264
-
265
- #@ cpd
266
- #: counter-options.php:554
267
- msgid "Debug mode"
268
- msgstr "Feilsøkingsmodus"
269
-
270
- #@ cpd
271
- #: counter-options.php:556
272
- msgid "Show debug informations at the bottom of all pages."
273
- msgstr "Vis feilsøkingsinformasjon nederst på alle sider."
274
-
275
- #@ cpd
276
- #: counter-options.php:727
277
- msgid "GeoIP - Countries"
278
- msgstr "GeoIP - Land"
279
-
280
- #@ cpd
281
- #: counter-options.php:736
282
- msgid "Update old counter data"
283
- msgstr "Oppdater gamle tellerdata"
284
-
285
- #@ cpd
286
- #: counter-options.php:748
287
- msgid "Update GeoIP database"
288
- msgstr "Oppdater GeoIP-database"
289
-
290
- #@ cpd
291
- #: counter-options.php:743
292
- msgid "Download a new version of GeoIP.dat file."
293
- msgstr "Last ned en ny versjon av GeoIP.dat-filen."
294
-
295
- #@ cpd
296
- #: counter-options.php:753
297
- msgid "More informations about GeoIP"
298
- msgstr "Flere opplysninger om GeoIP"
299
-
300
- #@ cpd
301
- #: counter-options.php:580
302
- #: massbots.php:35
303
- msgid "Mass Bots"
304
- msgstr "Massebotter"
305
-
306
- #@ cpd
307
- #: counter-options.php:584
308
- #, php-format
309
- msgid "Show all IPs with more than %s page views per day"
310
- msgstr "Vis alle IP-adresser med mer enn %s sidevisninger pr dag"
311
-
312
- #@ cpd
313
- #: counter-options.php:585
314
- #: notes.php:71
315
- #: userperspan.php:44
316
- msgid "show"
317
- msgstr "vis"
318
-
319
- #@ cpd
320
- #: counter-options.php:593
321
- msgid "IP"
322
- msgstr "IP"
323
-
324
- #@ cpd
325
- #@ default
326
- #: counter-options.php:594
327
- #: notes.php:75
328
- msgid "Date"
329
- msgstr "Dato"
330
-
331
- #@ cpd
332
- #: counter-options.php:595
333
- msgid "Client"
334
- msgstr "Klient"
335
-
336
- #@ cpd
337
- #: counter-options.php:596
338
- msgid "Views"
339
- msgstr "Visninger"
340
-
341
- #@ cpd
342
- #: counter-options.php:611
343
- #: counter-options.php:627
344
- #, php-format
345
- msgid "Delete these %s counts"
346
- msgstr "Slett disse %s treffene"
347
-
348
- #@ cpd
349
- #: counter-options.php:656
350
- #: counter-options.php:665
351
- msgid "Clean the database"
352
- msgstr "Rens databasen"
353
-
354
- #@ cpd
355
- #: counter-options.php:659
356
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
357
- msgstr "Du kan rense tellertabellen for \"spam-data\".<br />Når du tilføyer nye botter ovenfor, forblir de gamle \"spam-data\" i databasen.<br />Her kan du kjøre bot-filteret igjen og slette bot-besøkene."
358
-
359
- #@ cpd
360
- #: counter-options.php:777
361
- #: counter-options.php:787
362
- msgid "Reset the counter"
363
- msgstr "Nullstill telleren"
364
-
365
- #@ cpd
366
- #: counter-options.php:780
367
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
368
- msgstr "Du kan nullstille telleren ved å tømme tabellen. Alt blir nullstilt.<br />Ta sikkerhetskopi hvis du har bruk for nåværende data."
369
-
370
- #@ cpd
371
- #: counter-options.php:799
372
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
373
- msgstr "Hvis \"Count per Day\" bare deaktiveres, blir tabellene i databasen bevart."
374
-
375
- #@ cpd
376
- #: counter-options.php:800
377
- msgid "Here you can delete the tables and disable \"Count per Day\"."
378
- msgstr "Her kan du slette tabellene og deaktivere \"Count per Day\"."
379
-
380
- #@ cpd
381
- #: counter-options.php:803
382
- msgid "WARNING"
383
- msgstr "ADVARSEL"
384
-
385
- #@ cpd
386
- #: counter-options.php:804
387
- msgid "These tables (with ALL counter data) will be deleted."
388
- msgstr "Disse tabellene (med ALLE teller-data) vil bli slettet."
389
-
390
- #@ cpd
391
- #: counter-options.php:806
392
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
393
- msgstr "Hvis \"Count per Day\" re-installeres, vil telleren starte på 0."
394
-
395
- #@ cpd
396
- #: counter-options.php:786
397
- #: counter-options.php:809
398
- msgid "Yes"
399
- msgstr "Ja"
400
-
401
- #@ cpd
402
- #: counter-options.php:810
403
- msgid "You are sure to disable Count per Day and delete all data?"
404
- msgstr "Er du sikker på at du vil deaktivere \"Count per Day\" og slette alle data?"
405
-
406
- #@ cpd
407
- #: counter-options.php:714
408
- msgid "Support"
409
- msgstr "Støtte"
410
-
411
- #@ cpd
412
- #: counter-core.php:689
413
- #, php-format
414
- msgid "Time for Count per Day: <code>%s</code>."
415
- msgstr "Tidspunkt for Count per Day: <code>%s</code>."
416
-
417
- #@ cpd
418
- #: counter-core.php:690
419
- msgid "Bug? Problem? Question? Hint? Praise?"
420
- msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
421
-
422
- #@ cpd
423
- #: counter-core.php:691
424
- #, php-format
425
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
426
- msgstr "Skriv en kommentar på <a href=\"%s\">innstikksiden</a>."
427
-
428
- #@ cpd
429
- #: counter.php:155
430
- #: counter.php:1197
431
- msgid "Total reads"
432
- msgstr "Visninger i alt"
433
-
434
- #@ cpd
435
- #: counter.php:156
436
- #: counter.php:1198
437
- msgid "Reads today"
438
- msgstr "Visninger i dag"
439
-
440
- #@ cpd
441
- #: counter.php:157
442
- #: counter.php:1199
443
- msgid "Reads yesterday"
444
- msgstr "Visninger i går"
445
-
446
- #@ cpd
447
- #: counter-core.php:723
448
- #: counter.php:160
449
- #: counter.php:1010
450
- #: counter.php:1202
451
- msgid "Total visitors"
452
- msgstr "Antall besøkende i alt"
453
-
454
- #@ cpd
455
- #: counter.php:161
456
- #: counter.php:1208
457
- msgid "Visitors currently online"
458
- msgstr "besøkende online akkurat nå"
459
-
460
- #@ cpd
461
- #: counter.php:162
462
- #: counter.php:1203
463
- msgid "Visitors today"
464
- msgstr "besøkende i dag"
465
-
466
- #@ cpd
467
- #: counter.php:163
468
- #: counter.php:1204
469
- msgid "Visitors yesterday"
470
- msgstr "besøkende i går"
471
-
472
- #@ cpd
473
- #: counter.php:164
474
- #: counter.php:1205
475
- msgid "Visitors last week"
476
- msgstr "besøkende siste uke"
477
-
478
- #@ cpd
479
- #: counter-core.php:729
480
- #: counter.php:166
481
- #: counter.php:263
482
- #: counter.php:1012
483
- #: counter.php:1207
484
- #: userperspan.php:34
485
- msgid "Visitors per day"
486
- msgstr "besøkende pr dag"
487
-
488
- #@ cpd
489
- #: counter.php:167
490
- #: counter.php:825
491
- #: counter.php:1209
492
- msgid "Counter starts on"
493
- msgstr "Teller starter på"
494
-
495
- #@ cpd
496
- #: counter.php:788
497
- #: notes.php:42
498
- #: notes.php:76
499
- msgid "Notes"
500
- msgstr "Merknader"
501
-
502
- #@ cpd
503
- #: counter.php:672
504
- #, php-format
505
- msgid "The %s most visited posts in last %s days:"
506
- msgstr "De %s mest viste innleggene de siste %s dagene:"
507
-
508
- #@ default
509
- #: counter.php:786
510
- msgid "Show"
511
- msgstr "Vis"
512
-
513
- #@ cpd
514
- #: counter.php:821
515
- msgid "Other"
516
- msgstr "Andre"
517
-
518
- #@ default
519
- #: counter.php:976
520
- msgid "Edit Post"
521
- msgstr "Rediger innlegg"
522
-
523
- #@ default
524
- #: counter.php:991
525
- #: massbots.php:52
526
- #: userperspan.php:63
527
- msgid "Front page displays"
528
- msgstr "Visninger av forsiden"
529
-
530
- #@ default
531
- #: counter-core.php:575
532
- #: counter-options.php:341
533
- #: counter-options.php:565
534
- msgid "Settings"
535
- msgstr "Innstillinger"
536
-
537
- # tjekkes
538
- #@ cpd
539
- #: counter-core.php:639
540
- #: counter-options.php:392
541
- #: counter.php:159
542
- #: counter.php:875
543
- msgid "Reads"
544
- msgstr "Visninger"
545
-
546
- #@ cpd
547
- #: counter.php:1196
548
- msgid "This post"
549
- msgstr "Dette innlegget"
550
-
551
- #@ cpd
552
- #: counter.php:262
553
- msgid "Reads per day"
554
- msgstr "Visninger pr dag"
555
-
556
- #@ cpd
557
- #: counter-core.php:725
558
- #: counter.php:1206
559
- msgid "Visitors per month"
560
- msgstr "besøkende pr måned"
561
-
562
- #@ cpd
563
- #: counter-core.php:728
564
- msgid "Latest Counts"
565
- msgstr "Siste treff"
566
-
567
- #@ default
568
- #: counter-core.php:730
569
- msgid "Plugin"
570
- msgstr "Innstikk"
571
-
572
- #@ cpd
573
- #: counter-core.php:738
574
- msgid "Reads per Country"
575
- msgstr "Visninger pr land"
576
-
577
- #@ cpd
578
- #: counter-core.php:739
579
- msgid "Visitors per Country"
580
- msgstr "besøkende pr land"
581
-
582
- #@ cpd
583
- #: counter-core.php:754
584
- #: counter.php:1124
585
- msgid "Statistics"
586
- msgstr "Statistikk"
587
-
588
- #@ cpd
589
- #: counter.php:353
590
- #: counter.php:1041
591
- msgid "Map"
592
- msgstr "Kart"
593
-
594
- #@ default
595
- #: notes.php:77
596
- msgid "Action"
597
- msgstr "Handling"
598
-
599
- #@ cpd
600
- #: notes.php:82
601
- msgid "add"
602
- msgstr "legg til"
603
-
604
- #@ cpd
605
- #: notes.php:98
606
- msgid "save"
607
- msgstr "lagre"
608
-
609
- #@ cpd
610
- #: notes.php:99
611
- msgid "delete"
612
- msgstr "slett"
613
-
614
- #@ cpd
615
- #: notes.php:110
616
- msgid "edit"
617
- msgstr "rediger"
618
-
619
- #@ cpd
620
- #: userperspan.php:38
621
- msgid "Start"
622
- msgstr "Start"
623
-
624
- #@ cpd
625
- #: userperspan.php:40
626
- msgid "End"
627
- msgstr "Slutt"
628
-
629
- #@ cpd
630
- #: userperspan.php:42
631
- msgid "PostID"
632
- msgstr "Innleggs-ID"
633
-
634
- #@ cpd
635
- #: userperspan.php:50
636
- msgid "no data found"
637
- msgstr "ingen data funnet"
638
-
639
- #@ cpd
640
- #: geoip/geoip.php:93
641
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
642
- msgstr "Beklager, nødvendige funksjoner (zlib) er ikke installert eller ikke aktivert i php.ini."
643
-
644
- #@ cpd
645
- #: geoip/geoip.php:117
646
- msgid "New GeoIP database installed."
647
- msgstr "Ny GeoIP-database installert."
648
-
649
- #@ cpd
650
- #: geoip/geoip.php:119
651
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
652
- msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
653
-
654
- #@ cpd
655
- #: counter-options.php:730
656
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
- msgstr "Du kan få land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
658
-
659
- #@ cpd
660
- #: counter-options.php:351
661
- msgid "Counter"
662
- msgstr "Teller"
663
-
664
- #@ cpd
665
- #: counter-options.php:389
666
- msgid "Clients and referrers"
667
- msgstr "Klienter og henvisere"
668
-
669
- #@ cpd
670
- #: counter-options.php:392
671
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
- msgstr "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
673
-
674
- #@ cpd
675
- #: counter-options.php:476
676
- msgid "Local URLs"
677
- msgstr "Lokale URL-er"
678
-
679
- #@ cpd
680
- #: counter-options.php:477
681
- msgid "Show local referrers too."
682
- msgstr "Vis også lokale henvisere."
683
-
684
- #@ default
685
- #: counter-options.php:485
686
- msgid "Posts"
687
- msgstr "Innlegg"
688
-
689
- #@ default
690
- #: counter-options.php:485
691
- msgid "Pages"
692
- msgstr "Sider"
693
-
694
- #@ cpd
695
- #: counter.php:158
696
- #: counter.php:1200
697
- msgid "Reads last week"
698
- msgstr "Visninger siste uke"
699
-
700
- #@ default
701
- #: counter.php:985
702
- msgid "Category"
703
- msgstr "Kategori"
704
-
705
- #@ default
706
- #: counter.php:988
707
- msgid "Tag"
708
- msgstr "Stikkord"
709
-
710
- #@ default
711
- #: counter-core.php:692
712
- msgid "License"
713
- msgstr "Lisens"
714
-
715
- #@ cpd
716
- #: counter-core.php:726
717
- #: counter.php:1201
718
- msgid "Reads per month"
719
- msgstr "Visninger pr måned"
720
-
721
- #@ cpd
722
- #: counter-core.php:734
723
- msgid "Referrer"
724
- msgstr "Henviser"
725
-
726
- #@ default
727
- #: counter.php:1220
728
- msgid "Title"
729
- msgstr "Tittel"
730
-
731
- #@ cpd
732
- #: counter-options.php:468
733
- msgid "Referrers - Entries"
734
- msgstr "Henvisere - Oppføringer"
735
-
736
- #@ cpd
737
- #: counter-options.php:469
738
- msgid "How many referrers do you want to see on dashboard page?"
739
- msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
740
-
741
- #@ cpd
742
- #: counter-options.php:472
743
- msgid "Referrers - Days"
744
- msgstr "Henvisere - Dager"
745
-
746
- #@ cpd
747
- #: counter.php:845
748
- #, php-format
749
- msgid "The %s referrers in last %s days:"
750
- msgstr "De %s henviserne de siste %s dager:"
751
-
752
- #@ cpd
753
- #: counter-core.php:724
754
- msgid "Visitors online"
755
- msgstr "Gjester online"
756
-
757
- #@ cpd
758
- #: counter-core.php:186
759
- #, php-format
760
- msgid "\"Count per Day\" updated to version %s."
761
- msgstr "\"Count per Day\" oppdatert til versjon %s."
762
-
763
- #@ cpd
764
- #: counter-core.php:917
765
- msgid "Backup failed! Cannot open file"
766
- msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
767
-
768
- #@ cpd
769
- #: counter-core.php:940
770
- #, php-format
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr "Sikkerhetskopiering av %s oppføringer i gang. Hvert punkt oppfyller %s oppføringer."
773
-
774
- #@ cpd
775
- #: counter-core.php:1027
776
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
- msgstr "Din wp-content katalog er ikke skrivbar. Men du kan kopiere innholdet i denne boksen til en ren tekstfil."
778
-
779
- #@ cpd
780
- #: counter-core.php:1033
781
- #, php-format
782
- msgid "Backup of counter table saved in %s."
783
- msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
784
-
785
- #@ cpd
786
- #: counter-core.php:1035
787
- #, php-format
788
- msgid "Backup of counter options and collection saved in %s."
789
- msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
790
-
791
- #@ cpd
792
- #: counter-options.php:170
793
- msgid "Collection in progress..."
794
- msgstr "Innsamling pågår ..:"
795
-
796
- #@ cpd
797
- #: counter-options.php:240
798
- msgid "Get Visitors per Post..."
799
- msgstr "Hent besøkende per innlegg ..."
800
-
801
- #@ cpd
802
- #: counter-options.php:261
803
- msgid "Delete old data..."
804
- msgstr "Slett gammel data..."
805
-
806
- #@ cpd
807
- #: counter-options.php:285
808
- #, php-format
809
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
- msgstr "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s &gt; størrelse etter = %s)."
811
-
812
- #@ cpd
813
- #: counter-options.php:294
814
- msgid "Installation of \"Count per Day\" checked"
815
- msgstr "Installasjon av \"Count per day\" sjekket"
816
-
817
- #@ default
818
- #: counter-options.php:342
819
- #: counter-options.php:566
820
- msgid "Tools"
821
- msgstr "Verktøy"
822
-
823
- #@ cpd
824
- #: counter-options.php:394
825
- msgid "Save URL only, no query string."
826
- msgstr "Lagre kun URL, ingen søkestreng."
827
-
828
- #@ cpd
829
- #: counter-options.php:419
830
- msgid "Who can see it"
831
- msgstr "Hvem kan se det"
832
-
833
- #@ cpd
834
- #: counter-options.php:428
835
- msgid "custom"
836
- msgstr "tilpasset"
837
-
838
- #@ cpd
839
- #: counter-options.php:430
840
- msgid "and higher are allowed to see the statistics page."
841
- msgstr "og høyere får lov til å se statistikk side."
842
-
843
- #@ cpd
844
- #: counter-options.php:432
845
- #, php-format
846
- msgid "Set the %s capability %s a user need:"
847
- msgstr "Sett %s evne %s en bruker trenger:"
848
-
849
- #@ cpd
850
- #: counter-options.php:522
851
- msgid "Stylesheet"
852
- msgstr "Stilark"
853
-
854
- #@ cpd
855
- #: counter-options.php:525
856
- msgid "NO Stylesheet in Frontend"
857
- msgstr "INGEN stilark i Frontend"
858
-
859
- #@ cpd
860
- #: counter-options.php:526
861
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
- msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
863
-
864
- #@ cpd
865
- #: counter-options.php:534
866
- #: counter-options.php:639
867
- msgid "Backup"
868
- msgstr "Sikkerhetskopi"
869
-
870
- #@ cpd
871
- #: counter-options.php:537
872
- msgid "Entries per pass"
873
- msgstr "Oppføringer per hendelse"
874
-
875
- #@ cpd
876
- #: counter-options.php:540
877
- msgid "How many entries should be saved per pass? Default: 10000"
878
- msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
879
-
880
- #@ cpd
881
- #: counter-options.php:545
882
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
- msgstr "Hvis ditt PHP minne grense er mindre enn 50 MB, og du får en hvit side eller feilmeldinger prøv en mindre verdi."
884
-
885
- #@ cpd
886
- #: counter-options.php:643
887
- #, php-format
888
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
- msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
890
-
891
- #@ cpd
892
- #: counter-options.php:647
893
- msgid "Backup the database"
894
- msgstr "Sikkerhetskopier databasen"
895
-
896
- #@ cpd
897
- #: counter-options.php:674
898
- #: counter-options.php:706
899
- msgid "Collect old data"
900
- msgstr "Samle inn gamle data"
901
-
902
- #@ cpd
903
- #: counter-options.php:679
904
- #, php-format
905
- msgid "Current size of your counter table %s is %s."
906
- msgstr "Nåværende størrelse på teller tabellen %s er %s."
907
-
908
- #@ cpd
909
- #: counter-options.php:681
910
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
- msgstr "Du kan samle gamle data og rydde opp teller tabellen. <br/> Leser og besøkende vil bli lagret per måned, per land og per post. <br/> Kunder og henvisere slettes."
912
-
913
- #@ cpd
914
- #: counter-options.php:686
915
- #, php-format
916
- msgid "Currently your collection contains data until %s."
917
- msgstr "Foreløpig din innsamling inneholder data inntil %s."
918
-
919
- #@ cpd
920
- #: counter-options.php:690
921
- msgid "Normally new data will be added to the collection."
922
- msgstr "Normalt vil nye data bli lagt til i samlingen."
923
-
924
- #@ cpd
925
- #: counter-options.php:696
926
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
- msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
928
-
929
- #@ cpd
930
- #: counter-options.php:697
931
- #, php-format
932
- msgid "All collected data until %s will deleted."
933
- msgstr "Alle innsamlede data inntil %s slettes."
934
-
935
- #@ cpd
936
- #: counter-options.php:702
937
- #, php-format
938
- msgid "Keep entries of last %s full months + current month in counter table."
939
- msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
940
-
941
- #@ cpd
942
- #: counter-options.php:761
943
- msgid "ReActivation"
944
- msgstr "ReAktivering"
945
-
946
- #@ cpd
947
- #: counter-options.php:764
948
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
- msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
950
-
951
- #@ cpd
952
- #: counter-options.php:769
953
- msgid "ReActivate the plugin"
954
- msgstr "ReAktiver innstikket"
955
-
956
- #@ cpd
957
- #: counter.php:165
958
- #: counter.php:899
959
- msgid "Visitors"
960
- msgstr "Besøkende"
961
-
962
- #@ cpd
963
- #: counter.php:168
964
- #: counter.php:169
965
- msgid "Most visited day"
966
- msgstr "Mest besøkt dag"
967
-
968
- #@ cpd
969
- #: counter.php:1239
970
- msgid "drag and drop to sort"
971
- msgstr "dra og slipp for å sortere"
972
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-10 20:10+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Stein Ivar Johnsen <sijo@dyg.no>\n"
8
+ "Language-Team: Punktlig IKT <oversetter@punktlig-ikt.no>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Norwegian bokmal\n"
14
+ "X-Poedit-Country: Norway\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: f:/wordpress/plugins/count-per-day\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Innstillingene er oppdatert"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:60
28
+ #, php-format
29
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
30
+ msgstr "Land oppdatert. <strong>%s</strong> poster i %s har stadig ingen angivelse av land."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:65
34
+ msgid "update next"
35
+ msgstr "oppdater neste"
36
+
37
+ #@ cpd
38
+ #: counter-options.php:102
39
+ #, php-format
40
+ msgid "Mass Bots cleaned. %s counts deleted."
41
+ msgstr "Massebotter renset. %s rader slettet."
42
+
43
+ #@ cpd
44
+ #: counter-options.php:112
45
+ #, php-format
46
+ msgid "Database cleaned. %s rows deleted."
47
+ msgstr "Databasen renset. %s rader slettet."
48
+
49
+ #@ cpd
50
+ #: counter-options.php:122
51
+ msgid "Counter reseted."
52
+ msgstr "Teller nullstilt."
53
+
54
+ #@ cpd
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
+ msgid "UNINSTALL Count per Day"
58
+ msgstr "AVINSTALLER Count per Day"
59
+
60
+ #@ cpd
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
+ #, php-format
65
+ msgid "Table %s deleted"
66
+ msgstr "Tabellen %s ble slettet"
67
+
68
+ #@ cpd
69
+ #: counter-options.php:135
70
+ msgid "Options deleted"
71
+ msgstr "Innstillinger slettet"
72
+
73
+ #@ cpd
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
+ msgid "Uninstall"
77
+ msgstr "Avinstaller"
78
+
79
+ #@ cpd
80
+ #: counter-options.php:317
81
+ msgid "Click here"
82
+ msgstr "Klikk her"
83
+
84
+ #@ cpd
85
+ #: counter-options.php:317
86
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
87
+ msgstr "for å fullføre avinstalleringen og deaktivere \"Count per Day\"."
88
+
89
+ #@ cpd
90
+ #: counter-options.php:355
91
+ msgid "Online time"
92
+ msgstr "Tid online"
93
+
94
+ #@ cpd
95
+ #: counter-options.php:356
96
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
97
+ msgstr "Sekunder for online-teller. Brukes om \"Besøkende online\" i kontrollpanelet."
98
+
99
+ #@ cpd
100
+ #: counter-options.php:359
101
+ msgid "Logged on Users"
102
+ msgstr "Innloggede brukere"
103
+
104
+ #@ cpd
105
+ #: counter-options.php:361
106
+ msgid "count too"
107
+ msgstr "tell også"
108
+
109
+ #@ cpd
110
+ #: counter-options.php:362
111
+ msgid "until User Level"
112
+ msgstr "til og med brukernivå"
113
+
114
+ #@ cpd
115
+ #: counter-options.php:373
116
+ msgid "Auto counter"
117
+ msgstr "Auto-teller"
118
+
119
+ #@ cpd
120
+ #: counter-options.php:374
121
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
122
+ msgstr "Teller automatisk enkelt-innlegg og -sider; ingen endringer i maler er nødvendig."
123
+
124
+ #@ cpd
125
+ #: counter-options.php:377
126
+ msgid "Bots to ignore"
127
+ msgstr "Ignorer følgende botter"
128
+
129
+ #@ cpd
130
+ #: counter-options.php:381
131
+ msgid "Anonymous IP"
132
+ msgstr "Anonym IP"
133
+
134
+ #@ cpd
135
+ #: counter-options.php:385
136
+ msgid "Cache"
137
+ msgstr "Buffer"
138
+
139
+ #@ cpd
140
+ #: counter-options.php:386
141
+ msgid "I use a cache plugin. Count these visits with ajax."
142
+ msgstr "Jeg bruker et buffer-innstikk. Tell disse besøkene med Ajax."
143
+
144
+ #@ cpd
145
+ #: counter-options.php:561
146
+ msgid "Update options"
147
+ msgstr "Oppdater innstillinger"
148
+
149
+ #@ default
150
+ #: counter-options.php:403
151
+ msgid "Dashboard"
152
+ msgstr "Kontrollpanel"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:727
156
+ #: counter-options.php:438
157
+ msgid "Visitors per post"
158
+ msgstr "Besøkende pr innlegg"
159
+
160
+ #@ cpd
161
+ #: counter-options.php:439
162
+ #: counter-options.php:443
163
+ msgid "How many posts do you want to see on dashboard page?"
164
+ msgstr "Hvor mange innlegg vil du se på kontrollpanelet?"
165
+
166
+ #@ cpd
167
+ #: counter-options.php:442
168
+ msgid "Latest Counts - Posts"
169
+ msgstr "Sist leste - innlegg"
170
+
171
+ #@ cpd
172
+ #: counter-options.php:446
173
+ msgid "Latest Counts - Days"
174
+ msgstr "Sist leste - dager"
175
+
176
+ #@ cpd
177
+ #: counter-options.php:447
178
+ #: counter-options.php:451
179
+ #: counter-options.php:473
180
+ msgid "How many days do you want look back?"
181
+ msgstr "Hvor mange dager vil du se tilbake?"
182
+
183
+ #@ cpd
184
+ #: counter-options.php:450
185
+ msgid "Chart - Days"
186
+ msgstr "Diagram - dager"
187
+
188
+ #@ cpd
189
+ #: counter-options.php:454
190
+ msgid "Chart - Height"
191
+ msgstr "Diagram - høyde"
192
+
193
+ #@ cpd
194
+ #: counter-options.php:455
195
+ msgid "Height of the biggest bar"
196
+ msgstr "Høyde på den største søylen"
197
+
198
+ #@ cpd
199
+ #: counter-options.php:459
200
+ msgid "Countries"
201
+ msgstr "Land"
202
+
203
+ #@ cpd
204
+ #: counter-options.php:460
205
+ msgid "How many countries do you want to see on dashboard page?"
206
+ msgstr "Hvor mange land vil du se på innstikkets side i kontrollpanelet?"
207
+
208
+ #@ cpd
209
+ #: counter-core.php:733
210
+ #: counter-options.php:464
211
+ msgid "Browsers"
212
+ msgstr "Nettlesere"
213
+
214
+ #@ cpd
215
+ #: counter-options.php:465
216
+ msgid "Substring of the user agent, separated by comma"
217
+ msgstr "Delstrenger som identifiserer en nettleser, kommaseparert"
218
+
219
+ #@ cpd
220
+ #: counter-options.php:488
221
+ msgid "Show in lists"
222
+ msgstr "Vis som liste"
223
+
224
+ #@ cpd
225
+ #: counter-options.php:489
226
+ msgid "Show \"Reads per Post\" in a new column in post management views."
227
+ msgstr "Vis \"Lest pr innlegg\" i en ny kolonne siden for innleggsadministrasjon."
228
+
229
+ #@ cpd
230
+ #: counter-options.php:497
231
+ msgid "Start Values"
232
+ msgstr "Startverdier"
233
+
234
+ #@ cpd
235
+ #: counter-options.php:501
236
+ msgid "Here you can change the date of first count and add a start count."
237
+ msgstr "Her kan du endre datoen på første treff og tilføye et tall som telleren skal starte på."
238
+
239
+ #@ cpd
240
+ #: counter-options.php:505
241
+ msgid "Start date"
242
+ msgstr "Startdato"
243
+
244
+ #@ cpd
245
+ #: counter-options.php:506
246
+ msgid "Your old Counter starts at?"
247
+ msgstr "Din gamle teller starter når?"
248
+
249
+ #@ cpd
250
+ #: counter-options.php:509
251
+ #: counter-options.php:513
252
+ msgid "Start count"
253
+ msgstr "Start på antall treff"
254
+
255
+ #@ cpd
256
+ #: counter-options.php:510
257
+ msgid "Add this value to \"Total visitors\"."
258
+ msgstr "Tilføy denne verdien til \"Besøkende i alt\"."
259
+
260
+ #@ cpd
261
+ #: counter-options.php:514
262
+ msgid "Add this value to \"Total reads\"."
263
+ msgstr "Tilføy denne verdi til \"Lest i alt\"."
264
+
265
+ #@ cpd
266
+ #: counter-options.php:554
267
+ msgid "Debug mode"
268
+ msgstr "Feilsøkingsmodus"
269
+
270
+ #@ cpd
271
+ #: counter-options.php:556
272
+ msgid "Show debug informations at the bottom of all pages."
273
+ msgstr "Vis feilsøkingsinformasjon nederst på alle sider."
274
+
275
+ #@ cpd
276
+ #: counter-options.php:727
277
+ msgid "GeoIP - Countries"
278
+ msgstr "GeoIP - Land"
279
+
280
+ #@ cpd
281
+ #: counter-options.php:736
282
+ msgid "Update old counter data"
283
+ msgstr "Oppdater gamle tellerdata"
284
+
285
+ #@ cpd
286
+ #: counter-options.php:748
287
+ msgid "Update GeoIP database"
288
+ msgstr "Oppdater GeoIP-database"
289
+
290
+ #@ cpd
291
+ #: counter-options.php:743
292
+ msgid "Download a new version of GeoIP.dat file."
293
+ msgstr "Last ned en ny versjon av GeoIP.dat-filen."
294
+
295
+ #@ cpd
296
+ #: counter-options.php:753
297
+ msgid "More informations about GeoIP"
298
+ msgstr "Flere opplysninger om GeoIP"
299
+
300
+ #@ cpd
301
+ #: counter-options.php:580
302
+ #: massbots.php:35
303
+ msgid "Mass Bots"
304
+ msgstr "Massebotter"
305
+
306
+ #@ cpd
307
+ #: counter-options.php:584
308
+ #, php-format
309
+ msgid "Show all IPs with more than %s page views per day"
310
+ msgstr "Vis alle IP-adresser med mer enn %s sidevisninger pr dag"
311
+
312
+ #@ cpd
313
+ #: counter-options.php:585
314
+ #: notes.php:71
315
+ #: userperspan.php:44
316
+ msgid "show"
317
+ msgstr "vis"
318
+
319
+ #@ cpd
320
+ #: counter-options.php:593
321
+ msgid "IP"
322
+ msgstr "IP"
323
+
324
+ #@ cpd
325
+ #@ default
326
+ #: counter-options.php:594
327
+ #: notes.php:75
328
+ msgid "Date"
329
+ msgstr "Dato"
330
+
331
+ #@ cpd
332
+ #: counter-options.php:595
333
+ msgid "Client"
334
+ msgstr "Klient"
335
+
336
+ #@ cpd
337
+ #: counter-options.php:596
338
+ msgid "Views"
339
+ msgstr "Visninger"
340
+
341
+ #@ cpd
342
+ #: counter-options.php:611
343
+ #: counter-options.php:627
344
+ #, php-format
345
+ msgid "Delete these %s counts"
346
+ msgstr "Slett disse %s treffene"
347
+
348
+ #@ cpd
349
+ #: counter-options.php:656
350
+ #: counter-options.php:665
351
+ msgid "Clean the database"
352
+ msgstr "Rens databasen"
353
+
354
+ #@ cpd
355
+ #: counter-options.php:659
356
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
357
+ msgstr "Du kan rense tellertabellen for \"spam-data\".<br />Når du tilføyer nye botter ovenfor, forblir de gamle \"spam-data\" i databasen.<br />Her kan du kjøre bot-filteret igjen og slette bot-besøkene."
358
+
359
+ #@ cpd
360
+ #: counter-options.php:777
361
+ #: counter-options.php:787
362
+ msgid "Reset the counter"
363
+ msgstr "Nullstill telleren"
364
+
365
+ #@ cpd
366
+ #: counter-options.php:780
367
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
368
+ msgstr "Du kan nullstille telleren ved å tømme tabellen. Alt blir nullstilt.<br />Ta sikkerhetskopi hvis du har bruk for nåværende data."
369
+
370
+ #@ cpd
371
+ #: counter-options.php:799
372
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
373
+ msgstr "Hvis \"Count per Day\" bare deaktiveres, blir tabellene i databasen bevart."
374
+
375
+ #@ cpd
376
+ #: counter-options.php:800
377
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
378
+ msgstr "Her kan du slette tabellene og deaktivere \"Count per Day\"."
379
+
380
+ #@ cpd
381
+ #: counter-options.php:803
382
+ msgid "WARNING"
383
+ msgstr "ADVARSEL"
384
+
385
+ #@ cpd
386
+ #: counter-options.php:804
387
+ msgid "These tables (with ALL counter data) will be deleted."
388
+ msgstr "Disse tabellene (med ALLE teller-data) vil bli slettet."
389
+
390
+ #@ cpd
391
+ #: counter-options.php:806
392
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
393
+ msgstr "Hvis \"Count per Day\" re-installeres, vil telleren starte på 0."
394
+
395
+ #@ cpd
396
+ #: counter-options.php:786
397
+ #: counter-options.php:809
398
+ msgid "Yes"
399
+ msgstr "Ja"
400
+
401
+ #@ cpd
402
+ #: counter-options.php:810
403
+ msgid "You are sure to disable Count per Day and delete all data?"
404
+ msgstr "Er du sikker på at du vil deaktivere \"Count per Day\" og slette alle data?"
405
+
406
+ #@ cpd
407
+ #: counter-options.php:714
408
+ msgid "Support"
409
+ msgstr "Støtte"
410
+
411
+ #@ cpd
412
+ #: counter-core.php:689
413
+ #, php-format
414
+ msgid "Time for Count per Day: <code>%s</code>."
415
+ msgstr "Tidspunkt for Count per Day: <code>%s</code>."
416
+
417
+ #@ cpd
418
+ #: counter-core.php:690
419
+ msgid "Bug? Problem? Question? Hint? Praise?"
420
+ msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
421
+
422
+ #@ cpd
423
+ #: counter-core.php:691
424
+ #, php-format
425
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
426
+ msgstr "Skriv en kommentar på <a href=\"%s\">innstikksiden</a>."
427
+
428
+ #@ cpd
429
+ #: counter.php:155
430
+ #: counter.php:1197
431
+ msgid "Total reads"
432
+ msgstr "Visninger i alt"
433
+
434
+ #@ cpd
435
+ #: counter.php:156
436
+ #: counter.php:1198
437
+ msgid "Reads today"
438
+ msgstr "Visninger i dag"
439
+
440
+ #@ cpd
441
+ #: counter.php:157
442
+ #: counter.php:1199
443
+ msgid "Reads yesterday"
444
+ msgstr "Visninger i går"
445
+
446
+ #@ cpd
447
+ #: counter-core.php:723
448
+ #: counter.php:160
449
+ #: counter.php:1010
450
+ #: counter.php:1202
451
+ msgid "Total visitors"
452
+ msgstr "Antall besøkende i alt"
453
+
454
+ #@ cpd
455
+ #: counter.php:161
456
+ #: counter.php:1208
457
+ msgid "Visitors currently online"
458
+ msgstr "besøkende online akkurat nå"
459
+
460
+ #@ cpd
461
+ #: counter.php:162
462
+ #: counter.php:1203
463
+ msgid "Visitors today"
464
+ msgstr "besøkende i dag"
465
+
466
+ #@ cpd
467
+ #: counter.php:163
468
+ #: counter.php:1204
469
+ msgid "Visitors yesterday"
470
+ msgstr "besøkende i går"
471
+
472
+ #@ cpd
473
+ #: counter.php:164
474
+ #: counter.php:1205
475
+ msgid "Visitors last week"
476
+ msgstr "besøkende siste uke"
477
+
478
+ #@ cpd
479
+ #: counter-core.php:729
480
+ #: counter.php:166
481
+ #: counter.php:263
482
+ #: counter.php:1012
483
+ #: counter.php:1207
484
+ #: userperspan.php:34
485
+ msgid "Visitors per day"
486
+ msgstr "besøkende pr dag"
487
+
488
+ #@ cpd
489
+ #: counter.php:167
490
+ #: counter.php:825
491
+ #: counter.php:1209
492
+ msgid "Counter starts on"
493
+ msgstr "Teller starter på"
494
+
495
+ #@ cpd
496
+ #: counter.php:788
497
+ #: notes.php:42
498
+ #: notes.php:76
499
+ msgid "Notes"
500
+ msgstr "Merknader"
501
+
502
+ #@ cpd
503
+ #: counter.php:672
504
+ #, php-format
505
+ msgid "The %s most visited posts in last %s days:"
506
+ msgstr "De %s mest viste innleggene de siste %s dagene:"
507
+
508
+ #@ default
509
+ #: counter.php:786
510
+ msgid "Show"
511
+ msgstr "Vis"
512
+
513
+ #@ cpd
514
+ #: counter.php:821
515
+ msgid "Other"
516
+ msgstr "Andre"
517
+
518
+ #@ default
519
+ #: counter.php:976
520
+ msgid "Edit Post"
521
+ msgstr "Rediger innlegg"
522
+
523
+ #@ default
524
+ #: counter.php:991
525
+ #: massbots.php:52
526
+ #: userperspan.php:63
527
+ msgid "Front page displays"
528
+ msgstr "Visninger av forsiden"
529
+
530
+ #@ default
531
+ #: counter-core.php:575
532
+ #: counter-options.php:341
533
+ #: counter-options.php:565
534
+ msgid "Settings"
535
+ msgstr "Innstillinger"
536
+
537
+ # tjekkes
538
+ #@ cpd
539
+ #: counter-core.php:639
540
+ #: counter-options.php:392
541
+ #: counter.php:159
542
+ #: counter.php:875
543
+ msgid "Reads"
544
+ msgstr "Visninger"
545
+
546
+ #@ cpd
547
+ #: counter.php:1196
548
+ msgid "This post"
549
+ msgstr "Dette innlegget"
550
+
551
+ #@ cpd
552
+ #: counter.php:262
553
+ msgid "Reads per day"
554
+ msgstr "Visninger pr dag"
555
+
556
+ #@ cpd
557
+ #: counter-core.php:725
558
+ #: counter.php:1206
559
+ msgid "Visitors per month"
560
+ msgstr "besøkende pr måned"
561
+
562
+ #@ cpd
563
+ #: counter-core.php:728
564
+ msgid "Latest Counts"
565
+ msgstr "Siste treff"
566
+
567
+ #@ default
568
+ #: counter-core.php:730
569
+ msgid "Plugin"
570
+ msgstr "Innstikk"
571
+
572
+ #@ cpd
573
+ #: counter-core.php:738
574
+ msgid "Reads per Country"
575
+ msgstr "Visninger pr land"
576
+
577
+ #@ cpd
578
+ #: counter-core.php:739
579
+ msgid "Visitors per Country"
580
+ msgstr "besøkende pr land"
581
+
582
+ #@ cpd
583
+ #: counter-core.php:754
584
+ #: counter.php:1124
585
+ msgid "Statistics"
586
+ msgstr "Statistikk"
587
+
588
+ #@ cpd
589
+ #: counter.php:353
590
+ #: counter.php:1041
591
+ msgid "Map"
592
+ msgstr "Kart"
593
+
594
+ #@ default
595
+ #: notes.php:77
596
+ msgid "Action"
597
+ msgstr "Handling"
598
+
599
+ #@ cpd
600
+ #: notes.php:82
601
+ msgid "add"
602
+ msgstr "legg til"
603
+
604
+ #@ cpd
605
+ #: notes.php:98
606
+ msgid "save"
607
+ msgstr "lagre"
608
+
609
+ #@ cpd
610
+ #: notes.php:99
611
+ msgid "delete"
612
+ msgstr "slett"
613
+
614
+ #@ cpd
615
+ #: notes.php:110
616
+ msgid "edit"
617
+ msgstr "rediger"
618
+
619
+ #@ cpd
620
+ #: userperspan.php:38
621
+ msgid "Start"
622
+ msgstr "Start"
623
+
624
+ #@ cpd
625
+ #: userperspan.php:40
626
+ msgid "End"
627
+ msgstr "Slutt"
628
+
629
+ #@ cpd
630
+ #: userperspan.php:42
631
+ msgid "PostID"
632
+ msgstr "Innleggs-ID"
633
+
634
+ #@ cpd
635
+ #: userperspan.php:50
636
+ msgid "no data found"
637
+ msgstr "ingen data funnet"
638
+
639
+ #@ cpd
640
+ #: geoip/geoip.php:93
641
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
642
+ msgstr "Beklager, nødvendige funksjoner (zlib) er ikke installert eller ikke aktivert i php.ini."
643
+
644
+ #@ cpd
645
+ #: geoip/geoip.php:117
646
+ msgid "New GeoIP database installed."
647
+ msgstr "Ny GeoIP-database installert."
648
+
649
+ #@ cpd
650
+ #: geoip/geoip.php:119
651
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
652
+ msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
653
+
654
+ #@ cpd
655
+ #: counter-options.php:730
656
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
+ msgstr "Du kan få land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
658
+
659
+ #@ cpd
660
+ #: counter-options.php:351
661
+ msgid "Counter"
662
+ msgstr "Teller"
663
+
664
+ #@ cpd
665
+ #: counter-options.php:389
666
+ msgid "Clients and referrers"
667
+ msgstr "Klienter og henvisere"
668
+
669
+ #@ cpd
670
+ #: counter-options.php:392
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
673
+
674
+ #@ cpd
675
+ #: counter-options.php:476
676
+ msgid "Local URLs"
677
+ msgstr "Lokale URL-er"
678
+
679
+ #@ cpd
680
+ #: counter-options.php:477
681
+ msgid "Show local referrers too."
682
+ msgstr "Vis også lokale henvisere."
683
+
684
+ #@ default
685
+ #: counter-options.php:485
686
+ msgid "Posts"
687
+ msgstr "Innlegg"
688
+
689
+ #@ default
690
+ #: counter-options.php:485
691
+ msgid "Pages"
692
+ msgstr "Sider"
693
+
694
+ #@ cpd
695
+ #: counter.php:158
696
+ #: counter.php:1200
697
+ msgid "Reads last week"
698
+ msgstr "Visninger siste uke"
699
+
700
+ #@ default
701
+ #: counter.php:985
702
+ msgid "Category"
703
+ msgstr "Kategori"
704
+
705
+ #@ default
706
+ #: counter.php:988
707
+ msgid "Tag"
708
+ msgstr "Stikkord"
709
+
710
+ #@ default
711
+ #: counter-core.php:692
712
+ msgid "License"
713
+ msgstr "Lisens"
714
+
715
+ #@ cpd
716
+ #: counter-core.php:726
717
+ #: counter.php:1201
718
+ msgid "Reads per month"
719
+ msgstr "Visninger pr måned"
720
+
721
+ #@ cpd
722
+ #: counter-core.php:734
723
+ msgid "Referrer"
724
+ msgstr "Henviser"
725
+
726
+ #@ default
727
+ #: counter.php:1220
728
+ msgid "Title"
729
+ msgstr "Tittel"
730
+
731
+ #@ cpd
732
+ #: counter-options.php:468
733
+ msgid "Referrers - Entries"
734
+ msgstr "Henvisere - Oppføringer"
735
+
736
+ #@ cpd
737
+ #: counter-options.php:469
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
+ msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
740
+
741
+ #@ cpd
742
+ #: counter-options.php:472
743
+ msgid "Referrers - Days"
744
+ msgstr "Henvisere - Dager"
745
+
746
+ #@ cpd
747
+ #: counter.php:845
748
+ #, php-format
749
+ msgid "The %s referrers in last %s days:"
750
+ msgstr "De %s henviserne de siste %s dager:"
751
+
752
+ #@ cpd
753
+ #: counter-core.php:724
754
+ msgid "Visitors online"
755
+ msgstr "Gjester online"
756
+
757
+ #@ cpd
758
+ #: counter-core.php:186
759
+ #, php-format
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr "\"Count per Day\" oppdatert til versjon %s."
762
+
763
+ #@ cpd
764
+ #: counter-core.php:917
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
767
+
768
+ #@ cpd
769
+ #: counter-core.php:940
770
+ #, php-format
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr "Sikkerhetskopiering av %s oppføringer i gang. Hvert punkt oppfyller %s oppføringer."
773
+
774
+ #@ cpd
775
+ #: counter-core.php:1027
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr "Din wp-content katalog er ikke skrivbar. Men du kan kopiere innholdet i denne boksen til en ren tekstfil."
778
+
779
+ #@ cpd
780
+ #: counter-core.php:1033
781
+ #, php-format
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
784
+
785
+ #@ cpd
786
+ #: counter-core.php:1035
787
+ #, php-format
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
790
+
791
+ #@ cpd
792
+ #: counter-options.php:170
793
+ msgid "Collection in progress..."
794
+ msgstr "Innsamling pågår ..:"
795
+
796
+ #@ cpd
797
+ #: counter-options.php:240
798
+ msgid "Get Visitors per Post..."
799
+ msgstr "Hent besøkende per innlegg ..."
800
+
801
+ #@ cpd
802
+ #: counter-options.php:261
803
+ msgid "Delete old data..."
804
+ msgstr "Slett gammel data..."
805
+
806
+ #@ cpd
807
+ #: counter-options.php:285
808
+ #, php-format
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s &gt; størrelse etter = %s)."
811
+
812
+ #@ cpd
813
+ #: counter-options.php:294
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr "Installasjon av \"Count per day\" sjekket"
816
+
817
+ #@ default
818
+ #: counter-options.php:342
819
+ #: counter-options.php:566
820
+ msgid "Tools"
821
+ msgstr "Verktøy"
822
+
823
+ #@ cpd
824
+ #: counter-options.php:394
825
+ msgid "Save URL only, no query string."
826
+ msgstr "Lagre kun URL, ingen søkestreng."
827
+
828
+ #@ cpd
829
+ #: counter-options.php:419
830
+ msgid "Who can see it"
831
+ msgstr "Hvem kan se det"
832
+
833
+ #@ cpd
834
+ #: counter-options.php:428
835
+ msgid "custom"
836
+ msgstr "tilpasset"
837
+
838
+ #@ cpd
839
+ #: counter-options.php:430
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr "og høyere får lov til å se statistikk side."
842
+
843
+ #@ cpd
844
+ #: counter-options.php:432
845
+ #, php-format
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr "Sett %s evne %s en bruker trenger:"
848
+
849
+ #@ cpd
850
+ #: counter-options.php:522
851
+ msgid "Stylesheet"
852
+ msgstr "Stilark"
853
+
854
+ #@ cpd
855
+ #: counter-options.php:525
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr "INGEN stilark i Frontend"
858
+
859
+ #@ cpd
860
+ #: counter-options.php:526
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
863
+
864
+ #@ cpd
865
+ #: counter-options.php:534
866
+ #: counter-options.php:639
867
+ msgid "Backup"
868
+ msgstr "Sikkerhetskopi"
869
+
870
+ #@ cpd
871
+ #: counter-options.php:537
872
+ msgid "Entries per pass"
873
+ msgstr "Oppføringer per hendelse"
874
+
875
+ #@ cpd
876
+ #: counter-options.php:540
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
879
+
880
+ #@ cpd
881
+ #: counter-options.php:545
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr "Hvis ditt PHP minne grense er mindre enn 50 MB, og du får en hvit side eller feilmeldinger prøv en mindre verdi."
884
+
885
+ #@ cpd
886
+ #: counter-options.php:643
887
+ #, php-format
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
890
+
891
+ #@ cpd
892
+ #: counter-options.php:647
893
+ msgid "Backup the database"
894
+ msgstr "Sikkerhetskopier databasen"
895
+
896
+ #@ cpd
897
+ #: counter-options.php:674
898
+ #: counter-options.php:706
899
+ msgid "Collect old data"
900
+ msgstr "Samle inn gamle data"
901
+
902
+ #@ cpd
903
+ #: counter-options.php:679
904
+ #, php-format
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr "Nåværende størrelse på teller tabellen %s er %s."
907
+
908
+ #@ cpd
909
+ #: counter-options.php:681
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr "Du kan samle gamle data og rydde opp teller tabellen. <br/> Leser og besøkende vil bli lagret per måned, per land og per post. <br/> Kunder og henvisere slettes."
912
+
913
+ #@ cpd
914
+ #: counter-options.php:686
915
+ #, php-format
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr "Foreløpig din innsamling inneholder data inntil %s."
918
+
919
+ #@ cpd
920
+ #: counter-options.php:690
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr "Normalt vil nye data bli lagt til i samlingen."
923
+
924
+ #@ cpd
925
+ #: counter-options.php:696
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
928
+
929
+ #@ cpd
930
+ #: counter-options.php:697
931
+ #, php-format
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr "Alle innsamlede data inntil %s slettes."
934
+
935
+ #@ cpd
936
+ #: counter-options.php:702
937
+ #, php-format
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
940
+
941
+ #@ cpd
942
+ #: counter-options.php:761
943
+ msgid "ReActivation"
944
+ msgstr "ReAktivering"
945
+
946
+ #@ cpd
947
+ #: counter-options.php:764
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
950
+
951
+ #@ cpd
952
+ #: counter-options.php:769
953
+ msgid "ReActivate the plugin"
954
+ msgstr "ReAktiver innstikket"
955
+
956
+ #@ cpd
957
+ #: counter.php:165
958
+ #: counter.php:899
959
+ msgid "Visitors"
960
+ msgstr "Besøkende"
961
+
962
+ #@ cpd
963
+ #: counter.php:168
964
+ #: counter.php:169
965
+ msgid "Most visited day"
966
+ msgstr "Mest besøkt dag"
967
+
968
+ #@ cpd
969
+ #: counter.php:1239
970
+ msgid "drag and drop to sort"
971
+ msgstr "dra og slipp for å sortere"
972
+
locale/cpd-nl_NL.po CHANGED
@@ -1,971 +1,971 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day v3.0\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: translation by WordPressWebshop.com <info@wppg.me>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Dutch\n"
14
- "X-Poedit-Country: NETHERLANDS\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "Instellingen bijgewerkt"
25
-
26
- #@ cpd
27
- #: counter-options.php:112
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Database schoongemaakt. %s rijen verwijderd."
31
-
32
- #@ cpd
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "DEÏNSTALLEREN Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "eTabel %s verwijderd"
45
-
46
- #@ cpd
47
- #: counter-options.php:135
48
- msgid "Options deleted"
49
- msgstr "Opties verwijderd"
50
-
51
- #@ cpd
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- msgid "Uninstall"
55
- msgstr "Deinstallatie"
56
-
57
- #@ cpd
58
- #: counter-options.php:317
59
- msgid "Click here"
60
- msgstr "Klik hier"
61
-
62
- #@ cpd
63
- #: counter-options.php:317
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "om de deinstallatie te beeindigen en \"Count per Day\" te deactiveren."
66
-
67
- #@ cpd
68
- #: counter-options.php:355
69
- msgid "Online time"
70
- msgstr "Tijd online"
71
-
72
- #@ cpd
73
- #: counter-options.php:356
74
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
- msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
76
-
77
- #@ cpd
78
- #: counter-options.php:359
79
- msgid "Logged on Users"
80
- msgstr "Aangemelde Gebruikers"
81
-
82
- #@ cpd
83
- #: counter-options.php:361
84
- msgid "count too"
85
- msgstr "ook tellen"
86
-
87
- #@ cpd
88
- #: counter-options.php:373
89
- msgid "Auto counter"
90
- msgstr "Automatisch tellen"
91
-
92
- #@ cpd
93
- #: counter-options.php:374
94
- msgid "Counts automatically single-posts and pages, no changes on template needed."
95
- msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
96
-
97
- #@ cpd
98
- #: counter-options.php:377
99
- msgid "Bots to ignore"
100
- msgstr "Bots te negeren"
101
-
102
- #@ cpd
103
- #: counter-options.php:561
104
- msgid "Update options"
105
- msgstr "Aktualiseren opties"
106
-
107
- #@ cpd
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- msgid "Clean the database"
111
- msgstr "Database schoonmaken"
112
-
113
- #@ cpd
114
- #: counter-options.php:659
115
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
- msgstr "Je kan de teller tabel schoonmaken door de \"spam data\" te verwijderen.<br />Als je nieuwe bots toevoegt bovenop de oude blijft de \"spam data\" in de database.<br />Hier kun je het bot filter opnieuw starten en bezoeken van bots verwijderen."
117
-
118
- #@ cpd
119
- #: counter-options.php:799
120
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
- msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
122
-
123
- #@ cpd
124
- #: counter-options.php:800
125
- msgid "Here you can delete the tables and disable \"Count per Day\"."
126
- msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
127
-
128
- #@ cpd
129
- #: counter-options.php:803
130
- msgid "WARNING"
131
- msgstr "WAARSCHUWING"
132
-
133
- #@ cpd
134
- #: counter-options.php:804
135
- msgid "These tables (with ALL counter data) will be deleted."
136
- msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
137
-
138
- #@ cpd
139
- #: counter-options.php:806
140
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
- msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
142
-
143
- #@ cpd
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- msgid "Yes"
147
- msgstr "Ja"
148
-
149
- #@ cpd
150
- #: counter-options.php:810
151
- msgid "You are sure to disable Count per Day and delete all data?"
152
- msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
153
-
154
- #@ cpd
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- msgid "Statistics"
158
- msgstr "Statistieken"
159
-
160
- #@ cpd
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- msgid "Total visitors"
166
- msgstr "Totaal aantal bezoekers"
167
-
168
- #@ cpd
169
- #: counter.php:161
170
- #: counter.php:1208
171
- msgid "Visitors currently online"
172
- msgstr "Bezoekers op dit moment online"
173
-
174
- #@ cpd
175
- #: counter.php:162
176
- #: counter.php:1203
177
- msgid "Visitors today"
178
- msgstr "Bezoekers vandaag"
179
-
180
- #@ cpd
181
- #: counter.php:163
182
- #: counter.php:1204
183
- msgid "Visitors yesterday"
184
- msgstr "Bezoekers gisteren"
185
-
186
- #@ cpd
187
- #: counter.php:164
188
- #: counter.php:1205
189
- msgid "Visitors last week"
190
- msgstr "Bezoekers vorige week"
191
-
192
- #@ cpd
193
- #: counter.php:167
194
- #: counter.php:825
195
- #: counter.php:1209
196
- msgid "Counter starts on"
197
- msgstr "Teller start bij"
198
-
199
- #@ cpd
200
- #: counter-core.php:729
201
- #: counter.php:166
202
- #: counter.php:263
203
- #: counter.php:1012
204
- #: counter.php:1207
205
- #: userperspan.php:34
206
- msgid "Visitors per day"
207
- msgstr "Bezoekers per dag"
208
-
209
- #@ cpd
210
- #: counter-core.php:725
211
- #: counter.php:1206
212
- msgid "Visitors per month"
213
- msgstr "Bezoekers per maand"
214
-
215
- #@ cpd
216
- #: counter-core.php:727
217
- #: counter-options.php:438
218
- msgid "Visitors per post"
219
- msgstr "Bezoekers per bericht"
220
-
221
- #@ cpd
222
- #: counter-options.php:122
223
- msgid "Counter reseted."
224
- msgstr "Teller gereset"
225
-
226
- #@ cpd
227
- #: counter-options.php:439
228
- #: counter-options.php:443
229
- msgid "How many posts do you want to see on dashboard page?"
230
- msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
231
-
232
- #@ cpd
233
- #: counter-options.php:442
234
- msgid "Latest Counts - Posts"
235
- msgstr "Laatste Tellingen - Berichten"
236
-
237
- #@ cpd
238
- #: counter-options.php:446
239
- msgid "Latest Counts - Days"
240
- msgstr "Laatste Tellingen - Dagen"
241
-
242
- #@ cpd
243
- #: counter-options.php:447
244
- #: counter-options.php:451
245
- #: counter-options.php:473
246
- msgid "How many days do you want look back?"
247
- msgstr "Hoeveel dagen wil je terugkijken?"
248
-
249
- #@ cpd
250
- #: counter-options.php:488
251
- msgid "Show in lists"
252
- msgstr "Laat in lijsten zien"
253
-
254
- #@ cpd
255
- #: counter-options.php:489
256
- msgid "Show \"Reads per Post\" in a new column in post management views."
257
- msgstr "Toon \"Lezingen per post\" in een nieuwe kolom in bericht impressies management."
258
-
259
- #@ cpd
260
- #: counter-options.php:777
261
- #: counter-options.php:787
262
- msgid "Reset the counter"
263
- msgstr "Reset de teller"
264
-
265
- #@ cpd
266
- #: counter-options.php:780
267
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
- msgstr "Je kan de teller resetten door de tabel leeg te maken. ALLES OP 0!<br/>Maak een backup als je de huidige data nodig hebt!"
269
-
270
- #@ cpd
271
- #: counter.php:672
272
- #, php-format
273
- msgid "The %s most visited posts in last %s days:"
274
- msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
275
-
276
- #@ default
277
- #: counter-core.php:575
278
- #: counter-options.php:341
279
- #: counter-options.php:565
280
- msgid "Settings"
281
- msgstr "Instellingen"
282
-
283
- #@ cpd
284
- #: counter-core.php:639
285
- #: counter-options.php:392
286
- #: counter.php:159
287
- #: counter.php:875
288
- msgid "Reads"
289
- msgstr "Vertoningen"
290
-
291
- #@ cpd
292
- #: counter-core.php:728
293
- msgid "Latest Counts"
294
- msgstr "Laatste Tellingen"
295
-
296
- #@ cpd
297
- #: counter-options.php:450
298
- msgid "Chart - Days"
299
- msgstr "Grafiek - Dagen"
300
-
301
- #@ cpd
302
- #: counter-options.php:454
303
- msgid "Chart - Height"
304
- msgstr "Grafiek - Hoogte"
305
-
306
- #@ cpd
307
- #: counter-options.php:455
308
- msgid "Height of the biggest bar"
309
- msgstr "Hoogte van de grootste staaf"
310
-
311
- #@ cpd
312
- #: counter.php:1196
313
- msgid "This post"
314
- msgstr "Dit bericht"
315
-
316
- #@ default
317
- #: counter-options.php:403
318
- msgid "Dashboard"
319
- msgstr "Dashboard"
320
-
321
- #@ cpd
322
- #: counter.php:262
323
- msgid "Reads per day"
324
- msgstr "Hits per dag"
325
-
326
- #@ cpd
327
- #: counter-options.php:60
328
- #, php-format
329
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
- msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
331
-
332
- #@ cpd
333
- #: counter-options.php:65
334
- msgid "update next"
335
- msgstr "volgende aktualiseren"
336
-
337
- #@ cpd
338
- #: counter-options.php:727
339
- msgid "GeoIP - Countries"
340
- msgstr "GeoIP - Landen"
341
-
342
- #@ cpd
343
- #: counter-options.php:736
344
- msgid "Update old counter data"
345
- msgstr "Aktualiseren data van oude tellingen"
346
-
347
- #@ cpd
348
- #: counter-options.php:748
349
- msgid "Update GeoIP database"
350
- msgstr "Aktualiseren GeoIP databank"
351
-
352
- #@ cpd
353
- #: counter-options.php:743
354
- msgid "Download a new version of GeoIP.dat file."
355
- msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
356
-
357
- #@ cpd
358
- #: counter-options.php:753
359
- msgid "More informations about GeoIP"
360
- msgstr "Meer informatie over GeoIP"
361
-
362
- #@ cpd
363
- #: counter-core.php:738
364
- msgid "Reads per Country"
365
- msgstr "vertoningen per Land"
366
-
367
- #@ cpd
368
- #: geoip/geoip.php:117
369
- msgid "New GeoIP database installed."
370
- msgstr "Nieuwe GeoIP database geïnstalleerd."
371
-
372
- #@ cpd
373
- #: geoip/geoip.php:119
374
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
- msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of de toegangsrechten van de map \"geoip\" op 777 staan."
376
-
377
- #@ cpd
378
- #: geoip/geoip.php:93
379
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
- msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
381
-
382
- #@ cpd
383
- #: counter-options.php:459
384
- msgid "Countries"
385
- msgstr "Landen"
386
-
387
- #@ cpd
388
- #: counter-options.php:460
389
- msgid "How many countries do you want to see on dashboard page?"
390
- msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
391
-
392
- #@ cpd
393
- #: counter-options.php:102
394
- #, php-format
395
- msgid "Mass Bots cleaned. %s counts deleted."
396
- msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
397
-
398
- #@ cpd
399
- #: counter-options.php:580
400
- #: massbots.php:35
401
- msgid "Mass Bots"
402
- msgstr "Massa Bots"
403
-
404
- #@ cpd
405
- #: counter-options.php:584
406
- #, php-format
407
- msgid "Show all IPs with more than %s page views per day"
408
- msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
409
-
410
- #@ cpd
411
- #: counter-options.php:585
412
- #: notes.php:71
413
- #: userperspan.php:44
414
- msgid "show"
415
- msgstr "laat zien"
416
-
417
- #@ cpd
418
- #: counter-options.php:611
419
- #: counter-options.php:627
420
- #, php-format
421
- msgid "Delete these %s counts"
422
- msgstr "Verwijder deze %s tellingen"
423
-
424
- #@ cpd
425
- #: counter.php:821
426
- msgid "Other"
427
- msgstr "Andere"
428
-
429
- #@ default
430
- #: counter.php:991
431
- #: massbots.php:52
432
- #: userperspan.php:63
433
- msgid "Front page displays"
434
- msgstr "Voorpagina weergaves"
435
-
436
- #@ cpd
437
- #: counter-core.php:733
438
- #: counter-options.php:464
439
- msgid "Browsers"
440
- msgstr "Browser"
441
-
442
- #@ cpd
443
- #: counter-options.php:593
444
- msgid "IP"
445
- msgstr "IP"
446
-
447
- #@ cpd
448
- #@ default
449
- #: counter-options.php:594
450
- #: notes.php:75
451
- msgid "Date"
452
- msgstr "Datum"
453
-
454
- #@ cpd
455
- #: counter-options.php:595
456
- msgid "Client"
457
- msgstr "Browser"
458
-
459
- #@ cpd
460
- #: counter-options.php:596
461
- msgid "Views"
462
- msgstr "Hits"
463
-
464
- #@ cpd
465
- #: counter-options.php:497
466
- msgid "Start Values"
467
- msgstr "Beginwaarden"
468
-
469
- #@ cpd
470
- #: counter-options.php:501
471
- msgid "Here you can change the date of first count and add a start count."
472
- msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
473
-
474
- #@ cpd
475
- #: counter-options.php:505
476
- msgid "Start date"
477
- msgstr "Startdatum"
478
-
479
- #@ cpd
480
- #: counter-options.php:506
481
- msgid "Your old Counter starts at?"
482
- msgstr "Je oude teller start op?"
483
-
484
- #@ cpd
485
- #: counter-options.php:509
486
- #: counter-options.php:513
487
- msgid "Start count"
488
- msgstr "Beginwaarde van de telling"
489
-
490
- #@ cpd
491
- #: counter-options.php:510
492
- msgid "Add this value to \"Total visitors\"."
493
- msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
494
-
495
- #@ cpd
496
- #: counter-options.php:714
497
- msgid "Support"
498
- msgstr "Ondersteuning"
499
-
500
- #@ cpd
501
- #: counter-core.php:690
502
- msgid "Bug? Problem? Question? Hint? Praise?"
503
- msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
504
-
505
- #@ cpd
506
- #: counter-core.php:691
507
- #, php-format
508
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
- msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
510
-
511
- #@ default
512
- #: counter.php:786
513
- msgid "Show"
514
- msgstr "Vertonen"
515
-
516
- #@ default
517
- #: counter.php:976
518
- msgid "Edit Post"
519
- msgstr "Bericht Bewerken"
520
-
521
- #@ cpd
522
- #: counter-core.php:689
523
- #, php-format
524
- msgid "Time for Count per Day: <code>%s</code>."
525
- msgstr "Tijd voor Count per Day: <code>%s</code>."
526
-
527
- #@ cpd
528
- #: counter-options.php:362
529
- msgid "until User Level"
530
- msgstr "Tot Gebruikers Niveau"
531
-
532
- #@ default
533
- #: counter-core.php:730
534
- msgid "Plugin"
535
- msgstr "Plugin"
536
-
537
- #@ cpd
538
- #: counter.php:788
539
- #: notes.php:42
540
- #: notes.php:76
541
- msgid "Notes"
542
- msgstr "Opmerkingen"
543
-
544
- #@ default
545
- #: notes.php:77
546
- msgid "Action"
547
- msgstr "Actie"
548
-
549
- #@ cpd
550
- #: notes.php:82
551
- msgid "add"
552
- msgstr "toevoegen"
553
-
554
- #@ cpd
555
- #: notes.php:98
556
- msgid "save"
557
- msgstr "bewaren"
558
-
559
- #@ cpd
560
- #: notes.php:99
561
- msgid "delete"
562
- msgstr "verwijderen"
563
-
564
- #@ cpd
565
- #: notes.php:110
566
- msgid "edit"
567
- msgstr "bewerken"
568
-
569
- #@ cpd
570
- #: counter-options.php:514
571
- msgid "Add this value to \"Total reads\"."
572
- msgstr "Voeg deze waarde toe aan \"Totale vertoningen\"."
573
-
574
- #@ cpd
575
- #: counter.php:155
576
- #: counter.php:1197
577
- msgid "Total reads"
578
- msgstr "Totale vertoningen"
579
-
580
- #@ cpd
581
- #: counter.php:156
582
- #: counter.php:1198
583
- msgid "Reads today"
584
- msgstr "vertoningen vandaag"
585
-
586
- #@ cpd
587
- #: counter.php:157
588
- #: counter.php:1199
589
- msgid "Reads yesterday"
590
- msgstr "vertoningen gisteren"
591
-
592
- #@ cpd
593
- #: counter-options.php:381
594
- msgid "Anonymous IP"
595
- msgstr "Anonieme IP"
596
-
597
- #@ cpd
598
- #: counter-options.php:385
599
- msgid "Cache"
600
- msgstr "Cache"
601
-
602
- #@ cpd
603
- #: counter-options.php:386
604
- msgid "I use a cache plugin. Count these visits with ajax."
605
- msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
606
-
607
- #@ cpd
608
- #: counter-options.php:465
609
- msgid "Substring of the user agent, separated by comma"
610
- msgstr "Substring van de user agent, gescheiden door een comma"
611
-
612
- #@ cpd
613
- #: counter-options.php:554
614
- msgid "Debug mode"
615
- msgstr "Debugmodus"
616
-
617
- #@ cpd
618
- #: counter-options.php:556
619
- msgid "Show debug informations at the bottom of all pages."
620
- msgstr "Geef debug informatie weer op de bodem van elke pagina."
621
-
622
- #@ cpd
623
- #: counter-core.php:739
624
- msgid "Visitors per Country"
625
- msgstr "Bezoekers per Land"
626
-
627
- #@ cpd
628
- #: counter.php:353
629
- #: counter.php:1041
630
- msgid "Map"
631
- msgstr "Kaart"
632
-
633
- #@ cpd
634
- #: userperspan.php:38
635
- msgid "Start"
636
- msgstr "Start"
637
-
638
- #@ cpd
639
- #: userperspan.php:40
640
- msgid "End"
641
- msgstr "Einde"
642
-
643
- #@ cpd
644
- #: userperspan.php:42
645
- msgid "PostID"
646
- msgstr "PostID"
647
-
648
- #@ cpd
649
- #: userperspan.php:50
650
- msgid "no data found"
651
- msgstr "geen data gevonden"
652
-
653
- #@ cpd
654
- #: counter-options.php:730
655
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
- msgstr "Je kunt de land gegevens voor alle items in de database verkrijgen door het IP adres te controleren t.o.v. de GeoIP database. Dit kan even duren!"
657
-
658
- #@ cpd
659
- #: counter-options.php:351
660
- msgid "Counter"
661
- msgstr "Teller"
662
-
663
- #@ cpd
664
- #: counter-options.php:389
665
- msgid "Clients and referrers"
666
- msgstr "Clients en verwijzingen"
667
-
668
- #@ cpd
669
- #: counter-options.php:392
670
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
- msgstr "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
672
-
673
- #@ cpd
674
- #: counter-options.php:476
675
- msgid "Local URLs"
676
- msgstr "Lokale URLs"
677
-
678
- #@ cpd
679
- #: counter-options.php:477
680
- msgid "Show local referrers too."
681
- msgstr "Geef lokale verwijzingen ook weer."
682
-
683
- #@ default
684
- #: counter-options.php:485
685
- msgid "Posts"
686
- msgstr "Berichten"
687
-
688
- #@ default
689
- #: counter-options.php:485
690
- msgid "Pages"
691
- msgstr "Pagina's"
692
-
693
- #@ cpd
694
- #: counter.php:158
695
- #: counter.php:1200
696
- msgid "Reads last week"
697
- msgstr "vertoningen vorige week"
698
-
699
- #@ default
700
- #: counter.php:985
701
- msgid "Category"
702
- msgstr "Categorie"
703
-
704
- #@ default
705
- #: counter.php:988
706
- msgid "Tag"
707
- msgstr "Tag"
708
-
709
- #@ default
710
- #: counter-core.php:692
711
- msgid "License"
712
- msgstr "Licentie"
713
-
714
- #@ cpd
715
- #: counter-core.php:726
716
- #: counter.php:1201
717
- msgid "Reads per month"
718
- msgstr "vertoningen per maand"
719
-
720
- #@ cpd
721
- #: counter-core.php:734
722
- msgid "Referrer"
723
- msgstr "Verwijzing"
724
-
725
- #@ default
726
- #: counter.php:1220
727
- msgid "Title"
728
- msgstr "Titel"
729
-
730
- #@ cpd
731
- #: counter-options.php:468
732
- msgid "Referrers - Entries"
733
- msgstr "Verwijzingen - Entries"
734
-
735
- #@ cpd
736
- #: counter-options.php:469
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
739
-
740
- #@ cpd
741
- #: counter-options.php:472
742
- msgid "Referrers - Days"
743
- msgstr "Verwijzingen - Dagen"
744
-
745
- #@ cpd
746
- #: counter.php:845
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "De %s verwijzingen in de laatste %s dagen:"
750
-
751
- #@ cpd
752
- #: counter-core.php:724
753
- msgid "Visitors online"
754
- msgstr "Bezoekers online"
755
-
756
- #@ cpd
757
- #: counter-core.php:186
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "\"Count per Day\" bijgewerkt naar versie %s."
761
-
762
- #@ cpd
763
- #: counter-core.php:917
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "Backup mislukt! Kan bestand niet openen"
766
-
767
- #@ cpd
768
- #: counter-core.php:940
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "Bezig met backup van %s registraties. Elk punt komt overeen met %s registraties."
772
-
773
- #@ cpd
774
- #: counter-core.php:1027
775
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
- msgstr "Je wp-content folder is niet beschrijfbaar. Je kan de content van dit venster kopiëren naar een tekst bestand."
777
-
778
- #@ cpd
779
- #: counter-core.php:1033
780
- #, php-format
781
- msgid "Backup of counter table saved in %s."
782
- msgstr "Backup van teller tabel opgeslagen in %s."
783
-
784
- #@ cpd
785
- #: counter-core.php:1035
786
- #, php-format
787
- msgid "Backup of counter options and collection saved in %s."
788
- msgstr "Backup van teller opties en verzameling opgeslagen in %s."
789
-
790
- #@ cpd
791
- #: counter-options.php:170
792
- msgid "Collection in progress..."
793
- msgstr "Bezig met verzamelen..."
794
-
795
- #@ cpd
796
- #: counter-options.php:240
797
- msgid "Get Visitors per Post..."
798
- msgstr "Verkrijg Bezoekers per Bericht..."
799
-
800
- #@ cpd
801
- #: counter-options.php:261
802
- msgid "Delete old data..."
803
- msgstr "Verwijder oude data..."
804
-
805
- #@ cpd
806
- #: counter-options.php:285
807
- #, php-format
808
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
- msgstr "Teller registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s &gt; grootte na = %s)."
810
-
811
- #@ cpd
812
- #: counter-options.php:294
813
- msgid "Installation of \"Count per Day\" checked"
814
- msgstr "Installatie van \"Count per Day\" gecontroleerd"
815
-
816
- #@ default
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- msgid "Tools"
820
- msgstr "Hulpmiddelen"
821
-
822
- #@ cpd
823
- #: counter-options.php:394
824
- msgid "Save URL only, no query string."
825
- msgstr "Bewaar alleen de URL, geen query string."
826
-
827
- #@ cpd
828
- #: counter-options.php:419
829
- msgid "Who can see it"
830
- msgstr "Wie het kan zien"
831
-
832
- #@ cpd
833
- #: counter-options.php:428
834
- msgid "custom"
835
- msgstr "aangepast"
836
-
837
- #@ cpd
838
- #: counter-options.php:430
839
- msgid "and higher are allowed to see the statistics page."
840
- msgstr "en hoger kunnen de statistieken pagina zien."
841
-
842
- #@ cpd
843
- #: counter-options.php:432
844
- #, php-format
845
- msgid "Set the %s capability %s a user need:"
846
- msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
847
-
848
- #@ cpd
849
- #: counter-options.php:522
850
- msgid "Stylesheet"
851
- msgstr "Stylesheet"
852
-
853
- #@ cpd
854
- #: counter-options.php:525
855
- msgid "NO Stylesheet in Frontend"
856
- msgstr "Geen Stylesheet in Frontend"
857
-
858
- #@ cpd
859
- #: counter-options.php:526
860
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
- msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
862
-
863
- #@ cpd
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- msgid "Backup"
867
- msgstr "Backup"
868
-
869
- #@ cpd
870
- #: counter-options.php:537
871
- msgid "Entries per pass"
872
- msgstr "Registraties per keer"
873
-
874
- #@ cpd
875
- #: counter-options.php:540
876
- msgid "How many entries should be saved per pass? Default: 10000"
877
- msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
878
-
879
- #@ cpd
880
- #: counter-options.php:545
881
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
- msgstr "Als je PHP geheugen limiet minder is dan 50 MB en je krijgt een witte pagina of een foutmelding probeer dan een lagere waarde."
883
-
884
- #@ cpd
885
- #: counter-options.php:643
886
- #, php-format
887
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
- msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
889
-
890
- #@ cpd
891
- #: counter-options.php:647
892
- msgid "Backup the database"
893
- msgstr "Maak een backup van de database"
894
-
895
- #@ cpd
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- msgid "Collect old data"
899
- msgstr "Verzamel oude data"
900
-
901
- #@ cpd
902
- #: counter-options.php:679
903
- #, php-format
904
- msgid "Current size of your counter table %s is %s."
905
- msgstr "Huidige grootte van je teller tabel %s is %s."
906
-
907
- #@ cpd
908
- #: counter-options.php:681
909
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
- msgstr "Je kan oude data verzamelen en de teller tabel schoonmaken.<br/>Vertoningen en bezoekers worden opgeslagen per maand, per land en per bericht.<br/>Clients en verwijzingen worden verwijderd."
911
-
912
- #@ cpd
913
- #: counter-options.php:686
914
- #, php-format
915
- msgid "Currently your collection contains data until %s."
916
- msgstr "Je verzameling bevat data tot %s."
917
-
918
- #@ cpd
919
- #: counter-options.php:690
920
- msgid "Normally new data will be added to the collection."
921
- msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
922
-
923
- #@ cpd
924
- #: counter-options.php:696
925
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
- msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
927
-
928
- #@ cpd
929
- #: counter-options.php:697
930
- #, php-format
931
- msgid "All collected data until %s will deleted."
932
- msgstr "Alle verzamelde data tot %s wordt verwijderd."
933
-
934
- #@ cpd
935
- #: counter-options.php:702
936
- #, php-format
937
- msgid "Keep entries of last %s full months + current month in counter table."
938
- msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
939
-
940
- #@ cpd
941
- #: counter-options.php:761
942
- msgid "ReActivation"
943
- msgstr "ReActivatie"
944
-
945
- #@ cpd
946
- #: counter-options.php:764
947
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
- msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
949
-
950
- #@ cpd
951
- #: counter-options.php:769
952
- msgid "ReActivate the plugin"
953
- msgstr "ReActiveer de plugin"
954
-
955
- #@ cpd
956
- #: counter.php:165
957
- #: counter.php:899
958
- msgid "Visitors"
959
- msgstr "Bezoekers"
960
-
961
- #@ cpd
962
- #: counter.php:168
963
- #: counter.php:169
964
- msgid "Most visited day"
965
- msgstr "Meest bezochte dag"
966
-
967
- #@ cpd
968
- #: counter.php:1239
969
- msgid "drag and drop to sort"
970
- msgstr "slepen en neerzetten om te sorteren"
971
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day v3.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: translation by WordPressWebshop.com <info@wppg.me>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Dutch\n"
14
+ "X-Poedit-Country: NETHERLANDS\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Instellingen bijgewerkt"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Database schoongemaakt. %s rijen verwijderd."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "DEÏNSTALLEREN Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "eTabel %s verwijderd"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:135
48
+ msgid "Options deleted"
49
+ msgstr "Opties verwijderd"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ msgid "Uninstall"
55
+ msgstr "Deinstallatie"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:317
59
+ msgid "Click here"
60
+ msgstr "Klik hier"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:317
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "om de deinstallatie te beeindigen en \"Count per Day\" te deactiveren."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:355
69
+ msgid "Online time"
70
+ msgstr "Tijd online"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:356
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:359
79
+ msgid "Logged on Users"
80
+ msgstr "Aangemelde Gebruikers"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:361
84
+ msgid "count too"
85
+ msgstr "ook tellen"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:373
89
+ msgid "Auto counter"
90
+ msgstr "Automatisch tellen"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:374
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:377
99
+ msgid "Bots to ignore"
100
+ msgstr "Bots te negeren"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:561
104
+ msgid "Update options"
105
+ msgstr "Aktualiseren opties"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ msgid "Clean the database"
111
+ msgstr "Database schoonmaken"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:659
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "Je kan de teller tabel schoonmaken door de \"spam data\" te verwijderen.<br />Als je nieuwe bots toevoegt bovenop de oude blijft de \"spam data\" in de database.<br />Hier kun je het bot filter opnieuw starten en bezoeken van bots verwijderen."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:799
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:800
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:803
130
+ msgid "WARNING"
131
+ msgstr "WAARSCHUWING"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:804
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
137
+
138
+ #@ cpd
139
+ #: counter-options.php:806
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ msgid "Yes"
147
+ msgstr "Ja"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:810
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ msgid "Statistics"
158
+ msgstr "Statistieken"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ msgid "Total visitors"
166
+ msgstr "Totaal aantal bezoekers"
167
+
168
+ #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ msgid "Visitors currently online"
172
+ msgstr "Bezoekers op dit moment online"
173
+
174
+ #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ msgid "Visitors today"
178
+ msgstr "Bezoekers vandaag"
179
+
180
+ #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ msgid "Visitors yesterday"
184
+ msgstr "Bezoekers gisteren"
185
+
186
+ #@ cpd
187
+ #: counter.php:164
188
+ #: counter.php:1205
189
+ msgid "Visitors last week"
190
+ msgstr "Bezoekers vorige week"
191
+
192
+ #@ cpd
193
+ #: counter.php:167
194
+ #: counter.php:825
195
+ #: counter.php:1209
196
+ msgid "Counter starts on"
197
+ msgstr "Teller start bij"
198
+
199
+ #@ cpd
200
+ #: counter-core.php:729
201
+ #: counter.php:166
202
+ #: counter.php:263
203
+ #: counter.php:1012
204
+ #: counter.php:1207
205
+ #: userperspan.php:34
206
+ msgid "Visitors per day"
207
+ msgstr "Bezoekers per dag"
208
+
209
+ #@ cpd
210
+ #: counter-core.php:725
211
+ #: counter.php:1206
212
+ msgid "Visitors per month"
213
+ msgstr "Bezoekers per maand"
214
+
215
+ #@ cpd
216
+ #: counter-core.php:727
217
+ #: counter-options.php:438
218
+ msgid "Visitors per post"
219
+ msgstr "Bezoekers per bericht"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:122
223
+ msgid "Counter reseted."
224
+ msgstr "Teller gereset"
225
+
226
+ #@ cpd
227
+ #: counter-options.php:439
228
+ #: counter-options.php:443
229
+ msgid "How many posts do you want to see on dashboard page?"
230
+ msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:442
234
+ msgid "Latest Counts - Posts"
235
+ msgstr "Laatste Tellingen - Berichten"
236
+
237
+ #@ cpd
238
+ #: counter-options.php:446
239
+ msgid "Latest Counts - Days"
240
+ msgstr "Laatste Tellingen - Dagen"
241
+
242
+ #@ cpd
243
+ #: counter-options.php:447
244
+ #: counter-options.php:451
245
+ #: counter-options.php:473
246
+ msgid "How many days do you want look back?"
247
+ msgstr "Hoeveel dagen wil je terugkijken?"
248
+
249
+ #@ cpd
250
+ #: counter-options.php:488
251
+ msgid "Show in lists"
252
+ msgstr "Laat in lijsten zien"
253
+
254
+ #@ cpd
255
+ #: counter-options.php:489
256
+ msgid "Show \"Reads per Post\" in a new column in post management views."
257
+ msgstr "Toon \"Lezingen per post\" in een nieuwe kolom in bericht impressies management."
258
+
259
+ #@ cpd
260
+ #: counter-options.php:777
261
+ #: counter-options.php:787
262
+ msgid "Reset the counter"
263
+ msgstr "Reset de teller"
264
+
265
+ #@ cpd
266
+ #: counter-options.php:780
267
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
268
+ msgstr "Je kan de teller resetten door de tabel leeg te maken. ALLES OP 0!<br/>Maak een backup als je de huidige data nodig hebt!"
269
+
270
+ #@ cpd
271
+ #: counter.php:672
272
+ #, php-format
273
+ msgid "The %s most visited posts in last %s days:"
274
+ msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
275
+
276
+ #@ default
277
+ #: counter-core.php:575
278
+ #: counter-options.php:341
279
+ #: counter-options.php:565
280
+ msgid "Settings"
281
+ msgstr "Instellingen"
282
+
283
+ #@ cpd
284
+ #: counter-core.php:639
285
+ #: counter-options.php:392
286
+ #: counter.php:159
287
+ #: counter.php:875
288
+ msgid "Reads"
289
+ msgstr "Vertoningen"
290
+
291
+ #@ cpd
292
+ #: counter-core.php:728
293
+ msgid "Latest Counts"
294
+ msgstr "Laatste Tellingen"
295
+
296
+ #@ cpd
297
+ #: counter-options.php:450
298
+ msgid "Chart - Days"
299
+ msgstr "Grafiek - Dagen"
300
+
301
+ #@ cpd
302
+ #: counter-options.php:454
303
+ msgid "Chart - Height"
304
+ msgstr "Grafiek - Hoogte"
305
+
306
+ #@ cpd
307
+ #: counter-options.php:455
308
+ msgid "Height of the biggest bar"
309
+ msgstr "Hoogte van de grootste staaf"
310
+
311
+ #@ cpd
312
+ #: counter.php:1196
313
+ msgid "This post"
314
+ msgstr "Dit bericht"
315
+
316
+ #@ default
317
+ #: counter-options.php:403
318
+ msgid "Dashboard"
319
+ msgstr "Dashboard"
320
+
321
+ #@ cpd
322
+ #: counter.php:262
323
+ msgid "Reads per day"
324
+ msgstr "Hits per dag"
325
+
326
+ #@ cpd
327
+ #: counter-options.php:60
328
+ #, php-format
329
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
330
+ msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
331
+
332
+ #@ cpd
333
+ #: counter-options.php:65
334
+ msgid "update next"
335
+ msgstr "volgende aktualiseren"
336
+
337
+ #@ cpd
338
+ #: counter-options.php:727
339
+ msgid "GeoIP - Countries"
340
+ msgstr "GeoIP - Landen"
341
+
342
+ #@ cpd
343
+ #: counter-options.php:736
344
+ msgid "Update old counter data"
345
+ msgstr "Aktualiseren data van oude tellingen"
346
+
347
+ #@ cpd
348
+ #: counter-options.php:748
349
+ msgid "Update GeoIP database"
350
+ msgstr "Aktualiseren GeoIP databank"
351
+
352
+ #@ cpd
353
+ #: counter-options.php:743
354
+ msgid "Download a new version of GeoIP.dat file."
355
+ msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
356
+
357
+ #@ cpd
358
+ #: counter-options.php:753
359
+ msgid "More informations about GeoIP"
360
+ msgstr "Meer informatie over GeoIP"
361
+
362
+ #@ cpd
363
+ #: counter-core.php:738
364
+ msgid "Reads per Country"
365
+ msgstr "vertoningen per Land"
366
+
367
+ #@ cpd
368
+ #: geoip/geoip.php:117
369
+ msgid "New GeoIP database installed."
370
+ msgstr "Nieuwe GeoIP database geïnstalleerd."
371
+
372
+ #@ cpd
373
+ #: geoip/geoip.php:119
374
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
375
+ msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of de toegangsrechten van de map \"geoip\" op 777 staan."
376
+
377
+ #@ cpd
378
+ #: geoip/geoip.php:93
379
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
380
+ msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
381
+
382
+ #@ cpd
383
+ #: counter-options.php:459
384
+ msgid "Countries"
385
+ msgstr "Landen"
386
+
387
+ #@ cpd
388
+ #: counter-options.php:460
389
+ msgid "How many countries do you want to see on dashboard page?"
390
+ msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
391
+
392
+ #@ cpd
393
+ #: counter-options.php:102
394
+ #, php-format
395
+ msgid "Mass Bots cleaned. %s counts deleted."
396
+ msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
397
+
398
+ #@ cpd
399
+ #: counter-options.php:580
400
+ #: massbots.php:35
401
+ msgid "Mass Bots"
402
+ msgstr "Massa Bots"
403
+
404
+ #@ cpd
405
+ #: counter-options.php:584
406
+ #, php-format
407
+ msgid "Show all IPs with more than %s page views per day"
408
+ msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
409
+
410
+ #@ cpd
411
+ #: counter-options.php:585
412
+ #: notes.php:71
413
+ #: userperspan.php:44
414
+ msgid "show"
415
+ msgstr "laat zien"
416
+
417
+ #@ cpd
418
+ #: counter-options.php:611
419
+ #: counter-options.php:627
420
+ #, php-format
421
+ msgid "Delete these %s counts"
422
+ msgstr "Verwijder deze %s tellingen"
423
+
424
+ #@ cpd
425
+ #: counter.php:821
426
+ msgid "Other"
427
+ msgstr "Andere"
428
+
429
+ #@ default
430
+ #: counter.php:991
431
+ #: massbots.php:52
432
+ #: userperspan.php:63
433
+ msgid "Front page displays"
434
+ msgstr "Voorpagina weergaves"
435
+
436
+ #@ cpd
437
+ #: counter-core.php:733
438
+ #: counter-options.php:464
439
+ msgid "Browsers"
440
+ msgstr "Browser"
441
+
442
+ #@ cpd
443
+ #: counter-options.php:593
444
+ msgid "IP"
445
+ msgstr "IP"
446
+
447
+ #@ cpd
448
+ #@ default
449
+ #: counter-options.php:594
450
+ #: notes.php:75
451
+ msgid "Date"
452
+ msgstr "Datum"
453
+
454
+ #@ cpd
455
+ #: counter-options.php:595
456
+ msgid "Client"
457
+ msgstr "Browser"
458
+
459
+ #@ cpd
460
+ #: counter-options.php:596
461
+ msgid "Views"
462
+ msgstr "Hits"
463
+
464
+ #@ cpd
465
+ #: counter-options.php:497
466
+ msgid "Start Values"
467
+ msgstr "Beginwaarden"
468
+
469
+ #@ cpd
470
+ #: counter-options.php:501
471
+ msgid "Here you can change the date of first count and add a start count."
472
+ msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
473
+
474
+ #@ cpd
475
+ #: counter-options.php:505
476
+ msgid "Start date"
477
+ msgstr "Startdatum"
478
+
479
+ #@ cpd
480
+ #: counter-options.php:506
481
+ msgid "Your old Counter starts at?"
482
+ msgstr "Je oude teller start op?"
483
+
484
+ #@ cpd
485
+ #: counter-options.php:509
486
+ #: counter-options.php:513
487
+ msgid "Start count"
488
+ msgstr "Beginwaarde van de telling"
489
+
490
+ #@ cpd
491
+ #: counter-options.php:510
492
+ msgid "Add this value to \"Total visitors\"."
493
+ msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
494
+
495
+ #@ cpd
496
+ #: counter-options.php:714
497
+ msgid "Support"
498
+ msgstr "Ondersteuning"
499
+
500
+ #@ cpd
501
+ #: counter-core.php:690
502
+ msgid "Bug? Problem? Question? Hint? Praise?"
503
+ msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
504
+
505
+ #@ cpd
506
+ #: counter-core.php:691
507
+ #, php-format
508
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
509
+ msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
510
+
511
+ #@ default
512
+ #: counter.php:786
513
+ msgid "Show"
514
+ msgstr "Vertonen"
515
+
516
+ #@ default
517
+ #: counter.php:976
518
+ msgid "Edit Post"
519
+ msgstr "Bericht Bewerken"
520
+
521
+ #@ cpd
522
+ #: counter-core.php:689
523
+ #, php-format
524
+ msgid "Time for Count per Day: <code>%s</code>."
525
+ msgstr "Tijd voor Count per Day: <code>%s</code>."
526
+
527
+ #@ cpd
528
+ #: counter-options.php:362
529
+ msgid "until User Level"
530
+ msgstr "Tot Gebruikers Niveau"
531
+
532
+ #@ default
533
+ #: counter-core.php:730
534
+ msgid "Plugin"
535
+ msgstr "Plugin"
536
+
537
+ #@ cpd
538
+ #: counter.php:788
539
+ #: notes.php:42
540
+ #: notes.php:76
541
+ msgid "Notes"
542
+ msgstr "Opmerkingen"
543
+
544
+ #@ default
545
+ #: notes.php:77
546
+ msgid "Action"
547
+ msgstr "Actie"
548
+
549
+ #@ cpd
550
+ #: notes.php:82
551
+ msgid "add"
552
+ msgstr "toevoegen"
553
+
554
+ #@ cpd
555
+ #: notes.php:98
556
+ msgid "save"
557
+ msgstr "bewaren"
558
+
559
+ #@ cpd
560
+ #: notes.php:99
561
+ msgid "delete"
562
+ msgstr "verwijderen"
563
+
564
+ #@ cpd
565
+ #: notes.php:110
566
+ msgid "edit"
567
+ msgstr "bewerken"
568
+
569
+ #@ cpd
570
+ #: counter-options.php:514
571
+ msgid "Add this value to \"Total reads\"."
572
+ msgstr "Voeg deze waarde toe aan \"Totale vertoningen\"."
573
+
574
+ #@ cpd
575
+ #: counter.php:155
576
+ #: counter.php:1197
577
+ msgid "Total reads"
578
+ msgstr "Totale vertoningen"
579
+
580
+ #@ cpd
581
+ #: counter.php:156
582
+ #: counter.php:1198
583
+ msgid "Reads today"
584
+ msgstr "vertoningen vandaag"
585
+
586
+ #@ cpd
587
+ #: counter.php:157
588
+ #: counter.php:1199
589
+ msgid "Reads yesterday"
590
+ msgstr "vertoningen gisteren"
591
+
592
+ #@ cpd
593
+ #: counter-options.php:381
594
+ msgid "Anonymous IP"
595
+ msgstr "Anonieme IP"
596
+
597
+ #@ cpd
598
+ #: counter-options.php:385
599
+ msgid "Cache"
600
+ msgstr "Cache"
601
+
602
+ #@ cpd
603
+ #: counter-options.php:386
604
+ msgid "I use a cache plugin. Count these visits with ajax."
605
+ msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
606
+
607
+ #@ cpd
608
+ #: counter-options.php:465
609
+ msgid "Substring of the user agent, separated by comma"
610
+ msgstr "Substring van de user agent, gescheiden door een comma"
611
+
612
+ #@ cpd
613
+ #: counter-options.php:554
614
+ msgid "Debug mode"
615
+ msgstr "Debugmodus"
616
+
617
+ #@ cpd
618
+ #: counter-options.php:556
619
+ msgid "Show debug informations at the bottom of all pages."
620
+ msgstr "Geef debug informatie weer op de bodem van elke pagina."
621
+
622
+ #@ cpd
623
+ #: counter-core.php:739
624
+ msgid "Visitors per Country"
625
+ msgstr "Bezoekers per Land"
626
+
627
+ #@ cpd
628
+ #: counter.php:353
629
+ #: counter.php:1041
630
+ msgid "Map"
631
+ msgstr "Kaart"
632
+
633
+ #@ cpd
634
+ #: userperspan.php:38
635
+ msgid "Start"
636
+ msgstr "Start"
637
+
638
+ #@ cpd
639
+ #: userperspan.php:40
640
+ msgid "End"
641
+ msgstr "Einde"
642
+
643
+ #@ cpd
644
+ #: userperspan.php:42
645
+ msgid "PostID"
646
+ msgstr "PostID"
647
+
648
+ #@ cpd
649
+ #: userperspan.php:50
650
+ msgid "no data found"
651
+ msgstr "geen data gevonden"
652
+
653
+ #@ cpd
654
+ #: counter-options.php:730
655
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
+ msgstr "Je kunt de land gegevens voor alle items in de database verkrijgen door het IP adres te controleren t.o.v. de GeoIP database. Dit kan even duren!"
657
+
658
+ #@ cpd
659
+ #: counter-options.php:351
660
+ msgid "Counter"
661
+ msgstr "Teller"
662
+
663
+ #@ cpd
664
+ #: counter-options.php:389
665
+ msgid "Clients and referrers"
666
+ msgstr "Clients en verwijzingen"
667
+
668
+ #@ cpd
669
+ #: counter-options.php:392
670
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
+ msgstr "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
672
+
673
+ #@ cpd
674
+ #: counter-options.php:476
675
+ msgid "Local URLs"
676
+ msgstr "Lokale URLs"
677
+
678
+ #@ cpd
679
+ #: counter-options.php:477
680
+ msgid "Show local referrers too."
681
+ msgstr "Geef lokale verwijzingen ook weer."
682
+
683
+ #@ default
684
+ #: counter-options.php:485
685
+ msgid "Posts"
686
+ msgstr "Berichten"
687
+
688
+ #@ default
689
+ #: counter-options.php:485
690
+ msgid "Pages"
691
+ msgstr "Pagina's"
692
+
693
+ #@ cpd
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ msgid "Reads last week"
697
+ msgstr "vertoningen vorige week"
698
+
699
+ #@ default
700
+ #: counter.php:985
701
+ msgid "Category"
702
+ msgstr "Categorie"
703
+
704
+ #@ default
705
+ #: counter.php:988
706
+ msgid "Tag"
707
+ msgstr "Tag"
708
+
709
+ #@ default
710
+ #: counter-core.php:692
711
+ msgid "License"
712
+ msgstr "Licentie"
713
+
714
+ #@ cpd
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ msgid "Reads per month"
718
+ msgstr "vertoningen per maand"
719
+
720
+ #@ cpd
721
+ #: counter-core.php:734
722
+ msgid "Referrer"
723
+ msgstr "Verwijzing"
724
+
725
+ #@ default
726
+ #: counter.php:1220
727
+ msgid "Title"
728
+ msgstr "Titel"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:468
732
+ msgid "Referrers - Entries"
733
+ msgstr "Verwijzingen - Entries"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:469
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:472
742
+ msgid "Referrers - Days"
743
+ msgstr "Verwijzingen - Dagen"
744
+
745
+ #@ cpd
746
+ #: counter.php:845
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "De %s verwijzingen in de laatste %s dagen:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:724
753
+ msgid "Visitors online"
754
+ msgstr "Bezoekers online"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "\"Count per Day\" bijgewerkt naar versie %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:917
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Backup mislukt! Kan bestand niet openen"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Bezig met backup van %s registraties. Elk punt komt overeen met %s registraties."
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1027
775
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
776
+ msgstr "Je wp-content folder is niet beschrijfbaar. Je kan de content van dit venster kopiëren naar een tekst bestand."
777
+
778
+ #@ cpd
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ msgid "Backup of counter table saved in %s."
782
+ msgstr "Backup van teller tabel opgeslagen in %s."
783
+
784
+ #@ cpd
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ msgid "Backup of counter options and collection saved in %s."
788
+ msgstr "Backup van teller opties en verzameling opgeslagen in %s."
789
+
790
+ #@ cpd
791
+ #: counter-options.php:170
792
+ msgid "Collection in progress..."
793
+ msgstr "Bezig met verzamelen..."
794
+
795
+ #@ cpd
796
+ #: counter-options.php:240
797
+ msgid "Get Visitors per Post..."
798
+ msgstr "Verkrijg Bezoekers per Bericht..."
799
+
800
+ #@ cpd
801
+ #: counter-options.php:261
802
+ msgid "Delete old data..."
803
+ msgstr "Verwijder oude data..."
804
+
805
+ #@ cpd
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
809
+ msgstr "Teller registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s &gt; grootte na = %s)."
810
+
811
+ #@ cpd
812
+ #: counter-options.php:294
813
+ msgid "Installation of \"Count per Day\" checked"
814
+ msgstr "Installatie van \"Count per Day\" gecontroleerd"
815
+
816
+ #@ default
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ msgid "Tools"
820
+ msgstr "Hulpmiddelen"
821
+
822
+ #@ cpd
823
+ #: counter-options.php:394
824
+ msgid "Save URL only, no query string."
825
+ msgstr "Bewaar alleen de URL, geen query string."
826
+
827
+ #@ cpd
828
+ #: counter-options.php:419
829
+ msgid "Who can see it"
830
+ msgstr "Wie het kan zien"
831
+
832
+ #@ cpd
833
+ #: counter-options.php:428
834
+ msgid "custom"
835
+ msgstr "aangepast"
836
+
837
+ #@ cpd
838
+ #: counter-options.php:430
839
+ msgid "and higher are allowed to see the statistics page."
840
+ msgstr "en hoger kunnen de statistieken pagina zien."
841
+
842
+ #@ cpd
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ msgid "Set the %s capability %s a user need:"
846
+ msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
847
+
848
+ #@ cpd
849
+ #: counter-options.php:522
850
+ msgid "Stylesheet"
851
+ msgstr "Stylesheet"
852
+
853
+ #@ cpd
854
+ #: counter-options.php:525
855
+ msgid "NO Stylesheet in Frontend"
856
+ msgstr "Geen Stylesheet in Frontend"
857
+
858
+ #@ cpd
859
+ #: counter-options.php:526
860
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
861
+ msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
862
+
863
+ #@ cpd
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ msgid "Backup"
867
+ msgstr "Backup"
868
+
869
+ #@ cpd
870
+ #: counter-options.php:537
871
+ msgid "Entries per pass"
872
+ msgstr "Registraties per keer"
873
+
874
+ #@ cpd
875
+ #: counter-options.php:540
876
+ msgid "How many entries should be saved per pass? Default: 10000"
877
+ msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
878
+
879
+ #@ cpd
880
+ #: counter-options.php:545
881
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
882
+ msgstr "Als je PHP geheugen limiet minder is dan 50 MB en je krijgt een witte pagina of een foutmelding probeer dan een lagere waarde."
883
+
884
+ #@ cpd
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
888
+ msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
889
+
890
+ #@ cpd
891
+ #: counter-options.php:647
892
+ msgid "Backup the database"
893
+ msgstr "Maak een backup van de database"
894
+
895
+ #@ cpd
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ msgid "Collect old data"
899
+ msgstr "Verzamel oude data"
900
+
901
+ #@ cpd
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ msgid "Current size of your counter table %s is %s."
905
+ msgstr "Huidige grootte van je teller tabel %s is %s."
906
+
907
+ #@ cpd
908
+ #: counter-options.php:681
909
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
910
+ msgstr "Je kan oude data verzamelen en de teller tabel schoonmaken.<br/>Vertoningen en bezoekers worden opgeslagen per maand, per land en per bericht.<br/>Clients en verwijzingen worden verwijderd."
911
+
912
+ #@ cpd
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ msgid "Currently your collection contains data until %s."
916
+ msgstr "Je verzameling bevat data tot %s."
917
+
918
+ #@ cpd
919
+ #: counter-options.php:690
920
+ msgid "Normally new data will be added to the collection."
921
+ msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
922
+
923
+ #@ cpd
924
+ #: counter-options.php:696
925
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
926
+ msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
927
+
928
+ #@ cpd
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ msgid "All collected data until %s will deleted."
932
+ msgstr "Alle verzamelde data tot %s wordt verwijderd."
933
+
934
+ #@ cpd
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ msgid "Keep entries of last %s full months + current month in counter table."
938
+ msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
939
+
940
+ #@ cpd
941
+ #: counter-options.php:761
942
+ msgid "ReActivation"
943
+ msgstr "ReActivatie"
944
+
945
+ #@ cpd
946
+ #: counter-options.php:764
947
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
948
+ msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
949
+
950
+ #@ cpd
951
+ #: counter-options.php:769
952
+ msgid "ReActivate the plugin"
953
+ msgstr "ReActiveer de plugin"
954
+
955
+ #@ cpd
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ msgid "Visitors"
959
+ msgstr "Bezoekers"
960
+
961
+ #@ cpd
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ msgid "Most visited day"
965
+ msgstr "Meest bezochte dag"
966
+
967
+ #@ cpd
968
+ #: counter.php:1239
969
+ msgid "drag and drop to sort"
970
+ msgstr "slepen en neerzetten om te sorteren"
971
+
locale/cpd-pl_PL.po CHANGED
@@ -1,972 +1,972 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v2.10.1\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2010-05-17 14:04+0200\n"
7
- "Last-Translator: LeXuS <lexus@intrakardial.de>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Polish\n"
14
- "X-Poedit-Country: POLAND\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: ../\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:49
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Opcje zaktualizowane"
26
-
27
- #: counter-options.php:60
28
- #, php-format
29
- #@ cpd
30
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
- msgstr "Kraje zaktualizowane. <b>%s</b> wpisów w %s bez kraju"
32
-
33
- #: counter-options.php:65
34
- #@ cpd
35
- msgid "update next"
36
- msgstr "Następna aktualizacja"
37
-
38
- #: counter-options.php:102
39
- #, php-format
40
- #@ cpd
41
- msgid "Mass Bots cleaned. %s counts deleted."
42
- msgstr "Masowe boty wymazane. %s wpisów usuniętych."
43
-
44
- #: counter-options.php:112
45
- #, php-format
46
- #@ cpd
47
- msgid "Database cleaned. %s rows deleted."
48
- msgstr "Baza danych wyczyszczona. %s wpisów usuniętych."
49
-
50
- #: counter-options.php:122
51
- #@ cpd
52
- msgid "Counter reseted."
53
- msgstr "Licznik skasowany"
54
-
55
- #: counter-options.php:127
56
- #: counter-options.php:810
57
- #@ cpd
58
- msgid "UNINSTALL Count per Day"
59
- msgstr "USUŃ Count per Day"
60
-
61
- #: counter-options.php:132
62
- #: counter-options.php:133
63
- #: counter-options.php:134
64
- #, php-format
65
- #@ cpd
66
- msgid "Table %s deleted"
67
- msgstr "Tabela %s usunięta"
68
-
69
- #: counter-options.php:135
70
- #@ cpd
71
- msgid "Options deleted"
72
- msgstr "Opcje usunięte"
73
-
74
- #: counter-options.php:316
75
- #: counter-options.php:796
76
- #@ cpd
77
- msgid "Uninstall"
78
- msgstr "Odinstalowanie"
79
-
80
- #: counter-options.php:317
81
- #@ cpd
82
- msgid "Click here"
83
- msgstr "Kliknij tutaj"
84
-
85
- #: counter-options.php:317
86
- #@ cpd
87
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
- msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
89
-
90
- #: counter-options.php:355
91
- #@ cpd
92
- msgid "Online time"
93
- msgstr "Czas bycia online"
94
-
95
- #: counter-options.php:356
96
- #@ cpd
97
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
- msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
99
-
100
- #: counter-options.php:359
101
- #@ cpd
102
- msgid "Logged on Users"
103
- msgstr "Zalogowani użytkownicy"
104
-
105
- #: counter-options.php:361
106
- #@ cpd
107
- msgid "count too"
108
- msgstr "również liczyć"
109
-
110
- #: counter-options.php:362
111
- #@ cpd
112
- msgid "until User Level"
113
- msgstr "do poziomu użytkownika"
114
-
115
- #: counter-options.php:373
116
- #@ cpd
117
- msgid "Auto counter"
118
- msgstr "Licznik"
119
-
120
- #: counter-options.php:374
121
- #@ cpd
122
- msgid "Counts automatically single-posts and pages, no changes on template needed."
123
- msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
124
-
125
- #: counter-options.php:377
126
- #@ cpd
127
- msgid "Bots to ignore"
128
- msgstr "Boty do ignorowania"
129
-
130
- #: counter-options.php:403
131
- #@ default
132
- msgid "Dashboard"
133
- msgstr ""
134
-
135
- #: counter-core.php:727
136
- #: counter-options.php:438
137
- #@ cpd
138
- msgid "Visitors per post"
139
- msgstr "Gości na wpisie"
140
-
141
- #: counter-options.php:439
142
- #: counter-options.php:443
143
- #@ cpd
144
- msgid "How many posts do you want to see on dashboard page?"
145
- msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
146
-
147
- #: counter-options.php:442
148
- #@ cpd
149
- msgid "Latest Counts - Posts"
150
- msgstr "Ostatnie Odsłony - Wpisy"
151
-
152
- #: counter-options.php:446
153
- #@ cpd
154
- msgid "Latest Counts - Days"
155
- msgstr "Ostatnie Odsłony - Dni"
156
-
157
- #: counter-options.php:447
158
- #: counter-options.php:451
159
- #: counter-options.php:473
160
- #@ cpd
161
- msgid "How many days do you want look back?"
162
- msgstr "Ile dni chcesz patrzeć wstecz?"
163
-
164
- #: counter-options.php:450
165
- #@ cpd
166
- msgid "Chart - Days"
167
- msgstr "Wykres - Dni"
168
-
169
- #: counter-options.php:454
170
- #@ cpd
171
- msgid "Chart - Height"
172
- msgstr "Wykres - Wysokość"
173
-
174
- #: counter-options.php:455
175
- #@ cpd
176
- msgid "Height of the biggest bar"
177
- msgstr "Wysokość najwyższego słupka"
178
-
179
- #: counter-options.php:459
180
- #@ cpd
181
- msgid "Countries"
182
- msgstr "Państwa"
183
-
184
- #: counter-options.php:460
185
- #@ cpd
186
- msgid "How many countries do you want to see on dashboard page?"
187
- msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
188
-
189
- #: counter-options.php:488
190
- #@ cpd
191
- msgid "Show in lists"
192
- msgstr "Pokaż na listach"
193
-
194
- #: counter-options.php:489
195
- #@ cpd
196
- msgid "Show \"Reads per Post\" in a new column in post management views."
197
- msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
198
-
199
- #: counter-options.php:497
200
- #@ cpd
201
- msgid "Start Values"
202
- msgstr "Startowe Wartości"
203
-
204
- #: counter-options.php:501
205
- #@ cpd
206
- msgid "Here you can change the date of first count and add a start count."
207
- msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
208
-
209
- #: counter-options.php:505
210
- #@ cpd
211
- msgid "Start date"
212
- msgstr "Data rozpoczęcia"
213
-
214
- #: counter-options.php:506
215
- #@ cpd
216
- msgid "Your old Counter starts at?"
217
- msgstr "Stary licznik zaczął w?"
218
-
219
- #: counter-options.php:509
220
- #: counter-options.php:513
221
- #@ cpd
222
- msgid "Start count"
223
- msgstr "Stan początkowy licznika"
224
-
225
- #: counter-options.php:510
226
- #@ cpd
227
- msgid "Add this value to \"Total visitors\"."
228
- msgstr "Dodaj tą wartość do \"Gości razem\"."
229
-
230
- #: counter-options.php:514
231
- #@ cpd
232
- msgid "Add this value to \"Total reads\"."
233
- msgstr "Dodaj tą wartość do \"Odsłon razem\"."
234
-
235
- #: counter-options.php:561
236
- #@ cpd
237
- msgid "Update options"
238
- msgstr "Aktualizuj opcje"
239
-
240
- #: counter-options.php:727
241
- #@ cpd
242
- msgid "GeoIP - Countries"
243
- msgstr "GeoIP - Państwa"
244
-
245
- #: counter-options.php:736
246
- #@ cpd
247
- msgid "Update old counter data"
248
- msgstr "Aktualizuj stare dane licznika"
249
-
250
- #: counter-options.php:748
251
- #@ cpd
252
- msgid "Update GeoIP database"
253
- msgstr "Aktualizuj bazę danych GeoIP"
254
-
255
- #: counter-options.php:743
256
- #@ cpd
257
- msgid "Download a new version of GeoIP.dat file."
258
- msgstr "Pobierz nową wersję pliku GeoIP.dat."
259
-
260
- #: counter-options.php:753
261
- #@ cpd
262
- msgid "More informations about GeoIP"
263
- msgstr "Więcej informacji o GeoIP"
264
-
265
- #: counter-options.php:580
266
- #: massbots.php:35
267
- #@ cpd
268
- msgid "Mass Bots"
269
- msgstr "Masowe boty"
270
-
271
- #: counter-options.php:584
272
- #, php-format
273
- #@ cpd
274
- msgid "Show all IPs with more than %s page views per day"
275
- msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
276
-
277
- #: counter-options.php:585
278
- #: notes.php:71
279
- #: userperspan.php:44
280
- #@ cpd
281
- msgid "show"
282
- msgstr "pokaż"
283
-
284
- #: counter-options.php:593
285
- #@ cpd
286
- msgid "IP"
287
- msgstr "IP"
288
-
289
- #: counter-options.php:594
290
- #: notes.php:75
291
- #@ cpd
292
- #@ default
293
- msgid "Date"
294
- msgstr "Data"
295
-
296
- #: counter-options.php:595
297
- #@ cpd
298
- msgid "Client"
299
- msgstr "Klient"
300
-
301
- #: counter-options.php:596
302
- #@ cpd
303
- msgid "Views"
304
- msgstr "Wyświetlenia"
305
-
306
- #: counter-options.php:611
307
- #: counter-options.php:627
308
- #, php-format
309
- #@ cpd
310
- msgid "Delete these %s counts"
311
- msgstr "Usuń te s% dane"
312
-
313
- #: counter-options.php:656
314
- #: counter-options.php:665
315
- #@ cpd
316
- msgid "Clean the database"
317
- msgstr "Wyczyść bazę danych"
318
-
319
- #: counter-options.php:659
320
- #@ cpd
321
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
322
- msgstr "Możesz wyczyścić tabelę licznika przez usunięcie spamu.<br />Jeśli dodasz nowe boty do powyższej listy, to spam pozostanie w bazie danych. <br />Wtedy możesz uruchomić filter i ponownie usunąć wizyty botów."
323
-
324
- #: counter-options.php:777
325
- #: counter-options.php:787
326
- #@ cpd
327
- msgid "Reset the counter"
328
- msgstr "Skasuj licznik"
329
-
330
- #: counter-options.php:780
331
- #@ cpd
332
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
333
- msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
334
-
335
- #: counter-options.php:799
336
- #@ cpd
337
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
338
- msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
339
-
340
- #: counter-options.php:800
341
- #@ cpd
342
- msgid "Here you can delete the tables and disable \"Count per Day\"."
343
- msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
344
-
345
- #: counter-options.php:803
346
- #@ cpd
347
- msgid "WARNING"
348
- msgstr "UWAGA"
349
-
350
- #: counter-options.php:804
351
- #@ cpd
352
- msgid "These tables (with ALL counter data) will be deleted."
353
- msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
354
-
355
- #: counter-options.php:806
356
- #@ cpd
357
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
358
- msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
359
-
360
- #: counter-options.php:786
361
- #: counter-options.php:809
362
- #@ cpd
363
- msgid "Yes"
364
- msgstr "Tak"
365
-
366
- #: counter-options.php:810
367
- #@ cpd
368
- msgid "You are sure to disable Count per Day and delete all data?"
369
- msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
370
-
371
- #: counter-options.php:714
372
- #@ cpd
373
- msgid "Support"
374
- msgstr "Wsparcie"
375
-
376
- #: counter-core.php:689
377
- #, php-format
378
- #@ cpd
379
- msgid "Time for Count per Day: <code>%s</code>."
380
- msgstr "Czas u Count per Day: <code>%s</code>."
381
-
382
- #: counter-core.php:690
383
- #@ cpd
384
- msgid "Bug? Problem? Question? Hint? Praise?"
385
- msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
386
-
387
- #: counter-core.php:691
388
- #, php-format
389
- #@ cpd
390
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
391
- msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
392
-
393
- #: counter.php:155
394
- #: counter.php:1197
395
- #@ cpd
396
- msgid "Total reads"
397
- msgstr "Odsłon razem"
398
-
399
- #: counter.php:156
400
- #: counter.php:1198
401
- #@ cpd
402
- msgid "Reads today"
403
- msgstr "Odsłon dzisiaj"
404
-
405
- #: counter.php:157
406
- #: counter.php:1199
407
- #@ cpd
408
- msgid "Reads yesterday"
409
- msgstr "Odsłon wczoraj"
410
-
411
- #: counter-core.php:723
412
- #: counter.php:160
413
- #: counter.php:1010
414
- #: counter.php:1202
415
- #@ cpd
416
- msgid "Total visitors"
417
- msgstr "Gości razem"
418
-
419
- #: counter.php:161
420
- #: counter.php:1208
421
- #@ cpd
422
- msgid "Visitors currently online"
423
- msgstr "Goście obecnie online"
424
-
425
- #: counter.php:162
426
- #: counter.php:1203
427
- #@ cpd
428
- msgid "Visitors today"
429
- msgstr "Gości dzisiaj"
430
-
431
- #: counter.php:163
432
- #: counter.php:1204
433
- #@ cpd
434
- msgid "Visitors yesterday"
435
- msgstr "Gości wczoraj"
436
-
437
- #: counter.php:164
438
- #: counter.php:1205
439
- #@ cpd
440
- msgid "Visitors last week"
441
- msgstr "Gości w preszłym tygodniu"
442
-
443
- #: counter-core.php:729
444
- #: counter.php:166
445
- #: counter.php:263
446
- #: counter.php:1012
447
- #: counter.php:1207
448
- #: userperspan.php:34
449
- #@ cpd
450
- msgid "Visitors per day"
451
- msgstr "Gości dziennie"
452
-
453
- #: counter.php:167
454
- #: counter.php:825
455
- #: counter.php:1209
456
- #@ cpd
457
- msgid "Counter starts on"
458
- msgstr "Licznone od"
459
-
460
- #: counter.php:788
461
- #: notes.php:42
462
- #: notes.php:76
463
- #@ cpd
464
- msgid "Notes"
465
- msgstr "Notatka"
466
-
467
- #: counter.php:672
468
- #, php-format
469
- #@ cpd
470
- msgid "The %s most visited posts in last %s days:"
471
- msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
472
-
473
- #: counter.php:786
474
- #@ default
475
- msgid "Show"
476
- msgstr ""
477
-
478
- #: counter.php:821
479
- #@ cpd
480
- msgid "Other"
481
- msgstr "Inne"
482
-
483
- #: counter.php:976
484
- #@ default
485
- msgid "Edit Post"
486
- msgstr ""
487
-
488
- #: counter.php:991
489
- #: massbots.php:52
490
- #: userperspan.php:63
491
- #@ default
492
- msgid "Front page displays"
493
- msgstr ""
494
-
495
- #: counter-core.php:575
496
- #: counter-options.php:341
497
- #: counter-options.php:565
498
- #@ default
499
- msgid "Settings"
500
- msgstr ""
501
-
502
- #: counter-core.php:639
503
- #: counter-options.php:392
504
- #: counter.php:159
505
- #: counter.php:875
506
- #@ cpd
507
- msgid "Reads"
508
- msgstr "Odsłon"
509
-
510
- #: counter.php:1196
511
- #@ cpd
512
- msgid "This post"
513
- msgstr "Ten wpis"
514
-
515
- #: counter.php:262
516
- #@ cpd
517
- msgid "Reads per day"
518
- msgstr "Odsłon dziennie"
519
-
520
- #: counter-core.php:725
521
- #: counter.php:1206
522
- #@ cpd
523
- msgid "Visitors per month"
524
- msgstr "Gości miesięcznie"
525
-
526
- #: counter-core.php:733
527
- #: counter-options.php:464
528
- #@ cpd
529
- msgid "Browsers"
530
- msgstr "Przeglądarki"
531
-
532
- #: counter-core.php:728
533
- #@ cpd
534
- msgid "Latest Counts"
535
- msgstr "Ostatnie Odsłony"
536
-
537
- #: counter-core.php:730
538
- #@ default
539
- msgid "Plugin"
540
- msgstr ""
541
-
542
- #: counter-core.php:738
543
- #@ cpd
544
- msgid "Reads per Country"
545
- msgstr "Odsłon na państwo"
546
-
547
- #: counter-core.php:754
548
- #: counter.php:1124
549
- #@ cpd
550
- msgid "Statistics"
551
- msgstr "Statystyki"
552
-
553
- #: counter.php:353
554
- #: counter.php:1041
555
- #@ cpd
556
- msgid "Map"
557
- msgstr "Mapa"
558
-
559
- #: geoip/geoip.php:93
560
- #@ cpd
561
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
- msgstr "Przepraszamy, niezbędne funkcje (zlib) nie są zainstalowane lub włączone w php.ini."
563
-
564
- #: geoip/geoip.php:117
565
- #@ cpd
566
- msgid "New GeoIP database installed."
567
- msgstr "Nowa GeoIP baza danych zainstalowana."
568
-
569
- #: geoip/geoip.php:119
570
- #@ cpd
571
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
- msgstr "Przepraszamy, wystąpił błąd. Spróbuj ponownie lub sprawdzić prawa dostępu do katalogu \"geoip\", jest 777."
573
-
574
- #: notes.php:77
575
- #@ default
576
- msgid "Action"
577
- msgstr ""
578
-
579
- #: notes.php:82
580
- #@ cpd
581
- msgid "add"
582
- msgstr "dodać"
583
-
584
- #: notes.php:98
585
- #@ cpd
586
- msgid "save"
587
- msgstr "zapisać"
588
-
589
- #: notes.php:99
590
- #@ cpd
591
- msgid "delete"
592
- msgstr "usunąć"
593
-
594
- #: notes.php:110
595
- #@ cpd
596
- msgid "edit"
597
- msgstr "edytować"
598
-
599
- #: counter-options.php:381
600
- #@ cpd
601
- msgid "Anonymous IP"
602
- msgstr "Anonimowy IP"
603
-
604
- #: counter-options.php:385
605
- #@ cpd
606
- msgid "Cache"
607
- msgstr "Cache"
608
-
609
- #: counter-options.php:386
610
- #@ cpd
611
- msgid "I use a cache plugin. Count these visits with ajax."
612
- msgstr "Używam cache plugin. Licz wizyty z AJAX."
613
-
614
- #: counter-options.php:465
615
- #@ cpd
616
- msgid "Substring of the user agent, separated by comma"
617
- msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
618
-
619
- #: counter-options.php:554
620
- #@ cpd
621
- msgid "Debug mode"
622
- msgstr "Tryb debugowania"
623
-
624
- #: counter-options.php:556
625
- #@ cpd
626
- msgid "Show debug informations at the bottom of all pages."
627
- msgstr "Pokaż debug analizę na dole wszystkich stron."
628
-
629
- #: counter-core.php:739
630
- #@ cpd
631
- msgid "Visitors per Country"
632
- msgstr "Gości na państwo"
633
-
634
- #: userperspan.php:38
635
- #@ cpd
636
- msgid "Start"
637
- msgstr "Start"
638
-
639
- #: userperspan.php:40
640
- #@ cpd
641
- msgid "End"
642
- msgstr "Koniec"
643
-
644
- #: userperspan.php:42
645
- #@ cpd
646
- msgid "PostID"
647
- msgstr "ID wpisu"
648
-
649
- #: userperspan.php:50
650
- #@ cpd
651
- msgid "no data found"
652
- msgstr "Nie znaleziono danych"
653
-
654
- #: counter-options.php:730
655
- #@ cpd
656
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
- msgstr "Możesz do wszystkich danych zapisać państwo. W tym celu IP będzie porównane z bazą danych GeoIP. To może trochę potrwać!"
658
-
659
- #: counter-options.php:351
660
- #@ cpd
661
- msgid "Counter"
662
- msgstr "Licznik"
663
-
664
- #: counter-options.php:389
665
- #@ cpd
666
- msgid "Clients and referrers"
667
- msgstr "Przeglądarka i referrer"
668
-
669
- #: counter-options.php:392
670
- #@ cpd
671
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
- msgstr "Zapisz i pokazuj przeglądarki i referrer. <br /> Potrzebuje dużo miejsca w bazie danych, ale daje więcej szczegółowych informacji użytkowników."
673
-
674
- #: counter-options.php:476
675
- #@ cpd
676
- msgid "Local URLs"
677
- msgstr "Lokalne adresy URL"
678
-
679
- #: counter-options.php:477
680
- #@ cpd
681
- msgid "Show local referrers too."
682
- msgstr "Pokaż też lokalny referrer."
683
-
684
- #: counter-options.php:485
685
- #@ default
686
- msgid "Posts"
687
- msgstr ""
688
-
689
- #: counter-options.php:485
690
- #@ default
691
- msgid "Pages"
692
- msgstr ""
693
-
694
- #: counter.php:158
695
- #: counter.php:1200
696
- #@ cpd
697
- msgid "Reads last week"
698
- msgstr "Odsłon w zeszłym tygodniu"
699
-
700
- #: counter.php:985
701
- #@ default
702
- msgid "Category"
703
- msgstr ""
704
-
705
- #: counter.php:988
706
- #@ default
707
- msgid "Tag"
708
- msgstr ""
709
-
710
- #: counter-core.php:692
711
- #@ default
712
- msgid "License"
713
- msgstr ""
714
-
715
- #: counter-core.php:726
716
- #: counter.php:1201
717
- #@ cpd
718
- msgid "Reads per month"
719
- msgstr "Odsłon miesięcznie"
720
-
721
- #: counter-core.php:734
722
- #@ cpd
723
- msgid "Referrer"
724
- msgstr "Referrer"
725
-
726
- #: counter.php:1220
727
- #@ default
728
- msgid "Title"
729
- msgstr ""
730
-
731
- #: counter-options.php:468
732
- #@ cpd
733
- msgid "Referrers - Entries"
734
- msgstr ""
735
-
736
- #: counter-options.php:469
737
- #@ cpd
738
- msgid "How many referrers do you want to see on dashboard page?"
739
- msgstr ""
740
-
741
- #: counter-options.php:472
742
- #@ cpd
743
- msgid "Referrers - Days"
744
- msgstr ""
745
-
746
- #: counter.php:845
747
- #, php-format
748
- #@ cpd
749
- msgid "The %s referrers in last %s days:"
750
- msgstr ""
751
-
752
- #: counter-core.php:724
753
- #@ cpd
754
- msgid "Visitors online"
755
- msgstr ""
756
-
757
- #: counter-core.php:186
758
- #, php-format
759
- #@ cpd
760
- msgid "\"Count per Day\" updated to version %s."
761
- msgstr ""
762
-
763
- #: counter-core.php:917
764
- #@ cpd
765
- msgid "Backup failed! Cannot open file"
766
- msgstr ""
767
-
768
- #: counter-core.php:940
769
- #, php-format
770
- #@ cpd
771
- msgid "Backup of %s entries in progress. Every point complies %s entries."
772
- msgstr ""
773
-
774
- #: counter-core.php:1027
775
- #@ cpd
776
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
- msgstr ""
778
-
779
- #: counter-core.php:1033
780
- #, php-format
781
- #@ cpd
782
- msgid "Backup of counter table saved in %s."
783
- msgstr ""
784
-
785
- #: counter-core.php:1035
786
- #, php-format
787
- #@ cpd
788
- msgid "Backup of counter options and collection saved in %s."
789
- msgstr ""
790
-
791
- #: counter-options.php:170
792
- #@ cpd
793
- msgid "Collection in progress..."
794
- msgstr ""
795
-
796
- #: counter-options.php:240
797
- #@ cpd
798
- msgid "Get Visitors per Post..."
799
- msgstr ""
800
-
801
- #: counter-options.php:261
802
- #@ cpd
803
- msgid "Delete old data..."
804
- msgstr ""
805
-
806
- #: counter-options.php:285
807
- #, php-format
808
- #@ cpd
809
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
- msgstr ""
811
-
812
- #: counter-options.php:294
813
- #@ cpd
814
- msgid "Installation of \"Count per Day\" checked"
815
- msgstr ""
816
-
817
- #: counter-options.php:342
818
- #: counter-options.php:566
819
- #@ default
820
- msgid "Tools"
821
- msgstr ""
822
-
823
- #: counter-options.php:394
824
- #@ cpd
825
- msgid "Save URL only, no query string."
826
- msgstr ""
827
-
828
- #: counter-options.php:419
829
- #@ cpd
830
- msgid "Who can see it"
831
- msgstr ""
832
-
833
- #: counter-options.php:428
834
- #@ cpd
835
- msgid "custom"
836
- msgstr ""
837
-
838
- #: counter-options.php:430
839
- #@ cpd
840
- msgid "and higher are allowed to see the statistics page."
841
- msgstr ""
842
-
843
- #: counter-options.php:432
844
- #, php-format
845
- #@ cpd
846
- msgid "Set the %s capability %s a user need:"
847
- msgstr ""
848
-
849
- #: counter-options.php:522
850
- #@ cpd
851
- msgid "Stylesheet"
852
- msgstr ""
853
-
854
- #: counter-options.php:525
855
- #@ cpd
856
- msgid "NO Stylesheet in Frontend"
857
- msgstr ""
858
-
859
- #: counter-options.php:526
860
- #@ cpd
861
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
- msgstr ""
863
-
864
- #: counter-options.php:534
865
- #: counter-options.php:639
866
- #@ cpd
867
- msgid "Backup"
868
- msgstr ""
869
-
870
- #: counter-options.php:537
871
- #@ cpd
872
- msgid "Entries per pass"
873
- msgstr ""
874
-
875
- #: counter-options.php:540
876
- #@ cpd
877
- msgid "How many entries should be saved per pass? Default: 10000"
878
- msgstr ""
879
-
880
- #: counter-options.php:545
881
- #@ cpd
882
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
- msgstr ""
884
-
885
- #: counter-options.php:643
886
- #, php-format
887
- #@ cpd
888
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
- msgstr ""
890
-
891
- #: counter-options.php:647
892
- #@ cpd
893
- msgid "Backup the database"
894
- msgstr ""
895
-
896
- #: counter-options.php:674
897
- #: counter-options.php:706
898
- #@ cpd
899
- msgid "Collect old data"
900
- msgstr ""
901
-
902
- #: counter-options.php:679
903
- #, php-format
904
- #@ cpd
905
- msgid "Current size of your counter table %s is %s."
906
- msgstr ""
907
-
908
- #: counter-options.php:681
909
- #@ cpd
910
- msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
- msgstr ""
912
-
913
- #: counter-options.php:686
914
- #, php-format
915
- #@ cpd
916
- msgid "Currently your collection contains data until %s."
917
- msgstr ""
918
-
919
- #: counter-options.php:690
920
- #@ cpd
921
- msgid "Normally new data will be added to the collection."
922
- msgstr ""
923
-
924
- #: counter-options.php:696
925
- #@ cpd
926
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
- msgstr ""
928
-
929
- #: counter-options.php:697
930
- #, php-format
931
- #@ cpd
932
- msgid "All collected data until %s will deleted."
933
- msgstr ""
934
-
935
- #: counter-options.php:702
936
- #, php-format
937
- #@ cpd
938
- msgid "Keep entries of last %s full months + current month in counter table."
939
- msgstr ""
940
-
941
- #: counter-options.php:761
942
- #@ cpd
943
- msgid "ReActivation"
944
- msgstr ""
945
-
946
- #: counter-options.php:764
947
- #@ cpd
948
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
- msgstr ""
950
-
951
- #: counter-options.php:769
952
- #@ cpd
953
- msgid "ReActivate the plugin"
954
- msgstr ""
955
-
956
- #: counter.php:165
957
- #: counter.php:899
958
- #@ cpd
959
- msgid "Visitors"
960
- msgstr ""
961
-
962
- #: counter.php:168
963
- #: counter.php:169
964
- #@ cpd
965
- msgid "Most visited day"
966
- msgstr ""
967
-
968
- #: counter.php:1239
969
- #@ cpd
970
- msgid "drag and drop to sort"
971
- msgstr ""
972
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v2.10.1\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2010-05-17 14:04+0200\n"
7
+ "Last-Translator: LeXuS <lexus@intrakardial.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Polish\n"
14
+ "X-Poedit-Country: POLAND\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
+ "X-Poedit-Basepath: ../\n"
18
+ "X-Poedit-Bookmarks: \n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+ "X-Textdomain-Support: yes"
21
+
22
+ #: counter-options.php:49
23
+ #@ cpd
24
+ msgid "Options updated"
25
+ msgstr "Opcje zaktualizowane"
26
+
27
+ #: counter-options.php:60
28
+ #, php-format
29
+ #@ cpd
30
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
31
+ msgstr "Kraje zaktualizowane. <b>%s</b> wpisów w %s bez kraju"
32
+
33
+ #: counter-options.php:65
34
+ #@ cpd
35
+ msgid "update next"
36
+ msgstr "Następna aktualizacja"
37
+
38
+ #: counter-options.php:102
39
+ #, php-format
40
+ #@ cpd
41
+ msgid "Mass Bots cleaned. %s counts deleted."
42
+ msgstr "Masowe boty wymazane. %s wpisów usuniętych."
43
+
44
+ #: counter-options.php:112
45
+ #, php-format
46
+ #@ cpd
47
+ msgid "Database cleaned. %s rows deleted."
48
+ msgstr "Baza danych wyczyszczona. %s wpisów usuniętych."
49
+
50
+ #: counter-options.php:122
51
+ #@ cpd
52
+ msgid "Counter reseted."
53
+ msgstr "Licznik skasowany"
54
+
55
+ #: counter-options.php:127
56
+ #: counter-options.php:810
57
+ #@ cpd
58
+ msgid "UNINSTALL Count per Day"
59
+ msgstr "USUŃ Count per Day"
60
+
61
+ #: counter-options.php:132
62
+ #: counter-options.php:133
63
+ #: counter-options.php:134
64
+ #, php-format
65
+ #@ cpd
66
+ msgid "Table %s deleted"
67
+ msgstr "Tabela %s usunięta"
68
+
69
+ #: counter-options.php:135
70
+ #@ cpd
71
+ msgid "Options deleted"
72
+ msgstr "Opcje usunięte"
73
+
74
+ #: counter-options.php:316
75
+ #: counter-options.php:796
76
+ #@ cpd
77
+ msgid "Uninstall"
78
+ msgstr "Odinstalowanie"
79
+
80
+ #: counter-options.php:317
81
+ #@ cpd
82
+ msgid "Click here"
83
+ msgstr "Kliknij tutaj"
84
+
85
+ #: counter-options.php:317
86
+ #@ cpd
87
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
88
+ msgstr "aby zakończyć odinstalownie i deaktywować \"Count per Day\"."
89
+
90
+ #: counter-options.php:355
91
+ #@ cpd
92
+ msgid "Online time"
93
+ msgstr "Czas bycia online"
94
+
95
+ #: counter-options.php:356
96
+ #@ cpd
97
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
98
+ msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
99
+
100
+ #: counter-options.php:359
101
+ #@ cpd
102
+ msgid "Logged on Users"
103
+ msgstr "Zalogowani użytkownicy"
104
+
105
+ #: counter-options.php:361
106
+ #@ cpd
107
+ msgid "count too"
108
+ msgstr "również liczyć"
109
+
110
+ #: counter-options.php:362
111
+ #@ cpd
112
+ msgid "until User Level"
113
+ msgstr "do poziomu użytkownika"
114
+
115
+ #: counter-options.php:373
116
+ #@ cpd
117
+ msgid "Auto counter"
118
+ msgstr "Licznik"
119
+
120
+ #: counter-options.php:374
121
+ #@ cpd
122
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
123
+ msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
124
+
125
+ #: counter-options.php:377
126
+ #@ cpd
127
+ msgid "Bots to ignore"
128
+ msgstr "Boty do ignorowania"
129
+
130
+ #: counter-options.php:403
131
+ #@ default
132
+ msgid "Dashboard"
133
+ msgstr ""
134
+
135
+ #: counter-core.php:727
136
+ #: counter-options.php:438
137
+ #@ cpd
138
+ msgid "Visitors per post"
139
+ msgstr "Gości na wpisie"
140
+
141
+ #: counter-options.php:439
142
+ #: counter-options.php:443
143
+ #@ cpd
144
+ msgid "How many posts do you want to see on dashboard page?"
145
+ msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
146
+
147
+ #: counter-options.php:442
148
+ #@ cpd
149
+ msgid "Latest Counts - Posts"
150
+ msgstr "Ostatnie Odsłony - Wpisy"
151
+
152
+ #: counter-options.php:446
153
+ #@ cpd
154
+ msgid "Latest Counts - Days"
155
+ msgstr "Ostatnie Odsłony - Dni"
156
+
157
+ #: counter-options.php:447
158
+ #: counter-options.php:451
159
+ #: counter-options.php:473
160
+ #@ cpd
161
+ msgid "How many days do you want look back?"
162
+ msgstr "Ile dni chcesz patrzeć wstecz?"
163
+
164
+ #: counter-options.php:450
165
+ #@ cpd
166
+ msgid "Chart - Days"
167
+ msgstr "Wykres - Dni"
168
+
169
+ #: counter-options.php:454
170
+ #@ cpd
171
+ msgid "Chart - Height"
172
+ msgstr "Wykres - Wysokość"
173
+
174
+ #: counter-options.php:455
175
+ #@ cpd
176
+ msgid "Height of the biggest bar"
177
+ msgstr "Wysokość najwyższego słupka"
178
+
179
+ #: counter-options.php:459
180
+ #@ cpd
181
+ msgid "Countries"
182
+ msgstr "Państwa"
183
+
184
+ #: counter-options.php:460
185
+ #@ cpd
186
+ msgid "How many countries do you want to see on dashboard page?"
187
+ msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
188
+
189
+ #: counter-options.php:488
190
+ #@ cpd
191
+ msgid "Show in lists"
192
+ msgstr "Pokaż na listach"
193
+
194
+ #: counter-options.php:489
195
+ #@ cpd
196
+ msgid "Show \"Reads per Post\" in a new column in post management views."
197
+ msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
198
+
199
+ #: counter-options.php:497
200
+ #@ cpd
201
+ msgid "Start Values"
202
+ msgstr "Startowe Wartości"
203
+
204
+ #: counter-options.php:501
205
+ #@ cpd
206
+ msgid "Here you can change the date of first count and add a start count."
207
+ msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
208
+
209
+ #: counter-options.php:505
210
+ #@ cpd
211
+ msgid "Start date"
212
+ msgstr "Data rozpoczęcia"
213
+
214
+ #: counter-options.php:506
215
+ #@ cpd
216
+ msgid "Your old Counter starts at?"
217
+ msgstr "Stary licznik zaczął w?"
218
+
219
+ #: counter-options.php:509
220
+ #: counter-options.php:513
221
+ #@ cpd
222
+ msgid "Start count"
223
+ msgstr "Stan początkowy licznika"
224
+
225
+ #: counter-options.php:510
226
+ #@ cpd
227
+ msgid "Add this value to \"Total visitors\"."
228
+ msgstr "Dodaj tą wartość do \"Gości razem\"."
229
+
230
+ #: counter-options.php:514
231
+ #@ cpd
232
+ msgid "Add this value to \"Total reads\"."
233
+ msgstr "Dodaj tą wartość do \"Odsłon razem\"."
234
+
235
+ #: counter-options.php:561
236
+ #@ cpd
237
+ msgid "Update options"
238
+ msgstr "Aktualizuj opcje"
239
+
240
+ #: counter-options.php:727
241
+ #@ cpd
242
+ msgid "GeoIP - Countries"
243
+ msgstr "GeoIP - Państwa"
244
+
245
+ #: counter-options.php:736
246
+ #@ cpd
247
+ msgid "Update old counter data"
248
+ msgstr "Aktualizuj stare dane licznika"
249
+
250
+ #: counter-options.php:748
251
+ #@ cpd
252
+ msgid "Update GeoIP database"
253
+ msgstr "Aktualizuj bazę danych GeoIP"
254
+
255
+ #: counter-options.php:743
256
+ #@ cpd
257
+ msgid "Download a new version of GeoIP.dat file."
258
+ msgstr "Pobierz nową wersję pliku GeoIP.dat."
259
+
260
+ #: counter-options.php:753
261
+ #@ cpd
262
+ msgid "More informations about GeoIP"
263
+ msgstr "Więcej informacji o GeoIP"
264
+
265
+ #: counter-options.php:580
266
+ #: massbots.php:35
267
+ #@ cpd
268
+ msgid "Mass Bots"
269
+ msgstr "Masowe boty"
270
+
271
+ #: counter-options.php:584
272
+ #, php-format
273
+ #@ cpd
274
+ msgid "Show all IPs with more than %s page views per day"
275
+ msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
276
+
277
+ #: counter-options.php:585
278
+ #: notes.php:71
279
+ #: userperspan.php:44
280
+ #@ cpd
281
+ msgid "show"
282
+ msgstr "pokaż"
283
+
284
+ #: counter-options.php:593
285
+ #@ cpd
286
+ msgid "IP"
287
+ msgstr "IP"
288
+
289
+ #: counter-options.php:594
290
+ #: notes.php:75
291
+ #@ cpd
292
+ #@ default
293
+ msgid "Date"
294
+ msgstr "Data"
295
+
296
+ #: counter-options.php:595
297
+ #@ cpd
298
+ msgid "Client"
299
+ msgstr "Klient"
300
+
301
+ #: counter-options.php:596
302
+ #@ cpd
303
+ msgid "Views"
304
+ msgstr "Wyświetlenia"
305
+
306
+ #: counter-options.php:611
307
+ #: counter-options.php:627
308
+ #, php-format
309
+ #@ cpd
310
+ msgid "Delete these %s counts"
311
+ msgstr "Usuń te s% dane"
312
+
313
+ #: counter-options.php:656
314
+ #: counter-options.php:665
315
+ #@ cpd
316
+ msgid "Clean the database"
317
+ msgstr "Wyczyść bazę danych"
318
+
319
+ #: counter-options.php:659
320
+ #@ cpd
321
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
322
+ msgstr "Możesz wyczyścić tabelę licznika przez usunięcie spamu.<br />Jeśli dodasz nowe boty do powyższej listy, to spam pozostanie w bazie danych. <br />Wtedy możesz uruchomić filter i ponownie usunąć wizyty botów."
323
+
324
+ #: counter-options.php:777
325
+ #: counter-options.php:787
326
+ #@ cpd
327
+ msgid "Reset the counter"
328
+ msgstr "Skasuj licznik"
329
+
330
+ #: counter-options.php:780
331
+ #@ cpd
332
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
333
+ msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
334
+
335
+ #: counter-options.php:799
336
+ #@ cpd
337
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
338
+ msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
339
+
340
+ #: counter-options.php:800
341
+ #@ cpd
342
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
343
+ msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
344
+
345
+ #: counter-options.php:803
346
+ #@ cpd
347
+ msgid "WARNING"
348
+ msgstr "UWAGA"
349
+
350
+ #: counter-options.php:804
351
+ #@ cpd
352
+ msgid "These tables (with ALL counter data) will be deleted."
353
+ msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
354
+
355
+ #: counter-options.php:806
356
+ #@ cpd
357
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
358
+ msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
359
+
360
+ #: counter-options.php:786
361
+ #: counter-options.php:809
362
+ #@ cpd
363
+ msgid "Yes"
364
+ msgstr "Tak"
365
+
366
+ #: counter-options.php:810
367
+ #@ cpd
368
+ msgid "You are sure to disable Count per Day and delete all data?"
369
+ msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
370
+
371
+ #: counter-options.php:714
372
+ #@ cpd
373
+ msgid "Support"
374
+ msgstr "Wsparcie"
375
+
376
+ #: counter-core.php:689
377
+ #, php-format
378
+ #@ cpd
379
+ msgid "Time for Count per Day: <code>%s</code>."
380
+ msgstr "Czas u Count per Day: <code>%s</code>."
381
+
382
+ #: counter-core.php:690
383
+ #@ cpd
384
+ msgid "Bug? Problem? Question? Hint? Praise?"
385
+ msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
386
+
387
+ #: counter-core.php:691
388
+ #, php-format
389
+ #@ cpd
390
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
391
+ msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
392
+
393
+ #: counter.php:155
394
+ #: counter.php:1197
395
+ #@ cpd
396
+ msgid "Total reads"
397
+ msgstr "Odsłon razem"
398
+
399
+ #: counter.php:156
400
+ #: counter.php:1198
401
+ #@ cpd
402
+ msgid "Reads today"
403
+ msgstr "Odsłon dzisiaj"
404
+
405
+ #: counter.php:157
406
+ #: counter.php:1199
407
+ #@ cpd
408
+ msgid "Reads yesterday"
409
+ msgstr "Odsłon wczoraj"
410
+
411
+ #: counter-core.php:723
412
+ #: counter.php:160
413
+ #: counter.php:1010
414
+ #: counter.php:1202
415
+ #@ cpd
416
+ msgid "Total visitors"
417
+ msgstr "Gości razem"
418
+
419
+ #: counter.php:161
420
+ #: counter.php:1208
421
+ #@ cpd
422
+ msgid "Visitors currently online"
423
+ msgstr "Goście obecnie online"
424
+
425
+ #: counter.php:162
426
+ #: counter.php:1203
427
+ #@ cpd
428
+ msgid "Visitors today"
429
+ msgstr "Gości dzisiaj"
430
+
431
+ #: counter.php:163
432
+ #: counter.php:1204
433
+ #@ cpd
434
+ msgid "Visitors yesterday"
435
+ msgstr "Gości wczoraj"
436
+
437
+ #: counter.php:164
438
+ #: counter.php:1205
439
+ #@ cpd
440
+ msgid "Visitors last week"
441
+ msgstr "Gości w preszłym tygodniu"
442
+
443
+ #: counter-core.php:729
444
+ #: counter.php:166
445
+ #: counter.php:263
446
+ #: counter.php:1012
447
+ #: counter.php:1207
448
+ #: userperspan.php:34
449
+ #@ cpd
450
+ msgid "Visitors per day"
451
+ msgstr "Gości dziennie"
452
+
453
+ #: counter.php:167
454
+ #: counter.php:825
455
+ #: counter.php:1209
456
+ #@ cpd
457
+ msgid "Counter starts on"
458
+ msgstr "Licznone od"
459
+
460
+ #: counter.php:788
461
+ #: notes.php:42
462
+ #: notes.php:76
463
+ #@ cpd
464
+ msgid "Notes"
465
+ msgstr "Notatka"
466
+
467
+ #: counter.php:672
468
+ #, php-format
469
+ #@ cpd
470
+ msgid "The %s most visited posts in last %s days:"
471
+ msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
472
+
473
+ #: counter.php:786
474
+ #@ default
475
+ msgid "Show"
476
+ msgstr ""
477
+
478
+ #: counter.php:821
479
+ #@ cpd
480
+ msgid "Other"
481
+ msgstr "Inne"
482
+
483
+ #: counter.php:976
484
+ #@ default
485
+ msgid "Edit Post"
486
+ msgstr ""
487
+
488
+ #: counter.php:991
489
+ #: massbots.php:52
490
+ #: userperspan.php:63
491
+ #@ default
492
+ msgid "Front page displays"
493
+ msgstr ""
494
+
495
+ #: counter-core.php:575
496
+ #: counter-options.php:341
497
+ #: counter-options.php:565
498
+ #@ default
499
+ msgid "Settings"
500
+ msgstr ""
501
+
502
+ #: counter-core.php:639
503
+ #: counter-options.php:392
504
+ #: counter.php:159
505
+ #: counter.php:875
506
+ #@ cpd
507
+ msgid "Reads"
508
+ msgstr "Odsłon"
509
+
510
+ #: counter.php:1196
511
+ #@ cpd
512
+ msgid "This post"
513
+ msgstr "Ten wpis"
514
+
515
+ #: counter.php:262
516
+ #@ cpd
517
+ msgid "Reads per day"
518
+ msgstr "Odsłon dziennie"
519
+
520
+ #: counter-core.php:725
521
+ #: counter.php:1206
522
+ #@ cpd
523
+ msgid "Visitors per month"
524
+ msgstr "Gości miesięcznie"
525
+
526
+ #: counter-core.php:733
527
+ #: counter-options.php:464
528
+ #@ cpd
529
+ msgid "Browsers"
530
+ msgstr "Przeglądarki"
531
+
532
+ #: counter-core.php:728
533
+ #@ cpd
534
+ msgid "Latest Counts"
535
+ msgstr "Ostatnie Odsłony"
536
+
537
+ #: counter-core.php:730
538
+ #@ default
539
+ msgid "Plugin"
540
+ msgstr ""
541
+
542
+ #: counter-core.php:738
543
+ #@ cpd
544
+ msgid "Reads per Country"
545
+ msgstr "Odsłon na państwo"
546
+
547
+ #: counter-core.php:754
548
+ #: counter.php:1124
549
+ #@ cpd
550
+ msgid "Statistics"
551
+ msgstr "Statystyki"
552
+
553
+ #: counter.php:353
554
+ #: counter.php:1041
555
+ #@ cpd
556
+ msgid "Map"
557
+ msgstr "Mapa"
558
+
559
+ #: geoip/geoip.php:93
560
+ #@ cpd
561
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
562
+ msgstr "Przepraszamy, niezbędne funkcje (zlib) nie są zainstalowane lub włączone w php.ini."
563
+
564
+ #: geoip/geoip.php:117
565
+ #@ cpd
566
+ msgid "New GeoIP database installed."
567
+ msgstr "Nowa GeoIP baza danych zainstalowana."
568
+
569
+ #: geoip/geoip.php:119
570
+ #@ cpd
571
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
572
+ msgstr "Przepraszamy, wystąpił błąd. Spróbuj ponownie lub sprawdzić prawa dostępu do katalogu \"geoip\", jest 777."
573
+
574
+ #: notes.php:77
575
+ #@ default
576
+ msgid "Action"
577
+ msgstr ""
578
+
579
+ #: notes.php:82
580
+ #@ cpd
581
+ msgid "add"
582
+ msgstr "dodać"
583
+
584
+ #: notes.php:98
585
+ #@ cpd
586
+ msgid "save"
587
+ msgstr "zapisać"
588
+
589
+ #: notes.php:99
590
+ #@ cpd
591
+ msgid "delete"
592
+ msgstr "usunąć"
593
+
594
+ #: notes.php:110
595
+ #@ cpd
596
+ msgid "edit"
597
+ msgstr "edytować"
598
+
599
+ #: counter-options.php:381
600
+ #@ cpd
601
+ msgid "Anonymous IP"
602
+ msgstr "Anonimowy IP"
603
+
604
+ #: counter-options.php:385
605
+ #@ cpd
606
+ msgid "Cache"
607
+ msgstr "Cache"
608
+
609
+ #: counter-options.php:386
610
+ #@ cpd
611
+ msgid "I use a cache plugin. Count these visits with ajax."
612
+ msgstr "Używam cache plugin. Licz wizyty z AJAX."
613
+
614
+ #: counter-options.php:465
615
+ #@ cpd
616
+ msgid "Substring of the user agent, separated by comma"
617
+ msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
618
+
619
+ #: counter-options.php:554
620
+ #@ cpd
621
+ msgid "Debug mode"
622
+ msgstr "Tryb debugowania"
623
+
624
+ #: counter-options.php:556
625
+ #@ cpd
626
+ msgid "Show debug informations at the bottom of all pages."
627
+ msgstr "Pokaż debug analizę na dole wszystkich stron."
628
+
629
+ #: counter-core.php:739
630
+ #@ cpd
631
+ msgid "Visitors per Country"
632
+ msgstr "Gości na państwo"
633
+
634
+ #: userperspan.php:38
635
+ #@ cpd
636
+ msgid "Start"
637
+ msgstr "Start"
638
+
639
+ #: userperspan.php:40
640
+ #@ cpd
641
+ msgid "End"
642
+ msgstr "Koniec"
643
+
644
+ #: userperspan.php:42
645
+ #@ cpd
646
+ msgid "PostID"
647
+ msgstr "ID wpisu"
648
+
649
+ #: userperspan.php:50
650
+ #@ cpd
651
+ msgid "no data found"
652
+ msgstr "Nie znaleziono danych"
653
+
654
+ #: counter-options.php:730
655
+ #@ cpd
656
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
657
+ msgstr "Możesz do wszystkich danych zapisać państwo. W tym celu IP będzie porównane z bazą danych GeoIP. To może trochę potrwać!"
658
+
659
+ #: counter-options.php:351
660
+ #@ cpd
661
+ msgid "Counter"
662
+ msgstr "Licznik"
663
+
664
+ #: counter-options.php:389
665
+ #@ cpd
666
+ msgid "Clients and referrers"
667
+ msgstr "Przeglądarka i referrer"
668
+
669
+ #: counter-options.php:392
670
+ #@ cpd
671
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
672
+ msgstr "Zapisz i pokazuj przeglądarki i referrer. <br /> Potrzebuje dużo miejsca w bazie danych, ale daje więcej szczegółowych informacji użytkowników."
673
+
674
+ #: counter-options.php:476
675
+ #@ cpd
676
+ msgid "Local URLs"
677
+ msgstr "Lokalne adresy URL"
678
+
679
+ #: counter-options.php:477
680
+ #@ cpd
681
+ msgid "Show local referrers too."
682
+ msgstr "Pokaż też lokalny referrer."
683
+
684
+ #: counter-options.php:485
685
+ #@ default
686
+ msgid "Posts"
687
+ msgstr ""
688
+
689
+ #: counter-options.php:485
690
+ #@ default
691
+ msgid "Pages"
692
+ msgstr ""
693
+
694
+ #: counter.php:158
695
+ #: counter.php:1200
696
+ #@ cpd
697
+ msgid "Reads last week"
698
+ msgstr "Odsłon w zeszłym tygodniu"
699
+
700
+ #: counter.php:985
701
+ #@ default
702
+ msgid "Category"
703
+ msgstr ""
704
+
705
+ #: counter.php:988
706
+ #@ default
707
+ msgid "Tag"
708
+ msgstr ""
709
+
710
+ #: counter-core.php:692
711
+ #@ default
712
+ msgid "License"
713
+ msgstr ""
714
+
715
+ #: counter-core.php:726
716
+ #: counter.php:1201
717
+ #@ cpd
718
+ msgid "Reads per month"
719
+ msgstr "Odsłon miesięcznie"
720
+
721
+ #: counter-core.php:734
722
+ #@ cpd
723
+ msgid "Referrer"
724
+ msgstr "Referrer"
725
+
726
+ #: counter.php:1220
727
+ #@ default
728
+ msgid "Title"
729
+ msgstr ""
730
+
731
+ #: counter-options.php:468
732
+ #@ cpd
733
+ msgid "Referrers - Entries"
734
+ msgstr ""
735
+
736
+ #: counter-options.php:469
737
+ #@ cpd
738
+ msgid "How many referrers do you want to see on dashboard page?"
739
+ msgstr ""
740
+
741
+ #: counter-options.php:472
742
+ #@ cpd
743
+ msgid "Referrers - Days"
744
+ msgstr ""
745
+
746
+ #: counter.php:845
747
+ #, php-format
748
+ #@ cpd
749
+ msgid "The %s referrers in last %s days:"
750
+ msgstr ""
751
+
752
+ #: counter-core.php:724
753
+ #@ cpd
754
+ msgid "Visitors online"
755
+ msgstr ""
756
+
757
+ #: counter-core.php:186
758
+ #, php-format
759
+ #@ cpd
760
+ msgid "\"Count per Day\" updated to version %s."
761
+ msgstr ""
762
+
763
+ #: counter-core.php:917
764
+ #@ cpd
765
+ msgid "Backup failed! Cannot open file"
766
+ msgstr ""
767
+
768
+ #: counter-core.php:940
769
+ #, php-format
770
+ #@ cpd
771
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
772
+ msgstr ""
773
+
774
+ #: counter-core.php:1027
775
+ #@ cpd
776
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
777
+ msgstr ""
778
+
779
+ #: counter-core.php:1033
780
+ #, php-format
781
+ #@ cpd
782
+ msgid "Backup of counter table saved in %s."
783
+ msgstr ""
784
+
785
+ #: counter-core.php:1035
786
+ #, php-format
787
+ #@ cpd
788
+ msgid "Backup of counter options and collection saved in %s."
789
+ msgstr ""
790
+
791
+ #: counter-options.php:170
792
+ #@ cpd
793
+ msgid "Collection in progress..."
794
+ msgstr ""
795
+
796
+ #: counter-options.php:240
797
+ #@ cpd
798
+ msgid "Get Visitors per Post..."
799
+ msgstr ""
800
+
801
+ #: counter-options.php:261
802
+ #@ cpd
803
+ msgid "Delete old data..."
804
+ msgstr ""
805
+
806
+ #: counter-options.php:285
807
+ #, php-format
808
+ #@ cpd
809
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
810
+ msgstr ""
811
+
812
+ #: counter-options.php:294
813
+ #@ cpd
814
+ msgid "Installation of \"Count per Day\" checked"
815
+ msgstr ""
816
+
817
+ #: counter-options.php:342
818
+ #: counter-options.php:566
819
+ #@ default
820
+ msgid "Tools"
821
+ msgstr ""
822
+
823
+ #: counter-options.php:394
824
+ #@ cpd
825
+ msgid "Save URL only, no query string."
826
+ msgstr ""
827
+
828
+ #: counter-options.php:419
829
+ #@ cpd
830
+ msgid "Who can see it"
831
+ msgstr ""
832
+
833
+ #: counter-options.php:428
834
+ #@ cpd
835
+ msgid "custom"
836
+ msgstr ""
837
+
838
+ #: counter-options.php:430
839
+ #@ cpd
840
+ msgid "and higher are allowed to see the statistics page."
841
+ msgstr ""
842
+
843
+ #: counter-options.php:432
844
+ #, php-format
845
+ #@ cpd
846
+ msgid "Set the %s capability %s a user need:"
847
+ msgstr ""
848
+
849
+ #: counter-options.php:522
850
+ #@ cpd
851
+ msgid "Stylesheet"
852
+ msgstr ""
853
+
854
+ #: counter-options.php:525
855
+ #@ cpd
856
+ msgid "NO Stylesheet in Frontend"
857
+ msgstr ""
858
+
859
+ #: counter-options.php:526
860
+ #@ cpd
861
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
862
+ msgstr ""
863
+
864
+ #: counter-options.php:534
865
+ #: counter-options.php:639
866
+ #@ cpd
867
+ msgid "Backup"
868
+ msgstr ""
869
+
870
+ #: counter-options.php:537
871
+ #@ cpd
872
+ msgid "Entries per pass"
873
+ msgstr ""
874
+
875
+ #: counter-options.php:540
876
+ #@ cpd
877
+ msgid "How many entries should be saved per pass? Default: 10000"
878
+ msgstr ""
879
+
880
+ #: counter-options.php:545
881
+ #@ cpd
882
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
883
+ msgstr ""
884
+
885
+ #: counter-options.php:643
886
+ #, php-format
887
+ #@ cpd
888
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
889
+ msgstr ""
890
+
891
+ #: counter-options.php:647
892
+ #@ cpd
893
+ msgid "Backup the database"
894
+ msgstr ""
895
+
896
+ #: counter-options.php:674
897
+ #: counter-options.php:706
898
+ #@ cpd
899
+ msgid "Collect old data"
900
+ msgstr ""
901
+
902
+ #: counter-options.php:679
903
+ #, php-format
904
+ #@ cpd
905
+ msgid "Current size of your counter table %s is %s."
906
+ msgstr ""
907
+
908
+ #: counter-options.php:681
909
+ #@ cpd
910
+ msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
911
+ msgstr ""
912
+
913
+ #: counter-options.php:686
914
+ #, php-format
915
+ #@ cpd
916
+ msgid "Currently your collection contains data until %s."
917
+ msgstr ""
918
+
919
+ #: counter-options.php:690
920
+ #@ cpd
921
+ msgid "Normally new data will be added to the collection."
922
+ msgstr ""
923
+
924
+ #: counter-options.php:696
925
+ #@ cpd
926
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
927
+ msgstr ""
928
+
929
+ #: counter-options.php:697
930
+ #, php-format
931
+ #@ cpd
932
+ msgid "All collected data until %s will deleted."
933
+ msgstr ""
934
+
935
+ #: counter-options.php:702
936
+ #, php-format
937
+ #@ cpd
938
+ msgid "Keep entries of last %s full months + current month in counter table."
939
+ msgstr ""
940
+
941
+ #: counter-options.php:761
942
+ #@ cpd
943
+ msgid "ReActivation"
944
+ msgstr ""
945
+
946
+ #: counter-options.php:764
947
+ #@ cpd
948
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
949
+ msgstr ""
950
+
951
+ #: counter-options.php:769
952
+ #@ cpd
953
+ msgid "ReActivate the plugin"
954
+ msgstr ""
955
+
956
+ #: counter.php:165
957
+ #: counter.php:899
958
+ #@ cpd
959
+ msgid "Visitors"
960
+ msgstr ""
961
+
962
+ #: counter.php:168
963
+ #: counter.php:169
964
+ #@ cpd
965
+ msgid "Most visited day"
966
+ msgstr ""
967
+
968
+ #: counter.php:1239
969
+ #@ cpd
970
+ msgid "drag and drop to sort"
971
+ msgstr ""
972
+
locale/cpd-pt_BR.po CHANGED
@@ -1,1094 +1,1094 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
- "PO-Revision-Date: 2012-07-14 11:54-0300\n"
7
- "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Portuguese\n"
14
- "X-Poedit-Country: BRAZIL\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:52
23
- msgid "Options updated"
24
- msgstr "Op&ccedil;&otilde;es atualizadas"
25
-
26
- #@ cpd
27
- #: counter-options.php:113
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Banco de dados limpo. %s linhas apagadas."
31
-
32
- #@ cpd
33
- #: counter-options.php:128
34
- #: counter-options.php:691
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "DESINSTALAR o Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:133
40
- #: counter-options.php:134
41
- #: counter-options.php:135
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Tabela %s apagada"
45
-
46
- #@ cpd
47
- #: counter-options.php:136
48
- msgid "Options deleted"
49
- msgstr "Op&ccedil;&otilde;es apagadas"
50
-
51
- #@ cpd
52
- #: counter-options.php:362
53
- #: counter-options.php:677
54
- msgid "Uninstall"
55
- msgstr "Desinstalar"
56
-
57
- #@ cpd
58
- #: counter-options.php:363
59
- msgid "Click here"
60
- msgstr "Clique aqui"
61
-
62
- #@ cpd
63
- #: counter-options.php:363
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
66
-
67
- #@ cpd
68
- #: counter-options.php:724
69
- msgid "Online time"
70
- msgstr "Per&iacute;odo online"
71
-
72
- #@ cpd
73
- #: counter-options.php:725
74
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
- msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
76
-
77
- #@ cpd
78
- #: counter-options.php:728
79
- msgid "Logged on Users"
80
- msgstr "Usu&aacute;rios logados"
81
-
82
- #@ cpd
83
- #: counter-options.php:730
84
- msgid "count too"
85
- msgstr "contar tamb&eacute;m"
86
-
87
- #@ cpd
88
- #: counter-options.php:742
89
- msgid "Auto counter"
90
- msgstr "Autocontador"
91
-
92
- #@ cpd
93
- #: counter-options.php:743
94
- msgid "Counts automatically single-posts and pages, no changes on template needed."
95
- msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
96
-
97
- #@ cpd
98
- #: counter-options.php:746
99
- msgid "Bots to ignore"
100
- msgstr "Bots a serem ignorados"
101
-
102
- #@ cpd
103
- #: counter-options.php:924
104
- msgid "Update options"
105
- msgstr "Atualizar op&ccedil;&otilde;es"
106
-
107
- #@ cpd
108
- #: counter-options.php:538
109
- #: counter-options.php:546
110
- msgid "Clean the database"
111
- msgstr "Limpar o banco de dados"
112
-
113
- #@ cpd
114
- #: counter-options.php:541
115
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
- msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
117
-
118
- #@ cpd
119
- #: counter-options.php:680
120
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
- msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
122
-
123
- #@ cpd
124
- #: counter-options.php:681
125
- msgid "Here you can delete the tables and disable \"Count per Day\"."
126
- msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
127
-
128
- #@ cpd
129
- #: counter-options.php:684
130
- msgid "WARNING"
131
- msgstr "ATEN&Ccedil;&Atilde;O"
132
-
133
- #@ cpd
134
- #: counter-options.php:685
135
- msgid "These tables (with ALL counter data) will be deleted."
136
- msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
137
-
138
- #@ cpd
139
- #: counter-options.php:687
140
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
- msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
142
-
143
- #@ cpd
144
- #: counter-options.php:667
145
- #: counter-options.php:690
146
- msgid "Yes"
147
- msgstr "Sim, quero"
148
-
149
- #@ cpd
150
- #: counter-options.php:691
151
- msgid "You are sure to disable Count per Day and delete all data?"
152
- msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
153
-
154
- #@ cpd
155
- #: counter-core.php:807
156
- #: counter.php:1227
157
- msgid "Statistics"
158
- msgstr "Estat&iacute;sticas"
159
-
160
- #@ cpd
161
- #: counter-core.php:775
162
- #: counter.php:187
163
- #: counter.php:1113
164
- #: counter.php:1305
165
- msgid "Total visitors"
166
- msgstr "Total de visitas"
167
-
168
- #@ cpd
169
- #: counter.php:188
170
- #: counter.php:1311
171
- msgid "Visitors currently online"
172
- msgstr "Visitantes online"
173
-
174
- #@ cpd
175
- #: counter.php:189
176
- #: counter.php:1306
177
- msgid "Visitors today"
178
- msgstr "Visitas hoje"
179
-
180
- #@ cpd
181
- #: counter.php:190
182
- #: counter.php:1307
183
- msgid "Visitors yesterday"
184
- msgstr "Visitas ontem"
185
-
186
- #@ cpd
187
- #: counter.php:191
188
- #: counter.php:1308
189
- msgid "Visitors last week"
190
- msgstr "Visitas semana passada"
191
-
192
- #@ cpd
193
- #: counter.php:194
194
- #: counter.php:872
195
- #: counter.php:1312
196
- msgid "Counter starts on"
197
- msgstr "In&iacute;cio da contagem"
198
-
199
- #@ cpd
200
- #: counter-core.php:781
201
- #: counter.php:193
202
- #: counter.php:292
203
- #: counter.php:1115
204
- #: counter.php:1310
205
- #: userperspan.php:34
206
- msgid "Visitors per day"
207
- msgstr "(m&eacute;dia) de visitas por dia"
208
-
209
- #@ cpd
210
- #: counter-core.php:777
211
- #: counter.php:1309
212
- msgid "Visitors per month"
213
- msgstr "Visitas por m&ecirc;s"
214
-
215
- #@ cpd
216
- #: counter-core.php:779
217
- #: counter-options.php:806
218
- msgid "Visitors per post"
219
- msgstr "Visitas por post"
220
-
221
- #@ cpd
222
- #: counter-options.php:63
223
- #, php-format
224
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
225
- msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
226
-
227
- #@ cpd
228
- #: counter-options.php:66
229
- msgid "update next"
230
- msgstr "Atualizar proximo"
231
-
232
- #@ cpd
233
- #: counter-options.php:106
234
- #, php-format
235
- msgid "Mass Bots cleaned. %s counts deleted."
236
- msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
237
-
238
- #@ cpd
239
- #: counter-options.php:123
240
- msgid "Counter reseted."
241
- msgstr "Contador reiniciado."
242
-
243
- #@ default
244
- #: counter-options.php:771
245
- msgid "Dashboard"
246
- msgstr "Painel"
247
-
248
- #@ cpd
249
- #: counter-options.php:807
250
- #: counter-options.php:811
251
- msgid "How many posts do you want to see on dashboard page?"
252
- msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
253
-
254
- #@ cpd
255
- #: counter-options.php:810
256
- msgid "Latest Counts - Posts"
257
- msgstr "Contagens Recentes - Posts"
258
-
259
- #@ cpd
260
- #: counter-options.php:814
261
- msgid "Latest Counts - Days"
262
- msgstr "Contagens Recentes - Dias"
263
-
264
- #@ cpd
265
- #: counter-options.php:815
266
- #: counter-options.php:819
267
- #: counter-options.php:841
268
- msgid "How many days do you want look back?"
269
- msgstr "Quantos dias atr&aacute;s você quer ver?"
270
-
271
- #@ cpd
272
- #: counter-options.php:818
273
- msgid "Chart - Days"
274
- msgstr "Gr&aacute;fico - Dias"
275
-
276
- #@ cpd
277
- #: counter-options.php:822
278
- msgid "Chart - Height"
279
- msgstr "Gr&aacute;fico - Altura"
280
-
281
- #@ cpd
282
- #: counter-options.php:823
283
- msgid "Height of the biggest bar"
284
- msgstr "Altura da barra maior"
285
-
286
- #@ cpd
287
- #: counter-options.php:827
288
- msgid "Countries"
289
- msgstr "Pa&iacute;ses"
290
-
291
- #@ cpd
292
- #: counter-options.php:828
293
- msgid "How many countries do you want to see on dashboard page?"
294
- msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
295
-
296
- #@ cpd
297
- #: counter-options.php:855
298
- msgid "Show in lists"
299
- msgstr "Exibir em listas"
300
-
301
- #@ cpd
302
- #: counter-options.php:856
303
- msgid "Show \"Reads per Post\" in a new column in post management views."
304
- msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
305
-
306
- #@ cpd
307
- #: counter-options.php:608
308
- msgid "GeoIP - Countries"
309
- msgstr "GeoIP - Pa&iacute;ses"
310
-
311
- #@ cpd
312
- #: counter-options.php:617
313
- msgid "Update old counter data"
314
- msgstr "Atualizar dados de contadores antigos"
315
-
316
- #@ cpd
317
- #: counter-options.php:629
318
- msgid "Update GeoIP database"
319
- msgstr "Atualizar Base de Dados GeoIP"
320
-
321
- #@ cpd
322
- #: counter-options.php:624
323
- msgid "Download a new version of GeoIP.dat file."
324
- msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
325
-
326
- #@ cpd
327
- #: counter-options.php:634
328
- msgid "More informations about GeoIP"
329
- msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
330
-
331
- #@ cpd
332
- #: counter-options.php:402
333
- #: massbots.php:36
334
- msgid "Mass Bots"
335
- msgstr "Mass Bots"
336
-
337
- #@ cpd
338
- #: counter-options.php:406
339
- #, php-format
340
- msgid "Show all IPs with more than %s page views per day"
341
- msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
342
-
343
- #@ cpd
344
- #: counter-options.php:407
345
- #: notes.php:71
346
- #: userperspan.php:44
347
- msgid "show"
348
- msgstr "exibir"
349
-
350
- #@ cpd
351
- #: counter-options.php:415
352
- msgid "IP"
353
- msgstr "IP"
354
-
355
- #@ cpd
356
- #@ default
357
- #: counter-options.php:416
358
- #: notes.php:75
359
- msgid "Date"
360
- msgstr "Data"
361
-
362
- #@ cpd
363
- #: counter-options.php:417
364
- msgid "Client"
365
- msgstr "Cliente"
366
-
367
- #@ cpd
368
- #: counter-options.php:418
369
- msgid "Views"
370
- msgstr "Exibi&ccedil;&otilde;es"
371
-
372
- #@ cpd
373
- #: counter-options.php:433
374
- #: counter-options.php:449
375
- #, php-format
376
- msgid "Delete these %s counts"
377
- msgstr "Deletar estes %s contadores"
378
-
379
- #@ cpd
380
- #: counter-options.php:658
381
- #: counter-options.php:668
382
- msgid "Reset the counter"
383
- msgstr "Reiniciar o contador"
384
-
385
- #@ cpd
386
- #: counter-options.php:661
387
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
388
- msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
389
-
390
- #@ cpd
391
- #: counter.php:705
392
- #, php-format
393
- msgid "The %s most visited posts in last %s days:"
394
- msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
395
-
396
- #@ cpd
397
- #: counter.php:861
398
- msgid "Other"
399
- msgstr "Outro"
400
-
401
- #@ default
402
- #: counter.php:1049
403
- #: massbots.php:53
404
- #: userperspan.php:63
405
- msgid "Front page displays"
406
- msgstr "Exibi&ccedil;&otilde;es da primeira página"
407
-
408
- #@ default
409
- #: counter-core.php:612
410
- #: counter-options.php:386
411
- #: counter-options.php:712
412
- msgid "Settings"
413
- msgstr "Configura&ccedil;&otilde;es"
414
-
415
- #@ cpd
416
- #: counter-core.php:677
417
- #: counter-options.php:761
418
- #: counter.php:186
419
- #: counter.php:922
420
- msgid "Reads"
421
- msgstr "Leituras"
422
-
423
- #@ cpd
424
- #: counter.php:1299
425
- msgid "This post"
426
- msgstr "Este post"
427
-
428
- #@ cpd
429
- #: counter.php:291
430
- msgid "Reads per day"
431
- msgstr "Leituras por dia"
432
-
433
- #@ cpd
434
- #: counter-core.php:786
435
- #: counter-options.php:832
436
- msgid "Browsers"
437
- msgstr "Navegadores"
438
-
439
- #@ cpd
440
- #: counter-core.php:780
441
- msgid "Latest Counts"
442
- msgstr "Contagens Recentes"
443
-
444
- #@ cpd
445
- #: counter-core.php:791
446
- msgid "Reads per Country"
447
- msgstr "Leituras por Pa&iacute;s"
448
-
449
- #@ cpd
450
- #: geoip/geoip.php:90
451
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
452
- msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
453
-
454
- #@ cpd
455
- #: geoip/geoip.php:114
456
- msgid "New GeoIP database installed."
457
- msgstr "Nova base de dados GeoIP instalada."
458
-
459
- #@ cpd
460
- #: geoip/geoip.php:116
461
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
462
- msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
463
-
464
- #@ cpd
465
- #: counter-options.php:731
466
- msgid "until User Level"
467
- msgstr "usuários do nível"
468
-
469
- #@ cpd
470
- #: counter-options.php:863
471
- msgid "Start Values"
472
- msgstr "Valor inicial"
473
-
474
- #@ cpd
475
- #: counter-options.php:867
476
- msgid "Here you can change the date of first count and add a start count."
477
- msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
478
-
479
- #@ cpd
480
- #: counter-options.php:871
481
- msgid "Start date"
482
- msgstr "Data inicial"
483
-
484
- #@ cpd
485
- #: counter-options.php:872
486
- msgid "Your old Counter starts at?"
487
- msgstr "Sua contagem antiga começa em?"
488
-
489
- #@ cpd
490
- #: counter-options.php:875
491
- #: counter-options.php:879
492
- msgid "Start count"
493
- msgstr "Contagem inicial"
494
-
495
- #@ cpd
496
- #: counter-options.php:876
497
- msgid "Add this value to \"Total visitors\"."
498
- msgstr "Adicione este valor para \"Total visitors\"."
499
-
500
- #@ cpd
501
- #: counter-options.php:699
502
- msgid "Support"
503
- msgstr "Suporte"
504
-
505
- #@ cpd
506
- #: counter-core.php:741
507
- msgid "Bug? Problem? Question? Hint? Praise?"
508
- msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
509
-
510
- #@ cpd
511
- #: counter-core.php:742
512
- #, php-format
513
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
- msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
515
-
516
- #@ default
517
- #: counter.php:821
518
- msgid "Show"
519
- msgstr "Mostrar"
520
-
521
- #@ cpd
522
- #: counter.php:823
523
- #: notes.php:42
524
- #: notes.php:76
525
- msgid "Notes"
526
- msgstr "Notas"
527
-
528
- #@ default
529
- #: counter.php:1034
530
- msgid "Edit Post"
531
- msgstr "Editar Post"
532
-
533
- #@ default
534
- #: counter-core.php:783
535
- msgid "Plugin"
536
- msgstr "Plugin"
537
-
538
- #@ cpd
539
- #: counter-core.php:740
540
- #, php-format
541
- msgid "Time for Count per Day: <code>%s</code>."
542
- msgstr "Tempo para Contagem por Dia: <code>%s</code>."
543
-
544
- #@ default
545
- #: notes.php:77
546
- msgid "Action"
547
- msgstr "A&ccedil;&atilde;o"
548
-
549
- #@ cpd
550
- #: notes.php:82
551
- msgid "add"
552
- msgstr "Adicionar"
553
-
554
- #@ cpd
555
- #: notes.php:98
556
- msgid "save"
557
- msgstr "Salvar"
558
-
559
- #@ cpd
560
- #: notes.php:99
561
- msgid "delete"
562
- msgstr "Apagar"
563
-
564
- #@ cpd
565
- #: notes.php:110
566
- msgid "edit"
567
- msgstr "Editar"
568
-
569
- #@ cpd
570
- #: counter-options.php:750
571
- msgid "Anonymous IP"
572
- msgstr "IP An&ocirc;nimo"
573
-
574
- #@ cpd
575
- #: counter-options.php:754
576
- msgid "Cache"
577
- msgstr "Cache"
578
-
579
- #@ cpd
580
- #: counter-options.php:755
581
- msgid "I use a cache plugin. Count these visits with ajax."
582
- msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
583
-
584
- #@ cpd
585
- #: counter-options.php:833
586
- msgid "Substring of the user agent, separated by comma"
587
- msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
588
-
589
- #@ cpd
590
- #: counter-options.php:880
591
- msgid "Add this value to \"Total reads\"."
592
- msgstr "Adicione este valor ao \"Total de Leituras\"."
593
-
594
- #@ cpd
595
- #: counter-options.php:917
596
- msgid "Debug mode"
597
- msgstr "Modo de depura&ccedil;&atilde;o"
598
-
599
- #@ cpd
600
- #: counter-options.php:919
601
- msgid "Show debug informations at the bottom of all pages."
602
- msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
603
-
604
- #@ cpd
605
- #: counter.php:182
606
- #: counter.php:1300
607
- msgid "Total reads"
608
- msgstr "Total de Leituras"
609
-
610
- #@ cpd
611
- #: counter.php:183
612
- #: counter.php:1301
613
- msgid "Reads today"
614
- msgstr "Leituras Hoje"
615
-
616
- #@ cpd
617
- #: counter.php:184
618
- #: counter.php:1302
619
- msgid "Reads yesterday"
620
- msgstr "Leituras Ontem"
621
-
622
- #@ cpd
623
- #: counter-core.php:792
624
- msgid "Visitors per Country"
625
- msgstr "Visitantes por Pa&iacute;is"
626
-
627
- #@ cpd
628
- #: counter.php:382
629
- #: counter.php:1144
630
- msgid "Map"
631
- msgstr "Mapa"
632
-
633
- #@ cpd
634
- #: userperspan.php:38
635
- msgid "Start"
636
- msgstr "Iniciar"
637
-
638
- #@ cpd
639
- #: userperspan.php:40
640
- msgid "End"
641
- msgstr "Fim"
642
-
643
- #@ cpd
644
- #: userperspan.php:42
645
- msgid "PostID"
646
- msgstr "PostID"
647
-
648
- #@ cpd
649
- #: userperspan.php:50
650
- msgid "no data found"
651
- msgstr "N&atilde;o foram encontrados dados"
652
-
653
- #@ cpd
654
- #: counter-options.php:611
655
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
- msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
657
-
658
- #@ cpd
659
- #: counter-options.php:720
660
- msgid "Counter"
661
- msgstr "contador"
662
-
663
- #@ cpd
664
- #: counter-options.php:758
665
- msgid "Clients and referrers"
666
- msgstr "Clientes e Referências"
667
-
668
- #@ cpd
669
- #: counter-options.php:761
670
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
- msgstr "Salvar e Exibir Clientes e Referências"
672
-
673
- #@ cpd
674
- #: counter-options.php:844
675
- msgid "Local URLs"
676
- msgstr "URLs Locais"
677
-
678
- #@ cpd
679
- #: counter-options.php:845
680
- msgid "Show local referrers too."
681
- msgstr "Também exibir referência local."
682
-
683
- #@ default
684
- #: counter-options.php:852
685
- msgid "Posts"
686
- msgstr "Posts"
687
-
688
- #@ default
689
- #: counter-options.php:852
690
- msgid "Pages"
691
- msgstr "Páginas"
692
-
693
- #@ cpd
694
- #: counter.php:185
695
- #: counter.php:1303
696
- msgid "Reads last week"
697
- msgstr "Leituras na semana passada"
698
-
699
- #@ default
700
- #: counter.php:1043
701
- msgid "Category"
702
- msgstr "Categoria"
703
-
704
- #@ default
705
- #: counter.php:1046
706
- msgid "Tag"
707
- msgstr "Teg"
708
-
709
- #@ default
710
- #: counter-core.php:743
711
- msgid "License"
712
- msgstr "License"
713
-
714
- #@ cpd
715
- #: counter-core.php:778
716
- #: counter.php:1304
717
- msgid "Reads per month"
718
- msgstr "Leituras por mês"
719
-
720
- #@ cpd
721
- #: counter-core.php:787
722
- msgid "Referrer"
723
- msgstr "Referência"
724
-
725
- #@ default
726
- #: counter.php:1323
727
- msgid "Title"
728
- msgstr "Título"
729
-
730
- #@ cpd
731
- #: counter-options.php:836
732
- msgid "Referrers - Entries"
733
- msgstr "Referência - entradas"
734
-
735
- #@ cpd
736
- #: counter-options.php:837
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "Quantas referência você quer ver no painel?"
739
-
740
- #@ cpd
741
- #: counter-options.php:840
742
- msgid "Referrers - Days"
743
- msgstr "Referência - Dias"
744
-
745
- #@ cpd
746
- #: counter.php:892
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "AA %s referências nos últimos %s dias:"
750
-
751
- #@ cpd
752
- #: counter-core.php:776
753
- msgid "Visitors online"
754
- msgstr "Visitantes online"
755
-
756
- #@ cpd
757
- #: counter-core.php:225
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "Atualizar \"Count per Day\" para a versão %s."
761
-
762
- #@ cpd
763
- #: counter-core.php:977
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "Backup falhou. O arquivo não abriu"
766
-
767
- #@ cpd
768
- #: counter-core.php:1004
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
772
-
773
- #@ cpd
774
- #: counter-core.php:1095
775
- #: counter-core.php:1103
776
- #, php-format
777
- msgid "Backup of counter table saved in %s."
778
- msgstr "Backup da tabela do contador salvo em %s."
779
-
780
- #@ cpd
781
- #: counter-core.php:1097
782
- #: counter-core.php:1105
783
- #, php-format
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
- #@ cpd
788
- #: counter-options.php:169
789
- msgid "Collection in progress..."
790
- msgstr "Acumulador em progresso..."
791
-
792
- #@ cpd
793
- #: counter-options.php:263
794
- msgid "Get Visitors per Post..."
795
- msgstr "Obter visitas por Post..."
796
-
797
- #@ cpd
798
- #: counter-options.php:284
799
- msgid "Delete old data..."
800
- msgstr "Deletar dados antigos..."
801
-
802
- #@ cpd
803
- #: counter-options.php:308
804
- #, php-format
805
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
806
- msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
807
-
808
- #@ cpd
809
- #: counter-options.php:317
810
- msgid "Installation of \"Count per Day\" checked"
811
- msgstr "Instalação do \"Count per Day\" checada"
812
-
813
- #@ default
814
- #: counter-options.php:385
815
- #: counter-options.php:711
816
- msgid "Tools"
817
- msgstr "Ferramentas"
818
-
819
- #@ cpd
820
- #: counter-options.php:763
821
- msgid "Save URL only, no query string."
822
- msgstr "Salvar somente URL, sem sequencia de caracteres"
823
-
824
- #@ cpd
825
- #: counter-options.php:787
826
- msgid "Who can see it"
827
- msgstr "Quem pode ver isto"
828
-
829
- #@ cpd
830
- #: counter-options.php:796
831
- msgid "custom"
832
- msgstr "Customizar"
833
-
834
- #@ cpd
835
- #: counter-options.php:798
836
- msgid "and higher are allowed to see the statistics page."
837
- msgstr "e superior têm permissão para ver a página de estatísticas."
838
-
839
- #@ cpd
840
- #: counter-options.php:800
841
- #, php-format
842
- msgid "Set the %s capability %s a user need:"
843
- msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
844
-
845
- #@ cpd
846
- #: counter-options.php:887
847
- msgid "Stylesheet"
848
- msgstr "Estilo"
849
-
850
- #@ cpd
851
- #: counter-options.php:890
852
- msgid "NO Stylesheet in Frontend"
853
- msgstr "SEM Estilo na interface pública"
854
-
855
- #@ cpd
856
- #: counter-options.php:891
857
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
858
- msgstr "Não carregue o estilo \"counter.css\" na interface pública"
859
-
860
- #@ cpd
861
- #: counter-options.php:461
862
- #: counter-options.php:898
863
- msgid "Backup"
864
- msgstr "Backup"
865
-
866
- #@ cpd
867
- #: counter-options.php:901
868
- msgid "Entries per pass"
869
- msgstr "Entradas por passagem"
870
-
871
- #@ cpd
872
- #: counter-options.php:904
873
- msgid "How many entries should be saved per pass? Default: 10000"
874
- msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
875
-
876
- #@ cpd
877
- #: counter-options.php:909
878
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
879
- 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."
880
-
881
- #@ cpd
882
- #: counter-options.php:465
883
- #, php-format
884
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
885
- msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
886
-
887
- #@ cpd
888
- #: counter-options.php:472
889
- msgid "Backup the database"
890
- msgstr "Backup da base de dados"
891
-
892
- #@ cpd
893
- #: counter-options.php:563
894
- #: counter-options.php:595
895
- msgid "Collect old data"
896
- msgstr "Coletar dados antigos"
897
-
898
- #@ cpd
899
- #: counter-options.php:568
900
- #, php-format
901
- msgid "Current size of your counter table %s is %s."
902
- msgstr "O tamanho atual da sua tabela de contador %s é %s."
903
-
904
- #@ cpd
905
- #: counter-options.php:570
906
- 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."
907
- 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."
908
-
909
- #@ cpd
910
- #: counter-options.php:575
911
- #, php-format
912
- msgid "Currently your collection contains data until %s."
913
- msgstr "Atualmente sua coleção contém dados até %s"
914
-
915
- #@ cpd
916
- #: counter-options.php:579
917
- msgid "Normally new data will be added to the collection."
918
- msgstr "Dados novos são adicionados normalmente à coleção."
919
-
920
- #@ cpd
921
- #: counter-options.php:585
922
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
923
- msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
924
-
925
- #@ cpd
926
- #: counter-options.php:586
927
- #, php-format
928
- msgid "All collected data until %s will deleted."
929
- msgstr "Todos os dados coletados até %s serão excluidos."
930
-
931
- #@ cpd
932
- #: counter-options.php:591
933
- #, php-format
934
- msgid "Keep entries of last %s full months + current month in counter table."
935
- msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
936
-
937
- #@ cpd
938
- #: counter-options.php:642
939
- msgid "ReActivation"
940
- msgstr "Reativação"
941
-
942
- #@ cpd
943
- #: counter-options.php:645
944
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
945
- msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
946
-
947
- #@ cpd
948
- #: counter-options.php:650
949
- msgid "ReActivate the plugin"
950
- msgstr "Reativar o plugin"
951
-
952
- #@ cpd
953
- #: counter.php:192
954
- #: counter.php:946
955
- msgid "Visitors"
956
- msgstr "Visitantes"
957
-
958
- #@ cpd
959
- #: counter.php:195
960
- #: counter.php:196
961
- msgid "Most visited day"
962
- msgstr "Dia mais visitado"
963
-
964
- #@ cpd
965
- #: counter.php:1342
966
- msgid "drag and drop to sort"
967
- msgstr "arrastar e soltar para classificar"
968
-
969
- #@ cpd
970
- #: counter-core.php:782
971
- #: counter-options.php:836
972
- #: counter-options.php:840
973
- msgid "Search strings"
974
- msgstr "Buscar Strings"
975
-
976
- #@ cpd
977
- #: counter-core.php:1091
978
- msgid "Your can download the backup files here and now."
979
- msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
980
-
981
- #@ cpd
982
- #: counter-core.php:1161
983
- msgid "Error while reading backup file!"
984
- msgstr "Erro ao ler o arquivo de BackUp!"
985
-
986
- #@ cpd
987
- #: counter-core.php:1165
988
- #, php-format
989
- msgid "The backup was added to counter table %s."
990
- msgstr "O backup foi adicionado à tabela de contadores %s"
991
-
992
- #@ cpd
993
- #: counter-core.php:1167
994
- #, php-format
995
- msgid "The counter table %s was restored from backup."
996
- msgstr "A tabela de contadores %s foi restaurada do backup."
997
-
998
- #@ cpd
999
- #: counter-core.php:1184
1000
- msgid "Options restored from backup."
1001
- msgstr "Opções restauradas do backup."
1002
-
1003
- #@ cpd
1004
- #: counter-options.php:332
1005
- msgid "Old search strings deleted"
1006
- msgstr "Sequencias de pesquisas antigas apagadas."
1007
-
1008
- #@ cpd
1009
- #: counter-options.php:468
1010
- msgid "Download only"
1011
- msgstr "Somente download"
1012
-
1013
- #@ cpd
1014
- #: counter-options.php:500
1015
- msgid "Settings and collections"
1016
- msgstr "Configurações e Coleções"
1017
-
1018
- #@ cpd
1019
- #: counter-options.php:505
1020
- #, php-format
1021
- msgid "Counter table %s"
1022
- msgstr "Tabela de Contador %s"
1023
-
1024
- #@ cpd
1025
- #: counter-options.php:512
1026
- #, php-format
1027
- msgid "Add data from the backup file %s to existing counter table?"
1028
- msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1029
-
1030
- #@ cpd
1031
- #: counter-options.php:512
1032
- msgid "Add"
1033
- msgstr "Adicionar"
1034
-
1035
- #@ cpd
1036
- #: counter-options.php:516
1037
- #, php-format
1038
- msgid "Restore data from the backup file %s ?"
1039
- msgstr "Restaurar dados a partir do backup %s ?"
1040
-
1041
- #@ default
1042
- #: counter-options.php:516
1043
- msgid "Restore"
1044
- msgstr "Restaurar"
1045
-
1046
- #@ default
1047
- #: counter-options.php:518
1048
- msgid "Delete"
1049
- msgstr "Apagar"
1050
-
1051
- #@ cpd
1052
- #: counter-options.php:519
1053
- #, php-format
1054
- msgid "Delete the backup file %s ?"
1055
- msgstr "Apagar arquivo backup %s ?"
1056
-
1057
- #@ cpd
1058
- #: counter-options.php:525
1059
- msgid "add backup to current counter table"
1060
- msgstr "adicionar backup para a tabela de contador atual"
1061
-
1062
- #@ cpd
1063
- #: counter-options.php:526
1064
- msgid "replace current counter table with with backup"
1065
- msgstr "substituir a tabela de contador atual pelo backup"
1066
-
1067
- #@ cpd
1068
- #: counter-options.php:527
1069
- msgid "delete backup file"
1070
- msgstr "apagar arquivo backup"
1071
-
1072
- #@ cpd
1073
- #: counter-options.php:552
1074
- #, php-format
1075
- msgid "Delete search strings older than %s days."
1076
- msgstr "Apagar sequencias de busca anteriores a %s dias."
1077
-
1078
- #@ cpd
1079
- #: counter-options.php:554
1080
- msgid "Delete search strings"
1081
- msgstr "Apagar sequencias de busca"
1082
-
1083
- #@ cpd
1084
- #: counter.php:1089
1085
- #, php-format
1086
- msgid "The %s most searched strings:"
1087
- msgstr "A %s string mais procurada:"
1088
-
1089
- #@ cpd
1090
- #: counter.php:1098
1091
- #, php-format
1092
- msgid "The search strings of the last %s days:"
1093
- msgstr "A série de busca dos últimos %s dias:"
1094
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
+ "PO-Revision-Date: 2012-07-14 11:54-0300\n"
7
+ "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Portuguese\n"
14
+ "X-Poedit-Country: BRAZIL\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:52
23
+ msgid "Options updated"
24
+ msgstr "Op&ccedil;&otilde;es atualizadas"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:113
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Banco de dados limpo. %s linhas apagadas."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:128
34
+ #: counter-options.php:691
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "DESINSTALAR o Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:133
40
+ #: counter-options.php:134
41
+ #: counter-options.php:135
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Tabela %s apagada"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:136
48
+ msgid "Options deleted"
49
+ msgstr "Op&ccedil;&otilde;es apagadas"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:362
53
+ #: counter-options.php:677
54
+ msgid "Uninstall"
55
+ msgstr "Desinstalar"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:363
59
+ msgid "Click here"
60
+ msgstr "Clique aqui"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:363
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
66
+
67
+ #@ cpd
68
+ #: counter-options.php:724
69
+ msgid "Online time"
70
+ msgstr "Per&iacute;odo online"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:725
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:728
79
+ msgid "Logged on Users"
80
+ msgstr "Usu&aacute;rios logados"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:730
84
+ msgid "count too"
85
+ msgstr "contar tamb&eacute;m"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:742
89
+ msgid "Auto counter"
90
+ msgstr "Autocontador"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:743
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:746
99
+ msgid "Bots to ignore"
100
+ msgstr "Bots a serem ignorados"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:924
104
+ msgid "Update options"
105
+ msgstr "Atualizar op&ccedil;&otilde;es"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:538
109
+ #: counter-options.php:546
110
+ msgid "Clean the database"
111
+ msgstr "Limpar o banco de dados"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:541
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:680
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:681
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:684
130
+ msgid "WARNING"
131
+ msgstr "ATEN&Ccedil;&Atilde;O"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:685
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:687
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:667
145
+ #: counter-options.php:690
146
+ msgid "Yes"
147
+ msgstr "Sim, quero"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:691
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:807
156
+ #: counter.php:1227
157
+ msgid "Statistics"
158
+ msgstr "Estat&iacute;sticas"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:775
162
+ #: counter.php:187
163
+ #: counter.php:1113
164
+ #: counter.php:1305
165
+ msgid "Total visitors"
166
+ msgstr "Total de visitas"
167
+
168
+ #@ cpd
169
+ #: counter.php:188
170
+ #: counter.php:1311
171
+ msgid "Visitors currently online"
172
+ msgstr "Visitantes online"
173
+
174
+ #@ cpd
175
+ #: counter.php:189
176
+ #: counter.php:1306
177
+ msgid "Visitors today"
178
+ msgstr "Visitas hoje"
179
+
180
+ #@ cpd
181
+ #: counter.php:190
182
+ #: counter.php:1307
183
+ msgid "Visitors yesterday"
184
+ msgstr "Visitas ontem"
185
+
186
+ #@ cpd
187
+ #: counter.php:191
188
+ #: counter.php:1308
189
+ msgid "Visitors last week"
190
+ msgstr "Visitas semana passada"
191
+
192
+ #@ cpd
193
+ #: counter.php:194
194
+ #: counter.php:872
195
+ #: counter.php:1312
196
+ msgid "Counter starts on"
197
+ msgstr "In&iacute;cio da contagem"
198
+
199
+ #@ cpd
200
+ #: counter-core.php:781
201
+ #: counter.php:193
202
+ #: counter.php:292
203
+ #: counter.php:1115
204
+ #: counter.php:1310
205
+ #: userperspan.php:34
206
+ msgid "Visitors per day"
207
+ msgstr "(m&eacute;dia) de visitas por dia"
208
+
209
+ #@ cpd
210
+ #: counter-core.php:777
211
+ #: counter.php:1309
212
+ msgid "Visitors per month"
213
+ msgstr "Visitas por m&ecirc;s"
214
+
215
+ #@ cpd
216
+ #: counter-core.php:779
217
+ #: counter-options.php:806
218
+ msgid "Visitors per post"
219
+ msgstr "Visitas por post"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:63
223
+ #, php-format
224
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
225
+ msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
226
+
227
+ #@ cpd
228
+ #: counter-options.php:66
229
+ msgid "update next"
230
+ msgstr "Atualizar proximo"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:106
234
+ #, php-format
235
+ msgid "Mass Bots cleaned. %s counts deleted."
236
+ msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
237
+
238
+ #@ cpd
239
+ #: counter-options.php:123
240
+ msgid "Counter reseted."
241
+ msgstr "Contador reiniciado."
242
+
243
+ #@ default
244
+ #: counter-options.php:771
245
+ msgid "Dashboard"
246
+ msgstr "Painel"
247
+
248
+ #@ cpd
249
+ #: counter-options.php:807
250
+ #: counter-options.php:811
251
+ msgid "How many posts do you want to see on dashboard page?"
252
+ msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
253
+
254
+ #@ cpd
255
+ #: counter-options.php:810
256
+ msgid "Latest Counts - Posts"
257
+ msgstr "Contagens Recentes - Posts"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:814
261
+ msgid "Latest Counts - Days"
262
+ msgstr "Contagens Recentes - Dias"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:815
266
+ #: counter-options.php:819
267
+ #: counter-options.php:841
268
+ msgid "How many days do you want look back?"
269
+ msgstr "Quantos dias atr&aacute;s você quer ver?"
270
+
271
+ #@ cpd
272
+ #: counter-options.php:818
273
+ msgid "Chart - Days"
274
+ msgstr "Gr&aacute;fico - Dias"
275
+
276
+ #@ cpd
277
+ #: counter-options.php:822
278
+ msgid "Chart - Height"
279
+ msgstr "Gr&aacute;fico - Altura"
280
+
281
+ #@ cpd
282
+ #: counter-options.php:823
283
+ msgid "Height of the biggest bar"
284
+ msgstr "Altura da barra maior"
285
+
286
+ #@ cpd
287
+ #: counter-options.php:827
288
+ msgid "Countries"
289
+ msgstr "Pa&iacute;ses"
290
+
291
+ #@ cpd
292
+ #: counter-options.php:828
293
+ msgid "How many countries do you want to see on dashboard page?"
294
+ msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
295
+
296
+ #@ cpd
297
+ #: counter-options.php:855
298
+ msgid "Show in lists"
299
+ msgstr "Exibir em listas"
300
+
301
+ #@ cpd
302
+ #: counter-options.php:856
303
+ msgid "Show \"Reads per Post\" in a new column in post management views."
304
+ msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
305
+
306
+ #@ cpd
307
+ #: counter-options.php:608
308
+ msgid "GeoIP - Countries"
309
+ msgstr "GeoIP - Pa&iacute;ses"
310
+
311
+ #@ cpd
312
+ #: counter-options.php:617
313
+ msgid "Update old counter data"
314
+ msgstr "Atualizar dados de contadores antigos"
315
+
316
+ #@ cpd
317
+ #: counter-options.php:629
318
+ msgid "Update GeoIP database"
319
+ msgstr "Atualizar Base de Dados GeoIP"
320
+
321
+ #@ cpd
322
+ #: counter-options.php:624
323
+ msgid "Download a new version of GeoIP.dat file."
324
+ msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
325
+
326
+ #@ cpd
327
+ #: counter-options.php:634
328
+ msgid "More informations about GeoIP"
329
+ msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
330
+
331
+ #@ cpd
332
+ #: counter-options.php:402
333
+ #: massbots.php:36
334
+ msgid "Mass Bots"
335
+ msgstr "Mass Bots"
336
+
337
+ #@ cpd
338
+ #: counter-options.php:406
339
+ #, php-format
340
+ msgid "Show all IPs with more than %s page views per day"
341
+ msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
342
+
343
+ #@ cpd
344
+ #: counter-options.php:407
345
+ #: notes.php:71
346
+ #: userperspan.php:44
347
+ msgid "show"
348
+ msgstr "exibir"
349
+
350
+ #@ cpd
351
+ #: counter-options.php:415
352
+ msgid "IP"
353
+ msgstr "IP"
354
+
355
+ #@ cpd
356
+ #@ default
357
+ #: counter-options.php:416
358
+ #: notes.php:75
359
+ msgid "Date"
360
+ msgstr "Data"
361
+
362
+ #@ cpd
363
+ #: counter-options.php:417
364
+ msgid "Client"
365
+ msgstr "Cliente"
366
+
367
+ #@ cpd
368
+ #: counter-options.php:418
369
+ msgid "Views"
370
+ msgstr "Exibi&ccedil;&otilde;es"
371
+
372
+ #@ cpd
373
+ #: counter-options.php:433
374
+ #: counter-options.php:449
375
+ #, php-format
376
+ msgid "Delete these %s counts"
377
+ msgstr "Deletar estes %s contadores"
378
+
379
+ #@ cpd
380
+ #: counter-options.php:658
381
+ #: counter-options.php:668
382
+ msgid "Reset the counter"
383
+ msgstr "Reiniciar o contador"
384
+
385
+ #@ cpd
386
+ #: counter-options.php:661
387
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
388
+ msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
389
+
390
+ #@ cpd
391
+ #: counter.php:705
392
+ #, php-format
393
+ msgid "The %s most visited posts in last %s days:"
394
+ msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
395
+
396
+ #@ cpd
397
+ #: counter.php:861
398
+ msgid "Other"
399
+ msgstr "Outro"
400
+
401
+ #@ default
402
+ #: counter.php:1049
403
+ #: massbots.php:53
404
+ #: userperspan.php:63
405
+ msgid "Front page displays"
406
+ msgstr "Exibi&ccedil;&otilde;es da primeira página"
407
+
408
+ #@ default
409
+ #: counter-core.php:612
410
+ #: counter-options.php:386
411
+ #: counter-options.php:712
412
+ msgid "Settings"
413
+ msgstr "Configura&ccedil;&otilde;es"
414
+
415
+ #@ cpd
416
+ #: counter-core.php:677
417
+ #: counter-options.php:761
418
+ #: counter.php:186
419
+ #: counter.php:922
420
+ msgid "Reads"
421
+ msgstr "Leituras"
422
+
423
+ #@ cpd
424
+ #: counter.php:1299
425
+ msgid "This post"
426
+ msgstr "Este post"
427
+
428
+ #@ cpd
429
+ #: counter.php:291
430
+ msgid "Reads per day"
431
+ msgstr "Leituras por dia"
432
+
433
+ #@ cpd
434
+ #: counter-core.php:786
435
+ #: counter-options.php:832
436
+ msgid "Browsers"
437
+ msgstr "Navegadores"
438
+
439
+ #@ cpd
440
+ #: counter-core.php:780
441
+ msgid "Latest Counts"
442
+ msgstr "Contagens Recentes"
443
+
444
+ #@ cpd
445
+ #: counter-core.php:791
446
+ msgid "Reads per Country"
447
+ msgstr "Leituras por Pa&iacute;s"
448
+
449
+ #@ cpd
450
+ #: geoip/geoip.php:90
451
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
452
+ msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
453
+
454
+ #@ cpd
455
+ #: geoip/geoip.php:114
456
+ msgid "New GeoIP database installed."
457
+ msgstr "Nova base de dados GeoIP instalada."
458
+
459
+ #@ cpd
460
+ #: geoip/geoip.php:116
461
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
462
+ msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
463
+
464
+ #@ cpd
465
+ #: counter-options.php:731
466
+ msgid "until User Level"
467
+ msgstr "usuários do nível"
468
+
469
+ #@ cpd
470
+ #: counter-options.php:863
471
+ msgid "Start Values"
472
+ msgstr "Valor inicial"
473
+
474
+ #@ cpd
475
+ #: counter-options.php:867
476
+ msgid "Here you can change the date of first count and add a start count."
477
+ msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
478
+
479
+ #@ cpd
480
+ #: counter-options.php:871
481
+ msgid "Start date"
482
+ msgstr "Data inicial"
483
+
484
+ #@ cpd
485
+ #: counter-options.php:872
486
+ msgid "Your old Counter starts at?"
487
+ msgstr "Sua contagem antiga começa em?"
488
+
489
+ #@ cpd
490
+ #: counter-options.php:875
491
+ #: counter-options.php:879
492
+ msgid "Start count"
493
+ msgstr "Contagem inicial"
494
+
495
+ #@ cpd
496
+ #: counter-options.php:876
497
+ msgid "Add this value to \"Total visitors\"."
498
+ msgstr "Adicione este valor para \"Total visitors\"."
499
+
500
+ #@ cpd
501
+ #: counter-options.php:699
502
+ msgid "Support"
503
+ msgstr "Suporte"
504
+
505
+ #@ cpd
506
+ #: counter-core.php:741
507
+ msgid "Bug? Problem? Question? Hint? Praise?"
508
+ msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
509
+
510
+ #@ cpd
511
+ #: counter-core.php:742
512
+ #, php-format
513
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
+ msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
515
+
516
+ #@ default
517
+ #: counter.php:821
518
+ msgid "Show"
519
+ msgstr "Mostrar"
520
+
521
+ #@ cpd
522
+ #: counter.php:823
523
+ #: notes.php:42
524
+ #: notes.php:76
525
+ msgid "Notes"
526
+ msgstr "Notas"
527
+
528
+ #@ default
529
+ #: counter.php:1034
530
+ msgid "Edit Post"
531
+ msgstr "Editar Post"
532
+
533
+ #@ default
534
+ #: counter-core.php:783
535
+ msgid "Plugin"
536
+ msgstr "Plugin"
537
+
538
+ #@ cpd
539
+ #: counter-core.php:740
540
+ #, php-format
541
+ msgid "Time for Count per Day: <code>%s</code>."
542
+ msgstr "Tempo para Contagem por Dia: <code>%s</code>."
543
+
544
+ #@ default
545
+ #: notes.php:77
546
+ msgid "Action"
547
+ msgstr "A&ccedil;&atilde;o"
548
+
549
+ #@ cpd
550
+ #: notes.php:82
551
+ msgid "add"
552
+ msgstr "Adicionar"
553
+
554
+ #@ cpd
555
+ #: notes.php:98
556
+ msgid "save"
557
+ msgstr "Salvar"
558
+
559
+ #@ cpd
560
+ #: notes.php:99
561
+ msgid "delete"
562
+ msgstr "Apagar"
563
+
564
+ #@ cpd
565
+ #: notes.php:110
566
+ msgid "edit"
567
+ msgstr "Editar"
568
+
569
+ #@ cpd
570
+ #: counter-options.php:750
571
+ msgid "Anonymous IP"
572
+ msgstr "IP An&ocirc;nimo"
573
+
574
+ #@ cpd
575
+ #: counter-options.php:754
576
+ msgid "Cache"
577
+ msgstr "Cache"
578
+
579
+ #@ cpd
580
+ #: counter-options.php:755
581
+ msgid "I use a cache plugin. Count these visits with ajax."
582
+ msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
583
+
584
+ #@ cpd
585
+ #: counter-options.php:833
586
+ msgid "Substring of the user agent, separated by comma"
587
+ msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
588
+
589
+ #@ cpd
590
+ #: counter-options.php:880
591
+ msgid "Add this value to \"Total reads\"."
592
+ msgstr "Adicione este valor ao \"Total de Leituras\"."
593
+
594
+ #@ cpd
595
+ #: counter-options.php:917
596
+ msgid "Debug mode"
597
+ msgstr "Modo de depura&ccedil;&atilde;o"
598
+
599
+ #@ cpd
600
+ #: counter-options.php:919
601
+ msgid "Show debug informations at the bottom of all pages."
602
+ msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
603
+
604
+ #@ cpd
605
+ #: counter.php:182
606
+ #: counter.php:1300
607
+ msgid "Total reads"
608
+ msgstr "Total de Leituras"
609
+
610
+ #@ cpd
611
+ #: counter.php:183
612
+ #: counter.php:1301
613
+ msgid "Reads today"
614
+ msgstr "Leituras Hoje"
615
+
616
+ #@ cpd
617
+ #: counter.php:184
618
+ #: counter.php:1302
619
+ msgid "Reads yesterday"
620
+ msgstr "Leituras Ontem"
621
+
622
+ #@ cpd
623
+ #: counter-core.php:792
624
+ msgid "Visitors per Country"
625
+ msgstr "Visitantes por Pa&iacute;is"
626
+
627
+ #@ cpd
628
+ #: counter.php:382
629
+ #: counter.php:1144
630
+ msgid "Map"
631
+ msgstr "Mapa"
632
+
633
+ #@ cpd
634
+ #: userperspan.php:38
635
+ msgid "Start"
636
+ msgstr "Iniciar"
637
+
638
+ #@ cpd
639
+ #: userperspan.php:40
640
+ msgid "End"
641
+ msgstr "Fim"
642
+
643
+ #@ cpd
644
+ #: userperspan.php:42
645
+ msgid "PostID"
646
+ msgstr "PostID"
647
+
648
+ #@ cpd
649
+ #: userperspan.php:50
650
+ msgid "no data found"
651
+ msgstr "N&atilde;o foram encontrados dados"
652
+
653
+ #@ cpd
654
+ #: counter-options.php:611
655
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
+ msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
657
+
658
+ #@ cpd
659
+ #: counter-options.php:720
660
+ msgid "Counter"
661
+ msgstr "contador"
662
+
663
+ #@ cpd
664
+ #: counter-options.php:758
665
+ msgid "Clients and referrers"
666
+ msgstr "Clientes e Referências"
667
+
668
+ #@ cpd
669
+ #: counter-options.php:761
670
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
+ msgstr "Salvar e Exibir Clientes e Referências"
672
+
673
+ #@ cpd
674
+ #: counter-options.php:844
675
+ msgid "Local URLs"
676
+ msgstr "URLs Locais"
677
+
678
+ #@ cpd
679
+ #: counter-options.php:845
680
+ msgid "Show local referrers too."
681
+ msgstr "Também exibir referência local."
682
+
683
+ #@ default
684
+ #: counter-options.php:852
685
+ msgid "Posts"
686
+ msgstr "Posts"
687
+
688
+ #@ default
689
+ #: counter-options.php:852
690
+ msgid "Pages"
691
+ msgstr "Páginas"
692
+
693
+ #@ cpd
694
+ #: counter.php:185
695
+ #: counter.php:1303
696
+ msgid "Reads last week"
697
+ msgstr "Leituras na semana passada"
698
+
699
+ #@ default
700
+ #: counter.php:1043
701
+ msgid "Category"
702
+ msgstr "Categoria"
703
+
704
+ #@ default
705
+ #: counter.php:1046
706
+ msgid "Tag"
707
+ msgstr "Teg"
708
+
709
+ #@ default
710
+ #: counter-core.php:743
711
+ msgid "License"
712
+ msgstr "License"
713
+
714
+ #@ cpd
715
+ #: counter-core.php:778
716
+ #: counter.php:1304
717
+ msgid "Reads per month"
718
+ msgstr "Leituras por mês"
719
+
720
+ #@ cpd
721
+ #: counter-core.php:787
722
+ msgid "Referrer"
723
+ msgstr "Referência"
724
+
725
+ #@ default
726
+ #: counter.php:1323
727
+ msgid "Title"
728
+ msgstr "Título"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:836
732
+ msgid "Referrers - Entries"
733
+ msgstr "Referência - entradas"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:837
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Quantas referência você quer ver no painel?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:840
742
+ msgid "Referrers - Days"
743
+ msgstr "Referência - Dias"
744
+
745
+ #@ cpd
746
+ #: counter.php:892
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "AA %s referências nos últimos %s dias:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:776
753
+ msgid "Visitors online"
754
+ msgstr "Visitantes online"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:225
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "Atualizar \"Count per Day\" para a versão %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:977
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Backup falhou. O arquivo não abriu"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:1004
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1095
775
+ #: counter-core.php:1103
776
+ #, php-format
777
+ msgid "Backup of counter table saved in %s."
778
+ msgstr "Backup da tabela do contador salvo em %s."
779
+
780
+ #@ cpd
781
+ #: counter-core.php:1097
782
+ #: counter-core.php:1105
783
+ #, php-format
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
+ #@ cpd
788
+ #: counter-options.php:169
789
+ msgid "Collection in progress..."
790
+ msgstr "Acumulador em progresso..."
791
+
792
+ #@ cpd
793
+ #: counter-options.php:263
794
+ msgid "Get Visitors per Post..."
795
+ msgstr "Obter visitas por Post..."
796
+
797
+ #@ cpd
798
+ #: counter-options.php:284
799
+ msgid "Delete old data..."
800
+ msgstr "Deletar dados antigos..."
801
+
802
+ #@ cpd
803
+ #: counter-options.php:308
804
+ #, php-format
805
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
806
+ msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
807
+
808
+ #@ cpd
809
+ #: counter-options.php:317
810
+ msgid "Installation of \"Count per Day\" checked"
811
+ msgstr "Instalação do \"Count per Day\" checada"
812
+
813
+ #@ default
814
+ #: counter-options.php:385
815
+ #: counter-options.php:711
816
+ msgid "Tools"
817
+ msgstr "Ferramentas"
818
+
819
+ #@ cpd
820
+ #: counter-options.php:763
821
+ msgid "Save URL only, no query string."
822
+ msgstr "Salvar somente URL, sem sequencia de caracteres"
823
+
824
+ #@ cpd
825
+ #: counter-options.php:787
826
+ msgid "Who can see it"
827
+ msgstr "Quem pode ver isto"
828
+
829
+ #@ cpd
830
+ #: counter-options.php:796
831
+ msgid "custom"
832
+ msgstr "Customizar"
833
+
834
+ #@ cpd
835
+ #: counter-options.php:798
836
+ msgid "and higher are allowed to see the statistics page."
837
+ msgstr "e superior têm permissão para ver a página de estatísticas."
838
+
839
+ #@ cpd
840
+ #: counter-options.php:800
841
+ #, php-format
842
+ msgid "Set the %s capability %s a user need:"
843
+ msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
844
+
845
+ #@ cpd
846
+ #: counter-options.php:887
847
+ msgid "Stylesheet"
848
+ msgstr "Estilo"
849
+
850
+ #@ cpd
851
+ #: counter-options.php:890
852
+ msgid "NO Stylesheet in Frontend"
853
+ msgstr "SEM Estilo na interface pública"
854
+
855
+ #@ cpd
856
+ #: counter-options.php:891
857
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
858
+ msgstr "Não carregue o estilo \"counter.css\" na interface pública"
859
+
860
+ #@ cpd
861
+ #: counter-options.php:461
862
+ #: counter-options.php:898
863
+ msgid "Backup"
864
+ msgstr "Backup"
865
+
866
+ #@ cpd
867
+ #: counter-options.php:901
868
+ msgid "Entries per pass"
869
+ msgstr "Entradas por passagem"
870
+
871
+ #@ cpd
872
+ #: counter-options.php:904
873
+ msgid "How many entries should be saved per pass? Default: 10000"
874
+ msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
875
+
876
+ #@ cpd
877
+ #: counter-options.php:909
878
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
879
+ 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."
880
+
881
+ #@ cpd
882
+ #: counter-options.php:465
883
+ #, php-format
884
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
885
+ msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
886
+
887
+ #@ cpd
888
+ #: counter-options.php:472
889
+ msgid "Backup the database"
890
+ msgstr "Backup da base de dados"
891
+
892
+ #@ cpd
893
+ #: counter-options.php:563
894
+ #: counter-options.php:595
895
+ msgid "Collect old data"
896
+ msgstr "Coletar dados antigos"
897
+
898
+ #@ cpd
899
+ #: counter-options.php:568
900
+ #, php-format
901
+ msgid "Current size of your counter table %s is %s."
902
+ msgstr "O tamanho atual da sua tabela de contador %s é %s."
903
+
904
+ #@ cpd
905
+ #: counter-options.php:570
906
+ 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."
907
+ 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."
908
+
909
+ #@ cpd
910
+ #: counter-options.php:575
911
+ #, php-format
912
+ msgid "Currently your collection contains data until %s."
913
+ msgstr "Atualmente sua coleção contém dados até %s"
914
+
915
+ #@ cpd
916
+ #: counter-options.php:579
917
+ msgid "Normally new data will be added to the collection."
918
+ msgstr "Dados novos são adicionados normalmente à coleção."
919
+
920
+ #@ cpd
921
+ #: counter-options.php:585
922
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
923
+ msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
924
+
925
+ #@ cpd
926
+ #: counter-options.php:586
927
+ #, php-format
928
+ msgid "All collected data until %s will deleted."
929
+ msgstr "Todos os dados coletados até %s serão excluidos."
930
+
931
+ #@ cpd
932
+ #: counter-options.php:591
933
+ #, php-format
934
+ msgid "Keep entries of last %s full months + current month in counter table."
935
+ msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
936
+
937
+ #@ cpd
938
+ #: counter-options.php:642
939
+ msgid "ReActivation"
940
+ msgstr "Reativação"
941
+
942
+ #@ cpd
943
+ #: counter-options.php:645
944
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
945
+ msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
946
+
947
+ #@ cpd
948
+ #: counter-options.php:650
949
+ msgid "ReActivate the plugin"
950
+ msgstr "Reativar o plugin"
951
+
952
+ #@ cpd
953
+ #: counter.php:192
954
+ #: counter.php:946
955
+ msgid "Visitors"
956
+ msgstr "Visitantes"
957
+
958
+ #@ cpd
959
+ #: counter.php:195
960
+ #: counter.php:196
961
+ msgid "Most visited day"
962
+ msgstr "Dia mais visitado"
963
+
964
+ #@ cpd
965
+ #: counter.php:1342
966
+ msgid "drag and drop to sort"
967
+ msgstr "arrastar e soltar para classificar"
968
+
969
+ #@ cpd
970
+ #: counter-core.php:782
971
+ #: counter-options.php:836
972
+ #: counter-options.php:840
973
+ msgid "Search strings"
974
+ msgstr "Buscar Strings"
975
+
976
+ #@ cpd
977
+ #: counter-core.php:1091
978
+ msgid "Your can download the backup files here and now."
979
+ msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
980
+
981
+ #@ cpd
982
+ #: counter-core.php:1161
983
+ msgid "Error while reading backup file!"
984
+ msgstr "Erro ao ler o arquivo de BackUp!"
985
+
986
+ #@ cpd
987
+ #: counter-core.php:1165
988
+ #, php-format
989
+ msgid "The backup was added to counter table %s."
990
+ msgstr "O backup foi adicionado à tabela de contadores %s"
991
+
992
+ #@ cpd
993
+ #: counter-core.php:1167
994
+ #, php-format
995
+ msgid "The counter table %s was restored from backup."
996
+ msgstr "A tabela de contadores %s foi restaurada do backup."
997
+
998
+ #@ cpd
999
+ #: counter-core.php:1184
1000
+ msgid "Options restored from backup."
1001
+ msgstr "Opções restauradas do backup."
1002
+
1003
+ #@ cpd
1004
+ #: counter-options.php:332
1005
+ msgid "Old search strings deleted"
1006
+ msgstr "Sequencias de pesquisas antigas apagadas."
1007
+
1008
+ #@ cpd
1009
+ #: counter-options.php:468
1010
+ msgid "Download only"
1011
+ msgstr "Somente download"
1012
+
1013
+ #@ cpd
1014
+ #: counter-options.php:500
1015
+ msgid "Settings and collections"
1016
+ msgstr "Configurações e Coleções"
1017
+
1018
+ #@ cpd
1019
+ #: counter-options.php:505
1020
+ #, php-format
1021
+ msgid "Counter table %s"
1022
+ msgstr "Tabela de Contador %s"
1023
+
1024
+ #@ cpd
1025
+ #: counter-options.php:512
1026
+ #, php-format
1027
+ msgid "Add data from the backup file %s to existing counter table?"
1028
+ msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1029
+
1030
+ #@ cpd
1031
+ #: counter-options.php:512
1032
+ msgid "Add"
1033
+ msgstr "Adicionar"
1034
+
1035
+ #@ cpd
1036
+ #: counter-options.php:516
1037
+ #, php-format
1038
+ msgid "Restore data from the backup file %s ?"
1039
+ msgstr "Restaurar dados a partir do backup %s ?"
1040
+
1041
+ #@ default
1042
+ #: counter-options.php:516
1043
+ msgid "Restore"
1044
+ msgstr "Restaurar"
1045
+
1046
+ #@ default
1047
+ #: counter-options.php:518
1048
+ msgid "Delete"
1049
+ msgstr "Apagar"
1050
+
1051
+ #@ cpd
1052
+ #: counter-options.php:519
1053
+ #, php-format
1054
+ msgid "Delete the backup file %s ?"
1055
+ msgstr "Apagar arquivo backup %s ?"
1056
+
1057
+ #@ cpd
1058
+ #: counter-options.php:525
1059
+ msgid "add backup to current counter table"
1060
+ msgstr "adicionar backup para a tabela de contador atual"
1061
+
1062
+ #@ cpd
1063
+ #: counter-options.php:526
1064
+ msgid "replace current counter table with with backup"
1065
+ msgstr "substituir a tabela de contador atual pelo backup"
1066
+
1067
+ #@ cpd
1068
+ #: counter-options.php:527
1069
+ msgid "delete backup file"
1070
+ msgstr "apagar arquivo backup"
1071
+
1072
+ #@ cpd
1073
+ #: counter-options.php:552
1074
+ #, php-format
1075
+ msgid "Delete search strings older than %s days."
1076
+ msgstr "Apagar sequencias de busca anteriores a %s dias."
1077
+
1078
+ #@ cpd
1079
+ #: counter-options.php:554
1080
+ msgid "Delete search strings"
1081
+ msgstr "Apagar sequencias de busca"
1082
+
1083
+ #@ cpd
1084
+ #: counter.php:1089
1085
+ #, php-format
1086
+ msgid "The %s most searched strings:"
1087
+ msgstr "A %s string mais procurada:"
1088
+
1089
+ #@ cpd
1090
+ #: counter.php:1098
1091
+ #, php-format
1092
+ msgid "The search strings of the last %s days:"
1093
+ msgstr "A série de busca dos últimos %s dias:"
1094
+
locale/cpd-pt_PT.po CHANGED
@@ -1,1094 +1,1094 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
- "PO-Revision-Date: 2012-07-14 11:54-0300\n"
7
- "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Portuguese\n"
14
- "X-Poedit-Country: BRAZIL\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:52
23
- msgid "Options updated"
24
- msgstr "Op&ccedil;&otilde;es atualizadas"
25
-
26
- #@ cpd
27
- #: counter-options.php:113
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Banco de dados limpo. %s linhas apagadas."
31
-
32
- #@ cpd
33
- #: counter-options.php:128
34
- #: counter-options.php:691
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "DESINSTALAR o Count per Day"
37
-
38
- #@ cpd
39
- #: counter-options.php:133
40
- #: counter-options.php:134
41
- #: counter-options.php:135
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Tabela %s apagada"
45
-
46
- #@ cpd
47
- #: counter-options.php:136
48
- msgid "Options deleted"
49
- msgstr "Op&ccedil;&otilde;es apagadas"
50
-
51
- #@ cpd
52
- #: counter-options.php:362
53
- #: counter-options.php:677
54
- msgid "Uninstall"
55
- msgstr "Desinstalar"
56
-
57
- #@ cpd
58
- #: counter-options.php:363
59
- msgid "Click here"
60
- msgstr "Clique aqui"
61
-
62
- #@ cpd
63
- #: counter-options.php:363
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
66
-
67
- #@ cpd
68
- #: counter-options.php:724
69
- msgid "Online time"
70
- msgstr "Per&iacute;odo online"
71
-
72
- #@ cpd
73
- #: counter-options.php:725
74
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
- msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
76
-
77
- #@ cpd
78
- #: counter-options.php:728
79
- msgid "Logged on Users"
80
- msgstr "Usu&aacute;rios logados"
81
-
82
- #@ cpd
83
- #: counter-options.php:730
84
- msgid "count too"
85
- msgstr "contar tamb&eacute;m"
86
-
87
- #@ cpd
88
- #: counter-options.php:742
89
- msgid "Auto counter"
90
- msgstr "Autocontador"
91
-
92
- #@ cpd
93
- #: counter-options.php:743
94
- msgid "Counts automatically single-posts and pages, no changes on template needed."
95
- msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
96
-
97
- #@ cpd
98
- #: counter-options.php:746
99
- msgid "Bots to ignore"
100
- msgstr "Bots a serem ignorados"
101
-
102
- #@ cpd
103
- #: counter-options.php:924
104
- msgid "Update options"
105
- msgstr "Atualizar op&ccedil;&otilde;es"
106
-
107
- #@ cpd
108
- #: counter-options.php:538
109
- #: counter-options.php:546
110
- msgid "Clean the database"
111
- msgstr "Limpar o banco de dados"
112
-
113
- #@ cpd
114
- #: counter-options.php:541
115
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
- msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
117
-
118
- #@ cpd
119
- #: counter-options.php:680
120
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
- msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
122
-
123
- #@ cpd
124
- #: counter-options.php:681
125
- msgid "Here you can delete the tables and disable \"Count per Day\"."
126
- msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
127
-
128
- #@ cpd
129
- #: counter-options.php:684
130
- msgid "WARNING"
131
- msgstr "ATEN&Ccedil;&Atilde;O"
132
-
133
- #@ cpd
134
- #: counter-options.php:685
135
- msgid "These tables (with ALL counter data) will be deleted."
136
- msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
137
-
138
- #@ cpd
139
- #: counter-options.php:687
140
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
- msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
142
-
143
- #@ cpd
144
- #: counter-options.php:667
145
- #: counter-options.php:690
146
- msgid "Yes"
147
- msgstr "Sim, quero"
148
-
149
- #@ cpd
150
- #: counter-options.php:691
151
- msgid "You are sure to disable Count per Day and delete all data?"
152
- msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
153
-
154
- #@ cpd
155
- #: counter-core.php:807
156
- #: counter.php:1227
157
- msgid "Statistics"
158
- msgstr "Estat&iacute;sticas"
159
-
160
- #@ cpd
161
- #: counter-core.php:775
162
- #: counter.php:187
163
- #: counter.php:1113
164
- #: counter.php:1305
165
- msgid "Total visitors"
166
- msgstr "Total de visitas"
167
-
168
- #@ cpd
169
- #: counter.php:188
170
- #: counter.php:1311
171
- msgid "Visitors currently online"
172
- msgstr "Visitantes online"
173
-
174
- #@ cpd
175
- #: counter.php:189
176
- #: counter.php:1306
177
- msgid "Visitors today"
178
- msgstr "Visitas hoje"
179
-
180
- #@ cpd
181
- #: counter.php:190
182
- #: counter.php:1307
183
- msgid "Visitors yesterday"
184
- msgstr "Visitas ontem"
185
-
186
- #@ cpd
187
- #: counter.php:191
188
- #: counter.php:1308
189
- msgid "Visitors last week"
190
- msgstr "Visitas semana passada"
191
-
192
- #@ cpd
193
- #: counter.php:194
194
- #: counter.php:872
195
- #: counter.php:1312
196
- msgid "Counter starts on"
197
- msgstr "In&iacute;cio da contagem"
198
-
199
- #@ cpd
200
- #: counter-core.php:781
201
- #: counter.php:193
202
- #: counter.php:292
203
- #: counter.php:1115
204
- #: counter.php:1310
205
- #: userperspan.php:34
206
- msgid "Visitors per day"
207
- msgstr "(m&eacute;dia) de visitas por dia"
208
-
209
- #@ cpd
210
- #: counter-core.php:777
211
- #: counter.php:1309
212
- msgid "Visitors per month"
213
- msgstr "Visitas por m&ecirc;s"
214
-
215
- #@ cpd
216
- #: counter-core.php:779
217
- #: counter-options.php:806
218
- msgid "Visitors per post"
219
- msgstr "Visitas por post"
220
-
221
- #@ cpd
222
- #: counter-options.php:63
223
- #, php-format
224
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
225
- msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
226
-
227
- #@ cpd
228
- #: counter-options.php:66
229
- msgid "update next"
230
- msgstr "Atualizar proximo"
231
-
232
- #@ cpd
233
- #: counter-options.php:106
234
- #, php-format
235
- msgid "Mass Bots cleaned. %s counts deleted."
236
- msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
237
-
238
- #@ cpd
239
- #: counter-options.php:123
240
- msgid "Counter reseted."
241
- msgstr "Contador reiniciado."
242
-
243
- #@ default
244
- #: counter-options.php:771
245
- msgid "Dashboard"
246
- msgstr "Painel"
247
-
248
- #@ cpd
249
- #: counter-options.php:807
250
- #: counter-options.php:811
251
- msgid "How many posts do you want to see on dashboard page?"
252
- msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
253
-
254
- #@ cpd
255
- #: counter-options.php:810
256
- msgid "Latest Counts - Posts"
257
- msgstr "Contagens Recentes - Posts"
258
-
259
- #@ cpd
260
- #: counter-options.php:814
261
- msgid "Latest Counts - Days"
262
- msgstr "Contagens Recentes - Dias"
263
-
264
- #@ cpd
265
- #: counter-options.php:815
266
- #: counter-options.php:819
267
- #: counter-options.php:841
268
- msgid "How many days do you want look back?"
269
- msgstr "Quantos dias atr&aacute;s você quer ver?"
270
-
271
- #@ cpd
272
- #: counter-options.php:818
273
- msgid "Chart - Days"
274
- msgstr "Gr&aacute;fico - Dias"
275
-
276
- #@ cpd
277
- #: counter-options.php:822
278
- msgid "Chart - Height"
279
- msgstr "Gr&aacute;fico - Altura"
280
-
281
- #@ cpd
282
- #: counter-options.php:823
283
- msgid "Height of the biggest bar"
284
- msgstr "Altura da barra maior"
285
-
286
- #@ cpd
287
- #: counter-options.php:827
288
- msgid "Countries"
289
- msgstr "Pa&iacute;ses"
290
-
291
- #@ cpd
292
- #: counter-options.php:828
293
- msgid "How many countries do you want to see on dashboard page?"
294
- msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
295
-
296
- #@ cpd
297
- #: counter-options.php:855
298
- msgid "Show in lists"
299
- msgstr "Exibir em listas"
300
-
301
- #@ cpd
302
- #: counter-options.php:856
303
- msgid "Show \"Reads per Post\" in a new column in post management views."
304
- msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
305
-
306
- #@ cpd
307
- #: counter-options.php:608
308
- msgid "GeoIP - Countries"
309
- msgstr "GeoIP - Pa&iacute;ses"
310
-
311
- #@ cpd
312
- #: counter-options.php:617
313
- msgid "Update old counter data"
314
- msgstr "Atualizar dados de contadores antigos"
315
-
316
- #@ cpd
317
- #: counter-options.php:629
318
- msgid "Update GeoIP database"
319
- msgstr "Atualizar Base de Dados GeoIP"
320
-
321
- #@ cpd
322
- #: counter-options.php:624
323
- msgid "Download a new version of GeoIP.dat file."
324
- msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
325
-
326
- #@ cpd
327
- #: counter-options.php:634
328
- msgid "More informations about GeoIP"
329
- msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
330
-
331
- #@ cpd
332
- #: counter-options.php:402
333
- #: massbots.php:36
334
- msgid "Mass Bots"
335
- msgstr "Mass Bots"
336
-
337
- #@ cpd
338
- #: counter-options.php:406
339
- #, php-format
340
- msgid "Show all IPs with more than %s page views per day"
341
- msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
342
-
343
- #@ cpd
344
- #: counter-options.php:407
345
- #: notes.php:71
346
- #: userperspan.php:44
347
- msgid "show"
348
- msgstr "exibir"
349
-
350
- #@ cpd
351
- #: counter-options.php:415
352
- msgid "IP"
353
- msgstr "IP"
354
-
355
- #@ cpd
356
- #@ default
357
- #: counter-options.php:416
358
- #: notes.php:75
359
- msgid "Date"
360
- msgstr "Data"
361
-
362
- #@ cpd
363
- #: counter-options.php:417
364
- msgid "Client"
365
- msgstr "Cliente"
366
-
367
- #@ cpd
368
- #: counter-options.php:418
369
- msgid "Views"
370
- msgstr "Exibi&ccedil;&otilde;es"
371
-
372
- #@ cpd
373
- #: counter-options.php:433
374
- #: counter-options.php:449
375
- #, php-format
376
- msgid "Delete these %s counts"
377
- msgstr "Deletar estes %s contadores"
378
-
379
- #@ cpd
380
- #: counter-options.php:658
381
- #: counter-options.php:668
382
- msgid "Reset the counter"
383
- msgstr "Reiniciar o contador"
384
-
385
- #@ cpd
386
- #: counter-options.php:661
387
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
388
- msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
389
-
390
- #@ cpd
391
- #: counter.php:705
392
- #, php-format
393
- msgid "The %s most visited posts in last %s days:"
394
- msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
395
-
396
- #@ cpd
397
- #: counter.php:861
398
- msgid "Other"
399
- msgstr "Outro"
400
-
401
- #@ default
402
- #: counter.php:1049
403
- #: massbots.php:53
404
- #: userperspan.php:63
405
- msgid "Front page displays"
406
- msgstr "Exibi&ccedil;&otilde;es da primeira página"
407
-
408
- #@ default
409
- #: counter-core.php:612
410
- #: counter-options.php:386
411
- #: counter-options.php:712
412
- msgid "Settings"
413
- msgstr "Configura&ccedil;&otilde;es"
414
-
415
- #@ cpd
416
- #: counter-core.php:677
417
- #: counter-options.php:761
418
- #: counter.php:186
419
- #: counter.php:922
420
- msgid "Reads"
421
- msgstr "Leituras"
422
-
423
- #@ cpd
424
- #: counter.php:1299
425
- msgid "This post"
426
- msgstr "Este post"
427
-
428
- #@ cpd
429
- #: counter.php:291
430
- msgid "Reads per day"
431
- msgstr "Leituras por dia"
432
-
433
- #@ cpd
434
- #: counter-core.php:786
435
- #: counter-options.php:832
436
- msgid "Browsers"
437
- msgstr "Navegadores"
438
-
439
- #@ cpd
440
- #: counter-core.php:780
441
- msgid "Latest Counts"
442
- msgstr "Contagens Recentes"
443
-
444
- #@ cpd
445
- #: counter-core.php:791
446
- msgid "Reads per Country"
447
- msgstr "Leituras por Pa&iacute;s"
448
-
449
- #@ cpd
450
- #: geoip/geoip.php:90
451
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
452
- msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
453
-
454
- #@ cpd
455
- #: geoip/geoip.php:114
456
- msgid "New GeoIP database installed."
457
- msgstr "Nova base de dados GeoIP instalada."
458
-
459
- #@ cpd
460
- #: geoip/geoip.php:116
461
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
462
- msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
463
-
464
- #@ cpd
465
- #: counter-options.php:731
466
- msgid "until User Level"
467
- msgstr "usuários do nível"
468
-
469
- #@ cpd
470
- #: counter-options.php:863
471
- msgid "Start Values"
472
- msgstr "Valor inicial"
473
-
474
- #@ cpd
475
- #: counter-options.php:867
476
- msgid "Here you can change the date of first count and add a start count."
477
- msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
478
-
479
- #@ cpd
480
- #: counter-options.php:871
481
- msgid "Start date"
482
- msgstr "Data inicial"
483
-
484
- #@ cpd
485
- #: counter-options.php:872
486
- msgid "Your old Counter starts at?"
487
- msgstr "Sua contagem antiga começa em?"
488
-
489
- #@ cpd
490
- #: counter-options.php:875
491
- #: counter-options.php:879
492
- msgid "Start count"
493
- msgstr "Contagem inicial"
494
-
495
- #@ cpd
496
- #: counter-options.php:876
497
- msgid "Add this value to \"Total visitors\"."
498
- msgstr "Adicione este valor para \"Total visitors\"."
499
-
500
- #@ cpd
501
- #: counter-options.php:699
502
- msgid "Support"
503
- msgstr "Suporte"
504
-
505
- #@ cpd
506
- #: counter-core.php:741
507
- msgid "Bug? Problem? Question? Hint? Praise?"
508
- msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
509
-
510
- #@ cpd
511
- #: counter-core.php:742
512
- #, php-format
513
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
- msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
515
-
516
- #@ default
517
- #: counter.php:821
518
- msgid "Show"
519
- msgstr "Mostrar"
520
-
521
- #@ cpd
522
- #: counter.php:823
523
- #: notes.php:42
524
- #: notes.php:76
525
- msgid "Notes"
526
- msgstr "Notas"
527
-
528
- #@ default
529
- #: counter.php:1034
530
- msgid "Edit Post"
531
- msgstr "Editar Post"
532
-
533
- #@ default
534
- #: counter-core.php:783
535
- msgid "Plugin"
536
- msgstr "Plugin"
537
-
538
- #@ cpd
539
- #: counter-core.php:740
540
- #, php-format
541
- msgid "Time for Count per Day: <code>%s</code>."
542
- msgstr "Tempo para Contagem por Dia: <code>%s</code>."
543
-
544
- #@ default
545
- #: notes.php:77
546
- msgid "Action"
547
- msgstr "A&ccedil;&atilde;o"
548
-
549
- #@ cpd
550
- #: notes.php:82
551
- msgid "add"
552
- msgstr "Adicionar"
553
-
554
- #@ cpd
555
- #: notes.php:98
556
- msgid "save"
557
- msgstr "Salvar"
558
-
559
- #@ cpd
560
- #: notes.php:99
561
- msgid "delete"
562
- msgstr "Apagar"
563
-
564
- #@ cpd
565
- #: notes.php:110
566
- msgid "edit"
567
- msgstr "Editar"
568
-
569
- #@ cpd
570
- #: counter-options.php:750
571
- msgid "Anonymous IP"
572
- msgstr "IP An&ocirc;nimo"
573
-
574
- #@ cpd
575
- #: counter-options.php:754
576
- msgid "Cache"
577
- msgstr "Cache"
578
-
579
- #@ cpd
580
- #: counter-options.php:755
581
- msgid "I use a cache plugin. Count these visits with ajax."
582
- msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
583
-
584
- #@ cpd
585
- #: counter-options.php:833
586
- msgid "Substring of the user agent, separated by comma"
587
- msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
588
-
589
- #@ cpd
590
- #: counter-options.php:880
591
- msgid "Add this value to \"Total reads\"."
592
- msgstr "Adicione este valor ao \"Total de Leituras\"."
593
-
594
- #@ cpd
595
- #: counter-options.php:917
596
- msgid "Debug mode"
597
- msgstr "Modo de depura&ccedil;&atilde;o"
598
-
599
- #@ cpd
600
- #: counter-options.php:919
601
- msgid "Show debug informations at the bottom of all pages."
602
- msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
603
-
604
- #@ cpd
605
- #: counter.php:182
606
- #: counter.php:1300
607
- msgid "Total reads"
608
- msgstr "Total de Leituras"
609
-
610
- #@ cpd
611
- #: counter.php:183
612
- #: counter.php:1301
613
- msgid "Reads today"
614
- msgstr "Leituras Hoje"
615
-
616
- #@ cpd
617
- #: counter.php:184
618
- #: counter.php:1302
619
- msgid "Reads yesterday"
620
- msgstr "Leituras Ontem"
621
-
622
- #@ cpd
623
- #: counter-core.php:792
624
- msgid "Visitors per Country"
625
- msgstr "Visitantes por Pa&iacute;is"
626
-
627
- #@ cpd
628
- #: counter.php:382
629
- #: counter.php:1144
630
- msgid "Map"
631
- msgstr "Mapa"
632
-
633
- #@ cpd
634
- #: userperspan.php:38
635
- msgid "Start"
636
- msgstr "Iniciar"
637
-
638
- #@ cpd
639
- #: userperspan.php:40
640
- msgid "End"
641
- msgstr "Fim"
642
-
643
- #@ cpd
644
- #: userperspan.php:42
645
- msgid "PostID"
646
- msgstr "PostID"
647
-
648
- #@ cpd
649
- #: userperspan.php:50
650
- msgid "no data found"
651
- msgstr "N&atilde;o foram encontrados dados"
652
-
653
- #@ cpd
654
- #: counter-options.php:611
655
- msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
- msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
657
-
658
- #@ cpd
659
- #: counter-options.php:720
660
- msgid "Counter"
661
- msgstr "contador"
662
-
663
- #@ cpd
664
- #: counter-options.php:758
665
- msgid "Clients and referrers"
666
- msgstr "Clientes e Referências"
667
-
668
- #@ cpd
669
- #: counter-options.php:761
670
- msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
- msgstr "Salvar e Exibir Clientes e Referências"
672
-
673
- #@ cpd
674
- #: counter-options.php:844
675
- msgid "Local URLs"
676
- msgstr "URLs Locais"
677
-
678
- #@ cpd
679
- #: counter-options.php:845
680
- msgid "Show local referrers too."
681
- msgstr "Também exibir referência local."
682
-
683
- #@ default
684
- #: counter-options.php:852
685
- msgid "Posts"
686
- msgstr "Posts"
687
-
688
- #@ default
689
- #: counter-options.php:852
690
- msgid "Pages"
691
- msgstr "Páginas"
692
-
693
- #@ cpd
694
- #: counter.php:185
695
- #: counter.php:1303
696
- msgid "Reads last week"
697
- msgstr "Leituras na semana passada"
698
-
699
- #@ default
700
- #: counter.php:1043
701
- msgid "Category"
702
- msgstr "Categoria"
703
-
704
- #@ default
705
- #: counter.php:1046
706
- msgid "Tag"
707
- msgstr "Teg"
708
-
709
- #@ default
710
- #: counter-core.php:743
711
- msgid "License"
712
- msgstr "License"
713
-
714
- #@ cpd
715
- #: counter-core.php:778
716
- #: counter.php:1304
717
- msgid "Reads per month"
718
- msgstr "Leituras por mês"
719
-
720
- #@ cpd
721
- #: counter-core.php:787
722
- msgid "Referrer"
723
- msgstr "Referência"
724
-
725
- #@ default
726
- #: counter.php:1323
727
- msgid "Title"
728
- msgstr "Título"
729
-
730
- #@ cpd
731
- #: counter-options.php:836
732
- msgid "Referrers - Entries"
733
- msgstr "Referência - entradas"
734
-
735
- #@ cpd
736
- #: counter-options.php:837
737
- msgid "How many referrers do you want to see on dashboard page?"
738
- msgstr "Quantas referência você quer ver no painel?"
739
-
740
- #@ cpd
741
- #: counter-options.php:840
742
- msgid "Referrers - Days"
743
- msgstr "Referência - Dias"
744
-
745
- #@ cpd
746
- #: counter.php:892
747
- #, php-format
748
- msgid "The %s referrers in last %s days:"
749
- msgstr "AA %s referências nos últimos %s dias:"
750
-
751
- #@ cpd
752
- #: counter-core.php:776
753
- msgid "Visitors online"
754
- msgstr "Visitantes online"
755
-
756
- #@ cpd
757
- #: counter-core.php:225
758
- #, php-format
759
- msgid "\"Count per Day\" updated to version %s."
760
- msgstr "Atualizar \"Count per Day\" para a versão %s."
761
-
762
- #@ cpd
763
- #: counter-core.php:977
764
- msgid "Backup failed! Cannot open file"
765
- msgstr "Backup falhou. O arquivo não abriu"
766
-
767
- #@ cpd
768
- #: counter-core.php:1004
769
- #, php-format
770
- msgid "Backup of %s entries in progress. Every point complies %s entries."
771
- msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
772
-
773
- #@ cpd
774
- #: counter-core.php:1095
775
- #: counter-core.php:1103
776
- #, php-format
777
- msgid "Backup of counter table saved in %s."
778
- msgstr "Backup da tabela do contador salvo em %s."
779
-
780
- #@ cpd
781
- #: counter-core.php:1097
782
- #: counter-core.php:1105
783
- #, php-format
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
- #@ cpd
788
- #: counter-options.php:169
789
- msgid "Collection in progress..."
790
- msgstr "Acumulador em progresso..."
791
-
792
- #@ cpd
793
- #: counter-options.php:263
794
- msgid "Get Visitors per Post..."
795
- msgstr "Obter visitas por Post..."
796
-
797
- #@ cpd
798
- #: counter-options.php:284
799
- msgid "Delete old data..."
800
- msgstr "Deletar dados antigos..."
801
-
802
- #@ cpd
803
- #: counter-options.php:308
804
- #, php-format
805
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
806
- msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
807
-
808
- #@ cpd
809
- #: counter-options.php:317
810
- msgid "Installation of \"Count per Day\" checked"
811
- msgstr "Instalação do \"Count per Day\" checada"
812
-
813
- #@ default
814
- #: counter-options.php:385
815
- #: counter-options.php:711
816
- msgid "Tools"
817
- msgstr "Ferramentas"
818
-
819
- #@ cpd
820
- #: counter-options.php:763
821
- msgid "Save URL only, no query string."
822
- msgstr "Salvar somente URL, sem sequencia de caracteres"
823
-
824
- #@ cpd
825
- #: counter-options.php:787
826
- msgid "Who can see it"
827
- msgstr "Quem pode ver isto"
828
-
829
- #@ cpd
830
- #: counter-options.php:796
831
- msgid "custom"
832
- msgstr "Customizar"
833
-
834
- #@ cpd
835
- #: counter-options.php:798
836
- msgid "and higher are allowed to see the statistics page."
837
- msgstr "e superior têm permissão para ver a página de estatísticas."
838
-
839
- #@ cpd
840
- #: counter-options.php:800
841
- #, php-format
842
- msgid "Set the %s capability %s a user need:"
843
- msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
844
-
845
- #@ cpd
846
- #: counter-options.php:887
847
- msgid "Stylesheet"
848
- msgstr "Estilo"
849
-
850
- #@ cpd
851
- #: counter-options.php:890
852
- msgid "NO Stylesheet in Frontend"
853
- msgstr "SEM Estilo na interface pública"
854
-
855
- #@ cpd
856
- #: counter-options.php:891
857
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
858
- msgstr "Não carregue o estilo \"counter.css\" na interface pública"
859
-
860
- #@ cpd
861
- #: counter-options.php:461
862
- #: counter-options.php:898
863
- msgid "Backup"
864
- msgstr "Backup"
865
-
866
- #@ cpd
867
- #: counter-options.php:901
868
- msgid "Entries per pass"
869
- msgstr "Entradas por passagem"
870
-
871
- #@ cpd
872
- #: counter-options.php:904
873
- msgid "How many entries should be saved per pass? Default: 10000"
874
- msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
875
-
876
- #@ cpd
877
- #: counter-options.php:909
878
- msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
879
- 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."
880
-
881
- #@ cpd
882
- #: counter-options.php:465
883
- #, php-format
884
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
885
- msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
886
-
887
- #@ cpd
888
- #: counter-options.php:472
889
- msgid "Backup the database"
890
- msgstr "Backup da base de dados"
891
-
892
- #@ cpd
893
- #: counter-options.php:563
894
- #: counter-options.php:595
895
- msgid "Collect old data"
896
- msgstr "Coletar dados antigos"
897
-
898
- #@ cpd
899
- #: counter-options.php:568
900
- #, php-format
901
- msgid "Current size of your counter table %s is %s."
902
- msgstr "O tamanho atual da sua tabela de contador %s é %s."
903
-
904
- #@ cpd
905
- #: counter-options.php:570
906
- 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."
907
- 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."
908
-
909
- #@ cpd
910
- #: counter-options.php:575
911
- #, php-format
912
- msgid "Currently your collection contains data until %s."
913
- msgstr "Atualmente sua coleção contém dados até %s"
914
-
915
- #@ cpd
916
- #: counter-options.php:579
917
- msgid "Normally new data will be added to the collection."
918
- msgstr "Dados novos são adicionados normalmente à coleção."
919
-
920
- #@ cpd
921
- #: counter-options.php:585
922
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
923
- msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
924
-
925
- #@ cpd
926
- #: counter-options.php:586
927
- #, php-format
928
- msgid "All collected data until %s will deleted."
929
- msgstr "Todos os dados coletados até %s serão excluidos."
930
-
931
- #@ cpd
932
- #: counter-options.php:591
933
- #, php-format
934
- msgid "Keep entries of last %s full months + current month in counter table."
935
- msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
936
-
937
- #@ cpd
938
- #: counter-options.php:642
939
- msgid "ReActivation"
940
- msgstr "Reativação"
941
-
942
- #@ cpd
943
- #: counter-options.php:645
944
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
945
- msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
946
-
947
- #@ cpd
948
- #: counter-options.php:650
949
- msgid "ReActivate the plugin"
950
- msgstr "Reativar o plugin"
951
-
952
- #@ cpd
953
- #: counter.php:192
954
- #: counter.php:946
955
- msgid "Visitors"
956
- msgstr "Visitantes"
957
-
958
- #@ cpd
959
- #: counter.php:195
960
- #: counter.php:196
961
- msgid "Most visited day"
962
- msgstr "Dia mais visitado"
963
-
964
- #@ cpd
965
- #: counter.php:1342
966
- msgid "drag and drop to sort"
967
- msgstr "arrastar e soltar para classificar"
968
-
969
- #@ cpd
970
- #: counter-core.php:782
971
- #: counter-options.php:836
972
- #: counter-options.php:840
973
- msgid "Search strings"
974
- msgstr "Buscar Strings"
975
-
976
- #@ cpd
977
- #: counter-core.php:1091
978
- msgid "Your can download the backup files here and now."
979
- msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
980
-
981
- #@ cpd
982
- #: counter-core.php:1161
983
- msgid "Error while reading backup file!"
984
- msgstr "Erro ao ler o arquivo de BackUp!"
985
-
986
- #@ cpd
987
- #: counter-core.php:1165
988
- #, php-format
989
- msgid "The backup was added to counter table %s."
990
- msgstr "O backup foi adicionado à tabela de contadores %s"
991
-
992
- #@ cpd
993
- #: counter-core.php:1167
994
- #, php-format
995
- msgid "The counter table %s was restored from backup."
996
- msgstr "A tabela de contadores %s foi restaurada do backup."
997
-
998
- #@ cpd
999
- #: counter-core.php:1184
1000
- msgid "Options restored from backup."
1001
- msgstr "Opções restauradas do backup."
1002
-
1003
- #@ cpd
1004
- #: counter-options.php:332
1005
- msgid "Old search strings deleted"
1006
- msgstr "Sequencias de pesquisas antigas apagadas."
1007
-
1008
- #@ cpd
1009
- #: counter-options.php:468
1010
- msgid "Download only"
1011
- msgstr "Somente download"
1012
-
1013
- #@ cpd
1014
- #: counter-options.php:500
1015
- msgid "Settings and collections"
1016
- msgstr "Configurações e Coleções"
1017
-
1018
- #@ cpd
1019
- #: counter-options.php:505
1020
- #, php-format
1021
- msgid "Counter table %s"
1022
- msgstr "Tabela de Contador %s"
1023
-
1024
- #@ cpd
1025
- #: counter-options.php:512
1026
- #, php-format
1027
- msgid "Add data from the backup file %s to existing counter table?"
1028
- msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1029
-
1030
- #@ cpd
1031
- #: counter-options.php:512
1032
- msgid "Add"
1033
- msgstr "Adicionar"
1034
-
1035
- #@ cpd
1036
- #: counter-options.php:516
1037
- #, php-format
1038
- msgid "Restore data from the backup file %s ?"
1039
- msgstr "Restaurar dados a partir do backup %s ?"
1040
-
1041
- #@ default
1042
- #: counter-options.php:516
1043
- msgid "Restore"
1044
- msgstr "Restaurar"
1045
-
1046
- #@ default
1047
- #: counter-options.php:518
1048
- msgid "Delete"
1049
- msgstr "Apagar"
1050
-
1051
- #@ cpd
1052
- #: counter-options.php:519
1053
- #, php-format
1054
- msgid "Delete the backup file %s ?"
1055
- msgstr "Apagar arquivo backup %s ?"
1056
-
1057
- #@ cpd
1058
- #: counter-options.php:525
1059
- msgid "add backup to current counter table"
1060
- msgstr "adicionar backup para a tabela de contador atual"
1061
-
1062
- #@ cpd
1063
- #: counter-options.php:526
1064
- msgid "replace current counter table with with backup"
1065
- msgstr "substituir a tabela de contador atual pelo backup"
1066
-
1067
- #@ cpd
1068
- #: counter-options.php:527
1069
- msgid "delete backup file"
1070
- msgstr "apagar arquivo backup"
1071
-
1072
- #@ cpd
1073
- #: counter-options.php:552
1074
- #, php-format
1075
- msgid "Delete search strings older than %s days."
1076
- msgstr "Apagar sequencias de busca anteriores a %s dias."
1077
-
1078
- #@ cpd
1079
- #: counter-options.php:554
1080
- msgid "Delete search strings"
1081
- msgstr "Apagar sequencias de busca"
1082
-
1083
- #@ cpd
1084
- #: counter.php:1089
1085
- #, php-format
1086
- msgid "The %s most searched strings:"
1087
- msgstr "A %s string mais procurada:"
1088
-
1089
- #@ cpd
1090
- #: counter.php:1098
1091
- #, php-format
1092
- msgid "The search strings of the last %s days:"
1093
- msgstr "A série de busca dos últimos %s dias:"
1094
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count Per Day v3.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-09-03 20:03+0100\n"
6
+ "PO-Revision-Date: 2012-07-14 11:54-0300\n"
7
+ "Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-Language: Portuguese\n"
14
+ "X-Poedit-Country: BRAZIL\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:52
23
+ msgid "Options updated"
24
+ msgstr "Op&ccedil;&otilde;es atualizadas"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:113
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Banco de dados limpo. %s linhas apagadas."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:128
34
+ #: counter-options.php:691
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "DESINSTALAR o Count per Day"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:133
40
+ #: counter-options.php:134
41
+ #: counter-options.php:135
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Tabela %s apagada"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:136
48
+ msgid "Options deleted"
49
+ msgstr "Op&ccedil;&otilde;es apagadas"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:362
53
+ #: counter-options.php:677
54
+ msgid "Uninstall"
55
+ msgstr "Desinstalar"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:363
59
+ msgid "Click here"
60
+ msgstr "Clique aqui"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:363
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "Para terminar a desinstala&ccedil;&atilde;o e desativar o \"Count per Day\". "
66
+
67
+ #@ cpd
68
+ #: counter-options.php:724
69
+ msgid "Online time"
70
+ msgstr "Per&iacute;odo online"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:725
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na p&aacute;gina do painel."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:728
79
+ msgid "Logged on Users"
80
+ msgstr "Usu&aacute;rios logados"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:730
84
+ msgid "count too"
85
+ msgstr "contar tamb&eacute;m"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:742
89
+ msgid "Auto counter"
90
+ msgstr "Autocontador"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:743
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Conta automaticamente posts e p&aacute;ginas, sem a necessidade de altera&ccedil;&otilde;es em templates."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:746
99
+ msgid "Bots to ignore"
100
+ msgstr "Bots a serem ignorados"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:924
104
+ msgid "Update options"
105
+ msgstr "Atualizar op&ccedil;&otilde;es"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:538
109
+ #: counter-options.php:546
110
+ msgid "Clean the database"
111
+ msgstr "Limpar o banco de dados"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:541
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "Voc&ecirc; pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso voc&ecirc; adicione novos bots acima, os \"dados de spam\" deles continuar&atilde;o no banco de dados. <br />Para limpar as visitas desses bots, voc&ecirc; pode executar novamente o filtro de bot aqui."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:680
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados ser&atilde;o preservadas."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:681
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr "A op&ccedil;&atilde;o a seguir permite apagar definitivamente as tabelas do banco de dados, al&eacute;m de desabilitar o plugin."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:684
130
+ msgid "WARNING"
131
+ msgstr "ATEN&Ccedil;&Atilde;O"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:685
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) ser&atilde;o apagadas:"
137
+
138
+ #@ cpd
139
+ #: counter-options.php:687
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciar&atilde;o a partir do 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:667
145
+ #: counter-options.php:690
146
+ msgid "Yes"
147
+ msgstr "Sim, quero"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:691
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Confirma a desativa&ccedil;&atilde;o do Count per Day e a exclus&atilde;o de todos os dados?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:807
156
+ #: counter.php:1227
157
+ msgid "Statistics"
158
+ msgstr "Estat&iacute;sticas"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:775
162
+ #: counter.php:187
163
+ #: counter.php:1113
164
+ #: counter.php:1305
165
+ msgid "Total visitors"
166
+ msgstr "Total de visitas"
167
+
168
+ #@ cpd
169
+ #: counter.php:188
170
+ #: counter.php:1311
171
+ msgid "Visitors currently online"
172
+ msgstr "Visitantes online"
173
+
174
+ #@ cpd
175
+ #: counter.php:189
176
+ #: counter.php:1306
177
+ msgid "Visitors today"
178
+ msgstr "Visitas hoje"
179
+
180
+ #@ cpd
181
+ #: counter.php:190
182
+ #: counter.php:1307
183
+ msgid "Visitors yesterday"
184
+ msgstr "Visitas ontem"
185
+
186
+ #@ cpd
187
+ #: counter.php:191
188
+ #: counter.php:1308
189
+ msgid "Visitors last week"
190
+ msgstr "Visitas semana passada"
191
+
192
+ #@ cpd
193
+ #: counter.php:194
194
+ #: counter.php:872
195
+ #: counter.php:1312
196
+ msgid "Counter starts on"
197
+ msgstr "In&iacute;cio da contagem"
198
+
199
+ #@ cpd
200
+ #: counter-core.php:781
201
+ #: counter.php:193
202
+ #: counter.php:292
203
+ #: counter.php:1115
204
+ #: counter.php:1310
205
+ #: userperspan.php:34
206
+ msgid "Visitors per day"
207
+ msgstr "(m&eacute;dia) de visitas por dia"
208
+
209
+ #@ cpd
210
+ #: counter-core.php:777
211
+ #: counter.php:1309
212
+ msgid "Visitors per month"
213
+ msgstr "Visitas por m&ecirc;s"
214
+
215
+ #@ cpd
216
+ #: counter-core.php:779
217
+ #: counter-options.php:806
218
+ msgid "Visitors per post"
219
+ msgstr "Visitas por post"
220
+
221
+ #@ cpd
222
+ #: counter-options.php:63
223
+ #, php-format
224
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
225
+ msgstr "Pa&iacute;ses atualizados. <b>%s</b> lan&ccedil;amentos em %s menos pa&iacute;ses faltando"
226
+
227
+ #@ cpd
228
+ #: counter-options.php:66
229
+ msgid "update next"
230
+ msgstr "Atualizar proximo"
231
+
232
+ #@ cpd
233
+ #: counter-options.php:106
234
+ #, php-format
235
+ msgid "Mass Bots cleaned. %s counts deleted."
236
+ msgstr "Mass Bots apagados. %s ocorr&ecirc;ncias deletadas."
237
+
238
+ #@ cpd
239
+ #: counter-options.php:123
240
+ msgid "Counter reseted."
241
+ msgstr "Contador reiniciado."
242
+
243
+ #@ default
244
+ #: counter-options.php:771
245
+ msgid "Dashboard"
246
+ msgstr "Painel"
247
+
248
+ #@ cpd
249
+ #: counter-options.php:807
250
+ #: counter-options.php:811
251
+ msgid "How many posts do you want to see on dashboard page?"
252
+ msgstr "Quantos posts voc&ecirc; deseja visualizar no Painel?"
253
+
254
+ #@ cpd
255
+ #: counter-options.php:810
256
+ msgid "Latest Counts - Posts"
257
+ msgstr "Contagens Recentes - Posts"
258
+
259
+ #@ cpd
260
+ #: counter-options.php:814
261
+ msgid "Latest Counts - Days"
262
+ msgstr "Contagens Recentes - Dias"
263
+
264
+ #@ cpd
265
+ #: counter-options.php:815
266
+ #: counter-options.php:819
267
+ #: counter-options.php:841
268
+ msgid "How many days do you want look back?"
269
+ msgstr "Quantos dias atr&aacute;s você quer ver?"
270
+
271
+ #@ cpd
272
+ #: counter-options.php:818
273
+ msgid "Chart - Days"
274
+ msgstr "Gr&aacute;fico - Dias"
275
+
276
+ #@ cpd
277
+ #: counter-options.php:822
278
+ msgid "Chart - Height"
279
+ msgstr "Gr&aacute;fico - Altura"
280
+
281
+ #@ cpd
282
+ #: counter-options.php:823
283
+ msgid "Height of the biggest bar"
284
+ msgstr "Altura da barra maior"
285
+
286
+ #@ cpd
287
+ #: counter-options.php:827
288
+ msgid "Countries"
289
+ msgstr "Pa&iacute;ses"
290
+
291
+ #@ cpd
292
+ #: counter-options.php:828
293
+ msgid "How many countries do you want to see on dashboard page?"
294
+ msgstr "Quantos pa&iacute;ses você quer visualizar no Painel?"
295
+
296
+ #@ cpd
297
+ #: counter-options.php:855
298
+ msgid "Show in lists"
299
+ msgstr "Exibir em listas"
300
+
301
+ #@ cpd
302
+ #: counter-options.php:856
303
+ msgid "Show \"Reads per Post\" in a new column in post management views."
304
+ msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualiza&ccedil;&atilde;o de posts."
305
+
306
+ #@ cpd
307
+ #: counter-options.php:608
308
+ msgid "GeoIP - Countries"
309
+ msgstr "GeoIP - Pa&iacute;ses"
310
+
311
+ #@ cpd
312
+ #: counter-options.php:617
313
+ msgid "Update old counter data"
314
+ msgstr "Atualizar dados de contadores antigos"
315
+
316
+ #@ cpd
317
+ #: counter-options.php:629
318
+ msgid "Update GeoIP database"
319
+ msgstr "Atualizar Base de Dados GeoIP"
320
+
321
+ #@ cpd
322
+ #: counter-options.php:624
323
+ msgid "Download a new version of GeoIP.dat file."
324
+ msgstr "Baixe uma nova vers&atilde;o do arquivo GeoIP.dat"
325
+
326
+ #@ cpd
327
+ #: counter-options.php:634
328
+ msgid "More informations about GeoIP"
329
+ msgstr "Mais informa&ccedil;&otilde;es sobre o GeoIP"
330
+
331
+ #@ cpd
332
+ #: counter-options.php:402
333
+ #: massbots.php:36
334
+ msgid "Mass Bots"
335
+ msgstr "Mass Bots"
336
+
337
+ #@ cpd
338
+ #: counter-options.php:406
339
+ #, php-format
340
+ msgid "Show all IPs with more than %s page views per day"
341
+ msgstr "Exibir todos os IPs com mais de %s p&aacute;ginas exibidas por dia"
342
+
343
+ #@ cpd
344
+ #: counter-options.php:407
345
+ #: notes.php:71
346
+ #: userperspan.php:44
347
+ msgid "show"
348
+ msgstr "exibir"
349
+
350
+ #@ cpd
351
+ #: counter-options.php:415
352
+ msgid "IP"
353
+ msgstr "IP"
354
+
355
+ #@ cpd
356
+ #@ default
357
+ #: counter-options.php:416
358
+ #: notes.php:75
359
+ msgid "Date"
360
+ msgstr "Data"
361
+
362
+ #@ cpd
363
+ #: counter-options.php:417
364
+ msgid "Client"
365
+ msgstr "Cliente"
366
+
367
+ #@ cpd
368
+ #: counter-options.php:418
369
+ msgid "Views"
370
+ msgstr "Exibi&ccedil;&otilde;es"
371
+
372
+ #@ cpd
373
+ #: counter-options.php:433
374
+ #: counter-options.php:449
375
+ #, php-format
376
+ msgid "Delete these %s counts"
377
+ msgstr "Deletar estes %s contadores"
378
+
379
+ #@ cpd
380
+ #: counter-options.php:658
381
+ #: counter-options.php:668
382
+ msgid "Reset the counter"
383
+ msgstr "Reiniciar o contador"
384
+
385
+ #@ cpd
386
+ #: counter-options.php:661
387
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
388
+ msgstr "Voc&ecirc; pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se voc&ecirc; precisar das informa&ccedil;&otilde;es atuais!"
389
+
390
+ #@ cpd
391
+ #: counter.php:705
392
+ #, php-format
393
+ msgid "The %s most visited posts in last %s days:"
394
+ msgstr "Os %s posts mais visitados nos &uacute;ltimos %s dias:"
395
+
396
+ #@ cpd
397
+ #: counter.php:861
398
+ msgid "Other"
399
+ msgstr "Outro"
400
+
401
+ #@ default
402
+ #: counter.php:1049
403
+ #: massbots.php:53
404
+ #: userperspan.php:63
405
+ msgid "Front page displays"
406
+ msgstr "Exibi&ccedil;&otilde;es da primeira página"
407
+
408
+ #@ default
409
+ #: counter-core.php:612
410
+ #: counter-options.php:386
411
+ #: counter-options.php:712
412
+ msgid "Settings"
413
+ msgstr "Configura&ccedil;&otilde;es"
414
+
415
+ #@ cpd
416
+ #: counter-core.php:677
417
+ #: counter-options.php:761
418
+ #: counter.php:186
419
+ #: counter.php:922
420
+ msgid "Reads"
421
+ msgstr "Leituras"
422
+
423
+ #@ cpd
424
+ #: counter.php:1299
425
+ msgid "This post"
426
+ msgstr "Este post"
427
+
428
+ #@ cpd
429
+ #: counter.php:291
430
+ msgid "Reads per day"
431
+ msgstr "Leituras por dia"
432
+
433
+ #@ cpd
434
+ #: counter-core.php:786
435
+ #: counter-options.php:832
436
+ msgid "Browsers"
437
+ msgstr "Navegadores"
438
+
439
+ #@ cpd
440
+ #: counter-core.php:780
441
+ msgid "Latest Counts"
442
+ msgstr "Contagens Recentes"
443
+
444
+ #@ cpd
445
+ #: counter-core.php:791
446
+ msgid "Reads per Country"
447
+ msgstr "Leituras por Pa&iacute;s"
448
+
449
+ #@ cpd
450
+ #: geoip/geoip.php:90
451
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
452
+ msgstr "Desculpe, fun&ccedil;&otilde;es necess&aacute;rias (zlib) n&atilde;o instaladas ou habilitadas no php.ini."
453
+
454
+ #@ cpd
455
+ #: geoip/geoip.php:114
456
+ msgid "New GeoIP database installed."
457
+ msgstr "Nova base de dados GeoIP instalada."
458
+
459
+ #@ cpd
460
+ #: geoip/geoip.php:116
461
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
462
+ msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permiss&otilde;es do diretório \"geoip\" est&atilde;o setadas para 777."
463
+
464
+ #@ cpd
465
+ #: counter-options.php:731
466
+ msgid "until User Level"
467
+ msgstr "usuários do nível"
468
+
469
+ #@ cpd
470
+ #: counter-options.php:863
471
+ msgid "Start Values"
472
+ msgstr "Valor inicial"
473
+
474
+ #@ cpd
475
+ #: counter-options.php:867
476
+ msgid "Here you can change the date of first count and add a start count."
477
+ msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
478
+
479
+ #@ cpd
480
+ #: counter-options.php:871
481
+ msgid "Start date"
482
+ msgstr "Data inicial"
483
+
484
+ #@ cpd
485
+ #: counter-options.php:872
486
+ msgid "Your old Counter starts at?"
487
+ msgstr "Sua contagem antiga começa em?"
488
+
489
+ #@ cpd
490
+ #: counter-options.php:875
491
+ #: counter-options.php:879
492
+ msgid "Start count"
493
+ msgstr "Contagem inicial"
494
+
495
+ #@ cpd
496
+ #: counter-options.php:876
497
+ msgid "Add this value to \"Total visitors\"."
498
+ msgstr "Adicione este valor para \"Total visitors\"."
499
+
500
+ #@ cpd
501
+ #: counter-options.php:699
502
+ msgid "Support"
503
+ msgstr "Suporte"
504
+
505
+ #@ cpd
506
+ #: counter-core.php:741
507
+ msgid "Bug? Problem? Question? Hint? Praise?"
508
+ msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
509
+
510
+ #@ cpd
511
+ #: counter-core.php:742
512
+ #, php-format
513
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
514
+ msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
515
+
516
+ #@ default
517
+ #: counter.php:821
518
+ msgid "Show"
519
+ msgstr "Mostrar"
520
+
521
+ #@ cpd
522
+ #: counter.php:823
523
+ #: notes.php:42
524
+ #: notes.php:76
525
+ msgid "Notes"
526
+ msgstr "Notas"
527
+
528
+ #@ default
529
+ #: counter.php:1034
530
+ msgid "Edit Post"
531
+ msgstr "Editar Post"
532
+
533
+ #@ default
534
+ #: counter-core.php:783
535
+ msgid "Plugin"
536
+ msgstr "Plugin"
537
+
538
+ #@ cpd
539
+ #: counter-core.php:740
540
+ #, php-format
541
+ msgid "Time for Count per Day: <code>%s</code>."
542
+ msgstr "Tempo para Contagem por Dia: <code>%s</code>."
543
+
544
+ #@ default
545
+ #: notes.php:77
546
+ msgid "Action"
547
+ msgstr "A&ccedil;&atilde;o"
548
+
549
+ #@ cpd
550
+ #: notes.php:82
551
+ msgid "add"
552
+ msgstr "Adicionar"
553
+
554
+ #@ cpd
555
+ #: notes.php:98
556
+ msgid "save"
557
+ msgstr "Salvar"
558
+
559
+ #@ cpd
560
+ #: notes.php:99
561
+ msgid "delete"
562
+ msgstr "Apagar"
563
+
564
+ #@ cpd
565
+ #: notes.php:110
566
+ msgid "edit"
567
+ msgstr "Editar"
568
+
569
+ #@ cpd
570
+ #: counter-options.php:750
571
+ msgid "Anonymous IP"
572
+ msgstr "IP An&ocirc;nimo"
573
+
574
+ #@ cpd
575
+ #: counter-options.php:754
576
+ msgid "Cache"
577
+ msgstr "Cache"
578
+
579
+ #@ cpd
580
+ #: counter-options.php:755
581
+ msgid "I use a cache plugin. Count these visits with ajax."
582
+ msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
583
+
584
+ #@ cpd
585
+ #: counter-options.php:833
586
+ msgid "Substring of the user agent, separated by comma"
587
+ msgstr "Substring do usu&aacute;rio agente, separado por v&iacute;rgula"
588
+
589
+ #@ cpd
590
+ #: counter-options.php:880
591
+ msgid "Add this value to \"Total reads\"."
592
+ msgstr "Adicione este valor ao \"Total de Leituras\"."
593
+
594
+ #@ cpd
595
+ #: counter-options.php:917
596
+ msgid "Debug mode"
597
+ msgstr "Modo de depura&ccedil;&atilde;o"
598
+
599
+ #@ cpd
600
+ #: counter-options.php:919
601
+ msgid "Show debug informations at the bottom of all pages."
602
+ msgstr "Mostrar informa&ccedil;&otilde;es de depura&ccedil;&atilde;o na base de todas as p&aacute;ginas."
603
+
604
+ #@ cpd
605
+ #: counter.php:182
606
+ #: counter.php:1300
607
+ msgid "Total reads"
608
+ msgstr "Total de Leituras"
609
+
610
+ #@ cpd
611
+ #: counter.php:183
612
+ #: counter.php:1301
613
+ msgid "Reads today"
614
+ msgstr "Leituras Hoje"
615
+
616
+ #@ cpd
617
+ #: counter.php:184
618
+ #: counter.php:1302
619
+ msgid "Reads yesterday"
620
+ msgstr "Leituras Ontem"
621
+
622
+ #@ cpd
623
+ #: counter-core.php:792
624
+ msgid "Visitors per Country"
625
+ msgstr "Visitantes por Pa&iacute;is"
626
+
627
+ #@ cpd
628
+ #: counter.php:382
629
+ #: counter.php:1144
630
+ msgid "Map"
631
+ msgstr "Mapa"
632
+
633
+ #@ cpd
634
+ #: userperspan.php:38
635
+ msgid "Start"
636
+ msgstr "Iniciar"
637
+
638
+ #@ cpd
639
+ #: userperspan.php:40
640
+ msgid "End"
641
+ msgstr "Fim"
642
+
643
+ #@ cpd
644
+ #: userperspan.php:42
645
+ msgid "PostID"
646
+ msgstr "PostID"
647
+
648
+ #@ cpd
649
+ #: userperspan.php:50
650
+ msgid "no data found"
651
+ msgstr "N&atilde;o foram encontrados dados"
652
+
653
+ #@ cpd
654
+ #: counter-options.php:611
655
+ msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
656
+ msgstr "Voc&ecirc; pode obter os dados dos pa&iacute;ses para todas as entradas no banco de dados checando novamente os endere&ccedil;os IP na base de dados GeoIP. Isto pode demorar um pouco!"
657
+
658
+ #@ cpd
659
+ #: counter-options.php:720
660
+ msgid "Counter"
661
+ msgstr "contador"
662
+
663
+ #@ cpd
664
+ #: counter-options.php:758
665
+ msgid "Clients and referrers"
666
+ msgstr "Clientes e Referências"
667
+
668
+ #@ cpd
669
+ #: counter-options.php:761
670
+ msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
671
+ msgstr "Salvar e Exibir Clientes e Referências"
672
+
673
+ #@ cpd
674
+ #: counter-options.php:844
675
+ msgid "Local URLs"
676
+ msgstr "URLs Locais"
677
+
678
+ #@ cpd
679
+ #: counter-options.php:845
680
+ msgid "Show local referrers too."
681
+ msgstr "Também exibir referência local."
682
+
683
+ #@ default
684
+ #: counter-options.php:852
685
+ msgid "Posts"
686
+ msgstr "Posts"
687
+
688
+ #@ default
689
+ #: counter-options.php:852
690
+ msgid "Pages"
691
+ msgstr "Páginas"
692
+
693
+ #@ cpd
694
+ #: counter.php:185
695
+ #: counter.php:1303
696
+ msgid "Reads last week"
697
+ msgstr "Leituras na semana passada"
698
+
699
+ #@ default
700
+ #: counter.php:1043
701
+ msgid "Category"
702
+ msgstr "Categoria"
703
+
704
+ #@ default
705
+ #: counter.php:1046
706
+ msgid "Tag"
707
+ msgstr "Teg"
708
+
709
+ #@ default
710
+ #: counter-core.php:743
711
+ msgid "License"
712
+ msgstr "License"
713
+
714
+ #@ cpd
715
+ #: counter-core.php:778
716
+ #: counter.php:1304
717
+ msgid "Reads per month"
718
+ msgstr "Leituras por mês"
719
+
720
+ #@ cpd
721
+ #: counter-core.php:787
722
+ msgid "Referrer"
723
+ msgstr "Referência"
724
+
725
+ #@ default
726
+ #: counter.php:1323
727
+ msgid "Title"
728
+ msgstr "Título"
729
+
730
+ #@ cpd
731
+ #: counter-options.php:836
732
+ msgid "Referrers - Entries"
733
+ msgstr "Referência - entradas"
734
+
735
+ #@ cpd
736
+ #: counter-options.php:837
737
+ msgid "How many referrers do you want to see on dashboard page?"
738
+ msgstr "Quantas referência você quer ver no painel?"
739
+
740
+ #@ cpd
741
+ #: counter-options.php:840
742
+ msgid "Referrers - Days"
743
+ msgstr "Referência - Dias"
744
+
745
+ #@ cpd
746
+ #: counter.php:892
747
+ #, php-format
748
+ msgid "The %s referrers in last %s days:"
749
+ msgstr "AA %s referências nos últimos %s dias:"
750
+
751
+ #@ cpd
752
+ #: counter-core.php:776
753
+ msgid "Visitors online"
754
+ msgstr "Visitantes online"
755
+
756
+ #@ cpd
757
+ #: counter-core.php:225
758
+ #, php-format
759
+ msgid "\"Count per Day\" updated to version %s."
760
+ msgstr "Atualizar \"Count per Day\" para a versão %s."
761
+
762
+ #@ cpd
763
+ #: counter-core.php:977
764
+ msgid "Backup failed! Cannot open file"
765
+ msgstr "Backup falhou. O arquivo não abriu"
766
+
767
+ #@ cpd
768
+ #: counter-core.php:1004
769
+ #, php-format
770
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
771
+ msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
772
+
773
+ #@ cpd
774
+ #: counter-core.php:1095
775
+ #: counter-core.php:1103
776
+ #, php-format
777
+ msgid "Backup of counter table saved in %s."
778
+ msgstr "Backup da tabela do contador salvo em %s."
779
+
780
+ #@ cpd
781
+ #: counter-core.php:1097
782
+ #: counter-core.php:1105
783
+ #, php-format
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
+ #@ cpd
788
+ #: counter-options.php:169
789
+ msgid "Collection in progress..."
790
+ msgstr "Acumulador em progresso..."
791
+
792
+ #@ cpd
793
+ #: counter-options.php:263
794
+ msgid "Get Visitors per Post..."
795
+ msgstr "Obter visitas por Post..."
796
+
797
+ #@ cpd
798
+ #: counter-options.php:284
799
+ msgid "Delete old data..."
800
+ msgstr "Deletar dados antigos..."
801
+
802
+ #@ cpd
803
+ #: counter-options.php:308
804
+ #, php-format
805
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s &gt; size after = %s)."
806
+ msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s &gt; tamanho posterior = %s)."
807
+
808
+ #@ cpd
809
+ #: counter-options.php:317
810
+ msgid "Installation of \"Count per Day\" checked"
811
+ msgstr "Instalação do \"Count per Day\" checada"
812
+
813
+ #@ default
814
+ #: counter-options.php:385
815
+ #: counter-options.php:711
816
+ msgid "Tools"
817
+ msgstr "Ferramentas"
818
+
819
+ #@ cpd
820
+ #: counter-options.php:763
821
+ msgid "Save URL only, no query string."
822
+ msgstr "Salvar somente URL, sem sequencia de caracteres"
823
+
824
+ #@ cpd
825
+ #: counter-options.php:787
826
+ msgid "Who can see it"
827
+ msgstr "Quem pode ver isto"
828
+
829
+ #@ cpd
830
+ #: counter-options.php:796
831
+ msgid "custom"
832
+ msgstr "Customizar"
833
+
834
+ #@ cpd
835
+ #: counter-options.php:798
836
+ msgid "and higher are allowed to see the statistics page."
837
+ msgstr "e superior têm permissão para ver a página de estatísticas."
838
+
839
+ #@ cpd
840
+ #: counter-options.php:800
841
+ #, php-format
842
+ msgid "Set the %s capability %s a user need:"
843
+ msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
844
+
845
+ #@ cpd
846
+ #: counter-options.php:887
847
+ msgid "Stylesheet"
848
+ msgstr "Estilo"
849
+
850
+ #@ cpd
851
+ #: counter-options.php:890
852
+ msgid "NO Stylesheet in Frontend"
853
+ msgstr "SEM Estilo na interface pública"
854
+
855
+ #@ cpd
856
+ #: counter-options.php:891
857
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
858
+ msgstr "Não carregue o estilo \"counter.css\" na interface pública"
859
+
860
+ #@ cpd
861
+ #: counter-options.php:461
862
+ #: counter-options.php:898
863
+ msgid "Backup"
864
+ msgstr "Backup"
865
+
866
+ #@ cpd
867
+ #: counter-options.php:901
868
+ msgid "Entries per pass"
869
+ msgstr "Entradas por passagem"
870
+
871
+ #@ cpd
872
+ #: counter-options.php:904
873
+ msgid "How many entries should be saved per pass? Default: 10000"
874
+ msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
875
+
876
+ #@ cpd
877
+ #: counter-options.php:909
878
+ msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
879
+ 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."
880
+
881
+ #@ cpd
882
+ #: counter-options.php:465
883
+ #, php-format
884
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
885
+ msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
886
+
887
+ #@ cpd
888
+ #: counter-options.php:472
889
+ msgid "Backup the database"
890
+ msgstr "Backup da base de dados"
891
+
892
+ #@ cpd
893
+ #: counter-options.php:563
894
+ #: counter-options.php:595
895
+ msgid "Collect old data"
896
+ msgstr "Coletar dados antigos"
897
+
898
+ #@ cpd
899
+ #: counter-options.php:568
900
+ #, php-format
901
+ msgid "Current size of your counter table %s is %s."
902
+ msgstr "O tamanho atual da sua tabela de contador %s é %s."
903
+
904
+ #@ cpd
905
+ #: counter-options.php:570
906
+ 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."
907
+ 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."
908
+
909
+ #@ cpd
910
+ #: counter-options.php:575
911
+ #, php-format
912
+ msgid "Currently your collection contains data until %s."
913
+ msgstr "Atualmente sua coleção contém dados até %s"
914
+
915
+ #@ cpd
916
+ #: counter-options.php:579
917
+ msgid "Normally new data will be added to the collection."
918
+ msgstr "Dados novos são adicionados normalmente à coleção."
919
+
920
+ #@ cpd
921
+ #: counter-options.php:585
922
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
923
+ msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
924
+
925
+ #@ cpd
926
+ #: counter-options.php:586
927
+ #, php-format
928
+ msgid "All collected data until %s will deleted."
929
+ msgstr "Todos os dados coletados até %s serão excluidos."
930
+
931
+ #@ cpd
932
+ #: counter-options.php:591
933
+ #, php-format
934
+ msgid "Keep entries of last %s full months + current month in counter table."
935
+ msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
936
+
937
+ #@ cpd
938
+ #: counter-options.php:642
939
+ msgid "ReActivation"
940
+ msgstr "Reativação"
941
+
942
+ #@ cpd
943
+ #: counter-options.php:645
944
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
945
+ msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
946
+
947
+ #@ cpd
948
+ #: counter-options.php:650
949
+ msgid "ReActivate the plugin"
950
+ msgstr "Reativar o plugin"
951
+
952
+ #@ cpd
953
+ #: counter.php:192
954
+ #: counter.php:946
955
+ msgid "Visitors"
956
+ msgstr "Visitantes"
957
+
958
+ #@ cpd
959
+ #: counter.php:195
960
+ #: counter.php:196
961
+ msgid "Most visited day"
962
+ msgstr "Dia mais visitado"
963
+
964
+ #@ cpd
965
+ #: counter.php:1342
966
+ msgid "drag and drop to sort"
967
+ msgstr "arrastar e soltar para classificar"
968
+
969
+ #@ cpd
970
+ #: counter-core.php:782
971
+ #: counter-options.php:836
972
+ #: counter-options.php:840
973
+ msgid "Search strings"
974
+ msgstr "Buscar Strings"
975
+
976
+ #@ cpd
977
+ #: counter-core.php:1091
978
+ msgid "Your can download the backup files here and now."
979
+ msgstr "Você pode fazer download dos arquivos de backup aqui e agora."
980
+
981
+ #@ cpd
982
+ #: counter-core.php:1161
983
+ msgid "Error while reading backup file!"
984
+ msgstr "Erro ao ler o arquivo de BackUp!"
985
+
986
+ #@ cpd
987
+ #: counter-core.php:1165
988
+ #, php-format
989
+ msgid "The backup was added to counter table %s."
990
+ msgstr "O backup foi adicionado à tabela de contadores %s"
991
+
992
+ #@ cpd
993
+ #: counter-core.php:1167
994
+ #, php-format
995
+ msgid "The counter table %s was restored from backup."
996
+ msgstr "A tabela de contadores %s foi restaurada do backup."
997
+
998
+ #@ cpd
999
+ #: counter-core.php:1184
1000
+ msgid "Options restored from backup."
1001
+ msgstr "Opções restauradas do backup."
1002
+
1003
+ #@ cpd
1004
+ #: counter-options.php:332
1005
+ msgid "Old search strings deleted"
1006
+ msgstr "Sequencias de pesquisas antigas apagadas."
1007
+
1008
+ #@ cpd
1009
+ #: counter-options.php:468
1010
+ msgid "Download only"
1011
+ msgstr "Somente download"
1012
+
1013
+ #@ cpd
1014
+ #: counter-options.php:500
1015
+ msgid "Settings and collections"
1016
+ msgstr "Configurações e Coleções"
1017
+
1018
+ #@ cpd
1019
+ #: counter-options.php:505
1020
+ #, php-format
1021
+ msgid "Counter table %s"
1022
+ msgstr "Tabela de Contador %s"
1023
+
1024
+ #@ cpd
1025
+ #: counter-options.php:512
1026
+ #, php-format
1027
+ msgid "Add data from the backup file %s to existing counter table?"
1028
+ msgstr "Adicionar dados de backup %s para a tabela de contador existente?"
1029
+
1030
+ #@ cpd
1031
+ #: counter-options.php:512
1032
+ msgid "Add"
1033
+ msgstr "Adicionar"
1034
+
1035
+ #@ cpd
1036
+ #: counter-options.php:516
1037
+ #, php-format
1038
+ msgid "Restore data from the backup file %s ?"
1039
+ msgstr "Restaurar dados a partir do backup %s ?"
1040
+
1041
+ #@ default
1042
+ #: counter-options.php:516
1043
+ msgid "Restore"
1044
+ msgstr "Restaurar"
1045
+
1046
+ #@ default
1047
+ #: counter-options.php:518
1048
+ msgid "Delete"
1049
+ msgstr "Apagar"
1050
+
1051
+ #@ cpd
1052
+ #: counter-options.php:519
1053
+ #, php-format
1054
+ msgid "Delete the backup file %s ?"
1055
+ msgstr "Apagar arquivo backup %s ?"
1056
+
1057
+ #@ cpd
1058
+ #: counter-options.php:525
1059
+ msgid "add backup to current counter table"
1060
+ msgstr "adicionar backup para a tabela de contador atual"
1061
+
1062
+ #@ cpd
1063
+ #: counter-options.php:526
1064
+ msgid "replace current counter table with with backup"
1065
+ msgstr "substituir a tabela de contador atual pelo backup"
1066
+
1067
+ #@ cpd
1068
+ #: counter-options.php:527
1069
+ msgid "delete backup file"
1070
+ msgstr "apagar arquivo backup"
1071
+
1072
+ #@ cpd
1073
+ #: counter-options.php:552
1074
+ #, php-format
1075
+ msgid "Delete search strings older than %s days."
1076
+ msgstr "Apagar sequencias de busca anteriores a %s dias."
1077
+
1078
+ #@ cpd
1079
+ #: counter-options.php:554
1080
+ msgid "Delete search strings"
1081
+ msgstr "Apagar sequencias de busca"
1082
+
1083
+ #@ cpd
1084
+ #: counter.php:1089
1085
+ #, php-format
1086
+ msgid "The %s most searched strings:"
1087
+ msgstr "A %s string mais procurada:"
1088
+
1089
+ #@ cpd
1090
+ #: counter.php:1098
1091
+ #, php-format
1092
+ msgid "The search strings of the last %s days:"
1093
+ msgstr "A série de busca dos últimos %s dias:"
1094
+
locale/cpd-ro_RO.po CHANGED
@@ -1,962 +1,962 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count per Day v3.0\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: \n"
7
- "X-Poedit-Language: Romanian\n"
8
- "X-Poedit-Country: Romania\n"
9
- "Language-Team: Web Geeks\n"
10
- "Last-Translator: \n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Textdomain-Support: yes\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #@ cpd
22
- #: counter-options.php:49
23
- msgid "Options updated"
24
- msgstr "Opţiuni actualizate"
25
-
26
- #@ cpd
27
- #: counter-options.php:112
28
- #, php-format
29
- msgid "Database cleaned. %s rows deleted."
30
- msgstr "Baza de date curăţate. %s rânduri şterse."
31
-
32
- #@ cpd
33
- #: counter-options.php:127
34
- #: counter-options.php:810
35
- msgid "UNINSTALL Count per Day"
36
- msgstr "DEZINSTALAŢI conta pe zi"
37
-
38
- #@ cpd
39
- #: counter-options.php:132
40
- #: counter-options.php:133
41
- #: counter-options.php:134
42
- #, php-format
43
- msgid "Table %s deleted"
44
- msgstr "Tabelul %s elimină"
45
-
46
- #@ cpd
47
- #: counter-options.php:135
48
- msgid "Options deleted"
49
- msgstr "Opţiuni elimină"
50
-
51
- #@ cpd
52
- #: counter-options.php:316
53
- #: counter-options.php:796
54
- msgid "Uninstall"
55
- msgstr "Dezinstalare"
56
-
57
- #@ cpd
58
- #: counter-options.php:317
59
- msgid "Click here"
60
- msgstr "Faceţi clic aici"
61
-
62
- #@ cpd
63
- #: counter-options.php:317
64
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
- msgstr "."
66
-
67
- #@ cpd
68
- #: counter-options.php:355
69
- msgid "Online time"
70
- msgstr "Timp online"
71
-
72
- #@ cpd
73
- #: counter-options.php:356
74
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
- msgstr " pagina tabloul de bord."
76
-
77
- #@ cpd
78
- #: counter-options.php:359
79
- msgid "Logged on Users"
80
- msgstr "Logon utilizatori"
81
-
82
- #@ cpd
83
- #: counter-options.php:361
84
- msgid "count too"
85
- msgstr "conta prea"
86
-
87
- #@ cpd
88
- #: counter-options.php:373
89
- msgid "Auto counter"
90
- msgstr "Auto counter"
91
-
92
- #@ cpd
93
- #: counter-options.php:374
94
- msgid "Counts automatically single-posts and pages, no changes on template needed."
95
- msgstr "Contează automat single-posturi şi paginile, nici o modificare pe şablon necesare."
96
-
97
- #@ cpd
98
- #: counter-options.php:377
99
- msgid "Bots to ignore"
100
- msgstr "Roboţii să ignore"
101
-
102
- #@ cpd
103
- #: counter-options.php:561
104
- msgid "Update options"
105
- msgstr "Opţiuni de actualizare"
106
-
107
- #@ cpd
108
- #: counter-options.php:656
109
- #: counter-options.php:665
110
- msgid "Clean the database"
111
- msgstr "Curăţaţi baza de date"
112
-
113
- #@ cpd
114
- #: counter-options.php:659
115
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
- msgstr "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."
117
-
118
- #@ cpd
119
- #: counter-options.php:799
120
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
- msgstr " numai persoanele cu handicap tabelele din baza de date vor fi păstrate."
122
-
123
- #@ cpd
124
- #: counter-options.php:800
125
- msgid "Here you can delete the tables and disable \"Count per Day\"."
126
- msgstr ".Aici aveţi posibilitatea să ştergeţi tabele şi dezactiva \"Numărătoarea pe zi\"."
127
-
128
- #@ cpd
129
- #: counter-options.php:803
130
- msgid "WARNING"
131
- msgstr "AVERTISMENT"
132
-
133
- #@ cpd
134
- #: counter-options.php:804
135
- msgid "These tables (with ALL counter data) will be deleted."
136
- msgstr "Aceste tabele (cu toate Contor date) vor fi şterse."
137
-
138
- #@ cpd
139
- #: counter-options.php:806
140
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
- msgstr " re-a instala, contorul începe la 0."
142
-
143
- #@ cpd
144
- #: counter-options.php:786
145
- #: counter-options.php:809
146
- msgid "Yes"
147
- msgstr "da"
148
-
149
- #@ cpd
150
- #: counter-options.php:810
151
- msgid "You are sure to disable Count per Day and delete all data?"
152
- msgstr "Sunteţi sigur de a nu fi de acord conta pe zi şi a şterge toate datele?"
153
-
154
- #@ cpd
155
- #: counter-core.php:754
156
- #: counter.php:1124
157
- msgid "Statistics"
158
- msgstr "Statistici"
159
-
160
- #@ cpd
161
- #: counter-core.php:723
162
- #: counter.php:160
163
- #: counter.php:1010
164
- #: counter.php:1202
165
- msgid "Total visitors"
166
- msgstr "Total vizitatori"
167
-
168
- #@ cpd
169
- #: counter.php:161
170
- #: counter.php:1208
171
- msgid "Visitors currently online"
172
- msgstr "Vizitatori online"
173
-
174
- #@ cpd
175
- #: counter.php:162
176
- #: counter.php:1203
177
- msgid "Visitors today"
178
- msgstr "Vizitatori astăzi"
179
-
180
- #@ cpd
181
- #: counter.php:163
182
- #: counter.php:1204
183
- msgid "Visitors yesterday"
184
- msgstr "Vizitatori ieri"
185
-
186
- #@ cpd
187
- #@ cpd
188
- #@ cpd
189
- #@ cpd
190
- #: counter.php:164
191
- #: counter.php:1205
192
- #: counter.php:167
193
- #: counter.php:825
194
- #: counter.php:1209
195
- #: counter-core.php:729
196
- #: counter.php:166
197
- #: counter.php:263
198
- #: counter.php:1012
199
- #: counter.php:1207
200
- #: userperspan.php:34
201
- #: counter-core.php:725
202
- #: counter.php:1206
203
- msgid "Visitors per month"
204
- msgstr "Vizitatori pe lună"
205
-
206
- #@ cpd
207
- #: counter-core.php:727
208
- #: counter-options.php:438
209
- msgid "Visitors per post"
210
- msgstr "Vizitatori pe post"
211
-
212
- #@ cpd
213
- #: counter-options.php:122
214
- msgid "Counter reseted."
215
- msgstr "Contor resetat."
216
-
217
- #@ cpd
218
- #: counter-options.php:439
219
- #: counter-options.php:443
220
- msgid "How many posts do you want to see on dashboard page?"
221
- msgstr "Cât de multe posturi doriţi pentru a vedea pagina tabloul de bord?"
222
-
223
- #@ cpd
224
- #: counter-options.php:442
225
- msgid "Latest Counts - Posts"
226
- msgstr "Contează ultimele - posturi"
227
-
228
- #@ cpd
229
- #: counter-options.php:446
230
- msgid "Latest Counts - Days"
231
- msgstr "Contează ultimele - zile"
232
-
233
- #@ cpd
234
- #: counter-options.php:447
235
- #: counter-options.php:451
236
- #: counter-options.php:473
237
- msgid "How many days do you want look back?"
238
- msgstr "Câte zile se va privi înapoi?"
239
-
240
- #@ cpd
241
- #: counter-options.php:488
242
- msgid "Show in lists"
243
- msgstr "Arată în liste"
244
-
245
- #@ cpd
246
- #: counter-options.php:489
247
- msgid "Show \"Reads per Post\" in a new column in post management views."
248
- msgstr " într-o coloană nouă în post gestionare vizualizări."
249
-
250
- #@ cpd
251
- #: counter-options.php:777
252
- #: counter-options.php:787
253
- msgid "Reset the counter"
254
- msgstr "Resetarea contorului de"
255
-
256
- #@ cpd
257
- #: counter-options.php:780
258
- msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
259
- msgstr "Puteţi reseta contorul de gol tabelul. TOATE la 0! < br / > face o copie de rezervă, dacă aveţi nevoie de datele curente!"
260
-
261
- #@ cpd
262
- #: counter.php:672
263
- #, php-format
264
- msgid "The %s most visited posts in last %s days:"
265
- msgstr "Posturi în ultimele zile de %s %s cel mai vizitat:"
266
-
267
- #@ default
268
- #: counter-core.php:575
269
- #: counter-options.php:341
270
- #: counter-options.php:565
271
- msgid "Settings"
272
- msgstr "Setări"
273
-
274
- #@ cpd
275
- #: counter-core.php:639
276
- #: counter-options.php:392
277
- #: counter.php:159
278
- #: counter.php:875
279
- msgid "Reads"
280
- msgstr "Citeşte"
281
-
282
- #@ cpd
283
- #: counter-core.php:728
284
- msgid "Latest Counts"
285
- msgstr "Contează mai recente"
286
-
287
- #@ cpd
288
- #: counter-options.php:450
289
- msgid "Chart - Days"
290
- msgstr "Diagramă - zile"
291
-
292
- #@ cpd
293
- #: counter-options.php:454
294
- msgid "Chart - Height"
295
- msgstr "Diagramă - înălţime"
296
-
297
- #@ cpd
298
- #: counter-options.php:455
299
- msgid "Height of the biggest bar"
300
- msgstr "Înălțimea de la bar mai mare"
301
-
302
- #@ cpd
303
- #: counter.php:1196
304
- msgid "This post"
305
- msgstr "Acest post"
306
-
307
- #@ default
308
- #: counter-options.php:403
309
- msgid "Dashboard"
310
- msgstr "Tabloul de bord"
311
-
312
- #@ cpd
313
- #: counter.php:262
314
- msgid "Reads per day"
315
- msgstr "Citeşte pe zi"
316
-
317
- #@ cpd
318
- #: counter-options.php:60
319
- #, php-format
320
- msgid "Countries updated. <b>%s</b> entries in %s without country left"
321
- msgstr "Ţări actualizate. intrările <b>%s</b> în %s fără ţară stânga"
322
-
323
- #@ cpd
324
- #: counter-options.php:65
325
- msgid "update next"
326
- msgstr "actualizaţi următorul"
327
-
328
- #@ cpd
329
- #: counter-options.php:727
330
- msgid "GeoIP - Countries"
331
- msgstr "GeoIP - ţări"
332
-
333
- #@ cpd
334
- #: counter-options.php:736
335
- msgid "Update old counter data"
336
- msgstr "Actualizaţi datele contor vechi"
337
-
338
- #@ cpd
339
- #: counter-options.php:748
340
- msgid "Update GeoIP database"
341
- msgstr "Actualizare GeoIP database"
342
-
343
- #@ cpd
344
- #: counter-options.php:743
345
- msgid "Download a new version of GeoIP.dat file."
346
- msgstr "Descărcaţi o nouă versiune de dosar GeoIP.dat."
347
-
348
- #@ cpd
349
- #: counter-options.php:753
350
- msgid "More informations about GeoIP"
351
- msgstr "Mai multe informatii despre GeoIP"
352
-
353
- #@ cpd
354
- #: counter-core.php:738
355
- msgid "Reads per Country"
356
- msgstr "Citeşte per tara"
357
-
358
- #@ cpd
359
- #: geoip/geoip.php:117
360
- msgid "New GeoIP database installed."
361
- msgstr "Noi GeoIP database instalat."
362
-
363
- #@ cpd
364
- #: geoip/geoip.php:119
365
- msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
366
- msgstr "Ne pare rau, a aparut o eroare. Încercaţi din nou sau de a verifica drepturile de acces ale director \"GeoIP\" este de 777."
367
-
368
- #@ cpd
369
- #: geoip/geoip.php:93
370
- msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
371
- msgstr "Ne pare rău, funcţiile necesare (zlib) nu instalat sau activat în php.ini."
372
-
373
- #@ cpd
374
- #: counter-options.php:459
375
- msgid "Countries"
376
- msgstr "Ţări"
377
-
378
- #@ cpd
379
- #: counter-options.php:460
380
- msgid "How many countries do you want to see on dashboard page?"
381
- msgstr "Cât de multe ţări doriţi pentru a vedea pagina tabloul de bord?"
382
-
383
- #@ cpd
384
- #: counter-options.php:102
385
- #, php-format
386
- msgid "Mass Bots cleaned. %s counts deleted."
387
- msgstr "Masa roboţii curăţate. %s contează elimină."
388
-
389
- #@ cpd
390
- #: counter-options.php:580
391
- #: massbots.php:35
392
- msgid "Mass Bots"
393
- msgstr "Roboţii de masă"
394
-
395
- #@ cpd
396
- #: counter-options.php:584
397
- #, php-format
398
- msgid "Show all IPs with more than %s page views per day"
399
- msgstr "Arată toate IP-uri cu mai mult de %s de vizualizări de pagină pe zi"
400
-
401
- #@ cpd
402
- #: counter-options.php:585
403
- #: notes.php:71
404
- #: userperspan.php:44
405
- msgid "show"
406
- msgstr "Arată"
407
-
408
- #@ cpd
409
- #: counter-options.php:611
410
- #: counter-options.php:627
411
- #, php-format
412
- msgid "Delete these %s counts"
413
- msgstr "Ştergeţi aceste contează %s"
414
-
415
- #@ cpd
416
- #: counter.php:821
417
- msgid "Other"
418
- msgstr "Alte"
419
-
420
- #@ default
421
- #: counter.php:991
422
- #: massbots.php:52
423
- #: userperspan.php:63
424
- msgid "Front page displays"
425
- msgstr "Afişează prima pagină"
426
-
427
- #@ cpd
428
- #: counter-core.php:733
429
- #: counter-options.php:464
430
- msgid "Browsers"
431
- msgstr "Browsere"
432
-
433
- #@ cpd
434
- #: counter-options.php:593
435
- msgid "IP"
436
- msgstr "IP"
437
-
438
- #@ cpd
439
- #@ default
440
- #: counter-options.php:594
441
- #: notes.php:75
442
- msgid "Date"
443
- msgstr "Data"
444
-
445
- #@ cpd
446
- #: counter-options.php:595
447
- msgid "Client"
448
- msgstr "Client"
449
-
450
- #@ cpd
451
- #: counter-options.php:596
452
- msgid "Views"
453
- msgstr "Vizualizări"
454
-
455
- #@ cpd
456
- #: counter-options.php:497
457
- msgid "Start Values"
458
- msgstr "Valorile de început"
459
-
460
- #@ cpd
461
- #: counter-options.php:501
462
- msgid "Here you can change the date of first count and add a start count."
463
- msgstr "Aici aveţi posibilitatea să modificaţi data primul conta şi adaugă un număr de început."
464
-
465
- #@ cpd
466
- #: counter-options.php:505
467
- msgid "Start date"
468
- msgstr "Data inceperii"
469
-
470
- #@ cpd
471
- #: counter-options.php:506
472
- msgid "Your old Counter starts at?"
473
- msgstr "Dumneavoastră contor vechi începe la?"
474
-
475
- #@ cpd
476
- #: counter-options.php:509
477
- #: counter-options.php:513
478
- msgid "Start count"
479
- msgstr "Contele de start"
480
-
481
- #@ cpd
482
- #: counter-options.php:510
483
- msgid "Add this value to \"Total visitors\"."
484
- msgstr "Adaugă această valoare la \"Total vizitatori\"."
485
-
486
- #@ cpd
487
- #: counter-options.php:714
488
- msgid "Support"
489
- msgstr "Suport"
490
-
491
- #@ cpd
492
- #: counter-core.php:690
493
- msgid "Bug? Problem? Question? Hint? Praise?"
494
- msgstr "Bug? Problema? Întrebare? Indiciu? Laudă?"
495
-
496
- #@ cpd
497
- #: counter-core.php:691
498
- #, php-format
499
- msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
500
- msgstr "Scrie un comentariu pe pagina de <a href=\"%s\"> plugin-ul </a>."
501
-
502
- #@ default
503
- #: counter.php:786
504
- msgid "Show"
505
- msgstr "Arată"
506
-
507
- #@ default
508
- #: counter.php:976
509
- msgid "Edit Post"
510
- msgstr "Editare Post"
511
-
512
- #@ cpd
513
- #: counter-core.php:689
514
- #, php-format
515
- msgid "Time for Count per Day: <code>%s</code>."
516
- msgstr "Timp pentru conta pe zi: <code>%s</code>."
517
-
518
- #@ cpd
519
- #: counter-options.php:362
520
- msgid "until User Level"
521
- msgstr "până la nivel de utilizator"
522
-
523
- #@ default
524
- #: counter-core.php:730
525
- msgid "Plugin"
526
- msgstr "Plugin-ul"
527
-
528
- #@ cpd
529
- #: counter.php:788
530
- #: notes.php:42
531
- #: notes.php:76
532
- msgid "Notes"
533
- msgstr "Note"
534
-
535
- #@ default
536
- #: notes.php:77
537
- msgid "Action"
538
- msgstr "Acţiune"
539
-
540
- #@ cpd
541
- #: notes.php:82
542
- msgid "add"
543
- msgstr "adăuga"
544
-
545
- #@ cpd
546
- #: notes.php:98
547
- msgid "save"
548
- msgstr "salvare"
549
-
550
- #@ cpd
551
- #: notes.php:99
552
- msgid "delete"
553
- msgstr "Ştergere"
554
-
555
- #@ cpd
556
- #: notes.php:110
557
- msgid "edit"
558
- msgstr "Editare"
559
-
560
- #@ cpd
561
- #: counter-options.php:514
562
- msgid "Add this value to \"Total reads\"."
563
- msgstr "."
564
-
565
- #@ cpd
566
- #: counter.php:155
567
- #: counter.php:1197
568
- msgid "Total reads"
569
- msgstr "Total Citeşte"
570
-
571
- #@ cpd
572
- #: counter.php:156
573
- #: counter.php:1198
574
- msgid "Reads today"
575
- msgstr "Citeşte astăzi"
576
-
577
- #@ cpd
578
- #: counter.php:157
579
- #: counter.php:1199
580
- msgid "Reads yesterday"
581
- msgstr "Citeşte ieri"
582
-
583
- #@ cpd
584
- #: counter-options.php:381
585
- msgid "Anonymous IP"
586
- msgstr "IP anonim"
587
-
588
- #@ cpd
589
- #: counter-options.php:385
590
- msgid "Cache"
591
- msgstr "Cache-ul"
592
-
593
- #@ cpd
594
- #: counter-options.php:386
595
- msgid "I use a cache plugin. Count these visits with ajax."
596
- msgstr "I folos un cache dop. Conta aceste vizite cu ajax."
597
-
598
- #@ cpd
599
- #: counter-options.php:465
600
- msgid "Substring of the user agent, separated by comma"
601
- msgstr "Subşir al agentului utilizator, separate prin virgulă"
602
-
603
- #@ cpd
604
- #: counter-options.php:554
605
- msgid "Debug mode"
606
- msgstr "Modul Debug"
607
-
608
- #@ cpd
609
- #: counter-options.php:556
610
- msgid "Show debug informations at the bottom of all pages."
611
- msgstr "Arata informatii de debug la partea de jos a tuturor paginilor."
612
-
613
- #@ cpd
614
- #: counter-core.php:739
615
- msgid "Visitors per Country"
616
- msgstr "Vizitatori pe ţară"
617
-
618
- #@ cpd
619
- #: counter.php:353
620
- #: counter.php:1041
621
- msgid "Map"
622
- msgstr "Hartă"
623
-
624
- #@ cpd
625
- #: userperspan.php:38
626
- msgid "Start"
627
- msgstr "Start"
628
-
629
- #@ cpd
630
- #: userperspan.php:40
631
- msgid "End"
632
- msgstr "Scop"
633
-
634
- #@ cpd
635
- #: userperspan.php:42
636
- msgid "PostID"
637
- msgstr "PostID"
638
-
639
- #@ cpd
640
- #: userperspan.php:50
641
- msgid "no data found"
642
- msgstr "nu există date găsit"
643
-
644
- #@ cpd
645
- #: counter-options.php:730
646
- 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!"
647
- 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!"
648
-
649
- #@ cpd
650
- #: counter-options.php:351
651
- msgid "Counter"
652
- msgstr "Counter"
653
-
654
- #@ cpd
655
- #: counter-options.php:389
656
- msgid "Clients and referrers"
657
- msgstr "Clienti si au venit"
658
-
659
- #@ cpd
660
- #: counter-options.php:392
661
- 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."
662
- 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."
663
-
664
- #@ cpd
665
- #: counter-options.php:476
666
- msgid "Local URLs"
667
- msgstr "URL-uri locale"
668
-
669
- #@ cpd
670
- #: counter-options.php:477
671
- msgid "Show local referrers too."
672
- msgstr "Arată locale au venit prea."
673
-
674
- #@ default
675
- #: counter-options.php:485
676
- msgid "Posts"
677
- msgstr "Posturi"
678
-
679
- #@ default
680
- #: counter-options.php:485
681
- msgid "Pages"
682
- msgstr "Pagini"
683
-
684
- #@ cpd
685
- #: counter.php:158
686
- #: counter.php:1200
687
- msgid "Reads last week"
688
- msgstr "Citeşte săptămâna trecută"
689
-
690
- #@ default
691
- #: counter.php:985
692
- msgid "Category"
693
- msgstr "Categoria"
694
-
695
- #@ default
696
- #: counter.php:988
697
- msgid "Tag"
698
- msgstr "Tag-ul"
699
-
700
- #@ default
701
- #: counter-core.php:692
702
- msgid "License"
703
- msgstr "A da un permis"
704
-
705
- #@ cpd
706
- #: counter-core.php:726
707
- #: counter.php:1201
708
- msgid "Reads per month"
709
- msgstr "Afişări pe lună"
710
-
711
- #@ cpd
712
- #: counter-core.php:734
713
- msgid "Referrer"
714
- msgstr "Referrer"
715
-
716
- #@ default
717
- #: counter.php:1220
718
- msgid "Title"
719
- msgstr "Titlul"
720
-
721
- #@ cpd
722
- #: counter-options.php:468
723
- msgid "Referrers - Entries"
724
- msgstr "Venit - intrări"
725
-
726
- #@ cpd
727
- #: counter-options.php:469
728
- msgid "How many referrers do you want to see on dashboard page?"
729
- msgstr "Cât de multe au venit doriţi pentru a vedea pagina tabloul de bord?"
730
-
731
- #@ cpd
732
- #: counter-options.php:472
733
- msgid "Referrers - Days"
734
- msgstr "Venit - zile"
735
-
736
- #@ cpd
737
- #: counter.php:845
738
- #, php-format
739
- msgid "The %s referrers in last %s days:"
740
- msgstr "%s au venit în ultimele %s zile:"
741
-
742
- #@ cpd
743
- #: counter-core.php:724
744
- msgid "Visitors online"
745
- msgstr "Vizitatori online"
746
-
747
- #@ cpd
748
- #: counter-core.php:186
749
- #, php-format
750
- msgid "\"Count per Day\" updated to version %s."
751
- msgstr "\"Numărătoarea pe zi\" actualizat la versiunea %s."
752
-
753
- #@ cpd
754
- #: counter-core.php:917
755
- msgid "Backup failed! Cannot open file"
756
- msgstr "Copie de rezervă nu a reușit! Imposibil de deschis fişierul"
757
-
758
- #@ cpd
759
- #: counter-core.php:940
760
- #, php-format
761
- msgid "Backup of %s entries in progress. Every point complies %s entries."
762
- msgstr "Copie de rezervă a %s intrările în curs de desfăşurare. Fiecare punct respectă %s intrări."
763
-
764
- #@ cpd
765
- #: counter-core.php:1027
766
- msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
767
- msgstr "Directorul wp-content nu este inscriptibil. Dar se pot copia conţinutul de această casetă într-un fişier text simplu."
768
-
769
- #@ cpd
770
- #: counter-core.php:1033
771
- #, php-format
772
- msgid "Backup of counter table saved in %s."
773
- msgstr "Copie de rezervă a contracara tabel salvate în % s."
774
-
775
- #@ cpd
776
- #: counter-core.php:1035
777
- #, php-format
778
- msgid "Backup of counter options and collection saved in %s."
779
- msgstr "Copie de rezervă a counter opţiuni şi colectarea salvate în % s."
780
-
781
- #@ cpd
782
- #: counter-options.php:170
783
- msgid "Collection in progress..."
784
- msgstr "Colectare în desfăşurare..."
785
-
786
- #@ cpd
787
- #: counter-options.php:240
788
- msgid "Get Visitors per Post..."
789
- msgstr "Obţineţi de vizitatori pe Post..."
790
-
791
- #@ cpd
792
- #: counter-options.php:261
793
- msgid "Delete old data..."
794
- msgstr "Ştergere date vechi..."
795
-
796
- #@ cpd
797
- #: counter-options.php:285
798
- #, php-format
799
- msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
800
- msgstr "Contor intrări până la %s colectate şi contra tabelul %s optimizat (dimensiunea înainte = %s > dimensiune după = % s)."
801
-
802
- #@ cpd
803
- #: counter-options.php:294
804
- msgid "Installation of \"Count per Day\" checked"
805
- msgstr "Instalarea de \"Numărătoarea pe zi\" verificat"
806
-
807
- #@ default
808
- #: counter-options.php:342
809
- #: counter-options.php:566
810
- msgid "Tools"
811
- msgstr "Instrumente"
812
-
813
- #@ cpd
814
- #: counter-options.php:394
815
- msgid "Save URL only, no query string."
816
- msgstr "Salva URL-ul doar, nici un şir de interogare."
817
-
818
- #@ cpd
819
- #: counter-options.php:419
820
- msgid "Who can see it"
821
- msgstr "Cine poate vedea it"
822
-
823
- #@ cpd
824
- #: counter-options.php:428
825
- msgid "custom"
826
- msgstr "personalizat"
827
-
828
- #@ cpd
829
- #: counter-options.php:430
830
- msgid "and higher are allowed to see the statistics page."
831
- msgstr "şi mai sunt permise pentru a vedea pagina de statistici."
832
-
833
- #@ cpd
834
- #: counter-options.php:432
835
- #, php-format
836
- msgid "Set the %s capability %s a user need:"
837
- msgstr "Setaţi capacitatea de %s %s nevoie de un utilizator:"
838
-
839
- #@ cpd
840
- #: counter-options.php:522
841
- msgid "Stylesheet"
842
- msgstr "StyleSheet"
843
-
844
- #@ cpd
845
- #: counter-options.php:525
846
- msgid "NO Stylesheet in Frontend"
847
- msgstr "Nici un stil în Frontend"
848
-
849
- #@ cpd
850
- #: counter-options.php:526
851
- msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
- msgstr "Nu încărcaţi stil \"counter.css\" din interfaţă."
853
-
854
- #@ cpd
855
- #: counter-options.php:534
856
- #: counter-options.php:639
857
- msgid "Backup"
858
- msgstr "Copie de rezervă"
859
-
860
- #@ cpd
861
- #: counter-options.php:537
862
- msgid "Entries per pass"
863
- msgstr "Intrările pe pass"
864
-
865
- #@ cpd
866
- #: counter-options.php:540
867
- msgid "How many entries should be saved per pass? Default: 10000"
868
- msgstr "Intrările cât de multe ar trebui să fie salvate trece? Implicit: 10000"
869
-
870
- #@ cpd
871
- #: counter-options.php:545
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 "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ă."
874
-
875
- #@ cpd
876
- #: counter-options.php:643
877
- #, php-format
878
- msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
- msgstr "Creaţi o copie de rezervă a tabelului contor %s în directorul wp-content (dacă este inscriptibil)."
880
-
881
- #@ cpd
882
- #: counter-options.php:647
883
- msgid "Backup the database"
884
- msgstr "Backup baza de date"
885
-
886
- #@ cpd
887
- #: counter-options.php:674
888
- #: counter-options.php:706
889
- msgid "Collect old data"
890
- msgstr "Colectarea de date vechi"
891
-
892
- #@ cpd
893
- #: counter-options.php:679
894
- #, php-format
895
- msgid "Current size of your counter table %s is %s."
896
- msgstr "Dimensiunea actuală a contracara tabel %s este % s."
897
-
898
- #@ cpd
899
- #: counter-options.php:681
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 "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."
902
-
903
- #@ cpd
904
- #: counter-options.php:686
905
- #, php-format
906
- msgid "Currently your collection contains data until %s."
907
- msgstr "Colecţia conţine în prezent date până la % s."
908
-
909
- #@ cpd
910
- #: counter-options.php:690
911
- msgid "Normally new data will be added to the collection."
912
- msgstr "Date noi în mod normal va fi adăugate la colecţie."
913
-
914
- #@ cpd
915
- #: counter-options.php:696
916
- msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
- msgstr "Şterge colecţie vechi şi de a crea unul nou, care conţine numai datele în prezent în tabelul contor."
918
-
919
- #@ cpd
920
- #: counter-options.php:697
921
- #, php-format
922
- msgid "All collected data until %s will deleted."
923
- msgstr "Toate datele colectate până când %s va şterge."
924
-
925
- #@ cpd
926
- #: counter-options.php:702
927
- #, php-format
928
- msgid "Keep entries of last %s full months + current month in counter table."
929
- msgstr "Păstraţi intrările din ultimele luni complete %s + luna curentă în tabelul de contor."
930
-
931
- #@ cpd
932
- #: counter-options.php:761
933
- msgid "ReActivation"
934
- msgstr "Reactivare"
935
-
936
- #@ cpd
937
- #: counter-options.php:764
938
- msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
- msgstr "Aici aveţi posibilitatea să porniţi funcţiile de instalare manuală. <br/>Fel ca deactivati si reactivati pluginul."
940
-
941
- #@ cpd
942
- #: counter-options.php:769
943
- msgid "ReActivate the plugin"
944
- msgstr "Reactiva plugin-ul"
945
-
946
- #@ cpd
947
- #: counter.php:165
948
- #: counter.php:899
949
- msgid "Visitors"
950
- msgstr "Vizitatori"
951
-
952
- #@ cpd
953
- #: counter.php:168
954
- #: counter.php:169
955
- msgid "Most visited day"
956
- msgstr "Cele mai vizitate de zi"
957
-
958
- #@ cpd
959
- #: counter.php:1239
960
- msgid "drag and drop to sort"
961
- msgstr "Glisaţi şi fixaţi pentru a sorta"
962
-
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Count per Day v3.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
+ "PO-Revision-Date: \n"
7
+ "X-Poedit-Language: Romanian\n"
8
+ "X-Poedit-Country: Romania\n"
9
+ "Language-Team: Web Geeks\n"
10
+ "Last-Translator: \n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ cpd
22
+ #: counter-options.php:49
23
+ msgid "Options updated"
24
+ msgstr "Opţiuni actualizate"
25
+
26
+ #@ cpd
27
+ #: counter-options.php:112
28
+ #, php-format
29
+ msgid "Database cleaned. %s rows deleted."
30
+ msgstr "Baza de date curăţate. %s rânduri şterse."
31
+
32
+ #@ cpd
33
+ #: counter-options.php:127
34
+ #: counter-options.php:810
35
+ msgid "UNINSTALL Count per Day"
36
+ msgstr "DEZINSTALAŢI conta pe zi"
37
+
38
+ #@ cpd
39
+ #: counter-options.php:132
40
+ #: counter-options.php:133
41
+ #: counter-options.php:134
42
+ #, php-format
43
+ msgid "Table %s deleted"
44
+ msgstr "Tabelul %s elimină"
45
+
46
+ #@ cpd
47
+ #: counter-options.php:135
48
+ msgid "Options deleted"
49
+ msgstr "Opţiuni elimină"
50
+
51
+ #@ cpd
52
+ #: counter-options.php:316
53
+ #: counter-options.php:796
54
+ msgid "Uninstall"
55
+ msgstr "Dezinstalare"
56
+
57
+ #@ cpd
58
+ #: counter-options.php:317
59
+ msgid "Click here"
60
+ msgstr "Faceţi clic aici"
61
+
62
+ #@ cpd
63
+ #: counter-options.php:317
64
+ msgid "to finish the uninstall and to deactivate \"Count per Day\"."
65
+ msgstr "."
66
+
67
+ #@ cpd
68
+ #: counter-options.php:355
69
+ msgid "Online time"
70
+ msgstr "Timp online"
71
+
72
+ #@ cpd
73
+ #: counter-options.php:356
74
+ msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
75
+ msgstr " pagina tabloul de bord."
76
+
77
+ #@ cpd
78
+ #: counter-options.php:359
79
+ msgid "Logged on Users"
80
+ msgstr "Logon utilizatori"
81
+
82
+ #@ cpd
83
+ #: counter-options.php:361
84
+ msgid "count too"
85
+ msgstr "conta prea"
86
+
87
+ #@ cpd
88
+ #: counter-options.php:373
89
+ msgid "Auto counter"
90
+ msgstr "Auto counter"
91
+
92
+ #@ cpd
93
+ #: counter-options.php:374
94
+ msgid "Counts automatically single-posts and pages, no changes on template needed."
95
+ msgstr "Contează automat single-posturi şi paginile, nici o modificare pe şablon necesare."
96
+
97
+ #@ cpd
98
+ #: counter-options.php:377
99
+ msgid "Bots to ignore"
100
+ msgstr "Roboţii să ignore"
101
+
102
+ #@ cpd
103
+ #: counter-options.php:561
104
+ msgid "Update options"
105
+ msgstr "Opţiuni de actualizare"
106
+
107
+ #@ cpd
108
+ #: counter-options.php:656
109
+ #: counter-options.php:665
110
+ msgid "Clean the database"
111
+ msgstr "Curăţaţi baza de date"
112
+
113
+ #@ cpd
114
+ #: counter-options.php:659
115
+ msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
116
+ msgstr "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."
117
+
118
+ #@ cpd
119
+ #: counter-options.php:799
120
+ msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
121
+ msgstr " numai persoanele cu handicap tabelele din baza de date vor fi păstrate."
122
+
123
+ #@ cpd
124
+ #: counter-options.php:800
125
+ msgid "Here you can delete the tables and disable \"Count per Day\"."
126
+ msgstr ".Aici aveţi posibilitatea să ştergeţi tabele şi dezactiva \"Numărătoarea pe zi\"."
127
+
128
+ #@ cpd
129
+ #: counter-options.php:803
130
+ msgid "WARNING"
131
+ msgstr "AVERTISMENT"
132
+
133
+ #@ cpd
134
+ #: counter-options.php:804
135
+ msgid "These tables (with ALL counter data) will be deleted."
136
+ msgstr "Aceste tabele (cu toate Contor date) vor fi şterse."
137
+
138
+ #@ cpd
139
+ #: counter-options.php:806
140
+ msgid "If \"Count per Day\" re-installed, the counter starts at 0."
141
+ msgstr " re-a instala, contorul începe la 0."
142
+
143
+ #@ cpd
144
+ #: counter-options.php:786
145
+ #: counter-options.php:809
146
+ msgid "Yes"
147
+ msgstr "da"
148
+
149
+ #@ cpd
150
+ #: counter-options.php:810
151
+ msgid "You are sure to disable Count per Day and delete all data?"
152
+ msgstr "Sunteţi sigur de a nu fi de acord conta pe zi şi a şterge toate datele?"
153
+
154
+ #@ cpd
155
+ #: counter-core.php:754
156
+ #: counter.php:1124
157
+ msgid "Statistics"
158
+ msgstr "Statistici"
159
+
160
+ #@ cpd
161
+ #: counter-core.php:723
162
+ #: counter.php:160
163
+ #: counter.php:1010
164
+ #: counter.php:1202
165
+ msgid "Total visitors"
166
+ msgstr "Total vizitatori"
167
+
168
+ #@ cpd
169
+ #: counter.php:161
170
+ #: counter.php:1208
171
+ msgid "Visitors currently online"
172
+ msgstr "Vizitatori online"
173
+
174
+ #@ cpd
175
+ #: counter.php:162
176
+ #: counter.php:1203
177
+ msgid "Visitors today"
178
+ msgstr "Vizitatori astăzi"
179
+
180
+ #@ cpd
181
+ #: counter.php:163
182
+ #: counter.php:1204
183
+ msgid "Visitors yesterday"
184
+ msgstr "Vizitatori ieri"
185
+
186
+ #@ cpd
187
+ #@ cpd
188
+ #@ cpd
189
+ #@ cpd
190
+ #: counter.php:164
191
+ #: counter.php:1205
192
+ #: counter.php:167
193
+ #: counter.php:825
194
+ #: counter.php:1209
195
+ #: counter-core.php:729
196
+ #: counter.php:166
197
+ #: counter.php:263
198
+ #: counter.php:1012
199
+ #: counter.php:1207
200
+ #: userperspan.php:34
201
+ #: counter-core.php:725
202
+ #: counter.php:1206
203
+ msgid "Visitors per month"
204
+ msgstr "Vizitatori pe lună"
205
+
206
+ #@ cpd
207
+ #: counter-core.php:727
208
+ #: counter-options.php:438
209
+ msgid "Visitors per post"
210
+ msgstr "Vizitatori pe post"
211
+
212
+ #@ cpd
213
+ #: counter-options.php:122
214
+ msgid "Counter reseted."
215
+ msgstr "Contor resetat."
216
+
217
+ #@ cpd
218
+ #: counter-options.php:439
219
+ #: counter-options.php:443
220
+ msgid "How many posts do you want to see on dashboard page?"
221
+ msgstr "Cât de multe posturi doriţi pentru a vedea pagina tabloul de bord?"
222
+
223
+ #@ cpd
224
+ #: counter-options.php:442
225
+ msgid "Latest Counts - Posts"
226
+ msgstr "Contează ultimele - posturi"
227
+
228
+ #@ cpd
229
+ #: counter-options.php:446
230
+ msgid "Latest Counts - Days"
231
+ msgstr "Contează ultimele - zile"
232
+
233
+ #@ cpd
234
+ #: counter-options.php:447
235
+ #: counter-options.php:451
236
+ #: counter-options.php:473
237
+ msgid "How many days do you want look back?"
238
+ msgstr "Câte zile se va privi înapoi?"
239
+
240
+ #@ cpd
241
+ #: counter-options.php:488
242
+ msgid "Show in lists"
243
+ msgstr "Arată în liste"
244
+
245
+ #@ cpd
246
+ #: counter-options.php:489
247
+ msgid "Show \"Reads per Post\" in a new column in post management views."
248
+ msgstr " într-o coloană nouă în post gestionare vizualizări."
249
+
250
+ #@ cpd
251
+ #: counter-options.php:777
252
+ #: counter-options.php:787
253
+ msgid "Reset the counter"
254
+ msgstr "Resetarea contorului de"
255
+
256
+ #@ cpd
257
+ #: counter-options.php:780
258
+ msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
259
+ msgstr "Puteţi reseta contorul de gol tabelul. TOATE la 0! < br / > face o copie de rezervă, dacă aveţi nevoie de datele curente!"
260
+
261
+ #@ cpd
262
+ #: counter.php:672
263
+ #, php-format
264
+ msgid "The %s most visited posts in last %s days:"
265
+ msgstr "Posturi în ultimele zile de %s %s cel mai vizitat:"
266
+
267
+ #@ default
268
+ #: counter-core.php:575
269
+ #: counter-options.php:341
270
+ #: counter-options.php:565
271
+ msgid "Settings"
272
+ msgstr "Setări"
273
+
274
+ #@ cpd
275
+ #: counter-core.php:639
276
+ #: counter-options.php:392
277
+ #: counter.php:159
278
+ #: counter.php:875
279
+ msgid "Reads"
280
+ msgstr "Citeşte"
281
+
282
+ #@ cpd
283
+ #: counter-core.php:728
284
+ msgid "Latest Counts"
285
+ msgstr "Contează mai recente"
286
+
287
+ #@ cpd
288
+ #: counter-options.php:450
289
+ msgid "Chart - Days"
290
+ msgstr "Diagramă - zile"
291
+
292
+ #@ cpd
293
+ #: counter-options.php:454
294
+ msgid "Chart - Height"
295
+ msgstr "Diagramă - înălţime"
296
+
297
+ #@ cpd
298
+ #: counter-options.php:455
299
+ msgid "Height of the biggest bar"
300
+ msgstr "Înălțimea de la bar mai mare"
301
+
302
+ #@ cpd
303
+ #: counter.php:1196
304
+ msgid "This post"
305
+ msgstr "Acest post"
306
+
307
+ #@ default
308
+ #: counter-options.php:403
309
+ msgid "Dashboard"
310
+ msgstr "Tabloul de bord"
311
+
312
+ #@ cpd
313
+ #: counter.php:262
314
+ msgid "Reads per day"
315
+ msgstr "Citeşte pe zi"
316
+
317
+ #@ cpd
318
+ #: counter-options.php:60
319
+ #, php-format
320
+ msgid "Countries updated. <b>%s</b> entries in %s without country left"
321
+ msgstr "Ţări actualizate. intrările <b>%s</b> în %s fără ţară stânga"
322
+
323
+ #@ cpd
324
+ #: counter-options.php:65
325
+ msgid "update next"
326
+ msgstr "actualizaţi următorul"
327
+
328
+ #@ cpd
329
+ #: counter-options.php:727
330
+ msgid "GeoIP - Countries"
331
+ msgstr "GeoIP - ţări"
332
+
333
+ #@ cpd
334
+ #: counter-options.php:736
335
+ msgid "Update old counter data"
336
+ msgstr "Actualizaţi datele contor vechi"
337
+
338
+ #@ cpd
339
+ #: counter-options.php:748
340
+ msgid "Update GeoIP database"
341
+ msgstr "Actualizare GeoIP database"
342
+
343
+ #@ cpd
344
+ #: counter-options.php:743
345
+ msgid "Download a new version of GeoIP.dat file."
346
+ msgstr "Descărcaţi o nouă versiune de dosar GeoIP.dat."
347
+
348
+ #@ cpd
349
+ #: counter-options.php:753
350
+ msgid "More informations about GeoIP"
351
+ msgstr "Mai multe informatii despre GeoIP"
352
+
353
+ #@ cpd
354
+ #: counter-core.php:738
355
+ msgid "Reads per Country"
356
+ msgstr "Citeşte per tara"
357
+
358
+ #@ cpd
359
+ #: geoip/geoip.php:117
360
+ msgid "New GeoIP database installed."
361
+ msgstr "Noi GeoIP database instalat."
362
+
363
+ #@ cpd
364
+ #: geoip/geoip.php:119
365
+ msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
366
+ msgstr "Ne pare rau, a aparut o eroare. Încercaţi din nou sau de a verifica drepturile de acces ale director \"GeoIP\" este de 777."
367
+
368
+ #@ cpd
369
+ #: geoip/geoip.php:93
370
+ msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
371
+ msgstr "Ne pare rău, funcţiile necesare (zlib) nu instalat sau activat în php.ini."
372
+
373
+ #@ cpd
374
+ #: counter-options.php:459
375
+ msgid "Countries"
376
+ msgstr "Ţări"
377
+
378
+ #@ cpd
379
+ #: counter-options.php:460
380
+ msgid "How many countries do you want to see on dashboard page?"
381
+ msgstr "Cât de multe ţări doriţi pentru a vedea pagina tabloul de bord?"
382
+
383
+ #@ cpd
384
+ #: counter-options.php:102
385
+ #, php-format
386
+ msgid "Mass Bots cleaned. %s counts deleted."
387
+ msgstr "Masa roboţii curăţate. %s contează elimină."
388
+
389
+ #@ cpd
390
+ #: counter-options.php:580
391
+ #: massbots.php:35
392
+ msgid "Mass Bots"
393
+ msgstr "Roboţii de masă"
394
+
395
+ #@ cpd
396
+ #: counter-options.php:584
397
+ #, php-format
398
+ msgid "Show all IPs with more than %s page views per day"
399
+ msgstr "Arată toate IP-uri cu mai mult de %s de vizualizări de pagină pe zi"
400
+
401
+ #@ cpd
402
+ #: counter-options.php:585
403
+ #: notes.php:71
404
+ #: userperspan.php:44
405
+ msgid "show"
406
+ msgstr "Arată"
407
+
408
+ #@ cpd
409
+ #: counter-options.php:611
410
+ #: counter-options.php:627
411
+ #, php-format
412
+ msgid "Delete these %s counts"
413
+ msgstr "Ştergeţi aceste contează %s"
414
+
415
+ #@ cpd
416
+ #: counter.php:821
417
+ msgid "Other"
418
+ msgstr "Alte"
419
+
420
+ #@ default
421
+ #: counter.php:991
422
+ #: massbots.php:52
423
+ #: userperspan.php:63
424
+ msgid "Front page displays"
425
+ msgstr "Afişează prima pagină"
426
+
427
+ #@ cpd
428
+ #: counter-core.php:733
429
+ #: counter-options.php:464
430
+ msgid "Browsers"
431
+ msgstr "Browsere"
432
+
433
+ #@ cpd
434
+ #: counter-options.php:593
435
+ msgid "IP"
436
+ msgstr "IP"
437
+
438
+ #@ cpd
439
+ #@ default
440
+ #: counter-options.php:594
441
+ #: notes.php:75
442
+ msgid "Date"
443
+ msgstr "Data"
444
+
445
+ #@ cpd
446
+ #: counter-options.php:595
447
+ msgid "Client"
448
+ msgstr "Client"
449
+
450
+ #@ cpd
451
+ #: counter-options.php:596
452
+ msgid "Views"
453
+ msgstr "Vizualizări"
454
+
455
+ #@ cpd
456
+ #: counter-options.php:497
457
+ msgid "Start Values"
458
+ msgstr "Valorile de început"
459
+
460
+ #@ cpd
461
+ #: counter-options.php:501
462
+ msgid "Here you can change the date of first count and add a start count."
463
+ msgstr "Aici aveţi posibilitatea să modificaţi data primul conta şi adaugă un număr de început."
464
+
465
+ #@ cpd
466
+ #: counter-options.php:505
467
+ msgid "Start date"
468
+ msgstr "Data inceperii"
469
+
470
+ #@ cpd
471
+ #: counter-options.php:506
472
+ msgid "Your old Counter starts at?"
473
+ msgstr "Dumneavoastră contor vechi începe la?"
474
+
475
+ #@ cpd
476
+ #: counter-options.php:509
477
+ #: counter-options.php:513
478
+ msgid "Start count"
479
+ msgstr "Contele de start"
480
+
481
+ #@ cpd
482
+ #: counter-options.php:510
483
+ msgid "Add this value to \"Total visitors\"."
484
+ msgstr "Adaugă această valoare la \"Total vizitatori\"."
485
+
486
+ #@ cpd
487
+ #: counter-options.php:714
488
+ msgid "Support"
489
+ msgstr "Suport"
490
+
491
+ #@ cpd
492
+ #: counter-core.php:690
493
+ msgid "Bug? Problem? Question? Hint? Praise?"
494
+ msgstr "Bug? Problema? Întrebare? Indiciu? Laudă?"
495
+
496
+ #@ cpd
497
+ #: counter-core.php:691
498
+ #, php-format
499
+ msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
500
+ msgstr "Scrie un comentariu pe pagina de <a href=\"%s\"> plugin-ul </a>."
501
+
502
+ #@ default
503
+ #: counter.php:786
504
+ msgid "Show"
505
+ msgstr "Arată"
506
+
507
+ #@ default
508
+ #: counter.php:976
509
+ msgid "Edit Post"
510
+ msgstr "Editare Post"
511
+
512
+ #@ cpd
513
+ #: counter-core.php:689
514
+ #, php-format
515
+ msgid "Time for Count per Day: <code>%s</code>."
516
+ msgstr "Timp pentru conta pe zi: <code>%s</code>."
517
+
518
+ #@ cpd
519
+ #: counter-options.php:362
520
+ msgid "until User Level"
521
+ msgstr "până la nivel de utilizator"
522
+
523
+ #@ default
524
+ #: counter-core.php:730
525
+ msgid "Plugin"
526
+ msgstr "Plugin-ul"
527
+
528
+ #@ cpd
529
+ #: counter.php:788
530
+ #: notes.php:42
531
+ #: notes.php:76
532
+ msgid "Notes"
533
+ msgstr "Note"
534
+
535
+ #@ default
536
+ #: notes.php:77
537
+ msgid "Action"
538
+ msgstr "Acţiune"
539
+
540
+ #@ cpd
541
+ #: notes.php:82
542
+ msgid "add"
543
+ msgstr "adăuga"
544
+
545
+ #@ cpd
546
+ #: notes.php:98
547
+ msgid "save"
548
+ msgstr "salvare"
549
+
550
+ #@ cpd
551
+ #: notes.php:99
552
+ msgid "delete"
553
+ msgstr "Ştergere"
554
+
555
+ #@ cpd
556
+ #: notes.php:110
557
+ msgid "edit"
558
+ msgstr "Editare"
559
+
560
+ #@ cpd
561
+ #: counter-options.php:514
562
+ msgid "Add this value to \"Total reads\"."
563
+ msgstr "."
564
+
565
+ #@ cpd
566
+ #: counter.php:155
567
+ #: counter.php:1197
568
+ msgid "Total reads"
569
+ msgstr "Total Citeşte"
570
+
571
+ #@ cpd
572
+ #: counter.php:156
573
+ #: counter.php:1198
574
+ msgid "Reads today"
575
+ msgstr "Citeşte astăzi"
576
+
577
+ #@ cpd
578
+ #: counter.php:157
579
+ #: counter.php:1199
580
+ msgid "Reads yesterday"
581
+ msgstr "Citeşte ieri"
582
+
583
+ #@ cpd
584
+ #: counter-options.php:381
585
+ msgid "Anonymous IP"
586
+ msgstr "IP anonim"
587
+
588
+ #@ cpd
589
+ #: counter-options.php:385
590
+ msgid "Cache"
591
+ msgstr "Cache-ul"
592
+
593
+ #@ cpd
594
+ #: counter-options.php:386
595
+ msgid "I use a cache plugin. Count these visits with ajax."
596
+ msgstr "I folos un cache dop. Conta aceste vizite cu ajax."
597
+
598
+ #@ cpd
599
+ #: counter-options.php:465
600
+ msgid "Substring of the user agent, separated by comma"
601
+ msgstr "Subşir al agentului utilizator, separate prin virgulă"
602
+
603
+ #@ cpd
604
+ #: counter-options.php:554
605
+ msgid "Debug mode"
606
+ msgstr "Modul Debug"
607
+
608
+ #@ cpd
609
+ #: counter-options.php:556
610
+ msgid "Show debug informations at the bottom of all pages."
611
+ msgstr "Arata informatii de debug la partea de jos a tuturor paginilor."
612
+
613
+ #@ cpd
614
+ #: counter-core.php:739
615
+ msgid "Visitors per Country"
616
+ msgstr "Vizitatori pe ţară"
617
+
618
+ #@ cpd
619
+ #: counter.php:353
620
+ #: counter.php:1041
621
+ msgid "Map"
622
+ msgstr "Hartă"
623
+
624
+ #@ cpd
625
+ #: userperspan.php:38
626
+ msgid "Start"
627
+ msgstr "Start"
628
+
629
+ #@ cpd
630
+ #: userperspan.php:40
631
+ msgid "End"
632
+ msgstr "Scop"
633
+
634
+ #@ cpd
635
+ #: userperspan.php:42
636
+ msgid "PostID"
637
+ msgstr "PostID"
638
+
639
+ #@ cpd
640
+ #: userperspan.php:50
641
+ msgid "no data found"
642
+ msgstr "nu există date găsit"
643
+
644
+ #@ cpd
645
+ #: counter-options.php:730
646
+ 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!"
647
+ 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!"
648
+
649
+ #@ cpd
650
+ #: counter-options.php:351
651
+ msgid "Counter"
652
+ msgstr "Counter"
653
+
654
+ #@ cpd
655
+ #: counter-options.php:389
656
+ msgid "Clients and referrers"
657
+ msgstr "Clienti si au venit"
658
+
659
+ #@ cpd
660
+ #: counter-options.php:392
661
+ 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."
662
+ 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."
663
+
664
+ #@ cpd
665
+ #: counter-options.php:476
666
+ msgid "Local URLs"
667
+ msgstr "URL-uri locale"
668
+
669
+ #@ cpd
670
+ #: counter-options.php:477
671
+ msgid "Show local referrers too."
672
+ msgstr "Arată locale au venit prea."
673
+
674
+ #@ default
675
+ #: counter-options.php:485
676
+ msgid "Posts"
677
+ msgstr "Posturi"
678
+
679
+ #@ default
680
+ #: counter-options.php:485
681
+ msgid "Pages"
682
+ msgstr "Pagini"
683
+
684
+ #@ cpd
685
+ #: counter.php:158
686
+ #: counter.php:1200
687
+ msgid "Reads last week"
688
+ msgstr "Citeşte săptămâna trecută"
689
+
690
+ #@ default
691
+ #: counter.php:985
692
+ msgid "Category"
693
+ msgstr "Categoria"
694
+
695
+ #@ default
696
+ #: counter.php:988
697
+ msgid "Tag"
698
+ msgstr "Tag-ul"
699
+
700
+ #@ default
701
+ #: counter-core.php:692
702
+ msgid "License"
703
+ msgstr "A da un permis"
704
+
705
+ #@ cpd
706
+ #: counter-core.php:726
707
+ #: counter.php:1201
708
+ msgid "Reads per month"
709
+ msgstr "Afişări pe lună"
710
+
711
+ #@ cpd
712
+ #: counter-core.php:734
713
+ msgid "Referrer"
714
+ msgstr "Referrer"
715
+
716
+ #@ default
717
+ #: counter.php:1220
718
+ msgid "Title"
719
+ msgstr "Titlul"
720
+
721
+ #@ cpd
722
+ #: counter-options.php:468
723
+ msgid "Referrers - Entries"
724
+ msgstr "Venit - intrări"
725
+
726
+ #@ cpd
727
+ #: counter-options.php:469
728
+ msgid "How many referrers do you want to see on dashboard page?"
729
+ msgstr "Cât de multe au venit doriţi pentru a vedea pagina tabloul de bord?"
730
+
731
+ #@ cpd
732
+ #: counter-options.php:472
733
+ msgid "Referrers - Days"
734
+ msgstr "Venit - zile"
735
+
736
+ #@ cpd
737
+ #: counter.php:845
738
+ #, php-format
739
+ msgid "The %s referrers in last %s days:"
740
+ msgstr "%s au venit în ultimele %s zile:"
741
+
742
+ #@ cpd
743
+ #: counter-core.php:724
744
+ msgid "Visitors online"
745
+ msgstr "Vizitatori online"
746
+
747
+ #@ cpd
748
+ #: counter-core.php:186
749
+ #, php-format
750
+ msgid "\"Count per Day\" updated to version %s."
751
+ msgstr "\"Numărătoarea pe zi\" actualizat la versiunea %s."
752
+
753
+ #@ cpd
754
+ #: counter-core.php:917
755
+ msgid "Backup failed! Cannot open file"
756
+ msgstr "Copie de rezervă nu a reușit! Imposibil de deschis fişierul"
757
+
758
+ #@ cpd
759
+ #: counter-core.php:940
760
+ #, php-format
761
+ msgid "Backup of %s entries in progress. Every point complies %s entries."
762
+ msgstr "Copie de rezervă a %s intrările în curs de desfăşurare. Fiecare punct respectă %s intrări."
763
+
764
+ #@ cpd
765
+ #: counter-core.php:1027
766
+ msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
767
+ msgstr "Directorul wp-content nu este inscriptibil. Dar se pot copia conţinutul de această casetă într-un fişier text simplu."
768
+
769
+ #@ cpd
770
+ #: counter-core.php:1033
771
+ #, php-format
772
+ msgid "Backup of counter table saved in %s."
773
+ msgstr "Copie de rezervă a contracara tabel salvate în % s."
774
+
775
+ #@ cpd
776
+ #: counter-core.php:1035
777
+ #, php-format
778
+ msgid "Backup of counter options and collection saved in %s."
779
+ msgstr "Copie de rezervă a counter opţiuni şi colectarea salvate în % s."
780
+
781
+ #@ cpd
782
+ #: counter-options.php:170
783
+ msgid "Collection in progress..."
784
+ msgstr "Colectare în desfăşurare..."
785
+
786
+ #@ cpd
787
+ #: counter-options.php:240
788
+ msgid "Get Visitors per Post..."
789
+ msgstr "Obţineţi de vizitatori pe Post..."
790
+
791
+ #@ cpd
792
+ #: counter-options.php:261
793
+ msgid "Delete old data..."
794
+ msgstr "Ştergere date vechi..."
795
+
796
+ #@ cpd
797
+ #: counter-options.php:285
798
+ #, php-format
799
+ msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
800
+ msgstr "Contor intrări până la %s colectate şi contra tabelul %s optimizat (dimensiunea înainte = %s > dimensiune după = % s)."
801
+
802
+ #@ cpd
803
+ #: counter-options.php:294
804
+ msgid "Installation of \"Count per Day\" checked"
805
+ msgstr "Instalarea de \"Numărătoarea pe zi\" verificat"
806
+
807
+ #@ default
808
+ #: counter-options.php:342
809
+ #: counter-options.php:566
810
+ msgid "Tools"
811
+ msgstr "Instrumente"
812
+
813
+ #@ cpd
814
+ #: counter-options.php:394
815
+ msgid "Save URL only, no query string."
816
+ msgstr "Salva URL-ul doar, nici un şir de interogare."
817
+
818
+ #@ cpd
819
+ #: counter-options.php:419
820
+ msgid "Who can see it"
821
+ msgstr "Cine poate vedea it"
822
+
823
+ #@ cpd
824
+ #: counter-options.php:428
825
+ msgid "custom"
826
+ msgstr "personalizat"
827
+
828
+ #@ cpd
829
+ #: counter-options.php:430
830
+ msgid "and higher are allowed to see the statistics page."
831
+ msgstr "şi mai sunt permise pentru a vedea pagina de statistici."
832
+
833
+ #@ cpd
834
+ #: counter-options.php:432
835
+ #, php-format
836
+ msgid "Set the %s capability %s a user need:"
837
+ msgstr "Setaţi capacitatea de %s %s nevoie de un utilizator:"
838
+
839
+ #@ cpd
840
+ #: counter-options.php:522
841
+ msgid "Stylesheet"
842
+ msgstr "StyleSheet"
843
+
844
+ #@ cpd
845
+ #: counter-options.php:525
846
+ msgid "NO Stylesheet in Frontend"
847
+ msgstr "Nici un stil în Frontend"
848
+
849
+ #@ cpd
850
+ #: counter-options.php:526
851
+ msgid "Do not load the stylesheet \"counter.css\" in frontend."
852
+ msgstr "Nu încărcaţi stil \"counter.css\" din interfaţă."
853
+
854
+ #@ cpd
855
+ #: counter-options.php:534
856
+ #: counter-options.php:639
857
+ msgid "Backup"
858
+ msgstr "Copie de rezervă"
859
+
860
+ #@ cpd
861
+ #: counter-options.php:537
862
+ msgid "Entries per pass"
863
+ msgstr "Intrările pe pass"
864
+
865
+ #@ cpd
866
+ #: counter-options.php:540
867
+ msgid "How many entries should be saved per pass? Default: 10000"
868
+ msgstr "Intrările cât de multe ar trebui să fie salvate trece? Implicit: 10000"
869
+
870
+ #@ cpd
871
+ #: counter-options.php:545
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 "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ă."
874
+
875
+ #@ cpd
876
+ #: counter-options.php:643
877
+ #, php-format
878
+ msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
879
+ msgstr "Creaţi o copie de rezervă a tabelului contor %s în directorul wp-content (dacă este inscriptibil)."
880
+
881
+ #@ cpd
882
+ #: counter-options.php:647
883
+ msgid "Backup the database"
884
+ msgstr "Backup baza de date"
885
+
886
+ #@ cpd
887
+ #: counter-options.php:674
888
+ #: counter-options.php:706
889
+ msgid "Collect old data"
890
+ msgstr "Colectarea de date vechi"
891
+
892
+ #@ cpd
893
+ #: counter-options.php:679
894
+ #, php-format
895
+ msgid "Current size of your counter table %s is %s."
896
+ msgstr "Dimensiunea actuală a contracara tabel %s este % s."
897
+
898
+ #@ cpd
899
+ #: counter-options.php:681
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 "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."
902
+
903
+ #@ cpd
904
+ #: counter-options.php:686
905
+ #, php-format
906
+ msgid "Currently your collection contains data until %s."
907
+ msgstr "Colecţia conţine în prezent date până la % s."
908
+
909
+ #@ cpd
910
+ #: counter-options.php:690
911
+ msgid "Normally new data will be added to the collection."
912
+ msgstr "Date noi în mod normal va fi adăugate la colecţie."
913
+
914
+ #@ cpd
915
+ #: counter-options.php:696
916
+ msgid "Delete old collection and create a new one which contains only the data currently in counter table."
917
+ msgstr "Şterge colecţie vechi şi de a crea unul nou, care conţine numai datele în prezent în tabelul contor."
918
+
919
+ #@ cpd
920
+ #: counter-options.php:697
921
+ #, php-format
922
+ msgid "All collected data until %s will deleted."
923
+ msgstr "Toate datele colectate până când %s va şterge."
924
+
925
+ #@ cpd
926
+ #: counter-options.php:702
927
+ #, php-format
928
+ msgid "Keep entries of last %s full months + current month in counter table."
929
+ msgstr "Păstraţi intrările din ultimele luni complete %s + luna curentă în tabelul de contor."
930
+
931
+ #@ cpd
932
+ #: counter-options.php:761
933
+ msgid "ReActivation"
934
+ msgstr "Reactivare"
935
+
936
+ #@ cpd
937
+ #: counter-options.php:764
938
+ msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
939
+ msgstr "Aici aveţi posibilitatea să porniţi funcţiile de instalare manuală. <br/>Fel ca deactivati si reactivati pluginul."
940
+
941
+ #@ cpd
942
+ #: counter-options.php:769
943
+ msgid "ReActivate the plugin"
944
+ msgstr "Reactiva plugin-ul"
945
+
946
+ #@ cpd
947
+ #: counter.php:165
948
+ #: counter.php:899
949
+ msgid "Visitors"
950
+ msgstr "Vizitatori"
951
+
952
+ #@ cpd
953
+ #: counter.php:168
954
+ #: counter.php:169
955
+ msgid "Most visited day"
956
+ msgstr "Cele mai vizitate de zi"
957
+
958
+ #@ cpd
959
+ #: counter.php:1239
960
+ msgid "drag and drop to sort"
961
+ msgstr "Glisaţi şi fixaţi pentru a sorta"
962
+
locale/cpd-ru_RU.po CHANGED
@@ -1,1095 +1,1095 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Count Per Day v3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-11-02 12:13+0100\n"
6
- "PO-Revision-Date: 2012-07-14 21:51:31+0000\n"
7
- "Last-Translator: Ilya Pshenichny\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: German\n"
14
- "X-Poedit-Country: GERMANY\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: counter-options.php:52
23
- #@ cpd
24
- msgid "Options updated"
25
- msgstr "Настройки сохранены"
26
-
27
- #: counter-options.php:113
28
- #, php-format
29
- #@ cpd
30
- msgid "Database cleaned. %s rows deleted."
31
- msgstr "База данных очищена. %s строчек удалено."
32
-
33
- #: counter-options.php:128
34
- #: counter-options.php:691
35
- #@ cpd
36
- msgid "UNINSTALL Count per Day"
37
- msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
38
-
39
- #: counter-options.php:133
40
- #: counter-options.php:134
41
- #: counter-options.php:135
42
- #, php-format
43
- #@ cpd
44
- msgid "Table %s deleted"
45
- msgstr "Таблица %s удалена"
46
-
47
- #: counter-options.php:136
48
- #@ cpd
49
- msgid "Options deleted"
50
- msgstr "Настройки удалены"
51
-
52
- #: counter-options.php:362
53
- #: counter-options.php:677
54
- #@ cpd
55
- msgid "Uninstall"
56
- msgstr "Деинсталяция"
57
-
58
- #: counter-options.php:363
59
- #@ cpd
60
- msgid "Click here"
61
- msgstr "Нажмите сюда"
62
-
63
- #: counter-options.php:363
64
- #@ cpd
65
- msgid "to finish the uninstall and to deactivate \"Count per Day\"."
66
- msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
67
-
68
- #: counter-options.php:724
69
- #@ cpd
70
- msgid "Online time"
71
- msgstr "Время онлайн"
72
-
73
- #: counter-options.php:725
74
- #@ cpd
75
- msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
76
- msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
77
-
78
- #: counter-options.php:728
79
- #@ cpd
80
- msgid "Logged on Users"
81
- msgstr "Вошедших пользователей"
82
-
83
- #: counter-options.php:730
84
- #@ cpd
85
- msgid "count too"
86
- msgstr "также считать"
87
-
88
- #: counter-options.php:742
89
- #@ cpd
90
- msgid "Auto counter"
91
- msgstr "Автоматический счетчик"
92
-
93
- #: counter-options.php:743
94
- #@ cpd
95
- msgid "Counts automatically single-posts and pages, no changes on template needed."
96
- msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
97
-
98
- #: counter-options.php:746
99
- #@ cpd
100
- msgid "Bots to ignore"
101
- msgstr "Игнорировать ботов"
102
-
103
- #: counter-options.php:924
104
- #@ cpd
105
- msgid "Update options"
106
- msgstr "Сохранить настройки"
107
-
108
- #: counter-options.php:538
109
- #: counter-options.php:546
110
- #@ cpd
111
- msgid "Clean the database"
112
- msgstr "Очистить базу данных"
113
-
114
- #: counter-options.php:541
115
- #@ cpd
116
- msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
117
- msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
118
-
119
- #: counter-options.php:680
120
- #@ cpd
121
- msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
122
- msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
123
-
124
- #: counter-options.php:681
125
- #@ cpd
126
- msgid "Here you can delete the tables and disable \"Count per Day\"."
127
- msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
128
-
129
- #: counter-options.php:684
130
- #@ cpd
131
- msgid "WARNING"
132
- msgstr "ВНИМАНИЕ"
133
-
134
- #: counter-options.php:685
135
- #@ cpd
136
- msgid "These tables (with ALL counter data) will be deleted."
137
- msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
138
-
139
- #: counter-options.php:687
140
- #@ cpd
141
- msgid "If \"Count per Day\" re-installed, the counter starts at 0."
142
- msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
143
-
144
- #: counter-options.php:667
145
- #: counter-options.php:690
146
- #@ cpd
147
- msgid "Yes"
148
- msgstr "Да"
149
-
150
- #: counter-options.php:691
151
- #@ cpd
152
- msgid "You are sure to disable Count per Day and delete all data?"
153
- msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
154
-
155
- #: counter-core.php:810
156
- #: counter.php:1227
157
- #@ cpd
158
- msgid "Statistics"
159
- msgstr "Статистика"
160
-
161
- #: counter-core.php:778
162
- #: counter.php:187
163
- #: counter.php:1113
164
- #: counter.php:1305
165
- #@ cpd
166
- msgid "Total visitors"
167
- msgstr "Всего посетителей"
168
-
169
- #: counter.php:188
170
- #: counter.php:1311
171
- #@ cpd
172
- msgid "Visitors currently online"
173
- msgstr "Посетителей сейчас на сайте"
174
-
175
- #: counter.php:189
176
- #: counter.php:1306
177
- #@ cpd
178
- msgid "Visitors today"
179
- msgstr "Посетителей сегодня"
180
-
181
- #: counter.php:190
182
- #: counter.php:1307
183
- #@ cpd
184
- msgid "Visitors yesterday"
185
- msgstr "Посетителей вчера"
186
-
187
- #: counter.php:191
188
- #: counter.php:1308
189
- #@ cpd
190
- msgid "Visitors last week"
191
- msgstr "Посетителей на прошлой неделе"
192
-
193
- #: counter.php:194
194
- #: counter.php:872
195
- #: counter.php:1312
196
- #@ cpd
197
- msgid "Counter starts on"
198
- msgstr "Счетчик начинается с"
199
-
200
- #: counter-core.php:784
201
- #: counter.php:193
202
- #: counter.php:292
203
- #: counter.php:1115
204
- #: counter.php:1310
205
- #: userperspan.php:34
206
- #@ cpd
207
- msgid "Visitors per day"
208
- msgstr "Посетителей в день"
209
-
210
- #: counter-core.php:780
211
- #: counter.php:1309
212
- #@ cpd
213
- msgid "Visitors per month"
214
- msgstr "Посетителей в месяц"
215
-
216
- #: counter-core.php:782
217
- #: counter-options.php:806
218
- #@ cpd
219
- msgid "Visitors per post"
220
- msgstr "Посетителей записи"
221
-
222
- #: counter-options.php:123
223
- #@ cpd
224
- msgid "Counter reseted."
225
- msgstr "Счетчик обнулен."
226
-
227
- #: counter-options.php:771
228
- #@ default
229
- msgid "Dashboard"
230
- msgstr "Консоль"
231
-
232
- #: counter-options.php:807
233
- #: counter-options.php:811
234
- #@ cpd
235
- msgid "How many posts do you want to see on dashboard page?"
236
- msgstr "Сколько записей вы хотите видеть на странице консоли?"
237
-
238
- #: counter-options.php:810
239
- #@ cpd
240
- msgid "Latest Counts - Posts"
241
- msgstr "Последние счетчики - Записи"
242
-
243
- #: counter-options.php:814
244
- #@ cpd
245
- msgid "Latest Counts - Days"
246
- msgstr "Последние счетчики - Дни"
247
-
248
- #: counter-options.php:815
249
- #: counter-options.php:819
250
- #: counter-options.php:841
251
- #@ cpd
252
- msgid "How many days do you want look back?"
253
- msgstr "Насколько дней назад вы хотите видеть статистику?"
254
-
255
- #: counter-options.php:818
256
- #@ cpd
257
- msgid "Chart - Days"
258
- msgstr "Таблица - Дни"
259
-
260
- #: counter-options.php:822
261
- #@ cpd
262
- msgid "Chart - Height"
263
- msgstr "Таблица - Высота"
264
-
265
- #: counter-options.php:823
266
- #@ cpd
267
- msgid "Height of the biggest bar"
268
- msgstr "Высота самого большого столбика"
269
-
270
- #: counter-options.php:855
271
- #@ cpd
272
- msgid "Show in lists"
273
- msgstr "Показать в списках"
274
-
275
- #: counter-options.php:856
276
- #@ cpd
277
- msgid "Show \"Reads per Post\" in a new column in post management views."
278
- msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
279
-
280
- #: counter-options.php:658
281
- #: counter-options.php:668
282
- #@ cpd
283
- msgid "Reset the counter"
284
- msgstr "Обнулить счетчик"
285
-
286
- #: counter-options.php:661
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 "Вы мож�