Version Description
- Bugfix: JavaScript error on dashboard page, boxes not movable
- Bugfix: PHP4 compatibility
- New: function and shortcode to show world map in frontend
- New: option - who is allowed to see the statistics page
- New language: Turkish, thanks to Emrullah Tahir Ekmekçi
Download this release
Release Info
Developer | Tom Braider |
Plugin | Count per Day |
Version | 2.17 |
Comparing to | |
See all releases |
Code changes from version 2.16.1 to 2.17
- ajax.php +32 -32
- counter-options.php +37 -4
- counter.css +2 -1
- counter.php +115 -62
- geoip/GeoIP.dat +0 -0
- geoip/geoip.php +41 -26
- img/cpd_calendar.png +0 -0
- img/cpd_flags.png +0 -0
- img/cpd_pen.png +0 -0
- img/cpd_sprites.png +0 -0
- js/jquery.flot.min.js +1 -1988
- locale/cpd-az_AZ.mo +0 -0
- locale/cpd-az_AZ.po +0 -972
- locale/cpd-bg_BG.mo +0 -0
- locale/cpd-bg_BG.po +211 -398
- locale/cpd-da_DK.mo +0 -0
- locale/cpd-da_DK.po +226 -414
- locale/cpd-de_DE.mo +0 -0
- locale/cpd-de_DE.po +217 -389
- locale/cpd-el.mo +0 -0
- locale/cpd-el.po +211 -398
- locale/cpd-es_ES.mo +0 -0
- locale/cpd-es_ES.po +211 -398
- locale/cpd-fr_FR.mo +0 -0
- locale/cpd-fr_FR.po +212 -399
- locale/cpd-it_IT.mo +0 -0
- locale/cpd-it_IT.po +225 -413
- locale/cpd-ja.mo +0 -0
- locale/cpd-ja.po +0 -972
- locale/cpd-nb_NO.mo +0 -0
- locale/cpd-nb_NO.po +0 -972
- locale/cpd-nl_NL.mo +0 -0
- locale/cpd-nl_NL.po +224 -411
- locale/cpd-pl_PL.mo +0 -0
- locale/cpd-pl_PL.po +211 -398
- locale/cpd-pt_BR.mo +0 -0
- locale/cpd-pt_BR.po +244 -430
- locale/cpd-pt_PT.mo +0 -0
- locale/cpd-pt_PT.po +0 -971
- locale/cpd-ru_RU.mo +0 -0
- locale/cpd-ru_RU.po +214 -402
- locale/cpd-sv_SE.mo +0 -0
- locale/cpd-sv_SE.po +350 -538
- locale/cpd-tr_TR.mo +0 -0
- locale/cpd-tr_TR.po +225 -413
- locale/cpd-ua_UA.mo +0 -0
- locale/cpd-ua_UA.po +0 -972
- map/ammap.swf +0 -0
- map/data.xml.php +39 -26
- map/map.php +1 -1
- map/settings.xml.php +0 -3
- notes.php +6 -6
- readme.txt +42 -23
ajax.php
CHANGED
@@ -1,32 +1,32 @@
|
|
1 |
-
<?php
|
2 |
-
if ( $_GET['f'] == 'count' )
|
3 |
-
{
|
4 |
-
if (!session_id()) session_start();
|
5 |
-
require_once($_SESSION['cpd_wp'].'wp-load.php');
|
6 |
-
|
7 |
-
// $cpd_funcs = CountPerDay_Widget::getWidgetFuncs();
|
8 |
-
$cpd_funcs = array ( 'show',
|
9 |
-
'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
|
10 |
-
'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
|
11 |
-
'getUserPerDay', 'getUserOnline', 'getFirstCount' );
|
12 |
-
|
13 |
-
$page = intval($_GET['page']);
|
14 |
-
if ( is_numeric($page) )
|
15 |
-
{
|
16 |
-
$count_per_day->count( '', $page );
|
17 |
-
foreach ( $cpd_funcs as $f )
|
18 |
-
{
|
19 |
-
if ( ($f == 'show' && $page) || $f != 'show' )
|
20 |
-
{
|
21 |
-
echo $f.'===';
|
22 |
-
if ( $f == 'getUserPerDay' )
|
23 |
-
eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
|
24 |
-
else if ( $f == 'show' )
|
25 |
-
eval('echo $count_per_day->show("", "", false, false, '.$page.');');
|
26 |
-
else
|
27 |
-
eval('echo $count_per_day->'.$f.'();');
|
28 |
-
echo '|';
|
29 |
-
}
|
30 |
-
}
|
31 |
-
}
|
32 |
-
}
|
1 |
+
<?php
|
2 |
+
if ( $_GET['f'] == 'count' )
|
3 |
+
{
|
4 |
+
if (!session_id()) session_start();
|
5 |
+
require_once($_SESSION['cpd_wp'].'wp-load.php');
|
6 |
+
|
7 |
+
// $cpd_funcs = CountPerDay_Widget::getWidgetFuncs();
|
8 |
+
$cpd_funcs = array ( 'show',
|
9 |
+
'getReadsAll', 'getReadsToday', 'getReadsYesterday', 'getReadsLastWeek', 'getReadsThisMonth',
|
10 |
+
'getUserAll', 'getUserToday', 'getUserYesterday', 'getUserLastWeek', 'getUserThisMonth',
|
11 |
+
'getUserPerDay', 'getUserOnline', 'getFirstCount' );
|
12 |
+
|
13 |
+
$page = intval($_GET['page']);
|
14 |
+
if ( is_numeric($page) )
|
15 |
+
{
|
16 |
+
$count_per_day->count( '', $page );
|
17 |
+
foreach ( $cpd_funcs as $f )
|
18 |
+
{
|
19 |
+
if ( ($f == 'show' && $page) || $f != 'show' )
|
20 |
+
{
|
21 |
+
echo $f.'===';
|
22 |
+
if ( $f == 'getUserPerDay' )
|
23 |
+
eval('echo $count_per_day->getUserPerDay('.$count_per_day->options['dashboard_last_days'].');');
|
24 |
+
else if ( $f == 'show' )
|
25 |
+
eval('echo $count_per_day->show("", "", false, false, '.$page.');');
|
26 |
+
else
|
27 |
+
eval('echo $count_per_day->'.$f.'();');
|
28 |
+
echo '|';
|
29 |
+
}
|
30 |
+
}
|
31 |
+
}
|
32 |
+
}
|
counter-options.php
CHANGED
@@ -30,11 +30,12 @@ if(!empty($_POST['do']))
|
|
30 |
$count_per_day->options['ajax'] = empty( $_POST['cpd_ajax'] ) ? 0 : 1 ;
|
31 |
$count_per_day->options['debug'] = empty( $_POST['cpd_debug'] ) ? 0 : 1 ;
|
32 |
$count_per_day->options['localref'] = empty( $_POST['cpd_localref'] ) ? 0 : 1 ;
|
33 |
-
$count_per_day->options['
|
34 |
$count_per_day->options['dashboard_referers'] = $_POST['cpd_dashboard_referers'];
|
35 |
$count_per_day->options['referers_last_days'] = $_POST['cpd_referers_last_days'];
|
36 |
$count_per_day->options['chart_old'] = empty( $_POST['cpd_chart_old'] ) ? 0 : 1 ;
|
37 |
$count_per_day->options['no_front_css'] = empty( $_POST['cpd_no_front_css'] ) ? 0 : 1 ;
|
|
|
38 |
|
39 |
if (empty($count_per_day->options['clients']))
|
40 |
$count_per_day->options['clients'] = 'Firefox, MSIE, Chrome, Safari, Opera';
|
@@ -223,7 +224,7 @@ switch($mode) {
|
|
223 |
</tr>
|
224 |
<tr>
|
225 |
<th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Clients and referrers', 'cpd') ?>:</th>
|
226 |
-
<td><label for="
|
227 |
</tr>
|
228 |
</table>
|
229 |
</fieldset>
|
@@ -232,7 +233,39 @@ switch($mode) {
|
|
232 |
|
233 |
<fieldset>
|
234 |
<legend><?php _e('Dashboard') ?></legend>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
<tr>
|
237 |
<th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Visitors per post', 'cpd') ?>:</th>
|
238 |
<td><input class="code" type="text" name="cpd_dashboard_posts" size="3" value="<?php echo $o['dashboard_posts']; ?>" /> <?php _e('How many posts do you want to see on dashboard page?', 'cpd') ?></td>
|
@@ -430,7 +463,7 @@ switch($mode) {
|
|
430 |
echo '<a href="?page=count-per-day/counter-options.php&dmbip='.$row['longip'].'&dmbdate='.$row['date'].'"
|
431 |
title="'.sprintf(__('Delete these %s counts', 'cpd'), $row['posts']).'"
|
432 |
style="color:red; font-weight: bold;">X</a> ';
|
433 |
-
echo '<a href="http://www.
|
434 |
.'<td style="white-space:nowrap;">'.mysql2date(get_option('date_format'), $row['date'] ).'</td>'
|
435 |
.'<td>'.$row['client'].'</td>'
|
436 |
.'<td style="text-align:right;"><a href="'.$count_per_day->dir.'/massbots.php?dmbip='.$row['longip'].'&dmbdate='.$row['date'].'&KeepThis=true&TB_iframe=true" title="Count per Day" class="thickbox">'
|
@@ -453,7 +486,7 @@ switch($mode) {
|
|
453 |
</div>
|
454 |
|
455 |
<!-- Cleaner -->
|
456 |
-
<?php if ( $count_per_day->options['
|
457 |
<div class="postbox">
|
458 |
<h3><?php _e('Clean the database', 'cpd') ?></h3>
|
459 |
<div class="inside">
|
30 |
$count_per_day->options['ajax'] = empty( $_POST['cpd_ajax'] ) ? 0 : 1 ;
|
31 |
$count_per_day->options['debug'] = empty( $_POST['cpd_debug'] ) ? 0 : 1 ;
|
32 |
$count_per_day->options['localref'] = empty( $_POST['cpd_localref'] ) ? 0 : 1 ;
|
33 |
+
$count_per_day->options['referers'] = empty( $_POST['cpd_referers'] ) ? 0 : 1 ;
|
34 |
$count_per_day->options['dashboard_referers'] = $_POST['cpd_dashboard_referers'];
|
35 |
$count_per_day->options['referers_last_days'] = $_POST['cpd_referers_last_days'];
|
36 |
$count_per_day->options['chart_old'] = empty( $_POST['cpd_chart_old'] ) ? 0 : 1 ;
|
37 |
$count_per_day->options['no_front_css'] = empty( $_POST['cpd_no_front_css'] ) ? 0 : 1 ;
|
38 |
+
$count_per_day->options['whocansee'] = ($_POST['cpd_whocansee'] == 'custom') ? $_POST['cpd_whocansee_custom'] : $_POST['cpd_whocansee'];
|
39 |
|
40 |
if (empty($count_per_day->options['clients']))
|
41 |
$count_per_day->options['clients'] = 'Firefox, MSIE, Chrome, Safari, Opera';
|
224 |
</tr>
|
225 |
<tr>
|
226 |
<th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Clients and referrers', 'cpd') ?>:</th>
|
227 |
+
<td><label for="cpd_referers"><input type="checkbox" name="cpd_referers" id="cpd_referers" <?php if($o['referers']==1) echo 'checked="checked"'; ?> /> <?php _e('Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors.', 'cpd') ?> (1000000 <?php _e('Reads', 'cpd') ?> ~ 130 MB)</label></td>
|
228 |
</tr>
|
229 |
</table>
|
230 |
</fieldset>
|
233 |
|
234 |
<fieldset>
|
235 |
<legend><?php _e('Dashboard') ?></legend>
|
236 |
+
|
237 |
+
<script>
|
238 |
+
function checkcustom()
|
239 |
+
{
|
240 |
+
var b = document.getElementById('cpd_whocansee');
|
241 |
+
var i = document.getElementById('cpd_whocansee_custom_div');
|
242 |
+
if ( b.value == 'custom' )
|
243 |
+
i.style.display = 'block';
|
244 |
+
else
|
245 |
+
i.style.display = 'none';
|
246 |
+
}
|
247 |
+
</script>
|
248 |
+
|
249 |
<table class="form-table">
|
250 |
+
<tr>
|
251 |
+
<th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Who can see it', 'cpd') ?>:</th>
|
252 |
+
<td>
|
253 |
+
<?php $cus = (in_array($o['whocansee'], array('manage_options','manage_links','publish_posts','edit_posts','read'))) ? 0 : 1 ?>
|
254 |
+
<select id="cpd_whocansee" name="cpd_whocansee" onchange="checkcustom()">
|
255 |
+
<option value="manage_options" <?php if ($o['whocansee'] == 'manage_options') echo 'selected="selected"' ?>><?php echo translate_user_role('Administrator') ?> </option>
|
256 |
+
<option value="manage_links" <?php if ($o['whocansee'] == 'manage_links') echo 'selected="selected"' ?>><?php echo translate_user_role('Editor') ?></option>
|
257 |
+
<option value="publish_posts" <?php if ($o['whocansee'] == 'publish_posts') echo 'selected="selected"' ?>><?php echo translate_user_role('Author') ?></option>
|
258 |
+
<option value="edit_posts" <?php if ($o['whocansee'] == 'edit_posts') echo 'selected="selected"' ?>><?php echo translate_user_role('Contributor') ?></option>
|
259 |
+
<option value="read" <?php if ($o['whocansee'] == 'read') echo 'selected="selected"' ?>><?php echo translate_user_role('Subscriber') ?></option>
|
260 |
+
<option value="custom" <?php if ($cus) echo 'selected="selected"' ?>>- <?php echo _e('custom', 'cpd') ?> -</option>
|
261 |
+
</select>
|
262 |
+
<?php _e('and higher are allowed to see the statistics page.', 'cpd') ?>
|
263 |
+
<div id="cpd_whocansee_custom_div" <?php if (!$cus) echo 'style="display:none"' ?>>
|
264 |
+
<?php printf(__('Set the %s capability %s a user need:', 'cpd'), '<a href="https://codex.wordpress.org/Roles_and_Capabilities">', '</a>'); ?>
|
265 |
+
<input type="text" name="cpd_whocansee_custom" value="<?php echo $o['whocansee'] ?>" />
|
266 |
+
</div>
|
267 |
+
</td>
|
268 |
+
</tr>
|
269 |
<tr>
|
270 |
<th nowrap="nowrap" scope="row" style="vertical-align:middle;"><?php _e('Visitors per post', 'cpd') ?>:</th>
|
271 |
<td><input class="code" type="text" name="cpd_dashboard_posts" size="3" value="<?php echo $o['dashboard_posts']; ?>" /> <?php _e('How many posts do you want to see on dashboard page?', 'cpd') ?></td>
|
463 |
echo '<a href="?page=count-per-day/counter-options.php&dmbip='.$row['longip'].'&dmbdate='.$row['date'].'"
|
464 |
title="'.sprintf(__('Delete these %s counts', 'cpd'), $row['posts']).'"
|
465 |
style="color:red; font-weight: bold;">X</a> ';
|
466 |
+
echo '<a href="http://www.utrace.de/?query='.$ip.'">'.$ip.'</a></td>'
|
467 |
.'<td style="white-space:nowrap;">'.mysql2date(get_option('date_format'), $row['date'] ).'</td>'
|
468 |
.'<td>'.$row['client'].'</td>'
|
469 |
.'<td style="text-align:right;"><a href="'.$count_per_day->dir.'/massbots.php?dmbip='.$row['longip'].'&dmbdate='.$row['date'].'&KeepThis=true&TB_iframe=true" title="Count per Day" class="thickbox">'
|
486 |
</div>
|
487 |
|
488 |
<!-- Cleaner -->
|
489 |
+
<?php if ( $count_per_day->options['referers'] ) : ?>
|
490 |
<div class="postbox">
|
491 |
<h3><?php _e('Clean the database', 'cpd') ?></h3>
|
492 |
<div class="inside">
|
counter.css
CHANGED
@@ -77,7 +77,7 @@
|
|
77 |
height: 50px;
|
78 |
border: 1px solid #ddd;
|
79 |
background: -moz-linear-gradient(top, #ccc 0, #fff 80%);
|
80 |
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #
|
81 |
}
|
82 |
|
83 |
.cpd-dashboard .inside {
|
@@ -140,6 +140,7 @@
|
|
140 |
.cpd_widget_item .widefat {
|
141 |
width: 235px !important;
|
142 |
margin-left: 15px;
|
|
|
143 |
}
|
144 |
|
145 |
/* thickbox */
|
77 |
height: 50px;
|
78 |
border: 1px solid #ddd;
|
79 |
background: -moz-linear-gradient(top, #ccc 0, #fff 80%);
|
80 |
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(80%, #fff));
|
81 |
}
|
82 |
|
83 |
.cpd-dashboard .inside {
|
140 |
.cpd_widget_item .widefat {
|
141 |
width: 235px !important;
|
142 |
margin-left: 15px;
|
143 |
+
|
144 |
}
|
145 |
|
146 |
/* thickbox */
|
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 per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
-
Version: 2.
|
7 |
License: Postcardware :)
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
-
$cpd_version = '2.
|
14 |
|
15 |
/**
|
16 |
* include GeoIP addon
|
@@ -80,33 +80,40 @@ function CountPerDay()
|
|
80 |
}
|
81 |
|
82 |
// widget on dashboard page
|
83 |
-
|
|
|
84 |
|
85 |
// CpD dashboard page
|
86 |
-
|
|
|
87 |
|
88 |
-
//
|
89 |
-
|
|
|
90 |
|
91 |
// column page list
|
92 |
-
|
93 |
-
|
|
|
94 |
|
95 |
// column post list
|
96 |
-
|
97 |
-
|
|
|
98 |
|
99 |
// locale support
|
100 |
if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
|
101 |
load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
|
102 |
|
103 |
// adds stylesheet
|
104 |
-
|
|
|
105 |
if ( empty($this->options['no_front_css']) )
|
106 |
add_action('wp_head', array(&$this, 'addCss'));
|
107 |
|
108 |
// adds javascript
|
109 |
-
|
|
|
110 |
|
111 |
// widget setup
|
112 |
add_action('widgets_init', array( &$this, 'register_widgets'));
|
@@ -163,7 +170,7 @@ function connectDB()
|
|
163 |
|
164 |
$this->dbcon = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, true);
|
165 |
@mysql_select_db(DB_NAME, $this->dbcon);
|
166 |
-
$this->getQuery("SET NAMES '".$wpdb->charset."'", 'SET NAMES');
|
167 |
}
|
168 |
|
169 |
/**
|
@@ -209,7 +216,7 @@ function show( $before='', $after=' reads', $show = true, $count = true, $page =
|
|
209 |
$this->count();
|
210 |
if ( $page == 'x' )
|
211 |
$page = get_the_ID();
|
212 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$page'", 'show');
|
213 |
$row = mysql_fetch_row($res);
|
214 |
if ( $show )
|
215 |
echo $before.$row[0].$after;
|
@@ -340,7 +347,7 @@ function count( $x, $page = 'x' )
|
|
340 |
$date = date_i18n('Y-m-d');
|
341 |
|
342 |
// new visitor on page?
|
343 |
-
$res = $this->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE ip=INET_ATON('$userip') AND date='$date' AND page='$page'", 'count check');
|
344 |
$row = mysql_fetch_row($res);
|
345 |
if ( $row[0] == 0 )
|
346 |
{
|
@@ -351,20 +358,20 @@ function count( $x, $page = 'x' )
|
|
351 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
352 |
$country = strtolower(cpd_geoip_country_code_by_addr($gi, $userip));
|
353 |
$this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, country, referer)
|
354 |
-
VALUES (%s, INET_ATON(%s), %s, %s, %s, %s)", $page, $userip, $client, $date, $country, $referer), 'count insert');
|
355 |
}
|
356 |
else
|
357 |
{
|
358 |
// without country
|
359 |
$this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, referer)
|
360 |
-
VALUES (%s, INET_ATON(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert');
|
361 |
}
|
362 |
}
|
363 |
|
364 |
// online counter
|
365 |
$timestamp = time();
|
366 |
$this->getQuery($wpdb->prepare("REPLACE INTO ".CPD_CO_TABLE." (timestamp, ip, page)
|
367 |
-
VALUES ( %s, INET_ATON(%s), %s)", $timestamp, $userip, $page), 'count online');
|
368 |
}
|
369 |
}
|
370 |
|
@@ -374,7 +381,7 @@ function count( $x, $page = 'x' )
|
|
374 |
function deleteOnlineCounter()
|
375 |
{
|
376 |
$timeout = time() - $this->options['onlinetime'];
|
377 |
-
$this->getQuery("DELETE FROM ".CPD_CO_TABLE." WHERE timestamp < $timeout", 'deleteOnlineCounter');
|
378 |
}
|
379 |
|
380 |
/**
|
@@ -442,7 +449,7 @@ function createTables()
|
|
442 |
KEY `idx_page` (`page`),
|
443 |
KEY `idx_dateip` (`date`,`ip`) )
|
444 |
$charset_collate;";
|
445 |
-
$this->getQuery($sql);
|
446 |
|
447 |
// update fields in old table
|
448 |
$field = $this->getQuery( "SHOW FIELDS FROM `$cpd_c` LIKE 'ip'" );
|
@@ -458,7 +465,7 @@ function createTables()
|
|
458 |
"ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL");
|
459 |
|
460 |
foreach ( $queries as $sql)
|
461 |
-
$this->getQuery($sql, 'update old fields');
|
462 |
}
|
463 |
|
464 |
// make new keys
|
@@ -575,7 +582,7 @@ function getFlotChart( $limit = 0 )
|
|
575 |
FROM ".CPD_C_TABLE." AS c
|
576 |
WHERE c.date BETWEEN '$start_sql' AND '$end_sql'
|
577 |
GROUP BY c.date";
|
578 |
-
$res = $this->getQuery($sql, 'ChartReads');
|
579 |
if ( @mysql_num_rows($res) )
|
580 |
while ( $row = mysql_fetch_array($res) )
|
581 |
$data[strtotime($row['date'])][0] = $row['count'];
|
@@ -589,7 +596,7 @@ function getFlotChart( $limit = 0 )
|
|
589 |
) AS t
|
590 |
WHERE t.date BETWEEN '$start_sql' AND '$end_sql'
|
591 |
GROUP BY t.date";
|
592 |
-
$res = $this->getQuery($sql, 'ChartVisitors');
|
593 |
if ( @mysql_num_rows($res) )
|
594 |
while ( $row = mysql_fetch_array($res) )
|
595 |
$data[strtotime($row['date'])][1] = $row['count'];
|
@@ -776,7 +783,7 @@ function dashboardChartDataRequest( $sql = '', $limit, $frontend = false )
|
|
776 |
// get options
|
777 |
$max_height = ( !empty($this->options['chart_height']) ) ? $this->options['chart_height'] : 200;
|
778 |
|
779 |
-
$res = $this->getQuery($sql, 'Chart');
|
780 |
if ( mysql_errno() || !mysql_num_rows($res) )
|
781 |
return;
|
782 |
|
@@ -891,14 +898,14 @@ function getUserOnline( $frontend = false, $country = false )
|
|
891 |
{
|
892 |
// map link
|
893 |
if (!$frontend && file_exists($cpd_path.'map/map.php') )
|
894 |
-
$c .= '<div style="margin: 5px 0 10px 0;"><a href="'.$this->dir.'/map/map.php?map=
|
895 |
.'&KeepThis=true&TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
|
896 |
|
897 |
// countries list
|
898 |
$geoip = new GeoIPCpd();
|
899 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
900 |
|
901 |
-
$res = $this->getQuery("SELECT INET_NTOA(ip) AS ip FROM ".CPD_CO_TABLE, 'getUserOnline');
|
902 |
if ( @mysql_num_rows($res) )
|
903 |
{
|
904 |
$vo = array();
|
@@ -926,7 +933,7 @@ function getUserOnline( $frontend = false, $country = false )
|
|
926 |
else
|
927 |
{
|
928 |
// number only
|
929 |
-
$res = $this->getQuery("SELECT count(*) FROM ".CPD_CO_TABLE, 'getUserOnline');
|
930 |
$row = mysql_fetch_row($res);
|
931 |
$c = $row[0];
|
932 |
}
|
@@ -942,7 +949,7 @@ function getUserOnline( $frontend = false, $country = false )
|
|
942 |
*/
|
943 |
function getUserAll( $frontend = false )
|
944 |
{
|
945 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." GROUP BY date, ip", 'getUserAll');
|
946 |
$c = mysql_num_rows($res) + intval($this->options['startcount']);
|
947 |
if ($frontend)
|
948 |
return $c;
|
@@ -955,7 +962,7 @@ function getUserAll( $frontend = false )
|
|
955 |
*/
|
956 |
function getReadsAll( $frontend = false )
|
957 |
{
|
958 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE, 'getReadsAll');
|
959 |
$row = mysql_fetch_row($res);
|
960 |
$c = $row[0] + intval($this->options['startreads']);
|
961 |
if ($frontend)
|
@@ -970,7 +977,7 @@ function getReadsAll( $frontend = false )
|
|
970 |
function getUserToday( $frontend = false )
|
971 |
{
|
972 |
$date = date_i18n('Y-m-d');
|
973 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserToday');
|
974 |
$c = mysql_num_rows($res);
|
975 |
if ($frontend)
|
976 |
return $c;
|
@@ -984,7 +991,7 @@ function getUserToday( $frontend = false )
|
|
984 |
function getReadsToday( $frontend = false )
|
985 |
{
|
986 |
$date = date_i18n('Y-m-d');
|
987 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsToday');
|
988 |
$row = mysql_fetch_row($res);
|
989 |
if ($frontend)
|
990 |
return $row[0];
|
@@ -998,7 +1005,7 @@ function getReadsToday( $frontend = false )
|
|
998 |
function getUserYesterday( $frontend = false )
|
999 |
{
|
1000 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400);
|
1001 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserYesterday');
|
1002 |
$c = mysql_num_rows($res);
|
1003 |
if ($frontend)
|
1004 |
return $c;
|
@@ -1012,7 +1019,7 @@ function getUserYesterday( $frontend = false )
|
|
1012 |
function getReadsYesterday( $frontend = false )
|
1013 |
{
|
1014 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400);
|
1015 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsYesterday');
|
1016 |
$row = mysql_fetch_row($res);
|
1017 |
if ($frontend)
|
1018 |
return $row[0];
|
@@ -1026,7 +1033,7 @@ function getReadsYesterday( $frontend = false )
|
|
1026 |
function getUserLastWeek( $frontend = false )
|
1027 |
{
|
1028 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
|
1029 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$date' GROUP BY date, ip;", 'getUserLastWeek');
|
1030 |
$c = mysql_num_rows($res);
|
1031 |
if ($frontend)
|
1032 |
return $c;
|
@@ -1040,7 +1047,7 @@ function getUserLastWeek( $frontend = false )
|
|
1040 |
function getReadsLastWeek( $frontend = false )
|
1041 |
{
|
1042 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
|
1043 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$date';", 'getReadsLastWeek');
|
1044 |
$row = mysql_fetch_row($res);
|
1045 |
if ($frontend)
|
1046 |
return $row[0];
|
@@ -1054,7 +1061,7 @@ function getReadsLastWeek( $frontend = false )
|
|
1054 |
function getUserThisMonth( $frontend = false )
|
1055 |
{
|
1056 |
$first = date_i18n('Y-m-', current_time('timestamp')).'01';
|
1057 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$first' GROUP BY date, ip;", 'getUserThisMonth');
|
1058 |
$c = mysql_num_rows($res);
|
1059 |
if ($frontend)
|
1060 |
return $c;
|
@@ -1068,7 +1075,7 @@ function getUserThisMonth( $frontend = false )
|
|
1068 |
function getReadsThisMonth( $frontend = false )
|
1069 |
{
|
1070 |
$first = date_i18n('Y-m-', current_time('timestamp')).'01';
|
1071 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$first';", 'getReadsThisMonth');
|
1072 |
$row = mysql_fetch_row($res);
|
1073 |
if ($frontend)
|
1074 |
return $row[0];
|
@@ -1081,13 +1088,13 @@ function getReadsThisMonth( $frontend = false )
|
|
1081 |
*/
|
1082 |
function getUserPerMonth( $frontend = false )
|
1083 |
{
|
1084 |
-
$m = $this->getQuery("SELECT LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getUserPerMonths');
|
1085 |
$r = '<ul class="cpd_front_list">';
|
1086 |
$d = array();
|
1087 |
$i = 1;
|
1088 |
while ( $row = mysql_fetch_row($m) )
|
1089 |
{
|
1090 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE LEFT(date,7) = '".$row[0]."' GROUP BY date, ip", 'getUserPerMonth');
|
1091 |
$r .= '<li><b>'.mysql_num_rows($res).'</b> '.$row[0].'</li>'."\n";
|
1092 |
$d[] = '[-'.$i++.','.mysql_num_rows($res).']';
|
1093 |
}
|
@@ -1106,7 +1113,7 @@ function getUserPerMonth( $frontend = false )
|
|
1106 |
*/
|
1107 |
function getReadsPerMonth( $frontend = false )
|
1108 |
{
|
1109 |
-
$res = $this->getQuery("SELECT COUNT(*), LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getReadsPerMonths');
|
1110 |
$r = '<ul class="cpd_front_list">';
|
1111 |
$d = array();
|
1112 |
$i = 1;
|
@@ -1155,7 +1162,7 @@ function getUserPerPost( $limit = 0, $frontend = false )
|
|
1155 |
ORDER BY count DESC";
|
1156 |
if ( $limit > 0 )
|
1157 |
$sql .= " LIMIT ".$limit;
|
1158 |
-
$r = $this->getUserPer_SQL( $sql, 'getUserPerPost', $frontend );
|
1159 |
if ($frontend)
|
1160 |
return $r;
|
1161 |
else
|
@@ -1172,7 +1179,7 @@ function getFirstCount( $frontend = false )
|
|
1172 |
$c = mysql2date(get_option('date_format'), $this->options['startdate'] );
|
1173 |
else
|
1174 |
{
|
1175 |
-
$res = $this->getQuery("SELECT date FROM ".CPD_C_TABLE." ORDER BY date LIMIT 1", 'getFirstCount');
|
1176 |
$row = mysql_fetch_row($res);
|
1177 |
$c = mysql2date(get_option('date_format'), $row[0] );
|
1178 |
}
|
@@ -1205,7 +1212,7 @@ function getUserPerDay( $days = 0, $frontend = false )
|
|
1205 |
}
|
1206 |
}
|
1207 |
|
1208 |
-
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date > '$datemin' AND date < '$datemax' GROUP BY ip, date", 'getUserPerDay');
|
1209 |
$count = @mysql_num_rows($res) / $days;
|
1210 |
|
1211 |
$c = '<abbr title="last '.$days.' days without today">';
|
@@ -1305,7 +1312,7 @@ function getMostVisitedPostIDs( $days = 365, $limit = 10, $cats = false, $return
|
|
1305 |
GROUP BY c.page
|
1306 |
ORDER BY count DESC
|
1307 |
LIMIT $limit";
|
1308 |
-
$res = $this->getQuery($sql, 'getMostVisitedPostIDs');
|
1309 |
|
1310 |
$ids = array();
|
1311 |
if ( @mysql_num_rows($res) )
|
@@ -1396,7 +1403,7 @@ function getClients( $frontend = false )
|
|
1396 |
$c_string = $this->options['clients'];
|
1397 |
$clients = explode(',', $c_string);
|
1398 |
|
1399 |
-
$res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE, 'getClients_all');
|
1400 |
$row = @mysql_fetch_row($res);
|
1401 |
$all = max(1, $row[0]);
|
1402 |
$rest = 100;
|
@@ -1404,7 +1411,7 @@ function getClients( $frontend = false )
|
|
1404 |
foreach ($clients as $c)
|
1405 |
{
|
1406 |
$c = trim($c);
|
1407 |
-
$res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE." WHERE client like '%".$c."%'", 'getClients_'.$c);
|
1408 |
$row = @mysql_fetch_row($res);
|
1409 |
$percent = number_format(100 * $row[0] / $all, 0);
|
1410 |
$rest -= $percent;
|
@@ -1435,7 +1442,7 @@ function getReferers( $limit = 0, $frontend = false, $days = 0 )
|
|
1435 |
$dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
|
1436 |
|
1437 |
$localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%' ";
|
1438 |
-
$res = $this->getQuery("SELECT COUNT(*) count, referer FROM ".CPD_C_TABLE." WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers');
|
1439 |
$r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'<br/> </small>';
|
1440 |
$r .= '<ul id="cpd_referrers" class="cpd_front_list">';
|
1441 |
if ( @mysql_num_rows($res) )
|
@@ -1472,7 +1479,7 @@ function getMassBots( $limit = 0 )
|
|
1472 |
LEFT JOIN ".CPD_C_TABLE." c
|
1473 |
ON c.id = t.id
|
1474 |
WHERE posts > $limit";
|
1475 |
-
return $this->getQuery($sql, 'getMassBots');
|
1476 |
}
|
1477 |
|
1478 |
/**
|
@@ -1484,7 +1491,7 @@ function getMassBots( $limit = 0 )
|
|
1484 |
function getUserPer_SQL( $sql, $name = '', $frontend = false )
|
1485 |
{
|
1486 |
global $userdata;
|
1487 |
-
$m = $this->getQuery($sql, $name);
|
1488 |
$r = '<ul class="cpd_front_list">';
|
1489 |
while ( $row = mysql_fetch_assoc($m) )
|
1490 |
{
|
@@ -1543,14 +1550,14 @@ function cleanDB()
|
|
1543 |
// delete by ip
|
1544 |
foreach( $bots as $ip )
|
1545 |
if ( ip2long($ip) !== false )
|
1546 |
-
$this->getQuery('DELETE FROM '.CPD_C_TABLE.' WHERE INET_NTOA(ip) LIKE \''.$ip.'%\'', 'clenaDB_ip');
|
1547 |
|
1548 |
// delete by client
|
1549 |
foreach ($bots as $bot)
|
1550 |
-
$this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE client LIKE '%$bot%'", 'cleanDB_client');
|
1551 |
|
1552 |
// delete if a previously countered page was deleted
|
1553 |
-
$this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE page NOT IN ( SELECT id FROM ".$wpdb->posts.") AND page > 0", 'cleanDB_delPosts');
|
1554 |
|
1555 |
$rows_after = $wpdb->get_var('SELECT COUNT(*) FROM '.CPD_C_TABLE);
|
1556 |
return $rows_before - $rows_after;
|
@@ -1639,7 +1646,8 @@ function updateOptions()
|
|
1639 |
'dashboard_referers' => (isset($o['dashboard_referers'])) ? $o['dashboard_referers'] : 20,
|
1640 |
'referers_last_days' => (isset($o['referers_last_days'])) ? $o['referers_last_days'] : 7,
|
1641 |
'chart_old' => (isset($o['chart_old'])) ? $o['chart_old'] : 0,
|
1642 |
-
'no_front_css' => (isset($o['no_front_css'])) ? $o['no_front_css'] : 0
|
|
|
1643 |
);
|
1644 |
update_option('count_per_day', $onew);
|
1645 |
}
|
@@ -1662,7 +1670,7 @@ function cpdColumnContent($column_name, $id = 0)
|
|
1662 |
global $wpdb;
|
1663 |
if( $column_name == 'cpd_reads' )
|
1664 |
{
|
1665 |
-
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$id'", 'cpdColumn_'.$id);
|
1666 |
$row = mysql_fetch_row($res);
|
1667 |
echo (int) $row[0];
|
1668 |
}
|
@@ -1692,7 +1700,7 @@ function screenLayoutColumns($columns, $screen)
|
|
1692 |
function setAdminMenu()
|
1693 |
{
|
1694 |
$menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
|
1695 |
-
$this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle,
|
1696 |
add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
|
1697 |
}
|
1698 |
|
@@ -1830,10 +1838,10 @@ function getCountries( $limit = 0, $frontend, $visitors = false )
|
|
1830 |
GROUP BY country, ip ) as t
|
1831 |
GROUP BY country
|
1832 |
ORDER BY c desc
|
1833 |
-
LIMIT $limit", 'getCountries');
|
1834 |
else
|
1835 |
// reads
|
1836 |
-
$res = $this->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE ip > 0 GROUP BY country ORDER BY c DESC LIMIT $limit", 'getCountries');
|
1837 |
|
1838 |
// map link
|
1839 |
if (!$frontend && file_exists($cpd_path.'map/map.php') )
|
@@ -1872,6 +1880,38 @@ function getCountries( $limit = 0, $frontend, $visitors = false )
|
|
1872 |
echo $c;
|
1873 |
}
|
1874 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1875 |
/**
|
1876 |
* adds some shortcodes to use functions in frontend
|
1877 |
*/
|
@@ -1901,6 +1941,7 @@ function addShortcodes()
|
|
1901 |
add_shortcode('CPD_MOST_VISITED_POSTS', array( &$this, 'shortMostVisitedPosts'));
|
1902 |
add_shortcode('CPD_REFERERS', array( &$this, 'shortReferers'));
|
1903 |
add_shortcode('CPD_POSTS_ON_DAY', array( &$this, 'shortPostsOnDay'));
|
|
|
1904 |
}
|
1905 |
function shortShow() { return $this->show('', '', false, false); }
|
1906 |
function shortReadsTotal() { return $this->getReadsAll(true); }
|
@@ -1933,6 +1974,16 @@ function shortPostsOnDay( $atts )
|
|
1933 |
), $atts) );
|
1934 |
return $this->getVisitedPostsOnDay( $date, $limit, false, false, true );
|
1935 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1936 |
|
1937 |
/**
|
1938 |
* adds style sheet to admin header
|
@@ -2094,7 +2145,8 @@ function includeChartJS( $id, $data, $html )
|
|
2094 |
$code = '<div id="'.$id.'" class="cpd-list-chart"></div>
|
2095 |
<script type="text/javascript">
|
2096 |
//<![CDATA[
|
2097 |
-
|
|
|
2098 |
//]]>
|
2099 |
</script>
|
2100 |
'.$html;
|
@@ -2300,10 +2352,11 @@ class CountPerDay_Widget extends WP_Widget
|
|
2300 |
function count_per_day_uninstall()
|
2301 |
{
|
2302 |
global $wpdb;
|
2303 |
-
$wpdb->query('DROP TABLE IF EXISTS '.CPD_C_TABLE);
|
2304 |
-
$wpdb->query('DROP TABLE IF EXISTS '.CPD_CO_TABLE);
|
2305 |
-
$wpdb->query('DROP TABLE IF EXISTS '.CPD_N_TABLE);
|
2306 |
-
delete_option('count_per_day');
|
|
|
2307 |
}
|
2308 |
|
2309 |
|
3 |
Plugin Name: Count Per Day
|
4 |
Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
|
5 |
Description: Counter, shows reads per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
+
Version: 2.17
|
7 |
License: Postcardware :)
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
+
$cpd_version = '2.17';
|
14 |
|
15 |
/**
|
16 |
* include GeoIP addon
|
80 |
}
|
81 |
|
82 |
// widget on dashboard page
|
83 |
+
if (is_admin())
|
84 |
+
add_action('wp_dashboard_setup', array(&$this, 'dashboardWidgetSetup'));
|
85 |
|
86 |
// CpD dashboard page
|
87 |
+
if (is_admin())
|
88 |
+
add_filter('screen_layout_columns', array(&$this, 'screenLayoutColumns'), 10, 2);
|
89 |
|
90 |
+
// CpD dashboard
|
91 |
+
if (is_admin())
|
92 |
+
add_action('admin_menu', array(&$this, 'setAdminMenu'));
|
93 |
|
94 |
// column page list
|
95 |
+
if (is_admin())
|
96 |
+
add_action('manage_pages_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
|
97 |
+
add_filter('manage_pages_columns', array(&$this, 'cpdColumn'));
|
98 |
|
99 |
// column post list
|
100 |
+
if (is_admin())
|
101 |
+
add_action('manage_posts_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
|
102 |
+
add_filter('manage_posts_columns', array(&$this, 'cpdColumn'));
|
103 |
|
104 |
// locale support
|
105 |
if (defined('WPLANG') && function_exists('load_plugin_textdomain'))
|
106 |
load_plugin_textdomain('cpd', false, $cpd_dir_name.'/locale');
|
107 |
|
108 |
// adds stylesheet
|
109 |
+
if (is_admin())
|
110 |
+
add_action('admin_head', array(&$this, 'addCss'));
|
111 |
if ( empty($this->options['no_front_css']) )
|
112 |
add_action('wp_head', array(&$this, 'addCss'));
|
113 |
|
114 |
// adds javascript
|
115 |
+
if (is_admin())
|
116 |
+
add_action('admin_head', array(&$this, 'addJS'));
|
117 |
|
118 |
// widget setup
|
119 |
add_action('widgets_init', array( &$this, 'register_widgets'));
|
170 |
|
171 |
$this->dbcon = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, true);
|
172 |
@mysql_select_db(DB_NAME, $this->dbcon);
|
173 |
+
$this->getQuery("SET NAMES '".$wpdb->charset."'", 'SET NAMES'.__LINE__);
|
174 |
}
|
175 |
|
176 |
/**
|
216 |
$this->count();
|
217 |
if ( $page == 'x' )
|
218 |
$page = get_the_ID();
|
219 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$page'", 'show'.__LINE__);
|
220 |
$row = mysql_fetch_row($res);
|
221 |
if ( $show )
|
222 |
echo $before.$row[0].$after;
|
347 |
$date = date_i18n('Y-m-d');
|
348 |
|
349 |
// new visitor on page?
|
350 |
+
$res = $this->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE ip=INET_ATON('$userip') AND date='$date' AND page='$page'", 'count check'.__LINE__);
|
351 |
$row = mysql_fetch_row($res);
|
352 |
if ( $row[0] == 0 )
|
353 |
{
|
358 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
359 |
$country = strtolower(cpd_geoip_country_code_by_addr($gi, $userip));
|
360 |
$this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, country, referer)
|
361 |
+
VALUES (%s, INET_ATON(%s), %s, %s, %s, %s)", $page, $userip, $client, $date, $country, $referer), 'count insert'.__LINE__);
|
362 |
}
|
363 |
else
|
364 |
{
|
365 |
// without country
|
366 |
$this->getQuery($wpdb->prepare("INSERT INTO ".CPD_C_TABLE." (page, ip, client, date, referer)
|
367 |
+
VALUES (%s, INET_ATON(%s), %s, %s, %s)", $page, $userip, $client, $date, $referer), 'count insert'.__LINE__);
|
368 |
}
|
369 |
}
|
370 |
|
371 |
// online counter
|
372 |
$timestamp = time();
|
373 |
$this->getQuery($wpdb->prepare("REPLACE INTO ".CPD_CO_TABLE." (timestamp, ip, page)
|
374 |
+
VALUES ( %s, INET_ATON(%s), %s)", $timestamp, $userip, $page), 'count online'.__LINE__);
|
375 |
}
|
376 |
}
|
377 |
|
381 |
function deleteOnlineCounter()
|
382 |
{
|
383 |
$timeout = time() - $this->options['onlinetime'];
|
384 |
+
$this->getQuery("DELETE FROM ".CPD_CO_TABLE." WHERE timestamp < $timeout", 'deleteOnlineCounter'.__LINE__);
|
385 |
}
|
386 |
|
387 |
/**
|
449 |
KEY `idx_page` (`page`),
|
450 |
KEY `idx_dateip` (`date`,`ip`) )
|
451 |
$charset_collate;";
|
452 |
+
$this->getQuery($sql, __LINE__);
|
453 |
|
454 |
// update fields in old table
|
455 |
$field = $this->getQuery( "SHOW FIELDS FROM `$cpd_c` LIKE 'ip'" );
|
465 |
"ALTER TABLE `$cpd_c` CHANGE `page` `page` mediumint(9) NOT NULL");
|
466 |
|
467 |
foreach ( $queries as $sql)
|
468 |
+
$this->getQuery($sql, 'update old fields'.__LINE__);
|
469 |
}
|
470 |
|
471 |
// make new keys
|
582 |
FROM ".CPD_C_TABLE." AS c
|
583 |
WHERE c.date BETWEEN '$start_sql' AND '$end_sql'
|
584 |
GROUP BY c.date";
|
585 |
+
$res = $this->getQuery($sql, 'ChartReads'.__LINE__);
|
586 |
if ( @mysql_num_rows($res) )
|
587 |
while ( $row = mysql_fetch_array($res) )
|
588 |
$data[strtotime($row['date'])][0] = $row['count'];
|
596 |
) AS t
|
597 |
WHERE t.date BETWEEN '$start_sql' AND '$end_sql'
|
598 |
GROUP BY t.date";
|
599 |
+
$res = $this->getQuery($sql, 'ChartVisitors'.__LINE__);
|
600 |
if ( @mysql_num_rows($res) )
|
601 |
while ( $row = mysql_fetch_array($res) )
|
602 |
$data[strtotime($row['date'])][1] = $row['count'];
|
783 |
// get options
|
784 |
$max_height = ( !empty($this->options['chart_height']) ) ? $this->options['chart_height'] : 200;
|
785 |
|
786 |
+
$res = $this->getQuery($sql, 'Chart'.__LINE__);
|
787 |
if ( mysql_errno() || !mysql_num_rows($res) )
|
788 |
return;
|
789 |
|
898 |
{
|
899 |
// map link
|
900 |
if (!$frontend && file_exists($cpd_path.'map/map.php') )
|
901 |
+
$c .= '<div style="margin: 5px 0 10px 0;"><a href="'.$this->dir.'/map/map.php?map=online'
|
902 |
.'&KeepThis=true&TB_iframe=true" title="Count per Day - '.__('Map', 'cpd').'" class="thickbox button">'.__('Map', 'cpd').'</a></div>';
|
903 |
|
904 |
// countries list
|
905 |
$geoip = new GeoIPCpd();
|
906 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
907 |
|
908 |
+
$res = $this->getQuery("SELECT INET_NTOA(ip) AS ip FROM ".CPD_CO_TABLE, 'getUserOnline'.__LINE__);
|
909 |
if ( @mysql_num_rows($res) )
|
910 |
{
|
911 |
$vo = array();
|
933 |
else
|
934 |
{
|
935 |
// number only
|
936 |
+
$res = $this->getQuery("SELECT count(*) FROM ".CPD_CO_TABLE, 'getUserOnline'.__LINE__);
|
937 |
$row = mysql_fetch_row($res);
|
938 |
$c = $row[0];
|
939 |
}
|
949 |
*/
|
950 |
function getUserAll( $frontend = false )
|
951 |
{
|
952 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." GROUP BY date, ip", 'getUserAll'.__LINE__);
|
953 |
$c = mysql_num_rows($res) + intval($this->options['startcount']);
|
954 |
if ($frontend)
|
955 |
return $c;
|
962 |
*/
|
963 |
function getReadsAll( $frontend = false )
|
964 |
{
|
965 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE, 'getReadsAll'.__LINE__);
|
966 |
$row = mysql_fetch_row($res);
|
967 |
$c = $row[0] + intval($this->options['startreads']);
|
968 |
if ($frontend)
|
977 |
function getUserToday( $frontend = false )
|
978 |
{
|
979 |
$date = date_i18n('Y-m-d');
|
980 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserToday'.__LINE__);
|
981 |
$c = mysql_num_rows($res);
|
982 |
if ($frontend)
|
983 |
return $c;
|
991 |
function getReadsToday( $frontend = false )
|
992 |
{
|
993 |
$date = date_i18n('Y-m-d');
|
994 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsToday'.__LINE__);
|
995 |
$row = mysql_fetch_row($res);
|
996 |
if ($frontend)
|
997 |
return $row[0];
|
1005 |
function getUserYesterday( $frontend = false )
|
1006 |
{
|
1007 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400);
|
1008 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date = '$date' GROUP BY ip", 'getUserYesterday'.__LINE__);
|
1009 |
$c = mysql_num_rows($res);
|
1010 |
if ($frontend)
|
1011 |
return $c;
|
1019 |
function getReadsYesterday( $frontend = false )
|
1020 |
{
|
1021 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400);
|
1022 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date = '$date'", 'getReadsYesterday'.__LINE__);
|
1023 |
$row = mysql_fetch_row($res);
|
1024 |
if ($frontend)
|
1025 |
return $row[0];
|
1033 |
function getUserLastWeek( $frontend = false )
|
1034 |
{
|
1035 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
|
1036 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$date' GROUP BY date, ip;", 'getUserLastWeek'.__LINE__);
|
1037 |
$c = mysql_num_rows($res);
|
1038 |
if ($frontend)
|
1039 |
return $c;
|
1047 |
function getReadsLastWeek( $frontend = false )
|
1048 |
{
|
1049 |
$date = date_i18n('Y-m-d', current_time('timestamp')-86400*7);
|
1050 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$date';", 'getReadsLastWeek'.__LINE__);
|
1051 |
$row = mysql_fetch_row($res);
|
1052 |
if ($frontend)
|
1053 |
return $row[0];
|
1061 |
function getUserThisMonth( $frontend = false )
|
1062 |
{
|
1063 |
$first = date_i18n('Y-m-', current_time('timestamp')).'01';
|
1064 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date >= '$first' GROUP BY date, ip;", 'getUserThisMonth'.__LINE__);
|
1065 |
$c = mysql_num_rows($res);
|
1066 |
if ($frontend)
|
1067 |
return $c;
|
1075 |
function getReadsThisMonth( $frontend = false )
|
1076 |
{
|
1077 |
$first = date_i18n('Y-m-', current_time('timestamp')).'01';
|
1078 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE date >= '$first';", 'getReadsThisMonth'.__LINE__);
|
1079 |
$row = mysql_fetch_row($res);
|
1080 |
if ($frontend)
|
1081 |
return $row[0];
|
1088 |
*/
|
1089 |
function getUserPerMonth( $frontend = false )
|
1090 |
{
|
1091 |
+
$m = $this->getQuery("SELECT LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getUserPerMonths'.__LINE__);
|
1092 |
$r = '<ul class="cpd_front_list">';
|
1093 |
$d = array();
|
1094 |
$i = 1;
|
1095 |
while ( $row = mysql_fetch_row($m) )
|
1096 |
{
|
1097 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE LEFT(date,7) = '".$row[0]."' GROUP BY date, ip", 'getUserPerMonth'.__LINE__);
|
1098 |
$r .= '<li><b>'.mysql_num_rows($res).'</b> '.$row[0].'</li>'."\n";
|
1099 |
$d[] = '[-'.$i++.','.mysql_num_rows($res).']';
|
1100 |
}
|
1113 |
*/
|
1114 |
function getReadsPerMonth( $frontend = false )
|
1115 |
{
|
1116 |
+
$res = $this->getQuery("SELECT COUNT(*), LEFT(date,7) FROM ".CPD_C_TABLE." GROUP BY year(date), month(date) ORDER BY date DESC", 'getReadsPerMonths'.__LINE__);
|
1117 |
$r = '<ul class="cpd_front_list">';
|
1118 |
$d = array();
|
1119 |
$i = 1;
|
1162 |
ORDER BY count DESC";
|
1163 |
if ( $limit > 0 )
|
1164 |
$sql .= " LIMIT ".$limit;
|
1165 |
+
$r = $this->getUserPer_SQL( $sql, 'getUserPerPost'.__LINE__, $frontend );
|
1166 |
if ($frontend)
|
1167 |
return $r;
|
1168 |
else
|
1179 |
$c = mysql2date(get_option('date_format'), $this->options['startdate'] );
|
1180 |
else
|
1181 |
{
|
1182 |
+
$res = $this->getQuery("SELECT date FROM ".CPD_C_TABLE." ORDER BY date LIMIT 1", 'getFirstCount'.__LINE__);
|
1183 |
$row = mysql_fetch_row($res);
|
1184 |
$c = mysql2date(get_option('date_format'), $row[0] );
|
1185 |
}
|
1212 |
}
|
1213 |
}
|
1214 |
|
1215 |
+
$res = $this->getQuery("SELECT 1 FROM ".CPD_C_TABLE." WHERE date > '$datemin' AND date < '$datemax' GROUP BY ip, date", 'getUserPerDay'.__LINE__);
|
1216 |
$count = @mysql_num_rows($res) / $days;
|
1217 |
|
1218 |
$c = '<abbr title="last '.$days.' days without today">';
|
1312 |
GROUP BY c.page
|
1313 |
ORDER BY count DESC
|
1314 |
LIMIT $limit";
|
1315 |
+
$res = $this->getQuery($sql, 'getMostVisitedPostIDs'.__LINE__);
|
1316 |
|
1317 |
$ids = array();
|
1318 |
if ( @mysql_num_rows($res) )
|
1403 |
$c_string = $this->options['clients'];
|
1404 |
$clients = explode(',', $c_string);
|
1405 |
|
1406 |
+
$res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE, 'getClients_all'.__LINE__);
|
1407 |
$row = @mysql_fetch_row($res);
|
1408 |
$all = max(1, $row[0]);
|
1409 |
$rest = 100;
|
1411 |
foreach ($clients as $c)
|
1412 |
{
|
1413 |
$c = trim($c);
|
1414 |
+
$res = $this->getQuery("SELECT COUNT(*) count FROM ".CPD_C_TABLE." WHERE client like '%".$c."%'", 'getClients_'.$c.'_'.__LINE__);
|
1415 |
$row = @mysql_fetch_row($res);
|
1416 |
$percent = number_format(100 * $row[0] / $all, 0);
|
1417 |
$rest -= $percent;
|
1442 |
$dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
|
1443 |
|
1444 |
$localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%' ";
|
1445 |
+
$res = $this->getQuery("SELECT COUNT(*) count, referer FROM ".CPD_C_TABLE." WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers'.__LINE__);
|
1446 |
$r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'<br/> </small>';
|
1447 |
$r .= '<ul id="cpd_referrers" class="cpd_front_list">';
|
1448 |
if ( @mysql_num_rows($res) )
|
1479 |
LEFT JOIN ".CPD_C_TABLE." c
|
1480 |
ON c.id = t.id
|
1481 |
WHERE posts > $limit";
|
1482 |
+
return $this->getQuery($sql, 'getMassBots'.__LINE__);
|
1483 |
}
|
1484 |
|
1485 |
/**
|
1491 |
function getUserPer_SQL( $sql, $name = '', $frontend = false )
|
1492 |
{
|
1493 |
global $userdata;
|
1494 |
+
$m = $this->getQuery($sql, $name.__LINE__);
|
1495 |
$r = '<ul class="cpd_front_list">';
|
1496 |
while ( $row = mysql_fetch_assoc($m) )
|
1497 |
{
|
1550 |
// delete by ip
|
1551 |
foreach( $bots as $ip )
|
1552 |
if ( ip2long($ip) !== false )
|
1553 |
+
$this->getQuery('DELETE FROM '.CPD_C_TABLE.' WHERE INET_NTOA(ip) LIKE \''.$ip.'%\'', 'clenaDB_ip'.__LINE__);
|
1554 |
|
1555 |
// delete by client
|
1556 |
foreach ($bots as $bot)
|
1557 |
+
$this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE client LIKE '%$bot%'", 'cleanDB_client'.__LINE__);
|
1558 |
|
1559 |
// delete if a previously countered page was deleted
|
1560 |
+
$this->getQuery("DELETE FROM ".CPD_C_TABLE." WHERE page NOT IN ( SELECT id FROM ".$wpdb->posts.") AND page > 0", 'cleanDB_delPosts'.__LINE__);
|
1561 |
|
1562 |
$rows_after = $wpdb->get_var('SELECT COUNT(*) FROM '.CPD_C_TABLE);
|
1563 |
return $rows_before - $rows_after;
|
1646 |
'dashboard_referers' => (isset($o['dashboard_referers'])) ? $o['dashboard_referers'] : 20,
|
1647 |
'referers_last_days' => (isset($o['referers_last_days'])) ? $o['referers_last_days'] : 7,
|
1648 |
'chart_old' => (isset($o['chart_old'])) ? $o['chart_old'] : 0,
|
1649 |
+
'no_front_css' => (isset($o['no_front_css'])) ? $o['no_front_css'] : 0,
|
1650 |
+
'whocansee' => (isset($o['whocansee'])) ? $o['whocansee'] : 'publish_posts'
|
1651 |
);
|
1652 |
update_option('count_per_day', $onew);
|
1653 |
}
|
1670 |
global $wpdb;
|
1671 |
if( $column_name == 'cpd_reads' )
|
1672 |
{
|
1673 |
+
$res = $this->getQuery("SELECT COUNT(*) FROM ".CPD_C_TABLE." WHERE page='$id'", 'cpdColumn_'.$id.'_'.__LINE__);
|
1674 |
$row = mysql_fetch_row($res);
|
1675 |
echo (int) $row[0];
|
1676 |
}
|
1700 |
function setAdminMenu()
|
1701 |
{
|
1702 |
$menutitle = '<img src="'.$this->getResource('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
|
1703 |
+
$this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
|
1704 |
add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
|
1705 |
}
|
1706 |
|
1838 |
GROUP BY country, ip ) as t
|
1839 |
GROUP BY country
|
1840 |
ORDER BY c desc
|
1841 |
+
LIMIT $limit", 'getCountries'.__LINE__);
|
1842 |
else
|
1843 |
// reads
|
1844 |
+
$res = $this->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE ip > 0 GROUP BY country ORDER BY c DESC LIMIT $limit", 'getCountries'.__LINE__);
|
1845 |
|
1846 |
// map link
|
1847 |
if (!$frontend && file_exists($cpd_path.'map/map.php') )
|
1880 |
echo $c;
|
1881 |
}
|
1882 |
|
1883 |
+
/**
|
1884 |
+
* gets a world map
|
1885 |
+
* @param string $what visitors|reads|online
|
1886 |
+
* @param int $width size
|
1887 |
+
* @param int $height size
|
1888 |
+
* @param int $min : 1 disable title, legend and zoombar
|
1889 |
+
*/
|
1890 |
+
function getMap( $what = 'visitors', $width = 500, $height = 340, $min = 0 )
|
1891 |
+
{
|
1892 |
+
$divid = uniqid('cpdmap_');
|
1893 |
+
$dir = $this->dir.'/map/';
|
1894 |
+
?>
|
1895 |
+
<script type="text/javascript" src="<?php echo $dir ?>swfobject.js"></script>
|
1896 |
+
<div id="<?php echo $divid ?>" class="cpd_worldmap" style="width:<?php echo $width ?>px; height:<?php echo $height ?>px; background:#4499FF;">
|
1897 |
+
<strong>Flash content</strong>
|
1898 |
+
</div>
|
1899 |
+
<script type="text/javascript">
|
1900 |
+
// <![CDATA[
|
1901 |
+
var so = new SWFObject("<?php echo $dir ?>ammap.swf", "ammap", "100%", "100%", "8", "#4499FF");
|
1902 |
+
so.addVariable("path", "<?php echo $dir ?>");
|
1903 |
+
so.addVariable("settings_file", escape("<?php echo $dir ?>settings.xml.php?map=<?php echo $what ?>&min=<?php echo $min ?>"));
|
1904 |
+
so.addVariable("data_file", escape("<?php echo $dir ?>data.xml.php?map=<?php echo $what ?>&min=<?php echo $min ?>"));
|
1905 |
+
so.write("<?php echo $divid ?>");
|
1906 |
+
// ]]>
|
1907 |
+
</script>
|
1908 |
+
<?php
|
1909 |
+
}
|
1910 |
+
|
1911 |
+
|
1912 |
+
|
1913 |
+
|
1914 |
+
|
1915 |
/**
|
1916 |
* adds some shortcodes to use functions in frontend
|
1917 |
*/
|
1941 |
add_shortcode('CPD_MOST_VISITED_POSTS', array( &$this, 'shortMostVisitedPosts'));
|
1942 |
add_shortcode('CPD_REFERERS', array( &$this, 'shortReferers'));
|
1943 |
add_shortcode('CPD_POSTS_ON_DAY', array( &$this, 'shortPostsOnDay'));
|
1944 |
+
add_shortcode('CPD_MAP', array( &$this, 'shortShowMap'));
|
1945 |
}
|
1946 |
function shortShow() { return $this->show('', '', false, false); }
|
1947 |
function shortReadsTotal() { return $this->getReadsAll(true); }
|
1974 |
), $atts) );
|
1975 |
return $this->getVisitedPostsOnDay( $date, $limit, false, false, true );
|
1976 |
}
|
1977 |
+
function shortShowMap( $atts )
|
1978 |
+
{
|
1979 |
+
extract( shortcode_atts( array(
|
1980 |
+
'width' => 500,
|
1981 |
+
'height' => 340,
|
1982 |
+
'what' => 'reads',
|
1983 |
+
'min' => 0
|
1984 |
+
), $atts) );
|
1985 |
+
return $this->getMap( $what, $width, $height, $min );
|
1986 |
+
}
|
1987 |
|
1988 |
/**
|
1989 |
* adds style sheet to admin header
|
2145 |
$code = '<div id="'.$id.'" class="cpd-list-chart"></div>
|
2146 |
<script type="text/javascript">
|
2147 |
//<![CDATA[
|
2148 |
+
if (jQuery("#'.$id.'").width() > 0)
|
2149 |
+
jQuery(function(){jQuery.plot(jQuery("#'.$id.'"),'.$d.',{series:{lines:{fill:true,lineWidth:1}},colors:["red"],grid:{show:false}});});
|
2150 |
//]]>
|
2151 |
</script>
|
2152 |
'.$html;
|
2352 |
function count_per_day_uninstall()
|
2353 |
{
|
2354 |
global $wpdb;
|
2355 |
+
// $wpdb->query('DROP TABLE IF EXISTS '.CPD_C_TABLE);
|
2356 |
+
// $wpdb->query('DROP TABLE IF EXISTS '.CPD_CO_TABLE);
|
2357 |
+
// $wpdb->query('DROP TABLE IF EXISTS '.CPD_N_TABLE);
|
2358 |
+
// delete_option('count_per_day');
|
2359 |
+
$wpdb->query("DELETE FROM ".$wpdb->usermeta." WHERE meta_key like '%_cpd_metaboxes%';");
|
2360 |
}
|
2361 |
|
2362 |
|
geoip/GeoIP.dat
CHANGED
Binary file
|
geoip/geoip.php
CHANGED
@@ -15,7 +15,7 @@ class CpdGeoIp
|
|
15 |
/**
|
16 |
* gets country of ip adress
|
17 |
* @param $ip IP
|
18 |
-
* @return array e.g. ( 'de', image
|
19 |
*/
|
20 |
function getCountry( $ip )
|
21 |
{
|
@@ -33,47 +33,62 @@ function getCountry( $ip )
|
|
33 |
return $country;
|
34 |
}
|
35 |
|
|
|
|
|
36 |
/**
|
37 |
* updates CountPerDay table
|
38 |
*/
|
39 |
function updateDB()
|
40 |
{
|
41 |
-
global $count_per_day
|
|
|
|
|
42 |
|
43 |
-
$count_per_day->
|
44 |
if ((int) mysql_errno() == 1054)
|
45 |
// add row "country" to table
|
46 |
-
$count_per_day->
|
47 |
|
48 |
-
$limit =
|
49 |
-
$res = $count_per_day->
|
50 |
$gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
70 |
|
71 |
cpd_geoip_close($gi);
|
72 |
|
73 |
-
$
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
|
|
|
|
|
77 |
/**
|
78 |
* updates the GeoIP database file
|
79 |
* works only if directory geoip has rights 777, set it in ftp client
|
15 |
/**
|
16 |
* gets country of ip adress
|
17 |
* @param $ip IP
|
18 |
+
* @return array e.g. ( 'de', image link to easywhois.com , 'Germany' )
|
19 |
*/
|
20 |
function getCountry( $ip )
|
21 |
{
|
33 |
return $country;
|
34 |
}
|
35 |
|
36 |
+
|
37 |
+
|
38 |
/**
|
39 |
* updates CountPerDay table
|
40 |
*/
|
41 |
function updateDB()
|
42 |
{
|
43 |
+
global $count_per_day;
|
44 |
+
global $cpd_path;
|
45 |
+
global $wpdb;
|
46 |
|
47 |
+
$count_per_day->getQuery("SELECT country FROM `".CPD_C_TABLE."`", 'GeoIP updateDB Table');
|
48 |
if ((int) mysql_errno() == 1054)
|
49 |
// add row "country" to table
|
50 |
+
$count_per_day->getQuery("ALTER TABLE `".CPD_C_TABLE."` ADD `country` CHAR( 2 ) NOT NULL", 'GeoIP updateDB create column');
|
51 |
|
52 |
+
$limit = 10;
|
53 |
+
$res = $count_per_day->getQuery("SELECT ip, INET_NTOA(ip) AS realip FROM ".CPD_C_TABLE." WHERE country LIKE '' GROUP BY ip LIMIT $limit;", 'GeoIP updateDB');
|
54 |
$gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
|
55 |
|
56 |
+
if ( @mysql_num_rows($res) )
|
57 |
+
while ( $r = mysql_fetch_array($res) )
|
58 |
+
{
|
59 |
+
$c = '';
|
60 |
+
$ip = explode('.', $r['realip']);
|
61 |
+
if ( $ip[0] == 10
|
62 |
+
|| $ip[0] == 127
|
63 |
+
|| ($ip[0] == 169 && $ip[1] == 254)
|
64 |
+
|| ($ip[0] == 172 && $ip[1] >= 16 && $ip[1] <= 31)
|
65 |
+
|| ($ip[0] == 192 && $ip[1] == 168) )
|
66 |
+
// set local IPs to '-'
|
67 |
+
$c = '-';
|
68 |
+
else
|
69 |
+
// get country
|
70 |
+
$c = strtolower(cpd_geoip_country_code_by_addr($gi, $r['realip']));
|
71 |
+
|
72 |
+
if ( !empty($c) )
|
73 |
+
$count_per_day->getQuery("UPDATE ".CPD_C_TABLE." SET country = '".$c."' WHERE ip = '".$r['ip']."'", 'GeoIP updateDB');
|
74 |
+
}
|
75 |
|
76 |
cpd_geoip_close($gi);
|
77 |
|
78 |
+
$res = $count_per_day->getQuery("SELECT count(*) FROM ".CPD_C_TABLE." WHERE country like ''", 'GeoIP updateDB');
|
79 |
+
if ( @mysql_num_rows($res) )
|
80 |
+
{
|
81 |
+
$row = mysql_fetch_array($res);
|
82 |
+
$rest = (!empty($row[0])) ? $row[0] : 0;
|
83 |
+
}
|
84 |
+
else
|
85 |
+
$rest = 0;
|
86 |
+
|
87 |
+
return $rest;
|
88 |
}
|
89 |
|
90 |
+
|
91 |
+
|
92 |
/**
|
93 |
* updates the GeoIP database file
|
94 |
* works only if directory geoip has rights 777, set it in ftp client
|
img/cpd_calendar.png
CHANGED
Binary file
|
img/cpd_flags.png
CHANGED
Binary file
|
img/cpd_pen.png
CHANGED
Binary file
|
img/cpd_sprites.png
DELETED
Binary file
|
js/jquery.flot.min.js
CHANGED
@@ -1,1988 +1 @@
|
|
1 |
-
(function(B){B.color={};B.color.make=function(F,E,C,D){var G={};G.r=F||0;G.g=E||0;G.b=C||0;G.a=D!=null?D:1;G.add=function(J,I){for(var H=0;H<J.length;++H){G[J.charAt(H)]+=I}return G.normalize()};G.scale=function(J,I){for(var H=0;H<J.length;++H){G[J.charAt(H)]*=I}return G.normalize()};G.toString=function(){if(G.a>=1){return"rgb("+[G.r,G.g,G.b].join(",")+")"}else{return"rgba("+[G.r,G.g,G.b,G.a].join(",")+")"}};G.normalize=function(){function H(J,K,I){return K<J?J:(K>I?I:K)}G.r=H(0,parseInt(G.r),255);G.g=H(0,parseInt(G.g),255);G.b=H(0,parseInt(G.b),255);G.a=H(0,G.a,1);return G};G.clone=function(){return B.color.make(G.r,G.b,G.g,G.a)};return G.normalize()};B.color.extract=function(D,C){var E;do{E=D.css(C).toLowerCase();if(E!=""&&E!="transparent"){break}D=D.parent()}while(!B.nodeName(D.get(0),"body"));if(E=="rgba(0, 0, 0, 0)"){E="transparent"}return B.color.parse(E)};B.color.parse=function(F){var E,C=B.color.make;if(E=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(F)){return C(parseInt(E[1],10),parseInt(E[2],10),parseInt(E[3],10))}if(E=/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(F)){return C(parseInt(E[1],10),parseInt(E[2],10),parseInt(E[3],10),parseFloat(E[4]))}if(E=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(F)){return C(parseFloat(E[1])*2.55,parseFloat(E[2])*2.55,parseFloat(E[3])*2.55)}if(E=/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(F)){return C(parseFloat(E[1])*2.55,parseFloat(E[2])*2.55,parseFloat(E[3])*2.55,parseFloat(E[4]))}if(E=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(F)){return C(parseInt(E[1],16),parseInt(E[2],16),parseInt(E[3],16))}if(E=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(F)){return C(parseInt(E[1]+E[1],16),parseInt(E[2]+E[2],16),parseInt(E[3]+E[3],16))}var D=B.trim(F).toLowerCase();if(D=="transparent"){return C(255,255,255,0)}else{E=A[D]||[0,0,0];return C(E[0],E[1],E[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);
|
2 |
-
(function($) {
|
3 |
-
function Plot(placeholder, data_, options_, plugins) {
|
4 |
-
var series = [],
|
5 |
-
options = {
|
6 |
-
colors: ["#edc240", "#afd8f8", "#cb4b4b", "#4da74d", "#9440ed"],
|
7 |
-
legend: {
|
8 |
-
show: true,
|
9 |
-
noColumns: 1,
|
10 |
-
labelFormatter: null,
|
11 |
-
labelBoxBorderColor: "#ccc",
|
12 |
-
container: null,
|
13 |
-
position: "ne",
|
14 |
-
margin: 5,
|
15 |
-
backgroundColor: null,
|
16 |
-
backgroundOpacity: 0.85
|
17 |
-
},
|
18 |
-
xaxis: {
|
19 |
-
show: null,
|
20 |
-
position: "bottom",
|
21 |
-
mode: null,
|
22 |
-
font: null,
|
23 |
-
color: null,
|
24 |
-
tickColor: null,
|
25 |
-
transform: null,
|
26 |
-
inverseTransform: null,
|
27 |
-
min: null,
|
28 |
-
max: null,
|
29 |
-
autoscaleMargin: null,
|
30 |
-
ticks: null,
|
31 |
-
tickFormatter: null,
|
32 |
-
labelWidth: null,
|
33 |
-
labelHeight: null,
|
34 |
-
reserveSpace: null,
|
35 |
-
tickLength: null,
|
36 |
-
alignTicksWithAxis: null,
|
37 |
-
tickDecimals: null,
|
38 |
-
tickSize: null,
|
39 |
-
minTickSize: null,
|
40 |
-
monthNames: null,
|
41 |
-
timeformat: null,
|
42 |
-
twelveHourClock: false
|
43 |
-
},
|
44 |
-
yaxis: {
|
45 |
-
autoscaleMargin: 0.02,
|
46 |
-
position: "left"
|
47 |
-
},
|
48 |
-
xaxes: [],
|
49 |
-
yaxes: [],
|
50 |
-
series: {
|
51 |
-
points: {
|
52 |
-
show: false,
|
53 |
-
radius: 3,
|
54 |
-
lineWidth: 2,
|
55 |
-
fill: true,
|
56 |
-
fillColor: "#ffffff",
|
57 |
-
symbol: "circle"
|
58 |
-
},
|
59 |
-
lines: {
|
60 |
-
lineWidth: 2,
|
61 |
-
fill: false,
|
62 |
-
fillColor: null,
|
63 |
-
steps: false
|
64 |
-
},
|
65 |
-
bars: {
|
66 |
-
show: false,
|
67 |
-
lineWidth: 2,
|
68 |
-
barWidth: 1,
|
69 |
-
fill: true,
|
70 |
-
fillColor: null,
|
71 |
-
align: "left",
|
72 |
-
horizontal: false
|
73 |
-
},
|
74 |
-
shadowSize: 3
|
75 |
-
},
|
76 |
-
grid: {
|
77 |
-
show: true,
|
78 |
-
aboveData: false,
|
79 |
-
color: "#545454",
|
80 |
-
backgroundColor: null,
|
81 |
-
borderColor: null,
|
82 |
-
tickColor: null,
|
83 |
-
labelMargin: 5,
|
84 |
-
axisMargin: 8,
|
85 |
-
borderWidth: 2,
|
86 |
-
minBorderMargin: null,
|
87 |
-
markings: null,
|
88 |
-
markingsColor: "#f4f4f4",
|
89 |
-
markingsLineWidth: 2,
|
90 |
-
clickable: false,
|
91 |
-
hoverable: false,
|
92 |
-
autoHighlight: true,
|
93 |
-
mouseActiveRadius: 10
|
94 |
-
},
|
95 |
-
interaction: {
|
96 |
-
redrawOverlayInterval: 1000/60
|
97 |
-
},
|
98 |
-
hooks: {}
|
99 |
-
},
|
100 |
-
canvas = null,
|
101 |
-
overlay = null,
|
102 |
-
eventHolder = null,
|
103 |
-
ctx = null, octx = null,
|
104 |
-
xaxes = [], yaxes = [],
|
105 |
-
plotOffset = { left: 0, right: 0, top: 0, bottom: 0},
|
106 |
-
canvasWidth = 0, canvasHeight = 0,
|
107 |
-
plotWidth = 0, plotHeight = 0,
|
108 |
-
hooks = {
|
109 |
-
processOptions: [],
|
110 |
-
processRawData: [],
|
111 |
-
processDatapoints: [],
|
112 |
-
drawSeries: [],
|
113 |
-
draw: [],
|
114 |
-
bindEvents: [],
|
115 |
-
drawOverlay: [],
|
116 |
-
shutdown: []
|
117 |
-
},
|
118 |
-
plot = this;
|
119 |
-
plot.setData = setData;
|
120 |
-
plot.setupGrid = setupGrid;
|
121 |
-
plot.draw = draw;
|
122 |
-
plot.getPlaceholder = function() { return placeholder; };
|
123 |
-
plot.getCanvas = function() { return canvas; };
|
124 |
-
plot.getPlotOffset = function() { return plotOffset; };
|
125 |
-
plot.width = function () { return plotWidth; };
|
126 |
-
plot.height = function () { return plotHeight; };
|
127 |
-
plot.offset = function () {
|
128 |
-
var o = eventHolder.offset();
|
129 |
-
o.left += plotOffset.left;
|
130 |
-
o.top += plotOffset.top;
|
131 |
-
return o;
|
132 |
-
};
|
133 |
-
plot.getData = function () { return series; };
|
134 |
-
plot.getAxes = function () {
|
135 |
-
var res = {}, i;
|
136 |
-
$.each(xaxes.concat(yaxes), function (_, axis) {
|
137 |
-
if (axis)
|
138 |
-
res[axis.direction + (axis.n != 1 ? axis.n : "") + "axis"] = axis;
|
139 |
-
});
|
140 |
-
return res;
|
141 |
-
};
|
142 |
-
plot.getXAxes = function () { return xaxes; };
|
143 |
-
plot.getYAxes = function () { return yaxes; };
|
144 |
-
plot.c2p = canvasToAxisCoords;
|
145 |
-
plot.p2c = axisToCanvasCoords;
|
146 |
-
plot.getOptions = function () { return options; };
|
147 |
-
plot.highlight = highlight;
|
148 |
-
plot.unhighlight = unhighlight;
|
149 |
-
plot.triggerRedrawOverlay = triggerRedrawOverlay;
|
150 |
-
plot.pointOffset = function(point) {
|
151 |
-
return {
|
152 |
-
left: parseInt(xaxes[axisNumber(point, "x") - 1].p2c(+point.x) + plotOffset.left),
|
153 |
-
top: parseInt(yaxes[axisNumber(point, "y") - 1].p2c(+point.y) + plotOffset.top)
|
154 |
-
};
|
155 |
-
};
|
156 |
-
plot.shutdown = shutdown;
|
157 |
-
plot.resize = function () {
|
158 |
-
getCanvasDimensions();
|
159 |
-
resizeCanvas(canvas);
|
160 |
-
resizeCanvas(overlay);
|
161 |
-
};
|
162 |
-
plot.hooks = hooks;
|
163 |
-
initPlugins(plot);
|
164 |
-
parseOptions(options_);
|
165 |
-
setupCanvases();
|
166 |
-
setData(data_);
|
167 |
-
setupGrid();
|
168 |
-
draw();
|
169 |
-
bindEvents();
|
170 |
-
function executeHooks(hook, args) {
|
171 |
-
args = [plot].concat(args);
|
172 |
-
for (var i = 0; i < hook.length; ++i)
|
173 |
-
hook[i].apply(this, args);
|
174 |
-
}
|
175 |
-
function initPlugins() {
|
176 |
-
for (var i = 0; i < plugins.length; ++i) {
|
177 |
-
var p = plugins[i];
|
178 |
-
p.init(plot);
|
179 |
-
if (p.options)
|
180 |
-
$.extend(true, options, p.options);
|
181 |
-
}
|
182 |
-
}
|
183 |
-
function parseOptions(opts) {
|
184 |
-
var i;
|
185 |
-
$.extend(true, options, opts);
|
186 |
-
if (options.xaxis.color == null)
|
187 |
-
options.xaxis.color = options.grid.color;
|
188 |
-
if (options.yaxis.color == null)
|
189 |
-
options.yaxis.color = options.grid.color;
|
190 |
-
if (options.xaxis.tickColor == null)
|
191 |
-
options.xaxis.tickColor = options.grid.tickColor;
|
192 |
-
if (options.yaxis.tickColor == null)
|
193 |
-
options.yaxis.tickColor = options.grid.tickColor;
|
194 |
-
if (options.grid.borderColor == null)
|
195 |
-
options.grid.borderColor = options.grid.color;
|
196 |
-
if (options.grid.tickColor == null)
|
197 |
-
options.grid.tickColor = $.color.parse(options.grid.color).scale('a', 0.22).toString();
|
198 |
-
for (i = 0; i < Math.max(1, options.xaxes.length); ++i)
|
199 |
-
options.xaxes[i] = $.extend(true, {}, options.xaxis, options.xaxes[i]);
|
200 |
-
for (i = 0; i < Math.max(1, options.yaxes.length); ++i)
|
201 |
-
options.yaxes[i] = $.extend(true, {}, options.yaxis, options.yaxes[i]);
|
202 |
-
if (options.xaxis.noTicks && options.xaxis.ticks == null)
|
203 |
-
options.xaxis.ticks = options.xaxis.noTicks;
|
204 |
-
if (options.yaxis.noTicks && options.yaxis.ticks == null)
|
205 |
-
options.yaxis.ticks = options.yaxis.noTicks;
|
206 |
-
if (options.x2axis) {
|
207 |
-
options.xaxes[1] = $.extend(true, {}, options.xaxis, options.x2axis);
|
208 |
-
options.xaxes[1].position = "top";
|
209 |
-
}
|
210 |
-
if (options.y2axis) {
|
211 |
-
options.yaxes[1] = $.extend(true, {}, options.yaxis, options.y2axis);
|
212 |
-
options.yaxes[1].position = "right";
|
213 |
-
}
|
214 |
-
if (options.grid.coloredAreas)
|
215 |
-
options.grid.markings = options.grid.coloredAreas;
|
216 |
-
if (options.grid.coloredAreasColor)
|
217 |
-
options.grid.markingsColor = options.grid.coloredAreasColor;
|
218 |
-
if (options.lines)
|
219 |
-
$.extend(true, options.series.lines, options.lines);
|
220 |
-
if (options.points)
|
221 |
-
$.extend(true, options.series.points, options.points);
|
222 |
-
if (options.bars)
|
223 |
-
$.extend(true, options.series.bars, options.bars);
|
224 |
-
if (options.shadowSize != null)
|
225 |
-
options.series.shadowSize = options.shadowSize;
|
226 |
-
for (i = 0; i < options.xaxes.length; ++i)
|
227 |
-
getOrCreateAxis(xaxes, i + 1).options = options.xaxes[i];
|
228 |
-
for (i = 0; i < options.yaxes.length; ++i)
|
229 |
-
getOrCreateAxis(yaxes, i + 1).options = options.yaxes[i];
|
230 |
-
for (var n in hooks)
|
231 |
-
if (options.hooks[n] && options.hooks[n].length)
|
232 |
-
hooks[n] = hooks[n].concat(options.hooks[n]);
|
233 |
-
executeHooks(hooks.processOptions, [options]);
|
234 |
-
}
|
235 |
-
function setData(d) {
|
236 |
-
series = parseData(d);
|
237 |
-
fillInSeriesOptions();
|
238 |
-
processData();
|
239 |
-
}
|
240 |
-
function parseData(d) {
|
241 |
-
var res = [];
|
242 |
-
for (var i = 0; i < d.length; ++i) {
|
243 |
-
var s = $.extend(true, {}, options.series);
|
244 |
-
if (d[i].data != null) {
|
245 |
-
s.data = d[i].data;
|
246 |
-
delete d[i].data;
|
247 |
-
$.extend(true, s, d[i]);
|
248 |
-
d[i].data = s.data;
|
249 |
-
}
|
250 |
-
else
|
251 |
-
s.data = d[i];
|
252 |
-
res.push(s);
|
253 |
-
}
|
254 |
-
return res;
|
255 |
-
}
|
256 |
-
function axisNumber(obj, coord) {
|
257 |
-
var a = obj[coord + "axis"];
|
258 |
-
if (typeof a == "object")
|
259 |
-
a = a.n;
|
260 |
-
if (typeof a != "number")
|
261 |
-
a = 1;
|
262 |
-
return a;
|
263 |
-
}
|
264 |
-
function allAxes() {
|
265 |
-
return $.grep(xaxes.concat(yaxes), function (a) { return a; });
|
266 |
-
}
|
267 |
-
function canvasToAxisCoords(pos) {
|
268 |
-
var res = {}, i, axis;
|
269 |
-
for (i = 0; i < xaxes.length; ++i) {
|
270 |
-
axis = xaxes[i];
|
271 |
-
if (axis && axis.used)
|
272 |
-
res["x" + axis.n] = axis.c2p(pos.left);
|
273 |
-
}
|
274 |
-
for (i = 0; i < yaxes.length; ++i) {
|
275 |
-
axis = yaxes[i];
|
276 |
-
if (axis && axis.used)
|
277 |
-
res["y" + axis.n] = axis.c2p(pos.top);
|
278 |
-
}
|
279 |
-
if (res.x1 !== undefined)
|
280 |
-
res.x = res.x1;
|
281 |
-
if (res.y1 !== undefined)
|
282 |
-
res.y = res.y1;
|
283 |
-
return res;
|
284 |
-
}
|
285 |
-
function axisToCanvasCoords(pos) {
|
286 |
-
var res = {}, i, axis, key;
|
287 |
-
for (i = 0; i < xaxes.length; ++i) {
|
288 |
-
axis = xaxes[i];
|
289 |
-
if (axis && axis.used) {
|
290 |
-
key = "x" + axis.n;
|
291 |
-
if (pos[key] == null && axis.n == 1)
|
292 |
-
key = "x";
|
293 |
-
if (pos[key] != null) {
|
294 |
-
res.left = axis.p2c(pos[key]);
|
295 |
-
break;
|
296 |
-
}
|
297 |
-
}
|
298 |
-
}
|
299 |
-
for (i = 0; i < yaxes.length; ++i) {
|
300 |
-
axis = yaxes[i];
|
301 |
-
if (axis && axis.used) {
|
302 |
-
key = "y" + axis.n;
|
303 |
-
if (pos[key] == null && axis.n == 1)
|
304 |
-
key = "y";
|
305 |
-
if (pos[key] != null) {
|
306 |
-
res.top = axis.p2c(pos[key]);
|
307 |
-
break;
|
308 |
-
}
|
309 |
-
}
|
310 |
-
}
|
311 |
-
return res;
|
312 |
-
}
|
313 |
-
function getOrCreateAxis(axes, number) {
|
314 |
-
if (!axes[number - 1])
|
315 |
-
axes[number - 1] = {
|
316 |
-
n: number,
|
317 |
-
direction: axes == xaxes ? "x" : "y",
|
318 |
-
options: $.extend(true, {}, axes == xaxes ? options.xaxis : options.yaxis)
|
319 |
-
};
|
320 |
-
return axes[number - 1];
|
321 |
-
}
|
322 |
-
function fillInSeriesOptions() {
|
323 |
-
var i;
|
324 |
-
var neededColors = series.length,
|
325 |
-
usedColors = [],
|
326 |
-
assignedColors = [];
|
327 |
-
for (i = 0; i < series.length; ++i) {
|
328 |
-
var sc = series[i].color;
|
329 |
-
if (sc != null) {
|
330 |
-
--neededColors;
|
331 |
-
if (typeof sc == "number")
|
332 |
-
assignedColors.push(sc);
|
333 |
-
else
|
334 |
-
usedColors.push($.color.parse(series[i].color));
|
335 |
-
}
|
336 |
-
}
|
337 |
-
for (i = 0; i < assignedColors.length; ++i) {
|
338 |
-
neededColors = Math.max(neededColors, assignedColors[i] + 1);
|
339 |
-
}
|
340 |
-
var colors = [], variation = 0;
|
341 |
-
i = 0;
|
342 |
-
while (colors.length < neededColors) {
|
343 |
-
var c;
|
344 |
-
if (options.colors.length == i)
|
345 |
-
c = $.color.make(100, 100, 100);
|
346 |
-
else
|
347 |
-
c = $.color.parse(options.colors[i]);
|
348 |
-
var sign = variation % 2 == 1 ? -1 : 1;
|
349 |
-
c.scale('rgb', 1 + sign * Math.ceil(variation / 2) * 0.2)
|
350 |
-
colors.push(c);
|
351 |
-
++i;
|
352 |
-
if (i >= options.colors.length) {
|
353 |
-
i = 0;
|
354 |
-
++variation;
|
355 |
-
}
|
356 |
-
}
|
357 |
-
var colori = 0, s;
|
358 |
-
for (i = 0; i < series.length; ++i) {
|
359 |
-
s = series[i];
|
360 |
-
if (s.color == null) {
|
361 |
-
s.color = colors[colori].toString();
|
362 |
-
++colori;
|
363 |
-
}
|
364 |
-
else if (typeof s.color == "number")
|
365 |
-
s.color = colors[s.color].toString();
|
366 |
-
if (s.lines.show == null) {
|
367 |
-
var v, show = true;
|
368 |
-
for (v in s)
|
369 |
-
if (s[v] && s[v].show) {
|
370 |
-
show = false;
|
371 |
-
break;
|
372 |
-
}
|
373 |
-
if (show)
|
374 |
-
s.lines.show = true;
|
375 |
-
}
|
376 |
-
s.xaxis = getOrCreateAxis(xaxes, axisNumber(s, "x"));
|
377 |
-
s.yaxis = getOrCreateAxis(yaxes, axisNumber(s, "y"));
|
378 |
-
}
|
379 |
-
}
|
380 |
-
function processData() {
|
381 |
-
var topSentry = Number.POSITIVE_INFINITY,
|
382 |
-
bottomSentry = Number.NEGATIVE_INFINITY,
|
383 |
-
fakeInfinity = Number.MAX_VALUE,
|
384 |
-
i, j, k, m, length,
|
385 |
-
s, points, ps, x, y, axis, val, f, p;
|
386 |
-
function updateAxis(axis, min, max) {
|
387 |
-
if (min < axis.datamin && min != -fakeInfinity)
|
388 |
-
axis.datamin = min;
|
389 |
-
if (max > axis.datamax && max != fakeInfinity)
|
390 |
-
axis.datamax = max;
|
391 |
-
}
|
392 |
-
$.each(allAxes(), function (_, axis) {
|
393 |
-
axis.datamin = topSentry;
|
394 |
-
axis.datamax = bottomSentry;
|
395 |
-
axis.used = false;
|
396 |
-
});
|
397 |
-
for (i = 0; i < series.length; ++i) {
|
398 |
-
s = series[i];
|
399 |
-
s.datapoints = { points: [] };
|
400 |
-
executeHooks(hooks.processRawData, [ s, s.data, s.datapoints ]);
|
401 |
-
}
|
402 |
-
for (i = 0; i < series.length; ++i) {
|
403 |
-
s = series[i];
|
404 |
-
var data = s.data, format = s.datapoints.format;
|
405 |
-
if (!format) {
|
406 |
-
format = [];
|
407 |
-
format.push({ x: true, number: true, required: true });
|
408 |
-
format.push({ y: true, number: true, required: true });
|
409 |
-
if (s.bars.show || (s.lines.show && s.lines.fill)) {
|
410 |
-
format.push({ y: true, number: true, required: false, defaultValue: 0 });
|
411 |
-
if (s.bars.horizontal) {
|
412 |
-
delete format[format.length - 1].y;
|
413 |
-
format[format.length - 1].x = true;
|
414 |
-
}
|
415 |
-
}
|
416 |
-
s.datapoints.format = format;
|
417 |
-
}
|
418 |
-
if (s.datapoints.pointsize != null)
|
419 |
-
continue;
|
420 |
-
s.datapoints.pointsize = format.length;
|
421 |
-
ps = s.datapoints.pointsize;
|
422 |
-
points = s.datapoints.points;
|
423 |
-
insertSteps = s.lines.show && s.lines.steps;
|
424 |
-
s.xaxis.used = s.yaxis.used = true;
|
425 |
-
for (j = k = 0; j < data.length; ++j, k += ps) {
|
426 |
-
p = data[j];
|
427 |
-
var nullify = p == null;
|
428 |
-
if (!nullify) {
|
429 |
-
for (m = 0; m < ps; ++m) {
|
430 |
-
val = p[m];
|
431 |
-
f = format[m];
|
432 |
-
if (f) {
|
433 |
-
if (f.number && val != null) {
|
434 |
-
val = +val;
|
435 |
-
if (isNaN(val))
|
436 |
-
val = null;
|
437 |
-
else if (val == Infinity)
|
438 |
-
val = fakeInfinity;
|
439 |
-
else if (val == -Infinity)
|
440 |
-
val = -fakeInfinity;
|
441 |
-
}
|
442 |
-
if (val == null) {
|
443 |
-
if (f.required)
|
444 |
-
nullify = true;
|
445 |
-
if (f.defaultValue != null)
|
446 |
-
val = f.defaultValue;
|
447 |
-
}
|
448 |
-
}
|
449 |
-
points[k + m] = val;
|
450 |
-
}
|
451 |
-
}
|
452 |
-
if (nullify) {
|
453 |
-
for (m = 0; m < ps; ++m) {
|
454 |
-
val = points[k + m];
|
455 |
-
if (val != null) {
|
456 |
-
f = format[m];
|
457 |
-
if (f.x)
|
458 |
-
updateAxis(s.xaxis, val, val);
|
459 |
-
if (f.y)
|
460 |
-
updateAxis(s.yaxis, val, val);
|
461 |
-
}
|
462 |
-
points[k + m] = null;
|
463 |
-
}
|
464 |
-
}
|
465 |
-
else {
|
466 |
-
if (insertSteps && k > 0
|
467 |
-
&& points[k - ps] != null
|
468 |
-
&& points[k - ps] != points[k]
|
469 |
-
&& points[k - ps + 1] != points[k + 1]) {
|
470 |
-
for (m = 0; m < ps; ++m)
|
471 |
-
points[k + ps + m] = points[k + m];
|
472 |
-
points[k + 1] = points[k - ps + 1];
|
473 |
-
k += ps;
|
474 |
-
}
|
475 |
-
}
|
476 |
-
}
|
477 |
-
}
|
478 |
-
for (i = 0; i < series.length; ++i) {
|
479 |
-
s = series[i];
|
480 |
-
executeHooks(hooks.processDatapoints, [ s, s.datapoints]);
|
481 |
-
}
|
482 |
-
for (i = 0; i < series.length; ++i) {
|
483 |
-
s = series[i];
|
484 |
-
points = s.datapoints.points,
|
485 |
-
ps = s.datapoints.pointsize;
|
486 |
-
var xmin = topSentry, ymin = topSentry,
|
487 |
-
xmax = bottomSentry, ymax = bottomSentry;
|
488 |
-
for (j = 0; j < points.length; j += ps) {
|
489 |
-
if (points[j] == null)
|
490 |
-
continue;
|
491 |
-
for (m = 0; m < ps; ++m) {
|
492 |
-
val = points[j + m];
|
493 |
-
f = format[m];
|
494 |
-
if (!f || val == fakeInfinity || val == -fakeInfinity)
|
495 |
-
continue;
|
496 |
-
if (f.x) {
|
497 |
-
if (val < xmin)
|
498 |
-
xmin = val;
|
499 |
-
if (val > xmax)
|
500 |
-
xmax = val;
|
501 |
-
}
|
502 |
-
if (f.y) {
|
503 |
-
if (val < ymin)
|
504 |
-
ymin = val;
|
505 |
-
if (val > ymax)
|
506 |
-
ymax = val;
|
507 |
-
}
|
508 |
-
}
|
509 |
-
}
|
510 |
-
if (s.bars.show) {
|
511 |
-
var delta = s.bars.align == "left" ? 0 : -s.bars.barWidth/2;
|
512 |
-
if (s.bars.horizontal) {
|
513 |
-
ymin += delta;
|
514 |
-
ymax += delta + s.bars.barWidth;
|
515 |
-
}
|
516 |
-
else {
|
517 |
-
xmin += delta;
|
518 |
-
xmax += delta + s.bars.barWidth;
|
519 |
-
}
|
520 |
-
}
|
521 |
-
updateAxis(s.xaxis, xmin, xmax);
|
522 |
-
updateAxis(s.yaxis, ymin, ymax);
|
523 |
-
}
|
524 |
-
$.each(allAxes(), function (_, axis) {
|
525 |
-
if (axis.datamin == topSentry)
|
526 |
-
axis.datamin = null;
|
527 |
-
if (axis.datamax == bottomSentry)
|
528 |
-
axis.datamax = null;
|
529 |
-
});
|
530 |
-
}
|
531 |
-
function makeCanvas(skipPositioning, cls) {
|
532 |
-
var c = document.createElement('canvas');
|
533 |
-
c.className = cls;
|
534 |
-
c.width = canvasWidth;
|
535 |
-
c.height = canvasHeight;
|
536 |
-
if (!skipPositioning)
|
537 |
-
$(c).css({ position: 'absolute', left: 0, top: 0 });
|
538 |
-
$(c).appendTo(placeholder);
|
539 |
-
if (!c.getContext)
|
540 |
-
c = window.G_vmlCanvasManager.initElement(c);
|
541 |
-
c.getContext("2d").save();
|
542 |
-
return c;
|
543 |
-
}
|
544 |
-
function getCanvasDimensions() {
|
545 |
-
canvasWidth = placeholder.width();
|
546 |
-
canvasHeight = placeholder.height();
|
547 |
-
if (canvasWidth <= 0 || canvasHeight <= 0)
|
548 |
-
throw "Invalid dimensions for plot, width = " + canvasWidth + ", height = " + canvasHeight;
|
549 |
-
}
|
550 |
-
function resizeCanvas(c) {
|
551 |
-
if (c.width != canvasWidth)
|
552 |
-
c.width = canvasWidth;
|
553 |
-
if (c.height != canvasHeight)
|
554 |
-
c.height = canvasHeight;
|
555 |
-
var cctx = c.getContext("2d");
|
556 |
-
cctx.restore();
|
557 |
-
cctx.save();
|
558 |
-
}
|
559 |
-
function setupCanvases() {
|
560 |
-
var reused,
|
561 |
-
existingCanvas = placeholder.children("canvas.base"),
|
562 |
-
existingOverlay = placeholder.children("canvas.overlay");
|
563 |
-
if (existingCanvas.length == 0 || existingOverlay == 0) {
|
564 |
-
placeholder.html("");
|
565 |
-
placeholder.css({ padding: 0 });
|
566 |
-
if (placeholder.css("position") == 'static')
|
567 |
-
placeholder.css("position", "relative");
|
568 |
-
getCanvasDimensions();
|
569 |
-
canvas = makeCanvas(true, "base");
|
570 |
-
overlay = makeCanvas(false, "overlay");
|
571 |
-
reused = false;
|
572 |
-
}
|
573 |
-
else {
|
574 |
-
canvas = existingCanvas.get(0);
|
575 |
-
overlay = existingOverlay.get(0);
|
576 |
-
reused = true;
|
577 |
-
}
|
578 |
-
ctx = canvas.getContext("2d");
|
579 |
-
octx = overlay.getContext("2d");
|
580 |
-
eventHolder = $(overlay);
|
581 |
-
if (reused) {
|
582 |
-
placeholder.data("plot").shutdown();
|
583 |
-
plot.resize();
|
584 |
-
octx.clearRect(0, 0, canvasWidth, canvasHeight);
|
585 |
-
eventHolder.unbind();
|
586 |
-
placeholder.children().not([canvas, overlay]).remove();
|
587 |
-
}
|
588 |
-
placeholder.data("plot", plot);
|
589 |
-
}
|
590 |
-
function bindEvents() {
|
591 |
-
if (options.grid.hoverable) {
|
592 |
-
eventHolder.mousemove(onMouseMove);
|
593 |
-
eventHolder.mouseleave(onMouseLeave);
|
594 |
-
}
|
595 |
-
if (options.grid.clickable)
|
596 |
-
eventHolder.click(onClick);
|
597 |
-
executeHooks(hooks.bindEvents, [eventHolder]);
|
598 |
-
}
|
599 |
-
function shutdown() {
|
600 |
-
if (redrawTimeout)
|
601 |
-
clearTimeout(redrawTimeout);
|
602 |
-
eventHolder.unbind("mousemove", onMouseMove);
|
603 |
-
eventHolder.unbind("mouseleave", onMouseLeave);
|
604 |
-
eventHolder.unbind("click", onClick);
|
605 |
-
executeHooks(hooks.shutdown, [eventHolder]);
|
606 |
-
}
|
607 |
-
function setTransformationHelpers(axis) {
|
608 |
-
function identity(x) { return x; }
|
609 |
-
var s, m, t = axis.options.transform || identity,
|
610 |
-
it = axis.options.inverseTransform;
|
611 |
-
if (axis.direction == "x") {
|
612 |
-
s = axis.scale = plotWidth / Math.abs(t(axis.max) - t(axis.min));
|
613 |
-
m = Math.min(t(axis.max), t(axis.min));
|
614 |
-
}
|
615 |
-
else {
|
616 |
-
s = axis.scale = plotHeight / Math.abs(t(axis.max) - t(axis.min));
|
617 |
-
s = -s;
|
618 |
-
m = Math.max(t(axis.max), t(axis.min));
|
619 |
-
}
|
620 |
-
if (t == identity)
|
621 |
-
axis.p2c = function (p) { return (p - m) * s; };
|
622 |
-
else
|
623 |
-
axis.p2c = function (p) { return (t(p) - m) * s; };
|
624 |
-
if (!it)
|
625 |
-
axis.c2p = function (c) { return m + c / s; };
|
626 |
-
else
|
627 |
-
axis.c2p = function (c) { return it(m + c / s); };
|
628 |
-
}
|
629 |
-
function measureTickLabels(axis) {
|
630 |
-
var opts = axis.options, ticks = axis.ticks || [],
|
631 |
-
axisw = opts.labelWidth || 0, axish = opts.labelHeight || 0,
|
632 |
-
f = axis.font;
|
633 |
-
if (opts.labelWidth == null || opts.labelHeight == null) {
|
634 |
-
ctx.save();
|
635 |
-
ctx.font = f.style + " " + f.variant + " " + f.weight + " " + f.size + "px '" + f.family + "'";
|
636 |
-
for (var i = 0; i < ticks.length; ++i) {
|
637 |
-
var t = ticks[i];
|
638 |
-
t.lines = [];
|
639 |
-
t.width = t.height = 0;
|
640 |
-
if (!t.label)
|
641 |
-
continue;
|
642 |
-
var lines = t.label.replace(/<br ?\/?>|\r\n|\r/g, "\n").split("\n");
|
643 |
-
for (var j = 0; j < lines.length; ++j) {
|
644 |
-
var line = { text: lines[j] },
|
645 |
-
m = ctx.measureText(line.text);
|
646 |
-
line.width = m.width;
|
647 |
-
line.height = m.height != null ? m.height : f.size;
|
648 |
-
line.height += Math.round(f.size * 0.15);
|
649 |
-
t.width = Math.max(line.width, t.width);
|
650 |
-
t.height += line.height;
|
651 |
-
t.lines.push(line);
|
652 |
-
}
|
653 |
-
if (opts.labelWidth == null)
|
654 |
-
axisw = Math.max(axisw, t.width);
|
655 |
-
if (opts.labelHeight == null)
|
656 |
-
axish = Math.max(axish, t.height);
|
657 |
-
}
|
658 |
-
ctx.restore();
|
659 |
-
}
|
660 |
-
axis.labelWidth = Math.ceil(axisw);
|
661 |
-
axis.labelHeight = Math.ceil(axish);
|
662 |
-
}
|
663 |
-
function allocateAxisBoxFirstPhase(axis) {
|
664 |
-
var lw = axis.labelWidth,
|
665 |
-
lh = axis.labelHeight,
|
666 |
-
pos = axis.options.position,
|
667 |
-
tickLength = axis.options.tickLength,
|
668 |
-
axisMargin = options.grid.axisMargin,
|
669 |
-
padding = options.grid.labelMargin,
|
670 |
-
all = axis.direction == "x" ? xaxes : yaxes,
|
671 |
-
index;
|
672 |
-
var samePosition = $.grep(all, function (a) {
|
673 |
-
return a && a.options.position == pos && a.reserveSpace;
|
674 |
-
});
|
675 |
-
if ($.inArray(axis, samePosition) == samePosition.length - 1)
|
676 |
-
axisMargin = 0;
|
677 |
-
if (tickLength == null) {
|
678 |
-
var sameDirection = $.grep(all, function (a) {
|
679 |
-
return a && a.reserveSpace;
|
680 |
-
});
|
681 |
-
var innermost = $.inArray(axis, sameDirection) == 0;
|
682 |
-
if (innermost)
|
683 |
-
tickLength = "full"
|
684 |
-
else
|
685 |
-
tickLength = 5;
|
686 |
-
}
|
687 |
-
if (!isNaN(+tickLength))
|
688 |
-
padding += +tickLength;
|
689 |
-
if (axis.direction == "x") {
|
690 |
-
lh += padding;
|
691 |
-
if (pos == "bottom") {
|
692 |
-
plotOffset.bottom += lh + axisMargin;
|
693 |
-
axis.box = { top: canvasHeight - plotOffset.bottom, height: lh };
|
694 |
-
}
|
695 |
-
else {
|
696 |
-
axis.box = { top: plotOffset.top + axisMargin, height: lh };
|
697 |
-
plotOffset.top += lh + axisMargin;
|
698 |
-
}
|
699 |
-
}
|
700 |
-
else {
|
701 |
-
lw += padding;
|
702 |
-
if (pos == "left") {
|
703 |
-
axis.box = { left: plotOffset.left + axisMargin, width: lw };
|
704 |
-
plotOffset.left += lw + axisMargin;
|
705 |
-
}
|
706 |
-
else {
|
707 |
-
plotOffset.right += lw + axisMargin;
|
708 |
-
axis.box = { left: canvasWidth - plotOffset.right, width: lw };
|
709 |
-
}
|
710 |
-
}
|
711 |
-
axis.position = pos;
|
712 |
-
axis.tickLength = tickLength;
|
713 |
-
axis.box.padding = padding;
|
714 |
-
axis.innermost = innermost;
|
715 |
-
}
|
716 |
-
function allocateAxisBoxSecondPhase(axis) {
|
717 |
-
if (axis.direction == "x") {
|
718 |
-
axis.box.left = plotOffset.left - axis.labelWidth / 2;
|
719 |
-
axis.box.width = canvasWidth - plotOffset.left - plotOffset.right + axis.labelWidth;
|
720 |
-
}
|
721 |
-
else {
|
722 |
-
axis.box.top = plotOffset.top - axis.labelHeight / 2;
|
723 |
-
axis.box.height = canvasHeight - plotOffset.bottom - plotOffset.top + axis.labelHeight;
|
724 |
-
}
|
725 |
-
}
|
726 |
-
function adjustLayoutForThingsStickingOut() {
|
727 |
-
var minMargin = options.grid.minBorderMargin,
|
728 |
-
margins = { x: 0, y: 0 }, i, axis;
|
729 |
-
if (minMargin == null) {
|
730 |
-
minMargin = 0;
|
731 |
-
for (i = 0; i < series.length; ++i)
|
732 |
-
minMargin = Math.max(minMargin, 2 * (series[i].points.radius + series[i].points.lineWidth/2));
|
733 |
-
}
|
734 |
-
margins.x = margins.y = minMargin;
|
735 |
-
$.each(allAxes(), function (_, axis) {
|
736 |
-
var dir = axis.direction;
|
737 |
-
if (axis.reserveSpace)
|
738 |
-
margins[dir] = Math.max(margins[dir], (dir == "x" ? axis.labelWidth : axis.labelHeight) / 2);
|
739 |
-
});
|
740 |
-
plotOffset.left = Math.max(margins.x, plotOffset.left);
|
741 |
-
plotOffset.right = Math.max(margins.x, plotOffset.right);
|
742 |
-
plotOffset.top = Math.max(margins.y, plotOffset.top);
|
743 |
-
plotOffset.bottom = Math.max(margins.y, plotOffset.bottom);
|
744 |
-
}
|
745 |
-
function setupGrid() {
|
746 |
-
var i, axes = allAxes(), showGrid = options.grid.show;
|
747 |
-
for (var a in plotOffset)
|
748 |
-
plotOffset[a] = showGrid ? options.grid.borderWidth : 0;
|
749 |
-
$.each(axes, function (_, axis) {
|
750 |
-
axis.show = axis.options.show;
|
751 |
-
if (axis.show == null)
|
752 |
-
axis.show = axis.used;
|
753 |
-
axis.reserveSpace = axis.show || axis.options.reserveSpace;
|
754 |
-
setRange(axis);
|
755 |
-
});
|
756 |
-
if (showGrid) {
|
757 |
-
var fontDefaults = {
|
758 |
-
style: placeholder.css("font-style"),
|
759 |
-
size: Math.round(0.8 * (+placeholder.css("font-size").replace("px", "") || 13)),
|
760 |
-
variant: placeholder.css("font-variant"),
|
761 |
-
weight: placeholder.css("font-weight"),
|
762 |
-
family: placeholder.css("font-family")
|
763 |
-
};
|
764 |
-
var allocatedAxes = $.grep(axes, function (axis) { return axis.reserveSpace; });
|
765 |
-
$.each(allocatedAxes, function (_, axis) {
|
766 |
-
setupTickGeneration(axis);
|
767 |
-
setTicks(axis);
|
768 |
-
snapRangeToTicks(axis, axis.ticks);
|
769 |
-
axis.font = $.extend({}, fontDefaults, axis.options.font);
|
770 |
-
measureTickLabels(axis);
|
771 |
-
});
|
772 |
-
for (i = allocatedAxes.length - 1; i >= 0; --i)
|
773 |
-
allocateAxisBoxFirstPhase(allocatedAxes[i]);
|
774 |
-
adjustLayoutForThingsStickingOut();
|
775 |
-
$.each(allocatedAxes, function (_, axis) {
|
776 |
-
allocateAxisBoxSecondPhase(axis);
|
777 |
-
});
|
778 |
-
}
|
779 |
-
plotWidth = canvasWidth - plotOffset.left - plotOffset.right;
|
780 |
-
plotHeight = canvasHeight - plotOffset.bottom - plotOffset.top;
|
781 |
-
$.each(axes, function (_, axis) {
|
782 |
-
setTransformationHelpers(axis);
|
783 |
-
});
|
784 |
-
insertLegend();
|
785 |
-
}
|
786 |
-
function setRange(axis) {
|
787 |
-
var opts = axis.options,
|
788 |
-
min = +(opts.min != null ? opts.min : axis.datamin),
|
789 |
-
max = +(opts.max != null ? opts.max : axis.datamax),
|
790 |
-
delta = max - min;
|
791 |
-
if (delta == 0.0) {
|
792 |
-
var widen = max == 0 ? 1 : 0.01;
|
793 |
-
if (opts.min == null)
|
794 |
-
min -= widen;
|
795 |
-
if (opts.max == null || opts.min != null)
|
796 |
-
max += widen;
|
797 |
-
}
|
798 |
-
else {
|
799 |
-
var margin = opts.autoscaleMargin;
|
800 |
-
if (margin != null) {
|
801 |
-
if (opts.min == null) {
|
802 |
-
min -= delta * margin;
|
803 |
-
if (min < 0 && axis.datamin != null && axis.datamin >= 0)
|
804 |
-
min = 0;
|
805 |
-
}
|
806 |
-
if (opts.max == null) {
|
807 |
-
max += delta * margin;
|
808 |
-
if (max > 0 && axis.datamax != null && axis.datamax <= 0)
|
809 |
-
max = 0;
|
810 |
-
}
|
811 |
-
}
|
812 |
-
}
|
813 |
-
axis.min = min;
|
814 |
-
axis.max = max;
|
815 |
-
}
|
816 |
-
function setupTickGeneration(axis) {
|
817 |
-
var opts = axis.options;
|
818 |
-
var noTicks;
|
819 |
-
if (typeof opts.ticks == "number" && opts.ticks > 0)
|
820 |
-
noTicks = opts.ticks;
|
821 |
-
else
|
822 |
-
noTicks = 0.3 * Math.sqrt(axis.direction == "x" ? canvasWidth : canvasHeight);
|
823 |
-
var delta = (axis.max - axis.min) / noTicks,
|
824 |
-
size, generator, unit, formatter, i, magn, norm;
|
825 |
-
if (opts.mode == "time") {
|
826 |
-
var timeUnitSize = {
|
827 |
-
"second": 1000,
|
828 |
-
"minute": 60 * 1000,
|
829 |
-
"hour": 60 * 60 * 1000,
|
830 |
-
"day": 24 * 60 * 60 * 1000,
|
831 |
-
"month": 30 * 24 * 60 * 60 * 1000,
|
832 |
-
"year": 365.2425 * 24 * 60 * 60 * 1000
|
833 |
-
};
|
834 |
-
var spec = [
|
835 |
-
[1, "second"], [2, "second"], [5, "second"], [10, "second"],
|
836 |
-
[30, "second"],
|
837 |
-
[1, "minute"], [2, "minute"], [5, "minute"], [10, "minute"],
|
838 |
-
[30, "minute"],
|
839 |
-
[1, "hour"], [2, "hour"], [4, "hour"],
|
840 |
-
[8, "hour"], [12, "hour"],
|
841 |
-
[1, "day"], [2, "day"], [3, "day"],
|
842 |
-
[0.25, "month"], [0.5, "month"], [1, "month"],
|
843 |
-
[2, "month"], [3, "month"], [6, "month"],
|
844 |
-
[1, "year"]
|
845 |
-
];
|
846 |
-
var minSize = 0;
|
847 |
-
if (opts.minTickSize != null) {
|
848 |
-
if (typeof opts.tickSize == "number")
|
849 |
-
minSize = opts.tickSize;
|
850 |
-
else
|
851 |
-
minSize = opts.minTickSize[0] * timeUnitSize[opts.minTickSize[1]];
|
852 |
-
}
|
853 |
-
for (var i = 0; i < spec.length - 1; ++i)
|
854 |
-
if (delta < (spec[i][0] * timeUnitSize[spec[i][1]]
|
855 |
-
+ spec[i + 1][0] * timeUnitSize[spec[i + 1][1]]) / 2
|
856 |
-
&& spec[i][0] * timeUnitSize[spec[i][1]] >= minSize)
|
857 |
-
break;
|
858 |
-
size = spec[i][0];
|
859 |
-
unit = spec[i][1];
|
860 |
-
if (unit == "year") {
|
861 |
-
magn = Math.pow(10, Math.floor(Math.log(delta / timeUnitSize.year) / Math.LN10));
|
862 |
-
norm = (delta / timeUnitSize.year) / magn;
|
863 |
-
if (norm < 1.5)
|
864 |
-
size = 1;
|
865 |
-
else if (norm < 3)
|
866 |
-
size = 2;
|
867 |
-
else if (norm < 7.5)
|
868 |
-
size = 5;
|
869 |
-
else
|
870 |
-
size = 10;
|
871 |
-
size *= magn;
|
872 |
-
}
|
873 |
-
axis.tickSize = opts.tickSize || [size, unit];
|
874 |
-
generator = function(axis) {
|
875 |
-
var ticks = [],
|
876 |
-
tickSize = axis.tickSize[0], unit = axis.tickSize[1],
|
877 |
-
d = new Date(axis.min);
|
878 |
-
var step = tickSize * timeUnitSize[unit];
|
879 |
-
if (unit == "second")
|
880 |
-
d.setUTCSeconds(floorInBase(d.getUTCSeconds(), tickSize));
|
881 |
-
if (unit == "minute")
|
882 |
-
d.setUTCMinutes(floorInBase(d.getUTCMinutes(), tickSize));
|
883 |
-
if (unit == "hour")
|
884 |
-
d.setUTCHours(floorInBase(d.getUTCHours(), tickSize));
|
885 |
-
if (unit == "month")
|
886 |
-
d.setUTCMonth(floorInBase(d.getUTCMonth(), tickSize));
|
887 |
-
if (unit == "year")
|
888 |
-
d.setUTCFullYear(floorInBase(d.getUTCFullYear(), tickSize));
|
889 |
-
d.setUTCMilliseconds(0);
|
890 |
-
if (step >= timeUnitSize.minute)
|
891 |
-
d.setUTCSeconds(0);
|
892 |
-
if (step >= timeUnitSize.hour)
|
893 |
-
d.setUTCMinutes(0);
|
894 |
-
if (step >= timeUnitSize.day)
|
895 |
-
d.setUTCHours(0);
|
896 |
-
if (step >= timeUnitSize.day * 4)
|
897 |
-
d.setUTCDate(1);
|
898 |
-
if (step >= timeUnitSize.year)
|
899 |
-
d.setUTCMonth(0);
|
900 |
-
var carry = 0, v = Number.NaN, prev;
|
901 |
-
do {
|
902 |
-
prev = v;
|
903 |
-
v = d.getTime();
|
904 |
-
ticks.push(v);
|
905 |
-
if (unit == "month") {
|
906 |
-
if (tickSize < 1) {
|
907 |
-
d.setUTCDate(1);
|
908 |
-
var start = d.getTime();
|
909 |
-
d.setUTCMonth(d.getUTCMonth() + 1);
|
910 |
-
var end = d.getTime();
|
911 |
-
d.setTime(v + carry * timeUnitSize.hour + (end - start) * tickSize);
|
912 |
-
carry = d.getUTCHours();
|
913 |
-
d.setUTCHours(0);
|
914 |
-
}
|
915 |
-
else
|
916 |
-
d.setUTCMonth(d.getUTCMonth() + tickSize);
|
917 |
-
}
|
918 |
-
else if (unit == "year") {
|
919 |
-
d.setUTCFullYear(d.getUTCFullYear() + tickSize);
|
920 |
-
}
|
921 |
-
else
|
922 |
-
d.setTime(v + step);
|
923 |
-
} while (v < axis.max && v != prev);
|
924 |
-
return ticks;
|
925 |
-
};
|
926 |
-
formatter = function (v, axis) {
|
927 |
-
var d = new Date(v);
|
928 |
-
if (opts.timeformat != null)
|
929 |
-
return $.plot.formatDate(d, opts.timeformat, opts.monthNames);
|
930 |
-
var t = axis.tickSize[0] * timeUnitSize[axis.tickSize[1]];
|
931 |
-
var span = axis.max - axis.min;
|
932 |
-
var suffix = (opts.twelveHourClock) ? " %p" : "";
|
933 |
-
if (t < timeUnitSize.minute)
|
934 |
-
fmt = "%h:%M:%S" + suffix;
|
935 |
-
else if (t < timeUnitSize.day) {
|
936 |
-
if (span < 2 * timeUnitSize.day)
|
937 |
-
fmt = "%h:%M" + suffix;
|
938 |
-
else
|
939 |
-
fmt = "%b %d %h:%M" + suffix;
|
940 |
-
}
|
941 |
-
else if (t < timeUnitSize.month)
|
942 |
-
fmt = "%b %d";
|
943 |
-
else if (t < timeUnitSize.year) {
|
944 |
-
if (span < timeUnitSize.year)
|
945 |
-
fmt = "%b";
|
946 |
-
else
|
947 |
-
fmt = "%b %y";
|
948 |
-
}
|
949 |
-
else
|
950 |
-
fmt = "%y";
|
951 |
-
return $.plot.formatDate(d, fmt, opts.monthNames);
|
952 |
-
};
|
953 |
-
}
|
954 |
-
else {
|
955 |
-
var maxDec = opts.tickDecimals;
|
956 |
-
var dec = -Math.floor(Math.log(delta) / Math.LN10);
|
957 |
-
if (maxDec != null && dec > maxDec)
|
958 |
-
dec = maxDec;
|
959 |
-
magn = Math.pow(10, -dec);
|
960 |
-
norm = delta / magn;
|
961 |
-
if (norm < 1.5)
|
962 |
-
size = 1;
|
963 |
-
else if (norm < 3) {
|
964 |
-
size = 2;
|
965 |
-
if (norm > 2.25 && (maxDec == null || dec + 1 <= maxDec)) {
|
966 |
-
size = 2.5;
|
967 |
-
++dec;
|
968 |
-
}
|
969 |
-
}
|
970 |
-
else if (norm < 7.5)
|
971 |
-
size = 5;
|
972 |
-
else
|
973 |
-
size = 10;
|
974 |
-
size *= magn;
|
975 |
-
if (opts.minTickSize != null && size < opts.minTickSize)
|
976 |
-
size = opts.minTickSize;
|
977 |
-
axis.tickDecimals = Math.max(0, maxDec != null ? maxDec : dec);
|
978 |
-
axis.tickSize = opts.tickSize || size;
|
979 |
-
generator = function (axis) {
|
980 |
-
var ticks = [];
|
981 |
-
var start = floorInBase(axis.min, axis.tickSize),
|
982 |
-
i = 0, v = Number.NaN, prev;
|
983 |
-
do {
|
984 |
-
prev = v;
|
985 |
-
v = start + i * axis.tickSize;
|
986 |
-
ticks.push(v);
|
987 |
-
++i;
|
988 |
-
} while (v < axis.max && v != prev);
|
989 |
-
return ticks;
|
990 |
-
};
|
991 |
-
formatter = function (v, axis) {
|
992 |
-
return v.toFixed(axis.tickDecimals);
|
993 |
-
};
|
994 |
-
}
|
995 |
-
if (opts.alignTicksWithAxis != null) {
|
996 |
-
var otherAxis = (axis.direction == "x" ? xaxes : yaxes)[opts.alignTicksWithAxis - 1];
|
997 |
-
if (otherAxis && otherAxis.used && otherAxis != axis) {
|
998 |
-
var niceTicks = generator(axis);
|
999 |
-
if (niceTicks.length > 0) {
|
1000 |
-
if (opts.min == null)
|
1001 |
-
axis.min = Math.min(axis.min, niceTicks[0]);
|
1002 |
-
if (opts.max == null && niceTicks.length > 1)
|
1003 |
-
axis.max = Math.max(axis.max, niceTicks[niceTicks.length - 1]);
|
1004 |
-
}
|
1005 |
-
generator = function (axis) {
|
1006 |
-
var ticks = [], v, i;
|
1007 |
-
for (i = 0; i < otherAxis.ticks.length; ++i) {
|
1008 |
-
v = (otherAxis.ticks[i].v - otherAxis.min) / (otherAxis.max - otherAxis.min);
|
1009 |
-
v = axis.min + v * (axis.max - axis.min);
|
1010 |
-
ticks.push(v);
|
1011 |
-
}
|
1012 |
-
return ticks;
|
1013 |
-
};
|
1014 |
-
if (axis.mode != "time" && opts.tickDecimals == null) {
|
1015 |
-
var extraDec = Math.max(0, -Math.floor(Math.log(delta) / Math.LN10) + 1),
|
1016 |
-
ts = generator(axis);
|
1017 |
-
if (!(ts.length > 1 && /\..*0$/.test((ts[1] - ts[0]).toFixed(extraDec))))
|
1018 |
-
axis.tickDecimals = extraDec;
|
1019 |
-
}
|
1020 |
-
}
|
1021 |
-
}
|
1022 |
-
axis.tickGenerator = generator;
|
1023 |
-
if ($.isFunction(opts.tickFormatter))
|
1024 |
-
axis.tickFormatter = function (v, axis) { return "" + opts.tickFormatter(v, axis); };
|
1025 |
-
else
|
1026 |
-
axis.tickFormatter = formatter;
|
1027 |
-
}
|
1028 |
-
function setTicks(axis) {
|
1029 |
-
var oticks = axis.options.ticks, ticks = [];
|
1030 |
-
if (oticks == null || (typeof oticks == "number" && oticks > 0))
|
1031 |
-
ticks = axis.tickGenerator(axis);
|
1032 |
-
else if (oticks) {
|
1033 |
-
if ($.isFunction(oticks))
|
1034 |
-
ticks = oticks({ min: axis.min, max: axis.max });
|
1035 |
-
else
|
1036 |
-
ticks = oticks;
|
1037 |
-
}
|
1038 |
-
var i, v;
|
1039 |
-
axis.ticks = [];
|
1040 |
-
for (i = 0; i < ticks.length; ++i) {
|
1041 |
-
var label = null;
|
1042 |
-
var t = ticks[i];
|
1043 |
-
if (typeof t == "object") {
|
1044 |
-
v = +t[0];
|
1045 |
-
if (t.length > 1)
|
1046 |
-
label = t[1];
|
1047 |
-
}
|
1048 |
-
else
|
1049 |
-
v = +t;
|
1050 |
-
if (label == null)
|
1051 |
-
label = axis.tickFormatter(v, axis);
|
1052 |
-
if (!isNaN(v))
|
1053 |
-
axis.ticks.push({ v: v, label: label });
|
1054 |
-
}
|
1055 |
-
}
|
1056 |
-
function snapRangeToTicks(axis, ticks) {
|
1057 |
-
if (axis.options.autoscaleMargin && ticks.length > 0) {
|
1058 |
-
if (axis.options.min == null)
|
1059 |
-
axis.min = Math.min(axis.min, ticks[0].v);
|
1060 |
-
if (axis.options.max == null && ticks.length > 1)
|
1061 |
-
axis.max = Math.max(axis.max, ticks[ticks.length - 1].v);
|
1062 |
-
}
|
1063 |
-
}
|
1064 |
-
function draw() {
|
1065 |
-
ctx.clearRect(0, 0, canvasWidth, canvasHeight);
|
1066 |
-
var grid = options.grid;
|
1067 |
-
if (grid.show && grid.backgroundColor)
|
1068 |
-
drawBackground();
|
1069 |
-
if (grid.show && !grid.aboveData) {
|
1070 |
-
drawGrid();
|
1071 |
-
drawAxisLabels();
|
1072 |
-
}
|
1073 |
-
for (var i = 0; i < series.length; ++i) {
|
1074 |
-
executeHooks(hooks.drawSeries, [ctx, series[i]]);
|
1075 |
-
drawSeries(series[i]);
|
1076 |
-
}
|
1077 |
-
executeHooks(hooks.draw, [ctx]);
|
1078 |
-
if (grid.show && grid.aboveData) {
|
1079 |
-
drawGrid();
|
1080 |
-
drawAxisLabels();
|
1081 |
-
}
|
1082 |
-
}
|
1083 |
-
function extractRange(ranges, coord) {
|
1084 |
-
var axis, from, to, key, axes = allAxes();
|
1085 |
-
for (i = 0; i < axes.length; ++i) {
|
1086 |
-
axis = axes[i];
|
1087 |
-
if (axis.direction == coord) {
|
1088 |
-
key = coord + axis.n + "axis";
|
1089 |
-
if (!ranges[key] && axis.n == 1)
|
1090 |
-
key = coord + "axis";
|
1091 |
-
if (ranges[key]) {
|
1092 |
-
from = ranges[key].from;
|
1093 |
-
to = ranges[key].to;
|
1094 |
-
break;
|
1095 |
-
}
|
1096 |
-
}
|
1097 |
-
}
|
1098 |
-
if (!ranges[key]) {
|
1099 |
-
axis = coord == "x" ? xaxes[0] : yaxes[0];
|
1100 |
-
from = ranges[coord + "1"];
|
1101 |
-
to = ranges[coord + "2"];
|
1102 |
-
}
|
1103 |
-
if (from != null && to != null && from > to) {
|
1104 |
-
var tmp = from;
|
1105 |
-
from = to;
|
1106 |
-
to = tmp;
|
1107 |
-
}
|
1108 |
-
return { from: from, to: to, axis: axis };
|
1109 |
-
}
|
1110 |
-
function drawBackground() {
|
1111 |
-
ctx.save();
|
1112 |
-
ctx.translate(plotOffset.left, plotOffset.top);
|
1113 |
-
ctx.fillStyle = getColorOrGradient(options.grid.backgroundColor, plotHeight, 0, "rgba(255, 255, 255, 0)");
|
1114 |
-
ctx.fillRect(0, 0, plotWidth, plotHeight);
|
1115 |
-
ctx.restore();
|
1116 |
-
}
|
1117 |
-
function drawGrid() {
|
1118 |
-
var i;
|
1119 |
-
ctx.save();
|
1120 |
-
ctx.translate(plotOffset.left, plotOffset.top);
|
1121 |
-
var markings = options.grid.markings;
|
1122 |
-
if (markings) {
|
1123 |
-
if ($.isFunction(markings)) {
|
1124 |
-
var axes = plot.getAxes();
|
1125 |
-
axes.xmin = axes.xaxis.min;
|
1126 |
-
axes.xmax = axes.xaxis.max;
|
1127 |
-
axes.ymin = axes.yaxis.min;
|
1128 |
-
axes.ymax = axes.yaxis.max;
|
1129 |
-
markings = markings(axes);
|
1130 |
-
}
|
1131 |
-
for (i = 0; i < markings.length; ++i) {
|
1132 |
-
var m = markings[i],
|
1133 |
-
xrange = extractRange(m, "x"),
|
1134 |
-
yrange = extractRange(m, "y");
|
1135 |
-
if (xrange.from == null)
|
1136 |
-
xrange.from = xrange.axis.min;
|
1137 |
-
if (xrange.to == null)
|
1138 |
-
xrange.to = xrange.axis.max;
|
1139 |
-
if (yrange.from == null)
|
1140 |
-
yrange.from = yrange.axis.min;
|
1141 |
-
if (yrange.to == null)
|
1142 |
-
yrange.to = yrange.axis.max;
|
1143 |
-
if (xrange.to < xrange.axis.min || xrange.from > xrange.axis.max ||
|
1144 |
-
yrange.to < yrange.axis.min || yrange.from > yrange.axis.max)
|
1145 |
-
continue;
|
1146 |
-
xrange.from = Math.max(xrange.from, xrange.axis.min);
|
1147 |
-
xrange.to = Math.min(xrange.to, xrange.axis.max);
|
1148 |
-
yrange.from = Math.max(yrange.from, yrange.axis.min);
|
1149 |
-
yrange.to = Math.min(yrange.to, yrange.axis.max);
|
1150 |
-
if (xrange.from == xrange.to && yrange.from == yrange.to)
|
1151 |
-
continue;
|
1152 |
-
xrange.from = xrange.axis.p2c(xrange.from);
|
1153 |
-
xrange.to = xrange.axis.p2c(xrange.to);
|
1154 |
-
yrange.from = yrange.axis.p2c(yrange.from);
|
1155 |
-
yrange.to = yrange.axis.p2c(yrange.to);
|
1156 |
-
if (xrange.from == xrange.to || yrange.from == yrange.to) {
|
1157 |
-
ctx.beginPath();
|
1158 |
-
ctx.strokeStyle = m.color || options.grid.markingsColor;
|
1159 |
-
ctx.lineWidth = m.lineWidth || options.grid.markingsLineWidth;
|
1160 |
-
ctx.moveTo(xrange.from, yrange.from);
|
1161 |
-
ctx.lineTo(xrange.to, yrange.to);
|
1162 |
-
ctx.stroke();
|
1163 |
-
}
|
1164 |
-
else {
|
1165 |
-
ctx.fillStyle = m.color || options.grid.markingsColor;
|
1166 |
-
ctx.fillRect(xrange.from, yrange.to,
|
1167 |
-
xrange.to - xrange.from,
|
1168 |
-
yrange.from - yrange.to);
|
1169 |
-
}
|
1170 |
-
}
|
1171 |
-
}
|
1172 |
-
var axes = allAxes(), bw = options.grid.borderWidth;
|
1173 |
-
for (var j = 0; j < axes.length; ++j) {
|
1174 |
-
var axis = axes[j], box = axis.box,
|
1175 |
-
t = axis.tickLength, x, y, xoff, yoff;
|
1176 |
-
if (!axis.show || axis.ticks.length == 0)
|
1177 |
-
continue;
|
1178 |
-
ctx.strokeStyle = axis.options.tickColor || $.color.parse(axis.options.color).scale('a', 0.22).toString();
|
1179 |
-
ctx.lineWidth = 1;
|
1180 |
-
if (axis.direction == "x") {
|
1181 |
-
x = 0;
|
1182 |
-
if (t == "full")
|
1183 |
-
y = (axis.position == "top" ? 0 : plotHeight);
|
1184 |
-
else
|
1185 |
-
y = box.top - plotOffset.top + (axis.position == "top" ? box.height : 0);
|
1186 |
-
}
|
1187 |
-
else {
|
1188 |
-
y = 0;
|
1189 |
-
if (t == "full")
|
1190 |
-
x = (axis.position == "left" ? 0 : plotWidth);
|
1191 |
-
else
|
1192 |
-
x = box.left - plotOffset.left + (axis.position == "left" ? box.width : 0);
|
1193 |
-
}
|
1194 |
-
if (!axis.innermost) {
|
1195 |
-
ctx.beginPath();
|
1196 |
-
xoff = yoff = 0;
|
1197 |
-
if (axis.direction == "x")
|
1198 |
-
xoff = plotWidth;
|
1199 |
-
else
|
1200 |
-
yoff = plotHeight;
|
1201 |
-
if (ctx.lineWidth == 1) {
|
1202 |
-
x = Math.floor(x) + 0.5;
|
1203 |
-
y = Math.floor(y) + 0.5;
|
1204 |
-
}
|
1205 |
-
ctx.moveTo(x, y);
|
1206 |
-
ctx.lineTo(x + xoff, y + yoff);
|
1207 |
-
ctx.stroke();
|
1208 |
-
}
|
1209 |
-
ctx.beginPath();
|
1210 |
-
for (i = 0; i < axis.ticks.length; ++i) {
|
1211 |
-
var v = axis.ticks[i].v;
|
1212 |
-
xoff = yoff = 0;
|
1213 |
-
if (v < axis.min || v > axis.max
|
1214 |
-
|| (t == "full" && bw > 0
|
1215 |
-
&& (v == axis.min || v == axis.max)))
|
1216 |
-
continue;
|
1217 |
-
if (axis.direction == "x") {
|
1218 |
-
x = axis.p2c(v);
|
1219 |
-
yoff = t == "full" ? -plotHeight : t;
|
1220 |
-
if (axis.position == "top")
|
1221 |
-
yoff = -yoff;
|
1222 |
-
}
|
1223 |
-
else {
|
1224 |
-
y = axis.p2c(v);
|
1225 |
-
xoff = t == "full" ? -plotWidth : t;
|
1226 |
-
if (axis.position == "left")
|
1227 |
-
xoff = -xoff;
|
1228 |
-
}
|
1229 |
-
if (ctx.lineWidth == 1) {
|
1230 |
-
if (axis.direction == "x")
|
1231 |
-
x = Math.floor(x) + 0.5;
|
1232 |
-
else
|
1233 |
-
y = Math.floor(y) + 0.5;
|
1234 |
-
}
|
1235 |
-
ctx.moveTo(x, y);
|
1236 |
-
ctx.lineTo(x + xoff, y + yoff);
|
1237 |
-
}
|
1238 |
-
ctx.stroke();
|
1239 |
-
}
|
1240 |
-
if (bw) {
|
1241 |
-
ctx.lineWidth = bw;
|
1242 |
-
ctx.strokeStyle = options.grid.borderColor;
|
1243 |
-
ctx.strokeRect(-bw/2, -bw/2, plotWidth + bw, plotHeight + bw);
|
1244 |
-
}
|
1245 |
-
ctx.restore();
|
1246 |
-
}
|
1247 |
-
function drawAxisLabels() {
|
1248 |
-
ctx.save();
|
1249 |
-
$.each(allAxes(), function (_, axis) {
|
1250 |
-
if (!axis.show || axis.ticks.length == 0)
|
1251 |
-
return;
|
1252 |
-
var box = axis.box, f = axis.font;
|
1253 |
-
ctx.fillStyle = axis.options.color;
|
1254 |
-
ctx.font = f.style + " " + f.variant + " " + f.weight + " " + f.size + "px '" + f.family + "'";
|
1255 |
-
ctx.textAlign = "start";
|
1256 |
-
ctx.textBaseline = "middle";
|
1257 |
-
for (var i = 0; i < axis.ticks.length; ++i) {
|
1258 |
-
var tick = axis.ticks[i];
|
1259 |
-
if (!tick.label || tick.v < axis.min || tick.v > axis.max)
|
1260 |
-
continue;
|
1261 |
-
var x, y, offset = 0, line;
|
1262 |
-
for (var k = 0; k < tick.lines.length; ++k) {
|
1263 |
-
line = tick.lines[k];
|
1264 |
-
if (axis.direction == "x") {
|
1265 |
-
x = plotOffset.left + axis.p2c(tick.v) - line.width/2;
|
1266 |
-
if (axis.position == "bottom")
|
1267 |
-
y = box.top + box.padding;
|
1268 |
-
else
|
1269 |
-
y = box.top + box.height - box.padding - tick.height;
|
1270 |
-
}
|
1271 |
-
else {
|
1272 |
-
y = plotOffset.top + axis.p2c(tick.v) - tick.height/2;
|
1273 |
-
if (axis.position == "left")
|
1274 |
-
x = box.left + box.width - box.padding - line.width;
|
1275 |
-
else
|
1276 |
-
x = box.left + box.padding;
|
1277 |
-
}
|
1278 |
-
y += line.height/2 + offset;
|
1279 |
-
offset += line.height;
|
1280 |
-
if ($.browser.opera) {
|
1281 |
-
x = Math.floor(x);
|
1282 |
-
y = Math.ceil(y - 2);
|
1283 |
-
}
|
1284 |
-
ctx.fillText(line.text, x, y);
|
1285 |
-
}
|
1286 |
-
}
|
1287 |
-
});
|
1288 |
-
ctx.restore();
|
1289 |
-
}
|
1290 |
-
function drawSeries(series) {
|
1291 |
-
if (series.lines.show)
|
1292 |
-
drawSeriesLines(series);
|
1293 |
-
if (series.bars.show)
|
1294 |
-
drawSeriesBars(series);
|
1295 |
-
if (series.points.show)
|
1296 |
-
drawSeriesPoints(series);
|
1297 |
-
}
|
1298 |
-
function drawSeriesLines(series) {
|
1299 |
-
function plotLine(datapoints, xoffset, yoffset, axisx, axisy) {
|
1300 |
-
var points = datapoints.points,
|
1301 |
-
ps = datapoints.pointsize,
|
1302 |
-
prevx = null, prevy = null;
|
1303 |
-
ctx.beginPath();
|
1304 |
-
for (var i = ps; i < points.length; i += ps) {
|
1305 |
-
var x1 = points[i - ps], y1 = points[i - ps + 1],
|
1306 |
-
x2 = points[i], y2 = points[i + 1];
|
1307 |
-
if (x1 == null || x2 == null)
|
1308 |
-
continue;
|
1309 |
-
if (y1 <= y2 && y1 < axisy.min) {
|
1310 |
-
if (y2 < axisy.min)
|
1311 |
-
continue;
|
1312 |
-
x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1313 |
-
y1 = axisy.min;
|
1314 |
-
}
|
1315 |
-
else if (y2 <= y1 && y2 < axisy.min) {
|
1316 |
-
if (y1 < axisy.min)
|
1317 |
-
continue;
|
1318 |
-
x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1319 |
-
y2 = axisy.min;
|
1320 |
-
}
|
1321 |
-
if (y1 >= y2 && y1 > axisy.max) {
|
1322 |
-
if (y2 > axisy.max)
|
1323 |
-
continue;
|
1324 |
-
x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1325 |
-
y1 = axisy.max;
|
1326 |
-
}
|
1327 |
-
else if (y2 >= y1 && y2 > axisy.max) {
|
1328 |
-
if (y1 > axisy.max)
|
1329 |
-
continue;
|
1330 |
-
x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1331 |
-
y2 = axisy.max;
|
1332 |
-
}
|
1333 |
-
if (x1 <= x2 && x1 < axisx.min) {
|
1334 |
-
if (x2 < axisx.min)
|
1335 |
-
continue;
|
1336 |
-
y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1337 |
-
x1 = axisx.min;
|
1338 |
-
}
|
1339 |
-
else if (x2 <= x1 && x2 < axisx.min) {
|
1340 |
-
if (x1 < axisx.min)
|
1341 |
-
continue;
|
1342 |
-
y2 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1343 |
-
x2 = axisx.min;
|
1344 |
-
}
|
1345 |
-
if (x1 >= x2 && x1 > axisx.max) {
|
1346 |
-
if (x2 > axisx.max)
|
1347 |
-
continue;
|
1348 |
-
y1 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1349 |
-
x1 = axisx.max;
|
1350 |
-
}
|
1351 |
-
else if (x2 >= x1 && x2 > axisx.max) {
|
1352 |
-
if (x1 > axisx.max)
|
1353 |
-
continue;
|
1354 |
-
y2 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1355 |
-
x2 = axisx.max;
|
1356 |
-
}
|
1357 |
-
if (x1 != prevx || y1 != prevy)
|
1358 |
-
ctx.moveTo(axisx.p2c(x1) + xoffset, axisy.p2c(y1) + yoffset);
|
1359 |
-
prevx = x2;
|
1360 |
-
prevy = y2;
|
1361 |
-
ctx.lineTo(axisx.p2c(x2) + xoffset, axisy.p2c(y2) + yoffset);
|
1362 |
-
}
|
1363 |
-
ctx.stroke();
|
1364 |
-
}
|
1365 |
-
function plotLineArea(datapoints, axisx, axisy) {
|
1366 |
-
var points = datapoints.points,
|
1367 |
-
ps = datapoints.pointsize,
|
1368 |
-
bottom = Math.min(Math.max(0, axisy.min), axisy.max),
|
1369 |
-
i = 0, top, areaOpen = false,
|
1370 |
-
ypos = 1, segmentStart = 0, segmentEnd = 0;
|
1371 |
-
while (true) {
|
1372 |
-
if (ps > 0 && i > points.length + ps)
|
1373 |
-
break;
|
1374 |
-
i += ps;
|
1375 |
-
var x1 = points[i - ps],
|
1376 |
-
y1 = points[i - ps + ypos],
|
1377 |
-
x2 = points[i], y2 = points[i + ypos];
|
1378 |
-
if (areaOpen) {
|
1379 |
-
if (ps > 0 && x1 != null && x2 == null) {
|
1380 |
-
segmentEnd = i;
|
1381 |
-
ps = -ps;
|
1382 |
-
ypos = 2;
|
1383 |
-
continue;
|
1384 |
-
}
|
1385 |
-
if (ps < 0 && i == segmentStart + ps) {
|
1386 |
-
ctx.fill();
|
1387 |
-
areaOpen = false;
|
1388 |
-
ps = -ps;
|
1389 |
-
ypos = 1;
|
1390 |
-
i = segmentStart = segmentEnd + ps;
|
1391 |
-
continue;
|
1392 |
-
}
|
1393 |
-
}
|
1394 |
-
if (x1 == null || x2 == null)
|
1395 |
-
continue;
|
1396 |
-
if (x1 <= x2 && x1 < axisx.min) {
|
1397 |
-
if (x2 < axisx.min)
|
1398 |
-
continue;
|
1399 |
-
y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1400 |
-
x1 = axisx.min;
|
1401 |
-
}
|
1402 |
-
else if (x2 <= x1 && x2 < axisx.min) {
|
1403 |
-
if (x1 < axisx.min)
|
1404 |
-
continue;
|
1405 |
-
y2 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1406 |
-
x2 = axisx.min;
|
1407 |
-
}
|
1408 |
-
if (x1 >= x2 && x1 > axisx.max) {
|
1409 |
-
if (x2 > axisx.max)
|
1410 |
-
continue;
|
1411 |
-
y1 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1412 |
-
x1 = axisx.max;
|
1413 |
-
}
|
1414 |
-
else if (x2 >= x1 && x2 > axisx.max) {
|
1415 |
-
if (x1 > axisx.max)
|
1416 |
-
continue;
|
1417 |
-
y2 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;
|
1418 |
-
x2 = axisx.max;
|
1419 |
-
}
|
1420 |
-
if (!areaOpen) {
|
1421 |
-
ctx.beginPath();
|
1422 |
-
ctx.moveTo(axisx.p2c(x1), axisy.p2c(bottom));
|
1423 |
-
areaOpen = true;
|
1424 |
-
}
|
1425 |
-
if (y1 >= axisy.max && y2 >= axisy.max) {
|
1426 |
-
ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.max));
|
1427 |
-
ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.max));
|
1428 |
-
continue;
|
1429 |
-
}
|
1430 |
-
else if (y1 <= axisy.min && y2 <= axisy.min) {
|
1431 |
-
ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.min));
|
1432 |
-
ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.min));
|
1433 |
-
continue;
|
1434 |
-
}
|
1435 |
-
var x1old = x1, x2old = x2;
|
1436 |
-
if (y1 <= y2 && y1 < axisy.min && y2 >= axisy.min) {
|
1437 |
-
x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1438 |
-
y1 = axisy.min;
|
1439 |
-
}
|
1440 |
-
else if (y2 <= y1 && y2 < axisy.min && y1 >= axisy.min) {
|
1441 |
-
x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1442 |
-
y2 = axisy.min;
|
1443 |
-
}
|
1444 |
-
if (y1 >= y2 && y1 > axisy.max && y2 <= axisy.max) {
|
1445 |
-
x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1446 |
-
y1 = axisy.max;
|
1447 |
-
}
|
1448 |
-
else if (y2 >= y1 && y2 > axisy.max && y1 <= axisy.max) {
|
1449 |
-
x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;
|
1450 |
-
y2 = axisy.max;
|
1451 |
-
}
|
1452 |
-
if (x1 != x1old) {
|
1453 |
-
ctx.lineTo(axisx.p2c(x1old), axisy.p2c(y1));
|
1454 |
-
}
|
1455 |
-
ctx.lineTo(axisx.p2c(x1), axisy.p2c(y1));
|
1456 |
-
ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2));
|
1457 |
-
if (x2 != x2old) {
|
1458 |
-
ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2));
|
1459 |
-
ctx.lineTo(axisx.p2c(x2old), axisy.p2c(y2));
|
1460 |
-
}
|
1461 |
-
}
|
1462 |
-
}
|
1463 |
-
ctx.save();
|
1464 |
-
ctx.translate(plotOffset.left, plotOffset.top);
|
1465 |
-
ctx.lineJoin = "round";
|
1466 |
-
var lw = series.lines.lineWidth,
|
1467 |
-
sw = series.shadowSize;
|
1468 |
-
if (lw > 0 && sw > 0) {
|
1469 |
-
ctx.lineWidth = sw;
|
1470 |
-
ctx.strokeStyle = "rgba(0,0,0,0.1)";
|
1471 |
-
var angle = Math.PI/18;
|
1472 |
-
plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/2), Math.cos(angle) * (lw/2 + sw/2), series.xaxis, series.yaxis);
|
1473 |
-
ctx.lineWidth = sw/2;
|
1474 |
-
plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/4), Math.cos(angle) * (lw/2 + sw/4), series.xaxis, series.yaxis);
|
1475 |
-
}
|
1476 |
-
ctx.lineWidth = lw;
|
1477 |
-
ctx.strokeStyle = series.color;
|
1478 |
-
var fillStyle = getFillStyle(series.lines, series.color, 0, plotHeight);
|
1479 |
-
if (fillStyle) {
|
1480 |
-
ctx.fillStyle = fillStyle;
|
1481 |
-
plotLineArea(series.datapoints, series.xaxis, series.yaxis);
|
1482 |
-
}
|
1483 |
-
if (lw > 0)
|
1484 |
-
plotLine(series.datapoints, 0, 0, series.xaxis, series.yaxis);
|
1485 |
-
ctx.restore();
|
1486 |
-
}
|
1487 |
-
function drawSeriesPoints(series) {
|
1488 |
-
function plotPoints(datapoints, radius, fillStyle, offset, shadow, axisx, axisy, symbol) {
|
1489 |
-
var points = datapoints.points, ps = datapoints.pointsize;
|
1490 |
-
for (var i = 0; i < points.length; i += ps) {
|
1491 |
-
var x = points[i], y = points[i + 1];
|
1492 |
-
if (x == null || x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max)
|
1493 |
-
continue;
|
1494 |
-
ctx.beginPath();
|
1495 |
-
x = axisx.p2c(x);
|
1496 |
-
y = axisy.p2c(y) + offset;
|
1497 |
-
if (symbol == "circle")
|
1498 |
-
ctx.arc(x, y, radius, 0, shadow ? Math.PI : Math.PI * 2, false);
|
1499 |
-
else
|
1500 |
-
symbol(ctx, x, y, radius, shadow);
|
1501 |
-
ctx.closePath();
|
1502 |
-
if (fillStyle) {
|
1503 |
-
ctx.fillStyle = fillStyle;
|
1504 |
-
ctx.fill();
|
1505 |
-
}
|
1506 |
-
ctx.stroke();
|
1507 |
-
}
|
1508 |
-
}
|
1509 |
-
ctx.save();
|
1510 |
-
ctx.translate(plotOffset.left, plotOffset.top);
|
1511 |
-
var lw = series.points.lineWidth,
|
1512 |
-
sw = series.shadowSize,
|
1513 |
-
radius = series.points.radius,
|
1514 |
-
symbol = series.points.symbol;
|
1515 |
-
if (lw > 0 && sw > 0) {
|
1516 |
-
var w = sw / 2;
|
1517 |
-
ctx.lineWidth = w;
|
1518 |
-
ctx.strokeStyle = "rgba(0,0,0,0.1)";
|
1519 |
-
plotPoints(series.datapoints, radius, null, w + w/2, true,
|
1520 |
-
series.xaxis, series.yaxis, symbol);
|
1521 |
-
ctx.strokeStyle = "rgba(0,0,0,0.2)";
|
1522 |
-
plotPoints(series.datapoints, radius, null, w/2, true,
|
1523 |
-
series.xaxis, series.yaxis, symbol);
|
1524 |
-
}
|
1525 |
-
ctx.lineWidth = lw;
|
1526 |
-
ctx.strokeStyle = series.color;
|
1527 |
-
plotPoints(series.datapoints, radius,
|
1528 |
-
getFillStyle(series.points, series.color), 0, false,
|
1529 |
-
series.xaxis, series.yaxis, symbol);
|
1530 |
-
ctx.restore();
|
1531 |
-
}
|
1532 |
-
function drawBar(x, y, b, barLeft, barRight, offset, fillStyleCallback, axisx, axisy, c, horizontal, lineWidth) {
|
1533 |
-
var left, right, bottom, top,
|
1534 |
-
drawLeft, drawRight, drawTop, drawBottom,
|
1535 |
-
tmp;
|
1536 |
-
if (horizontal) {
|
1537 |
-
drawBottom = drawRight = drawTop = true;
|
1538 |
-
drawLeft = false;
|
1539 |
-
left = b;
|
1540 |
-
right = x;
|
1541 |
-
top = y + barLeft;
|
1542 |
-
bottom = y + barRight;
|
1543 |
-
if (right < left) {
|
1544 |
-
tmp = right;
|
1545 |
-
right = left;
|
1546 |
-
left = tmp;
|
1547 |
-
drawLeft = true;
|
1548 |
-
drawRight = false;
|
1549 |
-
}
|
1550 |
-
}
|
1551 |
-
else {
|
1552 |
-
drawLeft = drawRight = drawTop = true;
|
1553 |
-
drawBottom = false;
|
1554 |
-
left = x + barLeft;
|
1555 |
-
right = x + barRight;
|
1556 |
-
bottom = b;
|
1557 |
-
top = y;
|
1558 |
-
if (top < bottom) {
|
1559 |
-
tmp = top;
|
1560 |
-
top = bottom;
|
1561 |
-
bottom = tmp;
|
1562 |
-
drawBottom = true;
|
1563 |
-
drawTop = false;
|
1564 |
-
}
|
1565 |
-
}
|
1566 |
-
if (right < axisx.min || left > axisx.max ||
|
1567 |
-
top < axisy.min || bottom > axisy.max)
|
1568 |
-
return;
|
1569 |
-
if (left < axisx.min) {
|
1570 |
-
left = axisx.min;
|
1571 |
-
drawLeft = false;
|
1572 |
-
}
|
1573 |
-
if (right > axisx.max) {
|
1574 |
-
right = axisx.max;
|
1575 |
-
drawRight = false;
|
1576 |
-
}
|
1577 |
-
if (bottom < axisy.min) {
|
1578 |
-
bottom = axisy.min;
|
1579 |
-
drawBottom = false;
|
1580 |
-
}
|
1581 |
-
if (top > axisy.max) {
|
1582 |
-
top = axisy.max;
|
1583 |
-
drawTop = false;
|
1584 |
-
}
|
1585 |
-
left = axisx.p2c(left);
|
1586 |
-
bottom = axisy.p2c(bottom);
|
1587 |
-
right = axisx.p2c(right);
|
1588 |
-
top = axisy.p2c(top);
|
1589 |
-
if (fillStyleCallback) {
|
1590 |
-
c.beginPath();
|
1591 |
-
c.moveTo(left, bottom);
|
1592 |
-
c.lineTo(left, top);
|
1593 |
-
c.lineTo(right, top);
|
1594 |
-
c.lineTo(right, bottom);
|
1595 |
-
c.fillStyle = fillStyleCallback(bottom, top);
|
1596 |
-
c.fill();
|
1597 |
-
}
|
1598 |
-
if (lineWidth > 0 && (drawLeft || drawRight || drawTop || drawBottom)) {
|
1599 |
-
c.beginPath();
|
1600 |
-
c.moveTo(left, bottom + offset);
|
1601 |
-
if (drawLeft)
|
1602 |
-
c.lineTo(left, top + offset);
|
1603 |
-
else
|
1604 |
-
c.moveTo(left, top + offset);
|
1605 |
-
if (drawTop)
|
1606 |
-
c.lineTo(right, top + offset);
|
1607 |
-
else
|
1608 |
-
c.moveTo(right, top + offset);
|
1609 |
-
if (drawRight)
|
1610 |
-
c.lineTo(right, bottom + offset);
|
1611 |
-
else
|
1612 |
-
c.moveTo(right, bottom + offset);
|
1613 |
-
if (drawBottom)
|
1614 |
-
c.lineTo(left, bottom + offset);
|
1615 |
-
else
|
1616 |
-
c.moveTo(left, bottom + offset);
|
1617 |
-
c.stroke();
|
1618 |
-
}
|
1619 |
-
}
|
1620 |
-
function drawSeriesBars(series) {
|
1621 |
-
function plotBars(datapoints, barLeft, barRight, offset, fillStyleCallback, axisx, axisy) {
|
1622 |
-
var points = datapoints.points, ps = datapoints.pointsize;
|
1623 |
-
for (var i = 0; i < points.length; i += ps) {
|
1624 |
-
if (points[i] == null)
|
1625 |
-
continue;
|
1626 |
-
drawBar(points[i], points[i + 1], points[i + 2], barLeft, barRight, offset, fillStyleCallback, axisx, axisy, ctx, series.bars.horizontal, series.bars.lineWidth);
|
1627 |
-
}
|
1628 |
-
}
|
1629 |
-
ctx.save();
|
1630 |
-
ctx.translate(plotOffset.left, plotOffset.top);
|
1631 |
-
ctx.lineWidth = series.bars.lineWidth;
|
1632 |
-
ctx.strokeStyle = series.color;
|
1633 |
-
var barLeft = series.bars.align == "left" ? 0 : -series.bars.barWidth/2;
|
1634 |
-
var fillStyleCallback = series.bars.fill ? function (bottom, top) { return getFillStyle(series.bars, series.color, bottom, top); } : null;
|
1635 |
-
plotBars(series.datapoints, barLeft, barLeft + series.bars.barWidth, 0, fillStyleCallback, series.xaxis, series.yaxis);
|
1636 |
-
ctx.restore();
|
1637 |
-
}
|
1638 |
-
function getFillStyle(filloptions, seriesColor, bottom, top) {
|
1639 |
-
var fill = filloptions.fill;
|
1640 |
-
if (!fill)
|
1641 |
-
return null;
|
1642 |
-
if (filloptions.fillColor)
|
1643 |
-
return getColorOrGradient(filloptions.fillColor, bottom, top, seriesColor);
|
1644 |
-
var c = $.color.parse(seriesColor);
|
1645 |
-
c.a = typeof fill == "number" ? fill : 0.4;
|
1646 |
-
c.normalize();
|
1647 |
-
return c.toString();
|
1648 |
-
}
|
1649 |
-
function insertLegend() {
|
1650 |
-
placeholder.find(".legend").remove();
|
1651 |
-
if (!options.legend.show)
|
1652 |
-
return;
|
1653 |
-
var fragments = [], rowStarted = false,
|
1654 |
-
lf = options.legend.labelFormatter, s, label;
|
1655 |
-
for (var i = 0; i < series.length; ++i) {
|
1656 |
-
s = series[i];
|
1657 |
-
label = s.label;
|
1658 |
-
if (!label)
|
1659 |
-
continue;
|
1660 |
-
if (i % options.legend.noColumns == 0) {
|
1661 |
-
if (rowStarted)
|
1662 |
-
fragments.push('</tr>');
|
1663 |
-
fragments.push('<tr>');
|
1664 |
-
rowStarted = true;
|
1665 |
-
}
|
1666 |
-
if (lf)
|
1667 |
-
label = lf(label, s);
|
1668 |
-
fragments.push(
|
1669 |
-
'<td class="legendColorBox"><div style="border:1px solid ' + options.legend.labelBoxBorderColor + ';padding:1px"><div style="width:4px;height:0;border:5px solid ' + s.color + ';overflow:hidden"></div></div></td>' +
|
1670 |
-
'<td class="legendLabel">' + label + '</td>');
|
1671 |
-
}
|
1672 |
-
if (rowStarted)
|
1673 |
-
fragments.push('</tr>');
|
1674 |
-
if (fragments.length == 0)
|
1675 |
-
return;
|
1676 |
-
var table = '<table style="font-size:smaller;color:' + options.grid.color + '">' + fragments.join("") + '</table>';
|
1677 |
-
if (options.legend.container != null)
|
1678 |
-
$(options.legend.container).html(table);
|
1679 |
-
else {
|
1680 |
-
var pos = "",
|
1681 |
-
p = options.legend.position,
|
1682 |
-
m = options.legend.margin;
|
1683 |
-
if (m[0] == null)
|
1684 |
-
m = [m, m];
|
1685 |
-
if (p.charAt(0) == "n")
|
1686 |
-
pos += 'top:' + (m[1] + plotOffset.top) + 'px;';
|
1687 |
-
else if (p.charAt(0) == "s")
|
1688 |
-
pos += 'bottom:' + (m[1] + plotOffset.bottom) + 'px;';
|
1689 |
-
if (p.charAt(1) == "e")
|
1690 |
-
pos += 'right:' + (m[0] + plotOffset.right) + 'px;';
|
1691 |
-
else if (p.charAt(1) == "w")
|
1692 |
-
pos += 'left:' + (m[0] + plotOffset.left) + 'px;';
|
1693 |
-
var legend = $('<div class="legend">' + table.replace('style="', 'style="position:absolute;' + pos +';') + '</div>').appendTo(placeholder);
|
1694 |
-
if (options.legend.backgroundOpacity != 0.0) {
|
1695 |
-
var c = options.legend.backgroundColor;
|
1696 |
-
if (c == null) {
|
1697 |
-
c = options.grid.backgroundColor;
|
1698 |
-
if (c && typeof c == "string")
|
1699 |
-
c = $.color.parse(c);
|
1700 |
-
else
|
1701 |
-
c = $.color.extract(legend, 'background-color');
|
1702 |
-
c.a = 1;
|
1703 |
-
c = c.toString();
|
1704 |
-
}
|
1705 |
-
var div = legend.children();
|
1706 |
-
$('<div style="position:absolute;width:' + div.width() + 'px;height:' + div.height() + 'px;' + pos +'background-color:' + c + ';"> </div>').prependTo(legend).css('opacity', options.legend.backgroundOpacity);
|
1707 |
-
}
|
1708 |
-
}
|
1709 |
-
}
|
1710 |
-
var highlights = [],
|
1711 |
-
redrawTimeout = null;
|
1712 |
-
function findNearbyItem(mouseX, mouseY, seriesFilter) {
|
1713 |
-
var maxDistance = options.grid.mouseActiveRadius,
|
1714 |
-
smallestDistance = maxDistance * maxDistance + 1,
|
1715 |
-
item = null, foundPoint = false, i, j;
|
1716 |
-
for (i = series.length - 1; i >= 0; --i) {
|
1717 |
-
if (!seriesFilter(series[i]))
|
1718 |
-
continue;
|
1719 |
-
var s = series[i],
|
1720 |
-
axisx = s.xaxis,
|
1721 |
-
axisy = s.yaxis,
|
1722 |
-
points = s.datapoints.points,
|
1723 |
-
ps = s.datapoints.pointsize,
|
1724 |
-
mx = axisx.c2p(mouseX),
|
1725 |
-
my = axisy.c2p(mouseY),
|
1726 |
-
maxx = maxDistance / axisx.scale,
|
1727 |
-
maxy = maxDistance / axisy.scale;
|
1728 |
-
if (axisx.options.inverseTransform)
|
1729 |
-
maxx = Number.MAX_VALUE;
|
1730 |
-
if (axisy.options.inverseTransform)
|
1731 |
-
maxy = Number.MAX_VALUE;
|
1732 |
-
if (s.lines.show || s.points.show) {
|
1733 |
-
for (j = 0; j < points.length; j += ps) {
|
1734 |
-
var x = points[j], y = points[j + 1];
|
1735 |
-
if (x == null)
|
1736 |
-
continue;
|
1737 |
-
if (x - mx > maxx || x - mx < -maxx ||
|
1738 |
-
y - my > maxy || y - my < -maxy)
|
1739 |
-
continue;
|
1740 |
-
var dx = Math.abs(axisx.p2c(x) - mouseX),
|
1741 |
-
dy = Math.abs(axisy.p2c(y) - mouseY),
|
1742 |
-
dist = dx * dx + dy * dy;
|
1743 |
-
if (dist < smallestDistance) {
|
1744 |
-
smallestDistance = dist;
|
1745 |
-
item = [i, j / ps];
|
1746 |
-
}
|
1747 |
-
}
|
1748 |
-
}
|
1749 |
-
if (s.bars.show && !item) {
|
1750 |
-
var barLeft = s.bars.align == "left" ? 0 : -s.bars.barWidth/2,
|
1751 |
-
barRight = barLeft + s.bars.barWidth;
|
1752 |
-
for (j = 0; j < points.length; j += ps) {
|
1753 |
-
var x = points[j], y = points[j + 1], b = points[j + 2];
|
1754 |
-
if (x == null)
|
1755 |
-
continue;
|
1756 |
-
if (series[i].bars.horizontal ?
|
1757 |
-
(mx <= Math.max(b, x) && mx >= Math.min(b, x) &&
|
1758 |
-
my >= y + barLeft && my <= y + barRight) :
|
1759 |
-
(mx >= x + barLeft && mx <= x + barRight &&
|
1760 |
-
my >= Math.min(b, y) && my <= Math.max(b, y)))
|
1761 |
-
item = [i, j / ps];
|
1762 |
-
}
|
1763 |
-
}
|
1764 |
-
}
|
1765 |
-
if (item) {
|
1766 |
-
i = item[0];
|
1767 |
-
j = item[1];
|
1768 |
-
ps = series[i].datapoints.pointsize;
|
1769 |
-
return { datapoint: series[i].datapoints.points.slice(j * ps, (j + 1) * ps),
|
1770 |
-
dataIndex: j,
|
1771 |
-
series: series[i],
|
1772 |
-
seriesIndex: i };
|
1773 |
-
}
|
1774 |
-
return null;
|
1775 |
-
}
|
1776 |
-
function onMouseMove(e) {
|
1777 |
-
if (options.grid.hoverable)
|
1778 |
-
triggerClickHoverEvent("plothover", e,
|
1779 |
-
function (s) { return s["hoverable"] != false; });
|
1780 |
-
}
|
1781 |
-
function onMouseLeave(e) {
|
1782 |
-
if (options.grid.hoverable)
|
1783 |
-
triggerClickHoverEvent("plothover", e,
|
1784 |
-
function (s) { return false; });
|
1785 |
-
}
|
1786 |
-
function onClick(e) {
|
1787 |
-
triggerClickHoverEvent("plotclick", e,
|
1788 |
-
function (s) { return s["clickable"] != false; });
|
1789 |
-
}
|
1790 |
-
function triggerClickHoverEvent(eventname, event, seriesFilter) {
|
1791 |
-
var offset = eventHolder.offset(),
|
1792 |
-
canvasX = event.pageX - offset.left - plotOffset.left,
|
1793 |
-
canvasY = event.pageY - offset.top - plotOffset.top,
|
1794 |
-
pos = canvasToAxisCoords({ left: canvasX, top: canvasY });
|
1795 |
-
pos.pageX = event.pageX;
|
1796 |
-
pos.pageY = event.pageY;
|
1797 |
-
var item = findNearbyItem(canvasX, canvasY, seriesFilter);
|
1798 |
-
if (item) {
|
1799 |
-
item.pageX = parseInt(item.series.xaxis.p2c(item.datapoint[0]) + offset.left + plotOffset.left);
|
1800 |
-
item.pageY = parseInt(item.series.yaxis.p2c(item.datapoint[1]) + offset.top + plotOffset.top);
|
1801 |
-
}
|
1802 |
-
if (options.grid.autoHighlight) {
|
1803 |
-
for (var i = 0; i < highlights.length; ++i) {
|
1804 |
-
var h = highlights[i];
|
1805 |
-
if (h.auto == eventname &&
|
1806 |
-
!(item && h.series == item.series &&
|
1807 |
-
h.point[0] == item.datapoint[0] &&
|
1808 |
-
h.point[1] == item.datapoint[1]))
|
1809 |
-
unhighlight(h.series, h.point);
|
1810 |
-
}
|
1811 |
-
if (item)
|
1812 |
-
highlight(item.series, item.datapoint, eventname);
|
1813 |
-
}
|
1814 |
-
placeholder.trigger(eventname, [ pos, item ]);
|
1815 |
-
}
|
1816 |
-
function triggerRedrawOverlay() {
|
1817 |
-
var t = options.interaction.redrawOverlayInterval;
|
1818 |
-
if (t == -1) {
|
1819 |
-
drawOverlay();
|
1820 |
-
return;
|
1821 |
-
}
|
1822 |
-
if (!redrawTimeout)
|
1823 |
-
redrawTimeout = setTimeout(drawOverlay, t);
|
1824 |
-
}
|
1825 |
-
function drawOverlay() {
|
1826 |
-
redrawTimeout = null;
|
1827 |
-
octx.save();
|
1828 |
-
octx.clearRect(0, 0, canvasWidth, canvasHeight);
|
1829 |
-
octx.translate(plotOffset.left, plotOffset.top);
|
1830 |
-
var i, hi;
|
1831 |
-
for (i = 0; i < highlights.length; ++i) {
|
1832 |
-
hi = highlights[i];
|
1833 |
-
if (hi.series.bars.show)
|
1834 |
-
drawBarHighlight(hi.series, hi.point);
|
1835 |
-
else
|
1836 |
-
drawPointHighlight(hi.series, hi.point);
|
1837 |
-
}
|
1838 |
-
octx.restore();
|
1839 |
-
executeHooks(hooks.drawOverlay, [octx]);
|
1840 |
-
}
|
1841 |
-
function highlight(s, point, auto) {
|
1842 |
-
if (typeof s == "number")
|
1843 |
-
s = series[s];
|
1844 |
-
if (typeof point == "number") {
|
1845 |
-
var ps = s.datapoints.pointsize;
|
1846 |
-
point = s.datapoints.points.slice(ps * point, ps * (point + 1));
|
1847 |
-
}
|
1848 |
-
var i = indexOfHighlight(s, point);
|
1849 |
-
if (i == -1) {
|
1850 |
-
highlights.push({ series: s, point: point, auto: auto });
|
1851 |
-
triggerRedrawOverlay();
|
1852 |
-
}
|
1853 |
-
else if (!auto)
|
1854 |
-
highlights[i].auto = false;
|
1855 |
-
}
|
1856 |
-
function unhighlight(s, point) {
|
1857 |
-
if (s == null && point == null) {
|
1858 |
-
highlights = [];
|
1859 |
-
triggerRedrawOverlay();
|
1860 |
-
}
|
1861 |
-
if (typeof s == "number")
|
1862 |
-
s = series[s];
|
1863 |
-
if (typeof point == "number")
|
1864 |
-
point = s.data[point];
|
1865 |
-
var i = indexOfHighlight(s, point);
|
1866 |
-
if (i != -1) {
|
1867 |
-
highlights.splice(i, 1);
|
1868 |
-
triggerRedrawOverlay();
|
1869 |
-
}
|
1870 |
-
}
|
1871 |
-
function indexOfHighlight(s, p) {
|
1872 |
-
for (var i = 0; i < highlights.length; ++i) {
|
1873 |
-
var h = highlights[i];
|
1874 |
-
if (h.series == s && h.point[0] == p[0]
|
1875 |
-
&& h.point[1] == p[1])
|
1876 |
-
return i;
|
1877 |
-
}
|
1878 |
-
return -1;
|
1879 |
-
}
|
1880 |
-
function drawPointHighlight(series, point) {
|
1881 |
-
var x = point[0], y = point[1],
|
1882 |
-
axisx = series.xaxis, axisy = series.yaxis;
|
1883 |
-
if (x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max)
|
1884 |
-
return;
|
1885 |
-
var pointRadius = series.points.radius + series.points.lineWidth / 2;
|
1886 |
-
octx.lineWidth = pointRadius;
|
1887 |
-
octx.strokeStyle = $.color.parse(series.color).scale('a', 0.5).toString();
|
1888 |
-
var radius = 1.5 * pointRadius,
|
1889 |
-
x = axisx.p2c(x),
|
1890 |
-
y = axisy.p2c(y);
|
1891 |
-
octx.beginPath();
|
1892 |
-
if (series.points.symbol == "circle")
|
1893 |
-
octx.arc(x, y, radius, 0, 2 * Math.PI, false);
|
1894 |
-
else
|
1895 |
-
series.points.symbol(octx, x, y, radius, false);
|
1896 |
-
octx.closePath();
|
1897 |
-
octx.stroke();
|
1898 |
-
}
|
1899 |
-
function drawBarHighlight(series, point) {
|
1900 |
-
octx.lineWidth = series.bars.lineWidth;
|
1901 |
-
octx.strokeStyle = $.color.parse(series.color).scale('a', 0.5).toString();
|
1902 |
-
var fillStyle = $.color.parse(series.color).scale('a', 0.5).toString();
|
1903 |
-
var barLeft = series.bars.align == "left" ? 0 : -series.bars.barWidth/2;
|
1904 |
-
drawBar(point[0], point[1], point[2] || 0, barLeft, barLeft + series.bars.barWidth,
|
1905 |
-
0, function () { return fillStyle; }, series.xaxis, series.yaxis, octx, series.bars.horizontal, series.bars.lineWidth);
|
1906 |
-
}
|
1907 |
-
function getColorOrGradient(spec, bottom, top, defaultColor) {
|
1908 |
-
if (typeof spec == "string")
|
1909 |
-
return spec;
|
1910 |
-
else {
|
1911 |
-
var gradient = ctx.createLinearGradient(0, top, 0, bottom);
|
1912 |
-
for (var i = 0, l = spec.colors.length; i < l; ++i) {
|
1913 |
-
var c = spec.colors[i];
|
1914 |
-
if (typeof c != "string") {
|
1915 |
-
var co = $.color.parse(defaultColor);
|
1916 |
-
if (c.brightness != null)
|
1917 |
-
co = co.scale('rgb', c.brightness)
|
1918 |
-
if (c.opacity != null)
|
1919 |
-
co.a *= c.opacity;
|
1920 |
-
c = co.toString();
|
1921 |
-
}
|
1922 |
-
gradient.addColorStop(i / (l - 1), c);
|
1923 |
-
}
|
1924 |
-
return gradient;
|
1925 |
-
}
|
1926 |
-
}
|
1927 |
-
}
|
1928 |
-
$.plot = function(placeholder, data, options) {
|
1929 |
-
var plot = new Plot($(placeholder), data, options, $.plot.plugins);
|
1930 |
-
return plot;
|
1931 |
-
};
|
1932 |
-
$.plot.version = "0.7";
|
1933 |
-
$.plot.plugins = [];
|
1934 |
-
$.plot.formatDate = function(d, fmt, monthNames) {
|
1935 |
-
var leftPad = function(n) {
|
1936 |
-
n = "" + n;
|
1937 |
-
return n.length == 1 ? "0" + n : n;
|
1938 |
-
};
|
1939 |
-
var r = [];
|
1940 |
-
var escape = false, padNext = false;
|
1941 |
-
var hours = d.getUTCHours();
|
1942 |
-
var isAM = hours < 12;
|
1943 |
-
if (monthNames == null)
|
1944 |
-
monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
|
1945 |
-
if (fmt.search(/%p|%P/) != -1) {
|
1946 |
-
if (hours > 12) {
|
1947 |
-
hours = hours - 12;
|
1948 |
-
} else if (hours == 0) {
|
1949 |
-
hours = 12;
|
1950 |
-
}
|
1951 |
-
}
|
1952 |
-
for (var i = 0; i < fmt.length; ++i) {
|
1953 |
-
var c = fmt.charAt(i);
|
1954 |
-
if (escape) {
|
1955 |
-
switch (c) {
|
1956 |
-
case 'h': c = "" + hours; break;
|
1957 |
-
case 'H': c = leftPad(hours); break;
|
1958 |
-
case 'M': c = leftPad(d.getUTCMinutes()); break;
|
1959 |
-
case 'S': c = leftPad(d.getUTCSeconds()); break;
|
1960 |
-
case 'd': c = "" + d.getUTCDate(); break;
|
1961 |
-
case 'm': c = "" + (d.getUTCMonth() + 1); break;
|
1962 |
-
case 'y': c = "" + d.getUTCFullYear(); break;
|
1963 |
-
case 'b': c = "" + monthNames[d.getUTCMonth()]; break;
|
1964 |
-
case 'p': c = (isAM) ? ("" + "am") : ("" + "pm"); break;
|
1965 |
-
case 'P': c = (isAM) ? ("" + "AM") : ("" + "PM"); break;
|
1966 |
-
case '0': c = ""; padNext = true; break;
|
1967 |
-
}
|
1968 |
-
if (c && padNext) {
|
1969 |
-
c = leftPad(c);
|
1970 |
-
padNext = false;
|
1971 |
-
}
|
1972 |
-
r.push(c);
|
1973 |
-
if (!padNext)
|
1974 |
-
escape = false;
|
1975 |
-
}
|
1976 |
-
else {
|
1977 |
-
if (c == "%")
|
1978 |
-
escape = true;
|
1979 |
-
else
|
1980 |
-
r.push(c);
|
1981 |
-
}
|
1982 |
-
}
|
1983 |
-
return r.join("");
|
1984 |
-
};
|
1985 |
-
function floorInBase(n, base) {
|
1986 |
-
return base * Math.floor(n / base);
|
1987 |
-
}
|
1988 |
-
})(jQuery);
|
1 |
+
(function(){jQuery.color={};jQuery.color.make=function(G,H,J,I){var A={};A.r=G||0;A.g=H||0;A.b=J||0;A.a=I!=null?I:1;A.add=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]+=D}return A.normalize()};A.scale=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]*=D}return A.normalize()};A.toString=function(){if(A.a>=1){return"rgb("+[A.r,A.g,A.b].join(",")+")"}else{return"rgba("+[A.r,A.g,A.b,A.a].join(",")+")"}};A.normalize=function(){function C(E,D,F){return D<E?E:(D>F?F:D)}A.r=C(0,parseInt(A.r),255);A.g=C(0,parseInt(A.g),255);A.b=C(0,parseInt(A.b),255);A.a=C(0,A.a,1);return A};A.clone=function(){return jQuery.color.make(A.r,A.b,A.g,A.a)};return A.normalize()};jQuery.color.extract=function(E,F){var A;do{A=E.css(F).toLowerCase();if(A!=""&&A!="transparent"){break}E=E.parent()}while(!jQuery.nodeName(E.get(0),"body"));if(A=="rgba(0, 0, 0, 0)"){A="transparent"}return jQuery.color.parse(A)};jQuery.color.parse=function(A){var F,H=jQuery.color.make;if(F=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10))}if(F=/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(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10),parseFloat(F[4]))}if(F=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(A)){return H(parseFloat(F[1])*2.55,parseFloat(F[2])*2.55,parseFloat(F[3])*2.55)}if(F=/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(A)){return H(parseFloat(F[1])*2.55,parseFloat(F[2])*2.55,parseFloat(F[3])*2.55,parseFloat(F[4]))}if(F=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(A)){return H(parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16))}if(F=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(A)){return H(parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16))}var G=jQuery.trim(A).toLowerCase();if(G=="transparent"){return H(255,255,255,0)}else{F=B[G];return H(F[0],F[1],F[2])}};var B={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]}})();(function(C){function B(l,W,X,E){var O=[],g={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:{mode:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,tickDecimals:null,tickSize:null,minTickSize:null,monthNames:null,timeformat:null,twelveHourClock:false},yaxis:{autoscaleMargin:0.02},x2axis:{autoscaleMargin:null},y2axis:{autoscaleMargin:0.02},series:{points:{show:false,radius:3,lineWidth:2,fill:true,fillColor:"#ffffff"},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,tickColor:"rgba(0,0,0,0.15)",labelMargin:5,borderWidth:2,borderColor:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:false,hoverable:false,autoHighlight:true,mouseActiveRadius:10},hooks:{}},P=null,AC=null,AD=null,Y=null,AJ=null,s={xaxis:{},yaxis:{},x2axis:{},y2axis:{}},e={left:0,right:0,top:0,bottom:0},y=0,Q=0,I=0,t=0,L={processOptions:[],processRawData:[],processDatapoints:[],draw:[],bindEvents:[],drawOverlay:[]},G=this;G.setData=f;G.setupGrid=k;G.draw=AH;G.getPlaceholder=function(){return l};G.getCanvas=function(){return P};G.getPlotOffset=function(){return e};G.width=function(){return I};G.height=function(){return t};G.offset=function(){var AK=AD.offset();AK.left+=e.left;AK.top+=e.top;return AK};G.getData=function(){return O};G.getAxes=function(){return s};G.getOptions=function(){return g};G.highlight=AE;G.unhighlight=x;G.triggerRedrawOverlay=q;G.pointOffset=function(AK){return{left:parseInt(T(AK,"xaxis").p2c(+AK.x)+e.left),top:parseInt(T(AK,"yaxis").p2c(+AK.y)+e.top)}};G.hooks=L;b(G);r(X);c();f(W);k();AH();AG();function Z(AM,AK){AK=[G].concat(AK);for(var AL=0;AL<AM.length;++AL){AM[AL].apply(this,AK)}}function b(){for(var AK=0;AK<E.length;++AK){var AL=E[AK];AL.init(G);if(AL.options){C.extend(true,g,AL.options)}}}function r(AK){C.extend(true,g,AK);if(g.grid.borderColor==null){g.grid.borderColor=g.grid.color}if(g.xaxis.noTicks&&g.xaxis.ticks==null){g.xaxis.ticks=g.xaxis.noTicks}if(g.yaxis.noTicks&&g.yaxis.ticks==null){g.yaxis.ticks=g.yaxis.noTicks}if(g.grid.coloredAreas){g.grid.markings=g.grid.coloredAreas}if(g.grid.coloredAreasColor){g.grid.markingsColor=g.grid.coloredAreasColor}if(g.lines){C.extend(true,g.series.lines,g.lines)}if(g.points){C.extend(true,g.series.points,g.points)}if(g.bars){C.extend(true,g.series.bars,g.bars)}if(g.shadowSize){g.series.shadowSize=g.shadowSize}for(var AL in L){if(g.hooks[AL]&&g.hooks[AL].length){L[AL]=L[AL].concat(g.hooks[AL])}}Z(L.processOptions,[g])}function f(AK){O=M(AK);U();m()}function M(AN){var AL=[];for(var AK=0;AK<AN.length;++AK){var AM=C.extend(true,{},g.series);if(AN[AK].data){AM.data=AN[AK].data;delete AN[AK].data;C.extend(true,AM,AN[AK]);AN[AK].data=AM.data}else{AM.data=AN[AK]}AL.push(AM)}return AL}function T(AM,AK){var AL=AM[AK];if(!AL||AL==1){return s[AK]}if(typeof AL=="number"){return s[AK.charAt(0)+AL+AK.slice(1)]}return AL}function U(){var AP;var AV=O.length,AK=[],AN=[];for(AP=0;AP<O.length;++AP){var AS=O[AP].color;if(AS!=null){--AV;if(typeof AS=="number"){AN.push(AS)}else{AK.push(C.color.parse(O[AP].color))}}}for(AP=0;AP<AN.length;++AP){AV=Math.max(AV,AN[AP]+1)}var AL=[],AO=0;AP=0;while(AL.length<AV){var AR;if(g.colors.length==AP){AR=C.color.make(100,100,100)}else{AR=C.color.parse(g.colors[AP])}var AM=AO%2==1?-1:1;AR.scale("rgb",1+AM*Math.ceil(AO/2)*0.2);AL.push(AR);++AP;if(AP>=g.colors.length){AP=0;++AO}}var AQ=0,AW;for(AP=0;AP<O.length;++AP){AW=O[AP];if(AW.color==null){AW.color=AL[AQ].toString();++AQ}else{if(typeof AW.color=="number"){AW.color=AL[AW.color].toString()}}if(AW.lines.show==null){var AU,AT=true;for(AU in AW){if(AW[AU].show){AT=false;break}}if(AT){AW.lines.show=true}}AW.xaxis=T(AW,"xaxis");AW.yaxis=T(AW,"yaxis")}}function m(){var AW=Number.POSITIVE_INFINITY,AQ=Number.NEGATIVE_INFINITY,Ac,Aa,AZ,AV,AL,AR,Ab,AX,AP,AO,AK,Ai,Af,AT;for(AK in s){s[AK].datamin=AW;s[AK].datamax=AQ;s[AK].used=false}function AN(Al,Ak,Aj){if(Ak<Al.datamin){Al.datamin=Ak}if(Aj>Al.datamax){Al.datamax=Aj}}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];AR.datapoints={points:[]};Z(L.processRawData,[AR,AR.data,AR.datapoints])}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];var Ah=AR.data,Ae=AR.datapoints.format;if(!Ae){Ae=[];Ae.push({x:true,number:true,required:true});Ae.push({y:true,number:true,required:true});if(AR.bars.show){Ae.push({y:true,number:true,required:false,defaultValue:0})}AR.datapoints.format=Ae}if(AR.datapoints.pointsize!=null){continue}if(AR.datapoints.pointsize==null){AR.datapoints.pointsize=Ae.length}AX=AR.datapoints.pointsize;Ab=AR.datapoints.points;insertSteps=AR.lines.show&&AR.lines.steps;AR.xaxis.used=AR.yaxis.used=true;for(Aa=AZ=0;Aa<Ah.length;++Aa,AZ+=AX){AT=Ah[Aa];var AM=AT==null;if(!AM){for(AV=0;AV<AX;++AV){Ai=AT[AV];Af=Ae[AV];if(Af){if(Af.number&&Ai!=null){Ai=+Ai;if(isNaN(Ai)){Ai=null}}if(Ai==null){if(Af.required){AM=true}if(Af.defaultValue!=null){Ai=Af.defaultValue}}}Ab[AZ+AV]=Ai}}if(AM){for(AV=0;AV<AX;++AV){Ai=Ab[AZ+AV];if(Ai!=null){Af=Ae[AV];if(Af.x){AN(AR.xaxis,Ai,Ai)}if(Af.y){AN(AR.yaxis,Ai,Ai)}}Ab[AZ+AV]=null}}else{if(insertSteps&&AZ>0&&Ab[AZ-AX]!=null&&Ab[AZ-AX]!=Ab[AZ]&&Ab[AZ-AX+1]!=Ab[AZ+1]){for(AV=0;AV<AX;++AV){Ab[AZ+AX+AV]=Ab[AZ+AV]}Ab[AZ+1]=Ab[AZ-AX+1];AZ+=AX}}}}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];Z(L.processDatapoints,[AR,AR.datapoints])}for(Ac=0;Ac<O.length;++Ac){AR=O[Ac];Ab=AR.datapoints.points,AX=AR.datapoints.pointsize;var AS=AW,AY=AW,AU=AQ,Ad=AQ;for(Aa=0;Aa<Ab.length;Aa+=AX){if(Ab[Aa]==null){continue}for(AV=0;AV<AX;++AV){Ai=Ab[Aa+AV];Af=Ae[AV];if(!Af){continue}if(Af.x){if(Ai<AS){AS=Ai}if(Ai>AU){AU=Ai}}if(Af.y){if(Ai<AY){AY=Ai}if(Ai>Ad){Ad=Ai}}}}if(AR.bars.show){var Ag=AR.bars.align=="left"?0:-AR.bars.barWidth/2;if(AR.bars.horizontal){AY+=Ag;Ad+=Ag+AR.bars.barWidth}else{AS+=Ag;AU+=Ag+AR.bars.barWidth}}AN(AR.xaxis,AS,AU);AN(AR.yaxis,AY,Ad)}for(AK in s){if(s[AK].datamin==AW){s[AK].datamin=null}if(s[AK].datamax==AQ){s[AK].datamax=null}}}function c(){function AK(AM,AL){var AN=document.createElement("canvas");AN.width=AM;AN.height=AL;if(C.browser.msie){AN=window.G_vmlCanvasManager.initElement(AN)}return AN}y=l.width();Q=l.height();l.html("");if(l.css("position")=="static"){l.css("position","relative")}if(y<=0||Q<=0){throw"Invalid dimensions for plot, width = "+y+", height = "+Q}if(C.browser.msie){window.G_vmlCanvasManager.init_(document)}P=C(AK(y,Q)).appendTo(l).get(0);Y=P.getContext("2d");AC=C(AK(y,Q)).css({position:"absolute",left:0,top:0}).appendTo(l).get(0);AJ=AC.getContext("2d");AJ.stroke()}function AG(){AD=C([AC,P]);if(g.grid.hoverable){AD.mousemove(D)}if(g.grid.clickable){AD.click(d)}Z(L.bindEvents,[AD])}function k(){function AL(AT,AU){function AP(AV){return AV}var AS,AO,AQ=AU.transform||AP,AR=AU.inverseTransform;if(AT==s.xaxis||AT==s.x2axis){AS=AT.scale=I/(AQ(AT.max)-AQ(AT.min));AO=AQ(AT.min);if(AQ==AP){AT.p2c=function(AV){return(AV-AO)*AS}}else{AT.p2c=function(AV){return(AQ(AV)-AO)*AS}}if(!AR){AT.c2p=function(AV){return AO+AV/AS}}else{AT.c2p=function(AV){return AR(AO+AV/AS)}}}else{AS=AT.scale=t/(AQ(AT.max)-AQ(AT.min));AO=AQ(AT.max);if(AQ==AP){AT.p2c=function(AV){return(AO-AV)*AS}}else{AT.p2c=function(AV){return(AO-AQ(AV))*AS}}if(!AR){AT.c2p=function(AV){return AO-AV/AS}}else{AT.c2p=function(AV){return AR(AO-AV/AS)}}}}function AN(AR,AT){var AQ,AS=[],AP;AR.labelWidth=AT.labelWidth;AR.labelHeight=AT.labelHeight;if(AR==s.xaxis||AR==s.x2axis){if(AR.labelWidth==null){AR.labelWidth=y/(AR.ticks.length>0?AR.ticks.length:1)}if(AR.labelHeight==null){AS=[];for(AQ=0;AQ<AR.ticks.length;++AQ){AP=AR.ticks[AQ].label;if(AP){AS.push('<div class="tickLabel" style="float:left;width:'+AR.labelWidth+'px">'+AP+"</div>")}}if(AS.length>0){var AO=C('<div style="position:absolute;top:-10000px;width:10000px;font-size:smaller">'+AS.join("")+'<div style="clear:left"></div></div>').appendTo(l);AR.labelHeight=AO.height();AO.remove()}}}else{if(AR.labelWidth==null||AR.labelHeight==null){for(AQ=0;AQ<AR.ticks.length;++AQ){AP=AR.ticks[AQ].label;if(AP){AS.push('<div class="tickLabel">'+AP+"</div>")}}if(AS.length>0){var AO=C('<div style="position:absolute;top:-10000px;font-size:smaller">'+AS.join("")+"</div>").appendTo(l);if(AR.labelWidth==null){AR.labelWidth=AO.width()}if(AR.labelHeight==null){AR.labelHeight=AO.find("div").height()}AO.remove()}}}if(AR.labelWidth==null){AR.labelWidth=0}if(AR.labelHeight==null){AR.labelHeight=0}}function AM(){var AP=g.grid.borderWidth;for(i=0;i<O.length;++i){AP=Math.max(AP,2*(O[i].points.radius+O[i].points.lineWidth/2))}e.left=e.right=e.top=e.bottom=AP;var AO=g.grid.labelMargin+g.grid.borderWidth;if(s.xaxis.labelHeight>0){e.bottom=Math.max(AP,s.xaxis.labelHeight+AO)}if(s.yaxis.labelWidth>0){e.left=Math.max(AP,s.yaxis.labelWidth+AO)}if(s.x2axis.labelHeight>0){e.top=Math.max(AP,s.x2axis.labelHeight+AO)}if(s.y2axis.labelWidth>0){e.right=Math.max(AP,s.y2axis.labelWidth+AO)}I=y-e.left-e.right;t=Q-e.bottom-e.top}var AK;for(AK in s){K(s[AK],g[AK])}if(g.grid.show){for(AK in s){F(s[AK],g[AK]);p(s[AK],g[AK]);AN(s[AK],g[AK])}AM()}else{e.left=e.right=e.top=e.bottom=0;I=y;t=Q}for(AK in s){AL(s[AK],g[AK])}if(g.grid.show){h()}AI()}function K(AN,AQ){var AM=+(AQ.min!=null?AQ.min:AN.datamin),AK=+(AQ.max!=null?AQ.max:AN.datamax),AP=AK-AM;if(AP==0){var AL=AK==0?1:0.01;if(AQ.min==null){AM-=AL}if(AQ.max==null||AQ.min!=null){AK+=AL}}else{var AO=AQ.autoscaleMargin;if(AO!=null){if(AQ.min==null){AM-=AP*AO;if(AM<0&&AN.datamin!=null&&AN.datamin>=0){AM=0}}if(AQ.max==null){AK+=AP*AO;if(AK>0&&AN.datamax!=null&&AN.datamax<=0){AK=0}}}}AN.min=AM;AN.max=AK}function F(AP,AS){var AO;if(typeof AS.ticks=="number"&&AS.ticks>0){AO=AS.ticks}else{if(AP==s.xaxis||AP==s.x2axis){AO=0.3*Math.sqrt(y)}else{AO=0.3*Math.sqrt(Q)}}var AX=(AP.max-AP.min)/AO,AZ,AT,AV,AW,AR,AM,AL;if(AS.mode=="time"){var AU={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 AY=[[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 AN=0;if(AS.minTickSize!=null){if(typeof AS.tickSize=="number"){AN=AS.tickSize}else{AN=AS.minTickSize[0]*AU[AS.minTickSize[1]]}}for(AR=0;AR<AY.length-1;++AR){if(AX<(AY[AR][0]*AU[AY[AR][1]]+AY[AR+1][0]*AU[AY[AR+1][1]])/2&&AY[AR][0]*AU[AY[AR][1]]>=AN){break}}AZ=AY[AR][0];AV=AY[AR][1];if(AV=="year"){AM=Math.pow(10,Math.floor(Math.log(AX/AU.year)/Math.LN10));AL=(AX/AU.year)/AM;if(AL<1.5){AZ=1}else{if(AL<3){AZ=2}else{if(AL<7.5){AZ=5}else{AZ=10}}}AZ*=AM}if(AS.tickSize){AZ=AS.tickSize[0];AV=AS.tickSize[1]}AT=function(Ac){var Ah=[],Af=Ac.tickSize[0],Ai=Ac.tickSize[1],Ag=new Date(Ac.min);var Ab=Af*AU[Ai];if(Ai=="second"){Ag.setUTCSeconds(A(Ag.getUTCSeconds(),Af))}if(Ai=="minute"){Ag.setUTCMinutes(A(Ag.getUTCMinutes(),Af))}if(Ai=="hour"){Ag.setUTCHours(A(Ag.getUTCHours(),Af))}if(Ai=="month"){Ag.setUTCMonth(A(Ag.getUTCMonth(),Af))}if(Ai=="year"){Ag.setUTCFullYear(A(Ag.getUTCFullYear(),Af))}Ag.setUTCMilliseconds(0);if(Ab>=AU.minute){Ag.setUTCSeconds(0)}if(Ab>=AU.hour){Ag.setUTCMinutes(0)}if(Ab>=AU.day){Ag.setUTCHours(0)}if(Ab>=AU.day*4){Ag.setUTCDate(1)}if(Ab>=AU.year){Ag.setUTCMonth(0)}var Ak=0,Aj=Number.NaN,Ad;do{Ad=Aj;Aj=Ag.getTime();Ah.push({v:Aj,label:Ac.tickFormatter(Aj,Ac)});if(Ai=="month"){if(Af<1){Ag.setUTCDate(1);var Aa=Ag.getTime();Ag.setUTCMonth(Ag.getUTCMonth()+1);var Ae=Ag.getTime();Ag.setTime(Aj+Ak*AU.hour+(Ae-Aa)*Af);Ak=Ag.getUTCHours();Ag.setUTCHours(0)}else{Ag.setUTCMonth(Ag.getUTCMonth()+Af)}}else{if(Ai=="year"){Ag.setUTCFullYear(Ag.getUTCFullYear()+Af)}else{Ag.setTime(Aj+Ab)}}}while(Aj<Ac.max&&Aj!=Ad);return Ah};AW=function(Aa,Ad){var Af=new Date(Aa);if(AS.timeformat!=null){return C.plot.formatDate(Af,AS.timeformat,AS.monthNames)}var Ab=Ad.tickSize[0]*AU[Ad.tickSize[1]];var Ac=Ad.max-Ad.min;var Ae=(AS.twelveHourClock)?" %p":"";if(Ab<AU.minute){fmt="%h:%M:%S"+Ae}else{if(Ab<AU.day){if(Ac<2*AU.day){fmt="%h:%M"+Ae}else{fmt="%b %d %h:%M"+Ae}}else{if(Ab<AU.month){fmt="%b %d"}else{if(Ab<AU.year){if(Ac<AU.year){fmt="%b"}else{fmt="%b %y"}}else{fmt="%y"}}}}return C.plot.formatDate(Af,fmt,AS.monthNames)}}else{var AK=AS.tickDecimals;var AQ=-Math.floor(Math.log(AX)/Math.LN10);if(AK!=null&&AQ>AK){AQ=AK}AM=Math.pow(10,-AQ);AL=AX/AM;if(AL<1.5){AZ=1}else{if(AL<3){AZ=2;if(AL>2.25&&(AK==null||AQ+1<=AK)){AZ=2.5;++AQ}}else{if(AL<7.5){AZ=5}else{AZ=10}}}AZ*=AM;if(AS.minTickSize!=null&&AZ<AS.minTickSize){AZ=AS.minTickSize}if(AS.tickSize!=null){AZ=AS.tickSize}AP.tickDecimals=Math.max(0,(AK!=null)?AK:AQ);AT=function(Ac){var Ae=[];var Af=A(Ac.min,Ac.tickSize),Ab=0,Aa=Number.NaN,Ad;do{Ad=Aa;Aa=Af+Ab*Ac.tickSize;Ae.push({v:Aa,label:Ac.tickFormatter(Aa,Ac)});++Ab}while(Aa<Ac.max&&Aa!=Ad);return Ae};AW=function(Aa,Ab){return Aa.toFixed(Ab.tickDecimals)}}AP.tickSize=AV?[AZ,AV]:AZ;AP.tickGenerator=AT;if(C.isFunction(AS.tickFormatter)){AP.tickFormatter=function(Aa,Ab){return""+AS.tickFormatter(Aa,Ab)}}else{AP.tickFormatter=AW}}function p(AO,AQ){AO.ticks=[];if(!AO.used){return }if(AQ.ticks==null){AO.ticks=AO.tickGenerator(AO)}else{if(typeof AQ.ticks=="number"){if(AQ.ticks>0){AO.ticks=AO.tickGenerator(AO)}}else{if(AQ.ticks){var AP=AQ.ticks;if(C.isFunction(AP)){AP=AP({min:AO.min,max:AO.max})}var AN,AK;for(AN=0;AN<AP.length;++AN){var AL=null;var AM=AP[AN];if(typeof AM=="object"){AK=AM[0];if(AM.length>1){AL=AM[1]}}else{AK=AM}if(AL==null){AL=AO.tickFormatter(AK,AO)}AO.ticks[AN]={v:AK,label:AL}}}}}if(AQ.autoscaleMargin!=null&&AO.ticks.length>0){if(AQ.min==null){AO.min=Math.min(AO.min,AO.ticks[0].v)}if(AQ.max==null&&AO.ticks.length>1){AO.max=Math.max(AO.max,AO.ticks[AO.ticks.length-1].v)}}}function AH(){Y.clearRect(0,0,y,Q);var AL=g.grid;if(AL.show&&!AL.aboveData){S()}for(var AK=0;AK<O.length;++AK){AA(O[AK])}Z(L.draw,[Y]);if(AL.show&&AL.aboveData){S()}}function N(AL,AR){var AO=AR+"axis",AK=AR+"2axis",AN,AQ,AP,AM;if(AL[AO]){AN=s[AO];AQ=AL[AO].from;AP=AL[AO].to}else{if(AL[AK]){AN=s[AK];AQ=AL[AK].from;AP=AL[AK].to}else{AN=s[AO];AQ=AL[AR+"1"];AP=AL[AR+"2"]}}if(AQ!=null&&AP!=null&&AQ>AP){return{from:AP,to:AQ,axis:AN}}return{from:AQ,to:AP,axis:AN}}function S(){var AO;Y.save();Y.translate(e.left,e.top);if(g.grid.backgroundColor){Y.fillStyle=R(g.grid.backgroundColor,t,0,"rgba(255, 255, 255, 0)");Y.fillRect(0,0,I,t)}var AL=g.grid.markings;if(AL){if(C.isFunction(AL)){AL=AL({xmin:s.xaxis.min,xmax:s.xaxis.max,ymin:s.yaxis.min,ymax:s.yaxis.max,xaxis:s.xaxis,yaxis:s.yaxis,x2axis:s.x2axis,y2axis:s.y2axis})}for(AO=0;AO<AL.length;++AO){var AK=AL[AO],AQ=N(AK,"x"),AN=N(AK,"y");if(AQ.from==null){AQ.from=AQ.axis.min}if(AQ.to==null){AQ.to=AQ.axis.max}if(AN.from==null){AN.from=AN.axis.min}if(AN.to==null){AN.to=AN.axis.max}if(AQ.to<AQ.axis.min||AQ.from>AQ.axis.max||AN.to<AN.axis.min||AN.from>AN.axis.max){continue}AQ.from=Math.max(AQ.from,AQ.axis.min);AQ.to=Math.min(AQ.to,AQ.axis.max);AN.from=Math.max(AN.from,AN.axis.min);AN.to=Math.min(AN.to,AN.axis.max);if(AQ.from==AQ.to&&AN.from==AN.to){continue}AQ.from=AQ.axis.p2c(AQ.from);AQ.to=AQ.axis.p2c(AQ.to);AN.from=AN.axis.p2c(AN.from);AN.to=AN.axis.p2c(AN.to);if(AQ.from==AQ.to||AN.from==AN.to){Y.beginPath();Y.strokeStyle=AK.color||g.grid.markingsColor;Y.lineWidth=AK.lineWidth||g.grid.markingsLineWidth;Y.moveTo(AQ.from,AN.from);Y.lineTo(AQ.to,AN.to);Y.stroke()}else{Y.fillStyle=AK.color||g.grid.markingsColor;Y.fillRect(AQ.from,AN.to,AQ.to-AQ.from,AN.from-AN.to)}}}Y.lineWidth=1;Y.strokeStyle=g.grid.tickColor;Y.beginPath();var AM,AP=s.xaxis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=s.xaxis.max){continue}Y.moveTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,0);Y.lineTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,t)}AP=s.yaxis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=AP.max){continue}Y.moveTo(0,Math.floor(AP.p2c(AM))+Y.lineWidth/2);Y.lineTo(I,Math.floor(AP.p2c(AM))+Y.lineWidth/2)}AP=s.x2axis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=AP.max){continue}Y.moveTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,-5);Y.lineTo(Math.floor(AP.p2c(AM))+Y.lineWidth/2,5)}AP=s.y2axis;for(AO=0;AO<AP.ticks.length;++AO){AM=AP.ticks[AO].v;if(AM<=AP.min||AM>=AP.max){continue}Y.moveTo(I-5,Math.floor(AP.p2c(AM))+Y.lineWidth/2);Y.lineTo(I+5,Math.floor(AP.p2c(AM))+Y.lineWidth/2)}Y.stroke();if(g.grid.borderWidth){var AR=g.grid.borderWidth;Y.lineWidth=AR;Y.strokeStyle=g.grid.borderColor;Y.strokeRect(-AR/2,-AR/2,I+AR,t+AR)}Y.restore()}function h(){l.find(".tickLabels").remove();var AK=['<div class="tickLabels" style="font-size:smaller;color:'+g.grid.color+'">'];function AM(AP,AQ){for(var AO=0;AO<AP.ticks.length;++AO){var AN=AP.ticks[AO];if(!AN.label||AN.v<AP.min||AN.v>AP.max){continue}AK.push(AQ(AN,AP))}}var AL=g.grid.labelMargin+g.grid.borderWidth;AM(s.xaxis,function(AN,AO){return'<div style="position:absolute;top:'+(e.top+t+AL)+"px;left:"+Math.round(e.left+AO.p2c(AN.v)-AO.labelWidth/2)+"px;width:"+AO.labelWidth+'px;text-align:center" class="tickLabel">'+AN.label+"</div>"});AM(s.yaxis,function(AN,AO){return'<div style="position:absolute;top:'+Math.round(e.top+AO.p2c(AN.v)-AO.labelHeight/2)+"px;right:"+(e.right+I+AL)+"px;width:"+AO.labelWidth+'px;text-align:right" class="tickLabel">'+AN.label+"</div>"});AM(s.x2axis,function(AN,AO){return'<div style="position:absolute;bottom:'+(e.bottom+t+AL)+"px;left:"+Math.round(e.left+AO.p2c(AN.v)-AO.labelWidth/2)+"px;width:"+AO.labelWidth+'px;text-align:center" class="tickLabel">'+AN.label+"</div>"});AM(s.y2axis,function(AN,AO){return'<div style="position:absolute;top:'+Math.round(e.top+AO.p2c(AN.v)-AO.labelHeight/2)+"px;left:"+(e.left+I+AL)+"px;width:"+AO.labelWidth+'px;text-align:left" class="tickLabel">'+AN.label+"</div>"});AK.push("</div>");l.append(AK.join(""))}function AA(AK){if(AK.lines.show){a(AK)}if(AK.bars.show){n(AK)}if(AK.points.show){o(AK)}}function a(AN){function AM(AY,AZ,AR,Ad,Ac){var Ae=AY.points,AS=AY.pointsize,AW=null,AV=null;Y.beginPath();for(var AX=AS;AX<Ae.length;AX+=AS){var AU=Ae[AX-AS],Ab=Ae[AX-AS+1],AT=Ae[AX],Aa=Ae[AX+1];if(AU==null||AT==null){continue}if(Ab<=Aa&&Ab<Ac.min){if(Aa<Ac.min){continue}AU=(Ac.min-Ab)/(Aa-Ab)*(AT-AU)+AU;Ab=Ac.min}else{if(Aa<=Ab&&Aa<Ac.min){if(Ab<Ac.min){continue}AT=(Ac.min-Ab)/(Aa-Ab)*(AT-AU)+AU;Aa=Ac.min}}if(Ab>=Aa&&Ab>Ac.max){if(Aa>Ac.max){continue}AU=(Ac.max-Ab)/(Aa-Ab)*(AT-AU)+AU;Ab=Ac.max}else{if(Aa>=Ab&&Aa>Ac.max){if(Ab>Ac.max){continue}AT=(Ac.max-Ab)/(Aa-Ab)*(AT-AU)+AU;Aa=Ac.max}}if(AU<=AT&&AU<Ad.min){if(AT<Ad.min){continue}Ab=(Ad.min-AU)/(AT-AU)*(Aa-Ab)+Ab;AU=Ad.min}else{if(AT<=AU&&AT<Ad.min){if(AU<Ad.min){continue}Aa=(Ad.min-AU)/(AT-AU)*(Aa-Ab)+Ab;AT=Ad.min}}if(AU>=AT&&AU>Ad.max){if(AT>Ad.max){continue}Ab=(Ad.max-AU)/(AT-AU)*(Aa-Ab)+Ab;AU=Ad.max}else{if(AT>=AU&&AT>Ad.max){if(AU>Ad.max){continue}Aa=(Ad.max-AU)/(AT-AU)*(Aa-Ab)+Ab;AT=Ad.max}}if(AU!=AW||Ab!=AV){Y.moveTo(Ad.p2c(AU)+AZ,Ac.p2c(Ab)+AR)}AW=AT;AV=Aa;Y.lineTo(Ad.p2c(AT)+AZ,Ac.p2c(Aa)+AR)}Y.stroke()}function AO(AX,Ae,Ac){var Af=AX.points,AR=AX.pointsize,AS=Math.min(Math.max(0,Ac.min),Ac.max),Aa,AV=0,Ad=false;for(var AW=AR;AW<Af.length;AW+=AR){var AU=Af[AW-AR],Ab=Af[AW-AR+1],AT=Af[AW],AZ=Af[AW+1];if(Ad&&AU!=null&&AT==null){Y.lineTo(Ae.p2c(AV),Ac.p2c(AS));Y.fill();Ad=false;continue}if(AU==null||AT==null){continue}if(AU<=AT&&AU<Ae.min){if(AT<Ae.min){continue}Ab=(Ae.min-AU)/(AT-AU)*(AZ-Ab)+Ab;AU=Ae.min}else{if(AT<=AU&&AT<Ae.min){if(AU<Ae.min){continue}AZ=(Ae.min-AU)/(AT-AU)*(AZ-Ab)+Ab;AT=Ae.min}}if(AU>=AT&&AU>Ae.max){if(AT>Ae.max){continue}Ab=(Ae.max-AU)/(AT-AU)*(AZ-Ab)+Ab;AU=Ae.max}else{if(AT>=AU&&AT>Ae.max){if(AU>Ae.max){continue}AZ=(Ae.max-AU)/(AT-AU)*(AZ-Ab)+Ab;AT=Ae.max}}if(!Ad){Y.beginPath();Y.moveTo(Ae.p2c(AU),Ac.p2c(AS));Ad=true}if(Ab>=Ac.max&&AZ>=Ac.max){Y.lineTo(Ae.p2c(AU),Ac.p2c(Ac.max));Y.lineTo(Ae.p2c(AT),Ac.p2c(Ac.max));AV=AT;continue}else{if(Ab<=Ac.min&&AZ<=Ac.min){Y.lineTo(Ae.p2c(AU),Ac.p2c(Ac.min));Y.lineTo(Ae.p2c(AT),Ac.p2c(Ac.min));AV=AT;continue}}var Ag=AU,AY=AT;if(Ab<=AZ&&Ab<Ac.min&&AZ>=Ac.min){AU=(Ac.min-Ab)/(AZ-Ab)*(AT-AU)+AU;Ab=Ac.min}else{if(AZ<=Ab&&AZ<Ac.min&&Ab>=Ac.min){AT=(Ac.min-Ab)/(AZ-Ab)*(AT-AU)+AU;AZ=Ac.min}}if(Ab>=AZ&&Ab>Ac.max&&AZ<=Ac.max){AU=(Ac.max-Ab)/(AZ-Ab)*(AT-AU)+AU;Ab=Ac.max}else{if(AZ>=Ab&&AZ>Ac.max&&Ab<=Ac.max){AT=(Ac.max-Ab)/(AZ-Ab)*(AT-AU)+AU;AZ=Ac.max}}if(AU!=Ag){if(Ab<=Ac.min){Aa=Ac.min}else{Aa=Ac.max}Y.lineTo(Ae.p2c(Ag),Ac.p2c(Aa));Y.lineTo(Ae.p2c(AU),Ac.p2c(Aa))}Y.lineTo(Ae.p2c(AU),Ac.p2c(Ab));Y.lineTo(Ae.p2c(AT),Ac.p2c(AZ));if(AT!=AY){if(AZ<=Ac.min){Aa=Ac.min}else{Aa=Ac.max}Y.lineTo(Ae.p2c(AT),Ac.p2c(Aa));Y.lineTo(Ae.p2c(AY),Ac.p2c(Aa))}AV=Math.max(AT,AY)}if(Ad){Y.lineTo(Ae.p2c(AV),Ac.p2c(AS));Y.fill()}}Y.save();Y.translate(e.left,e.top);Y.lineJoin="round";var AP=AN.lines.lineWidth,AK=AN.shadowSize;if(AP>0&&AK>0){Y.lineWidth=AK;Y.strokeStyle="rgba(0,0,0,0.1)";var AQ=Math.PI/18;AM(AN.datapoints,Math.sin(AQ)*(AP/2+AK/2),Math.cos(AQ)*(AP/2+AK/2),AN.xaxis,AN.yaxis);Y.lineWidth=AK/2;AM(AN.datapoints,Math.sin(AQ)*(AP/2+AK/4),Math.cos(AQ)*(AP/2+AK/4),AN.xaxis,AN.yaxis)}Y.lineWidth=AP;Y.strokeStyle=AN.color;var AL=V(AN.lines,AN.color,0,t);if(AL){Y.fillStyle=AL;AO(AN.datapoints,AN.xaxis,AN.yaxis)}if(AP>0){AM(AN.datapoints,0,0,AN.xaxis,AN.yaxis)}Y.restore()}function o(AN){function AP(AU,AT,Ab,AR,AV,AZ,AY){var Aa=AU.points,AQ=AU.pointsize;for(var AS=0;AS<Aa.length;AS+=AQ){var AX=Aa[AS],AW=Aa[AS+1];if(AX==null||AX<AZ.min||AX>AZ.max||AW<AY.min||AW>AY.max){continue}Y.beginPath();Y.arc(AZ.p2c(AX),AY.p2c(AW)+AR,AT,0,AV,false);if(Ab){Y.fillStyle=Ab;Y.fill()}Y.stroke()}}Y.save();Y.translate(e.left,e.top);var AO=AN.lines.lineWidth,AL=AN.shadowSize,AK=AN.points.radius;if(AO>0&&AL>0){var AM=AL/2;Y.lineWidth=AM;Y.strokeStyle="rgba(0,0,0,0.1)";AP(AN.datapoints,AK,null,AM+AM/2,Math.PI,AN.xaxis,AN.yaxis);Y.strokeStyle="rgba(0,0,0,0.2)";AP(AN.datapoints,AK,null,AM/2,Math.PI,AN.xaxis,AN.yaxis)}Y.lineWidth=AO;Y.strokeStyle=AN.color;AP(AN.datapoints,AK,V(AN.points,AN.color),0,2*Math.PI,AN.xaxis,AN.yaxis);Y.restore()}function AB(AV,AU,Ad,AQ,AY,AN,AL,AT,AS,Ac,AZ){var AM,Ab,AR,AX,AO,AK,AW,AP,Aa;if(AZ){AP=AK=AW=true;AO=false;AM=Ad;Ab=AV;AX=AU+AQ;AR=AU+AY;if(Ab<AM){Aa=Ab;Ab=AM;AM=Aa;AO=true;AK=false}}else{AO=AK=AW=true;AP=false;AM=AV+AQ;Ab=AV+AY;AR=Ad;AX=AU;if(AX<AR){Aa=AX;AX=AR;AR=Aa;AP=true;AW=false}}if(Ab<AT.min||AM>AT.max||AX<AS.min||AR>AS.max){return }if(AM<AT.min){AM=AT.min;AO=false}if(Ab>AT.max){Ab=AT.max;AK=false}if(AR<AS.min){AR=AS.min;AP=false}if(AX>AS.max){AX=AS.max;AW=false}AM=AT.p2c(AM);AR=AS.p2c(AR);Ab=AT.p2c(Ab);AX=AS.p2c(AX);if(AL){Ac.beginPath();Ac.moveTo(AM,AR);Ac.lineTo(AM,AX);Ac.lineTo(Ab,AX);Ac.lineTo(Ab,AR);Ac.fillStyle=AL(AR,AX);Ac.fill()}if(AO||AK||AW||AP){Ac.beginPath();Ac.moveTo(AM,AR+AN);if(AO){Ac.lineTo(AM,AX+AN)}else{Ac.moveTo(AM,AX+AN)}if(AW){Ac.lineTo(Ab,AX+AN)}else{Ac.moveTo(Ab,AX+AN)}if(AK){Ac.lineTo(Ab,AR+AN)}else{Ac.moveTo(Ab,AR+AN)}if(AP){Ac.lineTo(AM,AR+AN)}else{Ac.moveTo(AM,AR+AN)}Ac.stroke()}}function n(AM){function AL(AS,AR,AU,AP,AT,AW,AV){var AX=AS.points,AO=AS.pointsize;for(var AQ=0;AQ<AX.length;AQ+=AO){if(AX[AQ]==null){continue}AB(AX[AQ],AX[AQ+1],AX[AQ+2],AR,AU,AP,AT,AW,AV,Y,AM.bars.horizontal)}}Y.save();Y.translate(e.left,e.top);Y.lineWidth=AM.bars.lineWidth;Y.strokeStyle=AM.color;var AK=AM.bars.align=="left"?0:-AM.bars.barWidth/2;var AN=AM.bars.fill?function(AO,AP){return V(AM.bars,AM.color,AO,AP)}:null;AL(AM.datapoints,AK,AK+AM.bars.barWidth,0,AN,AM.xaxis,AM.yaxis);Y.restore()}function V(AM,AK,AL,AO){var AN=AM.fill;if(!AN){return null}if(AM.fillColor){return R(AM.fillColor,AL,AO,AK)}var AP=C.color.parse(AK);AP.a=typeof AN=="number"?AN:0.4;AP.normalize();return AP.toString()}function AI(){l.find(".legend").remove();if(!g.legend.show){return }var AP=[],AN=false,AV=g.legend.labelFormatter,AU,AR;for(i=0;i<O.length;++i){AU=O[i];AR=AU.label;if(!AR){continue}if(i%g.legend.noColumns==0){if(AN){AP.push("</tr>")}AP.push("<tr>");AN=true}if(AV){AR=AV(AR,AU)}AP.push('<td class="legendColorBox"><div style="border:1px solid '+g.legend.labelBoxBorderColor+';padding:1px"><div style="width:4px;height:0;border:5px solid '+AU.color+';overflow:hidden"></div></div></td><td class="legendLabel">'+AR+"</td>")}if(AN){AP.push("</tr>")}if(AP.length==0){return }var AT='<table style="font-size:smaller;color:'+g.grid.color+'">'+AP.join("")+"</table>";if(g.legend.container!=null){C(g.legend.container).html(AT)}else{var AQ="",AL=g.legend.position,AM=g.legend.margin;if(AM[0]==null){AM=[AM,AM]}if(AL.charAt(0)=="n"){AQ+="top:"+(AM[1]+e.top)+"px;"}else{if(AL.charAt(0)=="s"){AQ+="bottom:"+(AM[1]+e.bottom)+"px;"}}if(AL.charAt(1)=="e"){AQ+="right:"+(AM[0]+e.right)+"px;"}else{if(AL.charAt(1)=="w"){AQ+="left:"+(AM[0]+e.left)+"px;"}}var AS=C('<div class="legend">'+AT.replace('style="','style="position:absolute;'+AQ+";")+"</div>").appendTo(l);if(g.legend.backgroundOpacity!=0){var AO=g.legend.backgroundColor;if(AO==null){AO=g.grid.backgroundColor;if(AO&&typeof AO=="string"){AO=C.color.parse(AO)}else{AO=C.color.extract(AS,"background-color")}AO.a=1;AO=AO.toString()}var AK=AS.children();C('<div style="position:absolute;width:'+AK.width()+"px;height:"+AK.height()+"px;"+AQ+"background-color:"+AO+';"> </div>').prependTo(AS).css("opacity",g.legend.backgroundOpacity)}}}var w=[],J=null;function AF(AR,AP,AM){var AX=g.grid.mouseActiveRadius,Aj=AX*AX+1,Ah=null,Aa=false,Af,Ad;for(Af=0;Af<O.length;++Af){if(!AM(O[Af])){continue}var AY=O[Af],AQ=AY.xaxis,AO=AY.yaxis,Ae=AY.datapoints.points,Ac=AY.datapoints.pointsize,AZ=AQ.c2p(AR),AW=AO.c2p(AP),AL=AX/AQ.scale,AK=AX/AO.scale;if(AY.lines.show||AY.points.show){for(Ad=0;Ad<Ae.length;Ad+=Ac){var AT=Ae[Ad],AS=Ae[Ad+1];if(AT==null){continue}if(AT-AZ>AL||AT-AZ<-AL||AS-AW>AK||AS-AW<-AK){continue}var AV=Math.abs(AQ.p2c(AT)-AR),AU=Math.abs(AO.p2c(AS)-AP),Ab=AV*AV+AU*AU;if(Ab<=Aj){Aj=Ab;Ah=[Af,Ad/Ac]}}}if(AY.bars.show&&!Ah){var AN=AY.bars.align=="left"?0:-AY.bars.barWidth/2,Ag=AN+AY.bars.barWidth;for(Ad=0;Ad<Ae.length;Ad+=Ac){var AT=Ae[Ad],AS=Ae[Ad+1],Ai=Ae[Ad+2];if(AT==null){continue}if(O[Af].bars.horizontal?(AZ<=Math.max(Ai,AT)&&AZ>=Math.min(Ai,AT)&&AW>=AS+AN&&AW<=AS+Ag):(AZ>=AT+AN&&AZ<=AT+Ag&&AW>=Math.min(Ai,AS)&&AW<=Math.max(Ai,AS))){Ah=[Af,Ad/Ac]}}}}if(Ah){Af=Ah[0];Ad=Ah[1];Ac=O[Af].datapoints.pointsize;return{datapoint:O[Af].datapoints.points.slice(Ad*Ac,(Ad+1)*Ac),dataIndex:Ad,series:O[Af],seriesIndex:Af}}return null}function D(AK){if(g.grid.hoverable){H("plothover",AK,function(AL){return AL.hoverable!=false})}}function d(AK){H("plotclick",AK,function(AL){return AL.clickable!=false})}function H(AL,AK,AM){var AN=AD.offset(),AS={pageX:AK.pageX,pageY:AK.pageY},AQ=AK.pageX-AN.left-e.left,AO=AK.pageY-AN.top-e.top;if(s.xaxis.used){AS.x=s.xaxis.c2p(AQ)}if(s.yaxis.used){AS.y=s.yaxis.c2p(AO)}if(s.x2axis.used){AS.x2=s.x2axis.c2p(AQ)}if(s.y2axis.used){AS.y2=s.y2axis.c2p(AO)}var AT=AF(AQ,AO,AM);if(AT){AT.pageX=parseInt(AT.series.xaxis.p2c(AT.datapoint[0])+AN.left+e.left);AT.pageY=parseInt(AT.series.yaxis.p2c(AT.datapoint[1])+AN.top+e.top)}if(g.grid.autoHighlight){for(var AP=0;AP<w.length;++AP){var AR=w[AP];if(AR.auto==AL&&!(AT&&AR.series==AT.series&&AR.point==AT.datapoint)){x(AR.series,AR.point)}}if(AT){AE(AT.series,AT.datapoint,AL)}}l.trigger(AL,[AS,AT])}function q(){if(!J){J=setTimeout(v,30)}}function v(){J=null;AJ.save();AJ.clearRect(0,0,y,Q);AJ.translate(e.left,e.top);var AL,AK;for(AL=0;AL<w.length;++AL){AK=w[AL];if(AK.series.bars.show){z(AK.series,AK.point)}else{u(AK.series,AK.point)}}AJ.restore();Z(L.drawOverlay,[AJ])}function AE(AM,AK,AN){if(typeof AM=="number"){AM=O[AM]}if(typeof AK=="number"){AK=AM.data[AK]}var AL=j(AM,AK);if(AL==-1){w.push({series:AM,point:AK,auto:AN});q()}else{if(!AN){w[AL].auto=false}}}function x(AM,AK){if(AM==null&&AK==null){w=[];q()}if(typeof AM=="number"){AM=O[AM]}if(typeof AK=="number"){AK=AM.data[AK]}var AL=j(AM,AK);if(AL!=-1){w.splice(AL,1);q()}}function j(AM,AN){for(var AK=0;AK<w.length;++AK){var AL=w[AK];if(AL.series==AM&&AL.point[0]==AN[0]&&AL.point[1]==AN[1]){return AK}}return -1}function u(AN,AM){var AL=AM[0],AR=AM[1],AQ=AN.xaxis,AP=AN.yaxis;if(AL<AQ.min||AL>AQ.max||AR<AP.min||AR>AP.max){return }var AO=AN.points.radius+AN.points.lineWidth/2;AJ.lineWidth=AO;AJ.strokeStyle=C.color.parse(AN.color).scale("a",0.5).toString();var AK=1.5*AO;AJ.beginPath();AJ.arc(AQ.p2c(AL),AP.p2c(AR),AK,0,2*Math.PI,false);AJ.stroke()}function z(AN,AK){AJ.lineWidth=AN.bars.lineWidth;AJ.strokeStyle=C.color.parse(AN.color).scale("a",0.5).toString();var AM=C.color.parse(AN.color).scale("a",0.5).toString();var AL=AN.bars.align=="left"?0:-AN.bars.barWidth/2;AB(AK[0],AK[1],AK[2]||0,AL,AL+AN.bars.barWidth,0,function(){return AM},AN.xaxis,AN.yaxis,AJ,AN.bars.horizontal)}function R(AM,AL,AQ,AO){if(typeof AM=="string"){return AM}else{var AP=Y.createLinearGradient(0,AQ,0,AL);for(var AN=0,AK=AM.colors.length;AN<AK;++AN){var AR=AM.colors[AN];if(typeof AR!="string"){AR=C.color.parse(AO).scale("rgb",AR.brightness);AR.a*=AR.opacity;AR=AR.toString()}AP.addColorStop(AN/(AK-1),AR)}return AP}}}C.plot=function(G,E,D){var F=new B(C(G),E,D,C.plot.plugins);return F};C.plot.plugins=[];C.plot.formatDate=function(H,E,G){var L=function(N){N=""+N;return N.length==1?"0"+N:N};var D=[];var M=false;var K=H.getUTCHours();var I=K<12;if(G==null){G=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}if(E.search(/%p|%P/)!=-1){if(K>12){K=K-12}else{if(K==0){K=12}}}for(var F=0;F<E.length;++F){var J=E.charAt(F);if(M){switch(J){case"h":J=""+K;break;case"H":J=L(K);break;case"M":J=L(H.getUTCMinutes());break;case"S":J=L(H.getUTCSeconds());break;case"d":J=""+H.getUTCDate();break;case"m":J=""+(H.getUTCMonth()+1);break;case"y":J=""+H.getUTCFullYear();break;case"b":J=""+G[H.getUTCMonth()];break;case"p":J=(I)?("am"):("pm");break;case"P":J=(I)?("AM"):("PM");break}D.push(J);M=false}else{if(J=="%"){M=true}else{D.push(J)}}}return D.join("")};function A(E,D){return D*Math.floor(E/D)}})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-az_AZ.mo
DELETED
Binary file
|
locale/cpd-az_AZ.po
DELETED
@@ -1,972 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count per Day\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Madat <translator.baku@gmail.com>\n"
|
8 |
-
"Language-Team: Webmestre <translator.baku@gmail.com>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: Azerbaijani\n"
|
14 |
-
"X-Poedit-Country: AZERBAIJAN\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
-
"X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
18 |
-
"X-Poedit-Bookmarks: \n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
-
|
22 |
-
#: counter-options.php:49
|
23 |
-
#@ cpd
|
24 |
-
msgid "Options updated"
|
25 |
-
msgstr "Opsiyalar yaddaşda saxlanılıb"
|
26 |
-
|
27 |
-
#: counter-options.php:112
|
28 |
-
#, php-format
|
29 |
-
#@ cpd
|
30 |
-
msgid "Database cleaned. %s rows deleted."
|
31 |
-
msgstr "Məlumat bazası silinib. %s sətir silinib."
|
32 |
-
|
33 |
-
#: counter-options.php:127
|
34 |
-
#: counter-options.php:810
|
35 |
-
#@ cpd
|
36 |
-
msgid "UNINSTALL Count per Day"
|
37 |
-
msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
|
38 |
-
|
39 |
-
#: counter-options.php:132
|
40 |
-
#: counter-options.php:133
|
41 |
-
#: counter-options.php:134
|
42 |
-
#, php-format
|
43 |
-
#@ cpd
|
44 |
-
msgid "Table %s deleted"
|
45 |
-
msgstr "Cədvəl %s silinib"
|
46 |
-
|
47 |
-
#: counter-options.php:135
|
48 |
-
#@ cpd
|
49 |
-
msgid "Options deleted"
|
50 |
-
msgstr "Opsiyalar silinib"
|
51 |
-
|
52 |
-
#: counter-options.php:316
|
53 |
-
#: counter-options.php:796
|
54 |
-
#@ cpd
|
55 |
-
msgid "Uninstall"
|
56 |
-
msgstr "Deinstalyasiya"
|
57 |
-
|
58 |
-
#: counter-options.php:317
|
59 |
-
#@ cpd
|
60 |
-
msgid "Click here"
|
61 |
-
msgstr "Bura basın"
|
62 |
-
|
63 |
-
#: counter-options.php:317
|
64 |
-
#@ cpd
|
65 |
-
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
-
msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
|
67 |
-
|
68 |
-
#: counter-options.php:355
|
69 |
-
#@ cpd
|
70 |
-
msgid "Online time"
|
71 |
-
msgstr "Onlayn vaxt"
|
72 |
-
|
73 |
-
#: counter-options.php:356
|
74 |
-
#@ cpd
|
75 |
-
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
-
msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
|
77 |
-
|
78 |
-
#: counter-options.php:359
|
79 |
-
#@ cpd
|
80 |
-
msgid "Logged on Users"
|
81 |
-
msgstr "Daxil olmuş istifadəçilər"
|
82 |
-
|
83 |
-
#: counter-options.php:361
|
84 |
-
#@ cpd
|
85 |
-
msgid "count too"
|
86 |
-
msgstr "onu da saymaq"
|
87 |
-
|
88 |
-
#: counter-options.php:373
|
89 |
-
#@ cpd
|
90 |
-
msgid "Auto counter"
|
91 |
-
msgstr "Avtomatik sayğac"
|
92 |
-
|
93 |
-
#: counter-options.php:374
|
94 |
-
#@ cpd
|
95 |
-
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
-
msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
|
97 |
-
|
98 |
-
#: counter-options.php:377
|
99 |
-
#@ cpd
|
100 |
-
msgid "Bots to ignore"
|
101 |
-
msgstr "Botları əhəmiyyət verməmək"
|
102 |
-
|
103 |
-
#: counter-options.php:561
|
104 |
-
#@ cpd
|
105 |
-
msgid "Update options"
|
106 |
-
msgstr "Opsiyaları yeniləşdirmək"
|
107 |
-
|
108 |
-
#: counter-options.php:656
|
109 |
-
#: counter-options.php:665
|
110 |
-
#@ cpd
|
111 |
-
msgid "Clean the database"
|
112 |
-
msgstr "Məlumat bazasının silmək"
|
113 |
-
|
114 |
-
#: counter-options.php:659
|
115 |
-
#@ cpd
|
116 |
-
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
117 |
-
msgstr "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz və botun baş çəkməsini silə bilərsiniz."
|
118 |
-
|
119 |
-
#: counter-options.php:799
|
120 |
-
#@ cpd
|
121 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
122 |
-
msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
|
123 |
-
|
124 |
-
#: counter-options.php:800
|
125 |
-
#@ cpd
|
126 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
-
msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
|
128 |
-
|
129 |
-
#: counter-options.php:803
|
130 |
-
#@ cpd
|
131 |
-
msgid "WARNING"
|
132 |
-
msgstr "DİQQƏT"
|
133 |
-
|
134 |
-
#: counter-options.php:804
|
135 |
-
#@ cpd
|
136 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
-
msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
|
138 |
-
|
139 |
-
#: counter-options.php:806
|
140 |
-
#@ cpd
|
141 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
-
msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
|
143 |
-
|
144 |
-
#: counter-options.php:786
|
145 |
-
#: counter-options.php:809
|
146 |
-
#@ cpd
|
147 |
-
msgid "Yes"
|
148 |
-
msgstr "Bəli"
|
149 |
-
|
150 |
-
#: counter-options.php:810
|
151 |
-
#@ cpd
|
152 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
153 |
-
msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
|
154 |
-
|
155 |
-
#: counter-core.php:754
|
156 |
-
#: counter.php:1124
|
157 |
-
#@ cpd
|
158 |
-
msgid "Statistics"
|
159 |
-
msgstr "Statistika"
|
160 |
-
|
161 |
-
#: counter-core.php:723
|
162 |
-
#: counter.php:160
|
163 |
-
#: counter.php:1010
|
164 |
-
#: counter.php:1202
|
165 |
-
#@ cpd
|
166 |
-
msgid "Total visitors"
|
167 |
-
msgstr "Ümümi qonaqların sayı"
|
168 |
-
|
169 |
-
#: counter.php:161
|
170 |
-
#: counter.php:1208
|
171 |
-
#@ cpd
|
172 |
-
msgid "Visitors currently online"
|
173 |
-
msgstr "İndi qonaqların sayı saytda "
|
174 |
-
|
175 |
-
#: counter.php:162
|
176 |
-
#: counter.php:1203
|
177 |
-
#@ cpd
|
178 |
-
msgid "Visitors today"
|
179 |
-
msgstr "Qonaqlar sayı bu gün"
|
180 |
-
|
181 |
-
#: counter.php:163
|
182 |
-
#: counter.php:1204
|
183 |
-
#@ cpd
|
184 |
-
msgid "Visitors yesterday"
|
185 |
-
msgstr "Qonaqların sayı dünən"
|
186 |
-
|
187 |
-
#: counter.php:164
|
188 |
-
#: counter.php:1205
|
189 |
-
#@ cpd
|
190 |
-
msgid "Visitors last week"
|
191 |
-
msgstr "Qonaqların sayı keçən həftə"
|
192 |
-
|
193 |
-
#: counter.php:167
|
194 |
-
#: counter.php:825
|
195 |
-
#: counter.php:1209
|
196 |
-
#@ cpd
|
197 |
-
msgid "Counter starts on"
|
198 |
-
msgstr "Sayğac başlanır -dan"
|
199 |
-
|
200 |
-
#: counter-core.php:729
|
201 |
-
#: counter.php:166
|
202 |
-
#: counter.php:263
|
203 |
-
#: counter.php:1012
|
204 |
-
#: counter.php:1207
|
205 |
-
#: userperspan.php:34
|
206 |
-
#@ cpd
|
207 |
-
msgid "Visitors per day"
|
208 |
-
msgstr "Gonaqlarn sayı gündə"
|
209 |
-
|
210 |
-
#: counter-core.php:725
|
211 |
-
#: counter.php:1206
|
212 |
-
#@ cpd
|
213 |
-
msgid "Visitors per month"
|
214 |
-
msgstr "Qonaqların sayı ayda"
|
215 |
-
|
216 |
-
#: counter-core.php:727
|
217 |
-
#: counter-options.php:438
|
218 |
-
#@ cpd
|
219 |
-
msgid "Visitors per post"
|
220 |
-
msgstr "Qonaqların sayı yazışa görə"
|
221 |
-
|
222 |
-
#: counter-options.php:122
|
223 |
-
#@ cpd
|
224 |
-
msgid "Counter reseted."
|
225 |
-
msgstr "Sayğac yenidən başlayıb"
|
226 |
-
|
227 |
-
#: counter-options.php:403
|
228 |
-
#@ default
|
229 |
-
msgid "Dashboard"
|
230 |
-
msgstr "Konsol"
|
231 |
-
|
232 |
-
#: counter-options.php:439
|
233 |
-
#: counter-options.php:443
|
234 |
-
#@ cpd
|
235 |
-
msgid "How many posts do you want to see on dashboard page?"
|
236 |
-
msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
|
237 |
-
|
238 |
-
#: counter-options.php:442
|
239 |
-
#@ cpd
|
240 |
-
msgid "Latest Counts - Posts"
|
241 |
-
msgstr "Son sayğaclar - Yazılar"
|
242 |
-
|
243 |
-
#: counter-options.php:446
|
244 |
-
#@ cpd
|
245 |
-
msgid "Latest Counts - Days"
|
246 |
-
msgstr "Son sayğaclar - Günlər"
|
247 |
-
|
248 |
-
#: counter-options.php:447
|
249 |
-
#: counter-options.php:451
|
250 |
-
#: counter-options.php:473
|
251 |
-
#@ cpd
|
252 |
-
msgid "How many days do you want look back?"
|
253 |
-
msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
|
254 |
-
|
255 |
-
#: counter-options.php:450
|
256 |
-
#@ cpd
|
257 |
-
msgid "Chart - Days"
|
258 |
-
msgstr "Cədvəl - Günlər"
|
259 |
-
|
260 |
-
#: counter-options.php:454
|
261 |
-
#@ cpd
|
262 |
-
msgid "Chart - Height"
|
263 |
-
msgstr "Cədvəl - Hündürlük"
|
264 |
-
|
265 |
-
#: counter-options.php:455
|
266 |
-
#@ cpd
|
267 |
-
msgid "Height of the biggest bar"
|
268 |
-
msgstr "Ən böyük olan sütunun hündürlüyü"
|
269 |
-
|
270 |
-
#: counter-options.php:488
|
271 |
-
#@ cpd
|
272 |
-
msgid "Show in lists"
|
273 |
-
msgstr "Siyahıda göstərmək"
|
274 |
-
|
275 |
-
#: counter-options.php:489
|
276 |
-
#@ cpd
|
277 |
-
msgid "Show \"Reads per Post\" in a new column in post management views."
|
278 |
-
msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
|
279 |
-
|
280 |
-
#: counter-options.php:777
|
281 |
-
#: counter-options.php:787
|
282 |
-
#@ cpd
|
283 |
-
msgid "Reset the counter"
|
284 |
-
msgstr "Sayğacı yenidən 0 qoymaq"
|
285 |
-
|
286 |
-
#: counter-options.php:780
|
287 |
-
#@ cpd
|
288 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
289 |
-
msgstr "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
|
290 |
-
|
291 |
-
#: counter.php:672
|
292 |
-
#, php-format
|
293 |
-
#@ cpd
|
294 |
-
msgid "The %s most visited posts in last %s days:"
|
295 |
-
msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
|
296 |
-
|
297 |
-
#: counter-core.php:575
|
298 |
-
#: counter-options.php:341
|
299 |
-
#: counter-options.php:565
|
300 |
-
#@ default
|
301 |
-
msgid "Settings"
|
302 |
-
msgstr "Kökləmələr"
|
303 |
-
|
304 |
-
#: counter.php:262
|
305 |
-
#@ cpd
|
306 |
-
msgid "Reads per day"
|
307 |
-
msgstr "Gün ərzində oxunuş"
|
308 |
-
|
309 |
-
#: counter-core.php:639
|
310 |
-
#: counter-options.php:392
|
311 |
-
#: counter.php:159
|
312 |
-
#: counter.php:875
|
313 |
-
#@ cpd
|
314 |
-
msgid "Reads"
|
315 |
-
msgstr "Oxumalar"
|
316 |
-
|
317 |
-
#: counter.php:1196
|
318 |
-
#@ cpd
|
319 |
-
msgid "This post"
|
320 |
-
msgstr "Bu yazı"
|
321 |
-
|
322 |
-
#: counter-options.php:60
|
323 |
-
#, php-format
|
324 |
-
#@ cpd
|
325 |
-
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
326 |
-
msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
|
327 |
-
|
328 |
-
#: counter-options.php:65
|
329 |
-
#@ cpd
|
330 |
-
msgid "update next"
|
331 |
-
msgstr "sonraki yeniləşdirmək"
|
332 |
-
|
333 |
-
#: counter-options.php:102
|
334 |
-
#, php-format
|
335 |
-
#@ cpd
|
336 |
-
msgid "Mass Bots cleaned. %s counts deleted."
|
337 |
-
msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
|
338 |
-
|
339 |
-
#: counter-options.php:362
|
340 |
-
#@ cpd
|
341 |
-
msgid "until User Level"
|
342 |
-
msgstr "istifadəçi səviyyəsinə qədər"
|
343 |
-
|
344 |
-
#: counter-options.php:381
|
345 |
-
#@ cpd
|
346 |
-
msgid "Anonymous IP"
|
347 |
-
msgstr "Anonim IP"
|
348 |
-
|
349 |
-
#: counter-options.php:459
|
350 |
-
#@ cpd
|
351 |
-
msgid "Countries"
|
352 |
-
msgstr "Ölkələr"
|
353 |
-
|
354 |
-
#: counter-options.php:460
|
355 |
-
#@ cpd
|
356 |
-
msgid "How many countries do you want to see on dashboard page?"
|
357 |
-
msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
|
358 |
-
|
359 |
-
#: counter-options.php:497
|
360 |
-
#@ cpd
|
361 |
-
msgid "Start Values"
|
362 |
-
msgstr "Başlanğıc məlumatlar"
|
363 |
-
|
364 |
-
#: counter-options.php:501
|
365 |
-
#@ cpd
|
366 |
-
msgid "Here you can change the date of first count and add a start count."
|
367 |
-
msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
|
368 |
-
|
369 |
-
#: counter-options.php:505
|
370 |
-
#@ cpd
|
371 |
-
msgid "Start date"
|
372 |
-
msgstr "Başlanğıc tarix"
|
373 |
-
|
374 |
-
#: counter-options.php:506
|
375 |
-
#@ cpd
|
376 |
-
msgid "Your old Counter starts at?"
|
377 |
-
msgstr "Sizin köhnə Sayğacınız başlanır?"
|
378 |
-
|
379 |
-
#: counter-options.php:509
|
380 |
-
#: counter-options.php:513
|
381 |
-
#@ cpd
|
382 |
-
msgid "Start count"
|
383 |
-
msgstr "Sayın başlanğıcı"
|
384 |
-
|
385 |
-
#: counter-options.php:510
|
386 |
-
#@ cpd
|
387 |
-
msgid "Add this value to \"Total visitors\"."
|
388 |
-
msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
|
389 |
-
|
390 |
-
#: counter-options.php:727
|
391 |
-
#@ cpd
|
392 |
-
msgid "GeoIP - Countries"
|
393 |
-
msgstr "GeoIP - Ölkələr"
|
394 |
-
|
395 |
-
#: counter-options.php:736
|
396 |
-
#@ cpd
|
397 |
-
msgid "Update old counter data"
|
398 |
-
msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
|
399 |
-
|
400 |
-
#: counter-options.php:748
|
401 |
-
#@ cpd
|
402 |
-
msgid "Update GeoIP database"
|
403 |
-
msgstr "GeoIP məlumat bazasını yeniləşdirmək"
|
404 |
-
|
405 |
-
#: counter-options.php:743
|
406 |
-
#@ cpd
|
407 |
-
msgid "Download a new version of GeoIP.dat file."
|
408 |
-
msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
|
409 |
-
|
410 |
-
#: counter-options.php:753
|
411 |
-
#@ cpd
|
412 |
-
msgid "More informations about GeoIP"
|
413 |
-
msgstr " GeoIP haqqında daha da çox məlumat"
|
414 |
-
|
415 |
-
#: counter-options.php:580
|
416 |
-
#: massbots.php:35
|
417 |
-
#@ cpd
|
418 |
-
msgid "Mass Bots"
|
419 |
-
msgstr "Mümkün olan botlar"
|
420 |
-
|
421 |
-
#: counter-options.php:584
|
422 |
-
#, php-format
|
423 |
-
#@ cpd
|
424 |
-
msgid "Show all IPs with more than %s page views per day"
|
425 |
-
msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
|
426 |
-
|
427 |
-
#: counter-options.php:585
|
428 |
-
#: notes.php:71
|
429 |
-
#: userperspan.php:44
|
430 |
-
#@ cpd
|
431 |
-
msgid "show"
|
432 |
-
msgstr "göstərməkl"
|
433 |
-
|
434 |
-
#: counter-options.php:593
|
435 |
-
#@ cpd
|
436 |
-
msgid "IP"
|
437 |
-
msgstr "IP"
|
438 |
-
|
439 |
-
#: counter-options.php:594
|
440 |
-
#: notes.php:75
|
441 |
-
#@ cpd
|
442 |
-
#@ default
|
443 |
-
msgid "Date"
|
444 |
-
msgstr "Tarix"
|
445 |
-
|
446 |
-
#: counter-options.php:595
|
447 |
-
#@ cpd
|
448 |
-
msgid "Client"
|
449 |
-
msgstr "Müştəri"
|
450 |
-
|
451 |
-
#: counter-options.php:596
|
452 |
-
#@ cpd
|
453 |
-
msgid "Views"
|
454 |
-
msgstr "Baxış"
|
455 |
-
|
456 |
-
#: counter-options.php:611
|
457 |
-
#: counter-options.php:627
|
458 |
-
#, php-format
|
459 |
-
#@ cpd
|
460 |
-
msgid "Delete these %s counts"
|
461 |
-
msgstr "Bu %s sayğacları silmək"
|
462 |
-
|
463 |
-
#: counter-options.php:714
|
464 |
-
#@ cpd
|
465 |
-
msgid "Support"
|
466 |
-
msgstr "Dəstək"
|
467 |
-
|
468 |
-
#: counter-core.php:689
|
469 |
-
#, php-format
|
470 |
-
#@ cpd
|
471 |
-
msgid "Time for Count per Day: <code>%s</code>."
|
472 |
-
msgstr " Count per Day üçün vaxt: <code>%s</code>"
|
473 |
-
|
474 |
-
#: counter-core.php:690
|
475 |
-
#@ cpd
|
476 |
-
msgid "Bug? Problem? Question? Hint? Praise?"
|
477 |
-
msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
|
478 |
-
|
479 |
-
#: counter-core.php:691
|
480 |
-
#, php-format
|
481 |
-
#@ cpd
|
482 |
-
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
483 |
-
msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
|
484 |
-
|
485 |
-
#: counter.php:155
|
486 |
-
#: counter.php:1197
|
487 |
-
#@ cpd
|
488 |
-
msgid "Total reads"
|
489 |
-
msgstr "Ümumi oxunuş"
|
490 |
-
|
491 |
-
#: counter.php:156
|
492 |
-
#: counter.php:1198
|
493 |
-
#@ cpd
|
494 |
-
msgid "Reads today"
|
495 |
-
msgstr "Bu günkü oxunuş"
|
496 |
-
|
497 |
-
#: counter.php:157
|
498 |
-
#: counter.php:1199
|
499 |
-
#@ cpd
|
500 |
-
msgid "Reads yesterday"
|
501 |
-
msgstr "Dünənki oxunuş"
|
502 |
-
|
503 |
-
#: counter.php:788
|
504 |
-
#: notes.php:42
|
505 |
-
#: notes.php:76
|
506 |
-
#@ cpd
|
507 |
-
msgid "Notes"
|
508 |
-
msgstr "Qeydlər"
|
509 |
-
|
510 |
-
#: counter.php:786
|
511 |
-
#@ default
|
512 |
-
msgid "Show"
|
513 |
-
msgstr "Göstərmək"
|
514 |
-
|
515 |
-
#: counter.php:821
|
516 |
-
#@ cpd
|
517 |
-
msgid "Other"
|
518 |
-
msgstr "Digər"
|
519 |
-
|
520 |
-
#: counter.php:976
|
521 |
-
#@ default
|
522 |
-
msgid "Edit Post"
|
523 |
-
msgstr "Yazışı redaktə etmək"
|
524 |
-
|
525 |
-
#: counter.php:991
|
526 |
-
#: massbots.php:52
|
527 |
-
#: userperspan.php:63
|
528 |
-
#@ default
|
529 |
-
msgid "Front page displays"
|
530 |
-
msgstr "Əsas səhifənin göstərişi"
|
531 |
-
|
532 |
-
#: counter-core.php:733
|
533 |
-
#: counter-options.php:464
|
534 |
-
#@ cpd
|
535 |
-
msgid "Browsers"
|
536 |
-
msgstr "Brauzerlər"
|
537 |
-
|
538 |
-
#: counter-core.php:728
|
539 |
-
#@ cpd
|
540 |
-
msgid "Latest Counts"
|
541 |
-
msgstr "Yaxında keçirilmiş hesablamalar"
|
542 |
-
|
543 |
-
#: counter-core.php:730
|
544 |
-
#@ default
|
545 |
-
msgid "Plugin"
|
546 |
-
msgstr "Plagin"
|
547 |
-
|
548 |
-
#: counter-core.php:738
|
549 |
-
#@ cpd
|
550 |
-
msgid "Reads per Country"
|
551 |
-
msgstr "Ölkələr üzrə oxunuşlar"
|
552 |
-
|
553 |
-
#: counter.php:353
|
554 |
-
#: counter.php:1041
|
555 |
-
#@ cpd
|
556 |
-
msgid "Map"
|
557 |
-
msgstr "Xəritə"
|
558 |
-
|
559 |
-
#: geoip/geoip.php:93
|
560 |
-
#@ cpd
|
561 |
-
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
562 |
-
msgstr "Bağışlayın, lazım olna funksiyalar (zlib) quraşdırılmayıb yaxud php.ini.-yə daxil olmayıb"
|
563 |
-
|
564 |
-
#: geoip/geoip.php:117
|
565 |
-
#@ cpd
|
566 |
-
msgid "New GeoIP database installed."
|
567 |
-
msgstr "GeoIP-nin yeni məlumat bazası quraşdırılıb."
|
568 |
-
|
569 |
-
#: geoip/geoip.php:119
|
570 |
-
#@ cpd
|
571 |
-
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
572 |
-
msgstr "Bağışlayin. səhv oldu. Yenidən sınayın yaxud \"geoip\" - 777 papkasına keçidi yoxlayın."
|
573 |
-
|
574 |
-
#: notes.php:77
|
575 |
-
#@ default
|
576 |
-
msgid "Action"
|
577 |
-
msgstr "Hərəkət"
|
578 |
-
|
579 |
-
#: notes.php:82
|
580 |
-
#@ cpd
|
581 |
-
msgid "add"
|
582 |
-
msgstr "əlavə etmək"
|
583 |
-
|
584 |
-
#: notes.php:98
|
585 |
-
#@ cpd
|
586 |
-
msgid "save"
|
587 |
-
msgstr "yaddaşda saxlamaq"
|
588 |
-
|
589 |
-
#: notes.php:99
|
590 |
-
#@ cpd
|
591 |
-
msgid "delete"
|
592 |
-
msgstr "silmək"
|
593 |
-
|
594 |
-
#: notes.php:110
|
595 |
-
#@ cpd
|
596 |
-
msgid "edit"
|
597 |
-
msgstr "redaktə etmək"
|
598 |
-
|
599 |
-
#: counter-options.php:385
|
600 |
-
#@ cpd
|
601 |
-
msgid "Cache"
|
602 |
-
msgstr "Keş"
|
603 |
-
|
604 |
-
#: counter-options.php:386
|
605 |
-
#@ cpd
|
606 |
-
msgid "I use a cache plugin. Count these visits with ajax."
|
607 |
-
msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
|
608 |
-
|
609 |
-
#: counter-options.php:465
|
610 |
-
#@ cpd
|
611 |
-
msgid "Substring of the user agent, separated by comma"
|
612 |
-
msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
|
613 |
-
|
614 |
-
#: counter-options.php:554
|
615 |
-
#@ cpd
|
616 |
-
msgid "Debug mode"
|
617 |
-
msgstr "Düzəliş rejimi"
|
618 |
-
|
619 |
-
#: counter-options.php:556
|
620 |
-
#@ cpd
|
621 |
-
msgid "Show debug informations at the bottom of all pages."
|
622 |
-
msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
|
623 |
-
|
624 |
-
#: counter-core.php:739
|
625 |
-
#@ cpd
|
626 |
-
msgid "Visitors per Country"
|
627 |
-
msgstr "Ölkə üzrə gəlişlər"
|
628 |
-
|
629 |
-
#: userperspan.php:38
|
630 |
-
#@ cpd
|
631 |
-
msgid "Start"
|
632 |
-
msgstr "Başlamaq"
|
633 |
-
|
634 |
-
#: userperspan.php:40
|
635 |
-
#@ cpd
|
636 |
-
msgid "End"
|
637 |
-
msgstr "Son"
|
638 |
-
|
639 |
-
#: userperspan.php:42
|
640 |
-
#@ cpd
|
641 |
-
msgid "PostID"
|
642 |
-
msgstr "ID məlumatlar"
|
643 |
-
|
644 |
-
#: counter-options.php:514
|
645 |
-
#@ cpd
|
646 |
-
msgid "Add this value to \"Total reads\"."
|
647 |
-
msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
|
648 |
-
|
649 |
-
#: counter-options.php:730
|
650 |
-
#@ cpd
|
651 |
-
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
652 |
-
msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
|
653 |
-
|
654 |
-
#: userperspan.php:50
|
655 |
-
#@ cpd
|
656 |
-
msgid "no data found"
|
657 |
-
msgstr "heç bir məlumat tapılmayıb"
|
658 |
-
|
659 |
-
#: counter-options.php:351
|
660 |
-
#@ cpd
|
661 |
-
msgid "Counter"
|
662 |
-
msgstr "Sayğac"
|
663 |
-
|
664 |
-
#: counter-options.php:389
|
665 |
-
#@ cpd
|
666 |
-
msgid "Clients and referrers"
|
667 |
-
msgstr "Müştərilər və istinad olan saytlar"
|
668 |
-
|
669 |
-
#: counter-options.php:392
|
670 |
-
#@ cpd
|
671 |
-
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
672 |
-
msgstr "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
|
673 |
-
|
674 |
-
#: counter-options.php:476
|
675 |
-
#@ cpd
|
676 |
-
msgid "Local URLs"
|
677 |
-
msgstr "Lokal URL"
|
678 |
-
|
679 |
-
#: counter-options.php:477
|
680 |
-
#@ cpd
|
681 |
-
msgid "Show local referrers too."
|
682 |
-
msgstr "Lokal keçidləri də göstərmək."
|
683 |
-
|
684 |
-
#: counter-options.php:485
|
685 |
-
#@ default
|
686 |
-
msgid "Posts"
|
687 |
-
msgstr "Yazılar"
|
688 |
-
|
689 |
-
#: counter-options.php:485
|
690 |
-
#@ default
|
691 |
-
msgid "Pages"
|
692 |
-
msgstr "Səhifələr"
|
693 |
-
|
694 |
-
#: counter.php:158
|
695 |
-
#: counter.php:1200
|
696 |
-
#@ cpd
|
697 |
-
msgid "Reads last week"
|
698 |
-
msgstr "Ötən həftənin oxunuşları"
|
699 |
-
|
700 |
-
#: counter.php:985
|
701 |
-
#@ default
|
702 |
-
msgid "Category"
|
703 |
-
msgstr "Kateqoriyalar"
|
704 |
-
|
705 |
-
#: counter.php:988
|
706 |
-
#@ default
|
707 |
-
msgid "Tag"
|
708 |
-
msgstr "Teq"
|
709 |
-
|
710 |
-
#: counter-core.php:692
|
711 |
-
#@ default
|
712 |
-
msgid "License"
|
713 |
-
msgstr "Lisenziya"
|
714 |
-
|
715 |
-
#: counter-core.php:726
|
716 |
-
#: counter.php:1201
|
717 |
-
#@ cpd
|
718 |
-
msgid "Reads per month"
|
719 |
-
msgstr "Ay ərzində oxunuşlar"
|
720 |
-
|
721 |
-
#: counter-core.php:734
|
722 |
-
#@ cpd
|
723 |
-
msgid "Referrer"
|
724 |
-
msgstr "İstinad olunan sayt"
|
725 |
-
|
726 |
-
#: counter-options.php:468
|
727 |
-
#@ cpd
|
728 |
-
msgid "Referrers - Entries"
|
729 |
-
msgstr "İstenad olan saytlar - Girişlər"
|
730 |
-
|
731 |
-
#: counter-options.php:469
|
732 |
-
#@ cpd
|
733 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
734 |
-
msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
|
735 |
-
|
736 |
-
#: counter-options.php:472
|
737 |
-
#@ cpd
|
738 |
-
msgid "Referrers - Days"
|
739 |
-
msgstr "İstenad olan saytlar - Günlər"
|
740 |
-
|
741 |
-
#: counter.php:845
|
742 |
-
#, php-format
|
743 |
-
#@ cpd
|
744 |
-
msgid "The %s referrers in last %s days:"
|
745 |
-
msgstr "%s istenad olan saytlar son %s günlər:"
|
746 |
-
|
747 |
-
#: counter-core.php:724
|
748 |
-
#@ cpd
|
749 |
-
msgid "Visitors online"
|
750 |
-
msgstr "Qonaq onlayn"
|
751 |
-
|
752 |
-
#: counter.php:1220
|
753 |
-
#@ default
|
754 |
-
msgid "Title"
|
755 |
-
msgstr "Başlıq"
|
756 |
-
|
757 |
-
#: counter-core.php:186
|
758 |
-
#, php-format
|
759 |
-
#@ cpd
|
760 |
-
msgid "\"Count per Day\" updated to version %s."
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: counter-core.php:917
|
764 |
-
#@ cpd
|
765 |
-
msgid "Backup failed! Cannot open file"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: counter-core.php:940
|
769 |
-
#, php-format
|
770 |
-
#@ cpd
|
771 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: counter-core.php:1027
|
775 |
-
#@ cpd
|
776 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: counter-core.php:1033
|
780 |
-
#, php-format
|
781 |
-
#@ cpd
|
782 |
-
msgid "Backup of counter table saved in %s."
|
783 |
-
msgstr ""
|
784 |
-
|
785 |
-
#: counter-core.php:1035
|
786 |
-
#, php-format
|
787 |
-
#@ cpd
|
788 |
-
msgid "Backup of counter options and collection saved in %s."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: counter-options.php:170
|
792 |
-
#@ cpd
|
793 |
-
msgid "Collection in progress..."
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: counter-options.php:240
|
797 |
-
#@ cpd
|
798 |
-
msgid "Get Visitors per Post..."
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: counter-options.php:261
|
802 |
-
#@ cpd
|
803 |
-
msgid "Delete old data..."
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: counter-options.php:285
|
807 |
-
#, php-format
|
808 |
-
#@ cpd
|
809 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > 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-bg_BG.mo
CHANGED
Binary file
|
locale/cpd-bg_BG.po
CHANGED
@@ -19,954 +19,767 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Настройките са обновени"
|
26 |
|
27 |
-
#: counter-options.php:
|
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:
|
34 |
#@ cpd
|
35 |
msgid "update next"
|
36 |
msgstr "следващо обновяване"
|
37 |
|
38 |
-
#: counter-options.php:
|
39 |
#, php-format
|
40 |
#@ cpd
|
41 |
msgid "Mass Bots cleaned. %s counts deleted."
|
42 |
msgstr "Mass Bots са изчистени. %s броячите изтрити."
|
43 |
|
44 |
-
#: counter-options.php:
|
45 |
#, php-format
|
46 |
#@ cpd
|
47 |
msgid "Database cleaned. %s rows deleted."
|
48 |
msgstr "Базата-данни е изчистена. %s редовете са изтрити."
|
49 |
|
50 |
-
#: counter-options.php:
|
51 |
#@ cpd
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Броячът е нулиран."
|
54 |
|
55 |
-
#: counter-options.php:
|
56 |
-
#: counter-options.php:
|
57 |
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "Деинсталирай Count per Day"
|
60 |
|
61 |
-
#: counter-options.php:
|
62 |
-
#: counter-options.php:
|
63 |
-
#: counter-options.php:
|
64 |
#, php-format
|
65 |
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "Таблицата %s изтрита"
|
68 |
|
69 |
-
#: counter-options.php:
|
70 |
#@ cpd
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Настройките са изтрити"
|
73 |
|
74 |
-
#: counter-options.php:
|
75 |
-
#: counter-options.php:
|
76 |
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Деинсталиране"
|
79 |
|
80 |
-
#: counter-options.php:
|
81 |
#@ cpd
|
82 |
msgid "Click here"
|
83 |
msgstr "Натиснете тук"
|
84 |
|
85 |
-
#: counter-options.php:
|
86 |
#@ cpd
|
87 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
88 |
msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
|
89 |
|
90 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
91 |
#@ cpd
|
92 |
msgid "Counter"
|
93 |
msgstr "Брояч"
|
94 |
|
95 |
-
#: counter-options.php:
|
96 |
#@ cpd
|
97 |
msgid "Online time"
|
98 |
msgstr "Време онлайн"
|
99 |
|
100 |
-
#: counter-options.php:
|
101 |
#@ cpd
|
102 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
103 |
msgstr "Време онлайн"
|
104 |
|
105 |
-
#: counter-options.php:
|
106 |
#@ cpd
|
107 |
msgid "Logged on Users"
|
108 |
msgstr "Включени потребители"
|
109 |
|
110 |
-
#: counter-options.php:
|
111 |
#@ cpd
|
112 |
msgid "count too"
|
113 |
msgstr "преброявай също"
|
114 |
|
115 |
-
#: counter-options.php:
|
116 |
#@ cpd
|
117 |
msgid "until User Level"
|
118 |
msgstr "до нивото на потребителя"
|
119 |
|
120 |
-
#: counter-options.php:
|
121 |
#@ cpd
|
122 |
msgid "Auto counter"
|
123 |
msgstr "Автоматичен брояч"
|
124 |
|
125 |
-
#: counter-options.php:
|
126 |
#@ cpd
|
127 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
128 |
msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
|
129 |
|
130 |
-
#: counter-options.php:
|
131 |
#@ cpd
|
132 |
msgid "Bots to ignore"
|
133 |
msgstr "Игнорирай тези Ботове"
|
134 |
|
135 |
-
#: counter-options.php:
|
136 |
#@ cpd
|
137 |
msgid "Anonymous IP"
|
138 |
msgstr "Анонимно IP"
|
139 |
|
140 |
-
#: counter-options.php:
|
141 |
#@ cpd
|
142 |
msgid "Cache"
|
143 |
msgstr "Кеш"
|
144 |
|
145 |
-
#: counter-options.php:
|
146 |
#@ cpd
|
147 |
msgid "I use a cache plugin. Count these visits with ajax."
|
148 |
msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
|
149 |
|
150 |
-
#: counter-options.php:
|
151 |
#@ cpd
|
152 |
msgid "Clients and referrers"
|
153 |
msgstr "Потребители и препращащи сайтове"
|
154 |
|
155 |
-
#: counter-options.php:
|
156 |
#@ cpd
|
157 |
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
158 |
msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
|
159 |
|
160 |
-
#: counter-
|
161 |
-
#: counter
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:875
|
164 |
#@ cpd
|
165 |
msgid "Reads"
|
166 |
msgstr "Прочетени"
|
167 |
|
168 |
-
#: counter-options.php:
|
169 |
#@ default
|
170 |
msgid "Dashboard"
|
171 |
msgstr "Табло"
|
172 |
|
173 |
-
#: counter-
|
174 |
-
#: counter
|
175 |
#@ cpd
|
176 |
msgid "Visitors per post"
|
177 |
msgstr "Посетители за публикация"
|
178 |
|
179 |
-
#: counter-options.php:
|
180 |
-
#: counter-options.php:
|
181 |
#@ cpd
|
182 |
msgid "How many posts do you want to see on dashboard page?"
|
183 |
msgstr "Колко публикации искате се покажат на таблото?"
|
184 |
|
185 |
-
#: counter-options.php:
|
186 |
#@ cpd
|
187 |
msgid "Latest Counts - Posts"
|
188 |
msgstr "Последни преброявания - Публикации"
|
189 |
|
190 |
-
#: counter-options.php:
|
191 |
#@ cpd
|
192 |
msgid "Latest Counts - Days"
|
193 |
msgstr "Последни преброявания - Дни"
|
194 |
|
195 |
-
#: counter-options.php:
|
196 |
-
#: counter-options.php:
|
197 |
-
#: counter-options.php:
|
198 |
#@ cpd
|
199 |
msgid "How many days do you want look back?"
|
200 |
msgstr "Колко дни искате да бъдат показани?"
|
201 |
|
202 |
-
#: counter-options.php:
|
203 |
#@ cpd
|
204 |
msgid "Chart - Days"
|
205 |
msgstr "Графика - Дни"
|
206 |
|
207 |
-
#: counter-options.php:
|
208 |
#@ cpd
|
209 |
msgid "Chart - Height"
|
210 |
msgstr "Графика - Височина"
|
211 |
|
212 |
-
#: counter-options.php:
|
213 |
#@ cpd
|
214 |
msgid "Height of the biggest bar"
|
215 |
msgstr "Височина на най-голямото показание"
|
216 |
|
217 |
-
#: counter-options.php:
|
218 |
#@ cpd
|
219 |
msgid "Countries"
|
220 |
msgstr "Държави"
|
221 |
|
222 |
-
#: counter-options.php:
|
223 |
#@ cpd
|
224 |
msgid "How many countries do you want to see on dashboard page?"
|
225 |
msgstr "Колко държави искате да виждате на таблото?"
|
226 |
|
227 |
-
#: counter-
|
228 |
-
#: counter
|
229 |
#@ cpd
|
230 |
msgid "Browsers"
|
231 |
msgstr "Браузъри"
|
232 |
|
233 |
-
#: counter-options.php:
|
234 |
#@ cpd
|
235 |
msgid "Substring of the user agent, separated by comma"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: counter-options.php:
|
239 |
#@ cpd
|
240 |
msgid "Local URLs"
|
241 |
msgstr "Локални URLs"
|
242 |
|
243 |
-
#: counter-options.php:
|
244 |
#@ cpd
|
245 |
msgid "Show local referrers too."
|
246 |
msgstr "Покажи и местните препращащи сайтове."
|
247 |
|
248 |
-
#: counter-options.php:
|
249 |
#@ default
|
250 |
msgid "Posts"
|
251 |
msgstr "Публикации"
|
252 |
|
253 |
-
#: counter-options.php:
|
254 |
#@ default
|
255 |
msgid "Pages"
|
256 |
msgstr "Страници"
|
257 |
|
258 |
-
#: counter-options.php:
|
259 |
#@ cpd
|
260 |
msgid "Show in lists"
|
261 |
msgstr "Покажи в списъците"
|
262 |
|
263 |
-
#: counter-options.php:
|
264 |
#@ cpd
|
265 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
266 |
msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
|
267 |
|
268 |
-
#: counter-options.php:
|
269 |
#@ cpd
|
270 |
msgid "Start Values"
|
271 |
msgstr "Начални стойности"
|
272 |
|
273 |
-
#: counter-options.php:
|
274 |
#@ cpd
|
275 |
msgid "Here you can change the date of first count and add a start count."
|
276 |
msgstr "Тук можете да промените началната дата и да добавите нова дата."
|
277 |
|
278 |
-
#: counter-options.php:
|
279 |
#@ cpd
|
280 |
msgid "Start date"
|
281 |
msgstr "Начална дата"
|
282 |
|
283 |
-
#: counter-options.php:
|
284 |
#@ cpd
|
285 |
msgid "Your old Counter starts at?"
|
286 |
msgstr "Кога да стартира Вашия брояч?"
|
287 |
|
288 |
-
#: counter-options.php:
|
289 |
-
#: counter-options.php:
|
290 |
#@ cpd
|
291 |
msgid "Start count"
|
292 |
msgstr "Стартирай брояча"
|
293 |
|
294 |
-
#: counter-options.php:
|
295 |
#@ cpd
|
296 |
msgid "Add this value to \"Total visitors\"."
|
297 |
msgstr "Добави тази стойност към \"Общо посетители\"."
|
298 |
|
299 |
-
#: counter-options.php:
|
300 |
#@ cpd
|
301 |
msgid "Add this value to \"Total reads\"."
|
302 |
msgstr "Добави тази стойност към \"Общо прочетени\"."
|
303 |
|
304 |
-
#: counter-options.php:
|
305 |
#@ cpd
|
306 |
msgid "Debug mode"
|
307 |
msgstr "Дебъг режим"
|
308 |
|
309 |
-
#: counter-options.php:
|
310 |
#@ cpd
|
311 |
msgid "Show debug informations at the bottom of all pages."
|
312 |
msgstr "Покажи дебъг информация в дъното на всяка страница."
|
313 |
|
314 |
-
#: counter-options.php:
|
315 |
#@ cpd
|
316 |
msgid "Update options"
|
317 |
msgstr "Обнови настройките"
|
318 |
|
319 |
-
#: counter-options.php:
|
320 |
#@ cpd
|
321 |
msgid "GeoIP - Countries"
|
322 |
msgstr "GeoIP - Държави"
|
323 |
|
324 |
-
#: counter-options.php:
|
325 |
#@ cpd
|
326 |
msgid "Update old counter data"
|
327 |
msgstr "Обнови старите данни на брояча"
|
328 |
|
329 |
-
#: counter-options.php:
|
330 |
#@ cpd
|
331 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
332 |
msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
|
333 |
|
334 |
-
#: counter-options.php:
|
335 |
#@ cpd
|
336 |
msgid "Update GeoIP database"
|
337 |
msgstr "Обнови GeoIP базата-данни"
|
338 |
|
339 |
-
#: counter-options.php:
|
340 |
#@ cpd
|
341 |
msgid "Download a new version of GeoIP.dat file."
|
342 |
msgstr "Изтегли нова версия на GeoIP.dat."
|
343 |
|
344 |
-
#: counter-options.php:
|
345 |
#@ cpd
|
346 |
msgid "More informations about GeoIP"
|
347 |
msgstr "Повече информация за GeoIP"
|
348 |
|
349 |
-
#: counter-options.php:
|
350 |
-
#: massbots.php:
|
351 |
#@ cpd
|
352 |
msgid "Mass Bots"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: counter-options.php:
|
356 |
#, php-format
|
357 |
#@ cpd
|
358 |
msgid "Show all IPs with more than %s page views per day"
|
359 |
msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
|
360 |
|
361 |
-
#: counter-options.php:
|
362 |
-
#: notes.php:
|
363 |
-
#: userperspan.php:
|
364 |
#@ cpd
|
365 |
msgid "show"
|
366 |
msgstr "покажи"
|
367 |
|
368 |
-
#: counter-options.php:
|
369 |
#@ cpd
|
370 |
msgid "IP"
|
371 |
msgstr "IP"
|
372 |
|
373 |
-
#: counter-options.php:
|
374 |
-
#: notes.php:
|
375 |
#@ cpd
|
376 |
#@ default
|
377 |
msgid "Date"
|
378 |
msgstr "Дата"
|
379 |
|
380 |
-
#: counter-options.php:
|
381 |
#@ cpd
|
382 |
msgid "Client"
|
383 |
msgstr "Потребител"
|
384 |
|
385 |
-
#: counter-options.php:
|
386 |
#@ cpd
|
387 |
msgid "Views"
|
388 |
msgstr "Прегледи"
|
389 |
|
390 |
-
#: counter-options.php:
|
391 |
-
#: counter-options.php:
|
392 |
#, php-format
|
393 |
#@ cpd
|
394 |
msgid "Delete these %s counts"
|
395 |
msgstr "Изтрий тези %s броячи"
|
396 |
|
397 |
-
#: counter-options.php:
|
398 |
-
#: counter-options.php:
|
399 |
#@ cpd
|
400 |
msgid "Clean the database"
|
401 |
msgstr "Изчисти базата-данни"
|
402 |
|
403 |
-
#: counter-options.php:
|
404 |
#@ cpd
|
405 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
406 |
msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
|
407 |
|
408 |
-
#: counter-options.php:
|
409 |
-
#: counter-options.php:
|
410 |
#@ cpd
|
411 |
msgid "Reset the counter"
|
412 |
msgstr "Изтрий брояча"
|
413 |
|
414 |
-
#: counter-options.php:
|
415 |
#@ cpd
|
416 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
417 |
msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
|
418 |
|
419 |
-
#: counter-options.php:
|
420 |
#@ cpd
|
421 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: counter-options.php:
|
425 |
#@ cpd
|
426 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
427 |
msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
|
428 |
|
429 |
-
#: counter-options.php:
|
430 |
#@ cpd
|
431 |
msgid "WARNING"
|
432 |
msgstr "ПРЕДУПРЕЖДЕНИЕ"
|
433 |
|
434 |
-
#: counter-options.php:
|
435 |
#@ cpd
|
436 |
msgid "These tables (with ALL counter data) will be deleted."
|
437 |
msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
|
438 |
|
439 |
-
#: counter-options.php:
|
440 |
#@ cpd
|
441 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
442 |
msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
|
443 |
|
444 |
-
#: counter-options.php:
|
445 |
-
#: counter-options.php:809
|
446 |
#@ cpd
|
447 |
msgid "Yes"
|
448 |
msgstr "Да"
|
449 |
|
450 |
-
#: counter-options.php:
|
451 |
#@ cpd
|
452 |
msgid "You are sure to disable Count per Day and delete all data?"
|
453 |
msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
|
454 |
|
455 |
-
#: counter-options.php:
|
456 |
#@ cpd
|
457 |
msgid "Support"
|
458 |
msgstr "Поддръжка"
|
459 |
|
460 |
-
#: counter.php:
|
461 |
-
#: counter.php:
|
462 |
#@ cpd
|
463 |
msgid "Total reads"
|
464 |
msgstr "Общо прочетени"
|
465 |
|
466 |
-
#: counter.php:
|
467 |
-
#: counter.php:
|
468 |
#@ cpd
|
469 |
msgid "Reads today"
|
470 |
msgstr "Прочетени днес"
|
471 |
|
472 |
-
#: counter.php:
|
473 |
-
#: counter.php:
|
474 |
#@ cpd
|
475 |
msgid "Reads yesterday"
|
476 |
msgstr "Прочетени вчера"
|
477 |
|
478 |
-
#: counter.php:
|
479 |
-
#: counter.php:
|
480 |
#@ cpd
|
481 |
msgid "Reads last week"
|
482 |
msgstr "Прочетени последната седмица"
|
483 |
|
484 |
-
#: counter
|
485 |
-
#: counter.php:
|
486 |
-
#: counter.php:
|
487 |
-
#: counter.php:
|
|
|
488 |
#@ cpd
|
489 |
msgid "Total visitors"
|
490 |
msgstr "Общо посетители"
|
491 |
|
492 |
-
#: counter.php:
|
493 |
-
#: counter.php:
|
494 |
#@ cpd
|
495 |
msgid "Visitors currently online"
|
496 |
msgstr "Посетители онлайн"
|
497 |
|
498 |
-
#: counter.php:
|
499 |
-
#: counter.php:
|
500 |
#@ cpd
|
501 |
msgid "Visitors today"
|
502 |
msgstr "Посетители днес"
|
503 |
|
504 |
-
#: counter.php:
|
505 |
-
#: counter.php:
|
506 |
#@ cpd
|
507 |
msgid "Visitors yesterday"
|
508 |
msgstr "Посетители вчера"
|
509 |
|
510 |
-
#: counter.php:
|
511 |
-
#: counter.php:
|
512 |
#@ cpd
|
513 |
msgid "Visitors last week"
|
514 |
msgstr "Посетители през последната седмица"
|
515 |
|
516 |
-
#: counter
|
517 |
-
#: counter.php:
|
518 |
-
#: counter.php:
|
519 |
-
#: counter.php:
|
520 |
-
#: counter.php:
|
521 |
-
#:
|
|
|
522 |
#@ cpd
|
523 |
msgid "Visitors per day"
|
524 |
msgstr "Посетители по дни"
|
525 |
|
526 |
-
#: counter.php:
|
527 |
-
#: counter.php:
|
528 |
-
#: counter.php:1209
|
529 |
#@ cpd
|
530 |
msgid "Counter starts on"
|
531 |
msgstr "Броячът е стартиран"
|
532 |
|
533 |
-
#: counter.php:
|
534 |
-
|
535 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
536 |
#@ cpd
|
537 |
msgid "Notes"
|
538 |
msgstr "Забележки"
|
539 |
|
540 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
541 |
#, php-format
|
542 |
#@ cpd
|
543 |
msgid "The %s most visited posts in last %s days:"
|
544 |
msgstr "Най-много %s посетени публикации в последните %s дни:"
|
545 |
|
546 |
-
#: counter.php:
|
547 |
#@ default
|
548 |
msgid "Show"
|
549 |
msgstr "Покажи"
|
550 |
|
551 |
-
#: counter.php:
|
552 |
#@ cpd
|
553 |
msgid "Other"
|
554 |
msgstr "Други"
|
555 |
|
556 |
-
#: counter.php:
|
557 |
#@ default
|
558 |
msgid "Edit Post"
|
559 |
msgstr "Редактирай публикацията"
|
560 |
|
561 |
-
#: counter.php:
|
562 |
#@ default
|
563 |
msgid "Category"
|
564 |
msgstr "Категория"
|
565 |
|
566 |
-
#: counter.php:
|
567 |
#@ default
|
568 |
msgid "Tag"
|
569 |
msgstr "Таг"
|
570 |
|
571 |
-
#: counter.php:
|
572 |
-
#: massbots.php:
|
573 |
#: userperspan.php:63
|
574 |
#@ default
|
575 |
msgid "Front page displays"
|
576 |
msgstr "Изобразяване на предна страница"
|
577 |
|
578 |
-
#: counter
|
579 |
-
#: counter-options.php:341
|
580 |
-
#: counter-options.php:565
|
581 |
#@ default
|
582 |
msgid "Settings"
|
583 |
msgstr "Настройки"
|
584 |
|
585 |
-
#: counter
|
586 |
#, php-format
|
587 |
#@ cpd
|
588 |
msgid "Time for Count per Day: <code>%s</code>."
|
589 |
msgstr "Време за Count per Day: <code>%s</code>."
|
590 |
|
591 |
-
#: counter
|
592 |
#@ cpd
|
593 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
594 |
msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
|
595 |
|
596 |
-
#: counter
|
597 |
#, php-format
|
598 |
#@ cpd
|
599 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
600 |
msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
|
601 |
|
602 |
-
#: counter
|
603 |
#@ default
|
604 |
msgid "License"
|
605 |
msgstr "Лиценз"
|
606 |
|
607 |
-
#: counter.php:
|
|
|
608 |
#@ cpd
|
609 |
msgid "Reads per day"
|
610 |
msgstr "Прочетени по дни"
|
611 |
|
612 |
-
#: counter
|
613 |
-
#: counter.php:
|
614 |
#@ cpd
|
615 |
msgid "Visitors per month"
|
616 |
msgstr "Посетители по месеци"
|
617 |
|
618 |
-
#: counter
|
619 |
-
#: counter.php:
|
620 |
#@ cpd
|
621 |
msgid "Reads per month"
|
622 |
msgstr "Прочетени по месеци"
|
623 |
|
624 |
-
#: counter
|
625 |
#@ cpd
|
626 |
msgid "Latest Counts"
|
627 |
msgstr "Последни броячи"
|
628 |
|
629 |
-
#: counter
|
630 |
#@ default
|
631 |
msgid "Plugin"
|
632 |
msgstr "Разширение"
|
633 |
|
634 |
-
#: counter
|
635 |
#@ cpd
|
636 |
msgid "Referrer"
|
637 |
msgstr "Препращащ сайт"
|
638 |
|
639 |
-
#: counter
|
640 |
#@ cpd
|
641 |
msgid "Reads per Country"
|
642 |
msgstr "Прочетени по държави"
|
643 |
|
644 |
-
#: counter
|
645 |
#@ cpd
|
646 |
msgid "Visitors per Country"
|
647 |
msgstr "Посетители по държави"
|
648 |
|
649 |
-
#: counter
|
650 |
-
#: counter.php:
|
651 |
#@ cpd
|
652 |
msgid "Statistics"
|
653 |
msgstr "Статистика"
|
654 |
|
655 |
-
#: counter.php:
|
656 |
-
#: counter.php:
|
657 |
#@ cpd
|
658 |
msgid "Map"
|
659 |
msgstr "Карта"
|
660 |
|
661 |
-
#: counter.php:
|
662 |
#@ cpd
|
663 |
msgid "This post"
|
664 |
msgstr "Тази публикация"
|
665 |
|
666 |
-
#: counter.php:
|
667 |
#@ default
|
668 |
msgid "Title"
|
669 |
msgstr "Заглавие"
|
670 |
|
671 |
-
#: geoip/geoip.php:
|
672 |
#@ cpd
|
673 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
674 |
msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
|
675 |
|
676 |
-
#: geoip/geoip.php:
|
677 |
#@ cpd
|
678 |
msgid "New GeoIP database installed."
|
679 |
msgstr "Новата GeoIP база-данни е инсталирана."
|
680 |
|
681 |
-
#: geoip/geoip.php:
|
682 |
#@ cpd
|
683 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
684 |
msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
|
685 |
|
686 |
-
#: notes.php:
|
|
|
|
|
|
|
|
|
|
|
687 |
#@ default
|
688 |
msgid "Action"
|
689 |
msgstr "Действие"
|
690 |
|
691 |
-
#: notes.php:
|
692 |
#@ cpd
|
693 |
msgid "add"
|
694 |
msgstr "добави"
|
695 |
|
696 |
-
#: notes.php:
|
697 |
#@ cpd
|
698 |
msgid "save"
|
699 |
msgstr "запази"
|
700 |
|
701 |
-
#: notes.php:
|
702 |
#@ cpd
|
703 |
msgid "delete"
|
704 |
msgstr "изтрий"
|
705 |
|
706 |
-
#: notes.php:
|
707 |
#@ cpd
|
708 |
msgid "edit"
|
709 |
msgstr "редакция"
|
710 |
|
711 |
-
#: userperspan.php:
|
712 |
#@ cpd
|
713 |
msgid "Start"
|
714 |
msgstr "Начало"
|
715 |
|
716 |
-
#: userperspan.php:
|
717 |
#@ cpd
|
718 |
msgid "End"
|
719 |
msgstr "Край"
|
720 |
|
721 |
-
#: userperspan.php:
|
722 |
#@ cpd
|
723 |
msgid "PostID"
|
724 |
msgstr "PostID"
|
725 |
|
726 |
-
#: userperspan.php:
|
727 |
#@ cpd
|
728 |
msgid "no data found"
|
729 |
msgstr "няма намерени данни"
|
730 |
|
731 |
-
#: counter-options.php:
|
732 |
#@ cpd
|
733 |
-
msgid "
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: counter-options.php:
|
737 |
#@ cpd
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: counter-options.php:
|
742 |
#@ cpd
|
743 |
-
msgid "Referrers -
|
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 > 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:
|
925 |
#@ cpd
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: counter-options.php:
|
930 |
-
#, php-format
|
931 |
#@ cpd
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: counter
|
936 |
#, php-format
|
937 |
#@ cpd
|
938 |
-
msgid "
|
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:
|
969 |
#@ cpd
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:46
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Настройките са обновени"
|
26 |
|
27 |
+
#: counter-options.php:57
|
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:62
|
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 "Mass Bots са изчистени. %s броячите изтрити."
|
43 |
|
44 |
+
#: counter-options.php:111
|
45 |
#, php-format
|
46 |
#@ cpd
|
47 |
msgid "Database cleaned. %s rows deleted."
|
48 |
msgstr "Базата-данни е изчистена. %s редовете са изтрити."
|
49 |
|
50 |
+
#: counter-options.php:117
|
51 |
#@ cpd
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Броячът е нулиран."
|
54 |
|
55 |
+
#: counter-options.php:121
|
56 |
+
#: counter-options.php:496
|
57 |
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "Деинсталирай Count per Day"
|
60 |
|
61 |
+
#: counter-options.php:126
|
62 |
+
#: counter-options.php:128
|
63 |
+
#: counter-options.php:130
|
64 |
#, php-format
|
65 |
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "Таблицата %s изтрита"
|
68 |
|
69 |
+
#: counter-options.php:132
|
70 |
#@ cpd
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Настройките са изтрити"
|
73 |
|
74 |
+
#: counter-options.php:156
|
75 |
+
#: counter-options.php:481
|
76 |
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Деинсталиране"
|
79 |
|
80 |
+
#: counter-options.php:157
|
81 |
#@ cpd
|
82 |
msgid "Click here"
|
83 |
msgstr "Натиснете тук"
|
84 |
|
85 |
+
#: counter-options.php:157
|
86 |
#@ cpd
|
87 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
88 |
msgstr "за завършване на деинсталацията и деактивиране на \"Count per Day\"."
|
89 |
|
90 |
+
#: counter-options.php:179
|
91 |
+
#@ cpd
|
92 |
+
msgid "Options"
|
93 |
+
msgstr "Настройки"
|
94 |
+
|
95 |
+
#: counter-options.php:186
|
96 |
#@ cpd
|
97 |
msgid "Counter"
|
98 |
msgstr "Брояч"
|
99 |
|
100 |
+
#: counter-options.php:190
|
101 |
#@ cpd
|
102 |
msgid "Online time"
|
103 |
msgstr "Време онлайн"
|
104 |
|
105 |
+
#: counter-options.php:191
|
106 |
#@ cpd
|
107 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
108 |
msgstr "Време онлайн"
|
109 |
|
110 |
+
#: counter-options.php:194
|
111 |
#@ cpd
|
112 |
msgid "Logged on Users"
|
113 |
msgstr "Включени потребители"
|
114 |
|
115 |
+
#: counter-options.php:196
|
116 |
#@ cpd
|
117 |
msgid "count too"
|
118 |
msgstr "преброявай също"
|
119 |
|
120 |
+
#: counter-options.php:197
|
121 |
#@ cpd
|
122 |
msgid "until User Level"
|
123 |
msgstr "до нивото на потребителя"
|
124 |
|
125 |
+
#: counter-options.php:208
|
126 |
#@ cpd
|
127 |
msgid "Auto counter"
|
128 |
msgstr "Автоматичен брояч"
|
129 |
|
130 |
+
#: counter-options.php:209
|
131 |
#@ cpd
|
132 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
133 |
msgstr "Преброявай автоматично единичните публикации и страници, които нямат нужда от промяна."
|
134 |
|
135 |
+
#: counter-options.php:212
|
136 |
#@ cpd
|
137 |
msgid "Bots to ignore"
|
138 |
msgstr "Игнорирай тези Ботове"
|
139 |
|
140 |
+
#: counter-options.php:216
|
141 |
#@ cpd
|
142 |
msgid "Anonymous IP"
|
143 |
msgstr "Анонимно IP"
|
144 |
|
145 |
+
#: counter-options.php:220
|
146 |
#@ cpd
|
147 |
msgid "Cache"
|
148 |
msgstr "Кеш"
|
149 |
|
150 |
+
#: counter-options.php:221
|
151 |
#@ cpd
|
152 |
msgid "I use a cache plugin. Count these visits with ajax."
|
153 |
msgstr "Използвам кеш добавка. Преброявай тези посечения с AJAX."
|
154 |
|
155 |
+
#: counter-options.php:224
|
156 |
#@ cpd
|
157 |
msgid "Clients and referrers"
|
158 |
msgstr "Потребители и препращащи сайтове"
|
159 |
|
160 |
+
#: counter-options.php:225
|
161 |
#@ cpd
|
162 |
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."
|
163 |
msgstr "Запази и покажи потребители и препращащи сайтове.<br />Нужда от повече място в базата-данни, но това е нужно за повече информация относно Вашите потребители."
|
164 |
|
165 |
+
#: counter-options.php:225
|
166 |
+
#: counter.php:528
|
167 |
+
#: counter.php:1661
|
|
|
168 |
#@ cpd
|
169 |
msgid "Reads"
|
170 |
msgstr "Прочетени"
|
171 |
|
172 |
+
#: counter-options.php:233
|
173 |
#@ default
|
174 |
msgid "Dashboard"
|
175 |
msgstr "Табло"
|
176 |
|
177 |
+
#: counter-options.php:236
|
178 |
+
#: counter.php:1754
|
179 |
#@ cpd
|
180 |
msgid "Visitors per post"
|
181 |
msgstr "Посетители за публикация"
|
182 |
|
183 |
+
#: counter-options.php:237
|
184 |
+
#: counter-options.php:241
|
185 |
#@ cpd
|
186 |
msgid "How many posts do you want to see on dashboard page?"
|
187 |
msgstr "Колко публикации искате се покажат на таблото?"
|
188 |
|
189 |
+
#: counter-options.php:240
|
190 |
#@ cpd
|
191 |
msgid "Latest Counts - Posts"
|
192 |
msgstr "Последни преброявания - Публикации"
|
193 |
|
194 |
+
#: counter-options.php:244
|
195 |
#@ cpd
|
196 |
msgid "Latest Counts - Days"
|
197 |
msgstr "Последни преброявания - Дни"
|
198 |
|
199 |
+
#: counter-options.php:245
|
200 |
+
#: counter-options.php:249
|
201 |
+
#: counter-options.php:275
|
202 |
#@ cpd
|
203 |
msgid "How many days do you want look back?"
|
204 |
msgstr "Колко дни искате да бъдат показани?"
|
205 |
|
206 |
+
#: counter-options.php:248
|
207 |
#@ cpd
|
208 |
msgid "Chart - Days"
|
209 |
msgstr "Графика - Дни"
|
210 |
|
211 |
+
#: counter-options.php:252
|
212 |
#@ cpd
|
213 |
msgid "Chart - Height"
|
214 |
msgstr "Графика - Височина"
|
215 |
|
216 |
+
#: counter-options.php:253
|
217 |
#@ cpd
|
218 |
msgid "Height of the biggest bar"
|
219 |
msgstr "Височина на най-голямото показание"
|
220 |
|
221 |
+
#: counter-options.php:261
|
222 |
#@ cpd
|
223 |
msgid "Countries"
|
224 |
msgstr "Държави"
|
225 |
|
226 |
+
#: counter-options.php:262
|
227 |
#@ cpd
|
228 |
msgid "How many countries do you want to see on dashboard page?"
|
229 |
msgstr "Колко държави искате да виждате на таблото?"
|
230 |
|
231 |
+
#: counter-options.php:266
|
232 |
+
#: counter.php:1760
|
233 |
#@ cpd
|
234 |
msgid "Browsers"
|
235 |
msgstr "Браузъри"
|
236 |
|
237 |
+
#: counter-options.php:267
|
238 |
#@ cpd
|
239 |
msgid "Substring of the user agent, separated by comma"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: counter-options.php:278
|
243 |
#@ cpd
|
244 |
msgid "Local URLs"
|
245 |
msgstr "Локални URLs"
|
246 |
|
247 |
+
#: counter-options.php:279
|
248 |
#@ cpd
|
249 |
msgid "Show local referrers too."
|
250 |
msgstr "Покажи и местните препращащи сайтове."
|
251 |
|
252 |
+
#: counter-options.php:287
|
253 |
#@ default
|
254 |
msgid "Posts"
|
255 |
msgstr "Публикации"
|
256 |
|
257 |
+
#: counter-options.php:287
|
258 |
#@ default
|
259 |
msgid "Pages"
|
260 |
msgstr "Страници"
|
261 |
|
262 |
+
#: counter-options.php:290
|
263 |
#@ cpd
|
264 |
msgid "Show in lists"
|
265 |
msgstr "Покажи в списъците"
|
266 |
|
267 |
+
#: counter-options.php:291
|
268 |
#@ cpd
|
269 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
270 |
msgstr "Покажи \"Прочитания за Публикация\" в нова колона при изгледа."
|
271 |
|
272 |
+
#: counter-options.php:299
|
273 |
#@ cpd
|
274 |
msgid "Start Values"
|
275 |
msgstr "Начални стойности"
|
276 |
|
277 |
+
#: counter-options.php:303
|
278 |
#@ cpd
|
279 |
msgid "Here you can change the date of first count and add a start count."
|
280 |
msgstr "Тук можете да промените началната дата и да добавите нова дата."
|
281 |
|
282 |
+
#: counter-options.php:307
|
283 |
#@ cpd
|
284 |
msgid "Start date"
|
285 |
msgstr "Начална дата"
|
286 |
|
287 |
+
#: counter-options.php:308
|
288 |
#@ cpd
|
289 |
msgid "Your old Counter starts at?"
|
290 |
msgstr "Кога да стартира Вашия брояч?"
|
291 |
|
292 |
+
#: counter-options.php:311
|
293 |
+
#: counter-options.php:315
|
294 |
#@ cpd
|
295 |
msgid "Start count"
|
296 |
msgstr "Стартирай брояча"
|
297 |
|
298 |
+
#: counter-options.php:312
|
299 |
#@ cpd
|
300 |
msgid "Add this value to \"Total visitors\"."
|
301 |
msgstr "Добави тази стойност към \"Общо посетители\"."
|
302 |
|
303 |
+
#: counter-options.php:316
|
304 |
#@ cpd
|
305 |
msgid "Add this value to \"Total reads\"."
|
306 |
msgstr "Добави тази стойност към \"Общо прочетени\"."
|
307 |
|
308 |
+
#: counter-options.php:324
|
309 |
#@ cpd
|
310 |
msgid "Debug mode"
|
311 |
msgstr "Дебъг режим"
|
312 |
|
313 |
+
#: counter-options.php:326
|
314 |
#@ cpd
|
315 |
msgid "Show debug informations at the bottom of all pages."
|
316 |
msgstr "Покажи дебъг информация в дъното на всяка страница."
|
317 |
|
318 |
+
#: counter-options.php:331
|
319 |
#@ cpd
|
320 |
msgid "Update options"
|
321 |
msgstr "Обнови настройките"
|
322 |
|
323 |
+
#: counter-options.php:340
|
324 |
#@ cpd
|
325 |
msgid "GeoIP - Countries"
|
326 |
msgstr "GeoIP - Държави"
|
327 |
|
328 |
+
#: counter-options.php:349
|
329 |
#@ cpd
|
330 |
msgid "Update old counter data"
|
331 |
msgstr "Обнови старите данни на брояча"
|
332 |
|
333 |
+
#: counter-options.php:352
|
334 |
#@ cpd
|
335 |
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!"
|
336 |
msgstr "Можете да видите информация за държавите в базата-данни чрез проверка на IP адрес и GeoIP базата-данни. Това може да отнеме известно време!"
|
337 |
|
338 |
+
#: counter-options.php:362
|
339 |
#@ cpd
|
340 |
msgid "Update GeoIP database"
|
341 |
msgstr "Обнови GeoIP базата-данни"
|
342 |
|
343 |
+
#: counter-options.php:365
|
344 |
#@ cpd
|
345 |
msgid "Download a new version of GeoIP.dat file."
|
346 |
msgstr "Изтегли нова версия на GeoIP.dat."
|
347 |
|
348 |
+
#: counter-options.php:371
|
349 |
#@ cpd
|
350 |
msgid "More informations about GeoIP"
|
351 |
msgstr "Повече информация за GeoIP"
|
352 |
|
353 |
+
#: counter-options.php:386
|
354 |
+
#: massbots.php:33
|
355 |
#@ cpd
|
356 |
msgid "Mass Bots"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: counter-options.php:390
|
360 |
#, php-format
|
361 |
#@ cpd
|
362 |
msgid "Show all IPs with more than %s page views per day"
|
363 |
msgstr "Покажи всички IP адреси с най-много %s page преглеждания на ден"
|
364 |
|
365 |
+
#: counter-options.php:391
|
366 |
+
#: notes.php:76
|
367 |
+
#: userperspan.php:43
|
368 |
#@ cpd
|
369 |
msgid "show"
|
370 |
msgstr "покажи"
|
371 |
|
372 |
+
#: counter-options.php:399
|
373 |
#@ cpd
|
374 |
msgid "IP"
|
375 |
msgstr "IP"
|
376 |
|
377 |
+
#: counter-options.php:400
|
378 |
+
#: notes.php:80
|
379 |
#@ cpd
|
380 |
#@ default
|
381 |
msgid "Date"
|
382 |
msgstr "Дата"
|
383 |
|
384 |
+
#: counter-options.php:401
|
385 |
#@ cpd
|
386 |
msgid "Client"
|
387 |
msgstr "Потребител"
|
388 |
|
389 |
+
#: counter-options.php:402
|
390 |
#@ cpd
|
391 |
msgid "Views"
|
392 |
msgstr "Прегледи"
|
393 |
|
394 |
+
#: counter-options.php:413
|
395 |
+
#: counter-options.php:435
|
396 |
#, php-format
|
397 |
#@ cpd
|
398 |
msgid "Delete these %s counts"
|
399 |
msgstr "Изтрий тези %s броячи"
|
400 |
|
401 |
+
#: counter-options.php:445
|
402 |
+
#: counter-options.php:454
|
403 |
#@ cpd
|
404 |
msgid "Clean the database"
|
405 |
msgstr "Изчисти базата-данни"
|
406 |
|
407 |
+
#: counter-options.php:448
|
408 |
#@ cpd
|
409 |
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."
|
410 |
msgstr "Можете да изчистите базата-данни чрез изтриване на \"spam data\".<br />Ако добавите нови ботове \"spam data\" запазете базата-данни.<br />Тук можете да стартирате бот-филтъра отново и да изтриете ботовете."
|
411 |
|
412 |
+
#: counter-options.php:463
|
413 |
+
#: counter-options.php:472
|
414 |
#@ cpd
|
415 |
msgid "Reset the counter"
|
416 |
msgstr "Изтрий брояча"
|
417 |
|
418 |
+
#: counter-options.php:466
|
419 |
#@ cpd
|
420 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
421 |
msgstr "Можете да нулирате брояча чрез изтриване на таблицата. ALL TO 0!<br />Направете резервно копие, ако имате нужда от данните!"
|
422 |
|
423 |
+
#: counter-options.php:484
|
424 |
#@ cpd
|
425 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: counter-options.php:485
|
429 |
#@ cpd
|
430 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
431 |
msgstr "Тук можете да изтриете таблиците и да забраните \"Count per Day\"."
|
432 |
|
433 |
+
#: counter-options.php:488
|
434 |
#@ cpd
|
435 |
msgid "WARNING"
|
436 |
msgstr "ПРЕДУПРЕЖДЕНИЕ"
|
437 |
|
438 |
+
#: counter-options.php:489
|
439 |
#@ cpd
|
440 |
msgid "These tables (with ALL counter data) will be deleted."
|
441 |
msgstr "Тези таблици (с всички данни на брояча) ще бъдат изтрити."
|
442 |
|
443 |
+
#: counter-options.php:491
|
444 |
#@ cpd
|
445 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
446 |
msgstr "Ако \"Count per Day\" преинсталирате , брояча ще стартира от 0."
|
447 |
|
448 |
+
#: counter-options.php:495
|
|
|
449 |
#@ cpd
|
450 |
msgid "Yes"
|
451 |
msgstr "Да"
|
452 |
|
453 |
+
#: counter-options.php:496
|
454 |
#@ cpd
|
455 |
msgid "You are sure to disable Count per Day and delete all data?"
|
456 |
msgstr "Сигурни ли сте, че искате да забраните Count per Day и да изтриете всички данни?"
|
457 |
|
458 |
+
#: counter-options.php:504
|
459 |
#@ cpd
|
460 |
msgid "Support"
|
461 |
msgstr "Поддръжка"
|
462 |
|
463 |
+
#: counter.php:524
|
464 |
+
#: counter.php:2219
|
465 |
#@ cpd
|
466 |
msgid "Total reads"
|
467 |
msgstr "Общо прочетени"
|
468 |
|
469 |
+
#: counter.php:525
|
470 |
+
#: counter.php:2220
|
471 |
#@ cpd
|
472 |
msgid "Reads today"
|
473 |
msgstr "Прочетени днес"
|
474 |
|
475 |
+
#: counter.php:526
|
476 |
+
#: counter.php:2221
|
477 |
#@ cpd
|
478 |
msgid "Reads yesterday"
|
479 |
msgstr "Прочетени вчера"
|
480 |
|
481 |
+
#: counter.php:527
|
482 |
+
#: counter.php:2222
|
483 |
#@ cpd
|
484 |
msgid "Reads last week"
|
485 |
msgstr "Прочетени последната седмица"
|
486 |
|
487 |
+
#: counter.php:529
|
488 |
+
#: counter.php:534
|
489 |
+
#: counter.php:1604
|
490 |
+
#: counter.php:1750
|
491 |
+
#: counter.php:2224
|
492 |
#@ cpd
|
493 |
msgid "Total visitors"
|
494 |
msgstr "Общо посетители"
|
495 |
|
496 |
+
#: counter.php:530
|
497 |
+
#: counter.php:2230
|
498 |
#@ cpd
|
499 |
msgid "Visitors currently online"
|
500 |
msgstr "Посетители онлайн"
|
501 |
|
502 |
+
#: counter.php:531
|
503 |
+
#: counter.php:2225
|
504 |
#@ cpd
|
505 |
msgid "Visitors today"
|
506 |
msgstr "Посетители днес"
|
507 |
|
508 |
+
#: counter.php:532
|
509 |
+
#: counter.php:2226
|
510 |
#@ cpd
|
511 |
msgid "Visitors yesterday"
|
512 |
msgstr "Посетители вчера"
|
513 |
|
514 |
+
#: counter.php:533
|
515 |
+
#: counter.php:2227
|
516 |
#@ cpd
|
517 |
msgid "Visitors last week"
|
518 |
msgstr "Посетители през последната седмица"
|
519 |
|
520 |
+
#: counter.php:535
|
521 |
+
#: counter.php:636
|
522 |
+
#: counter.php:1606
|
523 |
+
#: counter.php:1756
|
524 |
+
#: counter.php:1765
|
525 |
+
#: counter.php:2229
|
526 |
+
#: userperspan.php:33
|
527 |
#@ cpd
|
528 |
msgid "Visitors per day"
|
529 |
msgstr "Посетители по дни"
|
530 |
|
531 |
+
#: counter.php:536
|
532 |
+
#: counter.php:2231
|
|
|
533 |
#@ cpd
|
534 |
msgid "Counter starts on"
|
535 |
msgstr "Броячът е стартиран"
|
536 |
|
537 |
+
#: counter.php:819
|
538 |
+
#@ cpd
|
539 |
+
msgid "days"
|
540 |
+
msgstr "дни"
|
541 |
+
|
542 |
+
#: counter.php:822
|
543 |
+
#: counter.php:1376
|
544 |
+
#: notes.php:47
|
545 |
+
#: notes.php:81
|
546 |
#@ cpd
|
547 |
msgid "Notes"
|
548 |
msgstr "Забележки"
|
549 |
|
550 |
+
#: counter.php:845
|
551 |
+
#@ cpd
|
552 |
+
msgid "no reads at this time"
|
553 |
+
msgstr "Няма прочитания до момента"
|
554 |
+
|
555 |
+
#: counter.php:1257
|
556 |
#, php-format
|
557 |
#@ cpd
|
558 |
msgid "The %s most visited posts in last %s days:"
|
559 |
msgstr "Най-много %s посетени публикации в последните %s дни:"
|
560 |
|
561 |
+
#: counter.php:1374
|
562 |
#@ default
|
563 |
msgid "Show"
|
564 |
msgstr "Покажи"
|
565 |
|
566 |
+
#: counter.php:1421
|
567 |
#@ cpd
|
568 |
msgid "Other"
|
569 |
msgstr "Други"
|
570 |
|
571 |
+
#: counter.php:1505
|
572 |
#@ default
|
573 |
msgid "Edit Post"
|
574 |
msgstr "Редактирай публикацията"
|
575 |
|
576 |
+
#: counter.php:1514
|
577 |
#@ default
|
578 |
msgid "Category"
|
579 |
msgstr "Категория"
|
580 |
|
581 |
+
#: counter.php:1517
|
582 |
#@ default
|
583 |
msgid "Tag"
|
584 |
msgstr "Таг"
|
585 |
|
586 |
+
#: counter.php:1520
|
587 |
+
#: massbots.php:50
|
588 |
#: userperspan.php:63
|
589 |
#@ default
|
590 |
msgid "Front page displays"
|
591 |
msgstr "Изобразяване на предна страница"
|
592 |
|
593 |
+
#: counter.php:1591
|
|
|
|
|
594 |
#@ default
|
595 |
msgid "Settings"
|
596 |
msgstr "Настройки"
|
597 |
|
598 |
+
#: counter.php:1716
|
599 |
#, php-format
|
600 |
#@ cpd
|
601 |
msgid "Time for Count per Day: <code>%s</code>."
|
602 |
msgstr "Време за Count per Day: <code>%s</code>."
|
603 |
|
604 |
+
#: counter.php:1717
|
605 |
#@ cpd
|
606 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
607 |
msgstr "Бъг? Проблем? Въпрос? Намек? Цена?"
|
608 |
|
609 |
+
#: counter.php:1718
|
610 |
#, php-format
|
611 |
#@ cpd
|
612 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
613 |
msgstr "Добави коментар на <a href=\"%s\">plugin page</a>."
|
614 |
|
615 |
+
#: counter.php:1719
|
616 |
#@ default
|
617 |
msgid "License"
|
618 |
msgstr "Лиценз"
|
619 |
|
620 |
+
#: counter.php:635
|
621 |
+
#: counter.php:1766
|
622 |
#@ cpd
|
623 |
msgid "Reads per day"
|
624 |
msgstr "Прочетени по дни"
|
625 |
|
626 |
+
#: counter.php:1752
|
627 |
+
#: counter.php:2228
|
628 |
#@ cpd
|
629 |
msgid "Visitors per month"
|
630 |
msgstr "Посетители по месеци"
|
631 |
|
632 |
+
#: counter.php:1753
|
633 |
+
#: counter.php:2223
|
634 |
#@ cpd
|
635 |
msgid "Reads per month"
|
636 |
msgstr "Прочетени по месеци"
|
637 |
|
638 |
+
#: counter.php:1755
|
639 |
#@ cpd
|
640 |
msgid "Latest Counts"
|
641 |
msgstr "Последни броячи"
|
642 |
|
643 |
+
#: counter.php:1757
|
644 |
#@ default
|
645 |
msgid "Plugin"
|
646 |
msgstr "Разширение"
|
647 |
|
648 |
+
#: counter.php:1761
|
649 |
#@ cpd
|
650 |
msgid "Referrer"
|
651 |
msgstr "Препращащ сайт"
|
652 |
|
653 |
+
#: counter.php:1770
|
654 |
#@ cpd
|
655 |
msgid "Reads per Country"
|
656 |
msgstr "Прочетени по държави"
|
657 |
|
658 |
+
#: counter.php:1771
|
659 |
#@ cpd
|
660 |
msgid "Visitors per Country"
|
661 |
msgstr "Посетители по държави"
|
662 |
|
663 |
+
#: counter.php:1786
|
664 |
+
#: counter.php:2147
|
665 |
#@ cpd
|
666 |
msgid "Statistics"
|
667 |
msgstr "Статистика"
|
668 |
|
669 |
+
#: counter.php:900
|
670 |
+
#: counter.php:1856
|
671 |
#@ cpd
|
672 |
msgid "Map"
|
673 |
msgstr "Карта"
|
674 |
|
675 |
+
#: counter.php:2218
|
676 |
#@ cpd
|
677 |
msgid "This post"
|
678 |
msgstr "Тази публикация"
|
679 |
|
680 |
+
#: counter.php:2242
|
681 |
#@ default
|
682 |
msgid "Title"
|
683 |
msgstr "Заглавие"
|
684 |
|
685 |
+
#: geoip/geoip.php:108
|
686 |
#@ cpd
|
687 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
688 |
msgstr "За съжаление функцията (zlib) не е инсталирана или включена в php.ini."
|
689 |
|
690 |
+
#: geoip/geoip.php:132
|
691 |
#@ cpd
|
692 |
msgid "New GeoIP database installed."
|
693 |
msgstr "Новата GeoIP база-данни е инсталирана."
|
694 |
|
695 |
+
#: geoip/geoip.php:134
|
696 |
#@ cpd
|
697 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
698 |
msgstr "За съжаление възникна грешка. Опитайте отново или проверете дали правата на папка \"geoip\" е 777."
|
699 |
|
700 |
+
#: notes.php:81
|
701 |
+
#@ cpd
|
702 |
+
msgid "(1 per day)"
|
703 |
+
msgstr "(1 per day)"
|
704 |
+
|
705 |
+
#: notes.php:82
|
706 |
#@ default
|
707 |
msgid "Action"
|
708 |
msgstr "Действие"
|
709 |
|
710 |
+
#: notes.php:87
|
711 |
#@ cpd
|
712 |
msgid "add"
|
713 |
msgstr "добави"
|
714 |
|
715 |
+
#: notes.php:102
|
716 |
#@ cpd
|
717 |
msgid "save"
|
718 |
msgstr "запази"
|
719 |
|
720 |
+
#: notes.php:103
|
721 |
#@ cpd
|
722 |
msgid "delete"
|
723 |
msgstr "изтрий"
|
724 |
|
725 |
+
#: notes.php:114
|
726 |
#@ cpd
|
727 |
msgid "edit"
|
728 |
msgstr "редакция"
|
729 |
|
730 |
+
#: userperspan.php:37
|
731 |
#@ cpd
|
732 |
msgid "Start"
|
733 |
msgstr "Начало"
|
734 |
|
735 |
+
#: userperspan.php:39
|
736 |
#@ cpd
|
737 |
msgid "End"
|
738 |
msgstr "Край"
|
739 |
|
740 |
+
#: userperspan.php:41
|
741 |
#@ cpd
|
742 |
msgid "PostID"
|
743 |
msgstr "PostID"
|
744 |
|
745 |
+
#: userperspan.php:49
|
746 |
#@ cpd
|
747 |
msgid "no data found"
|
748 |
msgstr "няма намерени данни"
|
749 |
|
750 |
+
#: counter-options.php:256
|
751 |
#@ cpd
|
752 |
+
msgid "Old Charts"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: counter-options.php:257
|
756 |
#@ cpd
|
757 |
+
msgid "Show old bar charts."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: counter-options.php:270
|
761 |
#@ cpd
|
762 |
+
msgid "Referrers - Entries"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: counter-options.php:271
|
766 |
#@ cpd
|
767 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: counter-options.php:274
|
|
|
771 |
#@ cpd
|
772 |
+
msgid "Referrers - Days"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: counter.php:1449
|
776 |
#, php-format
|
777 |
#@ cpd
|
778 |
+
msgid "The %s referrers in last %s days:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: counter.php:1751
|
782 |
#@ cpd
|
783 |
+
msgid "Visitors online"
|
784 |
msgstr ""
|
785 |
|
locale/cpd-da_DK.mo
CHANGED
Binary file
|
locale/cpd-da_DK.po
CHANGED
@@ -5,7 +5,6 @@ msgstr ""
|
|
5 |
"POT-Creation-Date: 2010-08-10 20:10+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Jonas Thomsen <mail@jonasthomsen.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,961 +12,774 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Danish\n"
|
14 |
"X-Poedit-Country: DENMARK\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
"X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
|
18 |
-
"X-
|
|
|
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'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 |
-
|
|
|
|
|
|
|
|
|
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 > 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 |
-
|
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 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Poedit-Language: Danish\n"
|
13 |
"X-Poedit-Country: DENMARK\n"
|
14 |
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"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"
|
16 |
"X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
|
17 |
+
"X-Textdomain-Support: yes\n"
|
18 |
+
"Language-Team: \n"
|
19 |
"X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
|
|
|
20 |
|
|
|
21 |
#@ cpd
|
22 |
+
#: counter-options.php:46
|
23 |
msgid "Options updated"
|
24 |
msgstr "Indstillingerne er blevet gemt"
|
25 |
|
|
|
|
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:57
|
28 |
+
#, php-format
|
29 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
30 |
msgstr "Lande opdateret <b>%s</b> poster i %s har stadig ingen angivelse af land."
|
31 |
|
|
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:62
|
34 |
msgid "update next"
|
35 |
msgstr "opdatér næste"
|
36 |
|
|
|
|
|
37 |
#@ cpd
|
38 |
+
#: counter-options.php:104
|
39 |
+
#, php-format
|
40 |
msgid "Mass Bots cleaned. %s counts deleted."
|
41 |
msgstr "Massebots renset. %s rækker slettet."
|
42 |
|
|
|
|
|
43 |
#@ cpd
|
44 |
+
#: counter-options.php:111
|
45 |
+
#, php-format
|
46 |
msgid "Database cleaned. %s rows deleted."
|
47 |
msgstr "Databasen renset. %s rækker slettet."
|
48 |
|
|
|
49 |
#@ cpd
|
50 |
+
#: counter-options.php:117
|
51 |
msgid "Counter reseted."
|
52 |
msgstr "Tæller nulstillet."
|
53 |
|
|
|
|
|
54 |
#@ cpd
|
55 |
+
#: counter-options.php:121
|
56 |
+
#: counter-options.php:496
|
57 |
msgid "UNINSTALL Count per Day"
|
58 |
msgstr "AFINSTALLÉR Count per Day"
|
59 |
|
|
|
|
|
|
|
|
|
60 |
#@ cpd
|
61 |
+
#: counter-options.php:126
|
62 |
+
#: counter-options.php:128
|
63 |
+
#: counter-options.php:130
|
64 |
+
#, php-format
|
65 |
msgid "Table %s deleted"
|
66 |
msgstr "Tabellen %s blev slettet"
|
67 |
|
|
|
68 |
#@ cpd
|
69 |
+
#: counter-options.php:132
|
70 |
msgid "Options deleted"
|
71 |
msgstr "Indstillinger slettet"
|
72 |
|
|
|
|
|
73 |
#@ cpd
|
74 |
+
#: counter-options.php:156
|
75 |
+
#: counter-options.php:481
|
76 |
msgid "Uninstall"
|
77 |
msgstr "Afinstallér"
|
78 |
|
|
|
79 |
#@ cpd
|
80 |
+
#: counter-options.php:157
|
81 |
msgid "Click here"
|
82 |
msgstr "Klik her"
|
83 |
|
|
|
84 |
#@ cpd
|
85 |
+
#: counter-options.php:157
|
86 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
87 |
msgstr "for at færdiggøre afinstalleringen og deaktivere \"Count per Day\"."
|
88 |
|
|
|
89 |
#@ cpd
|
90 |
+
#: counter-options.php:179
|
91 |
+
msgid "Options"
|
92 |
+
msgstr "Indstillinger"
|
93 |
+
|
94 |
+
#@ cpd
|
95 |
+
#: counter-options.php:190
|
96 |
msgid "Online time"
|
97 |
msgstr "Tid online"
|
98 |
|
|
|
99 |
#@ cpd
|
100 |
+
#: counter-options.php:191
|
101 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
102 |
msgstr "Sekunder for online-tæller. Bruges om \"Besøgende online\" i kontrolpanelet."
|
103 |
|
|
|
104 |
#@ cpd
|
105 |
+
#: counter-options.php:194
|
106 |
msgid "Logged on Users"
|
107 |
msgstr "Indloggede brugere"
|
108 |
|
|
|
109 |
#@ cpd
|
110 |
+
#: counter-options.php:196
|
111 |
msgid "count too"
|
112 |
msgstr "tæl også"
|
113 |
|
|
|
114 |
#@ cpd
|
115 |
+
#: counter-options.php:197
|
116 |
msgid "until User Level"
|
117 |
msgstr "til og med brugerniveau"
|
118 |
|
|
|
119 |
#@ cpd
|
120 |
+
#: counter-options.php:208
|
121 |
msgid "Auto counter"
|
122 |
msgstr "Auto-tæller"
|
123 |
|
|
|
124 |
#@ cpd
|
125 |
+
#: counter-options.php:209
|
126 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
127 |
msgstr "Tæller automatisk enkelt-indlæg og -sider; kræver ingen ændringer i skabeloner."
|
128 |
|
|
|
129 |
#@ cpd
|
130 |
+
#: counter-options.php:212
|
131 |
msgid "Bots to ignore"
|
132 |
msgstr "Ignorér følgende bots"
|
133 |
|
|
|
134 |
#@ cpd
|
135 |
+
#: counter-options.php:216
|
136 |
msgid "Anonymous IP"
|
137 |
msgstr "Anonymt IP-nummer"
|
138 |
|
|
|
139 |
#@ cpd
|
140 |
+
#: counter-options.php:220
|
141 |
msgid "Cache"
|
142 |
msgstr "Cache"
|
143 |
|
|
|
144 |
#@ cpd
|
145 |
+
#: counter-options.php:221
|
146 |
msgid "I use a cache plugin. Count these visits with ajax."
|
147 |
msgstr "Jeg bruger et cache-plugin. Tæl disse besøg med Ajax."
|
148 |
|
|
|
149 |
#@ cpd
|
150 |
+
#: counter-options.php:331
|
151 |
msgid "Update options"
|
152 |
msgstr "Opdatér indstillinger"
|
153 |
|
|
|
154 |
#@ default
|
155 |
+
#: counter-options.php:233
|
156 |
msgid "Dashboard"
|
157 |
msgstr "Kontrolpanel"
|
158 |
|
|
|
|
|
159 |
#@ cpd
|
160 |
+
#: counter-options.php:236
|
161 |
+
#: counter.php:1754
|
162 |
msgid "Visitors per post"
|
163 |
msgstr "Besøgende per indlæg"
|
164 |
|
|
|
|
|
165 |
#@ cpd
|
166 |
+
#: counter-options.php:237
|
167 |
+
#: counter-options.php:241
|
168 |
msgid "How many posts do you want to see on dashboard page?"
|
169 |
msgstr "Hvor mange indlæg vil du se på kontrolpanel"
|
170 |
|
|
|
171 |
#@ cpd
|
172 |
+
#: counter-options.php:240
|
173 |
msgid "Latest Counts - Posts"
|
174 |
msgstr "Seneste læste - Indlæg"
|
175 |
|
|
|
176 |
#@ cpd
|
177 |
+
#: counter-options.php:244
|
178 |
msgid "Latest Counts - Days"
|
179 |
msgstr "Seneste læste - Dage"
|
180 |
|
|
|
|
|
|
|
181 |
#@ cpd
|
182 |
+
#: counter-options.php:245
|
183 |
+
#: counter-options.php:249
|
184 |
+
#: counter-options.php:275
|
185 |
msgid "How many days do you want look back?"
|
186 |
msgstr "Hvor mange dage vil du se tilbage?"
|
187 |
|
|
|
188 |
#@ cpd
|
189 |
+
#: counter-options.php:248
|
190 |
msgid "Chart - Days"
|
191 |
msgstr "Diagram - Dage"
|
192 |
|
|
|
193 |
#@ cpd
|
194 |
+
#: counter-options.php:252
|
195 |
msgid "Chart - Height"
|
196 |
msgstr "Diagram - Højde"
|
197 |
|
|
|
198 |
#@ cpd
|
199 |
+
#: counter-options.php:253
|
200 |
msgid "Height of the biggest bar"
|
201 |
msgstr "Højde på den største søjle"
|
202 |
|
|
|
203 |
#@ cpd
|
204 |
+
#: counter-options.php:261
|
205 |
msgid "Countries"
|
206 |
msgstr "Lande"
|
207 |
|
|
|
208 |
#@ cpd
|
209 |
+
#: counter-options.php:262
|
210 |
msgid "How many countries do you want to see on dashboard page?"
|
211 |
msgstr "Hvor mange lande vil du se på pluginnets side i kontrolpanelet"
|
212 |
|
|
|
|
|
213 |
#@ cpd
|
214 |
+
#: counter-options.php:266
|
215 |
+
#: counter.php:1760
|
216 |
msgid "Browsers"
|
217 |
msgstr "Browsere"
|
218 |
|
|
|
219 |
#@ cpd
|
220 |
+
#: counter-options.php:267
|
221 |
msgid "Substring of the user agent, separated by comma"
|
222 |
msgstr "Delstrenge, der identificerer en browser, kommasepareret"
|
223 |
|
|
|
224 |
#@ cpd
|
225 |
+
#: counter-options.php:290
|
226 |
msgid "Show in lists"
|
227 |
msgstr "Vis som liste"
|
228 |
|
|
|
229 |
#@ cpd
|
230 |
+
#: counter-options.php:291
|
231 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
232 |
msgstr "Vis \"Læst pr. indlæg\" i en ny kolonne på Redigér indlæg-siden."
|
233 |
|
|
|
234 |
#@ cpd
|
235 |
+
#: counter-options.php:299
|
236 |
msgid "Start Values"
|
237 |
msgstr "Startværdier"
|
238 |
|
|
|
239 |
#@ cpd
|
240 |
+
#: counter-options.php:303
|
241 |
msgid "Here you can change the date of first count and add a start count."
|
242 |
msgstr "Her kan du ændre datoen på første tæller og tilføje en starttæller."
|
243 |
|
|
|
244 |
#@ cpd
|
245 |
+
#: counter-options.php:307
|
246 |
msgid "Start date"
|
247 |
msgstr "Startdato"
|
248 |
|
|
|
249 |
#@ cpd
|
250 |
+
#: counter-options.php:308
|
251 |
msgid "Your old Counter starts at?"
|
252 |
msgstr "Hvornår starter din gamle tæller?"
|
253 |
|
|
|
|
|
254 |
#@ cpd
|
255 |
+
#: counter-options.php:311
|
256 |
+
#: counter-options.php:315
|
257 |
msgid "Start count"
|
258 |
msgstr "Start-tæller"
|
259 |
|
|
|
260 |
#@ cpd
|
261 |
+
#: counter-options.php:312
|
262 |
msgid "Add this value to \"Total visitors\"."
|
263 |
msgstr "Tilføj denne værdi til \"Besøgende i alt\"."
|
264 |
|
|
|
265 |
#@ cpd
|
266 |
+
#: counter-options.php:316
|
267 |
msgid "Add this value to \"Total reads\"."
|
268 |
msgstr "Tilføj denne værdi til \"Læst i alt\"."
|
269 |
|
|
|
270 |
#@ cpd
|
271 |
+
#: counter-options.php:324
|
272 |
msgid "Debug mode"
|
273 |
msgstr "Debug-modus"
|
274 |
|
|
|
275 |
#@ cpd
|
276 |
+
#: counter-options.php:326
|
277 |
msgid "Show debug informations at the bottom of all pages."
|
278 |
msgstr "Vis debug-information i bunden af alle sider."
|
279 |
|
|
|
280 |
#@ cpd
|
281 |
+
#: counter-options.php:340
|
282 |
msgid "GeoIP - Countries"
|
283 |
msgstr "GeoIP - Lande"
|
284 |
|
|
|
285 |
#@ cpd
|
286 |
+
#: counter-options.php:349
|
287 |
msgid "Update old counter data"
|
288 |
msgstr "Opdatér gamle tællerdata"
|
289 |
|
|
|
290 |
#@ cpd
|
291 |
+
#: counter-options.php:362
|
292 |
msgid "Update GeoIP database"
|
293 |
msgstr "Opdatér GeoIP-database"
|
294 |
|
|
|
295 |
#@ cpd
|
296 |
+
#: counter-options.php:365
|
297 |
msgid "Download a new version of GeoIP.dat file."
|
298 |
msgstr "Download en ny version af GeoIP.dat-filen."
|
299 |
|
|
|
300 |
#@ cpd
|
301 |
+
#: counter-options.php:371
|
302 |
msgid "More informations about GeoIP"
|
303 |
msgstr "Flere oplysninger om GeoIP"
|
304 |
|
|
|
|
|
305 |
#@ cpd
|
306 |
+
#: counter-options.php:386
|
307 |
+
#: massbots.php:33
|
308 |
msgid "Mass Bots"
|
309 |
msgstr "Massebots"
|
310 |
|
|
|
|
|
311 |
#@ cpd
|
312 |
+
#: counter-options.php:390
|
313 |
+
#, php-format
|
314 |
msgid "Show all IPs with more than %s page views per day"
|
315 |
msgstr "Vis alle IP'er med mere end %s sidevisninger per dag"
|
316 |
|
|
|
|
|
|
|
317 |
#@ cpd
|
318 |
+
#: counter-options.php:391
|
319 |
+
#: notes.php:76
|
320 |
+
#: userperspan.php:43
|
321 |
msgid "show"
|
322 |
msgstr "vis"
|
323 |
|
|
|
324 |
#@ cpd
|
325 |
+
#: counter-options.php:399
|
326 |
msgid "IP"
|
327 |
msgstr "IP"
|
328 |
|
|
|
|
|
329 |
#@ cpd
|
330 |
#@ default
|
331 |
+
#: counter-options.php:400
|
332 |
+
#: notes.php:80
|
333 |
msgid "Date"
|
334 |
msgstr "Dato"
|
335 |
|
|
|
336 |
#@ cpd
|
337 |
+
#: counter-options.php:401
|
338 |
msgid "Client"
|
339 |
msgstr "Klient"
|
340 |
|
|
|
341 |
#@ cpd
|
342 |
+
#: counter-options.php:402
|
343 |
msgid "Views"
|
344 |
msgstr "Visninger"
|
345 |
|
|
|
|
|
|
|
346 |
#@ cpd
|
347 |
+
#: counter-options.php:413
|
348 |
+
#: counter-options.php:435
|
349 |
+
#, php-format
|
350 |
msgid "Delete these %s counts"
|
351 |
msgstr "Slet disse %s hits"
|
352 |
|
|
|
|
|
353 |
#@ cpd
|
354 |
+
#: counter-options.php:445
|
355 |
+
#: counter-options.php:454
|
356 |
msgid "Clean the database"
|
357 |
msgstr "Rens databasen"
|
358 |
|
|
|
359 |
#@ cpd
|
360 |
+
#: counter-options.php:448
|
361 |
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."
|
362 |
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."
|
363 |
|
|
|
|
|
364 |
#@ cpd
|
365 |
+
#: counter-options.php:463
|
366 |
+
#: counter-options.php:472
|
367 |
msgid "Reset the counter"
|
368 |
msgstr "Nulstil tælleren"
|
369 |
|
|
|
370 |
#@ cpd
|
371 |
+
#: counter-options.php:466
|
372 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
373 |
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."
|
374 |
|
|
|
375 |
#@ cpd
|
376 |
+
#: counter-options.php:484
|
377 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
378 |
msgstr "Hvis \"Count per Day\" kun deaktiveres, bliver tabellerne i databasen bevaret."
|
379 |
|
|
|
380 |
#@ cpd
|
381 |
+
#: counter-options.php:485
|
382 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
383 |
msgstr "Her kan du slette tabellerne og deaktivere \"Count per Day\"."
|
384 |
|
|
|
385 |
#@ cpd
|
386 |
+
#: counter-options.php:488
|
387 |
msgid "WARNING"
|
388 |
msgstr "ADVARSEL"
|
389 |
|
|
|
390 |
#@ cpd
|
391 |
+
#: counter-options.php:489
|
392 |
msgid "These tables (with ALL counter data) will be deleted."
|
393 |
msgstr "Disse tabeller (med ALLE tæller-data) vil blive slettet."
|
394 |
|
|
|
395 |
#@ cpd
|
396 |
+
#: counter-options.php:491
|
397 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
398 |
msgstr "Hvis \"Count per Day\" reinstalleres, begynder tælleren forfra ved 0."
|
399 |
|
|
|
|
|
400 |
#@ cpd
|
401 |
+
#: counter-options.php:495
|
402 |
msgid "Yes"
|
403 |
msgstr "Ja"
|
404 |
|
|
|
405 |
#@ cpd
|
406 |
+
#: counter-options.php:496
|
407 |
msgid "You are sure to disable Count per Day and delete all data?"
|
408 |
msgstr "Er du sikker på, du vil deaktivere \"Count per Day\" og slette alle data?"
|
409 |
|
|
|
410 |
#@ cpd
|
411 |
+
#: counter-options.php:504
|
412 |
msgid "Support"
|
413 |
msgstr "Support"
|
414 |
|
|
|
|
|
415 |
#@ cpd
|
416 |
+
#: counter.php:1716
|
417 |
+
#, php-format
|
418 |
msgid "Time for Count per Day: <code>%s</code>."
|
419 |
msgstr "Tidspunkt for Count per Day: <code>%s</code>."
|
420 |
|
|
|
421 |
#@ cpd
|
422 |
+
#: counter.php:1717
|
423 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
424 |
msgstr "Bugs? Problemer? Spørgsmål? Tips? Ros?"
|
425 |
|
|
|
|
|
426 |
#@ cpd
|
427 |
+
#: counter.php:1718
|
428 |
+
#, php-format
|
429 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
430 |
msgstr "Skriv en kommentar på <a href=\"%s\">pluginsiden</a>."
|
431 |
|
|
|
|
|
432 |
#@ cpd
|
433 |
+
#: counter.php:524
|
434 |
+
#: counter.php:2219
|
435 |
msgid "Total reads"
|
436 |
msgstr "Læsninger i alt"
|
437 |
|
|
|
|
|
438 |
#@ cpd
|
439 |
+
#: counter.php:525
|
440 |
+
#: counter.php:2220
|
441 |
msgid "Reads today"
|
442 |
msgstr "Læsninger i dag"
|
443 |
|
|
|
|
|
444 |
#@ cpd
|
445 |
+
#: counter.php:526
|
446 |
+
#: counter.php:2221
|
447 |
msgid "Reads yesterday"
|
448 |
msgstr "Læsninger i går"
|
449 |
|
|
|
|
|
|
|
|
|
450 |
#@ cpd
|
451 |
+
#: counter.php:529
|
452 |
+
#: counter.php:534
|
453 |
+
#: counter.php:1604
|
454 |
+
#: counter.php:1750
|
455 |
+
#: counter.php:2224
|
456 |
msgid "Total visitors"
|
457 |
msgstr "Antal besøgende i alt"
|
458 |
|
|
|
|
|
459 |
#@ cpd
|
460 |
+
#: counter.php:530
|
461 |
+
#: counter.php:2230
|
462 |
msgid "Visitors currently online"
|
463 |
msgstr "Besøgende online lige nu"
|
464 |
|
|
|
|
|
465 |
#@ cpd
|
466 |
+
#: counter.php:531
|
467 |
+
#: counter.php:2225
|
468 |
msgid "Visitors today"
|
469 |
msgstr "Besøgende i dag"
|
470 |
|
|
|
|
|
471 |
#@ cpd
|
472 |
+
#: counter.php:532
|
473 |
+
#: counter.php:2226
|
474 |
msgid "Visitors yesterday"
|
475 |
msgstr "Besøgende i går"
|
476 |
|
|
|
|
|
477 |
#@ cpd
|
478 |
+
#: counter.php:533
|
479 |
+
#: counter.php:2227
|
480 |
msgid "Visitors last week"
|
481 |
msgstr "Besøgende sidste weekend"
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#@ cpd
|
484 |
+
#: counter.php:535
|
485 |
+
#: counter.php:636
|
486 |
+
#: counter.php:1606
|
487 |
+
#: counter.php:1756
|
488 |
+
#: counter.php:1765
|
489 |
+
#: counter.php:2229
|
490 |
+
#: userperspan.php:33
|
491 |
msgid "Visitors per day"
|
492 |
msgstr "Besøgende per dag"
|
493 |
|
|
|
|
|
|
|
494 |
#@ cpd
|
495 |
+
#: counter.php:536
|
496 |
+
#: counter.php:2231
|
497 |
msgid "Counter starts on"
|
498 |
msgstr "Tæller starter på"
|
499 |
|
|
|
|
|
|
|
500 |
#@ cpd
|
501 |
+
#: counter.php:819
|
502 |
+
msgid "days"
|
503 |
+
msgstr "dage"
|
504 |
+
|
505 |
+
#@ cpd
|
506 |
+
#: counter.php:822
|
507 |
+
#: counter.php:1376
|
508 |
+
#: notes.php:47
|
509 |
+
#: notes.php:81
|
510 |
msgid "Notes"
|
511 |
msgstr "Noter"
|
512 |
|
|
|
|
|
513 |
#@ cpd
|
514 |
+
#: counter.php:845
|
515 |
+
msgid "no reads at this time"
|
516 |
+
msgstr "Ikke læst pt."
|
517 |
+
|
518 |
+
#@ cpd
|
519 |
+
#: counter.php:1257
|
520 |
+
#, php-format
|
521 |
msgid "The %s most visited posts in last %s days:"
|
522 |
msgstr "De %s mest sete indlæg i de sidste %s dage:"
|
523 |
|
|
|
524 |
#@ default
|
525 |
+
#: counter.php:1374
|
526 |
msgid "Show"
|
527 |
msgstr "Vis"
|
528 |
|
|
|
529 |
#@ cpd
|
530 |
+
#: counter.php:1421
|
531 |
msgid "Other"
|
532 |
msgstr "Andre"
|
533 |
|
|
|
534 |
#@ default
|
535 |
+
#: counter.php:1505
|
536 |
msgid "Edit Post"
|
537 |
msgstr "Redigér indlæg"
|
538 |
|
|
|
|
|
|
|
539 |
#@ default
|
540 |
+
#: counter.php:1520
|
541 |
+
#: massbots.php:50
|
542 |
+
#: userperspan.php:63
|
543 |
msgid "Front page displays"
|
544 |
msgstr "Visninger af forsiden"
|
545 |
|
|
|
|
|
|
|
546 |
#@ default
|
547 |
+
#: counter.php:1591
|
548 |
msgid "Settings"
|
549 |
msgstr "Indstillinger"
|
550 |
|
551 |
# tjekkes
|
|
|
|
|
|
|
|
|
552 |
#@ cpd
|
553 |
+
#: counter-options.php:225
|
554 |
+
#: counter.php:528
|
555 |
+
#: counter.php:1661
|
556 |
msgid "Reads"
|
557 |
msgstr "Læsninger"
|
558 |
|
|
|
559 |
#@ cpd
|
560 |
+
#: counter.php:2218
|
561 |
msgid "This post"
|
562 |
msgstr "Dette indlæg"
|
563 |
|
|
|
564 |
#@ cpd
|
565 |
+
#: counter.php:635
|
566 |
+
#: counter.php:1766
|
567 |
msgid "Reads per day"
|
568 |
msgstr "Læsninger per dag"
|
569 |
|
|
|
|
|
570 |
#@ cpd
|
571 |
+
#: counter.php:1752
|
572 |
+
#: counter.php:2228
|
573 |
msgid "Visitors per month"
|
574 |
msgstr "Besøgende per måned"
|
575 |
|
|
|
576 |
#@ cpd
|
577 |
+
#: counter.php:1755
|
578 |
msgid "Latest Counts"
|
579 |
msgstr "Seneste læste"
|
580 |
|
|
|
581 |
#@ default
|
582 |
+
#: counter.php:1757
|
583 |
msgid "Plugin"
|
584 |
msgstr "Plugin"
|
585 |
|
|
|
586 |
#@ cpd
|
587 |
+
#: counter.php:1770
|
588 |
msgid "Reads per Country"
|
589 |
msgstr "Læsninger per land"
|
590 |
|
|
|
591 |
#@ cpd
|
592 |
+
#: counter.php:1771
|
593 |
msgid "Visitors per Country"
|
594 |
msgstr "Besøgende per land"
|
595 |
|
|
|
|
|
596 |
#@ cpd
|
597 |
+
#: counter.php:1786
|
598 |
+
#: counter.php:2147
|
599 |
msgid "Statistics"
|
600 |
msgstr "Statistik"
|
601 |
|
|
|
|
|
602 |
#@ cpd
|
603 |
+
#: counter.php:900
|
604 |
+
#: counter.php:1856
|
605 |
msgid "Map"
|
606 |
msgstr "Kort"
|
607 |
|
608 |
+
#@ cpd
|
609 |
+
#: notes.php:81
|
610 |
+
msgid "(1 per day)"
|
611 |
+
msgstr "(1 gang per dag)"
|
612 |
+
|
613 |
#@ default
|
614 |
+
#: notes.php:82
|
615 |
msgid "Action"
|
616 |
msgstr "Handling"
|
617 |
|
|
|
618 |
#@ cpd
|
619 |
+
#: notes.php:87
|
620 |
msgid "add"
|
621 |
msgstr "tilføj"
|
622 |
|
|
|
623 |
#@ cpd
|
624 |
+
#: notes.php:102
|
625 |
msgid "save"
|
626 |
msgstr "gem"
|
627 |
|
|
|
628 |
#@ cpd
|
629 |
+
#: notes.php:103
|
630 |
msgid "delete"
|
631 |
msgstr "slet"
|
632 |
|
|
|
633 |
#@ cpd
|
634 |
+
#: notes.php:114
|
635 |
msgid "edit"
|
636 |
msgstr "redigér"
|
637 |
|
|
|
638 |
#@ cpd
|
639 |
+
#: userperspan.php:37
|
640 |
msgid "Start"
|
641 |
msgstr "Start"
|
642 |
|
|
|
643 |
#@ cpd
|
644 |
+
#: userperspan.php:39
|
645 |
msgid "End"
|
646 |
msgstr "Slut"
|
647 |
|
|
|
648 |
#@ cpd
|
649 |
+
#: userperspan.php:41
|
650 |
msgid "PostID"
|
651 |
msgstr "Indlægs-id"
|
652 |
|
|
|
653 |
#@ cpd
|
654 |
+
#: userperspan.php:49
|
655 |
msgid "no data found"
|
656 |
msgstr "ingen data fundet"
|
657 |
|
|
|
658 |
#@ cpd
|
659 |
+
#: geoip/geoip.php:108
|
660 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
661 |
msgstr "Beklager. Nødvendige funktioner (zlib) er ikke installeret eller ikke aktiveret i php.ini."
|
662 |
|
|
|
663 |
#@ cpd
|
664 |
+
#: geoip/geoip.php:132
|
665 |
msgid "New GeoIP database installed."
|
666 |
msgstr "Ny GeoIP-database installeret."
|
667 |
|
|
|
668 |
#@ cpd
|
669 |
+
#: geoip/geoip.php:134
|
670 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
671 |
msgstr "Beklager. Der opstod en fejl. Prøv igen eller tjek, at adgangsrettigheder til mappen \"geoip\" er 777"
|
672 |
|
|
|
673 |
#@ cpd
|
674 |
+
#: counter-options.php:352
|
675 |
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!"
|
676 |
msgstr "Du kan få landedata for alle indlæg i databasen, hvis du tjekker IP-adresserne i GeoIP-databasen. Det tager lidt tid!"
|
677 |
|
|
|
678 |
#@ cpd
|
679 |
+
#: counter-options.php:186
|
680 |
msgid "Counter"
|
681 |
msgstr "Tæller"
|
682 |
|
|
|
683 |
#@ cpd
|
684 |
+
#: counter-options.php:224
|
685 |
msgid "Clients and referrers"
|
686 |
msgstr "Klienter og henvisere"
|
687 |
|
|
|
688 |
#@ cpd
|
689 |
+
#: counter-options.php:225
|
690 |
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."
|
691 |
msgstr "Gem og vis klienter og henvisere.<br />Bruger en masse plads i databasen, men giver dig mere detaljeret information om dine besøgende."
|
692 |
|
|
|
693 |
#@ cpd
|
694 |
+
#: counter-options.php:278
|
695 |
msgid "Local URLs"
|
696 |
msgstr "Lokale adresser"
|
697 |
|
|
|
698 |
#@ cpd
|
699 |
+
#: counter-options.php:279
|
700 |
msgid "Show local referrers too."
|
701 |
msgstr "Vis også lokale henvisninger"
|
702 |
|
|
|
703 |
#@ default
|
704 |
+
#: counter-options.php:287
|
705 |
msgid "Posts"
|
706 |
msgstr "Indlæg"
|
707 |
|
|
|
708 |
#@ default
|
709 |
+
#: counter-options.php:287
|
710 |
msgid "Pages"
|
711 |
msgstr "Sider"
|
712 |
|
|
|
|
|
713 |
#@ cpd
|
714 |
+
#: counter.php:527
|
715 |
+
#: counter.php:2222
|
716 |
msgid "Reads last week"
|
717 |
msgstr "Læsninger i sidste uge"
|
718 |
|
|
|
719 |
#@ default
|
720 |
+
#: counter.php:1514
|
721 |
msgid "Category"
|
722 |
msgstr "Kategori"
|
723 |
|
|
|
724 |
#@ default
|
725 |
+
#: counter.php:1517
|
726 |
msgid "Tag"
|
727 |
msgstr "Tag"
|
728 |
|
|
|
729 |
#@ default
|
730 |
+
#: counter.php:1719
|
731 |
msgid "License"
|
732 |
msgstr "Licens"
|
733 |
|
|
|
|
|
734 |
#@ cpd
|
735 |
+
#: counter.php:1753
|
736 |
+
#: counter.php:2223
|
737 |
msgid "Reads per month"
|
738 |
msgstr "Læsninger per måned"
|
739 |
|
|
|
740 |
#@ cpd
|
741 |
+
#: counter.php:1761
|
742 |
msgid "Referrer"
|
743 |
msgstr "Henviser"
|
744 |
|
|
|
745 |
#@ default
|
746 |
+
#: counter.php:2242
|
747 |
msgid "Title"
|
748 |
msgstr "Titel"
|
749 |
|
|
|
750 |
#@ cpd
|
751 |
+
#: counter-options.php:256
|
752 |
+
msgid "Old Charts"
|
753 |
+
msgstr "Gamle diagrammer"
|
754 |
+
|
755 |
+
#@ cpd
|
756 |
+
#: counter-options.php:257
|
757 |
+
msgid "Show old bar charts."
|
758 |
+
msgstr "Vis det gamle søjlediagram"
|
759 |
+
|
760 |
+
#@ cpd
|
761 |
+
#: counter-options.php:270
|
762 |
msgid "Referrers - Entries"
|
763 |
msgstr "Henvisere - poster"
|
764 |
|
|
|
765 |
#@ cpd
|
766 |
+
#: counter-options.php:271
|
767 |
msgid "How many referrers do you want to see on dashboard page?"
|
768 |
msgstr "Hvor mange henvisere vil du se på dashboardet?"
|
769 |
|
|
|
770 |
#@ cpd
|
771 |
+
#: counter-options.php:274
|
772 |
msgid "Referrers - Days"
|
773 |
msgstr "Henvisere - Dage"
|
774 |
|
|
|
|
|
775 |
#@ cpd
|
776 |
+
#: counter.php:1449
|
777 |
+
#, php-format
|
778 |
msgid "The %s referrers in last %s days:"
|
779 |
msgstr "De %s henvisere i de sidste %s dage:"
|
780 |
|
|
|
781 |
#@ cpd
|
782 |
+
#: counter.php:1751
|
783 |
msgid "Visitors online"
|
784 |
msgstr "Brugere online"
|
785 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-de_DE.mo
CHANGED
Binary file
|
locale/cpd-de_DE.po
CHANGED
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Einstellungen aktualisiert"
|
@@ -30,943 +30,771 @@ msgstr "Einstellungen aktualisiert"
|
|
30 |
msgid "Database cleaned. %s rows deleted."
|
31 |
msgstr "Datenbank aufgeräumt. %s Datensätze gelöscht."
|
32 |
|
33 |
-
#: counter-options.php:
|
34 |
-
#: counter-options.php:
|
35 |
#@ cpd
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "DEINSTALLIERE Count per Day"
|
38 |
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
#, php-format
|
43 |
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "Tabelle %s gelöscht"
|
46 |
|
47 |
-
#: counter-options.php:
|
48 |
#@ cpd
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Einstellungen gelöscht"
|
51 |
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
#@ cpd
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Deinstallation"
|
57 |
|
58 |
-
#: counter-options.php:
|
59 |
#@ cpd
|
60 |
msgid "Click here"
|
61 |
msgstr "Klick hier"
|
62 |
|
63 |
-
#: counter-options.php:
|
64 |
#@ cpd
|
65 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
|
67 |
|
68 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
69 |
#@ cpd
|
70 |
msgid "Online time"
|
71 |
msgstr "Onlinezeit"
|
72 |
|
73 |
-
#: counter-options.php:
|
74 |
#@ cpd
|
75 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
msgstr "Sekunden für Onlinecounter. Wird für die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
|
77 |
|
78 |
-
#: counter-options.php:
|
79 |
#@ cpd
|
80 |
msgid "Logged on Users"
|
81 |
msgstr "Angemeldete Benutzer"
|
82 |
|
83 |
-
#: counter-options.php:
|
84 |
#@ cpd
|
85 |
msgid "count too"
|
86 |
msgstr "auch mit zählen"
|
87 |
|
88 |
-
#: counter-options.php:
|
89 |
#@ cpd
|
90 |
msgid "Auto counter"
|
91 |
msgstr "Auto-Counter"
|
92 |
|
93 |
-
#: counter-options.php:
|
94 |
#@ cpd
|
95 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
msgstr "Zählt automatisch Besuche auf Single-Posts und Seiten ohne Änderungen am Template."
|
97 |
|
98 |
-
#: counter-options.php:
|
99 |
#@ cpd
|
100 |
msgid "Bots to ignore"
|
101 |
msgstr "Spam/Suchmaschinen Bots ignorieren"
|
102 |
|
103 |
-
#: counter-options.php:
|
104 |
#@ cpd
|
105 |
msgid "Update options"
|
106 |
msgstr "Einstellungen aktualisieren"
|
107 |
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
#@ cpd
|
111 |
msgid "Clean the database"
|
112 |
msgstr "Datenbank aufräumen"
|
113 |
|
114 |
-
#: counter-options.php:
|
115 |
#@ cpd
|
116 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
117 |
msgstr "Du kannst die Counter-Tabelle von \"Spam-Daten\" befreien.<br />Wenn du neue Bots zu der Liste oben hinzufügst bleiben die alten \"Spam-Daten\" erhalten.<br />Hier kannst du den Filter erneut laufen lassen und die Besuche von Bots nachträglich löschen."
|
118 |
|
119 |
-
#: counter-options.php:
|
120 |
#@ cpd
|
121 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
122 |
msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
|
123 |
|
124 |
-
#: counter-options.php:
|
125 |
#@ cpd
|
126 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen löschen."
|
128 |
|
129 |
-
#: counter-options.php:
|
130 |
#@ cpd
|
131 |
msgid "WARNING"
|
132 |
msgstr "WARNUNG"
|
133 |
|
134 |
-
#: counter-options.php:
|
135 |
#@ cpd
|
136 |
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
msgstr "Diese Tabellen werden mit ALLEN Zählerdaten gelöscht."
|
138 |
|
139 |
-
#: counter-options.php:
|
140 |
#@ cpd
|
141 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Zähler bei 0."
|
143 |
|
144 |
-
#: counter-options.php:
|
145 |
-
#: counter-options.php:818
|
146 |
#@ cpd
|
147 |
msgid "Yes"
|
148 |
msgstr "Ja, los!"
|
149 |
|
150 |
-
#: counter-options.php:
|
151 |
#@ cpd
|
152 |
msgid "You are sure to disable Count per Day and delete all data?"
|
153 |
msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten löschen willst?"
|
154 |
|
155 |
-
#: counter
|
156 |
-
#: counter.php:
|
157 |
#@ cpd
|
158 |
msgid "Statistics"
|
159 |
msgstr "Statistiken"
|
160 |
|
161 |
-
#: counter
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
|
|
165 |
#@ cpd
|
166 |
msgid "Total visitors"
|
167 |
msgstr "Besucher gesamt"
|
168 |
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
#@ cpd
|
172 |
msgid "Visitors currently online"
|
173 |
msgstr "Besucher momentan online"
|
174 |
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
#@ cpd
|
178 |
msgid "Visitors today"
|
179 |
msgstr "Besucher heute"
|
180 |
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
#@ cpd
|
184 |
msgid "Visitors yesterday"
|
185 |
msgstr "Besucher gestern"
|
186 |
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
#@ cpd
|
190 |
msgid "Visitors last week"
|
191 |
msgstr "Besucher letzte Woche"
|
192 |
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:1209
|
196 |
#@ cpd
|
197 |
msgid "Counter starts on"
|
198 |
msgstr "gezählt ab"
|
199 |
|
200 |
-
#: counter
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#:
|
|
|
206 |
#@ cpd
|
207 |
msgid "Visitors per day"
|
208 |
msgstr "Besucher pro Tag"
|
209 |
|
210 |
-
#: counter
|
211 |
-
#: counter.php:
|
212 |
#@ cpd
|
213 |
msgid "Visitors per month"
|
214 |
msgstr "Besucher pro Monat"
|
215 |
|
216 |
-
#: counter-
|
217 |
-
#: counter
|
218 |
#@ cpd
|
219 |
msgid "Visitors per post"
|
220 |
msgstr "Besucher pro Artikel"
|
221 |
|
222 |
-
#: counter-options.php:
|
223 |
#@ cpd
|
224 |
msgid "Counter reseted."
|
225 |
msgstr "Zähler zurückgesetzt."
|
226 |
|
227 |
-
#: counter-options.php:
|
228 |
-
#: counter-options.php:
|
229 |
#@ cpd
|
230 |
msgid "How many posts do you want to see on dashboard page?"
|
231 |
msgstr "Wie viele Einträge möchtest du auf der Dashboard Seite sehen?"
|
232 |
|
233 |
-
#: counter-options.php:
|
234 |
#@ cpd
|
235 |
msgid "Latest Counts - Posts"
|
236 |
msgstr "Aktuelle Besuche - Artikel"
|
237 |
|
238 |
-
#: counter-options.php:
|
239 |
#@ cpd
|
240 |
msgid "Latest Counts - Days"
|
241 |
msgstr "Aktuelle Besuche - Tage"
|
242 |
|
243 |
-
#: counter-options.php:
|
244 |
-
#: counter-options.php:
|
245 |
-
#: counter-options.php:
|
246 |
#@ cpd
|
247 |
msgid "How many days do you want look back?"
|
248 |
msgstr "Wie viele Tage möchtest du zurück schauen?"
|
249 |
|
250 |
-
#: counter-options.php:
|
251 |
#@ cpd
|
252 |
msgid "Show in lists"
|
253 |
msgstr "In Übersichten anzeigen"
|
254 |
|
255 |
-
#: counter-options.php:
|
256 |
#@ cpd
|
257 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
258 |
msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikelübersicht."
|
259 |
|
260 |
-
#: counter-options.php:
|
261 |
-
#: counter-options.php:
|
262 |
#@ cpd
|
263 |
msgid "Reset the counter"
|
264 |
msgstr "Zähler zurücksetzen"
|
265 |
|
266 |
-
#: counter-options.php:
|
267 |
#@ cpd
|
268 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
269 |
msgstr "Du kannst die Zähler zurücksetzen und die Tabelle leeren. Alles auf 0!<br />Wenn du die aktuellen Zahlen brauchst, mache ein Backup der Datenbank!"
|
270 |
|
271 |
-
#: counter.php:
|
272 |
#, php-format
|
273 |
#@ cpd
|
274 |
msgid "The %s most visited posts in last %s days:"
|
275 |
msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
|
276 |
|
277 |
-
#: counter
|
278 |
-
#: counter-options.php:341
|
279 |
-
#: counter-options.php:565
|
280 |
#@ default
|
281 |
msgid "Settings"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: counter-
|
285 |
-
#: counter
|
286 |
-
#: counter.php:
|
287 |
-
#: counter.php:875
|
288 |
#@ cpd
|
289 |
msgid "Reads"
|
290 |
msgstr "Seitenaufrufe"
|
291 |
|
292 |
-
#: counter
|
293 |
#@ cpd
|
294 |
msgid "Latest Counts"
|
295 |
msgstr "Letzte Seitenaufrufe"
|
296 |
|
297 |
-
#: counter-options.php:
|
298 |
#@ cpd
|
299 |
msgid "Chart - Days"
|
300 |
msgstr "Diagramm - Tage"
|
301 |
|
302 |
-
#: counter-options.php:
|
303 |
#@ cpd
|
304 |
msgid "Chart - Height"
|
305 |
msgstr "Diagramm - Höhe"
|
306 |
|
307 |
-
#: counter-options.php:
|
308 |
#@ cpd
|
309 |
msgid "Height of the biggest bar"
|
310 |
msgstr "Höhe des größten Balkens"
|
311 |
|
312 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
#@ cpd
|
314 |
msgid "This post"
|
315 |
msgstr "Diese Seite"
|
316 |
|
317 |
-
#: counter-options.php:
|
318 |
#@ default
|
319 |
msgid "Dashboard"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: counter.php:
|
|
|
323 |
#@ cpd
|
324 |
msgid "Reads per day"
|
325 |
msgstr "Seitenaufrufe pro Tag"
|
326 |
|
327 |
-
#: counter-options.php:
|
328 |
#, php-format
|
329 |
#@ cpd
|
330 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
331 |
msgstr "Länder aktualisiert. <b>%s</b> Datensätze in %s noch offen."
|
332 |
|
333 |
-
#: counter-options.php:
|
334 |
#@ cpd
|
335 |
msgid "update next"
|
336 |
msgstr "weiter aktualisieren"
|
337 |
|
338 |
-
#: counter-options.php:
|
339 |
#@ cpd
|
340 |
msgid "GeoIP - Countries"
|
341 |
msgstr "GeoIP - Länder"
|
342 |
|
343 |
-
#: counter-options.php:
|
344 |
#@ cpd
|
345 |
msgid "Update old counter data"
|
346 |
msgstr "Aktualisiere alte Zählerdaten"
|
347 |
|
348 |
-
#: counter-options.php:
|
349 |
#@ cpd
|
350 |
msgid "Update GeoIP database"
|
351 |
msgstr "Aktualisiere GeoIP Datenbank"
|
352 |
|
353 |
-
#: counter-options.php:
|
354 |
#@ cpd
|
355 |
msgid "Download a new version of GeoIP.dat file."
|
356 |
msgstr "Neue Version von GeoIP.dat herunterladen."
|
357 |
|
358 |
-
#: counter-options.php:
|
359 |
#@ cpd
|
360 |
msgid "More informations about GeoIP"
|
361 |
msgstr "Mehr Informationen über GeoIP"
|
362 |
|
363 |
-
#: counter
|
364 |
#@ cpd
|
365 |
msgid "Reads per Country"
|
366 |
msgstr "Seitenaufrufe pro Land"
|
367 |
|
368 |
-
#: geoip/geoip.php:
|
369 |
#@ cpd
|
370 |
msgid "New GeoIP database installed."
|
371 |
msgstr "Neue GeoIP Datenbank installiert."
|
372 |
|
373 |
-
#: geoip/geoip.php:
|
374 |
#@ cpd
|
375 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
376 |
msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder überprüfe ob du für das Verzeichnis \"geoip\" Schreibrechte (777) hast."
|
377 |
|
378 |
-
#: geoip/geoip.php:
|
379 |
#@ cpd
|
380 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
381 |
msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
|
382 |
|
383 |
-
#: counter-options.php:
|
384 |
#@ cpd
|
385 |
msgid "Countries"
|
386 |
msgstr "Länder"
|
387 |
|
388 |
-
#: counter-options.php:
|
389 |
#@ cpd
|
390 |
msgid "How many countries do you want to see on dashboard page?"
|
391 |
msgstr "Wie viele Länder möchtest du auf der Dashboard Seite sehen?"
|
392 |
|
393 |
-
#: counter-options.php:
|
394 |
#, php-format
|
395 |
#@ cpd
|
396 |
msgid "Mass Bots cleaned. %s counts deleted."
|
397 |
msgstr "Massen-Bots bereinigt. %s Zählerdaten gelöscht."
|
398 |
|
399 |
-
#: counter-options.php:
|
400 |
-
#: massbots.php:
|
401 |
#@ cpd
|
402 |
msgid "Mass Bots"
|
403 |
msgstr "Massen-Bots"
|
404 |
|
405 |
-
#: counter-options.php:
|
406 |
#, php-format
|
407 |
#@ cpd
|
408 |
msgid "Show all IPs with more than %s page views per day"
|
409 |
msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
|
410 |
|
411 |
-
#: counter-options.php:
|
412 |
-
#: notes.php:
|
413 |
-
#: userperspan.php:
|
414 |
#@ cpd
|
415 |
msgid "show"
|
416 |
msgstr "anzeigen"
|
417 |
|
418 |
-
#: counter-options.php:
|
419 |
-
#: counter-options.php:
|
420 |
#, php-format
|
421 |
#@ cpd
|
422 |
msgid "Delete these %s counts"
|
423 |
msgstr "Lösche diese %s Zählerdaten"
|
424 |
|
425 |
-
#: counter.php:
|
426 |
#@ cpd
|
427 |
msgid "Other"
|
428 |
msgstr "Sonstige"
|
429 |
|
430 |
-
#: counter.php:
|
431 |
-
#: massbots.php:
|
432 |
#: userperspan.php:63
|
433 |
#@ default
|
434 |
msgid "Front page displays"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: counter-
|
438 |
-
#: counter
|
439 |
#@ cpd
|
440 |
msgid "Browsers"
|
441 |
msgstr "Browser"
|
442 |
|
443 |
-
#: counter-options.php:
|
444 |
#@ cpd
|
445 |
msgid "IP"
|
446 |
msgstr "IP"
|
447 |
|
448 |
-
#: counter-options.php:
|
449 |
-
#: notes.php:
|
450 |
#@ cpd
|
451 |
#@ default
|
452 |
msgid "Date"
|
453 |
-
msgstr ""
|
454 |
|
455 |
-
#: counter-options.php:
|
456 |
#@ cpd
|
457 |
msgid "Client"
|
458 |
msgstr "Browser"
|
459 |
|
460 |
-
#: counter-options.php:
|
461 |
#@ cpd
|
462 |
msgid "Views"
|
463 |
msgstr "Seitenaufrufe"
|
464 |
|
465 |
-
#: counter-options.php:
|
466 |
#@ cpd
|
467 |
msgid "Start Values"
|
468 |
msgstr "Startwerte"
|
469 |
|
470 |
-
#: counter-options.php:
|
471 |
#@ cpd
|
472 |
msgid "Here you can change the date of first count and add a start count."
|
473 |
msgstr "Hier kannst du das Startdatum und den Startzählerstand überschreiben."
|
474 |
|
475 |
-
#: counter-options.php:
|
476 |
#@ cpd
|
477 |
msgid "Start date"
|
478 |
msgstr "Startdatum"
|
479 |
|
480 |
-
#: counter-options.php:
|
481 |
#@ cpd
|
482 |
msgid "Your old Counter starts at?"
|
483 |
msgstr "Dein alter Zähler begann am?"
|
484 |
|
485 |
-
#: counter-options.php:
|
486 |
-
#: counter-options.php:
|
487 |
#@ cpd
|
488 |
msgid "Start count"
|
489 |
msgstr "Startzählerstand"
|
490 |
|
491 |
-
#: counter-options.php:
|
492 |
#@ cpd
|
493 |
msgid "Add this value to \"Total visitors\"."
|
494 |
msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
|
495 |
|
496 |
-
#: counter-options.php:
|
497 |
#@ cpd
|
498 |
msgid "Support"
|
499 |
msgstr "Kontakt"
|
500 |
|
501 |
-
#: counter
|
502 |
#@ cpd
|
503 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
504 |
msgstr "Bug? Problem? Frage? Tipp? Lob?"
|
505 |
|
506 |
-
#: counter
|
507 |
#, php-format
|
508 |
#@ cpd
|
509 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
510 |
msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
|
511 |
|
512 |
-
#: counter.php:
|
513 |
#@ default
|
514 |
msgid "Show"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: counter.php:
|
518 |
#@ default
|
519 |
msgid "Edit Post"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: counter
|
523 |
#, php-format
|
524 |
#@ cpd
|
525 |
msgid "Time for Count per Day: <code>%s</code>."
|
526 |
msgstr "Zeit bei Count per Day: <code>%s</code>"
|
527 |
|
528 |
-
#: counter-options.php:
|
529 |
#@ cpd
|
530 |
msgid "until User Level"
|
531 |
msgstr "bis Benutzerlevel"
|
532 |
|
533 |
-
#: counter
|
534 |
#@ default
|
535 |
msgid "Plugin"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: counter.php:
|
539 |
-
#:
|
540 |
-
#: notes.php:
|
|
|
541 |
#@ cpd
|
542 |
msgid "Notes"
|
543 |
msgstr "Notizen"
|
544 |
|
545 |
-
#: notes.php:
|
546 |
#@ default
|
547 |
msgid "Action"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: notes.php:
|
551 |
#@ cpd
|
552 |
msgid "add"
|
553 |
msgstr "hinzufügen"
|
554 |
|
555 |
-
#: notes.php:
|
556 |
#@ cpd
|
557 |
msgid "save"
|
558 |
msgstr "speichern"
|
559 |
|
560 |
-
#: notes.php:
|
561 |
#@ cpd
|
562 |
msgid "delete"
|
563 |
msgstr "löschen"
|
564 |
|
565 |
-
#: notes.php:
|
566 |
#@ cpd
|
567 |
msgid "edit"
|
568 |
msgstr "ändern"
|
569 |
|
570 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
571 |
#@ cpd
|
572 |
msgid "Add this value to \"Total reads\"."
|
573 |
msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
|
574 |
|
575 |
-
#: counter.php:
|
576 |
-
#: counter.php:
|
577 |
#@ cpd
|
578 |
msgid "Total reads"
|
579 |
msgstr "Seitenaufrufe gesamt"
|
580 |
|
581 |
-
#: counter.php:
|
582 |
-
#: counter.php:
|
583 |
#@ cpd
|
584 |
msgid "Reads today"
|
585 |
msgstr "Seitenaufrufe heute"
|
586 |
|
587 |
-
#: counter.php:
|
588 |
-
#: counter.php:
|
589 |
#@ cpd
|
590 |
msgid "Reads yesterday"
|
591 |
msgstr "Seitenaufrufe gestern"
|
592 |
|
593 |
-
#: counter.php:
|
594 |
-
#: counter.php:
|
595 |
#@ cpd
|
596 |
msgid "Map"
|
597 |
msgstr "Weltkarte"
|
598 |
|
599 |
-
#: counter-options.php:
|
600 |
#@ cpd
|
601 |
msgid "Anonymous IP"
|
602 |
msgstr "Anonyme IP-Adresse"
|
603 |
|
604 |
-
#: counter-options.php:
|
605 |
#@ cpd
|
606 |
msgid "Cache"
|
607 |
msgstr "Cache"
|
608 |
|
609 |
-
#: counter-options.php:
|
610 |
#@ cpd
|
611 |
msgid "I use a cache plugin. Count these visits with ajax."
|
612 |
msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
|
613 |
|
614 |
-
#: counter-options.php:
|
615 |
#@ cpd
|
616 |
msgid "Substring of the user agent, separated by comma"
|
617 |
msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
|
618 |
|
619 |
-
#: counter
|
620 |
#@ cpd
|
621 |
msgid "Visitors per Country"
|
622 |
msgstr "Besucher pro Land"
|
623 |
|
624 |
-
#: counter-options.php:
|
625 |
#@ cpd
|
626 |
msgid "Debug mode"
|
627 |
msgstr "Debug Modus"
|
628 |
|
629 |
-
#: counter-options.php:
|
630 |
#@ cpd
|
631 |
msgid "Show debug informations at the bottom of all pages."
|
632 |
msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
|
633 |
|
634 |
-
#: userperspan.php:
|
635 |
#@ cpd
|
636 |
msgid "Start"
|
637 |
msgstr "Start"
|
638 |
|
639 |
-
#: userperspan.php:
|
640 |
#@ cpd
|
641 |
msgid "End"
|
642 |
msgstr "Ende"
|
643 |
|
644 |
-
#: userperspan.php:
|
645 |
#@ cpd
|
646 |
msgid "PostID"
|
647 |
msgstr "Artikel-ID"
|
648 |
|
649 |
-
#: userperspan.php:
|
650 |
#@ cpd
|
651 |
msgid "no data found"
|
652 |
msgstr "keine passenden Daten gefunden"
|
653 |
|
654 |
-
#: counter-options.php:
|
655 |
#@ cpd
|
656 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
657 |
msgstr "Du kannst zu allen Zählerdaten das Herkunftsland speichern. Dazu wird die IP mit der GeoIP Datenbank abgeglichen. Das kann je nach Anzahl der Daten eine ganze Weile dauern."
|
658 |
|
659 |
-
#: counter-options.php:
|
660 |
#@ cpd
|
661 |
msgid "Counter"
|
662 |
msgstr "Zähler"
|
663 |
|
664 |
-
#: counter-options.php:
|
665 |
#@ cpd
|
666 |
msgid "Local URLs"
|
667 |
msgstr "Lokale URLs"
|
668 |
|
669 |
-
#: counter-options.php:
|
670 |
#@ cpd
|
671 |
msgid "Show local referrers too."
|
672 |
msgstr "Zeige auch lokale Referrer."
|
673 |
|
674 |
-
#: counter-options.php:
|
675 |
#@ default
|
676 |
msgid "Posts"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: counter-options.php:
|
680 |
#@ default
|
681 |
msgid "Pages"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: counter.php:
|
685 |
#@ default
|
686 |
msgid "Category"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: counter.php:
|
690 |
#@ default
|
691 |
msgid "Tag"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: counter
|
695 |
#@ default
|
696 |
msgid "License"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: counter
|
700 |
#@ cpd
|
701 |
msgid "Referrer"
|
702 |
msgstr "Herkunft"
|
703 |
|
704 |
-
#: counter.php:
|
705 |
#@ default
|
706 |
msgid "Title"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: counter-options.php:
|
710 |
#@ cpd
|
711 |
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
712 |
msgstr "Browser und Herkunft speichern und anzeigen.<br />Diese Daten brauchen mit Abstand den meisten Platz in der Datenbank, liefern aber auch detailliertere Informationen über die Besucher."
|
713 |
|
714 |
-
#: counter-options.php:
|
715 |
#@ cpd
|
716 |
msgid "Clients and referrers"
|
717 |
msgstr "Browser und Herkunft"
|
718 |
|
719 |
-
#: counter.php:
|
720 |
-
#: counter.php:
|
721 |
#@ cpd
|
722 |
msgid "Reads last week"
|
723 |
msgstr "Seitenaufrufe letzte Woche"
|
724 |
|
725 |
-
#: counter
|
726 |
-
#: counter.php:
|
727 |
#@ cpd
|
728 |
msgid "Reads per month"
|
729 |
msgstr "Seitenaufrufe pro Monat"
|
730 |
|
731 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
#@ cpd
|
733 |
msgid "Referrers - Entries"
|
734 |
msgstr "Herkunft - Einträge"
|
735 |
|
736 |
-
#: counter-options.php:
|
737 |
#@ cpd
|
738 |
msgid "How many referrers do you want to see on dashboard page?"
|
739 |
msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
|
740 |
|
741 |
-
#: counter-options.php:
|
742 |
#@ cpd
|
743 |
msgid "Referrers - Days"
|
744 |
msgstr "Herkunft - Tage"
|
745 |
|
746 |
-
#: counter.php:
|
747 |
#, php-format
|
748 |
#@ cpd
|
749 |
msgid "The %s referrers in last %s days:"
|
750 |
msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
|
751 |
|
752 |
-
#: counter
|
753 |
#@ cpd
|
754 |
msgid "Visitors online"
|
755 |
msgstr "Besucher online"
|
756 |
|
757 |
-
#: counter-options.php:
|
758 |
-
#@
|
759 |
msgid "Stylesheet"
|
760 |
-
msgstr "
|
761 |
|
762 |
-
#: counter-options.php:
|
763 |
#@ cpd
|
764 |
msgid "NO Stylesheet in Frontend"
|
765 |
msgstr "KEIN Stylesheet im Frontend"
|
766 |
|
767 |
-
#: counter-options.php:
|
768 |
#@ cpd
|
769 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
770 |
msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
|
771 |
|
772 |
-
#: counter-options.php:419
|
773 |
-
#@ cpd
|
774 |
-
msgid "Who can see it"
|
775 |
-
msgstr "Wer darf es sehen"
|
776 |
-
|
777 |
-
#: counter-options.php:428
|
778 |
-
#@ cpd
|
779 |
-
msgid "custom"
|
780 |
-
msgstr "benutzerdefiniert"
|
781 |
-
|
782 |
-
#: counter-options.php:430
|
783 |
-
#@ cpd
|
784 |
-
msgid "and higher are allowed to see the statistics page."
|
785 |
-
msgstr "und höher haben Zugriff auf die Statistikseite."
|
786 |
-
|
787 |
-
#: counter-options.php:432
|
788 |
-
#, php-format
|
789 |
-
#@ cpd
|
790 |
-
msgid "Set the %s capability %s a user need:"
|
791 |
-
msgstr "Gibt die benötigte %s Rolle %s ein."
|
792 |
-
|
793 |
-
#: counter-core.php:186
|
794 |
-
#, php-format
|
795 |
-
#@ cpd
|
796 |
-
msgid "\"Count per Day\" updated to version %s."
|
797 |
-
msgstr ""Count per Day" aktualisiert auf Version %s."
|
798 |
-
|
799 |
-
#: counter-core.php:899
|
800 |
-
#@ cpd
|
801 |
-
msgid "Backup failed! Cannot open file"
|
802 |
-
msgstr "Backup fehlgeschlagen! Kann die Datei nicht öffnen"
|
803 |
-
|
804 |
-
#: counter-core.php:922
|
805 |
-
#, php-format
|
806 |
-
#@ cpd
|
807 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
808 |
-
msgstr "Sicherung von %s Einträge. Jeder Punkt entspricht %s Einträgen."
|
809 |
-
|
810 |
-
#: counter-core.php:1009
|
811 |
-
#@ cpd
|
812 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
813 |
-
msgstr "Dein wp-content-Verzeichnis ist nicht beschreibbar. Aber du kannst den Inhalt dieser Box in einer Textdatei kopieren."
|
814 |
-
|
815 |
-
#: counter-core.php:1015
|
816 |
-
#, php-format
|
817 |
-
#@ cpd
|
818 |
-
msgid "Backup of counter table saved in %s."
|
819 |
-
msgstr "Die Zähler-Tabelle wurde in %s gesichert."
|
820 |
-
|
821 |
-
#: counter-core.php:1017
|
822 |
-
#, php-format
|
823 |
-
#@ cpd
|
824 |
-
msgid "Backup of counter options and collection saved in %s."
|
825 |
-
msgstr "Die Optionen und Zusammenfassung wurden in %s gesichert."
|
826 |
-
|
827 |
-
#: counter-options.php:170
|
828 |
-
#@ cpd
|
829 |
-
msgid "Collection in progress..."
|
830 |
-
msgstr "Zusammenfassung erfolgt ..."
|
831 |
-
|
832 |
-
#: counter-options.php:240
|
833 |
-
#@ cpd
|
834 |
-
msgid "Get Visitors per Post..."
|
835 |
-
msgstr "Besucher pro Artikel bearbeiten..."
|
836 |
-
|
837 |
-
#: counter-options.php:261
|
838 |
-
#@ cpd
|
839 |
-
msgid "Delete old data..."
|
840 |
-
msgstr "Löschen alter Daten..."
|
841 |
-
|
842 |
-
#: counter-options.php:285
|
843 |
-
#, php-format
|
844 |
-
#@ cpd
|
845 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
846 |
-
msgstr "Zähler-Einträge bis %s zusammengefasst und Tabelle %s optimiert (Größe vorher = %s > Größe nachher = %s)."
|
847 |
-
|
848 |
-
#: counter-options.php:294
|
849 |
-
#@ cpd
|
850 |
-
msgid "Installation of \"Count per Day\" checked"
|
851 |
-
msgstr "Installation von "Count per Day" überprüft"
|
852 |
-
|
853 |
-
#: counter-options.php:342
|
854 |
-
#: counter-options.php:566
|
855 |
-
#@ default
|
856 |
-
msgid "Tools"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: counter-options.php:394
|
860 |
-
#@ cpd
|
861 |
-
msgid "Save URL only, no query string."
|
862 |
-
msgstr "Speichere nur die URL, keinen Query-String."
|
863 |
-
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:648
|
866 |
-
#@ cpd
|
867 |
-
msgid "Backup"
|
868 |
-
msgstr "Backup"
|
869 |
-
|
870 |
-
#: counter-options.php:537
|
871 |
-
#@ cpd
|
872 |
-
msgid "Entries per pass"
|
873 |
-
msgstr "Einträge pro Durchgang"
|
874 |
-
|
875 |
-
#: counter-options.php:540
|
876 |
-
#@ cpd
|
877 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr "Wie viele Einträge sollen pro Durchgang bearbeitet werden? Standard: 10000"
|
879 |
-
|
880 |
-
#: counter-options.php:545
|
881 |
-
#@ cpd
|
882 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr "Wenn dein PHP-Speicher-Limit kleiner als 50 MB ist und du nur eine weiße Seite oder Fehlermeldungen bekommst versuche einen kleineren Wert."
|
884 |
-
|
885 |
-
#: counter-options.php:652
|
886 |
-
#, php-format
|
887 |
-
#@ cpd
|
888 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr "Erstelle eine Sicherungskopie der Zähler-Tabelle %s in deinem wp-content Verzeichnis (wenn beschreibbar)."
|
890 |
-
|
891 |
-
#: counter-options.php:656
|
892 |
-
#@ cpd
|
893 |
-
msgid "Backup the database"
|
894 |
-
msgstr "Datenbank sichern"
|
895 |
-
|
896 |
-
#: counter-options.php:683
|
897 |
-
#: counter-options.php:715
|
898 |
-
#@ cpd
|
899 |
-
msgid "Collect old data"
|
900 |
-
msgstr "Alte Daten zusammenfassen"
|
901 |
-
|
902 |
-
#: counter-options.php:688
|
903 |
-
#, php-format
|
904 |
-
#@ cpd
|
905 |
-
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr "Die aktuelle Größe der Zähler-Tabelle %s ist %s."
|
907 |
-
|
908 |
-
#: counter-options.php:690
|
909 |
-
#@ cpd
|
910 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
911 |
-
msgstr "Du kannst alte Daten zusammenfassen und die Zähler-Tabelle bereinigen.<br/>Seitenaufrufe und Besucher werden pro Monat, pro Land und pro Beitrag zusammengefasst.<br/>Browser und Herkunftsdaten werden gelöscht."
|
912 |
-
|
913 |
-
#: counter-options.php:695
|
914 |
-
#, php-format
|
915 |
-
#@ cpd
|
916 |
-
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr "Momentan enthält die Zusammenfassung Daten bis %s."
|
918 |
-
|
919 |
-
#: counter-options.php:699
|
920 |
-
#@ cpd
|
921 |
-
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr "Normalerweise werden neue Daten zur Zusammenfassung hinzugefügt."
|
923 |
-
|
924 |
-
#: counter-options.php:705
|
925 |
-
#@ cpd
|
926 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr "Lösche die aktuelle Zusammenfassung und erstelle eine neue, die nur die Daten enthält, die momentan in der Zähler-Tabelle sind."
|
928 |
-
|
929 |
-
#: counter-options.php:706
|
930 |
-
#, php-format
|
931 |
-
#@ cpd
|
932 |
-
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr "Alle zusammengefassten Daten bis %s werden gelöscht."
|
934 |
-
|
935 |
-
#: counter-options.php:711
|
936 |
-
#, php-format
|
937 |
-
#@ cpd
|
938 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr "Behalte die Einträge der letzten %s vollen Monate plus des aktuellen Monats in der Zähler-Tabelle."
|
940 |
-
|
941 |
-
#: counter-options.php:770
|
942 |
-
#@ cpd
|
943 |
-
msgid "ReActivation"
|
944 |
-
msgstr "ReAktivierung"
|
945 |
-
|
946 |
-
#: counter-options.php:773
|
947 |
-
#@ cpd
|
948 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr "Hier kannst du die Installationsfunktionen manuell starten.<br/>Macht das gleiche, als würdest du das Plugin deaktivieren und wieder aktivieren."
|
950 |
-
|
951 |
-
#: counter-options.php:778
|
952 |
-
#@ cpd
|
953 |
-
msgid "ReActivate the plugin"
|
954 |
-
msgstr "ReAktiviere das Plugin"
|
955 |
-
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
#@ cpd
|
959 |
-
msgid "Visitors"
|
960 |
-
msgstr "Besucher"
|
961 |
-
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
#@ cpd
|
965 |
-
msgid "Most visited day"
|
966 |
-
msgstr "meistbesuchter Tag"
|
967 |
-
|
968 |
-
#: counter.php:1239
|
969 |
-
#@ cpd
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr "per Drag & Drop sortieren"
|
972 |
-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:47
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Einstellungen aktualisiert"
|
30 |
msgid "Database cleaned. %s rows deleted."
|
31 |
msgstr "Datenbank aufgeräumt. %s Datensätze gelöscht."
|
32 |
|
33 |
+
#: counter-options.php:122
|
34 |
+
#: counter-options.php:509
|
35 |
#@ cpd
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "DEINSTALLIERE Count per Day"
|
38 |
|
39 |
+
#: counter-options.php:127
|
40 |
+
#: counter-options.php:129
|
41 |
+
#: counter-options.php:131
|
42 |
#, php-format
|
43 |
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "Tabelle %s gelöscht"
|
46 |
|
47 |
+
#: counter-options.php:133
|
48 |
#@ cpd
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Einstellungen gelöscht"
|
51 |
|
52 |
+
#: counter-options.php:157
|
53 |
+
#: counter-options.php:494
|
54 |
#@ cpd
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Deinstallation"
|
57 |
|
58 |
+
#: counter-options.php:158
|
59 |
#@ cpd
|
60 |
msgid "Click here"
|
61 |
msgstr "Klick hier"
|
62 |
|
63 |
+
#: counter-options.php:158
|
64 |
#@ cpd
|
65 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
msgstr "um die Deinstallation zu beenden und \"Count per Day\" zu deaktivieren."
|
67 |
|
68 |
+
#: counter-options.php:180
|
69 |
+
#@ cpd
|
70 |
+
msgid "Options"
|
71 |
+
msgstr "Einstellungen"
|
72 |
+
|
73 |
+
#: counter-options.php:191
|
74 |
#@ cpd
|
75 |
msgid "Online time"
|
76 |
msgstr "Onlinezeit"
|
77 |
|
78 |
+
#: counter-options.php:192
|
79 |
#@ cpd
|
80 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
81 |
msgstr "Sekunden für Onlinecounter. Wird für die Anzeige der \"Besucher momentan online\" im Dashboard verwendet."
|
82 |
|
83 |
+
#: counter-options.php:195
|
84 |
#@ cpd
|
85 |
msgid "Logged on Users"
|
86 |
msgstr "Angemeldete Benutzer"
|
87 |
|
88 |
+
#: counter-options.php:197
|
89 |
#@ cpd
|
90 |
msgid "count too"
|
91 |
msgstr "auch mit zählen"
|
92 |
|
93 |
+
#: counter-options.php:209
|
94 |
#@ cpd
|
95 |
msgid "Auto counter"
|
96 |
msgstr "Auto-Counter"
|
97 |
|
98 |
+
#: counter-options.php:210
|
99 |
#@ cpd
|
100 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
101 |
msgstr "Zählt automatisch Besuche auf Single-Posts und Seiten ohne Änderungen am Template."
|
102 |
|
103 |
+
#: counter-options.php:213
|
104 |
#@ cpd
|
105 |
msgid "Bots to ignore"
|
106 |
msgstr "Spam/Suchmaschinen Bots ignorieren"
|
107 |
|
108 |
+
#: counter-options.php:344
|
109 |
#@ cpd
|
110 |
msgid "Update options"
|
111 |
msgstr "Einstellungen aktualisieren"
|
112 |
|
113 |
+
#: counter-options.php:458
|
114 |
+
#: counter-options.php:467
|
115 |
#@ cpd
|
116 |
msgid "Clean the database"
|
117 |
msgstr "Datenbank aufräumen"
|
118 |
|
119 |
+
#: counter-options.php:461
|
120 |
#@ cpd
|
121 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
122 |
msgstr "Du kannst die Counter-Tabelle von \"Spam-Daten\" befreien.<br />Wenn du neue Bots zu der Liste oben hinzufügst bleiben die alten \"Spam-Daten\" erhalten.<br />Hier kannst du den Filter erneut laufen lassen und die Besuche von Bots nachträglich löschen."
|
123 |
|
124 |
+
#: counter-options.php:497
|
125 |
#@ cpd
|
126 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
127 |
msgstr "Wenn \"Count per Day\" nur deaktiviert wird, bleiben die Tabellen in der Datenbank erhalten."
|
128 |
|
129 |
+
#: counter-options.php:498
|
130 |
#@ cpd
|
131 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
132 |
msgstr "Hier kannst du \"Count per Day\" deinstallieren und die Tabellen löschen."
|
133 |
|
134 |
+
#: counter-options.php:501
|
135 |
#@ cpd
|
136 |
msgid "WARNING"
|
137 |
msgstr "WARNUNG"
|
138 |
|
139 |
+
#: counter-options.php:502
|
140 |
#@ cpd
|
141 |
msgid "These tables (with ALL counter data) will be deleted."
|
142 |
msgstr "Diese Tabellen werden mit ALLEN Zählerdaten gelöscht."
|
143 |
|
144 |
+
#: counter-options.php:504
|
145 |
#@ cpd
|
146 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
147 |
msgstr "Wenn \"Count per Day\" erneut installiert wird, beginnt der Zähler bei 0."
|
148 |
|
149 |
+
#: counter-options.php:508
|
|
|
150 |
#@ cpd
|
151 |
msgid "Yes"
|
152 |
msgstr "Ja, los!"
|
153 |
|
154 |
+
#: counter-options.php:509
|
155 |
#@ cpd
|
156 |
msgid "You are sure to disable Count per Day and delete all data?"
|
157 |
msgstr "Bist du sicher, dass du Count per Day deaktivieren und alle Daten löschen willst?"
|
158 |
|
159 |
+
#: counter.php:1779
|
160 |
+
#: counter.php:2140
|
161 |
#@ cpd
|
162 |
msgid "Statistics"
|
163 |
msgstr "Statistiken"
|
164 |
|
165 |
+
#: counter.php:530
|
166 |
+
#: counter.php:535
|
167 |
+
#: counter.php:1597
|
168 |
+
#: counter.php:1743
|
169 |
+
#: counter.php:2217
|
170 |
#@ cpd
|
171 |
msgid "Total visitors"
|
172 |
msgstr "Besucher gesamt"
|
173 |
|
174 |
+
#: counter.php:531
|
175 |
+
#: counter.php:2223
|
176 |
#@ cpd
|
177 |
msgid "Visitors currently online"
|
178 |
msgstr "Besucher momentan online"
|
179 |
|
180 |
+
#: counter.php:532
|
181 |
+
#: counter.php:2218
|
182 |
#@ cpd
|
183 |
msgid "Visitors today"
|
184 |
msgstr "Besucher heute"
|
185 |
|
186 |
+
#: counter.php:533
|
187 |
+
#: counter.php:2219
|
188 |
#@ cpd
|
189 |
msgid "Visitors yesterday"
|
190 |
msgstr "Besucher gestern"
|
191 |
|
192 |
+
#: counter.php:534
|
193 |
+
#: counter.php:2220
|
194 |
#@ cpd
|
195 |
msgid "Visitors last week"
|
196 |
msgstr "Besucher letzte Woche"
|
197 |
|
198 |
+
#: counter.php:537
|
199 |
+
#: counter.php:2224
|
|
|
200 |
#@ cpd
|
201 |
msgid "Counter starts on"
|
202 |
msgstr "gezählt ab"
|
203 |
|
204 |
+
#: counter.php:536
|
205 |
+
#: counter.php:637
|
206 |
+
#: counter.php:1599
|
207 |
+
#: counter.php:1749
|
208 |
+
#: counter.php:1758
|
209 |
+
#: counter.php:2222
|
210 |
+
#: userperspan.php:33
|
211 |
#@ cpd
|
212 |
msgid "Visitors per day"
|
213 |
msgstr "Besucher pro Tag"
|
214 |
|
215 |
+
#: counter.php:1745
|
216 |
+
#: counter.php:2221
|
217 |
#@ cpd
|
218 |
msgid "Visitors per month"
|
219 |
msgstr "Besucher pro Monat"
|
220 |
|
221 |
+
#: counter-options.php:237
|
222 |
+
#: counter.php:1747
|
223 |
#@ cpd
|
224 |
msgid "Visitors per post"
|
225 |
msgstr "Besucher pro Artikel"
|
226 |
|
227 |
+
#: counter-options.php:118
|
228 |
#@ cpd
|
229 |
msgid "Counter reseted."
|
230 |
msgstr "Zähler zurückgesetzt."
|
231 |
|
232 |
+
#: counter-options.php:238
|
233 |
+
#: counter-options.php:242
|
234 |
#@ cpd
|
235 |
msgid "How many posts do you want to see on dashboard page?"
|
236 |
msgstr "Wie viele Einträge möchtest du auf der Dashboard Seite sehen?"
|
237 |
|
238 |
+
#: counter-options.php:241
|
239 |
#@ cpd
|
240 |
msgid "Latest Counts - Posts"
|
241 |
msgstr "Aktuelle Besuche - Artikel"
|
242 |
|
243 |
+
#: counter-options.php:245
|
244 |
#@ cpd
|
245 |
msgid "Latest Counts - Days"
|
246 |
msgstr "Aktuelle Besuche - Tage"
|
247 |
|
248 |
+
#: counter-options.php:246
|
249 |
+
#: counter-options.php:250
|
250 |
+
#: counter-options.php:276
|
251 |
#@ cpd
|
252 |
msgid "How many days do you want look back?"
|
253 |
msgstr "Wie viele Tage möchtest du zurück schauen?"
|
254 |
|
255 |
+
#: counter-options.php:291
|
256 |
#@ cpd
|
257 |
msgid "Show in lists"
|
258 |
msgstr "In Übersichten anzeigen"
|
259 |
|
260 |
+
#: counter-options.php:292
|
261 |
#@ cpd
|
262 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
263 |
msgstr "Zeige \"Besucher pro Artikel\" in einer eigenen Spalte in der Artikelübersicht."
|
264 |
|
265 |
+
#: counter-options.php:476
|
266 |
+
#: counter-options.php:485
|
267 |
#@ cpd
|
268 |
msgid "Reset the counter"
|
269 |
msgstr "Zähler zurücksetzen"
|
270 |
|
271 |
+
#: counter-options.php:479
|
272 |
#@ cpd
|
273 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
274 |
msgstr "Du kannst die Zähler zurücksetzen und die Tabelle leeren. Alles auf 0!<br />Wenn du die aktuellen Zahlen brauchst, mache ein Backup der Datenbank!"
|
275 |
|
276 |
+
#: counter.php:1258
|
277 |
#, php-format
|
278 |
#@ cpd
|
279 |
msgid "The %s most visited posts in last %s days:"
|
280 |
msgstr "Die %s am meisten besuchten Seiten der letzten %s Tage:"
|
281 |
|
282 |
+
#: counter.php:1584
|
|
|
|
|
283 |
#@ default
|
284 |
msgid "Settings"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: counter-options.php:226
|
288 |
+
#: counter.php:529
|
289 |
+
#: counter.php:1655
|
|
|
290 |
#@ cpd
|
291 |
msgid "Reads"
|
292 |
msgstr "Seitenaufrufe"
|
293 |
|
294 |
+
#: counter.php:1748
|
295 |
#@ cpd
|
296 |
msgid "Latest Counts"
|
297 |
msgstr "Letzte Seitenaufrufe"
|
298 |
|
299 |
+
#: counter-options.php:249
|
300 |
#@ cpd
|
301 |
msgid "Chart - Days"
|
302 |
msgstr "Diagramm - Tage"
|
303 |
|
304 |
+
#: counter-options.php:253
|
305 |
#@ cpd
|
306 |
msgid "Chart - Height"
|
307 |
msgstr "Diagramm - Höhe"
|
308 |
|
309 |
+
#: counter-options.php:254
|
310 |
#@ cpd
|
311 |
msgid "Height of the biggest bar"
|
312 |
msgstr "Höhe des größten Balkens"
|
313 |
|
314 |
+
#: counter.php:846
|
315 |
+
#@ cpd
|
316 |
+
msgid "no reads at this time"
|
317 |
+
msgstr "keine Seitenaufrufe"
|
318 |
+
|
319 |
+
#: counter.php:820
|
320 |
+
#@ cpd
|
321 |
+
msgid "days"
|
322 |
+
msgstr "Tage"
|
323 |
+
|
324 |
+
#: counter.php:2211
|
325 |
#@ cpd
|
326 |
msgid "This post"
|
327 |
msgstr "Diese Seite"
|
328 |
|
329 |
+
#: counter-options.php:234
|
330 |
#@ default
|
331 |
msgid "Dashboard"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: counter.php:636
|
335 |
+
#: counter.php:1759
|
336 |
#@ cpd
|
337 |
msgid "Reads per day"
|
338 |
msgstr "Seitenaufrufe pro Tag"
|
339 |
|
340 |
+
#: counter-options.php:58
|
341 |
#, php-format
|
342 |
#@ cpd
|
343 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
344 |
msgstr "Länder aktualisiert. <b>%s</b> Datensätze in %s noch offen."
|
345 |
|
346 |
+
#: counter-options.php:63
|
347 |
#@ cpd
|
348 |
msgid "update next"
|
349 |
msgstr "weiter aktualisieren"
|
350 |
|
351 |
+
#: counter-options.php:353
|
352 |
#@ cpd
|
353 |
msgid "GeoIP - Countries"
|
354 |
msgstr "GeoIP - Länder"
|
355 |
|
356 |
+
#: counter-options.php:362
|
357 |
#@ cpd
|
358 |
msgid "Update old counter data"
|
359 |
msgstr "Aktualisiere alte Zählerdaten"
|
360 |
|
361 |
+
#: counter-options.php:375
|
362 |
#@ cpd
|
363 |
msgid "Update GeoIP database"
|
364 |
msgstr "Aktualisiere GeoIP Datenbank"
|
365 |
|
366 |
+
#: counter-options.php:378
|
367 |
#@ cpd
|
368 |
msgid "Download a new version of GeoIP.dat file."
|
369 |
msgstr "Neue Version von GeoIP.dat herunterladen."
|
370 |
|
371 |
+
#: counter-options.php:384
|
372 |
#@ cpd
|
373 |
msgid "More informations about GeoIP"
|
374 |
msgstr "Mehr Informationen über GeoIP"
|
375 |
|
376 |
+
#: counter.php:1763
|
377 |
#@ cpd
|
378 |
msgid "Reads per Country"
|
379 |
msgstr "Seitenaufrufe pro Land"
|
380 |
|
381 |
+
#: geoip/geoip.php:132
|
382 |
#@ cpd
|
383 |
msgid "New GeoIP database installed."
|
384 |
msgstr "Neue GeoIP Datenbank installiert."
|
385 |
|
386 |
+
#: geoip/geoip.php:134
|
387 |
#@ cpd
|
388 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
389 |
msgstr "Leider gab es einen Fehler. Versuche es noch einmal oder überprüfe ob du für das Verzeichnis \"geoip\" Schreibrechte (777) hast."
|
390 |
|
391 |
+
#: geoip/geoip.php:108
|
392 |
#@ cpd
|
393 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
394 |
msgstr "Leider ist eine notwendige Funktion (zlib) nicht installiert oder nicht in der php.ini aktiviert."
|
395 |
|
396 |
+
#: counter-options.php:262
|
397 |
#@ cpd
|
398 |
msgid "Countries"
|
399 |
msgstr "Länder"
|
400 |
|
401 |
+
#: counter-options.php:263
|
402 |
#@ cpd
|
403 |
msgid "How many countries do you want to see on dashboard page?"
|
404 |
msgstr "Wie viele Länder möchtest du auf der Dashboard Seite sehen?"
|
405 |
|
406 |
+
#: counter-options.php:105
|
407 |
#, php-format
|
408 |
#@ cpd
|
409 |
msgid "Mass Bots cleaned. %s counts deleted."
|
410 |
msgstr "Massen-Bots bereinigt. %s Zählerdaten gelöscht."
|
411 |
|
412 |
+
#: counter-options.php:399
|
413 |
+
#: massbots.php:33
|
414 |
#@ cpd
|
415 |
msgid "Mass Bots"
|
416 |
msgstr "Massen-Bots"
|
417 |
|
418 |
+
#: counter-options.php:403
|
419 |
#, php-format
|
420 |
#@ cpd
|
421 |
msgid "Show all IPs with more than %s page views per day"
|
422 |
msgstr "Zeige alle IP-Adressen mit mehr als %s Seitenaufrufe pro Tag"
|
423 |
|
424 |
+
#: counter-options.php:404
|
425 |
+
#: notes.php:76
|
426 |
+
#: userperspan.php:43
|
427 |
#@ cpd
|
428 |
msgid "show"
|
429 |
msgstr "anzeigen"
|
430 |
|
431 |
+
#: counter-options.php:431
|
432 |
+
#: counter-options.php:448
|
433 |
#, php-format
|
434 |
#@ cpd
|
435 |
msgid "Delete these %s counts"
|
436 |
msgstr "Lösche diese %s Zählerdaten"
|
437 |
|
438 |
+
#: counter.php:1416
|
439 |
#@ cpd
|
440 |
msgid "Other"
|
441 |
msgstr "Sonstige"
|
442 |
|
443 |
+
#: counter.php:1513
|
444 |
+
#: massbots.php:50
|
445 |
#: userperspan.php:63
|
446 |
#@ default
|
447 |
msgid "Front page displays"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: counter-options.php:267
|
451 |
+
#: counter.php:1753
|
452 |
#@ cpd
|
453 |
msgid "Browsers"
|
454 |
msgstr "Browser"
|
455 |
|
456 |
+
#: counter-options.php:412
|
457 |
#@ cpd
|
458 |
msgid "IP"
|
459 |
msgstr "IP"
|
460 |
|
461 |
+
#: counter-options.php:413
|
462 |
+
#: notes.php:80
|
463 |
#@ cpd
|
464 |
#@ default
|
465 |
msgid "Date"
|
466 |
+
msgstr "Datum"
|
467 |
|
468 |
+
#: counter-options.php:414
|
469 |
#@ cpd
|
470 |
msgid "Client"
|
471 |
msgstr "Browser"
|
472 |
|
473 |
+
#: counter-options.php:415
|
474 |
#@ cpd
|
475 |
msgid "Views"
|
476 |
msgstr "Seitenaufrufe"
|
477 |
|
478 |
+
#: counter-options.php:300
|
479 |
#@ cpd
|
480 |
msgid "Start Values"
|
481 |
msgstr "Startwerte"
|
482 |
|
483 |
+
#: counter-options.php:304
|
484 |
#@ cpd
|
485 |
msgid "Here you can change the date of first count and add a start count."
|
486 |
msgstr "Hier kannst du das Startdatum und den Startzählerstand überschreiben."
|
487 |
|
488 |
+
#: counter-options.php:308
|
489 |
#@ cpd
|
490 |
msgid "Start date"
|
491 |
msgstr "Startdatum"
|
492 |
|
493 |
+
#: counter-options.php:309
|
494 |
#@ cpd
|
495 |
msgid "Your old Counter starts at?"
|
496 |
msgstr "Dein alter Zähler begann am?"
|
497 |
|
498 |
+
#: counter-options.php:312
|
499 |
+
#: counter-options.php:316
|
500 |
#@ cpd
|
501 |
msgid "Start count"
|
502 |
msgstr "Startzählerstand"
|
503 |
|
504 |
+
#: counter-options.php:313
|
505 |
#@ cpd
|
506 |
msgid "Add this value to \"Total visitors\"."
|
507 |
msgstr "Addiere diesen Wert zu \"Besucher gesamt\"."
|
508 |
|
509 |
+
#: counter-options.php:517
|
510 |
#@ cpd
|
511 |
msgid "Support"
|
512 |
msgstr "Kontakt"
|
513 |
|
514 |
+
#: counter.php:1711
|
515 |
#@ cpd
|
516 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
517 |
msgstr "Bug? Problem? Frage? Tipp? Lob?"
|
518 |
|
519 |
+
#: counter.php:1712
|
520 |
#, php-format
|
521 |
#@ cpd
|
522 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
523 |
msgstr "Schreib einen Kommentar auf der <a href=\"%s\">Plugin-Seite</a>."
|
524 |
|
525 |
+
#: counter.php:1375
|
526 |
#@ default
|
527 |
msgid "Show"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: counter.php:1498
|
531 |
#@ default
|
532 |
msgid "Edit Post"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: counter.php:1710
|
536 |
#, php-format
|
537 |
#@ cpd
|
538 |
msgid "Time for Count per Day: <code>%s</code>."
|
539 |
msgstr "Zeit bei Count per Day: <code>%s</code>"
|
540 |
|
541 |
+
#: counter-options.php:198
|
542 |
#@ cpd
|
543 |
msgid "until User Level"
|
544 |
msgstr "bis Benutzerlevel"
|
545 |
|
546 |
+
#: counter.php:1750
|
547 |
#@ default
|
548 |
msgid "Plugin"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: counter.php:823
|
552 |
+
#: counter.php:1377
|
553 |
+
#: notes.php:47
|
554 |
+
#: notes.php:81
|
555 |
#@ cpd
|
556 |
msgid "Notes"
|
557 |
msgstr "Notizen"
|
558 |
|
559 |
+
#: notes.php:82
|
560 |
#@ default
|
561 |
msgid "Action"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: notes.php:87
|
565 |
#@ cpd
|
566 |
msgid "add"
|
567 |
msgstr "hinzufügen"
|
568 |
|
569 |
+
#: notes.php:102
|
570 |
#@ cpd
|
571 |
msgid "save"
|
572 |
msgstr "speichern"
|
573 |
|
574 |
+
#: notes.php:103
|
575 |
#@ cpd
|
576 |
msgid "delete"
|
577 |
msgstr "löschen"
|
578 |
|
579 |
+
#: notes.php:114
|
580 |
#@ cpd
|
581 |
msgid "edit"
|
582 |
msgstr "ändern"
|
583 |
|
584 |
+
#: notes.php:81
|
585 |
+
#@ cpd
|
586 |
+
msgid "(1 per day)"
|
587 |
+
msgstr "(1 pro Tag)"
|
588 |
+
|
589 |
+
#: counter-options.php:317
|
590 |
#@ cpd
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Addiere diesen Wert zu \"Seitenaufrufe gesamt\"."
|
593 |
|
594 |
+
#: counter.php:525
|
595 |
+
#: counter.php:2212
|
596 |
#@ cpd
|
597 |
msgid "Total reads"
|
598 |
msgstr "Seitenaufrufe gesamt"
|
599 |
|
600 |
+
#: counter.php:526
|
601 |
+
#: counter.php:2213
|
602 |
#@ cpd
|
603 |
msgid "Reads today"
|
604 |
msgstr "Seitenaufrufe heute"
|
605 |
|
606 |
+
#: counter.php:527
|
607 |
+
#: counter.php:2214
|
608 |
#@ cpd
|
609 |
msgid "Reads yesterday"
|
610 |
msgstr "Seitenaufrufe gestern"
|
611 |
|
612 |
+
#: counter.php:901
|
613 |
+
#: counter.php:1848
|
614 |
#@ cpd
|
615 |
msgid "Map"
|
616 |
msgstr "Weltkarte"
|
617 |
|
618 |
+
#: counter-options.php:217
|
619 |
#@ cpd
|
620 |
msgid "Anonymous IP"
|
621 |
msgstr "Anonyme IP-Adresse"
|
622 |
|
623 |
+
#: counter-options.php:221
|
624 |
#@ cpd
|
625 |
msgid "Cache"
|
626 |
msgstr "Cache"
|
627 |
|
628 |
+
#: counter-options.php:222
|
629 |
#@ cpd
|
630 |
msgid "I use a cache plugin. Count these visits with ajax."
|
631 |
msgstr "Ich benutze ein Cache-Plugin. Zähle diese Seiten mit Ajax."
|
632 |
|
633 |
+
#: counter-options.php:268
|
634 |
#@ cpd
|
635 |
msgid "Substring of the user agent, separated by comma"
|
636 |
msgstr "Teil der Browserkennung (user agent), getrennt durch Komma."
|
637 |
|
638 |
+
#: counter.php:1764
|
639 |
#@ cpd
|
640 |
msgid "Visitors per Country"
|
641 |
msgstr "Besucher pro Land"
|
642 |
|
643 |
+
#: counter-options.php:337
|
644 |
#@ cpd
|
645 |
msgid "Debug mode"
|
646 |
msgstr "Debug Modus"
|
647 |
|
648 |
+
#: counter-options.php:339
|
649 |
#@ cpd
|
650 |
msgid "Show debug informations at the bottom of all pages."
|
651 |
msgstr "Zeigt Informationen zum Plugin am unteren Ende aller Seiten an."
|
652 |
|
653 |
+
#: userperspan.php:37
|
654 |
#@ cpd
|
655 |
msgid "Start"
|
656 |
msgstr "Start"
|
657 |
|
658 |
+
#: userperspan.php:39
|
659 |
#@ cpd
|
660 |
msgid "End"
|
661 |
msgstr "Ende"
|
662 |
|
663 |
+
#: userperspan.php:41
|
664 |
#@ cpd
|
665 |
msgid "PostID"
|
666 |
msgstr "Artikel-ID"
|
667 |
|
668 |
+
#: userperspan.php:49
|
669 |
#@ cpd
|
670 |
msgid "no data found"
|
671 |
msgstr "keine passenden Daten gefunden"
|
672 |
|
673 |
+
#: counter-options.php:365
|
674 |
#@ cpd
|
675 |
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!"
|
676 |
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."
|
677 |
|
678 |
+
#: counter-options.php:187
|
679 |
#@ cpd
|
680 |
msgid "Counter"
|
681 |
msgstr "Zähler"
|
682 |
|
683 |
+
#: counter-options.php:279
|
684 |
#@ cpd
|
685 |
msgid "Local URLs"
|
686 |
msgstr "Lokale URLs"
|
687 |
|
688 |
+
#: counter-options.php:280
|
689 |
#@ cpd
|
690 |
msgid "Show local referrers too."
|
691 |
msgstr "Zeige auch lokale Referrer."
|
692 |
|
693 |
+
#: counter-options.php:288
|
694 |
#@ default
|
695 |
msgid "Posts"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: counter-options.php:288
|
699 |
#@ default
|
700 |
msgid "Pages"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: counter.php:1507
|
704 |
#@ default
|
705 |
msgid "Category"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: counter.php:1510
|
709 |
#@ default
|
710 |
msgid "Tag"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: counter.php:1713
|
714 |
#@ default
|
715 |
msgid "License"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: counter.php:1754
|
719 |
#@ cpd
|
720 |
msgid "Referrer"
|
721 |
msgstr "Herkunft"
|
722 |
|
723 |
+
#: counter.php:2235
|
724 |
#@ default
|
725 |
msgid "Title"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: counter-options.php:226
|
729 |
#@ cpd
|
730 |
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."
|
731 |
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."
|
732 |
|
733 |
+
#: counter-options.php:225
|
734 |
#@ cpd
|
735 |
msgid "Clients and referrers"
|
736 |
msgstr "Browser und Herkunft"
|
737 |
|
738 |
+
#: counter.php:528
|
739 |
+
#: counter.php:2215
|
740 |
#@ cpd
|
741 |
msgid "Reads last week"
|
742 |
msgstr "Seitenaufrufe letzte Woche"
|
743 |
|
744 |
+
#: counter.php:1746
|
745 |
+
#: counter.php:2216
|
746 |
#@ cpd
|
747 |
msgid "Reads per month"
|
748 |
msgstr "Seitenaufrufe pro Monat"
|
749 |
|
750 |
+
#: counter-options.php:257
|
751 |
+
#@ cpd
|
752 |
+
msgid "Old Charts"
|
753 |
+
msgstr "Alte Diagramme"
|
754 |
+
|
755 |
+
#: counter-options.php:258
|
756 |
+
#@ cpd
|
757 |
+
msgid "Show old bar charts."
|
758 |
+
msgstr "Zeige alte Balken-Diagramme."
|
759 |
+
|
760 |
+
#: counter-options.php:271
|
761 |
#@ cpd
|
762 |
msgid "Referrers - Entries"
|
763 |
msgstr "Herkunft - Einträge"
|
764 |
|
765 |
+
#: counter-options.php:272
|
766 |
#@ cpd
|
767 |
msgid "How many referrers do you want to see on dashboard page?"
|
768 |
msgstr "Wie viele Herkunftsseiten möchtest du auf der Dashbord Seite sehen?"
|
769 |
|
770 |
+
#: counter-options.php:275
|
771 |
#@ cpd
|
772 |
msgid "Referrers - Days"
|
773 |
msgstr "Herkunft - Tage"
|
774 |
|
775 |
+
#: counter.php:1441
|
776 |
#, php-format
|
777 |
#@ cpd
|
778 |
msgid "The %s referrers in last %s days:"
|
779 |
msgstr "Die %s Herkunftsseiten der letzten %s Tage:"
|
780 |
|
781 |
+
#: counter.php:1744
|
782 |
#@ cpd
|
783 |
msgid "Visitors online"
|
784 |
msgstr "Besucher online"
|
785 |
|
786 |
+
#: counter-options.php:325
|
787 |
+
#@ default
|
788 |
msgid "Stylesheet"
|
789 |
+
msgstr ""
|
790 |
|
791 |
+
#: counter-options.php:328
|
792 |
#@ cpd
|
793 |
msgid "NO Stylesheet in Frontend"
|
794 |
msgstr "KEIN Stylesheet im Frontend"
|
795 |
|
796 |
+
#: counter-options.php:329
|
797 |
#@ cpd
|
798 |
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
799 |
msgstr "Lade die Datei \"counter.css\" nicht im Frontend."
|
800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-el.mo
CHANGED
Binary file
|
locale/cpd-el.po
CHANGED
@@ -19,18 +19,18 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Οι ρυθμίσεις σας ενημερώθηκαν"
|
26 |
|
27 |
-
#: counter-options.php:
|
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:
|
34 |
#@ cpd
|
35 |
msgid "update next"
|
36 |
msgstr "ενημέρωση επόμενων"
|
@@ -41,933 +41,746 @@ msgstr "ενημέρωση επόμενων"
|
|
41 |
msgid "Mass Bots cleaned. %s counts deleted."
|
42 |
msgstr "Καθαρίστηκαν μαζικά bot. %s μετρήσεις σβήστηκαν."
|
43 |
|
44 |
-
#: counter-options.php:
|
45 |
#, php-format
|
46 |
#@ cpd
|
47 |
msgid "Database cleaned. %s rows deleted."
|
48 |
msgstr "Καθαρίστικε η βάση δεδομένων. %s γραμμές σβήστηκαν."
|
49 |
|
50 |
-
#: counter-options.php:
|
51 |
#@ cpd
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Μηδενίστηκε ο μετρητής."
|
54 |
|
55 |
-
#: counter-options.php:
|
56 |
-
#: counter-options.php:
|
57 |
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "Απεγκατάσταση του Count per Day"
|
60 |
|
61 |
-
#: counter-options.php:
|
62 |
-
#: counter-options.php:
|
63 |
-
#: counter-options.php:
|
64 |
#, php-format
|
65 |
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "Πίνακες %s διαγράφηκαν"
|
68 |
|
69 |
-
#: counter-options.php:
|
70 |
#@ cpd
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Οι ρυθμίσεις διαγράφηκαν"
|
73 |
|
74 |
-
#: counter-options.php:
|
75 |
-
#: counter-options.php:
|
76 |
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Απεγκατάσταση"
|
79 |
|
80 |
-
#: counter-options.php:
|
81 |
#@ cpd
|
82 |
msgid "Click here"
|
83 |
msgstr "Κάντε κλικ εδώ"
|
84 |
|
85 |
-
#: counter-options.php:
|
86 |
#@ cpd
|
87 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
88 |
msgstr "για να ολοκληρώσετε την απεγκατάσταση και να απενεργοποιήσετε το \"Count per Day\"."
|
89 |
|
90 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
91 |
#@ cpd
|
92 |
msgid "Online time"
|
93 |
msgstr "Χρόνος σε σύνδεση"
|
94 |
|
95 |
-
#: counter-options.php:
|
96 |
#@ cpd
|
97 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
98 |
msgstr "Δευτερόλεπτα για τον μετρητή συνδεδεμένων χρηστών. Χρησιμοποιείται για τους \"Visitors online\" στην κεντρική σελίδα."
|
99 |
|
100 |
-
#: counter-options.php:
|
101 |
#@ cpd
|
102 |
msgid "Logged on Users"
|
103 |
msgstr "Εγγεγραμμένοι-Συνδεδεμένοι Χρήστες"
|
104 |
|
105 |
-
#: counter-options.php:
|
106 |
#@ cpd
|
107 |
msgid "count too"
|
108 |
msgstr "μετρήστε επίσης"
|
109 |
|
110 |
-
#: counter-options.php:
|
111 |
#@ cpd
|
112 |
msgid "until User Level"
|
113 |
msgstr "μέχρι το Επίπεδο Χρήστη"
|
114 |
|
115 |
-
#: counter-options.php:
|
116 |
#@ cpd
|
117 |
msgid "Auto counter"
|
118 |
msgstr "Αυτόματος μετρητής"
|
119 |
|
120 |
-
#: counter-options.php:
|
121 |
#@ cpd
|
122 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
123 |
msgstr "Μετρά αυτόματα μονά-άρθρα και σελίδες, δεν χρειάζεται αλλαγή στο πρότυπο (template)."
|
124 |
|
125 |
-
#: counter-options.php:
|
126 |
#@ cpd
|
127 |
msgid "Bots to ignore"
|
128 |
msgstr "Bots που θα αγνοηθούν"
|
129 |
|
130 |
-
#: counter-options.php:
|
131 |
#@ cpd
|
132 |
msgid "Anonymous IP"
|
133 |
msgstr "Ανώνυμος IP"
|
134 |
|
135 |
-
#: counter-options.php:
|
136 |
#@ cpd
|
137 |
msgid "Cache"
|
138 |
msgstr "Αποθυκευμένη μνήμη (Cache)"
|
139 |
|
140 |
-
#: counter-options.php:
|
141 |
#@ cpd
|
142 |
msgid "I use a cache plugin. Count these visits with ajax."
|
143 |
msgstr "Χρησιμοποιώ ένα cache-πρόσθετο. Μετρήστε αυτές τις επισκέψεις με ajax."
|
144 |
|
145 |
-
#: counter-options.php:
|
146 |
#@ cpd
|
147 |
msgid "Update options"
|
148 |
msgstr "Ενημέρωση ρυθμίσεων"
|
149 |
|
150 |
-
#: counter-options.php:
|
151 |
#@ default
|
152 |
msgid "Dashboard"
|
153 |
msgstr "Κεντρικός πίνακας"
|
154 |
|
155 |
-
#: counter-
|
156 |
-
#: counter
|
157 |
#@ cpd
|
158 |
msgid "Visitors per post"
|
159 |
msgstr "Επισκέπτες ανά άρθρο"
|
160 |
|
161 |
-
#: counter-options.php:
|
162 |
-
#: counter-options.php:
|
163 |
#@ cpd
|
164 |
msgid "How many posts do you want to see on dashboard page?"
|
165 |
msgstr "Πόσα άρθρα επιθυμείτε να βλέπετε στη κεντρική σελίδα σας;"
|
166 |
|
167 |
-
#: counter-options.php:
|
168 |
#@ cpd
|
169 |
msgid "Latest Counts - Posts"
|
170 |
msgstr "Τελευταίες Μετρήσεις - Άρθρα"
|
171 |
|
172 |
-
#: counter-options.php:
|
173 |
#@ cpd
|
174 |
msgid "Latest Counts - Days"
|
175 |
msgstr "Τελευταίες Μετρήσεις - Ημέρες"
|
176 |
|
177 |
-
#: counter-options.php:
|
178 |
-
#: counter-options.php:
|
179 |
-
#: counter-options.php:
|
180 |
#@ cpd
|
181 |
msgid "How many days do you want look back?"
|
182 |
msgstr "Μέχρι πόσες ημέρες επιθυμείτε να βλέπετε στο παρελθόν;"
|
183 |
|
184 |
-
#: counter-options.php:
|
185 |
#@ cpd
|
186 |
msgid "Chart - Days"
|
187 |
msgstr "Διάγραμμα - Ημερών"
|
188 |
|
189 |
-
#: counter-options.php:
|
190 |
#@ cpd
|
191 |
msgid "Chart - Height"
|
192 |
msgstr "Διάγραμμα - Ύψος"
|
193 |
|
194 |
-
#: counter-options.php:
|
195 |
#@ cpd
|
196 |
msgid "Height of the biggest bar"
|
197 |
msgstr "Ύψος της μεγαλύτερης μπάρας"
|
198 |
|
199 |
-
#: counter-options.php:
|
200 |
#@ cpd
|
201 |
msgid "Countries"
|
202 |
msgstr "Χώρες"
|
203 |
|
204 |
-
#: counter-options.php:
|
205 |
#@ cpd
|
206 |
msgid "How many countries do you want to see on dashboard page?"
|
207 |
msgstr "Πόσες χώρες επιθυμείτε να βλέπετε στην κεντρική σελίδα;"
|
208 |
|
209 |
-
#: counter-
|
210 |
-
#: counter
|
211 |
#@ cpd
|
212 |
msgid "Browsers"
|
213 |
msgstr "Περιηγητές"
|
214 |
|
215 |
-
#: counter-options.php:
|
216 |
#@ cpd
|
217 |
msgid "Substring of the user agent, separated by comma"
|
218 |
msgstr "Υπορουτίνα του οδηγού χρήστη, χωρισμένες με κόμμα"
|
219 |
|
220 |
-
#: counter-options.php:
|
221 |
#@ cpd
|
222 |
msgid "Show in lists"
|
223 |
msgstr "Εμφάνιση στις λίστες"
|
224 |
|
225 |
-
#: counter-options.php:
|
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:
|
231 |
#@ cpd
|
232 |
msgid "Start Values"
|
233 |
msgstr "Αρχικές Τιμές"
|
234 |
|
235 |
-
#: counter-options.php:
|
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:
|
241 |
#@ cpd
|
242 |
msgid "Start date"
|
243 |
msgstr "Αρχική ημερομηνία"
|
244 |
|
245 |
-
#: counter-options.php:
|
246 |
#@ cpd
|
247 |
msgid "Your old Counter starts at?"
|
248 |
msgstr "Πότε ξεκινά ο παλαιότερος σας Μετρητής;"
|
249 |
|
250 |
-
#: counter-options.php:
|
251 |
-
#: counter-options.php:
|
252 |
#@ cpd
|
253 |
msgid "Start count"
|
254 |
msgstr "Έναρξη μέτρησης"
|
255 |
|
256 |
-
#: counter-options.php:
|
257 |
#@ cpd
|
258 |
msgid "Add this value to \"Total visitors\"."
|
259 |
msgstr "Προσθήκη αυτής της τιμής στους \"Total visitors\"."
|
260 |
|
261 |
-
#: counter-options.php:
|
262 |
#@ cpd
|
263 |
msgid "Add this value to \"Total reads\"."
|
264 |
msgstr "Προσθήκη αυτής της τιμής στους \"Total reads\"."
|
265 |
|
266 |
-
#: counter-options.php:
|
267 |
#@ cpd
|
268 |
msgid "Debug mode"
|
269 |
msgstr "Λειτουργία εξακρίβωσης λαθών (Debug)"
|
270 |
|
271 |
-
#: counter-options.php:
|
272 |
#@ cpd
|
273 |
msgid "Show debug informations at the bottom of all pages."
|
274 |
msgstr "Εμφάνιση πληροφοριών (debug) στο κάτω μέρος όλων των σελίδων."
|
275 |
|
276 |
-
#: counter-options.php:
|
277 |
#@ cpd
|
278 |
msgid "GeoIP - Countries"
|
279 |
msgstr "Γαίο-ΙΡ - Χώρες"
|
280 |
|
281 |
-
#: counter-options.php:
|
282 |
#@ cpd
|
283 |
msgid "Update old counter data"
|
284 |
msgstr "Ενημέρωση παλαιότερων δεδομένων μετρητή"
|
285 |
|
286 |
-
#: counter-options.php:
|
287 |
#@ cpd
|
288 |
msgid "Update GeoIP database"
|
289 |
msgstr "Ενημέρωση Γαίο-ΙΡ βάσης δεδομένων"
|
290 |
|
291 |
-
#: counter-options.php:
|
292 |
#@ cpd
|
293 |
msgid "Download a new version of GeoIP.dat file."
|
294 |
msgstr "Κατεβάστε νέα έκδοση του αρχείου GeoIP.dat."
|
295 |
|
296 |
-
#: counter-options.php:
|
297 |
#@ cpd
|
298 |
msgid "More informations about GeoIP"
|
299 |
msgstr "Περισσότερες πληροφορίες για το Γαίο-ΙΡ"
|
300 |
|
301 |
-
#: counter-options.php:
|
302 |
-
#: massbots.php:
|
303 |
#@ cpd
|
304 |
msgid "Mass Bots"
|
305 |
msgstr "Μαζικά bots"
|
306 |
|
307 |
-
#: counter-options.php:
|
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:
|
314 |
-
#: notes.php:
|
315 |
-
#: userperspan.php:
|
316 |
#@ cpd
|
317 |
msgid "show"
|
318 |
msgstr "εμφάνιση"
|
319 |
|
320 |
-
#: counter-options.php:
|
321 |
#@ cpd
|
322 |
msgid "IP"
|
323 |
msgstr "IP"
|
324 |
|
325 |
-
#: counter-options.php:
|
326 |
-
#: notes.php:
|
327 |
#@ cpd
|
328 |
#@ default
|
329 |
msgid "Date"
|
330 |
msgstr "Ημερομηνία"
|
331 |
|
332 |
-
#: counter-options.php:
|
333 |
#@ cpd
|
334 |
msgid "Client"
|
335 |
msgstr "Πελάτης"
|
336 |
|
337 |
-
#: counter-options.php:
|
338 |
#@ cpd
|
339 |
msgid "Views"
|
340 |
msgstr "Αναγνώσεις"
|
341 |
|
342 |
-
#: counter-options.php:
|
343 |
-
#: counter-options.php:
|
344 |
#, php-format
|
345 |
#@ cpd
|
346 |
msgid "Delete these %s counts"
|
347 |
msgstr "Διαγράψτε αυτές τις %s μετρήσεις"
|
348 |
|
349 |
-
#: counter-options.php:
|
350 |
-
#: counter-options.php:
|
351 |
#@ cpd
|
352 |
msgid "Clean the database"
|
353 |
msgstr "Εκκαθάριση βάσης δεδομένων"
|
354 |
|
355 |
-
#: counter-options.php:
|
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:
|
361 |
-
#: counter-options.php:
|
362 |
#@ cpd
|
363 |
msgid "Reset the counter"
|
364 |
msgstr "΄Μηδενισμός μετρητή"
|
365 |
|
366 |
-
#: counter-options.php:
|
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:
|
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:
|
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:
|
382 |
#@ cpd
|
383 |
msgid "WARNING"
|
384 |
msgstr "ΠΡΟΣΟΧΗ"
|
385 |
|
386 |
-
#: counter-options.php:
|
387 |
#@ cpd
|
388 |
msgid "These tables (with ALL counter data) will be deleted."
|
389 |
msgstr "Αυτοί οι πίνακες (μαζί με ΌΛΑ τα δεδομένα των μετρήσεων) θα διαγραφούν."
|
390 |
|
391 |
-
#: counter-options.php:
|
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:
|
397 |
-
#: counter-options.php:816
|
398 |
#@ cpd
|
399 |
msgid "Yes"
|
400 |
msgstr "Ναι"
|
401 |
|
402 |
-
#: counter-options.php:
|
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:
|
408 |
#@ cpd
|
409 |
msgid "Support"
|
410 |
msgstr "Υποστήριξη"
|
411 |
|
412 |
-
#: counter
|
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
|
419 |
#@ cpd
|
420 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
421 |
msgstr "Λάθη; Προβλήματα; Ερωτήσεις; Προτάσεις; Έπαινοι;"
|
422 |
|
423 |
-
#: counter
|
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:
|
430 |
-
#: counter.php:
|
431 |
#@ cpd
|
432 |
msgid "Total reads"
|
433 |
msgstr "Συνολικές αναγνώσεις"
|
434 |
|
435 |
-
#: counter.php:
|
436 |
-
#: counter.php:
|
437 |
#@ cpd
|
438 |
msgid "Reads today"
|
439 |
msgstr "Αναγνώσεις σήμερα"
|
440 |
|
441 |
-
#: counter.php:
|
442 |
-
#: counter.php:
|
443 |
#@ cpd
|
444 |
msgid "Reads yesterday"
|
445 |
msgstr "Αναγνώσεις χτες"
|
446 |
|
447 |
-
#: counter
|
448 |
-
#: counter.php:
|
449 |
-
#: counter.php:
|
450 |
-
#: counter.php:
|
|
|
451 |
#@ cpd
|
452 |
msgid "Total visitors"
|
453 |
msgstr "Συνολικοί επισκέπτες"
|
454 |
|
455 |
-
#: counter.php:
|
456 |
-
#: counter.php:
|
457 |
#@ cpd
|
458 |
msgid "Visitors currently online"
|
459 |
msgstr "Επισκέπτες αυτή την στιγμή"
|
460 |
|
461 |
-
#: counter.php:
|
462 |
-
#: counter.php:
|
463 |
#@ cpd
|
464 |
msgid "Visitors today"
|
465 |
msgstr "Επισκέπτες σήμερα"
|
466 |
|
467 |
-
#: counter.php:
|
468 |
-
#: counter.php:
|
469 |
#@ cpd
|
470 |
msgid "Visitors yesterday"
|
471 |
msgstr "Επισκέπτες χτες"
|
472 |
|
473 |
-
#: counter.php:
|
474 |
-
#: counter.php:
|
475 |
#@ cpd
|
476 |
msgid "Visitors last week"
|
477 |
msgstr "Επισκέπτες την προηγούμενη εβδομάδα"
|
478 |
|
479 |
-
#: counter
|
480 |
-
#: counter.php:
|
481 |
-
#: counter.php:
|
482 |
-
#: counter.php:
|
483 |
-
#: counter.php:
|
484 |
-
#:
|
|
|
485 |
#@ cpd
|
486 |
msgid "Visitors per day"
|
487 |
msgstr "Επισκέπτες ανά ημέρα"
|
488 |
|
489 |
-
#: counter.php:
|
490 |
-
#: counter.php:
|
491 |
-
#: counter.php:1209
|
492 |
#@ cpd
|
493 |
msgid "Counter starts on"
|
494 |
msgstr "Ο μετρητής αρχίζει από"
|
495 |
|
496 |
-
#: counter.php:
|
497 |
-
|
498 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
#@ cpd
|
500 |
msgid "Notes"
|
501 |
msgstr "Σημειώσεις"
|
502 |
|
503 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
504 |
#, php-format
|
505 |
#@ cpd
|
506 |
msgid "The %s most visited posts in last %s days:"
|
507 |
msgstr "Τα %s πιο αναγνωσμένα άρθρα τις τελευταίες %s ημέρες:"
|
508 |
|
509 |
-
#: counter.php:
|
510 |
#@ default
|
511 |
msgid "Show"
|
512 |
msgstr "Εμφάνιση"
|
513 |
|
514 |
-
#: counter.php:
|
515 |
#@ cpd
|
516 |
msgid "Other"
|
517 |
msgstr "Άλλα"
|
518 |
|
519 |
-
#: counter.php:
|
520 |
#@ default
|
521 |
msgid "Edit Post"
|
522 |
msgstr "Επεξεργασία Άρθρου"
|
523 |
|
524 |
-
#: counter.php:
|
525 |
-
#: massbots.php:
|
526 |
#: userperspan.php:63
|
527 |
#@ default
|
528 |
msgid "Front page displays"
|
529 |
msgstr "Η πρώτη σελίδα εμφανίζει"
|
530 |
|
531 |
-
#: counter
|
532 |
-
#: counter-options.php:343
|
533 |
-
#: counter-options.php:560
|
534 |
#@ default
|
535 |
msgid "Settings"
|
536 |
msgstr "Ρυθμίσεις"
|
537 |
|
538 |
# tjekkes
|
539 |
-
#: counter-
|
540 |
-
#: counter
|
541 |
-
#: counter.php:
|
542 |
-
#: counter.php:875
|
543 |
#@ cpd
|
544 |
msgid "Reads"
|
545 |
msgstr "Αναγνώσεις"
|
546 |
|
547 |
-
#: counter.php:
|
548 |
#@ cpd
|
549 |
msgid "This post"
|
550 |
msgstr "Αυτό το άρθρο"
|
551 |
|
552 |
-
#: counter.php:
|
|
|
553 |
#@ cpd
|
554 |
msgid "Reads per day"
|
555 |
msgstr "Αναγνώσεις ανά ημέρα"
|
556 |
|
557 |
-
#: counter
|
558 |
-
#: counter.php:
|
559 |
#@ cpd
|
560 |
msgid "Visitors per month"
|
561 |
msgstr "Επισκέπτες ανά μήνα"
|
562 |
|
563 |
-
#: counter
|
564 |
#@ cpd
|
565 |
msgid "Latest Counts"
|
566 |
msgstr "Τελευταίες μετρήσεις"
|
567 |
|
568 |
-
#: counter
|
569 |
#@ default
|
570 |
msgid "Plugin"
|
571 |
msgstr "Πρόσθετο"
|
572 |
|
573 |
-
#: counter
|
574 |
#@ cpd
|
575 |
msgid "Reads per Country"
|
576 |
msgstr "Αναγνώσεις ανά χώρα"
|
577 |
|
578 |
-
#: counter
|
579 |
#@ cpd
|
580 |
msgid "Visitors per Country"
|
581 |
msgstr "Επισκέψεις ανά χώρα"
|
582 |
|
583 |
-
#: counter
|
584 |
-
#: counter.php:
|
585 |
#@ cpd
|
586 |
msgid "Statistics"
|
587 |
msgstr "Στατιστικά"
|
588 |
|
589 |
-
#: counter.php:
|
590 |
-
#: counter.php:
|
591 |
#@ cpd
|
592 |
msgid "Map"
|
593 |
msgstr "Χάρτης"
|
594 |
|
595 |
-
#: notes.php:
|
|
|
|
|
|
|
|
|
|
|
596 |
#@ default
|
597 |
msgid "Action"
|
598 |
msgstr "Δράση"
|
599 |
|
600 |
-
#: notes.php:
|
601 |
#@ cpd
|
602 |
msgid "add"
|
603 |
msgstr "προσθήκη"
|
604 |
|
605 |
-
#: notes.php:
|
606 |
#@ cpd
|
607 |
msgid "save"
|
608 |
msgstr "αποθήκευση"
|
609 |
|
610 |
-
#: notes.php:
|
611 |
#@ cpd
|
612 |
msgid "delete"
|
613 |
msgstr "διαγραφή"
|
614 |
|
615 |
-
#: notes.php:
|
616 |
#@ cpd
|
617 |
msgid "edit"
|
618 |
msgstr "επεξεργασία"
|
619 |
|
620 |
-
#: userperspan.php:
|
621 |
#@ cpd
|
622 |
msgid "Start"
|
623 |
msgstr "Έναρξη"
|
624 |
|
625 |
-
#: userperspan.php:
|
626 |
#@ cpd
|
627 |
msgid "End"
|
628 |
msgstr "Λήξη"
|
629 |
|
630 |
-
#: userperspan.php:
|
631 |
#@ cpd
|
632 |
msgid "PostID"
|
633 |
msgstr "Κωδικός άρθρου (PostID)"
|
634 |
|
635 |
-
#: userperspan.php:
|
636 |
#@ cpd
|
637 |
msgid "no data found"
|
638 |
msgstr "δεν βρέθηκαν δεδομένα"
|
639 |
|
640 |
-
#: geoip/geoip.php:
|
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:
|
646 |
#@ cpd
|
647 |
msgid "New GeoIP database installed."
|
648 |
msgstr "Νέα Γαίο-ΙΡ βάση δεδομένων εγκαταστάθηκε."
|
649 |
|
650 |
-
#: geoip/geoip.php:
|
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:
|
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:
|
661 |
#@ cpd
|
662 |
msgid "Counter"
|
663 |
msgstr "Μετρητής"
|
664 |
|
665 |
-
#: counter-options.php:
|
666 |
#@ cpd
|
667 |
msgid "Clients and referrers"
|
668 |
msgstr "Πελάτες και εισερχόμενοι σύνδεσμοι (referrers)"
|
669 |
|
670 |
-
#: counter-options.php:
|
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:
|
676 |
#@ cpd
|
677 |
msgid "Local URLs"
|
678 |
msgstr "Τοπικές ιστοδιευθύνσεις"
|
679 |
|
680 |
-
#: counter-options.php:
|
681 |
#@ cpd
|
682 |
msgid "Show local referrers too."
|
683 |
msgstr "Απεικόνιση και των τοπικών εισερχόμενων συνδέσμων (referrers)."
|
684 |
|
685 |
-
#: counter-options.php:
|
686 |
#@ default
|
687 |
msgid "Posts"
|
688 |
msgstr "Άρθρα"
|
689 |
|
690 |
-
#: counter-options.php:
|
691 |
#@ default
|
692 |
msgid "Pages"
|
693 |
msgstr "Σελίδες"
|
694 |
|
695 |
-
#: counter.php:
|
696 |
-
#: counter.php:
|
697 |
#@ cpd
|
698 |
msgid "Reads last week"
|
699 |
msgstr "Αναγνώσεις προηγούμενης εβδομάδας"
|
700 |
|
701 |
-
#: counter.php:
|
702 |
#@ default
|
703 |
msgid "Category"
|
704 |
msgstr "Κατηγορία"
|
705 |
|
706 |
-
#: counter.php:
|
707 |
#@ default
|
708 |
msgid "Tag"
|
709 |
msgstr "Πινακίδιο"
|
710 |
|
711 |
-
#: counter
|
712 |
#@ default
|
713 |
msgid "License"
|
714 |
msgstr "Άδεια"
|
715 |
|
716 |
-
#: counter
|
717 |
-
#: counter.php:
|
718 |
#@ cpd
|
719 |
msgid "Reads per month"
|
720 |
msgstr "Αναγνώσεις ανά μήνα"
|
721 |
|
722 |
-
#: counter
|
723 |
#@ cpd
|
724 |
msgid "Referrer"
|
725 |
msgstr "Εισερχόμενοι σύνδεσμοι(referrers)"
|
726 |
|
727 |
-
#: counter.php:
|
728 |
#@ default
|
729 |
msgid "Title"
|
730 |
msgstr "Τίτλος"
|
731 |
|
732 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
#@ cpd
|
734 |
msgid "Referrers - Entries"
|
735 |
msgstr "Εισερχόμενοι σύνδεσμοι - Καταχωρήσεις"
|
736 |
|
737 |
-
#: counter-options.php:
|
738 |
#@ cpd
|
739 |
msgid "How many referrers do you want to see on dashboard page?"
|
740 |
msgstr "Πόσοι εισερχόμενοι σύνδεσμοι επιθυμείτε να εμφανίζονται στην κεντρική σελίδα;"
|
741 |
|
742 |
-
#: counter-options.php:
|
743 |
#@ cpd
|
744 |
msgid "Referrers - Days"
|
745 |
msgstr "Εισερχόμενοι σύνδεσμοι - Ημέρες"
|
746 |
|
747 |
-
#: counter.php:
|
748 |
#, php-format
|
749 |
#@ cpd
|
750 |
msgid "The %s referrers in last %s days:"
|
751 |
msgstr "Οι πρόσφατοι %s εισερχόμενοι σύνδεσμοι των τελευταίων %s ημερών:"
|
752 |
|
753 |
-
#: counter
|
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 > 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 |
-
|
19 |
"X-Poedit-SearchPath-0: d:/wordpress/plugins/count-per-day\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:46
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Οι ρυθμίσεις σας ενημερώθηκαν"
|
26 |
|
27 |
+
#: counter-options.php:57
|
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:62
|
34 |
#@ cpd
|
35 |
msgid "update next"
|
36 |
msgstr "ενημέρωση επόμενων"
|
41 |
msgid "Mass Bots cleaned. %s counts deleted."
|
42 |
msgstr "Καθαρίστηκαν μαζικά bot. %s μετρήσεις σβήστηκαν."
|
43 |
|
44 |
+
#: counter-options.php:111
|
45 |
#, php-format
|
46 |
#@ cpd
|
47 |
msgid "Database cleaned. %s rows deleted."
|
48 |
msgstr "Καθαρίστικε η βάση δεδομένων. %s γραμμές σβήστηκαν."
|
49 |
|
50 |
+
#: counter-options.php:117
|
51 |
#@ cpd
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Μηδενίστηκε ο μετρητής."
|
54 |
|
55 |
+
#: counter-options.php:121
|
56 |
+
#: counter-options.php:496
|
57 |
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "Απεγκατάσταση του Count per Day"
|
60 |
|
61 |
+
#: counter-options.php:126
|
62 |
+
#: counter-options.php:128
|
63 |
+
#: counter-options.php:130
|
64 |
#, php-format
|
65 |
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "Πίνακες %s διαγράφηκαν"
|
68 |
|
69 |
+
#: counter-options.php:132
|
70 |
#@ cpd
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Οι ρυθμίσεις διαγράφηκαν"
|
73 |
|
74 |
+
#: counter-options.php:156
|
75 |
+
#: counter-options.php:481
|
76 |
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Απεγκατάσταση"
|
79 |
|
80 |
+
#: counter-options.php:157
|
81 |
#@ cpd
|
82 |
msgid "Click here"
|
83 |
msgstr "Κάντε κλικ εδώ"
|
84 |
|
85 |
+
#: counter-options.php:157
|
86 |
#@ cpd
|
87 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
88 |
msgstr "για να ολοκληρώσετε την απεγκατάσταση και να απενεργοποιήσετε το \"Count per Day\"."
|
89 |
|
90 |
+
#: counter-options.php:179
|
91 |
+
#@ cpd
|
92 |
+
msgid "Options"
|
93 |
+
msgstr "Ρυθμίσεις"
|
94 |
+
|
95 |
+
#: counter-options.php:190
|
96 |
#@ cpd
|
97 |
msgid "Online time"
|
98 |
msgstr "Χρόνος σε σύνδεση"
|
99 |
|
100 |
+
#: counter-options.php:191
|
101 |
#@ cpd
|
102 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
103 |
msgstr "Δευτερόλεπτα για τον μετρητή συνδεδεμένων χρηστών. Χρησιμοποιείται για τους \"Visitors online\" στην κεντρική σελίδα."
|
104 |
|
105 |
+
#: counter-options.php:194
|
106 |
#@ cpd
|
107 |
msgid "Logged on Users"
|
108 |
msgstr "Εγγεγραμμένοι-Συνδεδεμένοι Χρήστες"
|
109 |
|
110 |
+
#: counter-options.php:196
|
111 |
#@ cpd
|
112 |
msgid "count too"
|
113 |
msgstr "μετρήστε επίσης"
|
114 |
|
115 |
+
#: counter-options.php:197
|
116 |
#@ cpd
|
117 |
msgid "until User Level"
|
118 |
msgstr "μέχρι το Επίπεδο Χρήστη"
|
119 |
|
120 |
+
#: counter-options.php:208
|
121 |
#@ cpd
|
122 |
msgid "Auto counter"
|
123 |
msgstr "Αυτόματος μετρητής"
|
124 |
|
125 |
+
#: counter-options.php:209
|
126 |
#@ cpd
|
127 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
128 |
msgstr "Μετρά αυτόματα μονά-άρθρα και σελίδες, δεν χρειάζεται αλλαγή στο πρότυπο (template)."
|
129 |
|
130 |
+
#: counter-options.php:212
|
131 |
#@ cpd
|
132 |
msgid "Bots to ignore"
|
133 |
msgstr "Bots που θα αγνοηθούν"
|
134 |
|
135 |
+
#: counter-options.php:216
|
136 |
#@ cpd
|
137 |
msgid "Anonymous IP"
|
138 |
msgstr "Ανώνυμος IP"
|
139 |
|
140 |
+
#: counter-options.php:220
|
141 |
#@ cpd
|
142 |
msgid "Cache"
|
143 |
msgstr "Αποθυκευμένη μνήμη (Cache)"
|
144 |
|
145 |
+
#: counter-options.php:221
|
146 |
#@ cpd
|
147 |
msgid "I use a cache plugin. Count these visits with ajax."
|
148 |
msgstr "Χρησιμοποιώ ένα cache-πρόσθετο. Μετρήστε αυτές τις επισκέψεις με ajax."
|
149 |
|
150 |
+
#: counter-options.php:331
|
151 |
#@ cpd
|
152 |
msgid "Update options"
|
153 |
msgstr "Ενημέρωση ρυθμίσεων"
|
154 |
|
155 |
+
#: counter-options.php:233
|
156 |
#@ default
|
157 |
msgid "Dashboard"
|
158 |
msgstr "Κεντρικός πίνακας"
|
159 |
|
160 |
+
#: counter-options.php:236
|
161 |
+
#: counter.php:1754
|
162 |
#@ cpd
|
163 |
msgid "Visitors per post"
|
164 |
msgstr "Επισκέπτες ανά άρθρο"
|
165 |
|
166 |
+
#: counter-options.php:237
|
167 |
+
#: counter-options.php:241
|
168 |
#@ cpd
|
169 |
msgid "How many posts do you want to see on dashboard page?"
|
170 |
msgstr "Πόσα άρθρα επιθυμείτε να βλέπετε στη κεντρική σελίδα σας;"
|
171 |
|
172 |
+
#: counter-options.php:240
|
173 |
#@ cpd
|
174 |
msgid "Latest Counts - Posts"
|
175 |
msgstr "Τελευταίες Μετρήσεις - Άρθρα"
|
176 |
|
177 |
+
#: counter-options.php:244
|
178 |
#@ cpd
|
179 |
msgid "Latest Counts - Days"
|
180 |
msgstr "Τελευταίες Μετρήσεις - Ημέρες"
|
181 |
|
182 |
+
#: counter-options.php:245
|
183 |
+
#: counter-options.php:249
|
184 |
+
#: counter-options.php:275
|
185 |
#@ cpd
|
186 |
msgid "How many days do you want look back?"
|
187 |
msgstr "Μέχρι πόσες ημέρες επιθυμείτε να βλέπετε στο παρελθόν;"
|
188 |
|
189 |
+
#: counter-options.php:248
|
190 |
#@ cpd
|
191 |
msgid "Chart - Days"
|
192 |
msgstr "Διάγραμμα - Ημερών"
|
193 |
|
194 |
+
#: counter-options.php:252
|
195 |
#@ cpd
|
196 |
msgid "Chart - Height"
|
197 |
msgstr "Διάγραμμα - Ύψος"
|
198 |
|
199 |
+
#: counter-options.php:253
|
200 |
#@ cpd
|
201 |
msgid "Height of the biggest bar"
|
202 |
msgstr "Ύψος της μεγαλύτερης μπάρας"
|
203 |
|
204 |
+
#: counter-options.php:261
|
205 |
#@ cpd
|
206 |
msgid "Countries"
|
207 |
msgstr "Χώρες"
|
208 |
|
209 |
+
#: counter-options.php:262
|
210 |
#@ cpd
|
211 |
msgid "How many countries do you want to see on dashboard page?"
|
212 |
msgstr "Πόσες χώρες επιθυμείτε να βλέπετε στην κεντρική σελίδα;"
|
213 |
|
214 |
+
#: counter-options.php:266
|
215 |
+
#: counter.php:1760
|
216 |
#@ cpd
|
217 |
msgid "Browsers"
|
218 |
msgstr "Περιηγητές"
|
219 |
|
220 |
+
#: counter-options.php:267
|
221 |
#@ cpd
|
222 |
msgid "Substring of the user agent, separated by comma"
|
223 |
msgstr "Υπορουτίνα του οδηγού χρήστη, χωρισμένες με κόμμα"
|
224 |
|
225 |
+
#: counter-options.php:290
|
226 |
#@ cpd
|
227 |
msgid "Show in lists"
|
228 |
msgstr "Εμφάνιση στις λίστες"
|
229 |
|
230 |
+
#: counter-options.php:291
|
231 |
#@ cpd
|
232 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
233 |
msgstr "Εμφάνιση \"Reads per Post\" σε νέα στήλη στις απεικονίσεις των άρθρων."
|
234 |
|
235 |
+
#: counter-options.php:299
|
236 |
#@ cpd
|
237 |
msgid "Start Values"
|
238 |
msgstr "Αρχικές Τιμές"
|
239 |
|
240 |
+
#: counter-options.php:303
|
241 |
#@ cpd
|
242 |
msgid "Here you can change the date of first count and add a start count."
|
243 |
msgstr "Εδώ μπορείτε να αλλάξετε την ημερομηνία της πρώτης μέτρησης και να προσθέσετε μια νέα μέτρηση"
|
244 |
|
245 |
+
#: counter-options.php:307
|
246 |
#@ cpd
|
247 |
msgid "Start date"
|
248 |
msgstr "Αρχική ημερομηνία"
|
249 |
|
250 |
+
#: counter-options.php:308
|
251 |
#@ cpd
|
252 |
msgid "Your old Counter starts at?"
|
253 |
msgstr "Πότε ξεκινά ο παλαιότερος σας Μετρητής;"
|
254 |
|
255 |
+
#: counter-options.php:311
|
256 |
+
#: counter-options.php:315
|
257 |
#@ cpd
|
258 |
msgid "Start count"
|
259 |
msgstr "Έναρξη μέτρησης"
|
260 |
|
261 |
+
#: counter-options.php:312
|
262 |
#@ cpd
|
263 |
msgid "Add this value to \"Total visitors\"."
|
264 |
msgstr "Προσθήκη αυτής της τιμής στους \"Total visitors\"."
|
265 |
|
266 |
+
#: counter-options.php:316
|
267 |
#@ cpd
|
268 |
msgid "Add this value to \"Total reads\"."
|
269 |
msgstr "Προσθήκη αυτής της τιμής στους \"Total reads\"."
|
270 |
|
271 |
+
#: counter-options.php:324
|
272 |
#@ cpd
|
273 |
msgid "Debug mode"
|
274 |
msgstr "Λειτουργία εξακρίβωσης λαθών (Debug)"
|
275 |
|
276 |
+
#: counter-options.php:326
|
277 |
#@ cpd
|
278 |
msgid "Show debug informations at the bottom of all pages."
|
279 |
msgstr "Εμφάνιση πληροφοριών (debug) στο κάτω μέρος όλων των σελίδων."
|
280 |
|
281 |
+
#: counter-options.php:340
|
282 |
#@ cpd
|
283 |
msgid "GeoIP - Countries"
|
284 |
msgstr "Γαίο-ΙΡ - Χώρες"
|
285 |
|
286 |
+
#: counter-options.php:349
|
287 |
#@ cpd
|
288 |
msgid "Update old counter data"
|
289 |
msgstr "Ενημέρωση παλαιότερων δεδομένων μετρητή"
|
290 |
|
291 |
+
#: counter-options.php:362
|
292 |
#@ cpd
|
293 |
msgid "Update GeoIP database"
|
294 |
msgstr "Ενημέρωση Γαίο-ΙΡ βάσης δεδομένων"
|
295 |
|
296 |
+
#: counter-options.php:365
|
297 |
#@ cpd
|
298 |
msgid "Download a new version of GeoIP.dat file."
|
299 |
msgstr "Κατεβάστε νέα έκδοση του αρχείου GeoIP.dat."
|
300 |
|
301 |
+
#: counter-options.php:371
|
302 |
#@ cpd
|
303 |
msgid "More informations about GeoIP"
|
304 |
msgstr "Περισσότερες πληροφορίες για το Γαίο-ΙΡ"
|
305 |
|
306 |
+
#: counter-options.php:386
|
307 |
+
#: massbots.php:33
|
308 |
#@ cpd
|
309 |
msgid "Mass Bots"
|
310 |
msgstr "Μαζικά bots"
|
311 |
|
312 |
+
#: counter-options.php:390
|
313 |
#, php-format
|
314 |
#@ cpd
|
315 |
msgid "Show all IPs with more than %s page views per day"
|
316 |
msgstr "Εμφάνιση όλων των ΙΡ με περισσότερες από %s σελίδες ανά ημέρα"
|
317 |
|
318 |
+
#: counter-options.php:391
|
319 |
+
#: notes.php:76
|
320 |
+
#: userperspan.php:43
|
321 |
#@ cpd
|
322 |
msgid "show"
|
323 |
msgstr "εμφάνιση"
|
324 |
|
325 |
+
#: counter-options.php:399
|
326 |
#@ cpd
|
327 |
msgid "IP"
|
328 |
msgstr "IP"
|
329 |
|
330 |
+
#: counter-options.php:400
|
331 |
+
#: notes.php:80
|
332 |
#@ cpd
|
333 |
#@ default
|
334 |
msgid "Date"
|
335 |
msgstr "Ημερομηνία"
|
336 |
|
337 |
+
#: counter-options.php:401
|
338 |
#@ cpd
|
339 |
msgid "Client"
|
340 |
msgstr "Πελάτης"
|
341 |
|
342 |
+
#: counter-options.php:402
|
343 |
#@ cpd
|
344 |
msgid "Views"
|
345 |
msgstr "Αναγνώσεις"
|
346 |
|
347 |
+
#: counter-options.php:413
|
348 |
+
#: counter-options.php:435
|
349 |
#, php-format
|
350 |
#@ cpd
|
351 |
msgid "Delete these %s counts"
|
352 |
msgstr "Διαγράψτε αυτές τις %s μετρήσεις"
|
353 |
|
354 |
+
#: counter-options.php:445
|
355 |
+
#: counter-options.php:454
|
356 |
#@ cpd
|
357 |
msgid "Clean the database"
|
358 |
msgstr "Εκκαθάριση βάσης δεδομένων"
|
359 |
|
360 |
+
#: counter-options.php:448
|
361 |
#@ cpd
|
362 |
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."
|
363 |
msgstr "Μπορείτε να καθαρίσετε το πίνακα μετρήσεων με τη διαγραφή των \"spam data\".<br />Άμα προσθέσετε νέα bots πάνω στα παλαιά \"spam data\" θα κρατηθούν στην βάση δεδομένων.<br />Εδώ μπορείτε να τρέξετε το φίλτρο bot ξανά και να σβήσετε τις επισκέψεις των bot."
|
364 |
|
365 |
+
#: counter-options.php:463
|
366 |
+
#: counter-options.php:472
|
367 |
#@ cpd
|
368 |
msgid "Reset the counter"
|
369 |
msgstr "΄Μηδενισμός μετρητή"
|
370 |
|
371 |
+
#: counter-options.php:466
|
372 |
#@ cpd
|
373 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
374 |
msgstr "Μπορείτε να μηδενίσετε τον μετρητή με την εκκαθάριση του πίνακα. ΟΛΑ ΣΕ 0!<br />Κάντε εφεδρικά αντίγραφα άμα χρειάζεστε τα τωρινά δεδομένα!"
|
375 |
|
376 |
+
#: counter-options.php:484
|
377 |
#@ cpd
|
378 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
379 |
msgstr "Άμα το \"Count per Day\" είναι μόνο απενεργοποιημένο οι πίνακες στην βάση δεδομένων θα διατηρηθούν."
|
380 |
|
381 |
+
#: counter-options.php:485
|
382 |
#@ cpd
|
383 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
384 |
msgstr "Εδώ μπορείτε να διαγράψετε τους πίνακες και να απενεργοποιήσετε το \"Count per Day\"."
|
385 |
|
386 |
+
#: counter-options.php:488
|
387 |
#@ cpd
|
388 |
msgid "WARNING"
|
389 |
msgstr "ΠΡΟΣΟΧΗ"
|
390 |
|
391 |
+
#: counter-options.php:489
|
392 |
#@ cpd
|
393 |
msgid "These tables (with ALL counter data) will be deleted."
|
394 |
msgstr "Αυτοί οι πίνακες (μαζί με ΌΛΑ τα δεδομένα των μετρήσεων) θα διαγραφούν."
|
395 |
|
396 |
+
#: counter-options.php:491
|
397 |
#@ cpd
|
398 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
399 |
msgstr "Άμα το \"Count per Day\" επανεγκατασταθεί, ο μετρητής θα ξεκινήσει από το 0."
|
400 |
|
401 |
+
#: counter-options.php:495
|
|
|
402 |
#@ cpd
|
403 |
msgid "Yes"
|
404 |
msgstr "Ναι"
|
405 |
|
406 |
+
#: counter-options.php:496
|
407 |
#@ cpd
|
408 |
msgid "You are sure to disable Count per Day and delete all data?"
|
409 |
msgstr "Θέλετε σίγουρα να απενεργοποιήσετε το \"Count per Day\" και να σβήσετε όλα τα δεδομένα;"
|
410 |
|
411 |
+
#: counter-options.php:504
|
412 |
#@ cpd
|
413 |
msgid "Support"
|
414 |
msgstr "Υποστήριξη"
|
415 |
|
416 |
+
#: counter.php:1716
|
417 |
#, php-format
|
418 |
#@ cpd
|
419 |
msgid "Time for Count per Day: <code>%s</code>."
|
420 |
msgstr "Χρόνος για το Count per Day: <code>%s</code>."
|
421 |
|
422 |
+
#: counter.php:1717
|
423 |
#@ cpd
|
424 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
425 |
msgstr "Λάθη; Προβλήματα; Ερωτήσεις; Προτάσεις; Έπαινοι;"
|
426 |
|
427 |
+
#: counter.php:1718
|
428 |
#, php-format
|
429 |
#@ cpd
|
430 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
431 |
msgstr "Γράψτε ένα σχόλιο στη <a href=\"%s\">σελίδα του πρόσθετου</a>."
|
432 |
|
433 |
+
#: counter.php:524
|
434 |
+
#: counter.php:2219
|
435 |
#@ cpd
|
436 |
msgid "Total reads"
|
437 |
msgstr "Συνολικές αναγνώσεις"
|
438 |
|
439 |
+
#: counter.php:525
|
440 |
+
#: counter.php:2220
|
441 |
#@ cpd
|
442 |
msgid "Reads today"
|
443 |
msgstr "Αναγνώσεις σήμερα"
|
444 |
|
445 |
+
#: counter.php:526
|
446 |
+
#: counter.php:2221
|
447 |
#@ cpd
|
448 |
msgid "Reads yesterday"
|
449 |
msgstr "Αναγνώσεις χτες"
|
450 |
|
451 |
+
#: counter.php:529
|
452 |
+
#: counter.php:534
|
453 |
+
#: counter.php:1604
|
454 |
+
#: counter.php:1750
|
455 |
+
#: counter.php:2224
|
456 |
#@ cpd
|
457 |
msgid "Total visitors"
|
458 |
msgstr "Συνολικοί επισκέπτες"
|
459 |
|
460 |
+
#: counter.php:530
|
461 |
+
#: counter.php:2230
|
462 |
#@ cpd
|
463 |
msgid "Visitors currently online"
|
464 |
msgstr "Επισκέπτες αυτή την στιγμή"
|
465 |
|
466 |
+
#: counter.php:531
|
467 |
+
#: counter.php:2225
|
468 |
#@ cpd
|
469 |
msgid "Visitors today"
|
470 |
msgstr "Επισκέπτες σήμερα"
|
471 |
|
472 |
+
#: counter.php:532
|
473 |
+
#: counter.php:2226
|
474 |
#@ cpd
|
475 |
msgid "Visitors yesterday"
|
476 |
msgstr "Επισκέπτες χτες"
|
477 |
|
478 |
+
#: counter.php:533
|
479 |
+
#: counter.php:2227
|
480 |
#@ cpd
|
481 |
msgid "Visitors last week"
|
482 |
msgstr "Επισκέπτες την προηγούμενη εβδομάδα"
|
483 |
|
484 |
+
#: counter.php:535
|
485 |
+
#: counter.php:636
|
486 |
+
#: counter.php:1606
|
487 |
+
#: counter.php:1756
|
488 |
+
#: counter.php:1765
|
489 |
+
#: counter.php:2229
|
490 |
+
#: userperspan.php:33
|
491 |
#@ cpd
|
492 |
msgid "Visitors per day"
|
493 |
msgstr "Επισκέπτες ανά ημέρα"
|
494 |
|
495 |
+
#: counter.php:536
|
496 |
+
#: counter.php:2231
|
|
|
497 |
#@ cpd
|
498 |
msgid "Counter starts on"
|
499 |
msgstr "Ο μετρητής αρχίζει από"
|
500 |
|
501 |
+
#: counter.php:819
|
502 |
+
#@ cpd
|
503 |
+
msgid "days"
|
504 |
+
msgstr "ημέρες"
|
505 |
+
|
506 |
+
#: counter.php:822
|
507 |
+
#: counter.php:1376
|
508 |
+
#: notes.php:47
|
509 |
+
#: notes.php:81
|
510 |
#@ cpd
|
511 |
msgid "Notes"
|
512 |
msgstr "Σημειώσεις"
|
513 |
|
514 |
+
#: counter.php:845
|
515 |
+
#@ cpd
|
516 |
+
msgid "no reads at this time"
|
517 |
+
msgstr "άνευ αναγνώσεων τη παρούσα στιγμή."
|
518 |
+
|
519 |
+
#: counter.php:1257
|
520 |
#, php-format
|
521 |
#@ cpd
|
522 |
msgid "The %s most visited posts in last %s days:"
|
523 |
msgstr "Τα %s πιο αναγνωσμένα άρθρα τις τελευταίες %s ημέρες:"
|
524 |
|
525 |
+
#: counter.php:1374
|
526 |
#@ default
|
527 |
msgid "Show"
|
528 |
msgstr "Εμφάνιση"
|
529 |
|
530 |
+
#: counter.php:1421
|
531 |
#@ cpd
|
532 |
msgid "Other"
|
533 |
msgstr "Άλλα"
|
534 |
|
535 |
+
#: counter.php:1505
|
536 |
#@ default
|
537 |
msgid "Edit Post"
|
538 |
msgstr "Επεξεργασία Άρθρου"
|
539 |
|
540 |
+
#: counter.php:1520
|
541 |
+
#: massbots.php:50
|
542 |
#: userperspan.php:63
|
543 |
#@ default
|
544 |
msgid "Front page displays"
|
545 |
msgstr "Η πρώτη σελίδα εμφανίζει"
|
546 |
|
547 |
+
#: counter.php:1591
|
|
|
|
|
548 |
#@ default
|
549 |
msgid "Settings"
|
550 |
msgstr "Ρυθμίσεις"
|
551 |
|
552 |
# tjekkes
|
553 |
+
#: counter-options.php:225
|
554 |
+
#: counter.php:528
|
555 |
+
#: counter.php:1661
|
|
|
556 |
#@ cpd
|
557 |
msgid "Reads"
|
558 |
msgstr "Αναγνώσεις"
|
559 |
|
560 |
+
#: counter.php:2218
|
561 |
#@ cpd
|
562 |
msgid "This post"
|
563 |
msgstr "Αυτό το άρθρο"
|
564 |
|
565 |
+
#: counter.php:635
|
566 |
+
#: counter.php:1766
|
567 |
#@ cpd
|
568 |
msgid "Reads per day"
|
569 |
msgstr "Αναγνώσεις ανά ημέρα"
|
570 |
|
571 |
+
#: counter.php:1752
|
572 |
+
#: counter.php:2228
|
573 |
#@ cpd
|
574 |
msgid "Visitors per month"
|
575 |
msgstr "Επισκέπτες ανά μήνα"
|
576 |
|
577 |
+
#: counter.php:1755
|
578 |
#@ cpd
|
579 |
msgid "Latest Counts"
|
580 |
msgstr "Τελευταίες μετρήσεις"
|
581 |
|
582 |
+
#: counter.php:1757
|
583 |
#@ default
|
584 |
msgid "Plugin"
|
585 |
msgstr "Πρόσθετο"
|
586 |
|
587 |
+
#: counter.php:1770
|
588 |
#@ cpd
|
589 |
msgid "Reads per Country"
|
590 |
msgstr "Αναγνώσεις ανά χώρα"
|
591 |
|
592 |
+
#: counter.php:1771
|
593 |
#@ cpd
|
594 |
msgid "Visitors per Country"
|
595 |
msgstr "Επισκέψεις ανά χώρα"
|
596 |
|
597 |
+
#: counter.php:1786
|
598 |
+
#: counter.php:2147
|
599 |
#@ cpd
|
600 |
msgid "Statistics"
|
601 |
msgstr "Στατιστικά"
|
602 |
|
603 |
+
#: counter.php:900
|
604 |
+
#: counter.php:1856
|
605 |
#@ cpd
|
606 |
msgid "Map"
|
607 |
msgstr "Χάρτης"
|
608 |
|
609 |
+
#: notes.php:81
|
610 |
+
#@ cpd
|
611 |
+
msgid "(1 per day)"
|
612 |
+
msgstr "(1 ανά ημέρα)"
|
613 |
+
|
614 |
+
#: notes.php:82
|
615 |
#@ default
|
616 |
msgid "Action"
|
617 |
msgstr "Δράση"
|
618 |
|
619 |
+
#: notes.php:87
|
620 |
#@ cpd
|
621 |
msgid "add"
|
622 |
msgstr "προσθήκη"
|
623 |
|
624 |
+
#: notes.php:102
|
625 |
#@ cpd
|
626 |
msgid "save"
|
627 |
msgstr "αποθήκευση"
|
628 |
|
629 |
+
#: notes.php:103
|
630 |
#@ cpd
|
631 |
msgid "delete"
|
632 |
msgstr "διαγραφή"
|
633 |
|
634 |
+
#: notes.php:114
|
635 |
#@ cpd
|
636 |
msgid "edit"
|
637 |
msgstr "επεξεργασία"
|
638 |
|
639 |
+
#: userperspan.php:37
|
640 |
#@ cpd
|
641 |
msgid "Start"
|
642 |
msgstr "Έναρξη"
|
643 |
|
644 |
+
#: userperspan.php:39
|
645 |
#@ cpd
|
646 |
msgid "End"
|
647 |
msgstr "Λήξη"
|
648 |
|
649 |
+
#: userperspan.php:41
|
650 |
#@ cpd
|
651 |
msgid "PostID"
|
652 |
msgstr "Κωδικός άρθρου (PostID)"
|
653 |
|
654 |
+
#: userperspan.php:49
|
655 |
#@ cpd
|
656 |
msgid "no data found"
|
657 |
msgstr "δεν βρέθηκαν δεδομένα"
|
658 |
|
659 |
+
#: geoip/geoip.php:108
|
660 |
#@ cpd
|
661 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
662 |
msgstr "Συγνώμη αλλά αναγκαίες λειτουργίες (zlib) δεν βρέθηκαν ή δεν έχουν ενεργοποιηθεί στο php.ini."
|
663 |
|
664 |
+
#: geoip/geoip.php:132
|
665 |
#@ cpd
|
666 |
msgid "New GeoIP database installed."
|
667 |
msgstr "Νέα Γαίο-ΙΡ βάση δεδομένων εγκαταστάθηκε."
|
668 |
|
669 |
+
#: geoip/geoip.php:134
|
670 |
#@ cpd
|
671 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
672 |
msgstr "Συγνώμη αλλά συναίβει λάθος. Δοκιμάστε ξανά ή ελέγξτε άμα τα δικαιώματα του φακέλου \"geoip\" είναι 777."
|
673 |
|
674 |
+
#: counter-options.php:352
|
675 |
#@ cpd
|
676 |
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!"
|
677 |
msgstr "Μπορείτε να ενημερώσετε τα δεδομένα των χωρών για όλες τις καταχωρήσεις στην βάση δεδομένων με το να τις διασταυρώσετε με τις διευθύνσεις ΙΡ της βάσης δεδομένων της Γαίο-ΙΡ. Αυτό παίρνει πολύ ώρα!"
|
678 |
|
679 |
+
#: counter-options.php:186
|
680 |
#@ cpd
|
681 |
msgid "Counter"
|
682 |
msgstr "Μετρητής"
|
683 |
|
684 |
+
#: counter-options.php:224
|
685 |
#@ cpd
|
686 |
msgid "Clients and referrers"
|
687 |
msgstr "Πελάτες και εισερχόμενοι σύνδεσμοι (referrers)"
|
688 |
|
689 |
+
#: counter-options.php:225
|
690 |
#@ cpd
|
691 |
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."
|
692 |
msgstr "Αποθήκευση και απεικόνιση πελατών και εισερχόμενων συνδέσμων.<br />Απαιτεί μεγάλο χώρο στην βάση δεδομένων αλλά παρέχει ακριβέστερες πληροφορίες για τους επισκέπτες σας."
|
693 |
|
694 |
+
#: counter-options.php:278
|
695 |
#@ cpd
|
696 |
msgid "Local URLs"
|
697 |
msgstr "Τοπικές ιστοδιευθύνσεις"
|
698 |
|
699 |
+
#: counter-options.php:279
|
700 |
#@ cpd
|
701 |
msgid "Show local referrers too."
|
702 |
msgstr "Απεικόνιση και των τοπικών εισερχόμενων συνδέσμων (referrers)."
|
703 |
|
704 |
+
#: counter-options.php:287
|
705 |
#@ default
|
706 |
msgid "Posts"
|
707 |
msgstr "Άρθρα"
|
708 |
|
709 |
+
#: counter-options.php:287
|
710 |
#@ default
|
711 |
msgid "Pages"
|
712 |
msgstr "Σελίδες"
|
713 |
|
714 |
+
#: counter.php:527
|
715 |
+
#: counter.php:2222
|
716 |
#@ cpd
|
717 |
msgid "Reads last week"
|
718 |
msgstr "Αναγνώσεις προηγούμενης εβδομάδας"
|
719 |
|
720 |
+
#: counter.php:1514
|
721 |
#@ default
|
722 |
msgid "Category"
|
723 |
msgstr "Κατηγορία"
|
724 |
|
725 |
+
#: counter.php:1517
|
726 |
#@ default
|
727 |
msgid "Tag"
|
728 |
msgstr "Πινακίδιο"
|
729 |
|
730 |
+
#: counter.php:1719
|
731 |
#@ default
|
732 |
msgid "License"
|
733 |
msgstr "Άδεια"
|
734 |
|
735 |
+
#: counter.php:1753
|
736 |
+
#: counter.php:2223
|
737 |
#@ cpd
|
738 |
msgid "Reads per month"
|
739 |
msgstr "Αναγνώσεις ανά μήνα"
|
740 |
|
741 |
+
#: counter.php:1761
|
742 |
#@ cpd
|
743 |
msgid "Referrer"
|
744 |
msgstr "Εισερχόμενοι σύνδεσμοι(referrers)"
|
745 |
|
746 |
+
#: counter.php:2242
|
747 |
#@ default
|
748 |
msgid "Title"
|
749 |
msgstr "Τίτλος"
|
750 |
|
751 |
+
#: counter-options.php:256
|
752 |
+
#@ cpd
|
753 |
+
msgid "Old Charts"
|
754 |
+
msgstr "Παλαιά Διαγράμματα"
|
755 |
+
|
756 |
+
#: counter-options.php:257
|
757 |
+
#@ cpd
|
758 |
+
msgid "Show old bar charts."
|
759 |
+
msgstr "Εμφάνιση παλαιών Διαγραμμάτων."
|
760 |
+
|
761 |
+
#: counter-options.php:270
|
762 |
#@ cpd
|
763 |
msgid "Referrers - Entries"
|
764 |
msgstr "Εισερχόμενοι σύνδεσμοι - Καταχωρήσεις"
|
765 |
|
766 |
+
#: counter-options.php:271
|
767 |
#@ cpd
|
768 |
msgid "How many referrers do you want to see on dashboard page?"
|
769 |
msgstr "Πόσοι εισερχόμενοι σύνδεσμοι επιθυμείτε να εμφανίζονται στην κεντρική σελίδα;"
|
770 |
|
771 |
+
#: counter-options.php:274
|
772 |
#@ cpd
|
773 |
msgid "Referrers - Days"
|
774 |
msgstr "Εισερχόμενοι σύνδεσμοι - Ημέρες"
|
775 |
|
776 |
+
#: counter.php:1449
|
777 |
#, php-format
|
778 |
#@ cpd
|
779 |
msgid "The %s referrers in last %s days:"
|
780 |
msgstr "Οι πρόσφατοι %s εισερχόμενοι σύνδεσμοι των τελευταίων %s ημερών:"
|
781 |
|
782 |
+
#: counter.php:1751
|
783 |
#@ cpd
|
784 |
msgid "Visitors online"
|
785 |
msgstr "Επισκέπτες σε σύνδεση"
|
786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-es_ES.mo
CHANGED
Binary file
|
locale/cpd-es_ES.po
CHANGED
@@ -19,954 +19,767 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Las opciones han sido guardadas"
|
26 |
|
27 |
-
#: counter-options.php:
|
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:
|
34 |
-
#: counter-options.php:
|
35 |
#@ cpd
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "DESINSTALA Count per Day"
|
38 |
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
#, php-format
|
43 |
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "La tabla %s ha sido borrada"
|
46 |
|
47 |
-
#: counter-options.php:
|
48 |
#@ cpd
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Las opciones han sido canceladas"
|
51 |
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
#@ cpd
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Desinstala"
|
57 |
|
58 |
-
#: counter-options.php:
|
59 |
#@ cpd
|
60 |
msgid "Click here"
|
61 |
msgstr "Hacer click aquí"
|
62 |
|
63 |
-
#: counter-options.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
69 |
#@ cpd
|
70 |
msgid "Online time"
|
71 |
msgstr "Tiempo online"
|
72 |
|
73 |
-
#: counter-options.php:
|
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:
|
79 |
#@ cpd
|
80 |
msgid "Logged on Users"
|
81 |
msgstr "Usuarios conectados"
|
82 |
|
83 |
-
#: counter-options.php:
|
84 |
#@ cpd
|
85 |
msgid "count too"
|
86 |
msgstr "contar también"
|
87 |
|
88 |
-
#: counter-options.php:
|
89 |
#@ cpd
|
90 |
msgid "Auto counter"
|
91 |
msgstr "Auto contador"
|
92 |
|
93 |
-
#: counter-options.php:
|
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:
|
99 |
#@ cpd
|
100 |
msgid "Bots to ignore"
|
101 |
msgstr "Bots a ignorar"
|
102 |
|
103 |
-
#: counter-options.php:
|
104 |
#@ cpd
|
105 |
msgid "Update options"
|
106 |
msgstr "Actualiza las opciones"
|
107 |
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
#@ cpd
|
111 |
msgid "Clean the database"
|
112 |
msgstr "Borrar la base de datos"
|
113 |
|
114 |
-
#: counter-options.php:
|
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:
|
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:
|
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:
|
130 |
#@ cpd
|
131 |
msgid "WARNING"
|
132 |
msgstr "ATENCIÓN"
|
133 |
|
134 |
-
#: counter-options.php:
|
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:
|
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:
|
145 |
-
#: counter-options.php:809
|
146 |
#@ cpd
|
147 |
msgid "Yes"
|
148 |
msgstr "Sí"
|
149 |
|
150 |
-
#: counter-options.php:
|
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
|
156 |
-
#: counter.php:
|
157 |
#@ cpd
|
158 |
msgid "Statistics"
|
159 |
msgstr "Estadísticas"
|
160 |
|
161 |
-
#: counter
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
|
|
165 |
#@ cpd
|
166 |
msgid "Total visitors"
|
167 |
msgstr "Total de visitas"
|
168 |
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
#@ cpd
|
172 |
msgid "Visitors currently online"
|
173 |
msgstr "Visitantes conectados"
|
174 |
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
#@ cpd
|
178 |
msgid "Visitors today"
|
179 |
msgstr "Hoy"
|
180 |
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
#@ cpd
|
184 |
msgid "Visitors yesterday"
|
185 |
msgstr "Ayer"
|
186 |
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
#@ cpd
|
190 |
msgid "Visitors last week"
|
191 |
msgstr "La semana anterior"
|
192 |
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:1209
|
196 |
#@ cpd
|
197 |
msgid "Counter starts on"
|
198 |
msgstr "El contador comenzó el"
|
199 |
|
200 |
-
#: counter
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#:
|
|
|
206 |
#@ cpd
|
207 |
msgid "Visitors per day"
|
208 |
msgstr "Visitantes por día"
|
209 |
|
210 |
-
#: counter
|
211 |
-
#: counter.php:
|
212 |
#@ cpd
|
213 |
msgid "Visitors per month"
|
214 |
msgstr "Visitantes por mes"
|
215 |
|
216 |
-
#: counter-
|
217 |
-
#: counter
|
218 |
#@ cpd
|
219 |
msgid "Visitors per post"
|
220 |
msgstr "Visitantes por entrada"
|
221 |
|
222 |
-
#: counter-options.php:
|
223 |
#@ cpd
|
224 |
msgid "Counter reseted."
|
225 |
msgstr "El contador ha sido reinicializado."
|
226 |
|
227 |
-
#: counter-options.php:
|
228 |
-
#: counter-options.php:
|
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:
|
234 |
#@ cpd
|
235 |
msgid "Latest Counts - Posts"
|
236 |
msgstr "Últimos conteos - Entradas"
|
237 |
|
238 |
-
#: counter-options.php:
|
239 |
#@ cpd
|
240 |
msgid "Latest Counts - Days"
|
241 |
msgstr "Últimos conteos - Días"
|
242 |
|
243 |
-
#: counter-options.php:
|
244 |
-
#: counter-options.php:
|
245 |
-
#: counter-options.php:
|
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:
|
251 |
#@ cpd
|
252 |
msgid "Show in lists"
|
253 |
msgstr "Mostrar en las listas"
|
254 |
|
255 |
-
#: counter-options.php:
|
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:
|
261 |
-
#: counter-options.php:
|
262 |
#@ cpd
|
263 |
msgid "Reset the counter"
|
264 |
msgstr "Reinicia el contador"
|
265 |
|
266 |
-
#: counter-options.php:
|
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:
|
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
|
278 |
-
#: counter-options.php:341
|
279 |
-
#: counter-options.php:565
|
280 |
#@ default
|
281 |
msgid "Settings"
|
282 |
msgstr "Configuración"
|
283 |
|
284 |
-
#: counter-
|
285 |
-
#: counter
|
286 |
-
#: counter.php:
|
287 |
-
#: counter.php:875
|
288 |
#@ cpd
|
289 |
msgid "Reads"
|
290 |
msgstr "Visitas"
|
291 |
|
292 |
-
#: counter
|
293 |
#@ cpd
|
294 |
msgid "Latest Counts"
|
295 |
msgstr "Últimos conteos"
|
296 |
|
297 |
-
#: counter-options.php:
|
298 |
#@ cpd
|
299 |
msgid "Chart - Days"
|
300 |
msgstr "Gráfica - Días"
|
301 |
|
302 |
-
#: counter-options.php:
|
303 |
#@ cpd
|
304 |
msgid "Chart - Height"
|
305 |
msgstr "Gráfica - Altura"
|
306 |
|
307 |
-
#: counter-options.php:
|
308 |
#@ cpd
|
309 |
msgid "Height of the biggest bar"
|
310 |
msgstr "Altura de la categoría mayor"
|
311 |
|
312 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
#@ cpd
|
314 |
msgid "This post"
|
315 |
msgstr "Este artículo"
|
316 |
|
317 |
-
#: counter-options.php:
|
318 |
#@ default
|
319 |
msgid "Dashboard"
|
320 |
msgstr "Escritorio"
|
321 |
|
322 |
-
#: counter.php:
|
|
|
323 |
#@ cpd
|
324 |
msgid "Reads per day"
|
325 |
msgstr "Lecturas por día"
|
326 |
|
327 |
-
#: counter-options.php:
|
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:
|
334 |
#@ cpd
|
335 |
msgid "update next"
|
336 |
msgstr "actualiza el próximo"
|
337 |
|
338 |
-
#: counter-options.php:
|
339 |
#@ cpd
|
340 |
msgid "GeoIP - Countries"
|
341 |
msgstr "GeoIP - Países"
|
342 |
|
343 |
-
#: counter-options.php:
|
344 |
#@ cpd
|
345 |
msgid "Update old counter data"
|
346 |
msgstr "Actualiza los datos antiguos"
|
347 |
|
348 |
-
#: counter-options.php:
|
349 |
#@ cpd
|
350 |
msgid "Update GeoIP database"
|
351 |
msgstr "Actualiza la base de datos de GeoIP"
|
352 |
|
353 |
-
#: counter-options.php:
|
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:
|
359 |
#@ cpd
|
360 |
msgid "More informations about GeoIP"
|
361 |
msgstr "Más información sobre GeoIP"
|
362 |
|
363 |
-
#: counter
|
364 |
#@ cpd
|
365 |
msgid "Reads per Country"
|
366 |
msgstr "Lecturas por país"
|
367 |
|
368 |
-
#: geoip/geoip.php:
|
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:
|
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:
|
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:
|
384 |
#@ cpd
|
385 |
msgid "Countries"
|
386 |
msgstr "Países"
|
387 |
|
388 |
-
#: counter-options.php:
|
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:
|
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:
|
400 |
-
#: massbots.php:
|
401 |
#@ cpd
|
402 |
msgid "Mass Bots"
|
403 |
msgstr "Robots"
|
404 |
|
405 |
-
#: counter-options.php:
|
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:
|
412 |
-
#: notes.php:
|
413 |
-
#: userperspan.php:
|
414 |
#@ cpd
|
415 |
msgid "show"
|
416 |
msgstr "muestra"
|
417 |
|
418 |
-
#: counter-options.php:
|
419 |
-
#: counter-options.php:
|
420 |
#, php-format
|
421 |
#@ cpd
|
422 |
msgid "Delete these %s counts"
|
423 |
msgstr "Borra estos %s conteos"
|
424 |
|
425 |
-
#: counter.php:
|
426 |
#@ cpd
|
427 |
msgid "Other"
|
428 |
msgstr "Otro"
|
429 |
|
430 |
-
#: counter.php:
|
431 |
-
#: massbots.php:
|
432 |
#: userperspan.php:63
|
433 |
#@ default
|
434 |
msgid "Front page displays"
|
435 |
msgstr "Página inicial mostradas"
|
436 |
|
437 |
-
#: counter-
|
438 |
-
#: counter
|
439 |
#@ cpd
|
440 |
msgid "Browsers"
|
441 |
msgstr "Navegador"
|
442 |
|
443 |
-
#: counter-options.php:
|
444 |
#@ cpd
|
445 |
msgid "IP"
|
446 |
msgstr "IP"
|
447 |
|
448 |
-
#: counter-options.php:
|
449 |
-
#: notes.php:
|
450 |
#@ cpd
|
451 |
#@ default
|
452 |
msgid "Date"
|
453 |
msgstr "Fecha"
|
454 |
|
455 |
-
#: counter-options.php:
|
456 |
#@ cpd
|
457 |
msgid "Client"
|
458 |
msgstr "Cliente"
|
459 |
|
460 |
-
#: counter-options.php:
|
461 |
#@ cpd
|
462 |
msgid "Views"
|
463 |
msgstr "Vistas"
|
464 |
|
465 |
-
#: counter-options.php:
|
466 |
#@ cpd
|
467 |
msgid "Start Values"
|
468 |
msgstr "Valores de inicio"
|
469 |
|
470 |
-
#: counter-options.php:
|
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:
|
476 |
#@ cpd
|
477 |
msgid "Start date"
|
478 |
msgstr "Fecha de inicio"
|
479 |
|
480 |
-
#: counter-options.php:
|
481 |
#@ cpd
|
482 |
msgid "Your old Counter starts at?"
|
483 |
msgstr "Su antiguo contador comienza el"
|
484 |
|
485 |
-
#: counter-options.php:
|
486 |
-
#: counter-options.php:
|
487 |
#@ cpd
|
488 |
msgid "Start count"
|
489 |
msgstr "Iniciar el conteo"
|
490 |
|
491 |
-
#: counter-options.php:
|
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:
|
497 |
#@ cpd
|
498 |
msgid "Support"
|
499 |
msgstr "Soporte"
|
500 |
|
501 |
-
#: counter
|
502 |
#@ cpd
|
503 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
504 |
msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
|
505 |
|
506 |
-
#: counter
|
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:
|
513 |
#@ default
|
514 |
msgid "Show"
|
515 |
msgstr "Muestra"
|
516 |
|
517 |
-
#: counter.php:
|
518 |
#@ default
|
519 |
msgid "Edit Post"
|
520 |
msgstr "Modifica entrada"
|
521 |
|
522 |
-
#: counter
|
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:
|
529 |
#@ cpd
|
530 |
msgid "until User Level"
|
531 |
msgstr "hasta el Nivel de Usuario"
|
532 |
|
533 |
-
#: counter
|
534 |
#@ default
|
535 |
msgid "Plugin"
|
536 |
msgstr "Plugin"
|
537 |
|
538 |
-
#: counter.php:
|
539 |
-
#:
|
540 |
-
#: notes.php:
|
|
|
541 |
#@ cpd
|
542 |
msgid "Notes"
|
543 |
msgstr "Notas"
|
544 |
|
545 |
-
#: notes.php:
|
546 |
#@ default
|
547 |
msgid "Action"
|
548 |
msgstr "Acción"
|
549 |
|
550 |
-
#: notes.php:
|
551 |
#@ cpd
|
552 |
msgid "add"
|
553 |
msgstr "añade"
|
554 |
|
555 |
-
#: notes.php:
|
556 |
#@ cpd
|
557 |
msgid "save"
|
558 |
msgstr "salva"
|
559 |
|
560 |
-
#: notes.php:
|
561 |
#@ cpd
|
562 |
msgid "delete"
|
563 |
msgstr "borra"
|
564 |
|
565 |
-
#: notes.php:
|
566 |
#@ cpd
|
567 |
msgid "edit"
|
568 |
msgstr "modifica"
|
569 |
|
570 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
571 |
#@ cpd
|
572 |
msgid "Add this value to \"Total reads\"."
|
573 |
msgstr "Añade este valor a \"Total de lecturas\"."
|
574 |
|
575 |
-
#: counter.php:
|
576 |
-
#: counter.php:
|
577 |
#@ cpd
|
578 |
msgid "Total reads"
|
579 |
msgstr "Total de lecturas"
|
580 |
|
581 |
-
#: counter.php:
|
582 |
-
#: counter.php:
|
583 |
#@ cpd
|
584 |
msgid "Reads today"
|
585 |
msgstr "Lecturas hoy"
|
586 |
|
587 |
-
#: counter.php:
|
588 |
-
#: counter.php:
|
589 |
#@ cpd
|
590 |
msgid "Reads yesterday"
|
591 |
msgstr "Lecturas ayer"
|
592 |
|
593 |
-
#: counter.php:
|
594 |
-
#: counter.php:
|
595 |
#@ cpd
|
596 |
msgid "Map"
|
597 |
msgstr "Mapa"
|
598 |
|
599 |
-
#: counter-options.php:
|
600 |
#@ cpd
|
601 |
msgid "Anonymous IP"
|
602 |
msgstr "IP anónimo"
|
603 |
|
604 |
-
#: counter-options.php:
|
605 |
#@ cpd
|
606 |
msgid "Cache"
|
607 |
msgstr "Cache"
|
608 |
|
609 |
-
#: counter-options.php:
|
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:
|
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:
|
620 |
#@ cpd
|
621 |
msgid "Debug mode"
|
622 |
msgstr "Modo debug"
|
623 |
|
624 |
-
#: counter-options.php:
|
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
|
630 |
#@ cpd
|
631 |
msgid "Visitors per Country"
|
632 |
msgstr "Visitas por país"
|
633 |
|
634 |
-
#: userperspan.php:
|
635 |
#@ cpd
|
636 |
msgid "Start"
|
637 |
msgstr "Inicio"
|
638 |
|
639 |
-
#: userperspan.php:
|
640 |
#@ cpd
|
641 |
msgid "End"
|
642 |
msgstr "Fin"
|
643 |
|
644 |
-
#: userperspan.php:
|
645 |
#@ cpd
|
646 |
msgid "PostID"
|
647 |
msgstr "ID entrada"
|
648 |
|
649 |
-
#: userperspan.php:
|
650 |
#@ cpd
|
651 |
msgid "no data found"
|
652 |
msgstr "no se han encontrado datos"
|
653 |
|
654 |
-
#: counter-options.php:
|
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:
|
660 |
#@ cpd
|
661 |
msgid "Counter"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: counter-options.php:
|
665 |
#@ cpd
|
666 |
msgid "Clients and referrers"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: counter-options.php:
|
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:
|
675 |
#@ cpd
|
676 |
msgid "Local URLs"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: counter-options.php:
|
680 |
#@ cpd
|
681 |
msgid "Show local referrers too."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: counter-options.php:
|
685 |
#@ default
|
686 |
msgid "Posts"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: counter-options.php:
|
690 |
#@ default
|
691 |
msgid "Pages"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
#@ cpd
|
697 |
msgid "Reads last week"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: counter.php:
|
701 |
#@ default
|
702 |
msgid "Category"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: counter.php:
|
706 |
#@ default
|
707 |
msgid "Tag"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: counter
|
711 |
#@ default
|
712 |
msgid "License"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: counter
|
716 |
-
#: counter.php:
|
717 |
#@ cpd
|
718 |
msgid "Reads per month"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: counter
|
722 |
#@ cpd
|
723 |
msgid "Referrer"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: counter.php:
|
727 |
#@ default
|
728 |
msgid "Title"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: counter-options.php:
|
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 > 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 "
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: counter-options.php:
|
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 "
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: counter-options.php:
|
920 |
#@ cpd
|
921 |
-
msgid "
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: counter-options.php:
|
925 |
#@ cpd
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: counter-options.php:
|
930 |
-
#, php-format
|
931 |
#@ cpd
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: counter
|
936 |
#, php-format
|
937 |
#@ cpd
|
938 |
-
msgid "
|
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:
|
969 |
#@ cpd
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:46
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Las opciones han sido guardadas"
|
26 |
|
27 |
+
#: counter-options.php:111
|
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:121
|
34 |
+
#: counter-options.php:496
|
35 |
#@ cpd
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "DESINSTALA Count per Day"
|
38 |
|
39 |
+
#: counter-options.php:126
|
40 |
+
#: counter-options.php:128
|
41 |
+
#: counter-options.php:130
|
42 |
#, php-format
|
43 |
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "La tabla %s ha sido borrada"
|
46 |
|
47 |
+
#: counter-options.php:132
|
48 |
#@ cpd
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Las opciones han sido canceladas"
|
51 |
|
52 |
+
#: counter-options.php:156
|
53 |
+
#: counter-options.php:481
|
54 |
#@ cpd
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Desinstala"
|
57 |
|
58 |
+
#: counter-options.php:157
|
59 |
#@ cpd
|
60 |
msgid "Click here"
|
61 |
msgstr "Hacer click aquí"
|
62 |
|
63 |
+
#: counter-options.php:157
|
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:179
|
69 |
+
#@ cpd
|
70 |
+
msgid "Options"
|
71 |
+
msgstr "Opciones"
|
72 |
+
|
73 |
+
#: counter-options.php:190
|
74 |
#@ cpd
|
75 |
msgid "Online time"
|
76 |
msgstr "Tiempo online"
|
77 |
|
78 |
+
#: counter-options.php:191
|
79 |
#@ cpd
|
80 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
81 |
msgstr "Segundos del contador online. Usado para \"Visitantes conectados\" en el escritorio."
|
82 |
|
83 |
+
#: counter-options.php:194
|
84 |
#@ cpd
|
85 |
msgid "Logged on Users"
|
86 |
msgstr "Usuarios conectados"
|
87 |
|
88 |
+
#: counter-options.php:196
|
89 |
#@ cpd
|
90 |
msgid "count too"
|
91 |
msgstr "contar también"
|
92 |
|
93 |
+
#: counter-options.php:208
|
94 |
#@ cpd
|
95 |
msgid "Auto counter"
|
96 |
msgstr "Auto contador"
|
97 |
|
98 |
+
#: counter-options.php:209
|
99 |
#@ cpd
|
100 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
101 |
msgstr "Cuenta automáticamente entradas y páginas, no es necesario cambiar la plantilla."
|
102 |
|
103 |
+
#: counter-options.php:212
|
104 |
#@ cpd
|
105 |
msgid "Bots to ignore"
|
106 |
msgstr "Bots a ignorar"
|
107 |
|
108 |
+
#: counter-options.php:331
|
109 |
#@ cpd
|
110 |
msgid "Update options"
|
111 |
msgstr "Actualiza las opciones"
|
112 |
|
113 |
+
#: counter-options.php:445
|
114 |
+
#: counter-options.php:454
|
115 |
#@ cpd
|
116 |
msgid "Clean the database"
|
117 |
msgstr "Borrar la base de datos"
|
118 |
|
119 |
+
#: counter-options.php:448
|
120 |
#@ cpd
|
121 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
122 |
msgstr "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."
|
123 |
|
124 |
+
#: counter-options.php:484
|
125 |
#@ cpd
|
126 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
127 |
msgstr "La desactivación de \"Count per Day\" no borrará las tablas de la base de datos."
|
128 |
|
129 |
+
#: counter-options.php:485
|
130 |
#@ cpd
|
131 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
132 |
msgstr "Aquí puedes borrar las tablas y desactivar \"Count per Day\"."
|
133 |
|
134 |
+
#: counter-options.php:488
|
135 |
#@ cpd
|
136 |
msgid "WARNING"
|
137 |
msgstr "ATENCIÓN"
|
138 |
|
139 |
+
#: counter-options.php:489
|
140 |
#@ cpd
|
141 |
msgid "These tables (with ALL counter data) will be deleted."
|
142 |
msgstr "Estas tablas (con TODOS los datos) serán borradas."
|
143 |
|
144 |
+
#: counter-options.php:491
|
145 |
#@ cpd
|
146 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
147 |
msgstr "Si \"Count per Day\" es reinstalado, el contador comenzará en 0."
|
148 |
|
149 |
+
#: counter-options.php:495
|
|
|
150 |
#@ cpd
|
151 |
msgid "Yes"
|
152 |
msgstr "Sí"
|
153 |
|
154 |
+
#: counter-options.php:496
|
155 |
#@ cpd
|
156 |
msgid "You are sure to disable Count per Day and delete all data?"
|
157 |
msgstr "¿Estás seguro de desactivar Count per Day y borrar todos los datos?"
|
158 |
|
159 |
+
#: counter.php:1786
|
160 |
+
#: counter.php:2147
|
161 |
#@ cpd
|
162 |
msgid "Statistics"
|
163 |
msgstr "Estadísticas"
|
164 |
|
165 |
+
#: counter.php:529
|
166 |
+
#: counter.php:534
|
167 |
+
#: counter.php:1604
|
168 |
+
#: counter.php:1750
|
169 |
+
#: counter.php:2224
|
170 |
#@ cpd
|
171 |
msgid "Total visitors"
|
172 |
msgstr "Total de visitas"
|
173 |
|
174 |
+
#: counter.php:530
|
175 |
+
#: counter.php:2230
|
176 |
#@ cpd
|
177 |
msgid "Visitors currently online"
|
178 |
msgstr "Visitantes conectados"
|
179 |
|
180 |
+
#: counter.php:531
|
181 |
+
#: counter.php:2225
|
182 |
#@ cpd
|
183 |
msgid "Visitors today"
|
184 |
msgstr "Hoy"
|
185 |
|
186 |
+
#: counter.php:532
|
187 |
+
#: counter.php:2226
|
188 |
#@ cpd
|
189 |
msgid "Visitors yesterday"
|
190 |
msgstr "Ayer"
|
191 |
|
192 |
+
#: counter.php:533
|
193 |
+
#: counter.php:2227
|
194 |
#@ cpd
|
195 |
msgid "Visitors last week"
|
196 |
msgstr "La semana anterior"
|
197 |
|
198 |
+
#: counter.php:536
|
199 |
+
#: counter.php:2231
|
|
|
200 |
#@ cpd
|
201 |
msgid "Counter starts on"
|
202 |
msgstr "El contador comenzó el"
|
203 |
|
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 |
#@ cpd
|
212 |
msgid "Visitors per day"
|
213 |
msgstr "Visitantes por día"
|
214 |
|
215 |
+
#: counter.php:1752
|
216 |
+
#: counter.php:2228
|
217 |
#@ cpd
|
218 |
msgid "Visitors per month"
|
219 |
msgstr "Visitantes por mes"
|
220 |
|
221 |
+
#: counter-options.php:236
|
222 |
+
#: counter.php:1754
|
223 |
#@ cpd
|
224 |
msgid "Visitors per post"
|
225 |
msgstr "Visitantes por entrada"
|
226 |
|
227 |
+
#: counter-options.php:117
|
228 |
#@ cpd
|
229 |
msgid "Counter reseted."
|
230 |
msgstr "El contador ha sido reinicializado."
|
231 |
|
232 |
+
#: counter-options.php:237
|
233 |
+
#: counter-options.php:241
|
234 |
#@ cpd
|
235 |
msgid "How many posts do you want to see on dashboard page?"
|
236 |
msgstr "Número de entradas que quieres ver en el escritorio"
|
237 |
|
238 |
+
#: counter-options.php:240
|
239 |
#@ cpd
|
240 |
msgid "Latest Counts - Posts"
|
241 |
msgstr "Últimos conteos - Entradas"
|
242 |
|
243 |
+
#: counter-options.php:244
|
244 |
#@ cpd
|
245 |
msgid "Latest Counts - Days"
|
246 |
msgstr "Últimos conteos - Días"
|
247 |
|
248 |
+
#: counter-options.php:245
|
249 |
+
#: counter-options.php:249
|
250 |
+
#: counter-options.php:275
|
251 |
#@ cpd
|
252 |
msgid "How many days do you want look back?"
|
253 |
msgstr "¿Cuántos días hacia atrás quieres ver?"
|
254 |
|
255 |
+
#: counter-options.php:290
|
256 |
#@ cpd
|
257 |
msgid "Show in lists"
|
258 |
msgstr "Mostrar en las listas"
|
259 |
|
260 |
+
#: counter-options.php:291
|
261 |
#@ cpd
|
262 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
263 |
msgstr "Mostrar \"Lecturas por entrada\" en una nueva columna en la sección de administración de entradas."
|
264 |
|
265 |
+
#: counter-options.php:463
|
266 |
+
#: counter-options.php:472
|
267 |
#@ cpd
|
268 |
msgid "Reset the counter"
|
269 |
msgstr "Reinicia el contador"
|
270 |
|
271 |
+
#: counter-options.php:466
|
272 |
#@ cpd
|
273 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
274 |
msgstr "Puedes reiniciar el contador vaciando la tabla. TODO a 0!<br />¡Haz un backup si quieres conservar los datos!"
|
275 |
|
276 |
+
#: counter.php:1257
|
277 |
#, php-format
|
278 |
#@ cpd
|
279 |
msgid "The %s most visited posts in last %s days:"
|
280 |
msgstr "Las %s entradas más visitadas en los últimos %s días:"
|
281 |
|
282 |
+
#: counter.php:1591
|
|
|
|
|
283 |
#@ default
|
284 |
msgid "Settings"
|
285 |
msgstr "Configuración"
|
286 |
|
287 |
+
#: counter-options.php:225
|
288 |
+
#: counter.php:528
|
289 |
+
#: counter.php:1661
|
|
|
290 |
#@ cpd
|
291 |
msgid "Reads"
|
292 |
msgstr "Visitas"
|
293 |
|
294 |
+
#: counter.php:1755
|
295 |
#@ cpd
|
296 |
msgid "Latest Counts"
|
297 |
msgstr "Últimos conteos"
|
298 |
|
299 |
+
#: counter-options.php:248
|
300 |
#@ cpd
|
301 |
msgid "Chart - Days"
|
302 |
msgstr "Gráfica - Días"
|
303 |
|
304 |
+
#: counter-options.php:252
|
305 |
#@ cpd
|
306 |
msgid "Chart - Height"
|
307 |
msgstr "Gráfica - Altura"
|
308 |
|
309 |
+
#: counter-options.php:253
|
310 |
#@ cpd
|
311 |
msgid "Height of the biggest bar"
|
312 |
msgstr "Altura de la categoría mayor"
|
313 |
|
314 |
+
#: counter.php:845
|
315 |
+
#@ cpd
|
316 |
+
msgid "no reads at this time"
|
317 |
+
msgstr "sin lecturas en este momento"
|
318 |
+
|
319 |
+
#: counter.php:819
|
320 |
+
#@ cpd
|
321 |
+
msgid "days"
|
322 |
+
msgstr "días"
|
323 |
+
|
324 |
+
#: counter.php:2218
|
325 |
#@ cpd
|
326 |
msgid "This post"
|
327 |
msgstr "Este artículo"
|
328 |
|
329 |
+
#: counter-options.php:233
|
330 |
#@ default
|
331 |
msgid "Dashboard"
|
332 |
msgstr "Escritorio"
|
333 |
|
334 |
+
#: counter.php:635
|
335 |
+
#: counter.php:1766
|
336 |
#@ cpd
|
337 |
msgid "Reads per day"
|
338 |
msgstr "Lecturas por día"
|
339 |
|
340 |
+
#: counter-options.php:57
|
341 |
#, php-format
|
342 |
#@ cpd
|
343 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
344 |
msgstr "Países actualizados. <b>%s</b> entradas %s sin país"
|
345 |
|
346 |
+
#: counter-options.php:62
|
347 |
#@ cpd
|
348 |
msgid "update next"
|
349 |
msgstr "actualiza el próximo"
|
350 |
|
351 |
+
#: counter-options.php:340
|
352 |
#@ cpd
|
353 |
msgid "GeoIP - Countries"
|
354 |
msgstr "GeoIP - Países"
|
355 |
|
356 |
+
#: counter-options.php:349
|
357 |
#@ cpd
|
358 |
msgid "Update old counter data"
|
359 |
msgstr "Actualiza los datos antiguos"
|
360 |
|
361 |
+
#: counter-options.php:362
|
362 |
#@ cpd
|
363 |
msgid "Update GeoIP database"
|
364 |
msgstr "Actualiza la base de datos de GeoIP"
|
365 |
|
366 |
+
#: counter-options.php:365
|
367 |
#@ cpd
|
368 |
msgid "Download a new version of GeoIP.dat file."
|
369 |
msgstr "Decarga la nueva versión del archivo GeoIP.dat."
|
370 |
|
371 |
+
#: counter-options.php:371
|
372 |
#@ cpd
|
373 |
msgid "More informations about GeoIP"
|
374 |
msgstr "Más información sobre GeoIP"
|
375 |
|
376 |
+
#: counter.php:1770
|
377 |
#@ cpd
|
378 |
msgid "Reads per Country"
|
379 |
msgstr "Lecturas por país"
|
380 |
|
381 |
+
#: geoip/geoip.php:132
|
382 |
#@ cpd
|
383 |
msgid "New GeoIP database installed."
|
384 |
msgstr "La nueva base de datos de GeoIP ha sido instalada."
|
385 |
|
386 |
+
#: geoip/geoip.php:134
|
387 |
#@ cpd
|
388 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
389 |
msgstr "Ha ocurrido un error. Inténtelo de nuevo o verifique que los permisos de la carpeta \"geoip\" están como 777."
|
390 |
|
391 |
+
#: geoip/geoip.php:108
|
392 |
#@ cpd
|
393 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
394 |
msgstr "Las funciones (zlib) non están instaladas o habilitadas en php.ini."
|
395 |
|
396 |
+
#: counter-options.php:261
|
397 |
#@ cpd
|
398 |
msgid "Countries"
|
399 |
msgstr "Países"
|
400 |
|
401 |
+
#: counter-options.php:262
|
402 |
#@ cpd
|
403 |
msgid "How many countries do you want to see on dashboard page?"
|
404 |
msgstr "¿Cuántos países desea ver en el escritorio?"
|
405 |
|
406 |
+
#: counter-options.php:104
|
407 |
#, php-format
|
408 |
#@ cpd
|
409 |
msgid "Mass Bots cleaned. %s counts deleted."
|
410 |
msgstr "Robots borrados. %s conteos borrados."
|
411 |
|
412 |
+
#: counter-options.php:386
|
413 |
+
#: massbots.php:33
|
414 |
#@ cpd
|
415 |
msgid "Mass Bots"
|
416 |
msgstr "Robots"
|
417 |
|
418 |
+
#: counter-options.php:390
|
419 |
#, php-format
|
420 |
#@ cpd
|
421 |
msgid "Show all IPs with more than %s page views per day"
|
422 |
msgstr "Muestra todos los IP con más de %s paginas visualizadas al día"
|
423 |
|
424 |
+
#: counter-options.php:391
|
425 |
+
#: notes.php:76
|
426 |
+
#: userperspan.php:43
|
427 |
#@ cpd
|
428 |
msgid "show"
|
429 |
msgstr "muestra"
|
430 |
|
431 |
+
#: counter-options.php:413
|
432 |
+
#: counter-options.php:435
|
433 |
#, php-format
|
434 |
#@ cpd
|
435 |
msgid "Delete these %s counts"
|
436 |
msgstr "Borra estos %s conteos"
|
437 |
|
438 |
+
#: counter.php:1421
|
439 |
#@ cpd
|
440 |
msgid "Other"
|
441 |
msgstr "Otro"
|
442 |
|
443 |
+
#: counter.php:1520
|
444 |
+
#: massbots.php:50
|
445 |
#: userperspan.php:63
|
446 |
#@ default
|
447 |
msgid "Front page displays"
|
448 |
msgstr "Página inicial mostradas"
|
449 |
|
450 |
+
#: counter-options.php:266
|
451 |
+
#: counter.php:1760
|
452 |
#@ cpd
|
453 |
msgid "Browsers"
|
454 |
msgstr "Navegador"
|
455 |
|
456 |
+
#: counter-options.php:399
|
457 |
#@ cpd
|
458 |
msgid "IP"
|
459 |
msgstr "IP"
|
460 |
|
461 |
+
#: counter-options.php:400
|
462 |
+
#: notes.php:80
|
463 |
#@ cpd
|
464 |
#@ default
|
465 |
msgid "Date"
|
466 |
msgstr "Fecha"
|
467 |
|
468 |
+
#: counter-options.php:401
|
469 |
#@ cpd
|
470 |
msgid "Client"
|
471 |
msgstr "Cliente"
|
472 |
|
473 |
+
#: counter-options.php:402
|
474 |
#@ cpd
|
475 |
msgid "Views"
|
476 |
msgstr "Vistas"
|
477 |
|
478 |
+
#: counter-options.php:299
|
479 |
#@ cpd
|
480 |
msgid "Start Values"
|
481 |
msgstr "Valores de inicio"
|
482 |
|
483 |
+
#: counter-options.php:303
|
484 |
#@ cpd
|
485 |
msgid "Here you can change the date of first count and add a start count."
|
486 |
msgstr "Aquí puede cambiar la fecha del primer conteo y añadir un valor de inicio."
|
487 |
|
488 |
+
#: counter-options.php:307
|
489 |
#@ cpd
|
490 |
msgid "Start date"
|
491 |
msgstr "Fecha de inicio"
|
492 |
|
493 |
+
#: counter-options.php:308
|
494 |
#@ cpd
|
495 |
msgid "Your old Counter starts at?"
|
496 |
msgstr "Su antiguo contador comienza el"
|
497 |
|
498 |
+
#: counter-options.php:311
|
499 |
+
#: counter-options.php:315
|
500 |
#@ cpd
|
501 |
msgid "Start count"
|
502 |
msgstr "Iniciar el conteo"
|
503 |
|
504 |
+
#: counter-options.php:312
|
505 |
#@ cpd
|
506 |
msgid "Add this value to \"Total visitors\"."
|
507 |
msgstr "Añadir este valor al \"Total de visitas\"."
|
508 |
|
509 |
+
#: counter-options.php:504
|
510 |
#@ cpd
|
511 |
msgid "Support"
|
512 |
msgstr "Soporte"
|
513 |
|
514 |
+
#: counter.php:1717
|
515 |
#@ cpd
|
516 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
517 |
msgstr "¿Bug? ¿Problemas? ¿Preguntas? ¿Sugerencias? ¿Elogios?"
|
518 |
|
519 |
+
#: counter.php:1718
|
520 |
#, php-format
|
521 |
#@ cpd
|
522 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
523 |
msgstr "Envía un comentario en la <a href=\"%s\">página del plugin</a>."
|
524 |
|
525 |
+
#: counter.php:1374
|
526 |
#@ default
|
527 |
msgid "Show"
|
528 |
msgstr "Muestra"
|
529 |
|
530 |
+
#: counter.php:1505
|
531 |
#@ default
|
532 |
msgid "Edit Post"
|
533 |
msgstr "Modifica entrada"
|
534 |
|
535 |
+
#: counter.php:1716
|
536 |
#, php-format
|
537 |
#@ cpd
|
538 |
msgid "Time for Count per Day: <code>%s</code>."
|
539 |
msgstr "Huso horario para Count per Day: <code>%s</code>."
|
540 |
|
541 |
+
#: counter-options.php:197
|
542 |
#@ cpd
|
543 |
msgid "until User Level"
|
544 |
msgstr "hasta el Nivel de Usuario"
|
545 |
|
546 |
+
#: counter.php:1757
|
547 |
#@ default
|
548 |
msgid "Plugin"
|
549 |
msgstr "Plugin"
|
550 |
|
551 |
+
#: counter.php:822
|
552 |
+
#: counter.php:1376
|
553 |
+
#: notes.php:47
|
554 |
+
#: notes.php:81
|
555 |
#@ cpd
|
556 |
msgid "Notes"
|
557 |
msgstr "Notas"
|
558 |
|
559 |
+
#: notes.php:82
|
560 |
#@ default
|
561 |
msgid "Action"
|
562 |
msgstr "Acción"
|
563 |
|
564 |
+
#: notes.php:87
|
565 |
#@ cpd
|
566 |
msgid "add"
|
567 |
msgstr "añade"
|
568 |
|
569 |
+
#: notes.php:102
|
570 |
#@ cpd
|
571 |
msgid "save"
|
572 |
msgstr "salva"
|
573 |
|
574 |
+
#: notes.php:103
|
575 |
#@ cpd
|
576 |
msgid "delete"
|
577 |
msgstr "borra"
|
578 |
|
579 |
+
#: notes.php:114
|
580 |
#@ cpd
|
581 |
msgid "edit"
|
582 |
msgstr "modifica"
|
583 |
|
584 |
+
#: notes.php:81
|
585 |
+
#@ cpd
|
586 |
+
msgid "(1 per day)"
|
587 |
+
msgstr "(1 por día)"
|
588 |
+
|
589 |
+
#: counter-options.php:316
|
590 |
#@ cpd
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Añade este valor a \"Total de lecturas\"."
|
593 |
|
594 |
+
#: counter.php:524
|
595 |
+
#: counter.php:2219
|
596 |
#@ cpd
|
597 |
msgid "Total reads"
|
598 |
msgstr "Total de lecturas"
|
599 |
|
600 |
+
#: counter.php:525
|
601 |
+
#: counter.php:2220
|
602 |
#@ cpd
|
603 |
msgid "Reads today"
|
604 |
msgstr "Lecturas hoy"
|
605 |
|
606 |
+
#: counter.php:526
|
607 |
+
#: counter.php:2221
|
608 |
#@ cpd
|
609 |
msgid "Reads yesterday"
|
610 |
msgstr "Lecturas ayer"
|
611 |
|
612 |
+
#: counter.php:900
|
613 |
+
#: counter.php:1856
|
614 |
#@ cpd
|
615 |
msgid "Map"
|
616 |
msgstr "Mapa"
|
617 |
|
618 |
+
#: counter-options.php:216
|
619 |
#@ cpd
|
620 |
msgid "Anonymous IP"
|
621 |
msgstr "IP anónimo"
|
622 |
|
623 |
+
#: counter-options.php:220
|
624 |
#@ cpd
|
625 |
msgid "Cache"
|
626 |
msgstr "Cache"
|
627 |
|
628 |
+
#: counter-options.php:221
|
629 |
#@ cpd
|
630 |
msgid "I use a cache plugin. Count these visits with ajax."
|
631 |
msgstr "Uso un plugin para la cache. Contar las visitas con ajax."
|
632 |
|
633 |
+
#: counter-options.php:267
|
634 |
#@ cpd
|
635 |
msgid "Substring of the user agent, separated by comma"
|
636 |
msgstr "Subcadena del user agent, separados por comas"
|
637 |
|
638 |
+
#: counter-options.php:324
|
639 |
#@ cpd
|
640 |
msgid "Debug mode"
|
641 |
msgstr "Modo debug"
|
642 |
|
643 |
+
#: counter-options.php:326
|
644 |
#@ cpd
|
645 |
msgid "Show debug informations at the bottom of all pages."
|
646 |
msgstr "Muestra información de debug al final de todas las páginas."
|
647 |
|
648 |
+
#: counter.php:1771
|
649 |
#@ cpd
|
650 |
msgid "Visitors per Country"
|
651 |
msgstr "Visitas por país"
|
652 |
|
653 |
+
#: userperspan.php:37
|
654 |
#@ cpd
|
655 |
msgid "Start"
|
656 |
msgstr "Inicio"
|
657 |
|
658 |
+
#: userperspan.php:39
|
659 |
#@ cpd
|
660 |
msgid "End"
|
661 |
msgstr "Fin"
|
662 |
|
663 |
+
#: userperspan.php:41
|
664 |
#@ cpd
|
665 |
msgid "PostID"
|
666 |
msgstr "ID entrada"
|
667 |
|
668 |
+
#: userperspan.php:49
|
669 |
#@ cpd
|
670 |
msgid "no data found"
|
671 |
msgstr "no se han encontrado datos"
|
672 |
|
673 |
+
#: counter-options.php:352
|
674 |
#@ cpd
|
675 |
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!"
|
676 |
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!"
|
677 |
|
678 |
+
#: counter-options.php:186
|
679 |
#@ cpd
|
680 |
msgid "Counter"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: counter-options.php:224
|
684 |
#@ cpd
|
685 |
msgid "Clients and referrers"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: counter-options.php:225
|
689 |
#@ cpd
|
690 |
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."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: counter-options.php:278
|
694 |
#@ cpd
|
695 |
msgid "Local URLs"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: counter-options.php:279
|
699 |
#@ cpd
|
700 |
msgid "Show local referrers too."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: counter-options.php:287
|
704 |
#@ default
|
705 |
msgid "Posts"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: counter-options.php:287
|
709 |
#@ default
|
710 |
msgid "Pages"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: counter.php:527
|
714 |
+
#: counter.php:2222
|
715 |
#@ cpd
|
716 |
msgid "Reads last week"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: counter.php:1514
|
720 |
#@ default
|
721 |
msgid "Category"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: counter.php:1517
|
725 |
#@ default
|
726 |
msgid "Tag"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: counter.php:1719
|
730 |
#@ default
|
731 |
msgid "License"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: counter.php:1753
|
735 |
+
#: counter.php:2223
|
736 |
#@ cpd
|
737 |
msgid "Reads per month"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: counter.php:1761
|
741 |
#@ cpd
|
742 |
msgid "Referrer"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: counter.php:2242
|
746 |
#@ default
|
747 |
msgid "Title"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: counter-options.php:256
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
#@ cpd
|
752 |
+
msgid "Old Charts"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: counter-options.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
756 |
#@ cpd
|
757 |
+
msgid "Show old bar charts."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: counter-options.php:270
|
761 |
#@ cpd
|
762 |
+
msgid "Referrers - Entries"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: counter-options.php:271
|
766 |
#@ cpd
|
767 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: counter-options.php:274
|
|
|
771 |
#@ cpd
|
772 |
+
msgid "Referrers - Days"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: counter.php:1449
|
776 |
#, php-format
|
777 |
#@ cpd
|
778 |
+
msgid "The %s referrers in last %s days:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: counter.php:1751
|
782 |
#@ cpd
|
783 |
+
msgid "Visitors online"
|
784 |
msgstr ""
|
785 |
|
locale/cpd-fr_FR.mo
CHANGED
Binary file
|
locale/cpd-fr_FR.po
CHANGED
@@ -19,953 +19,766 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
-
#: counter-options.php:
|
23 |
msgid "Options updated"
|
24 |
msgstr "Paramètres mis à jour"
|
25 |
|
26 |
#@ cpd
|
27 |
-
#: counter-options.php:
|
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:
|
34 |
-
#: counter-options.php:
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "Désinstaller Count per Day"
|
37 |
|
38 |
#@ cpd
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
#, php-format
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "Table %s supprimée"
|
45 |
|
46 |
#@ cpd
|
47 |
-
#: counter-options.php:
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Paramètres supprimés"
|
50 |
|
51 |
#@ cpd
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Désinstaller"
|
56 |
|
57 |
#@ cpd
|
58 |
-
#: counter-options.php:
|
59 |
msgid "Click here"
|
60 |
msgstr "Cliquez ici"
|
61 |
|
62 |
#@ cpd
|
63 |
-
#: counter-options.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "Online time"
|
70 |
msgstr "Temps en ligne"
|
71 |
|
72 |
#@ cpd
|
73 |
-
#: counter-options.php:
|
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:
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Utilisateurs Connectés"
|
81 |
|
82 |
#@ cpd
|
83 |
-
#: counter-options.php:
|
84 |
msgid "count too"
|
85 |
msgstr "compter aussi"
|
86 |
|
87 |
#@ cpd
|
88 |
-
#: counter-options.php:
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Compteur automatique"
|
91 |
|
92 |
#@ cpd
|
93 |
-
#: counter-options.php:
|
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:
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Robots à ignorer"
|
101 |
|
102 |
#@ cpd
|
103 |
-
#: counter-options.php:
|
104 |
msgid "Update options"
|
105 |
msgstr "Mettre à jour les options"
|
106 |
|
107 |
#@ cpd
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Nettoyer la base de données"
|
112 |
|
113 |
#@ cpd
|
114 |
-
#: counter-options.php:
|
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:
|
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:
|
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:
|
130 |
msgid "WARNING"
|
131 |
msgstr "ATTENTION"
|
132 |
|
133 |
#@ cpd
|
134 |
-
#: counter-options.php:
|
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:
|
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:
|
145 |
-
#: counter-options.php:809
|
146 |
msgid "Yes"
|
147 |
msgstr "Oui"
|
148 |
|
149 |
#@ cpd
|
150 |
-
#: counter-options.php:
|
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
|
156 |
-
#: counter.php:
|
157 |
msgid "Statistics"
|
158 |
msgstr "Statistiques"
|
159 |
|
160 |
#@ cpd
|
161 |
-
#: counter
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
|
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Visiteurs Total"
|
167 |
|
168 |
#@ cpd
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Visiteur actuellement en ligne"
|
173 |
|
174 |
#@ cpd
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Visiteurs aujourd'hui"
|
179 |
|
180 |
#@ cpd
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Visiteurs hier"
|
185 |
|
186 |
#@ cpd
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Visiteurs la semaine dernière"
|
191 |
|
192 |
#@ cpd
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:1209
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Compteur activé le "
|
198 |
|
199 |
#@ cpd
|
200 |
-
#: counter
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#:
|
|
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "Visiteurs par jour"
|
208 |
|
209 |
#@ cpd
|
210 |
-
#: counter
|
211 |
-
#: counter.php:
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Visiteurs par mois"
|
214 |
|
215 |
#@ cpd
|
216 |
-
#: counter-
|
217 |
-
#: counter
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Visiteurs par articles"
|
220 |
|
221 |
#@ cpd
|
222 |
-
#: counter-options.php:
|
223 |
msgid "Counter reseted."
|
224 |
msgstr "Compteur remis à zéro."
|
225 |
|
226 |
#@ cpd
|
227 |
-
#: counter-options.php:
|
228 |
-
#: counter-options.php:
|
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:
|
234 |
msgid "Latest Counts - Posts"
|
235 |
msgstr "Dernier Comptes - Articles"
|
236 |
|
237 |
#@ cpd
|
238 |
-
#: counter-options.php:
|
239 |
msgid "Latest Counts - Days"
|
240 |
msgstr "Dernier Compte - Jours"
|
241 |
|
242 |
#@ cpd
|
243 |
-
#: counter-options.php:
|
244 |
-
#: counter-options.php:
|
245 |
-
#: counter-options.php:
|
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:
|
251 |
msgid "Show in lists"
|
252 |
msgstr "Montrer dans la liste"
|
253 |
|
254 |
#@ cpd
|
255 |
-
#: counter-options.php:
|
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:
|
261 |
-
#: counter-options.php:
|
262 |
msgid "Reset the counter"
|
263 |
msgstr "Remise à zéro du compteur"
|
264 |
|
265 |
#@ cpd
|
266 |
-
#: counter-options.php:
|
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:
|
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
|
278 |
-
#: counter-options.php:341
|
279 |
-
#: counter-options.php:565
|
280 |
msgid "Settings"
|
281 |
msgstr "Options"
|
282 |
|
283 |
#@ cpd
|
284 |
-
#: counter-
|
285 |
-
#: counter
|
286 |
-
#: counter.php:
|
287 |
-
#: counter.php:875
|
288 |
msgid "Reads"
|
289 |
msgstr "Lectures"
|
290 |
|
291 |
#@ cpd
|
292 |
-
#: counter
|
293 |
msgid "Latest Counts"
|
294 |
msgstr "Dernier Comptes"
|
295 |
|
296 |
#@ cpd
|
297 |
-
#: counter-options.php:
|
298 |
msgid "Chart - Days"
|
299 |
msgstr "Graphique - Jours"
|
300 |
|
301 |
#@ cpd
|
302 |
-
#: counter-options.php:
|
303 |
msgid "Chart - Height"
|
304 |
msgstr "Graphique - Hauteur"
|
305 |
|
306 |
#@ cpd
|
307 |
-
#: counter-options.php:
|
308 |
msgid "Height of the biggest bar"
|
309 |
msgstr "Hauteur de la plus grande barre"
|
310 |
|
311 |
#@ cpd
|
312 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
msgid "This post"
|
314 |
msgstr "Cet article"
|
315 |
|
316 |
#@ default
|
317 |
-
#: counter-options.php:
|
318 |
msgid "Dashboard"
|
319 |
msgstr "Tableau de bord"
|
320 |
|
321 |
#@ cpd
|
322 |
-
#: counter.php:
|
|
|
323 |
msgid "Reads per day"
|
324 |
msgstr "Lectures par jour"
|
325 |
|
326 |
#@ cpd
|
327 |
-
#: counter-options.php:
|
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:
|
334 |
msgid "update next"
|
335 |
msgstr "mettre à jour le prochain"
|
336 |
|
337 |
#@ cpd
|
338 |
-
#: counter-options.php:
|
339 |
msgid "GeoIP - Countries"
|
340 |
msgstr "GeoIP - Pays"
|
341 |
|
342 |
#@ cpd
|
343 |
-
#: counter-options.php:
|
344 |
msgid "Update old counter data"
|
345 |
msgstr "Mettre à jour les données du vieux compteur"
|
346 |
|
347 |
#@ cpd
|
348 |
-
#: counter-options.php:
|
349 |
msgid "Update GeoIP database"
|
350 |
msgstr "Mettre à jour les données de GeoIP"
|
351 |
|
352 |
#@ cpd
|
353 |
-
#: counter-options.php:
|
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:
|
359 |
msgid "More informations about GeoIP"
|
360 |
msgstr "Plus d'infos sur GeoIP"
|
361 |
|
362 |
#@ cpd
|
363 |
-
#: counter
|
364 |
msgid "Reads per Country"
|
365 |
msgstr "Lectures par Pays"
|
366 |
|
367 |
#@ cpd
|
368 |
-
#: geoip/geoip.php:
|
369 |
msgid "New GeoIP database installed."
|
370 |
msgstr "Nouvelle base de données de GeoIp installée."
|
371 |
|
372 |
#@ cpd
|
373 |
-
#: geoip/geoip.php:
|
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:
|
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:
|
384 |
msgid "Countries"
|
385 |
msgstr "Pays"
|
386 |
|
387 |
#@ cpd
|
388 |
-
#: counter-options.php:
|
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:
|
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:
|
400 |
-
#: massbots.php:
|
401 |
msgid "Mass Bots"
|
402 |
msgstr "Robots en masse"
|
403 |
|
404 |
#@ cpd
|
405 |
-
#: counter-options.php:
|
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:
|
412 |
-
#: notes.php:
|
413 |
-
#: userperspan.php:
|
414 |
msgid "show"
|
415 |
msgstr "montrer"
|
416 |
|
417 |
#@ cpd
|
418 |
-
#: counter-options.php:
|
419 |
-
#: counter-options.php:
|
420 |
#, php-format
|
421 |
msgid "Delete these %s counts"
|
422 |
msgstr "Supprimer ces %s comptes"
|
423 |
|
424 |
#@ cpd
|
425 |
-
#: counter.php:
|
426 |
msgid "Other"
|
427 |
msgstr "Autre"
|
428 |
|
429 |
#@ default
|
430 |
-
#: counter.php:
|
431 |
-
#: massbots.php:
|
432 |
#: userperspan.php:63
|
433 |
msgid "Front page displays"
|
434 |
msgstr "Page d'accueil affiche"
|
435 |
|
436 |
#@ cpd
|
437 |
-
#: counter-
|
438 |
-
#: counter
|
439 |
msgid "Browsers"
|
440 |
msgstr "Navigateurs"
|
441 |
|
442 |
#@ cpd
|
443 |
-
#: counter-options.php:
|
444 |
msgid "IP"
|
445 |
msgstr "IP"
|
446 |
|
447 |
#@ cpd
|
448 |
#@ default
|
449 |
-
#: counter-options.php:
|
450 |
-
#: notes.php:
|
451 |
msgid "Date"
|
452 |
msgstr "Date"
|
453 |
|
454 |
#@ cpd
|
455 |
-
#: counter-options.php:
|
456 |
msgid "Client"
|
457 |
msgstr "Client"
|
458 |
|
459 |
#@ cpd
|
460 |
-
#: counter-options.php:
|
461 |
msgid "Views"
|
462 |
msgstr "Vues"
|
463 |
|
464 |
#@ cpd
|
465 |
-
#: counter-options.php:
|
466 |
msgid "Start Values"
|
467 |
msgstr "Valeurs de départ"
|
468 |
|
469 |
#@ cpd
|
470 |
-
#: counter-options.php:
|
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:
|
476 |
msgid "Start date"
|
477 |
msgstr "Date de départ"
|
478 |
|
479 |
#@ cpd
|
480 |
-
#: counter-options.php:
|
481 |
msgid "Your old Counter starts at?"
|
482 |
msgstr "Votre vieux compteur commence à?"
|
483 |
|
484 |
#@ cpd
|
485 |
-
#: counter-options.php:
|
486 |
-
#: counter-options.php:
|
487 |
msgid "Start count"
|
488 |
msgstr "Commencer le compte"
|
489 |
|
490 |
#@ cpd
|
491 |
-
#: counter-options.php:
|
492 |
msgid "Add this value to \"Total visitors\"."
|
493 |
msgstr "Ajouter cette valeur à \"visiteurs totals\"."
|
494 |
|
495 |
#@ cpd
|
496 |
-
#: counter-options.php:
|
497 |
msgid "Support"
|
498 |
msgstr "Support"
|
499 |
|
500 |
#@ cpd
|
501 |
-
#: counter
|
502 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
503 |
msgstr "Bug? Problème? Question? Allusion? Hommage?"
|
504 |
|
505 |
#@ cpd
|
506 |
-
#: counter
|
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:
|
513 |
msgid "Show"
|
514 |
msgstr "Montrer"
|
515 |
|
516 |
#@ default
|
517 |
-
#: counter.php:
|
518 |
msgid "Edit Post"
|
519 |
msgstr "Editer"
|
520 |
|
521 |
#@ cpd
|
522 |
-
#: counter
|
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:
|
529 |
msgid "until User Level"
|
530 |
msgstr "jusqu'au niveau de l'utilisateur"
|
531 |
|
532 |
#@ default
|
533 |
-
#: counter
|
534 |
msgid "Plugin"
|
535 |
msgstr "Plugin"
|
536 |
|
537 |
#@ cpd
|
538 |
-
#: counter.php:
|
539 |
-
#:
|
540 |
-
#: notes.php:
|
|
|
541 |
msgid "Notes"
|
542 |
msgstr "Notes"
|
543 |
|
544 |
#@ default
|
545 |
-
#: notes.php:
|
546 |
msgid "Action"
|
547 |
msgstr "Action"
|
548 |
|
549 |
#@ cpd
|
550 |
-
#: notes.php:
|
551 |
msgid "add"
|
552 |
msgstr "ajouter"
|
553 |
|
554 |
#@ cpd
|
555 |
-
#: notes.php:
|
556 |
msgid "save"
|
557 |
msgstr "sauvegarder"
|
558 |
|
559 |
#@ cpd
|
560 |
-
#: notes.php:
|
561 |
msgid "delete"
|
562 |
msgstr "supprimer"
|
563 |
|
564 |
#@ cpd
|
565 |
-
#: notes.php:
|
566 |
msgid "edit"
|
567 |
msgstr "éditer"
|
568 |
|
569 |
#@ cpd
|
570 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
571 |
msgid "Add this value to \"Total reads\"."
|
572 |
msgstr "Ajouter cette valeur à \"Lectures totales\"."
|
573 |
|
574 |
#@ cpd
|
575 |
-
#: counter.php:
|
576 |
-
#: counter.php:
|
577 |
msgid "Total reads"
|
578 |
msgstr "Lectures totales"
|
579 |
|
580 |
#@ cpd
|
581 |
-
#: counter.php:
|
582 |
-
#: counter.php:
|
583 |
msgid "Reads today"
|
584 |
msgstr "Lectures aujourd'hui"
|
585 |
|
586 |
#@ cpd
|
587 |
-
#: counter.php:
|
588 |
-
#: counter.php:
|
589 |
msgid "Reads yesterday"
|
590 |
msgstr "Lectures hier"
|
591 |
|
592 |
#@ cpd
|
593 |
-
#: counter-options.php:
|
594 |
msgid "Anonymous IP"
|
595 |
msgstr "Adresse IP Anonyme"
|
596 |
|
597 |
#@ cpd
|
598 |
-
#: counter-options.php:
|
599 |
msgid "Cache"
|
600 |
msgstr "Cache"
|
601 |
|
602 |
#@ cpd
|
603 |
-
#: counter-options.php:
|
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:
|
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:
|
614 |
msgid "Debug mode"
|
615 |
msgstr "Mode Debug"
|
616 |
|
617 |
#@ cpd
|
618 |
-
#: counter-options.php:
|
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
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Visiteurs par Pays"
|
626 |
|
627 |
#@ cpd
|
628 |
-
#: counter.php:
|
629 |
-
#: counter.php:
|
630 |
msgid "Map"
|
631 |
msgstr "Carte"
|
632 |
|
633 |
#@ cpd
|
634 |
-
#: userperspan.php:
|
635 |
msgid "Start"
|
636 |
msgstr "Début"
|
637 |
|
638 |
#@ cpd
|
639 |
-
#: userperspan.php:
|
640 |
msgid "End"
|
641 |
msgstr "Fin"
|
642 |
|
643 |
#@ cpd
|
644 |
-
#: userperspan.php:
|
645 |
msgid "PostID"
|
646 |
msgstr "PostID"
|
647 |
|
648 |
#@ cpd
|
649 |
-
#: userperspan.php:
|
650 |
msgid "no data found"
|
651 |
msgstr "aucune donnée trouvée"
|
652 |
|
653 |
#@ cpd
|
654 |
-
#: counter-options.php:
|
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:
|
660 |
msgid "Counter"
|
661 |
msgstr "Compteur"
|
662 |
|
663 |
#@ cpd
|
664 |
-
#: counter-options.php:
|
665 |
msgid "Clients and referrers"
|
666 |
msgstr "Clients et Référents"
|
667 |
|
668 |
#@ cpd
|
669 |
-
#: counter-options.php:
|
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:
|
675 |
msgid "Local URLs"
|
676 |
msgstr "Liens Locals"
|
677 |
|
678 |
#@ cpd
|
679 |
-
#: counter-options.php:
|
680 |
msgid "Show local referrers too."
|
681 |
msgstr "Montrer les référents locals également."
|
682 |
|
683 |
#@ default
|
684 |
-
#: counter-options.php:
|
685 |
msgid "Posts"
|
686 |
msgstr "Articles"
|
687 |
|
688 |
#@ default
|
689 |
-
#: counter-options.php:
|
690 |
msgid "Pages"
|
691 |
msgstr "Pages"
|
692 |
|
693 |
#@ cpd
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
msgid "Reads last week"
|
697 |
msgstr "Lectures - Semaine Dernière"
|
698 |
|
699 |
#@ default
|
700 |
-
#: counter.php:
|
701 |
msgid "Category"
|
702 |
msgstr "Catégorie"
|
703 |
|
704 |
#@ default
|
705 |
-
#: counter.php:
|
706 |
msgid "Tag"
|
707 |
msgstr "Tag"
|
708 |
|
709 |
#@ default
|
710 |
-
#: counter
|
711 |
msgid "License"
|
712 |
msgstr "License"
|
713 |
|
714 |
#@ cpd
|
715 |
-
#: counter
|
716 |
-
#: counter.php:
|
717 |
msgid "Reads per month"
|
718 |
msgstr "Lectures par mois"
|
719 |
|
720 |
#@ cpd
|
721 |
-
#: counter
|
722 |
msgid "Referrer"
|
723 |
msgstr "Référent"
|
724 |
|
725 |
#@ default
|
726 |
-
#: counter.php:
|
727 |
msgid "Title"
|
728 |
msgstr "Titre"
|
729 |
|
730 |
#@ cpd
|
731 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
msgid "Referrers - Entries"
|
733 |
msgstr "Référents - Entrées"
|
734 |
|
735 |
#@ cpd
|
736 |
-
#: counter-options.php:
|
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:
|
742 |
msgid "Referrers - Days"
|
743 |
msgstr "Référents - Jours"
|
744 |
|
745 |
#@ cpd
|
746 |
-
#: counter.php:
|
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
|
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 > size after = %s)."
|
809 |
-
msgstr "Entrées compatabilisées jusqu'à %s collectés et table compteur optimisé (Talle avant: %s > 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 |
-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
+
#: counter-options.php:46
|
23 |
msgid "Options updated"
|
24 |
msgstr "Paramètres mis à jour"
|
25 |
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:111
|
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:121
|
34 |
+
#: counter-options.php:496
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "Désinstaller 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 "Table %s supprimée"
|
45 |
|
46 |
#@ cpd
|
47 |
+
#: counter-options.php:132
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Paramètres supprimés"
|
50 |
|
51 |
#@ cpd
|
52 |
+
#: counter-options.php:156
|
53 |
+
#: counter-options.php:481
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Désinstaller"
|
56 |
|
57 |
#@ cpd
|
58 |
+
#: counter-options.php:157
|
59 |
msgid "Click here"
|
60 |
msgstr "Cliquez ici"
|
61 |
|
62 |
#@ cpd
|
63 |
+
#: counter-options.php:157
|
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:179
|
69 |
+
msgid "Options"
|
70 |
+
msgstr "Options"
|
71 |
+
|
72 |
+
#@ cpd
|
73 |
+
#: counter-options.php:190
|
74 |
msgid "Online time"
|
75 |
msgstr "Temps en ligne"
|
76 |
|
77 |
#@ cpd
|
78 |
+
#: counter-options.php:191
|
79 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
80 |
msgstr "Nombre de secondes pour le compteur en ligne. Utilisé pour \"Visiteurs en ligne\" à la page du tableau de bord."
|
81 |
|
82 |
#@ cpd
|
83 |
+
#: counter-options.php:194
|
84 |
msgid "Logged on Users"
|
85 |
msgstr "Utilisateurs Connectés"
|
86 |
|
87 |
#@ cpd
|
88 |
+
#: counter-options.php:196
|
89 |
msgid "count too"
|
90 |
msgstr "compter aussi"
|
91 |
|
92 |
#@ cpd
|
93 |
+
#: counter-options.php:208
|
94 |
msgid "Auto counter"
|
95 |
msgstr "Compteur automatique"
|
96 |
|
97 |
#@ cpd
|
98 |
+
#: counter-options.php:209
|
99 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
100 |
msgstr "Compte automatiquement les articles et les pages, aucun changement sur le template requis."
|
101 |
|
102 |
#@ cpd
|
103 |
+
#: counter-options.php:212
|
104 |
msgid "Bots to ignore"
|
105 |
msgstr "Robots à ignorer"
|
106 |
|
107 |
#@ cpd
|
108 |
+
#: counter-options.php:331
|
109 |
msgid "Update options"
|
110 |
msgstr "Mettre à jour les options"
|
111 |
|
112 |
#@ cpd
|
113 |
+
#: counter-options.php:445
|
114 |
+
#: counter-options.php:454
|
115 |
msgid "Clean the database"
|
116 |
msgstr "Nettoyer la base de données"
|
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 "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."
|
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 "Si \"Count per Day\" est seulement désactivé les tables dans la base de données resteront intactes."
|
127 |
|
128 |
#@ cpd
|
129 |
+
#: counter-options.php:485
|
130 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
131 |
msgstr "Ici, vous pouvez désactiver et supprimer \"Count per Day\"."
|
132 |
|
133 |
#@ cpd
|
134 |
+
#: counter-options.php:488
|
135 |
msgid "WARNING"
|
136 |
msgstr "ATTENTION"
|
137 |
|
138 |
#@ cpd
|
139 |
+
#: counter-options.php:489
|
140 |
msgid "These tables (with ALL counter data) will be deleted."
|
141 |
msgstr "Ces tables (avec toutes les données du compteur) seront supprimées."
|
142 |
|
143 |
#@ cpd
|
144 |
+
#: counter-options.php:491
|
145 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
146 |
msgstr "Si \"Count per Day\" est re-installé, le compteur repart de 0."
|
147 |
|
148 |
#@ cpd
|
149 |
+
#: counter-options.php:495
|
|
|
150 |
msgid "Yes"
|
151 |
msgstr "Oui"
|
152 |
|
153 |
#@ cpd
|
154 |
+
#: counter-options.php:496
|
155 |
msgid "You are sure to disable Count per Day and delete all data?"
|
156 |
msgstr "Vous êtes sûr de désactiver Count per Day et supprimer toutes les données?"
|
157 |
|
158 |
#@ cpd
|
159 |
+
#: counter.php:1786
|
160 |
+
#: counter.php:2147
|
161 |
msgid "Statistics"
|
162 |
msgstr "Statistiques"
|
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 "Visiteurs Total"
|
172 |
|
173 |
#@ cpd
|
174 |
+
#: counter.php:530
|
175 |
+
#: counter.php:2230
|
176 |
msgid "Visitors currently online"
|
177 |
msgstr "Visiteur actuellement en ligne"
|
178 |
|
179 |
#@ cpd
|
180 |
+
#: counter.php:531
|
181 |
+
#: counter.php:2225
|
182 |
msgid "Visitors today"
|
183 |
msgstr "Visiteurs aujourd'hui"
|
184 |
|
185 |
#@ cpd
|
186 |
+
#: counter.php:532
|
187 |
+
#: counter.php:2226
|
188 |
msgid "Visitors yesterday"
|
189 |
msgstr "Visiteurs hier"
|
190 |
|
191 |
#@ cpd
|
192 |
+
#: counter.php:533
|
193 |
+
#: counter.php:2227
|
194 |
msgid "Visitors last week"
|
195 |
msgstr "Visiteurs la semaine dernière"
|
196 |
|
197 |
#@ cpd
|
198 |
+
#: counter.php:536
|
199 |
+
#: counter.php:2231
|
|
|
200 |
msgid "Counter starts on"
|
201 |
msgstr "Compteur activé le "
|
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 "Visiteurs par jour"
|
213 |
|
214 |
#@ cpd
|
215 |
+
#: counter.php:1752
|
216 |
+
#: counter.php:2228
|
217 |
msgid "Visitors per month"
|
218 |
msgstr "Visiteurs par mois"
|
219 |
|
220 |
#@ cpd
|
221 |
+
#: counter-options.php:236
|
222 |
+
#: counter.php:1754
|
223 |
msgid "Visitors per post"
|
224 |
msgstr "Visiteurs par articles"
|
225 |
|
226 |
#@ cpd
|
227 |
+
#: counter-options.php:117
|
228 |
msgid "Counter reseted."
|
229 |
msgstr "Compteur remis à zéro."
|
230 |
|
231 |
#@ cpd
|
232 |
+
#: counter-options.php:237
|
233 |
+
#: counter-options.php:241
|
234 |
msgid "How many posts do you want to see on dashboard page?"
|
235 |
msgstr "Combien d'articles souhaitez-vous voir sur la page tableau de bord?"
|
236 |
|
237 |
#@ cpd
|
238 |
+
#: counter-options.php:240
|
239 |
msgid "Latest Counts - Posts"
|
240 |
msgstr "Dernier Comptes - Articles"
|
241 |
|
242 |
#@ cpd
|
243 |
+
#: counter-options.php:244
|
244 |
msgid "Latest Counts - Days"
|
245 |
msgstr "Dernier Compte - Jours"
|
246 |
|
247 |
#@ cpd
|
248 |
+
#: counter-options.php:245
|
249 |
+
#: counter-options.php:249
|
250 |
+
#: counter-options.php:275
|
251 |
msgid "How many days do you want look back?"
|
252 |
msgstr "Combien de jours vous voulez regarder en arrière?"
|
253 |
|
254 |
#@ cpd
|
255 |
+
#: counter-options.php:290
|
256 |
msgid "Show in lists"
|
257 |
msgstr "Montrer dans la liste"
|
258 |
|
259 |
#@ cpd
|
260 |
+
#: counter-options.php:291
|
261 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
262 |
msgstr "Montrer \"Lectures par Article\" dans une nouvelle colonne dans la modification des articles."
|
263 |
|
264 |
#@ cpd
|
265 |
+
#: counter-options.php:463
|
266 |
+
#: counter-options.php:472
|
267 |
msgid "Reset the counter"
|
268 |
msgstr "Remise à zéro du compteur"
|
269 |
|
270 |
#@ cpd
|
271 |
+
#: counter-options.php:466
|
272 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
273 |
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!"
|
274 |
|
275 |
#@ cpd
|
276 |
+
#: counter.php:1257
|
277 |
#, php-format
|
278 |
msgid "The %s most visited posts in last %s days:"
|
279 |
msgstr "Les %s articles les plus visités dans les derniers %s jours:"
|
280 |
|
281 |
#@ default
|
282 |
+
#: counter.php:1591
|
|
|
|
|
283 |
msgid "Settings"
|
284 |
msgstr "Options"
|
285 |
|
286 |
#@ cpd
|
287 |
+
#: counter-options.php:225
|
288 |
+
#: counter.php:528
|
289 |
+
#: counter.php:1661
|
|
|
290 |
msgid "Reads"
|
291 |
msgstr "Lectures"
|
292 |
|
293 |
#@ cpd
|
294 |
+
#: counter.php:1755
|
295 |
msgid "Latest Counts"
|
296 |
msgstr "Dernier Comptes"
|
297 |
|
298 |
#@ cpd
|
299 |
+
#: counter-options.php:248
|
300 |
msgid "Chart - Days"
|
301 |
msgstr "Graphique - Jours"
|
302 |
|
303 |
#@ cpd
|
304 |
+
#: counter-options.php:252
|
305 |
msgid "Chart - Height"
|
306 |
msgstr "Graphique - Hauteur"
|
307 |
|
308 |
#@ cpd
|
309 |
+
#: counter-options.php:253
|
310 |
msgid "Height of the biggest bar"
|
311 |
msgstr "Hauteur de la plus grande barre"
|
312 |
|
313 |
#@ cpd
|
314 |
+
#: counter.php:845
|
315 |
+
msgid "no reads at this time"
|
316 |
+
msgstr "Aucune lectures pour le moment"
|
317 |
+
|
318 |
+
#@ cpd
|
319 |
+
#: counter.php:819
|
320 |
+
msgid "days"
|
321 |
+
msgstr "jours"
|
322 |
+
|
323 |
+
#@ cpd
|
324 |
+
#: counter.php:2218
|
325 |
msgid "This post"
|
326 |
msgstr "Cet article"
|
327 |
|
328 |
#@ default
|
329 |
+
#: counter-options.php:233
|
330 |
msgid "Dashboard"
|
331 |
msgstr "Tableau de bord"
|
332 |
|
333 |
#@ cpd
|
334 |
+
#: counter.php:635
|
335 |
+
#: counter.php:1766
|
336 |
msgid "Reads per day"
|
337 |
msgstr "Lectures par jour"
|
338 |
|
339 |
#@ cpd
|
340 |
+
#: counter-options.php:57
|
341 |
#, php-format
|
342 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
343 |
msgstr "Pays mis à jour. <b>%s</b> entrées dans %s sans pays manquant"
|
344 |
|
345 |
#@ cpd
|
346 |
+
#: counter-options.php:62
|
347 |
msgid "update next"
|
348 |
msgstr "mettre à jour le prochain"
|
349 |
|
350 |
#@ cpd
|
351 |
+
#: counter-options.php:340
|
352 |
msgid "GeoIP - Countries"
|
353 |
msgstr "GeoIP - Pays"
|
354 |
|
355 |
#@ cpd
|
356 |
+
#: counter-options.php:349
|
357 |
msgid "Update old counter data"
|
358 |
msgstr "Mettre à jour les données du vieux compteur"
|
359 |
|
360 |
#@ cpd
|
361 |
+
#: counter-options.php:362
|
362 |
msgid "Update GeoIP database"
|
363 |
msgstr "Mettre à jour les données de GeoIP"
|
364 |
|
365 |
#@ cpd
|
366 |
+
#: counter-options.php:365
|
367 |
msgid "Download a new version of GeoIP.dat file."
|
368 |
msgstr "Télécharger une nouvelle version du fichier GeoIP.dat."
|
369 |
|
370 |
#@ cpd
|
371 |
+
#: counter-options.php:371
|
372 |
msgid "More informations about GeoIP"
|
373 |
msgstr "Plus d'infos sur GeoIP"
|
374 |
|
375 |
#@ cpd
|
376 |
+
#: counter.php:1770
|
377 |
msgid "Reads per Country"
|
378 |
msgstr "Lectures par Pays"
|
379 |
|
380 |
#@ cpd
|
381 |
+
#: geoip/geoip.php:132
|
382 |
msgid "New GeoIP database installed."
|
383 |
msgstr "Nouvelle base de données de GeoIp installée."
|
384 |
|
385 |
#@ cpd
|
386 |
+
#: geoip/geoip.php:134
|
387 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
388 |
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."
|
389 |
|
390 |
#@ cpd
|
391 |
+
#: geoip/geoip.php:108
|
392 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
393 |
msgstr "Désolé, les fontions necéssaires (zlib) ne sont pas installés ou activés dans php.ini."
|
394 |
|
395 |
#@ cpd
|
396 |
+
#: counter-options.php:261
|
397 |
msgid "Countries"
|
398 |
msgstr "Pays"
|
399 |
|
400 |
#@ cpd
|
401 |
+
#: counter-options.php:262
|
402 |
msgid "How many countries do you want to see on dashboard page?"
|
403 |
msgstr "Combien de pays voulez-vous voir sur la page tableau de bord?"
|
404 |
|
405 |
#@ cpd
|
406 |
+
#: counter-options.php:104
|
407 |
#, php-format
|
408 |
msgid "Mass Bots cleaned. %s counts deleted."
|
409 |
msgstr "Robots nettoyés en masse. %s comptes supprimés."
|
410 |
|
411 |
#@ cpd
|
412 |
+
#: counter-options.php:386
|
413 |
+
#: massbots.php:33
|
414 |
msgid "Mass Bots"
|
415 |
msgstr "Robots en masse"
|
416 |
|
417 |
#@ cpd
|
418 |
+
#: counter-options.php:390
|
419 |
#, php-format
|
420 |
msgid "Show all IPs with more than %s page views per day"
|
421 |
msgstr "Afficher toutes les adresses IP avec plus de %s pages vues par jour"
|
422 |
|
423 |
#@ cpd
|
424 |
+
#: counter-options.php:391
|
425 |
+
#: notes.php:76
|
426 |
+
#: userperspan.php:43
|
427 |
msgid "show"
|
428 |
msgstr "montrer"
|
429 |
|
430 |
#@ cpd
|
431 |
+
#: counter-options.php:413
|
432 |
+
#: counter-options.php:435
|
433 |
#, php-format
|
434 |
msgid "Delete these %s counts"
|
435 |
msgstr "Supprimer ces %s comptes"
|
436 |
|
437 |
#@ cpd
|
438 |
+
#: counter.php:1421
|
439 |
msgid "Other"
|
440 |
msgstr "Autre"
|
441 |
|
442 |
#@ default
|
443 |
+
#: counter.php:1520
|
444 |
+
#: massbots.php:50
|
445 |
#: userperspan.php:63
|
446 |
msgid "Front page displays"
|
447 |
msgstr "Page d'accueil affiche"
|
448 |
|
449 |
#@ cpd
|
450 |
+
#: counter-options.php:266
|
451 |
+
#: counter.php:1760
|
452 |
msgid "Browsers"
|
453 |
msgstr "Navigateurs"
|
454 |
|
455 |
#@ cpd
|
456 |
+
#: counter-options.php:399
|
457 |
msgid "IP"
|
458 |
msgstr "IP"
|
459 |
|
460 |
#@ cpd
|
461 |
#@ default
|
462 |
+
#: counter-options.php:400
|
463 |
+
#: notes.php:80
|
464 |
msgid "Date"
|
465 |
msgstr "Date"
|
466 |
|
467 |
#@ cpd
|
468 |
+
#: counter-options.php:401
|
469 |
msgid "Client"
|
470 |
msgstr "Client"
|
471 |
|
472 |
#@ cpd
|
473 |
+
#: counter-options.php:402
|
474 |
msgid "Views"
|
475 |
msgstr "Vues"
|
476 |
|
477 |
#@ cpd
|
478 |
+
#: counter-options.php:299
|
479 |
msgid "Start Values"
|
480 |
msgstr "Valeurs de départ"
|
481 |
|
482 |
#@ cpd
|
483 |
+
#: counter-options.php:303
|
484 |
msgid "Here you can change the date of first count and add a start count."
|
485 |
msgstr "Ici vous pouvez changer la date du premier compte et d'ajouter une date de départ."
|
486 |
|
487 |
#@ cpd
|
488 |
+
#: counter-options.php:307
|
489 |
msgid "Start date"
|
490 |
msgstr "Date de départ"
|
491 |
|
492 |
#@ cpd
|
493 |
+
#: counter-options.php:308
|
494 |
msgid "Your old Counter starts at?"
|
495 |
msgstr "Votre vieux compteur commence à?"
|
496 |
|
497 |
#@ cpd
|
498 |
+
#: counter-options.php:311
|
499 |
+
#: counter-options.php:315
|
500 |
msgid "Start count"
|
501 |
msgstr "Commencer le compte"
|
502 |
|
503 |
#@ cpd
|
504 |
+
#: counter-options.php:312
|
505 |
msgid "Add this value to \"Total visitors\"."
|
506 |
msgstr "Ajouter cette valeur à \"visiteurs totals\"."
|
507 |
|
508 |
#@ cpd
|
509 |
+
#: counter-options.php:504
|
510 |
msgid "Support"
|
511 |
msgstr "Support"
|
512 |
|
513 |
#@ cpd
|
514 |
+
#: counter.php:1717
|
515 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
516 |
msgstr "Bug? Problème? Question? Allusion? Hommage?"
|
517 |
|
518 |
#@ cpd
|
519 |
+
#: counter.php:1718
|
520 |
#, php-format
|
521 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
522 |
msgstr "Poster un commentaire sur <a href=\"%s\">la page du plugin</a>. (En Anglais)"
|
523 |
|
524 |
#@ default
|
525 |
+
#: counter.php:1374
|
526 |
msgid "Show"
|
527 |
msgstr "Montrer"
|
528 |
|
529 |
#@ default
|
530 |
+
#: counter.php:1505
|
531 |
msgid "Edit Post"
|
532 |
msgstr "Editer"
|
533 |
|
534 |
#@ cpd
|
535 |
+
#: counter.php:1716
|
536 |
#, php-format
|
537 |
msgid "Time for Count per Day: <code>%s</code>."
|
538 |
msgstr "Temps pour Count Per Day: <code>%s</code>."
|
539 |
|
540 |
#@ cpd
|
541 |
+
#: counter-options.php:197
|
542 |
msgid "until User Level"
|
543 |
msgstr "jusqu'au niveau de l'utilisateur"
|
544 |
|
545 |
#@ default
|
546 |
+
#: counter.php:1757
|
547 |
msgid "Plugin"
|
548 |
msgstr "Plugin"
|
549 |
|
550 |
#@ cpd
|
551 |
+
#: counter.php:822
|
552 |
+
#: counter.php:1376
|
553 |
+
#: notes.php:47
|
554 |
+
#: notes.php:81
|
555 |
msgid "Notes"
|
556 |
msgstr "Notes"
|
557 |
|
558 |
#@ default
|
559 |
+
#: notes.php:82
|
560 |
msgid "Action"
|
561 |
msgstr "Action"
|
562 |
|
563 |
#@ cpd
|
564 |
+
#: notes.php:87
|
565 |
msgid "add"
|
566 |
msgstr "ajouter"
|
567 |
|
568 |
#@ cpd
|
569 |
+
#: notes.php:102
|
570 |
msgid "save"
|
571 |
msgstr "sauvegarder"
|
572 |
|
573 |
#@ cpd
|
574 |
+
#: notes.php:103
|
575 |
msgid "delete"
|
576 |
msgstr "supprimer"
|
577 |
|
578 |
#@ cpd
|
579 |
+
#: notes.php:114
|
580 |
msgid "edit"
|
581 |
msgstr "éditer"
|
582 |
|
583 |
#@ cpd
|
584 |
+
#: notes.php:81
|
585 |
+
msgid "(1 per day)"
|
586 |
+
msgstr "(1 par jour)"
|
587 |
+
|
588 |
+
#@ cpd
|
589 |
+
#: counter-options.php:316
|
590 |
msgid "Add this value to \"Total reads\"."
|
591 |
msgstr "Ajouter cette valeur à \"Lectures totales\"."
|
592 |
|
593 |
#@ cpd
|
594 |
+
#: counter.php:524
|
595 |
+
#: counter.php:2219
|
596 |
msgid "Total reads"
|
597 |
msgstr "Lectures totales"
|
598 |
|
599 |
#@ cpd
|
600 |
+
#: counter.php:525
|
601 |
+
#: counter.php:2220
|
602 |
msgid "Reads today"
|
603 |
msgstr "Lectures aujourd'hui"
|
604 |
|
605 |
#@ cpd
|
606 |
+
#: counter.php:526
|
607 |
+
#: counter.php:2221
|
608 |
msgid "Reads yesterday"
|
609 |
msgstr "Lectures hier"
|
610 |
|
611 |
#@ cpd
|
612 |
+
#: counter-options.php:216
|
613 |
msgid "Anonymous IP"
|
614 |
msgstr "Adresse IP Anonyme"
|
615 |
|
616 |
#@ cpd
|
617 |
+
#: counter-options.php:220
|
618 |
msgid "Cache"
|
619 |
msgstr "Cache"
|
620 |
|
621 |
#@ cpd
|
622 |
+
#: counter-options.php:221
|
623 |
msgid "I use a cache plugin. Count these visits with ajax."
|
624 |
msgstr "J'utilise un plugin de cache. Comptez ces visites avec ajax."
|
625 |
|
626 |
#@ cpd
|
627 |
+
#: counter-options.php:267
|
628 |
msgid "Substring of the user agent, separated by comma"
|
629 |
msgstr "Sous-Chaine des \"user agent\", séparé par des virgules"
|
630 |
|
631 |
#@ cpd
|
632 |
+
#: counter-options.php:324
|
633 |
msgid "Debug mode"
|
634 |
msgstr "Mode Debug"
|
635 |
|
636 |
#@ cpd
|
637 |
+
#: counter-options.php:326
|
638 |
msgid "Show debug informations at the bottom of all pages."
|
639 |
msgstr "Afficher les informations de débogage au bas de toutes les pages."
|
640 |
|
641 |
#@ cpd
|
642 |
+
#: counter.php:1771
|
643 |
msgid "Visitors per Country"
|
644 |
msgstr "Visiteurs par Pays"
|
645 |
|
646 |
#@ cpd
|
647 |
+
#: counter.php:900
|
648 |
+
#: counter.php:1856
|
649 |
msgid "Map"
|
650 |
msgstr "Carte"
|
651 |
|
652 |
#@ cpd
|
653 |
+
#: userperspan.php:37
|
654 |
msgid "Start"
|
655 |
msgstr "Début"
|
656 |
|
657 |
#@ cpd
|
658 |
+
#: userperspan.php:39
|
659 |
msgid "End"
|
660 |
msgstr "Fin"
|
661 |
|
662 |
#@ cpd
|
663 |
+
#: userperspan.php:41
|
664 |
msgid "PostID"
|
665 |
msgstr "PostID"
|
666 |
|
667 |
#@ cpd
|
668 |
+
#: userperspan.php:49
|
669 |
msgid "no data found"
|
670 |
msgstr "aucune donnée trouvée"
|
671 |
|
672 |
#@ cpd
|
673 |
+
#: counter-options.php:352
|
674 |
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!"
|
675 |
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!"
|
676 |
|
677 |
#@ cpd
|
678 |
+
#: counter-options.php:186
|
679 |
msgid "Counter"
|
680 |
msgstr "Compteur"
|
681 |
|
682 |
#@ cpd
|
683 |
+
#: counter-options.php:224
|
684 |
msgid "Clients and referrers"
|
685 |
msgstr "Clients et Référents"
|
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 "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."
|
691 |
|
692 |
#@ cpd
|
693 |
+
#: counter-options.php:278
|
694 |
msgid "Local URLs"
|
695 |
msgstr "Liens Locals"
|
696 |
|
697 |
#@ cpd
|
698 |
+
#: counter-options.php:279
|
699 |
msgid "Show local referrers too."
|
700 |
msgstr "Montrer les référents locals également."
|
701 |
|
702 |
#@ default
|
703 |
+
#: counter-options.php:287
|
704 |
msgid "Posts"
|
705 |
msgstr "Articles"
|
706 |
|
707 |
#@ default
|
708 |
+
#: counter-options.php:287
|
709 |
msgid "Pages"
|
710 |
msgstr "Pages"
|
711 |
|
712 |
#@ cpd
|
713 |
+
#: counter.php:527
|
714 |
+
#: counter.php:2222
|
715 |
msgid "Reads last week"
|
716 |
msgstr "Lectures - Semaine Dernière"
|
717 |
|
718 |
#@ default
|
719 |
+
#: counter.php:1514
|
720 |
msgid "Category"
|
721 |
msgstr "Catégorie"
|
722 |
|
723 |
#@ default
|
724 |
+
#: counter.php:1517
|
725 |
msgid "Tag"
|
726 |
msgstr "Tag"
|
727 |
|
728 |
#@ default
|
729 |
+
#: counter.php:1719
|
730 |
msgid "License"
|
731 |
msgstr "License"
|
732 |
|
733 |
#@ cpd
|
734 |
+
#: counter.php:1753
|
735 |
+
#: counter.php:2223
|
736 |
msgid "Reads per month"
|
737 |
msgstr "Lectures par mois"
|
738 |
|
739 |
#@ cpd
|
740 |
+
#: counter.php:1761
|
741 |
msgid "Referrer"
|
742 |
msgstr "Référent"
|
743 |
|
744 |
#@ default
|
745 |
+
#: counter.php:2242
|
746 |
msgid "Title"
|
747 |
msgstr "Titre"
|
748 |
|
749 |
#@ cpd
|
750 |
+
#: counter-options.php:256
|
751 |
+
msgid "Old Charts"
|
752 |
+
msgstr "Anciennes Charts"
|
753 |
+
|
754 |
+
#@ cpd
|
755 |
+
#: counter-options.php:257
|
756 |
+
msgid "Show old bar charts."
|
757 |
+
msgstr "Afficher l'ancienne barre cartes"
|
758 |
+
|
759 |
+
#@ cpd
|
760 |
+
#: counter-options.php:270
|
761 |
msgid "Referrers - Entries"
|
762 |
msgstr "Référents - Entrées"
|
763 |
|
764 |
#@ cpd
|
765 |
+
#: counter-options.php:271
|
766 |
msgid "How many referrers do you want to see on dashboard page?"
|
767 |
msgstr "Combien de référents voulez-vous voir sur la page d'accueil?"
|
768 |
|
769 |
#@ cpd
|
770 |
+
#: counter-options.php:274
|
771 |
msgid "Referrers - Days"
|
772 |
msgstr "Référents - Jours"
|
773 |
|
774 |
#@ cpd
|
775 |
+
#: counter.php:1449
|
776 |
#, php-format
|
777 |
msgid "The %s referrers in last %s days:"
|
778 |
msgstr "Les %s référents des %s derniers jours:"
|
779 |
|
780 |
#@ cpd
|
781 |
+
#: counter.php:1751
|
782 |
msgid "Visitors online"
|
783 |
msgstr "Visiteurs en ligne"
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-it_IT.mo
CHANGED
Binary file
|
locale/cpd-it_IT.po
CHANGED
@@ -13,960 +13,772 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Italian\n"
|
14 |
"X-Poedit-Country: ITALY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
"X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
18 |
-
"X-
|
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 "Le opzioni sono state aggiornate"
|
26 |
|
27 |
-
#: counter-options.php:112
|
28 |
-
#, php-format
|
29 |
#@ cpd
|
|
|
|
|
30 |
msgid "Database cleaned. %s rows deleted."
|
31 |
msgstr "Database svuotato. %s record cancellato."
|
32 |
|
33 |
-
#: counter-options.php:127
|
34 |
-
#: counter-options.php:810
|
35 |
#@ cpd
|
|
|
|
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "DISINSTALLA 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 tabella %s é stata cancellata"
|
46 |
|
47 |
-
#: counter-options.php:135
|
48 |
#@ cpd
|
|
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Le opzioni sono state cancellate"
|
51 |
|
52 |
-
#: counter-options.php:316
|
53 |
-
#: counter-options.php:796
|
54 |
#@ cpd
|
|
|
|
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Disinstalla"
|
57 |
|
58 |
-
#: counter-options.php:317
|
59 |
#@ cpd
|
|
|
60 |
msgid "Click here"
|
61 |
msgstr "Clicca qui"
|
62 |
|
63 |
-
#: counter-options.php:317
|
64 |
#@ cpd
|
|
|
65 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
msgstr "per completare la disinstallazione e disattivare \"Count per Day\"."
|
67 |
|
68 |
-
#: counter-options.php:355
|
69 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid "Online time"
|
71 |
msgstr "Durata del collegamento"
|
72 |
|
73 |
-
#: counter-options.php:356
|
74 |
#@ cpd
|
|
|
75 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
|
77 |
|
78 |
-
#: counter-options.php:359
|
79 |
#@ cpd
|
|
|
80 |
msgid "Logged on Users"
|
81 |
msgstr "Utenti accreditati"
|
82 |
|
83 |
-
#: counter-options.php:361
|
84 |
#@ cpd
|
|
|
85 |
msgid "count too"
|
86 |
msgstr "conteggia anche loro"
|
87 |
|
88 |
-
#: counter-options.php:373
|
89 |
#@ cpd
|
|
|
90 |
msgid "Auto counter"
|
91 |
msgstr "Contatore-automatico"
|
92 |
|
93 |
-
#: counter-options.php:374
|
94 |
#@ cpd
|
|
|
95 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
|
97 |
|
98 |
-
#: counter-options.php:377
|
99 |
#@ cpd
|
|
|
100 |
msgid "Bots to ignore"
|
101 |
msgstr "Bots da ignorare"
|
102 |
|
103 |
-
#: counter-options.php:561
|
104 |
#@ cpd
|
|
|
105 |
msgid "Update options"
|
106 |
msgstr "Aggiorna le opzioni"
|
107 |
|
108 |
-
#: counter-options.php:656
|
109 |
-
#: counter-options.php:665
|
110 |
#@ cpd
|
|
|
|
|
111 |
msgid "Clean the database"
|
112 |
msgstr "Svuota il database"
|
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 "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."
|
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 disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
|
123 |
|
124 |
-
#: counter-options.php:800
|
125 |
#@ cpd
|
|
|
126 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
|
128 |
|
129 |
-
#: counter-options.php:803
|
130 |
#@ cpd
|
|
|
131 |
msgid "WARNING"
|
132 |
msgstr "ATTENZIONE"
|
133 |
|
134 |
-
#: counter-options.php:804
|
135 |
#@ cpd
|
|
|
136 |
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
|
138 |
|
139 |
-
#: counter-options.php:806
|
140 |
#@ cpd
|
|
|
141 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 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 "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
|
154 |
|
155 |
-
#: counter-core.php:754
|
156 |
-
#: counter.php:1124
|
157 |
#@ cpd
|
|
|
|
|
158 |
msgid "Statistics"
|
159 |
msgstr "Satistiche"
|
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 "Totale visitatori"
|
168 |
|
169 |
-
#: counter.php:161
|
170 |
-
#: counter.php:1208
|
171 |
#@ cpd
|
|
|
|
|
172 |
msgid "Visitors currently online"
|
173 |
msgstr "Utenti attualmente in linea"
|
174 |
|
175 |
-
#: counter.php:162
|
176 |
-
#: counter.php:1203
|
177 |
#@ cpd
|
|
|
|
|
178 |
msgid "Visitors today"
|
179 |
msgstr "Oggi"
|
180 |
|
181 |
-
#: counter.php:163
|
182 |
-
#: counter.php:1204
|
183 |
#@ cpd
|
|
|
|
|
184 |
msgid "Visitors yesterday"
|
185 |
msgstr "Ieri"
|
186 |
|
187 |
-
#: counter.php:164
|
188 |
-
#: counter.php:1205
|
189 |
#@ cpd
|
|
|
|
|
190 |
msgid "Visitors last week"
|
191 |
msgstr "La scorsa settimana"
|
192 |
|
193 |
-
#: counter.php:167
|
194 |
-
#: counter.php:825
|
195 |
-
#: counter.php:1209
|
196 |
#@ cpd
|
|
|
|
|
197 |
msgid "Counter starts on"
|
198 |
msgstr "Il contatore parte dal"
|
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 "Visitatori per giorno"
|
209 |
|
210 |
-
#: counter-core.php:725
|
211 |
-
#: counter.php:1206
|
212 |
#@ cpd
|
|
|
|
|
213 |
msgid "Visitors per month"
|
214 |
msgstr "Visitatori per mese"
|
215 |
|
216 |
-
#: counter-core.php:727
|
217 |
-
#: counter-options.php:438
|
218 |
#@ cpd
|
|
|
|
|
219 |
msgid "Visitors per post"
|
220 |
msgstr "Visitatori per articolo"
|
221 |
|
222 |
-
#: counter-options.php:122
|
223 |
#@ cpd
|
|
|
224 |
msgid "Counter reseted."
|
225 |
msgstr "Il contatore é stato azzerato."
|
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 "Quanti articoli desideri siano visibili nella bacheca?"
|
232 |
|
233 |
-
#: counter-options.php:442
|
234 |
#@ cpd
|
|
|
235 |
msgid "Latest Counts - Posts"
|
236 |
msgstr "Totale corrente - Articoli"
|
237 |
|
238 |
-
#: counter-options.php:446
|
239 |
#@ cpd
|
|
|
240 |
msgid "Latest Counts - Days"
|
241 |
msgstr "Totale corrente - pagine"
|
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 "Quanti giorni desideri visionare a ritroso?"
|
249 |
|
250 |
-
#: counter-options.php:488
|
251 |
#@ cpd
|
|
|
252 |
msgid "Show in lists"
|
253 |
msgstr "Mostra nelle liste"
|
254 |
|
255 |
-
#: counter-options.php:489
|
256 |
#@ cpd
|
|
|
257 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
258 |
msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
|
259 |
|
260 |
-
#: counter-options.php:777
|
261 |
-
#: counter-options.php:787
|
262 |
#@ cpd
|
|
|
|
|
263 |
msgid "Reset the counter"
|
264 |
msgstr "Azzera il contatore"
|
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 "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
|
270 |
|
271 |
-
#: counter.php:672
|
272 |
-
#, php-format
|
273 |
#@ cpd
|
|
|
|
|
274 |
msgid "The %s most visited posts in last %s days:"
|
275 |
msgstr "I %s articoli più letti negli ultimi %s giorni:"
|
276 |
|
277 |
-
#: counter-core.php:575
|
278 |
-
#: counter-options.php:341
|
279 |
-
#: counter-options.php:565
|
280 |
#@ default
|
|
|
281 |
msgid "Settings"
|
282 |
msgstr "Impostazioni"
|
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 "Visitatori"
|
291 |
|
292 |
-
#: counter-core.php:728
|
293 |
#@ cpd
|
|
|
294 |
msgid "Latest Counts"
|
295 |
msgstr "Totale corrente"
|
296 |
|
297 |
-
#: counter-options.php:450
|
298 |
#@ cpd
|
|
|
299 |
msgid "Chart - Days"
|
300 |
msgstr "Diagramma - Giorni"
|
301 |
|
302 |
-
#: counter-options.php:454
|
303 |
#@ cpd
|
|
|
304 |
msgid "Chart - Height"
|
305 |
msgstr "Diagramma - Altezza"
|
306 |
|
307 |
-
#: counter-options.php:455
|
308 |
#@ cpd
|
|
|
309 |
msgid "Height of the biggest bar"
|
310 |
msgstr "Altezza della categoria maggiore"
|
311 |
|
312 |
-
#: counter.php:1196
|
313 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
msgid "This post"
|
315 |
msgstr "Questo articolo"
|
316 |
|
317 |
-
#: counter-options.php:403
|
318 |
#@ default
|
|
|
319 |
msgid "Dashboard"
|
320 |
msgstr "Bacheca"
|
321 |
|
322 |
-
#: counter.php:262
|
323 |
#@ cpd
|
|
|
|
|
324 |
msgid "Reads per day"
|
325 |
msgstr "Letture per giorno"
|
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 "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
|
332 |
|
333 |
-
#: counter-options.php:65
|
334 |
#@ cpd
|
|
|
335 |
msgid "update next"
|
336 |
msgstr "aggiorna il prossimo"
|
337 |
|
338 |
-
#: counter-options.php:727
|
339 |
#@ cpd
|
|
|
340 |
msgid "GeoIP - Countries"
|
341 |
msgstr "GeoIP - Stati"
|
342 |
|
343 |
-
#: counter-options.php:736
|
344 |
#@ cpd
|
|
|
345 |
msgid "Update old counter data"
|
346 |
msgstr "Aggiorna i vecchi dati per gli stati"
|
347 |
|
348 |
-
#: counter-options.php:748
|
349 |
#@ cpd
|
|
|
350 |
msgid "Update GeoIP database"
|
351 |
msgstr "Aggiorna database GeoIP"
|
352 |
|
353 |
-
#: counter-options.php:743
|
354 |
#@ cpd
|
|
|
355 |
msgid "Download a new version of GeoIP.dat file."
|
356 |
msgstr "Scarica la nuova versione del file GeoIP.dat."
|
357 |
|
358 |
-
#: counter-options.php:753
|
359 |
#@ cpd
|
|
|
360 |
msgid "More informations about GeoIP"
|
361 |
msgstr "Informazioni su GeoIP"
|
362 |
|
363 |
-
#: counter-core.php:738
|
364 |
#@ cpd
|
|
|
365 |
msgid "Reads per Country"
|
366 |
msgstr "Letture per stato"
|
367 |
|
368 |
-
#: geoip/geoip.php:117
|
369 |
#@ cpd
|
|
|
370 |
msgid "New GeoIP database installed."
|
371 |
msgstr "Il nuovo database GeoIP é stato installato."
|
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 "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
|
377 |
|
378 |
-
#: geoip/geoip.php:93
|
379 |
#@ cpd
|
|
|
380 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
381 |
msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
|
382 |
|
383 |
-
#: counter-options.php:459
|
384 |
#@ cpd
|
|
|
385 |
msgid "Countries"
|
386 |
msgstr "Stati"
|
387 |
|
388 |
-
#: counter-options.php:460
|
389 |
#@ cpd
|
|
|
390 |
msgid "How many countries do you want to see on dashboard page?"
|
391 |
msgstr "Quanti stati desideri siano visibili nella bacheca?"
|
392 |
|
393 |
-
#: counter-options.php:102
|
394 |
-
#, php-format
|
395 |
#@ cpd
|
|
|
|
|
396 |
msgid "Mass Bots cleaned. %s counts deleted."
|
397 |
msgstr "Mass Bots svuotato. %s totali cancellati."
|
398 |
|
399 |
-
#: counter-options.php:580
|
400 |
-
#: massbots.php:35
|
401 |
#@ cpd
|
|
|
|
|
402 |
msgid "Mass Bots"
|
403 |
msgstr "Mass Bots"
|
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 "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
|
410 |
|
411 |
-
#: counter-options.php:585
|
412 |
-
#: notes.php:71
|
413 |
-
#: userperspan.php:44
|
414 |
#@ cpd
|
|
|
|
|
|
|
415 |
msgid "show"
|
416 |
msgstr "mostra"
|
417 |
|
418 |
-
#: counter-options.php:611
|
419 |
-
#: counter-options.php:627
|
420 |
-
#, php-format
|
421 |
#@ cpd
|
|
|
|
|
|
|
422 |
msgid "Delete these %s counts"
|
423 |
msgstr "Cancella questi %s totali"
|
424 |
|
425 |
-
#: counter.php:821
|
426 |
#@ cpd
|
|
|
427 |
msgid "Other"
|
428 |
msgstr "Altro"
|
429 |
|
430 |
-
#: counter.php:991
|
431 |
-
#: massbots.php:52
|
432 |
-
#: userperspan.php:63
|
433 |
#@ default
|
|
|
|
|
|
|
434 |
msgid "Front page displays"
|
435 |
msgstr "Mostra nella front page"
|
436 |
|
437 |
-
#: counter-core.php:733
|
438 |
-
#: counter-options.php:464
|
439 |
#@ cpd
|
|
|
|
|
440 |
msgid "Browsers"
|
441 |
msgstr "Browser"
|
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 "Data"
|
454 |
|
455 |
-
#: counter-options.php:595
|
456 |
#@ cpd
|
|
|
457 |
msgid "Client"
|
458 |
msgstr "Client"
|
459 |
|
460 |
-
#: counter-options.php:596
|
461 |
#@ cpd
|
|
|
462 |
msgid "Views"
|
463 |
msgstr "Visualizzazioni"
|
464 |
|
465 |
-
#: counter-options.php:497
|
466 |
#@ cpd
|
|
|
467 |
msgid "Start Values"
|
468 |
msgstr "Valori di partenza"
|
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 "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
|
474 |
|
475 |
-
#: counter-options.php:505
|
476 |
#@ cpd
|
|
|
477 |
msgid "Start date"
|
478 |
msgstr "Data di inizio"
|
479 |
|
480 |
-
#: counter-options.php:506
|
481 |
#@ cpd
|
|
|
482 |
msgid "Your old Counter starts at?"
|
483 |
msgstr "Il vecchio contatore parte da?"
|
484 |
|
485 |
-
#: counter-options.php:509
|
486 |
-
#: counter-options.php:513
|
487 |
#@ cpd
|
|
|
|
|
488 |
msgid "Start count"
|
489 |
msgstr "Avvia conteggio"
|
490 |
|
491 |
-
#: counter-options.php:510
|
492 |
#@ cpd
|
|
|
493 |
msgid "Add this value to \"Total visitors\"."
|
494 |
msgstr "Aggiungi questo valore a \"Totale visitatori\"."
|
495 |
|
496 |
-
#: counter-options.php:714
|
497 |
#@ cpd
|
|
|
498 |
msgid "Support"
|
499 |
msgstr "Supporto"
|
500 |
|
501 |
-
#: counter-core.php:690
|
502 |
#@ cpd
|
|
|
503 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
504 |
msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
|
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 "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
|
511 |
|
512 |
-
#: counter.php:786
|
513 |
#@ default
|
|
|
514 |
msgid "Show"
|
515 |
msgstr "Mostra"
|
516 |
|
517 |
-
#: counter.php:976
|
518 |
#@ default
|
|
|
519 |
msgid "Edit Post"
|
520 |
msgstr "modifica articolo"
|
521 |
|
522 |
-
#: counter-core.php:689
|
523 |
-
#, php-format
|
524 |
#@ cpd
|
|
|
|
|
525 |
msgid "Time for Count per Day: <code>%s</code>."
|
526 |
msgstr "Fuso orario Count per Day: <code>%s</code>."
|
527 |
|
528 |
-
#: counter-options.php:362
|
529 |
#@ cpd
|
|
|
530 |
msgid "until User Level"
|
531 |
msgstr "sino a livello utente"
|
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 "Note"
|
544 |
|
545 |
-
#: notes.php:77
|
546 |
#@ default
|
|
|
547 |
msgid "Action"
|
548 |
msgstr "Azione"
|
549 |
|
550 |
-
#: notes.php:82
|
551 |
#@ cpd
|
|
|
552 |
msgid "add"
|
553 |
msgstr "aggiungi"
|
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 "cancella"
|
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 "Aggiungi questo valore a \"Totale letture\"."
|
574 |
|
575 |
-
#: counter.php:155
|
576 |
-
#: counter.php:1197
|
577 |
#@ cpd
|
|
|
|
|
578 |
msgid "Total reads"
|
579 |
msgstr "Totale letture"
|
580 |
|
581 |
-
#: counter.php:156
|
582 |
-
#: counter.php:1198
|
583 |
#@ cpd
|
|
|
|
|
584 |
msgid "Reads today"
|
585 |
msgstr "Letture odierne"
|
586 |
|
587 |
-
#: counter.php:157
|
588 |
-
#: counter.php:1199
|
589 |
#@ cpd
|
|
|
|
|
590 |
msgid "Reads yesterday"
|
591 |
msgstr "Letture di ieri"
|
592 |
|
593 |
-
#: counter.php:353
|
594 |
-
#: counter.php:1041
|
595 |
#@ cpd
|
|
|
|
|
596 |
msgid "Map"
|
597 |
msgstr "Mappa"
|
598 |
|
599 |
-
#: counter-options.php:381
|
600 |
#@ cpd
|
|
|
601 |
msgid "Anonymous IP"
|
602 |
msgstr "IP anonimo"
|
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 per la cache. Conteggia le visite via ajax."
|
613 |
|
614 |
-
#: counter-options.php:465
|
615 |
#@ cpd
|
|
|
616 |
msgid "Substring of the user agent, separated by comma"
|
617 |
msgstr "Sub-stringa user agent, separa con una virgola"
|
618 |
|
619 |
-
#: counter-core.php:739
|
620 |
#@ cpd
|
|
|
621 |
msgid "Visitors per Country"
|
622 |
msgstr "Visitatori per paese"
|
623 |
|
624 |
-
#: counter-options.php:554
|
625 |
#@ cpd
|
|
|
626 |
msgid "Debug mode"
|
627 |
msgstr "Modalità debug"
|
628 |
|
629 |
-
#: counter-options.php:556
|
630 |
#@ cpd
|
|
|
631 |
msgid "Show debug informations at the bottom of all pages."
|
632 |
msgstr "Mostra info debug al fondo di tutte le pagine."
|
633 |
|
634 |
-
#: userperspan.php:38
|
635 |
#@ cpd
|
|
|
636 |
msgid "Start"
|
637 |
msgstr "Inizio"
|
638 |
|
639 |
-
#: userperspan.php:40
|
640 |
#@ cpd
|
|
|
641 |
msgid "End"
|
642 |
msgstr "Termine"
|
643 |
|
644 |
-
#: userperspan.php:42
|
645 |
#@ cpd
|
|
|
646 |
msgid "PostID"
|
647 |
msgstr "ID articolo"
|
648 |
|
649 |
-
#: userperspan.php:50
|
650 |
#@ cpd
|
|
|
651 |
msgid "no data found"
|
652 |
msgstr "nessun dato trovato"
|
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 "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
|
658 |
|
659 |
-
#: counter-options.php:351
|
660 |
#@ cpd
|
|
|
661 |
msgid "Counter"
|
662 |
msgstr "Contatore"
|
663 |
|
664 |
-
#: counter-options.php:476
|
665 |
#@ cpd
|
|
|
666 |
msgid "Local URLs"
|
667 |
msgstr "URL locali"
|
668 |
|
669 |
-
#: counter-options.php:477
|
670 |
#@ cpd
|
|
|
671 |
msgid "Show local referrers too."
|
672 |
msgstr "Mostra anche i referenti locali."
|
673 |
|
674 |
-
#: counter-options.php:485
|
675 |
#@ default
|
|
|
676 |
msgid "Posts"
|
677 |
msgstr "Articoli"
|
678 |
|
679 |
-
#: counter-options.php:485
|
680 |
#@ default
|
|
|
681 |
msgid "Pages"
|
682 |
msgstr "Pagine"
|
683 |
|
684 |
-
#: counter.php:985
|
685 |
#@ default
|
|
|
686 |
msgid "Category"
|
687 |
msgstr "Categoria"
|
688 |
|
689 |
-
#: counter.php:988
|
690 |
#@ default
|
|
|
691 |
msgid "Tag"
|
692 |
msgstr "Tag"
|
693 |
|
694 |
-
#: counter-core.php:692
|
695 |
#@ default
|
|
|
696 |
msgid "License"
|
697 |
msgstr "Licenza"
|
698 |
|
699 |
-
#: counter-core.php:734
|
700 |
#@ cpd
|
|
|
701 |
msgid "Referrer"
|
702 |
msgstr "Referente"
|
703 |
|
704 |
-
#: counter.php:1220
|
705 |
#@ default
|
|
|
706 |
msgid "Title"
|
707 |
msgstr "Titolo"
|
708 |
|
709 |
-
#: counter-options.php:392
|
710 |
#@ cpd
|
|
|
711 |
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
712 |
msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
|
713 |
|
714 |
-
#: counter-options.php:389
|
715 |
#@ cpd
|
|
|
716 |
msgid "Clients and referrers"
|
717 |
msgstr "Client e referenti"
|
718 |
|
719 |
-
#: counter.php:158
|
720 |
-
#: counter.php:1200
|
721 |
#@ cpd
|
|
|
|
|
722 |
msgid "Reads last week"
|
723 |
msgstr "Letture scorsa settimana"
|
724 |
|
725 |
-
#: counter-core.php:726
|
726 |
-
#: counter.php:1201
|
727 |
#@ cpd
|
|
|
|
|
728 |
msgid "Reads per month"
|
729 |
msgstr "Letture scorso mese"
|
730 |
|
731 |
-
#: counter-options.php:468
|
732 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
msgid "Referrers - Entries"
|
734 |
msgstr "Referenti - Pubblicazioni"
|
735 |
|
736 |
-
#: counter-options.php:469
|
737 |
#@ cpd
|
|
|
738 |
msgid "How many referrers do you want to see on dashboard page?"
|
739 |
msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
|
740 |
|
741 |
-
#: counter-options.php:472
|
742 |
#@ cpd
|
|
|
743 |
msgid "Referrers - Days"
|
744 |
msgstr "Referenti - Giorni"
|
745 |
|
746 |
-
#: counter.php:845
|
747 |
-
#, php-format
|
748 |
#@ cpd
|
|
|
|
|
749 |
msgid "The %s referrers in last %s days:"
|
750 |
msgstr "I %s referenti degli ultimi %s giorni:"
|
751 |
|
752 |
-
#: counter-core.php:724
|
753 |
#@ cpd
|
|
|
754 |
msgid "Visitors online"
|
755 |
msgstr "Visitatori online"
|
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 > size after = %s)."
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: counter-options.php:294
|
813 |
-
#@ cpd
|
814 |
-
msgid "Installation of \"Count per Day\" checked"
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: counter-options.php:342
|
818 |
-
#: counter-options.php:566
|
819 |
-
#@ default
|
820 |
-
msgid "Tools"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: counter-options.php:394
|
824 |
-
#@ cpd
|
825 |
-
msgid "Save URL only, no query string."
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: counter-options.php:419
|
829 |
-
#@ cpd
|
830 |
-
msgid "Who can see it"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: counter-options.php:428
|
834 |
-
#@ cpd
|
835 |
-
msgid "custom"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: counter-options.php:430
|
839 |
-
#@ cpd
|
840 |
-
msgid "and higher are allowed to see the statistics page."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: counter-options.php:432
|
844 |
-
#, php-format
|
845 |
-
#@ cpd
|
846 |
-
msgid "Set the %s capability %s a user need:"
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: counter-options.php:522
|
850 |
-
#@ cpd
|
851 |
-
msgid "Stylesheet"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: counter-options.php:525
|
855 |
-
#@ cpd
|
856 |
-
msgid "NO Stylesheet in Frontend"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: counter-options.php:526
|
860 |
-
#@ cpd
|
861 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:639
|
866 |
-
#@ cpd
|
867 |
-
msgid "Backup"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: counter-options.php:537
|
871 |
-
#@ cpd
|
872 |
-
msgid "Entries per pass"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: counter-options.php:540
|
876 |
-
#@ cpd
|
877 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: counter-options.php:545
|
881 |
-
#@ cpd
|
882 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: counter-options.php:643
|
886 |
-
#, php-format
|
887 |
-
#@ cpd
|
888 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: counter-options.php:647
|
892 |
-
#@ cpd
|
893 |
-
msgid "Backup the database"
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: counter-options.php:674
|
897 |
-
#: counter-options.php:706
|
898 |
-
#@ cpd
|
899 |
-
msgid "Collect old data"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: counter-options.php:679
|
903 |
-
#, php-format
|
904 |
-
#@ cpd
|
905 |
-
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: counter-options.php:681
|
909 |
-
#@ cpd
|
910 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
911 |
-
msgstr ""
|
912 |
-
|
913 |
-
#: counter-options.php:686
|
914 |
-
#, php-format
|
915 |
-
#@ cpd
|
916 |
-
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: counter-options.php:690
|
920 |
-
#@ cpd
|
921 |
-
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: counter-options.php:696
|
925 |
-
#@ cpd
|
926 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: counter-options.php:697
|
930 |
-
#, php-format
|
931 |
-
#@ cpd
|
932 |
-
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: counter-options.php:702
|
936 |
-
#, php-format
|
937 |
-
#@ cpd
|
938 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr ""
|
940 |
-
|
941 |
-
#: counter-options.php:761
|
942 |
-
#@ cpd
|
943 |
-
msgid "ReActivation"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: counter-options.php:764
|
947 |
-
#@ cpd
|
948 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: counter-options.php:769
|
952 |
-
#@ cpd
|
953 |
-
msgid "ReActivate the plugin"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
#@ cpd
|
959 |
-
msgid "Visitors"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
#@ cpd
|
965 |
-
msgid "Most visited day"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: counter.php:1239
|
969 |
-
#@ cpd
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr ""
|
972 |
-
|
13 |
"X-Poedit-Language: 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:46
|
23 |
msgid "Options updated"
|
24 |
msgstr "Le opzioni sono state aggiornate"
|
25 |
|
|
|
|
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:111
|
28 |
+
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Database svuotato. %s record cancellato."
|
31 |
|
|
|
|
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:121
|
34 |
+
#: counter-options.php:496
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DISINSTALLA 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 "La tabella %s é stata cancellata"
|
45 |
|
|
|
46 |
#@ cpd
|
47 |
+
#: counter-options.php:132
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Le opzioni sono state cancellate"
|
50 |
|
|
|
|
|
51 |
#@ cpd
|
52 |
+
#: counter-options.php:156
|
53 |
+
#: counter-options.php:481
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Disinstalla"
|
56 |
|
|
|
57 |
#@ cpd
|
58 |
+
#: counter-options.php:157
|
59 |
msgid "Click here"
|
60 |
msgstr "Clicca qui"
|
61 |
|
|
|
62 |
#@ cpd
|
63 |
+
#: counter-options.php:157
|
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:179
|
69 |
+
msgid "Options"
|
70 |
+
msgstr "Opzioni"
|
71 |
+
|
72 |
+
#@ cpd
|
73 |
+
#: counter-options.php:190
|
74 |
msgid "Online time"
|
75 |
msgstr "Durata del collegamento"
|
76 |
|
|
|
77 |
#@ cpd
|
78 |
+
#: counter-options.php:191
|
79 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
80 |
msgstr "Secondi per il counter online. In uso per \"Visitatori in linea\" nella Bacheca."
|
81 |
|
|
|
82 |
#@ cpd
|
83 |
+
#: counter-options.php:194
|
84 |
msgid "Logged on Users"
|
85 |
msgstr "Utenti accreditati"
|
86 |
|
|
|
87 |
#@ cpd
|
88 |
+
#: counter-options.php:196
|
89 |
msgid "count too"
|
90 |
msgstr "conteggia anche loro"
|
91 |
|
|
|
92 |
#@ cpd
|
93 |
+
#: counter-options.php:208
|
94 |
msgid "Auto counter"
|
95 |
msgstr "Contatore-automatico"
|
96 |
|
|
|
97 |
#@ cpd
|
98 |
+
#: counter-options.php:209
|
99 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
100 |
msgstr "Conta in automatico i singoli articoli e le pagine. Non é necessaria alcuna modifica del template."
|
101 |
|
|
|
102 |
#@ cpd
|
103 |
+
#: counter-options.php:212
|
104 |
msgid "Bots to ignore"
|
105 |
msgstr "Bots da ignorare"
|
106 |
|
|
|
107 |
#@ cpd
|
108 |
+
#: counter-options.php:331
|
109 |
msgid "Update options"
|
110 |
msgstr "Aggiorna le opzioni"
|
111 |
|
|
|
|
|
112 |
#@ cpd
|
113 |
+
#: counter-options.php:445
|
114 |
+
#: counter-options.php:454
|
115 |
msgid "Clean the database"
|
116 |
msgstr "Svuota il database"
|
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 "Puoi svuotare la tabella del contatore dai \"dati spam\".<br />Aggiungendo dei nuovi bots sopra ai vecchi \"dati spam\" conservati nel database.<br />Qui tu puoi avviare nuovamente il filtro per i bot e cancellare le visite dei bots."
|
122 |
|
|
|
123 |
#@ cpd
|
124 |
+
#: counter-options.php:484
|
125 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
126 |
msgstr "La disattivazione in sé di \"Count per Day\" non cancellerà le tabelle del database."
|
127 |
|
|
|
128 |
#@ cpd
|
129 |
+
#: counter-options.php:485
|
130 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
131 |
msgstr "Qui potrai cancellare le tabelle e disattivare \"Count per Day\"."
|
132 |
|
|
|
133 |
#@ cpd
|
134 |
+
#: counter-options.php:488
|
135 |
msgid "WARNING"
|
136 |
msgstr "ATTENZIONE"
|
137 |
|
|
|
138 |
#@ cpd
|
139 |
+
#: counter-options.php:489
|
140 |
msgid "These tables (with ALL counter data) will be deleted."
|
141 |
msgstr "Queste tabelle (compresi TUTTI i dati) saranno cancellate."
|
142 |
|
|
|
143 |
#@ cpd
|
144 |
+
#: counter-options.php:491
|
145 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
146 |
msgstr "Qualora desiderassi re-installare \"Count per Day\", ricordati che il contatore ripartirà da 0."
|
147 |
|
|
|
|
|
148 |
#@ cpd
|
149 |
+
#: counter-options.php:495
|
150 |
msgid "Yes"
|
151 |
msgstr "Sì"
|
152 |
|
|
|
153 |
#@ cpd
|
154 |
+
#: counter-options.php:496
|
155 |
msgid "You are sure to disable Count per Day and delete all data?"
|
156 |
msgstr "Sei certo di volere disattivare Count per Day e cancellare tutti i dati?"
|
157 |
|
|
|
|
|
158 |
#@ cpd
|
159 |
+
#: counter.php:1786
|
160 |
+
#: counter.php:2147
|
161 |
msgid "Statistics"
|
162 |
msgstr "Satistiche"
|
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 "Totale visitatori"
|
172 |
|
|
|
|
|
173 |
#@ cpd
|
174 |
+
#: counter.php:530
|
175 |
+
#: counter.php:2230
|
176 |
msgid "Visitors currently online"
|
177 |
msgstr "Utenti attualmente in linea"
|
178 |
|
|
|
|
|
179 |
#@ cpd
|
180 |
+
#: counter.php:531
|
181 |
+
#: counter.php:2225
|
182 |
msgid "Visitors today"
|
183 |
msgstr "Oggi"
|
184 |
|
|
|
|
|
185 |
#@ cpd
|
186 |
+
#: counter.php:532
|
187 |
+
#: counter.php:2226
|
188 |
msgid "Visitors yesterday"
|
189 |
msgstr "Ieri"
|
190 |
|
|
|
|
|
191 |
#@ cpd
|
192 |
+
#: counter.php:533
|
193 |
+
#: counter.php:2227
|
194 |
msgid "Visitors last week"
|
195 |
msgstr "La scorsa settimana"
|
196 |
|
|
|
|
|
|
|
197 |
#@ cpd
|
198 |
+
#: counter.php:536
|
199 |
+
#: counter.php:2231
|
200 |
msgid "Counter starts on"
|
201 |
msgstr "Il contatore parte dal"
|
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 "Visitatori per giorno"
|
213 |
|
|
|
|
|
214 |
#@ cpd
|
215 |
+
#: counter.php:1752
|
216 |
+
#: counter.php:2228
|
217 |
msgid "Visitors per month"
|
218 |
msgstr "Visitatori per mese"
|
219 |
|
|
|
|
|
220 |
#@ cpd
|
221 |
+
#: counter-options.php:236
|
222 |
+
#: counter.php:1754
|
223 |
msgid "Visitors per post"
|
224 |
msgstr "Visitatori per articolo"
|
225 |
|
|
|
226 |
#@ cpd
|
227 |
+
#: counter-options.php:117
|
228 |
msgid "Counter reseted."
|
229 |
msgstr "Il contatore é stato azzerato."
|
230 |
|
|
|
|
|
231 |
#@ cpd
|
232 |
+
#: counter-options.php:237
|
233 |
+
#: counter-options.php:241
|
234 |
msgid "How many posts do you want to see on dashboard page?"
|
235 |
msgstr "Quanti articoli desideri siano visibili nella bacheca?"
|
236 |
|
|
|
237 |
#@ cpd
|
238 |
+
#: counter-options.php:240
|
239 |
msgid "Latest Counts - Posts"
|
240 |
msgstr "Totale corrente - Articoli"
|
241 |
|
|
|
242 |
#@ cpd
|
243 |
+
#: counter-options.php:244
|
244 |
msgid "Latest Counts - Days"
|
245 |
msgstr "Totale corrente - pagine"
|
246 |
|
|
|
|
|
|
|
247 |
#@ cpd
|
248 |
+
#: counter-options.php:245
|
249 |
+
#: counter-options.php:249
|
250 |
+
#: counter-options.php:275
|
251 |
msgid "How many days do you want look back?"
|
252 |
msgstr "Quanti giorni desideri visionare a ritroso?"
|
253 |
|
|
|
254 |
#@ cpd
|
255 |
+
#: counter-options.php:290
|
256 |
msgid "Show in lists"
|
257 |
msgstr "Mostra nelle liste"
|
258 |
|
|
|
259 |
#@ cpd
|
260 |
+
#: counter-options.php:291
|
261 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
262 |
msgstr "Mostra \"Letture per articolo\" in una nuova colonna nella sezione gestione degli articoli."
|
263 |
|
|
|
|
|
264 |
#@ cpd
|
265 |
+
#: counter-options.php:463
|
266 |
+
#: counter-options.php:472
|
267 |
msgid "Reset the counter"
|
268 |
msgstr "Azzera il contatore"
|
269 |
|
|
|
270 |
#@ cpd
|
271 |
+
#: counter-options.php:466
|
272 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
273 |
msgstr "Puoi azzerare il contatore svuotando la tabella. ALL TO 0!<br />Effettua il backup!"
|
274 |
|
|
|
|
|
275 |
#@ cpd
|
276 |
+
#: counter.php:1257
|
277 |
+
#, php-format
|
278 |
msgid "The %s most visited posts in last %s days:"
|
279 |
msgstr "I %s articoli più letti negli ultimi %s giorni:"
|
280 |
|
|
|
|
|
|
|
281 |
#@ default
|
282 |
+
#: counter.php:1591
|
283 |
msgid "Settings"
|
284 |
msgstr "Impostazioni"
|
285 |
|
|
|
|
|
|
|
|
|
286 |
#@ cpd
|
287 |
+
#: counter-options.php:225
|
288 |
+
#: counter.php:528
|
289 |
+
#: counter.php:1661
|
290 |
msgid "Reads"
|
291 |
msgstr "Visitatori"
|
292 |
|
|
|
293 |
#@ cpd
|
294 |
+
#: counter.php:1755
|
295 |
msgid "Latest Counts"
|
296 |
msgstr "Totale corrente"
|
297 |
|
|
|
298 |
#@ cpd
|
299 |
+
#: counter-options.php:248
|
300 |
msgid "Chart - Days"
|
301 |
msgstr "Diagramma - Giorni"
|
302 |
|
|
|
303 |
#@ cpd
|
304 |
+
#: counter-options.php:252
|
305 |
msgid "Chart - Height"
|
306 |
msgstr "Diagramma - Altezza"
|
307 |
|
|
|
308 |
#@ cpd
|
309 |
+
#: counter-options.php:253
|
310 |
msgid "Height of the biggest bar"
|
311 |
msgstr "Altezza della categoria maggiore"
|
312 |
|
|
|
313 |
#@ cpd
|
314 |
+
#: counter.php:845
|
315 |
+
msgid "no reads at this time"
|
316 |
+
msgstr "nessun lettura in questo momento"
|
317 |
+
|
318 |
+
#@ cpd
|
319 |
+
#: counter.php:819
|
320 |
+
msgid "days"
|
321 |
+
msgstr "giorni"
|
322 |
+
|
323 |
+
#@ cpd
|
324 |
+
#: counter.php:2218
|
325 |
msgid "This post"
|
326 |
msgstr "Questo articolo"
|
327 |
|
|
|
328 |
#@ default
|
329 |
+
#: counter-options.php:233
|
330 |
msgid "Dashboard"
|
331 |
msgstr "Bacheca"
|
332 |
|
|
|
333 |
#@ cpd
|
334 |
+
#: counter.php:635
|
335 |
+
#: counter.php:1766
|
336 |
msgid "Reads per day"
|
337 |
msgstr "Letture per giorno"
|
338 |
|
|
|
|
|
339 |
#@ cpd
|
340 |
+
#: counter-options.php:57
|
341 |
+
#, php-format
|
342 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
343 |
msgstr "Gli stati sono stati aggiornati. <b>%s</b> pubblicazioni in %s senza stato"
|
344 |
|
|
|
345 |
#@ cpd
|
346 |
+
#: counter-options.php:62
|
347 |
msgid "update next"
|
348 |
msgstr "aggiorna il prossimo"
|
349 |
|
|
|
350 |
#@ cpd
|
351 |
+
#: counter-options.php:340
|
352 |
msgid "GeoIP - Countries"
|
353 |
msgstr "GeoIP - Stati"
|
354 |
|
|
|
355 |
#@ cpd
|
356 |
+
#: counter-options.php:349
|
357 |
msgid "Update old counter data"
|
358 |
msgstr "Aggiorna i vecchi dati per gli stati"
|
359 |
|
|
|
360 |
#@ cpd
|
361 |
+
#: counter-options.php:362
|
362 |
msgid "Update GeoIP database"
|
363 |
msgstr "Aggiorna database GeoIP"
|
364 |
|
|
|
365 |
#@ cpd
|
366 |
+
#: counter-options.php:365
|
367 |
msgid "Download a new version of GeoIP.dat file."
|
368 |
msgstr "Scarica la nuova versione del file GeoIP.dat."
|
369 |
|
|
|
370 |
#@ cpd
|
371 |
+
#: counter-options.php:371
|
372 |
msgid "More informations about GeoIP"
|
373 |
msgstr "Informazioni su GeoIP"
|
374 |
|
|
|
375 |
#@ cpd
|
376 |
+
#: counter.php:1770
|
377 |
msgid "Reads per Country"
|
378 |
msgstr "Letture per stato"
|
379 |
|
|
|
380 |
#@ cpd
|
381 |
+
#: geoip/geoip.php:132
|
382 |
msgid "New GeoIP database installed."
|
383 |
msgstr "Il nuovo database GeoIP é stato installato."
|
384 |
|
|
|
385 |
#@ cpd
|
386 |
+
#: geoip/geoip.php:134
|
387 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
388 |
msgstr "Si é verificato un errore. Riprova oppure verifica che i permessi della cartella \"geoip\" siano impostati a 777."
|
389 |
|
|
|
390 |
#@ cpd
|
391 |
+
#: geoip/geoip.php:108
|
392 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
393 |
msgstr "La funzione (zlib) non é stata installata oppure non attiva in php.ini."
|
394 |
|
|
|
395 |
#@ cpd
|
396 |
+
#: counter-options.php:261
|
397 |
msgid "Countries"
|
398 |
msgstr "Stati"
|
399 |
|
|
|
400 |
#@ cpd
|
401 |
+
#: counter-options.php:262
|
402 |
msgid "How many countries do you want to see on dashboard page?"
|
403 |
msgstr "Quanti stati desideri siano visibili nella bacheca?"
|
404 |
|
|
|
|
|
405 |
#@ cpd
|
406 |
+
#: counter-options.php:104
|
407 |
+
#, php-format
|
408 |
msgid "Mass Bots cleaned. %s counts deleted."
|
409 |
msgstr "Mass Bots svuotato. %s totali cancellati."
|
410 |
|
|
|
|
|
411 |
#@ cpd
|
412 |
+
#: counter-options.php:386
|
413 |
+
#: massbots.php:33
|
414 |
msgid "Mass Bots"
|
415 |
msgstr "Mass Bots"
|
416 |
|
|
|
|
|
417 |
#@ cpd
|
418 |
+
#: counter-options.php:390
|
419 |
+
#, php-format
|
420 |
msgid "Show all IPs with more than %s page views per day"
|
421 |
msgstr "Mostra tutti gli IP con più di %s pagine visualizzate al giorno"
|
422 |
|
|
|
|
|
|
|
423 |
#@ cpd
|
424 |
+
#: counter-options.php:391
|
425 |
+
#: notes.php:76
|
426 |
+
#: userperspan.php:43
|
427 |
msgid "show"
|
428 |
msgstr "mostra"
|
429 |
|
|
|
|
|
|
|
430 |
#@ cpd
|
431 |
+
#: counter-options.php:413
|
432 |
+
#: counter-options.php:435
|
433 |
+
#, php-format
|
434 |
msgid "Delete these %s counts"
|
435 |
msgstr "Cancella questi %s totali"
|
436 |
|
|
|
437 |
#@ cpd
|
438 |
+
#: counter.php:1421
|
439 |
msgid "Other"
|
440 |
msgstr "Altro"
|
441 |
|
|
|
|
|
|
|
442 |
#@ default
|
443 |
+
#: counter.php:1520
|
444 |
+
#: massbots.php:50
|
445 |
+
#: userperspan.php:63
|
446 |
msgid "Front page displays"
|
447 |
msgstr "Mostra nella front page"
|
448 |
|
|
|
|
|
449 |
#@ cpd
|
450 |
+
#: counter-options.php:266
|
451 |
+
#: counter.php:1760
|
452 |
msgid "Browsers"
|
453 |
msgstr "Browser"
|
454 |
|
|
|
455 |
#@ cpd
|
456 |
+
#: counter-options.php:399
|
457 |
msgid "IP"
|
458 |
msgstr "IP"
|
459 |
|
|
|
|
|
460 |
#@ cpd
|
461 |
#@ default
|
462 |
+
#: counter-options.php:400
|
463 |
+
#: notes.php:80
|
464 |
msgid "Date"
|
465 |
msgstr "Data"
|
466 |
|
|
|
467 |
#@ cpd
|
468 |
+
#: counter-options.php:401
|
469 |
msgid "Client"
|
470 |
msgstr "Client"
|
471 |
|
|
|
472 |
#@ cpd
|
473 |
+
#: counter-options.php:402
|
474 |
msgid "Views"
|
475 |
msgstr "Visualizzazioni"
|
476 |
|
|
|
477 |
#@ cpd
|
478 |
+
#: counter-options.php:299
|
479 |
msgid "Start Values"
|
480 |
msgstr "Valori di partenza"
|
481 |
|
|
|
482 |
#@ cpd
|
483 |
+
#: counter-options.php:303
|
484 |
msgid "Here you can change the date of first count and add a start count."
|
485 |
msgstr "Puoi modificare la data del primo conteggio ed avviare un conteggio di partenza."
|
486 |
|
|
|
487 |
#@ cpd
|
488 |
+
#: counter-options.php:307
|
489 |
msgid "Start date"
|
490 |
msgstr "Data di inizio"
|
491 |
|
|
|
492 |
#@ cpd
|
493 |
+
#: counter-options.php:308
|
494 |
msgid "Your old Counter starts at?"
|
495 |
msgstr "Il vecchio contatore parte da?"
|
496 |
|
|
|
|
|
497 |
#@ cpd
|
498 |
+
#: counter-options.php:311
|
499 |
+
#: counter-options.php:315
|
500 |
msgid "Start count"
|
501 |
msgstr "Avvia conteggio"
|
502 |
|
|
|
503 |
#@ cpd
|
504 |
+
#: counter-options.php:312
|
505 |
msgid "Add this value to \"Total visitors\"."
|
506 |
msgstr "Aggiungi questo valore a \"Totale visitatori\"."
|
507 |
|
|
|
508 |
#@ cpd
|
509 |
+
#: counter-options.php:504
|
510 |
msgid "Support"
|
511 |
msgstr "Supporto"
|
512 |
|
|
|
513 |
#@ cpd
|
514 |
+
#: counter.php:1717
|
515 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
516 |
msgstr "Bug? Problemi? Domande? Suggerimenti? Elogi?"
|
517 |
|
|
|
|
|
518 |
#@ cpd
|
519 |
+
#: counter.php:1718
|
520 |
+
#, php-format
|
521 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
522 |
msgstr "Invia un commento nella <a href=\"%s\">pagina del plugin</a>."
|
523 |
|
|
|
524 |
#@ default
|
525 |
+
#: counter.php:1374
|
526 |
msgid "Show"
|
527 |
msgstr "Mostra"
|
528 |
|
|
|
529 |
#@ default
|
530 |
+
#: counter.php:1505
|
531 |
msgid "Edit Post"
|
532 |
msgstr "modifica articolo"
|
533 |
|
|
|
|
|
534 |
#@ cpd
|
535 |
+
#: counter.php:1716
|
536 |
+
#, php-format
|
537 |
msgid "Time for Count per Day: <code>%s</code>."
|
538 |
msgstr "Fuso orario Count per Day: <code>%s</code>."
|
539 |
|
|
|
540 |
#@ cpd
|
541 |
+
#: counter-options.php:197
|
542 |
msgid "until User Level"
|
543 |
msgstr "sino a livello utente"
|
544 |
|
|
|
545 |
#@ default
|
546 |
+
#: counter.php:1757
|
547 |
msgid "Plugin"
|
548 |
msgstr "Plugin"
|
549 |
|
|
|
|
|
|
|
550 |
#@ cpd
|
551 |
+
#: counter.php:822
|
552 |
+
#: counter.php:1376
|
553 |
+
#: notes.php:47
|
554 |
+
#: notes.php:81
|
555 |
msgid "Notes"
|
556 |
msgstr "Note"
|
557 |
|
|
|
558 |
#@ default
|
559 |
+
#: notes.php:82
|
560 |
msgid "Action"
|
561 |
msgstr "Azione"
|
562 |
|
|
|
563 |
#@ cpd
|
564 |
+
#: notes.php:87
|
565 |
msgid "add"
|
566 |
msgstr "aggiungi"
|
567 |
|
|
|
568 |
#@ cpd
|
569 |
+
#: notes.php:102
|
570 |
msgid "save"
|
571 |
msgstr "salva"
|
572 |
|
|
|
573 |
#@ cpd
|
574 |
+
#: notes.php:103
|
575 |
msgid "delete"
|
576 |
msgstr "cancella"
|
577 |
|
|
|
578 |
#@ cpd
|
579 |
+
#: notes.php:114
|
580 |
msgid "edit"
|
581 |
msgstr "modifica"
|
582 |
|
|
|
583 |
#@ cpd
|
584 |
+
#: notes.php:81
|
585 |
+
msgid "(1 per day)"
|
586 |
+
msgstr "(1 al giorno)"
|
587 |
+
|
588 |
+
#@ cpd
|
589 |
+
#: counter-options.php:316
|
590 |
msgid "Add this value to \"Total reads\"."
|
591 |
msgstr "Aggiungi questo valore a \"Totale letture\"."
|
592 |
|
|
|
|
|
593 |
#@ cpd
|
594 |
+
#: counter.php:524
|
595 |
+
#: counter.php:2219
|
596 |
msgid "Total reads"
|
597 |
msgstr "Totale letture"
|
598 |
|
|
|
|
|
599 |
#@ cpd
|
600 |
+
#: counter.php:525
|
601 |
+
#: counter.php:2220
|
602 |
msgid "Reads today"
|
603 |
msgstr "Letture odierne"
|
604 |
|
|
|
|
|
605 |
#@ cpd
|
606 |
+
#: counter.php:526
|
607 |
+
#: counter.php:2221
|
608 |
msgid "Reads yesterday"
|
609 |
msgstr "Letture di ieri"
|
610 |
|
|
|
|
|
611 |
#@ cpd
|
612 |
+
#: counter.php:900
|
613 |
+
#: counter.php:1856
|
614 |
msgid "Map"
|
615 |
msgstr "Mappa"
|
616 |
|
|
|
617 |
#@ cpd
|
618 |
+
#: counter-options.php:216
|
619 |
msgid "Anonymous IP"
|
620 |
msgstr "IP anonimo"
|
621 |
|
|
|
622 |
#@ cpd
|
623 |
+
#: counter-options.php:220
|
624 |
msgid "Cache"
|
625 |
msgstr "Cache"
|
626 |
|
|
|
627 |
#@ cpd
|
628 |
+
#: counter-options.php:221
|
629 |
msgid "I use a cache plugin. Count these visits with ajax."
|
630 |
msgstr "Uso un plugin per la cache. Conteggia le visite via ajax."
|
631 |
|
|
|
632 |
#@ cpd
|
633 |
+
#: counter-options.php:267
|
634 |
msgid "Substring of the user agent, separated by comma"
|
635 |
msgstr "Sub-stringa user agent, separa con una virgola"
|
636 |
|
|
|
637 |
#@ cpd
|
638 |
+
#: counter.php:1771
|
639 |
msgid "Visitors per Country"
|
640 |
msgstr "Visitatori per paese"
|
641 |
|
|
|
642 |
#@ cpd
|
643 |
+
#: counter-options.php:324
|
644 |
msgid "Debug mode"
|
645 |
msgstr "Modalità debug"
|
646 |
|
|
|
647 |
#@ cpd
|
648 |
+
#: counter-options.php:326
|
649 |
msgid "Show debug informations at the bottom of all pages."
|
650 |
msgstr "Mostra info debug al fondo di tutte le pagine."
|
651 |
|
|
|
652 |
#@ cpd
|
653 |
+
#: userperspan.php:37
|
654 |
msgid "Start"
|
655 |
msgstr "Inizio"
|
656 |
|
|
|
657 |
#@ cpd
|
658 |
+
#: userperspan.php:39
|
659 |
msgid "End"
|
660 |
msgstr "Termine"
|
661 |
|
|
|
662 |
#@ cpd
|
663 |
+
#: userperspan.php:41
|
664 |
msgid "PostID"
|
665 |
msgstr "ID articolo"
|
666 |
|
|
|
667 |
#@ cpd
|
668 |
+
#: userperspan.php:49
|
669 |
msgid "no data found"
|
670 |
msgstr "nessun dato trovato"
|
671 |
|
|
|
672 |
#@ cpd
|
673 |
+
#: counter-options.php:352
|
674 |
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!"
|
675 |
msgstr "Potrai ottenere i nuovi dati verificando nuovamente l'indirizzo IP nel database di GeoIP. L'operazione richiederà alcuni minuti!"
|
676 |
|
|
|
677 |
#@ cpd
|
678 |
+
#: counter-options.php:186
|
679 |
msgid "Counter"
|
680 |
msgstr "Contatore"
|
681 |
|
|
|
682 |
#@ cpd
|
683 |
+
#: counter-options.php:278
|
684 |
msgid "Local URLs"
|
685 |
msgstr "URL locali"
|
686 |
|
|
|
687 |
#@ cpd
|
688 |
+
#: counter-options.php:279
|
689 |
msgid "Show local referrers too."
|
690 |
msgstr "Mostra anche i referenti locali."
|
691 |
|
|
|
692 |
#@ default
|
693 |
+
#: counter-options.php:287
|
694 |
msgid "Posts"
|
695 |
msgstr "Articoli"
|
696 |
|
|
|
697 |
#@ default
|
698 |
+
#: counter-options.php:287
|
699 |
msgid "Pages"
|
700 |
msgstr "Pagine"
|
701 |
|
|
|
702 |
#@ default
|
703 |
+
#: counter.php:1514
|
704 |
msgid "Category"
|
705 |
msgstr "Categoria"
|
706 |
|
|
|
707 |
#@ default
|
708 |
+
#: counter.php:1517
|
709 |
msgid "Tag"
|
710 |
msgstr "Tag"
|
711 |
|
|
|
712 |
#@ default
|
713 |
+
#: counter.php:1719
|
714 |
msgid "License"
|
715 |
msgstr "Licenza"
|
716 |
|
|
|
717 |
#@ cpd
|
718 |
+
#: counter.php:1761
|
719 |
msgid "Referrer"
|
720 |
msgstr "Referente"
|
721 |
|
|
|
722 |
#@ default
|
723 |
+
#: counter.php:2242
|
724 |
msgid "Title"
|
725 |
msgstr "Titolo"
|
726 |
|
|
|
727 |
#@ cpd
|
728 |
+
#: counter-options.php:225
|
729 |
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."
|
730 |
msgstr "Salva e mostra client e referenti.<br />Necessita di molto spazio nel database ma ti offre delle maggiori informazioni sui tuoi visitatori."
|
731 |
|
|
|
732 |
#@ cpd
|
733 |
+
#: counter-options.php:224
|
734 |
msgid "Clients and referrers"
|
735 |
msgstr "Client e referenti"
|
736 |
|
|
|
|
|
737 |
#@ cpd
|
738 |
+
#: counter.php:527
|
739 |
+
#: counter.php:2222
|
740 |
msgid "Reads last week"
|
741 |
msgstr "Letture scorsa settimana"
|
742 |
|
|
|
|
|
743 |
#@ cpd
|
744 |
+
#: counter.php:1753
|
745 |
+
#: counter.php:2223
|
746 |
msgid "Reads per month"
|
747 |
msgstr "Letture scorso mese"
|
748 |
|
|
|
749 |
#@ cpd
|
750 |
+
#: counter-options.php:256
|
751 |
+
msgid "Old Charts"
|
752 |
+
msgstr "Diagrammi datati"
|
753 |
+
|
754 |
+
#@ cpd
|
755 |
+
#: counter-options.php:257
|
756 |
+
msgid "Show old bar charts."
|
757 |
+
msgstr "Mostra barra diagrammi datati."
|
758 |
+
|
759 |
+
#@ cpd
|
760 |
+
#: counter-options.php:270
|
761 |
msgid "Referrers - Entries"
|
762 |
msgstr "Referenti - Pubblicazioni"
|
763 |
|
|
|
764 |
#@ cpd
|
765 |
+
#: counter-options.php:271
|
766 |
msgid "How many referrers do you want to see on dashboard page?"
|
767 |
msgstr "Quanti referenti desideri vengano visualizzati nella bacheca?"
|
768 |
|
|
|
769 |
#@ cpd
|
770 |
+
#: counter-options.php:274
|
771 |
msgid "Referrers - Days"
|
772 |
msgstr "Referenti - Giorni"
|
773 |
|
|
|
|
|
774 |
#@ cpd
|
775 |
+
#: counter.php:1449
|
776 |
+
#, php-format
|
777 |
msgid "The %s referrers in last %s days:"
|
778 |
msgstr "I %s referenti degli ultimi %s giorni:"
|
779 |
|
|
|
780 |
#@ cpd
|
781 |
+
#: counter.php:1751
|
782 |
msgid "Visitors online"
|
783 |
msgstr "Visitatori online"
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-ja.mo
DELETED
Binary file
|
locale/cpd-ja.po
DELETED
@@ -1,972 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count Per Day v3.00\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-07-30 09:39+0900\n"
|
6 |
-
"PO-Revision-Date: 2011-07-30 09:49+0900\n"
|
7 |
-
"Last-Translator: Juno Hayami <juno.hayami@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: Japanese\n"
|
14 |
-
"X-Poedit-Country: JAPAN\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
-
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-Poedit-Bookmarks: \n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
-
|
22 |
-
#: counter-core.php:194
|
23 |
-
#, php-format
|
24 |
-
#@ cpd
|
25 |
-
msgid "\"Count per Day\" updated to version %s."
|
26 |
-
msgstr "\"Count per Day\" がバージョン %s にアップデートされました。"
|
27 |
-
|
28 |
-
#: counter-core.php:583
|
29 |
-
#: counter-options.php:343
|
30 |
-
#: counter-options.php:560
|
31 |
-
#@ default
|
32 |
-
msgid "Settings"
|
33 |
-
msgstr "設定"
|
34 |
-
|
35 |
-
#: counter-core.php:647
|
36 |
-
#: counter-options.php:393
|
37 |
-
#: counter.php:159
|
38 |
-
#: counter.php:875
|
39 |
-
#@ cpd
|
40 |
-
msgid "Reads"
|
41 |
-
msgstr "総購読数"
|
42 |
-
|
43 |
-
#: counter-core.php:697
|
44 |
-
#, php-format
|
45 |
-
#@ cpd
|
46 |
-
msgid "Time for Count per Day: <code>%s</code>."
|
47 |
-
msgstr "Count per Dayでの日時: <code>%s</code>."
|
48 |
-
|
49 |
-
#: counter-core.php:698
|
50 |
-
#@ cpd
|
51 |
-
msgid "Bug? Problem? Question? Hint? Praise?"
|
52 |
-
msgstr "バグ?問題?質問?ヒント?評価?"
|
53 |
-
|
54 |
-
#: counter-core.php:699
|
55 |
-
#, php-format
|
56 |
-
#@ cpd
|
57 |
-
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
58 |
-
msgstr "<a href=\"%s\">plugin page</a> にコメントする。"
|
59 |
-
|
60 |
-
#: counter-core.php:700
|
61 |
-
#@ default
|
62 |
-
msgid "License"
|
63 |
-
msgstr "ライセンス"
|
64 |
-
|
65 |
-
#: counter-core.php:731
|
66 |
-
#: counter.php:160
|
67 |
-
#: counter.php:1010
|
68 |
-
#: counter.php:1202
|
69 |
-
#@ cpd
|
70 |
-
msgid "Total visitors"
|
71 |
-
msgstr "総訪問者数"
|
72 |
-
|
73 |
-
#: counter-core.php:732
|
74 |
-
#@ cpd
|
75 |
-
msgid "Visitors online"
|
76 |
-
msgstr "オンライン中の訪問者数"
|
77 |
-
|
78 |
-
#: counter-core.php:733
|
79 |
-
#: counter.php:1206
|
80 |
-
#@ cpd
|
81 |
-
msgid "Visitors per month"
|
82 |
-
msgstr "月別訪問者数"
|
83 |
-
|
84 |
-
#: counter-core.php:734
|
85 |
-
#: counter.php:1201
|
86 |
-
#@ cpd
|
87 |
-
msgid "Reads per month"
|
88 |
-
msgstr "月別閲覧数"
|
89 |
-
|
90 |
-
#: counter-core.php:735
|
91 |
-
#: counter-options.php:438
|
92 |
-
#@ cpd
|
93 |
-
msgid "Visitors per post"
|
94 |
-
msgstr "記事別の訪問者数"
|
95 |
-
|
96 |
-
#: counter-core.php:736
|
97 |
-
#@ cpd
|
98 |
-
msgid "Latest Counts"
|
99 |
-
msgstr "最近のカウント"
|
100 |
-
|
101 |
-
#: counter-core.php:737
|
102 |
-
#: counter.php:166
|
103 |
-
#: counter.php:263
|
104 |
-
#: counter.php:1012
|
105 |
-
#: counter.php:1207
|
106 |
-
#: userperspan.php:34
|
107 |
-
#@ cpd
|
108 |
-
msgid "Visitors per day"
|
109 |
-
msgstr "一日あたりの訪問者数"
|
110 |
-
|
111 |
-
#: counter-core.php:738
|
112 |
-
#@ default
|
113 |
-
msgid "Plugin"
|
114 |
-
msgstr "プラグイン"
|
115 |
-
|
116 |
-
#: counter-core.php:741
|
117 |
-
#: counter-options.php:464
|
118 |
-
#@ cpd
|
119 |
-
msgid "Browsers"
|
120 |
-
msgstr "ブラウザ"
|
121 |
-
|
122 |
-
#: counter-core.php:742
|
123 |
-
#@ cpd
|
124 |
-
msgid "Referrer"
|
125 |
-
msgstr "リファラ"
|
126 |
-
|
127 |
-
#: counter-core.php:746
|
128 |
-
#@ cpd
|
129 |
-
msgid "Reads per Country"
|
130 |
-
msgstr "国ごとの閲覧数"
|
131 |
-
|
132 |
-
#: counter-core.php:747
|
133 |
-
#@ cpd
|
134 |
-
msgid "Visitors per Country"
|
135 |
-
msgstr "国ごとの訪問者数"
|
136 |
-
|
137 |
-
#: counter-core.php:762
|
138 |
-
#: counter.php:1124
|
139 |
-
#@ cpd
|
140 |
-
msgid "Statistics"
|
141 |
-
msgstr "統計"
|
142 |
-
|
143 |
-
#: counter-core.php:925
|
144 |
-
#@ cpd
|
145 |
-
msgid "Backup failed! Cannot open file"
|
146 |
-
msgstr "バックアップに失敗しました! ファイルが開けません。"
|
147 |
-
|
148 |
-
#: counter-core.php:948
|
149 |
-
#, php-format
|
150 |
-
#@ cpd
|
151 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
152 |
-
msgstr "%s 件の記録をバックアップ処理中。 %s 件の記録が完了しています。"
|
153 |
-
|
154 |
-
#: counter-core.php:1035
|
155 |
-
#@ cpd
|
156 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
157 |
-
msgstr "wp-contentディレクトリに書き込みできません。しかしこのボックスからプレーンテキスト形式でコンテンツをコピーできます。"
|
158 |
-
|
159 |
-
#: counter-core.php:1041
|
160 |
-
#, php-format
|
161 |
-
#@ cpd
|
162 |
-
msgid "Backup of counter table saved in %s."
|
163 |
-
msgstr "カウンターテーブルのバックアップを %s に保存しました。"
|
164 |
-
|
165 |
-
#: counter-core.php:1043
|
166 |
-
#, php-format
|
167 |
-
#@ cpd
|
168 |
-
msgid "Backup of counter options and collection saved in %s."
|
169 |
-
msgstr "カウンターオプションのバックアップと記録は %s に保存されました。"
|
170 |
-
|
171 |
-
#: counter-options.php:50
|
172 |
-
#@ cpd
|
173 |
-
msgid "Options updated"
|
174 |
-
msgstr "オプションを更新しました"
|
175 |
-
|
176 |
-
#: counter-options.php:61
|
177 |
-
#, php-format
|
178 |
-
#@ cpd
|
179 |
-
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
180 |
-
msgstr "訪問者の国情報を更新。%s 上の <b>%s</b> 件がまだ国と関連付けられていません。"
|
181 |
-
|
182 |
-
#: counter-options.php:64
|
183 |
-
#@ cpd
|
184 |
-
msgid "update next"
|
185 |
-
msgstr "次を更新"
|
186 |
-
|
187 |
-
#: counter-options.php:104
|
188 |
-
#, php-format
|
189 |
-
#@ cpd
|
190 |
-
msgid "Mass Bots cleaned. %s counts deleted."
|
191 |
-
msgstr "Botをクリーンアップしました。 %s 件が削除されました。"
|
192 |
-
|
193 |
-
#: counter-options.php:114
|
194 |
-
#, php-format
|
195 |
-
#@ cpd
|
196 |
-
msgid "Database cleaned. %s rows deleted."
|
197 |
-
msgstr "データベースをクリーンアップしました。 %s 行削除されました。"
|
198 |
-
|
199 |
-
#: counter-options.php:124
|
200 |
-
#@ cpd
|
201 |
-
msgid "Counter reseted."
|
202 |
-
msgstr "カウンターがリセットされました。"
|
203 |
-
|
204 |
-
#: counter-options.php:129
|
205 |
-
#: counter-options.php:817
|
206 |
-
#@ cpd
|
207 |
-
msgid "UNINSTALL Count per Day"
|
208 |
-
msgstr "Count per Day のアンインストール"
|
209 |
-
|
210 |
-
#: counter-options.php:134
|
211 |
-
#: counter-options.php:135
|
212 |
-
#: counter-options.php:136
|
213 |
-
#, php-format
|
214 |
-
#@ cpd
|
215 |
-
msgid "Table %s deleted"
|
216 |
-
msgstr "%s テーブルが削除されました"
|
217 |
-
|
218 |
-
#: counter-options.php:137
|
219 |
-
#@ cpd
|
220 |
-
msgid "Options deleted"
|
221 |
-
msgstr "オプションを削除しました"
|
222 |
-
|
223 |
-
#: counter-options.php:172
|
224 |
-
#@ cpd
|
225 |
-
msgid "Collection in progress..."
|
226 |
-
msgstr "整理中です…"
|
227 |
-
|
228 |
-
#: counter-options.php:242
|
229 |
-
#@ cpd
|
230 |
-
msgid "Get Visitors per Post..."
|
231 |
-
msgstr "記事別の訪問者数を取得…"
|
232 |
-
|
233 |
-
#: counter-options.php:263
|
234 |
-
#@ cpd
|
235 |
-
msgid "Delete old data..."
|
236 |
-
msgstr "古いデータを削除します…"
|
237 |
-
|
238 |
-
#: counter-options.php:287
|
239 |
-
#, php-format
|
240 |
-
#@ cpd
|
241 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
242 |
-
msgstr "%s までのカウンター記録を整理し、カウンターテーブル %s を最適化しました (最適化前のサイズ = %s > 最適化後のサイズ = %s)。"
|
243 |
-
|
244 |
-
#: counter-options.php:296
|
245 |
-
#@ cpd
|
246 |
-
msgid "Installation of \"Count per Day\" checked"
|
247 |
-
msgstr "\"Count per Day\" のインストールが完了しました。"
|
248 |
-
|
249 |
-
#: counter-options.php:318
|
250 |
-
#: counter-options.php:803
|
251 |
-
#@ cpd
|
252 |
-
msgid "Uninstall"
|
253 |
-
msgstr "アンインストール"
|
254 |
-
|
255 |
-
#: counter-options.php:319
|
256 |
-
#@ cpd
|
257 |
-
msgid "Click here"
|
258 |
-
msgstr "Click here"
|
259 |
-
|
260 |
-
#: counter-options.php:319
|
261 |
-
#@ cpd
|
262 |
-
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
263 |
-
msgstr "\"Count per Day\" を無効化してアンインストール"
|
264 |
-
|
265 |
-
#: counter-options.php:344
|
266 |
-
#: counter-options.php:561
|
267 |
-
#@ default
|
268 |
-
msgid "Tools"
|
269 |
-
msgstr "ツール"
|
270 |
-
|
271 |
-
#: counter-options.php:352
|
272 |
-
#@ cpd
|
273 |
-
msgid "Counter"
|
274 |
-
msgstr "カウンター"
|
275 |
-
|
276 |
-
#: counter-options.php:356
|
277 |
-
#@ cpd
|
278 |
-
msgid "Online time"
|
279 |
-
msgstr "オンライン判定時間(秒)"
|
280 |
-
|
281 |
-
#: counter-options.php:357
|
282 |
-
#@ cpd
|
283 |
-
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
284 |
-
msgstr "オンラインの数をカウントする秒数。 ダッシュボード上の\"オンライン中の訪問者数\"で使用。"
|
285 |
-
|
286 |
-
#: counter-options.php:360
|
287 |
-
#@ cpd
|
288 |
-
msgid "Logged on Users"
|
289 |
-
msgstr "ログインユーザー"
|
290 |
-
|
291 |
-
#: counter-options.php:362
|
292 |
-
#@ cpd
|
293 |
-
msgid "count too"
|
294 |
-
msgstr "カウントに含む"
|
295 |
-
|
296 |
-
#: counter-options.php:363
|
297 |
-
#@ cpd
|
298 |
-
msgid "until User Level"
|
299 |
-
msgstr "次のユーザーレベルまで"
|
300 |
-
|
301 |
-
#: counter-options.php:374
|
302 |
-
#@ cpd
|
303 |
-
msgid "Auto counter"
|
304 |
-
msgstr "自動でカウントする"
|
305 |
-
|
306 |
-
#: counter-options.php:375
|
307 |
-
#@ cpd
|
308 |
-
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
309 |
-
msgstr "テンプレートの変更なしで自動的に個別記事や固定ページもカウントする"
|
310 |
-
|
311 |
-
#: counter-options.php:378
|
312 |
-
#@ cpd
|
313 |
-
msgid "Bots to ignore"
|
314 |
-
msgstr "無視するBot"
|
315 |
-
|
316 |
-
#: counter-options.php:382
|
317 |
-
#@ cpd
|
318 |
-
msgid "Anonymous IP"
|
319 |
-
msgstr "匿名IP"
|
320 |
-
|
321 |
-
#: counter-options.php:386
|
322 |
-
#@ cpd
|
323 |
-
msgid "Cache"
|
324 |
-
msgstr "キャッシュ"
|
325 |
-
|
326 |
-
#: counter-options.php:387
|
327 |
-
#@ cpd
|
328 |
-
msgid "I use a cache plugin. Count these visits with ajax."
|
329 |
-
msgstr "キャッシュプラグインを使用しています。ajaxでこれらの訪問者もカウントします。"
|
330 |
-
|
331 |
-
#: counter-options.php:390
|
332 |
-
#@ cpd
|
333 |
-
msgid "Clients and referrers"
|
334 |
-
msgstr "クライアントとリファラ"
|
335 |
-
|
336 |
-
#: counter-options.php:393
|
337 |
-
#@ cpd
|
338 |
-
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
339 |
-
msgstr "クライアントとリファラを表示・保存します。<br />多くのデータベース容量を必要としますがあなたのサイトへの訪問者情報をより細かく把握できます。"
|
340 |
-
|
341 |
-
#: counter-options.php:395
|
342 |
-
#@ cpd
|
343 |
-
msgid "Save URL only, no query string."
|
344 |
-
msgstr "URLのみ保存し、クエリ部分は含まない。"
|
345 |
-
|
346 |
-
#: counter-options.php:403
|
347 |
-
#@ default
|
348 |
-
msgid "Dashboard"
|
349 |
-
msgstr "ダッシュボード"
|
350 |
-
|
351 |
-
#: counter-options.php:419
|
352 |
-
#@ cpd
|
353 |
-
msgid "Who can see it"
|
354 |
-
msgstr "閲覧を許可する人"
|
355 |
-
|
356 |
-
#: counter-options.php:428
|
357 |
-
#@ cpd
|
358 |
-
msgid "custom"
|
359 |
-
msgstr "カスタム"
|
360 |
-
|
361 |
-
#: counter-options.php:430
|
362 |
-
#@ cpd
|
363 |
-
msgid "and higher are allowed to see the statistics page."
|
364 |
-
msgstr "これ以上の権限なら統計ページの閲覧を許可します。"
|
365 |
-
|
366 |
-
#: counter-options.php:432
|
367 |
-
#, php-format
|
368 |
-
#@ cpd
|
369 |
-
msgid "Set the %s capability %s a user need:"
|
370 |
-
msgstr "ユーザに必要な %s 権限 %s の設定:"
|
371 |
-
|
372 |
-
#: counter-options.php:439
|
373 |
-
#: counter-options.php:443
|
374 |
-
#@ cpd
|
375 |
-
msgid "How many posts do you want to see on dashboard page?"
|
376 |
-
msgstr "ダッシュボードで何件まで閲覧しますか?"
|
377 |
-
|
378 |
-
#: counter-options.php:442
|
379 |
-
#@ cpd
|
380 |
-
msgid "Latest Counts - Posts"
|
381 |
-
msgstr "最近のカウント - 記事"
|
382 |
-
|
383 |
-
#: counter-options.php:446
|
384 |
-
#@ cpd
|
385 |
-
msgid "Latest Counts - Days"
|
386 |
-
msgstr "最近のカウント - 日別"
|
387 |
-
|
388 |
-
#: counter-options.php:447
|
389 |
-
#: counter-options.php:451
|
390 |
-
#: counter-options.php:473
|
391 |
-
#@ cpd
|
392 |
-
msgid "How many days do you want look back?"
|
393 |
-
msgstr "本日から何日前まで表示しますか?"
|
394 |
-
|
395 |
-
#: counter-options.php:450
|
396 |
-
#@ cpd
|
397 |
-
msgid "Chart - Days"
|
398 |
-
msgstr "チャート(グラフ) - 日別"
|
399 |
-
|
400 |
-
#: counter-options.php:454
|
401 |
-
#@ cpd
|
402 |
-
msgid "Chart - Height"
|
403 |
-
msgstr "チャート(グラフ) - 高さ"
|
404 |
-
|
405 |
-
#: counter-options.php:455
|
406 |
-
#@ cpd
|
407 |
-
msgid "Height of the biggest bar"
|
408 |
-
msgstr "最大値のときの高さ"
|
409 |
-
|
410 |
-
#: counter-options.php:459
|
411 |
-
#@ cpd
|
412 |
-
msgid "Countries"
|
413 |
-
msgstr "国情報"
|
414 |
-
|
415 |
-
#: counter-options.php:460
|
416 |
-
#@ cpd
|
417 |
-
msgid "How many countries do you want to see on dashboard page?"
|
418 |
-
msgstr "ダッシュボード上で何ヶ国まで閲覧しますか?"
|
419 |
-
|
420 |
-
#: counter-options.php:465
|
421 |
-
#@ cpd
|
422 |
-
msgid "Substring of the user agent, separated by comma"
|
423 |
-
msgstr "ユーザーエージェントは種類ごとにカンマで区切ってください"
|
424 |
-
|
425 |
-
#: counter-options.php:468
|
426 |
-
#@ cpd
|
427 |
-
msgid "Referrers - Entries"
|
428 |
-
msgstr "リファラ - 投稿別"
|
429 |
-
|
430 |
-
#: counter-options.php:469
|
431 |
-
#@ cpd
|
432 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
433 |
-
msgstr "ダッシュボード上で何件のリファラを表示しますか?"
|
434 |
-
|
435 |
-
#: counter-options.php:472
|
436 |
-
#@ cpd
|
437 |
-
msgid "Referrers - Days"
|
438 |
-
msgstr "リファラ - 日数"
|
439 |
-
|
440 |
-
#: counter-options.php:476
|
441 |
-
#@ cpd
|
442 |
-
msgid "Local URLs"
|
443 |
-
msgstr "ローカルURLの扱い"
|
444 |
-
|
445 |
-
#: counter-options.php:477
|
446 |
-
#@ cpd
|
447 |
-
msgid "Show local referrers too."
|
448 |
-
msgstr "ローカルのリファラも表示する"
|
449 |
-
|
450 |
-
#: counter-options.php:484
|
451 |
-
#@ default
|
452 |
-
msgid "Posts"
|
453 |
-
msgstr "記事"
|
454 |
-
|
455 |
-
#: counter-options.php:484
|
456 |
-
#@ default
|
457 |
-
msgid "Pages"
|
458 |
-
msgstr "固定ページ"
|
459 |
-
|
460 |
-
#: counter-options.php:487
|
461 |
-
#@ cpd
|
462 |
-
msgid "Show in lists"
|
463 |
-
msgstr "リスト表示"
|
464 |
-
|
465 |
-
#: counter-options.php:488
|
466 |
-
#@ cpd
|
467 |
-
msgid "Show \"Reads per Post\" in a new column in post management views."
|
468 |
-
msgstr "投稿管理画面に新しいカラムを追加して\"記事別閲覧数\"を表示します。"
|
469 |
-
|
470 |
-
#: counter-options.php:495
|
471 |
-
#@ cpd
|
472 |
-
msgid "Start Values"
|
473 |
-
msgstr "スタートする値"
|
474 |
-
|
475 |
-
#: counter-options.php:499
|
476 |
-
#@ cpd
|
477 |
-
msgid "Here you can change the date of first count and add a start count."
|
478 |
-
msgstr "ここでカウントを開始した日とカウントに加算する値を変更できます。"
|
479 |
-
|
480 |
-
#: counter-options.php:503
|
481 |
-
#@ cpd
|
482 |
-
msgid "Start date"
|
483 |
-
msgstr "開始日"
|
484 |
-
|
485 |
-
#: counter-options.php:504
|
486 |
-
#@ cpd
|
487 |
-
msgid "Your old Counter starts at?"
|
488 |
-
msgstr "前に使っていたカウンターはいつからカウントを開始しましたか?"
|
489 |
-
|
490 |
-
#: counter-options.php:507
|
491 |
-
#: counter-options.php:511
|
492 |
-
#@ cpd
|
493 |
-
msgid "Start count"
|
494 |
-
msgstr "カウントスタート"
|
495 |
-
|
496 |
-
#: counter-options.php:508
|
497 |
-
#@ cpd
|
498 |
-
msgid "Add this value to \"Total visitors\"."
|
499 |
-
msgstr "この値を\"総訪問者数\"に追加します。"
|
500 |
-
|
501 |
-
#: counter-options.php:512
|
502 |
-
#@ cpd
|
503 |
-
msgid "Add this value to \"Total reads\"."
|
504 |
-
msgstr "この値を\"総閲覧数\"に追加します。"
|
505 |
-
|
506 |
-
#: counter-options.php:519
|
507 |
-
#@ cpd
|
508 |
-
msgid "Stylesheet"
|
509 |
-
msgstr "スタイルシート"
|
510 |
-
|
511 |
-
#: counter-options.php:522
|
512 |
-
#@ cpd
|
513 |
-
msgid "NO Stylesheet in Frontend"
|
514 |
-
msgstr "トップページにスタイルシートを使わない"
|
515 |
-
|
516 |
-
#: counter-options.php:523
|
517 |
-
#@ cpd
|
518 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
519 |
-
msgstr "トップページに\"counter.css\"を読み込みません。"
|
520 |
-
|
521 |
-
#: counter-options.php:530
|
522 |
-
#: counter-options.php:634
|
523 |
-
#@ cpd
|
524 |
-
msgid "Backup"
|
525 |
-
msgstr "バックアップ"
|
526 |
-
|
527 |
-
#: counter-options.php:533
|
528 |
-
#@ cpd
|
529 |
-
msgid "Entries per pass"
|
530 |
-
msgstr "許可するエントリ"
|
531 |
-
|
532 |
-
#: counter-options.php:536
|
533 |
-
#@ cpd
|
534 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
535 |
-
msgstr "何件のエントリを保存しますか? デフォルト: 10000"
|
536 |
-
|
537 |
-
#: counter-options.php:541
|
538 |
-
#@ cpd
|
539 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
540 |
-
msgstr "PHPのメモリ上限が 50 MB よりも少ない場合、真っ白なページかもっと小さい値にするようエラーメッセージが表示されます。"
|
541 |
-
|
542 |
-
#: counter-options.php:549
|
543 |
-
#@ cpd
|
544 |
-
msgid "Debug mode"
|
545 |
-
msgstr "デバッグモード"
|
546 |
-
|
547 |
-
#: counter-options.php:551
|
548 |
-
#@ cpd
|
549 |
-
msgid "Show debug informations at the bottom of all pages."
|
550 |
-
msgstr "全てのページの最下部にデバッグ情報を表示します。"
|
551 |
-
|
552 |
-
#: counter-options.php:556
|
553 |
-
#@ cpd
|
554 |
-
msgid "Update options"
|
555 |
-
msgstr "オプションの更新"
|
556 |
-
|
557 |
-
#: counter-options.php:575
|
558 |
-
#: massbots.php:35
|
559 |
-
#@ cpd
|
560 |
-
msgid "Mass Bots"
|
561 |
-
msgstr "Bot"
|
562 |
-
|
563 |
-
#: counter-options.php:579
|
564 |
-
#, php-format
|
565 |
-
#@ cpd
|
566 |
-
msgid "Show all IPs with more than %s page views per day"
|
567 |
-
msgstr "一日あたり %s ページ以上閲覧のIPを表示"
|
568 |
-
|
569 |
-
#: counter-options.php:580
|
570 |
-
#: notes.php:71
|
571 |
-
#: userperspan.php:44
|
572 |
-
#@ cpd
|
573 |
-
msgid "show"
|
574 |
-
msgstr "表示"
|
575 |
-
|
576 |
-
#: counter-options.php:588
|
577 |
-
#@ cpd
|
578 |
-
msgid "IP"
|
579 |
-
msgstr "IP"
|
580 |
-
|
581 |
-
#: counter-options.php:589
|
582 |
-
#: notes.php:75
|
583 |
-
#@ cpd
|
584 |
-
#@ default
|
585 |
-
msgid "Date"
|
586 |
-
msgstr "日付"
|
587 |
-
|
588 |
-
#: counter-options.php:590
|
589 |
-
#@ cpd
|
590 |
-
msgid "Client"
|
591 |
-
msgstr "クライアント"
|
592 |
-
|
593 |
-
#: counter-options.php:591
|
594 |
-
#@ cpd
|
595 |
-
msgid "Views"
|
596 |
-
msgstr "閲覧数"
|
597 |
-
|
598 |
-
#: counter-options.php:606
|
599 |
-
#: counter-options.php:622
|
600 |
-
#, php-format
|
601 |
-
#@ cpd
|
602 |
-
msgid "Delete these %s counts"
|
603 |
-
msgstr "これら %s 件を削除"
|
604 |
-
|
605 |
-
#: counter-options.php:638
|
606 |
-
#, php-format
|
607 |
-
#@ cpd
|
608 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
609 |
-
msgstr "カウンターテーブル %s のバックアップをwp-contentディレクトリに作成します(書き込み可能な場合)。"
|
610 |
-
|
611 |
-
#: counter-options.php:642
|
612 |
-
#@ cpd
|
613 |
-
msgid "Backup the database"
|
614 |
-
msgstr "データベースのバックアップ"
|
615 |
-
|
616 |
-
#: counter-options.php:663
|
617 |
-
#: counter-options.php:672
|
618 |
-
#@ cpd
|
619 |
-
msgid "Clean the database"
|
620 |
-
msgstr "データベースのクリーンアップ"
|
621 |
-
|
622 |
-
#: counter-options.php:666
|
623 |
-
#@ cpd
|
624 |
-
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
625 |
-
msgstr "\"スパムデータ\"を削除してカウンターテーブルをクリーンアップできます。<br />以前の\"スパムデータ\"に新規でBotを追加するとデータベースは保護されます。<br />ここではBotフィルターを再度実行したりBotの訪問データを削除できます。"
|
626 |
-
|
627 |
-
#: counter-options.php:681
|
628 |
-
#: counter-options.php:713
|
629 |
-
#@ cpd
|
630 |
-
msgid "Collect old data"
|
631 |
-
msgstr "古いデータの整理"
|
632 |
-
|
633 |
-
#: counter-options.php:686
|
634 |
-
#, php-format
|
635 |
-
#@ cpd
|
636 |
-
msgid "Current size of your counter table %s is %s."
|
637 |
-
msgstr "カウンターテーブル %s のサイズは %s です。"
|
638 |
-
|
639 |
-
#: counter-options.php:688
|
640 |
-
#@ cpd
|
641 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
642 |
-
msgstr "古いデータを整理し、カウンターテーブルをクリーンアップできます。<br/>月別・国別・記事別の購読数と訪問者数は保存されます。<br/>クライアントとリファラは削除されます。"
|
643 |
-
|
644 |
-
#: counter-options.php:693
|
645 |
-
#, php-format
|
646 |
-
#@ cpd
|
647 |
-
msgid "Currently your collection contains data until %s."
|
648 |
-
msgstr "現在、%s までのデータが整理するデータに含まれています。"
|
649 |
-
|
650 |
-
#: counter-options.php:697
|
651 |
-
#@ cpd
|
652 |
-
msgid "Normally new data will be added to the collection."
|
653 |
-
msgstr "通常、新しいデータは整理したデータに追加されます。"
|
654 |
-
|
655 |
-
#: counter-options.php:703
|
656 |
-
#@ cpd
|
657 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
658 |
-
msgstr "古いデータを消して、現在の内容のみの新しいデータをカウンターテーブルに作成する。"
|
659 |
-
|
660 |
-
#: counter-options.php:704
|
661 |
-
#, php-format
|
662 |
-
#@ cpd
|
663 |
-
msgid "All collected data until %s will deleted."
|
664 |
-
msgstr "%s までの全てのデータは削除されます。"
|
665 |
-
|
666 |
-
#: counter-options.php:709
|
667 |
-
#, php-format
|
668 |
-
#@ cpd
|
669 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
670 |
-
msgstr "過去 %s ヶ月間 + 今月 の記録をカウンターテーブルに保存する。"
|
671 |
-
|
672 |
-
#: counter-options.php:721
|
673 |
-
#@ cpd
|
674 |
-
msgid "Support"
|
675 |
-
msgstr "サポート"
|
676 |
-
|
677 |
-
#: counter-options.php:734
|
678 |
-
#@ cpd
|
679 |
-
msgid "GeoIP - Countries"
|
680 |
-
msgstr "GeoIP - 国別統計"
|
681 |
-
|
682 |
-
#: counter-options.php:737
|
683 |
-
#@ cpd
|
684 |
-
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
685 |
-
msgstr "IPアドレスをチェックしてGeoIPデータベースと照合することにより全ての記事で国データを取得できます。これにはしばらく時間がかかります。"
|
686 |
-
|
687 |
-
#: counter-options.php:743
|
688 |
-
#@ cpd
|
689 |
-
msgid "Update old counter data"
|
690 |
-
msgstr "過去のカウンターデータを更新"
|
691 |
-
|
692 |
-
#: counter-options.php:750
|
693 |
-
#@ cpd
|
694 |
-
msgid "Download a new version of GeoIP.dat file."
|
695 |
-
msgstr "GeoIP.datファイルの新しいバージョンをダウンロードする。"
|
696 |
-
|
697 |
-
#: counter-options.php:755
|
698 |
-
#@ cpd
|
699 |
-
msgid "Update GeoIP database"
|
700 |
-
msgstr "GeoIPデータベースの更新"
|
701 |
-
|
702 |
-
#: counter-options.php:760
|
703 |
-
#@ cpd
|
704 |
-
msgid "More informations about GeoIP"
|
705 |
-
msgstr "GeoIPの詳しい情報"
|
706 |
-
|
707 |
-
#: counter-options.php:768
|
708 |
-
#@ cpd
|
709 |
-
msgid "ReActivation"
|
710 |
-
msgstr "プラグインを再度有効にする"
|
711 |
-
|
712 |
-
#: counter-options.php:771
|
713 |
-
#@ cpd
|
714 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
715 |
-
msgstr "ここから手動で機能を開始できます。<br/>プラグインを無効にしてもう一度有効にするのと同じ効果です。"
|
716 |
-
|
717 |
-
#: counter-options.php:776
|
718 |
-
#@ cpd
|
719 |
-
msgid "ReActivate the plugin"
|
720 |
-
msgstr "プラグインを再度有効にする"
|
721 |
-
|
722 |
-
#: counter-options.php:784
|
723 |
-
#: counter-options.php:794
|
724 |
-
#@ cpd
|
725 |
-
msgid "Reset the counter"
|
726 |
-
msgstr "カウンターのリセット"
|
727 |
-
|
728 |
-
#: counter-options.php:787
|
729 |
-
#@ cpd
|
730 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
731 |
-
msgstr "テーブルを全て空にしてリセットできます。全てが0になります!<br />最新のデータが必要な場合はバックアップを作成してください!"
|
732 |
-
|
733 |
-
#: counter-options.php:793
|
734 |
-
#: counter-options.php:816
|
735 |
-
#@ cpd
|
736 |
-
msgid "Yes"
|
737 |
-
msgstr "はい"
|
738 |
-
|
739 |
-
#: counter-options.php:806
|
740 |
-
#@ cpd
|
741 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
742 |
-
msgstr "もしも\"Count per Day\"を無効にするだけであれば使用しているデータベース上のテーブルは保存され続けます。"
|
743 |
-
|
744 |
-
#: counter-options.php:807
|
745 |
-
#@ cpd
|
746 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
747 |
-
msgstr "ここから\"Count per Day\"が使用しているテーブルを削除し無効にすることができます。"
|
748 |
-
|
749 |
-
#: counter-options.php:810
|
750 |
-
#@ cpd
|
751 |
-
msgid "WARNING"
|
752 |
-
msgstr "警告"
|
753 |
-
|
754 |
-
#: counter-options.php:811
|
755 |
-
#@ cpd
|
756 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
757 |
-
msgstr "データベース上にある以下のテーブル(全てのカウンターデータ)が削除されます。"
|
758 |
-
|
759 |
-
#: counter-options.php:813
|
760 |
-
#@ cpd
|
761 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
762 |
-
msgstr "\"Count per Day\"を再インストールした場合もカウントは0から始まります。"
|
763 |
-
|
764 |
-
#: counter-options.php:817
|
765 |
-
#@ cpd
|
766 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
767 |
-
msgstr "本当にCount per Dayを無効にして全てのデータを削除しますか?"
|
768 |
-
|
769 |
-
#: counter.php:155
|
770 |
-
#: counter.php:1197
|
771 |
-
#@ cpd
|
772 |
-
msgid "Total reads"
|
773 |
-
msgstr "総閲覧数"
|
774 |
-
|
775 |
-
#: counter.php:156
|
776 |
-
#: counter.php:1198
|
777 |
-
#@ cpd
|
778 |
-
msgid "Reads today"
|
779 |
-
msgstr "今日の閲覧数"
|
780 |
-
|
781 |
-
#: counter.php:157
|
782 |
-
#: counter.php:1199
|
783 |
-
#@ cpd
|
784 |
-
msgid "Reads yesterday"
|
785 |
-
msgstr "昨日の閲覧数"
|
786 |
-
|
787 |
-
#: counter.php:158
|
788 |
-
#: counter.php:1200
|
789 |
-
#@ cpd
|
790 |
-
msgid "Reads last week"
|
791 |
-
msgstr "先週の閲覧数"
|
792 |
-
|
793 |
-
#: counter.php:161
|
794 |
-
#: counter.php:1208
|
795 |
-
#@ cpd
|
796 |
-
msgid "Visitors currently online"
|
797 |
-
msgstr "現在オンライン中の人数"
|
798 |
-
|
799 |
-
#: counter.php:162
|
800 |
-
#: counter.php:1203
|
801 |
-
#@ cpd
|
802 |
-
msgid "Visitors today"
|
803 |
-
msgstr "今日の訪問者数"
|
804 |
-
|
805 |
-
#: counter.php:163
|
806 |
-
#: counter.php:1204
|
807 |
-
#@ cpd
|
808 |
-
msgid "Visitors yesterday"
|
809 |
-
msgstr "昨日の訪問者数"
|
810 |
-
|
811 |
-
#: counter.php:164
|
812 |
-
#: counter.php:1205
|
813 |
-
#@ cpd
|
814 |
-
msgid "Visitors last week"
|
815 |
-
msgstr "先週の訪問者数"
|
816 |
-
|
817 |
-
#: counter.php:165
|
818 |
-
#: counter.php:899
|
819 |
-
#@ cpd
|
820 |
-
msgid "Visitors"
|
821 |
-
msgstr "訪問者数"
|
822 |
-
|
823 |
-
#: counter.php:167
|
824 |
-
#: counter.php:825
|
825 |
-
#: counter.php:1209
|
826 |
-
#@ cpd
|
827 |
-
msgid "Counter starts on"
|
828 |
-
msgstr "カウント開始日"
|
829 |
-
|
830 |
-
#: counter.php:168
|
831 |
-
#: counter.php:169
|
832 |
-
#@ cpd
|
833 |
-
msgid "Most visited day"
|
834 |
-
msgstr "最も多かった日"
|
835 |
-
|
836 |
-
#: counter.php:262
|
837 |
-
#@ cpd
|
838 |
-
msgid "Reads per day"
|
839 |
-
msgstr "一日あたりの閲覧数"
|
840 |
-
|
841 |
-
#: counter.php:353
|
842 |
-
#: counter.php:1041
|
843 |
-
#@ cpd
|
844 |
-
msgid "Map"
|
845 |
-
msgstr "マップ"
|
846 |
-
|
847 |
-
#: counter.php:672
|
848 |
-
#, php-format
|
849 |
-
#@ cpd
|
850 |
-
msgid "The %s most visited posts in last %s days:"
|
851 |
-
msgstr "最も訪問者が多かった記事 %s 件 (過去 %s 日間)"
|
852 |
-
|
853 |
-
#: counter.php:786
|
854 |
-
#@ default
|
855 |
-
msgid "Show"
|
856 |
-
msgstr "表示"
|
857 |
-
|
858 |
-
#: counter.php:788
|
859 |
-
#: notes.php:42
|
860 |
-
#: notes.php:76
|
861 |
-
#@ cpd
|
862 |
-
msgid "Notes"
|
863 |
-
msgstr "メモ"
|
864 |
-
|
865 |
-
#: counter.php:821
|
866 |
-
#@ cpd
|
867 |
-
msgid "Other"
|
868 |
-
msgstr "その他"
|
869 |
-
|
870 |
-
#: counter.php:845
|
871 |
-
#, php-format
|
872 |
-
#@ cpd
|
873 |
-
msgid "The %s referrers in last %s days:"
|
874 |
-
msgstr " %s 件のリファラ (過去 %s 日間)"
|
875 |
-
|
876 |
-
#: counter.php:976
|
877 |
-
#@ default
|
878 |
-
msgid "Edit Post"
|
879 |
-
msgstr "記事編集"
|
880 |
-
|
881 |
-
#: counter.php:985
|
882 |
-
#@ default
|
883 |
-
msgid "Category"
|
884 |
-
msgstr "カテゴリ"
|
885 |
-
|
886 |
-
#: counter.php:988
|
887 |
-
#@ default
|
888 |
-
msgid "Tag"
|
889 |
-
msgstr "タグ"
|
890 |
-
|
891 |
-
#: counter.php:991
|
892 |
-
#: massbots.php:52
|
893 |
-
#: userperspan.php:63
|
894 |
-
#@ default
|
895 |
-
msgid "Front page displays"
|
896 |
-
msgstr "トップページの表示"
|
897 |
-
|
898 |
-
#: counter.php:1196
|
899 |
-
#@ cpd
|
900 |
-
msgid "This post"
|
901 |
-
msgstr "現在の記事"
|
902 |
-
|
903 |
-
#: counter.php:1220
|
904 |
-
#@ default
|
905 |
-
msgid "Title"
|
906 |
-
msgstr "タイトル"
|
907 |
-
|
908 |
-
#: counter.php:1239
|
909 |
-
#@ cpd
|
910 |
-
msgid "drag and drop to sort"
|
911 |
-
msgstr "ドラッグ アンド ドロップ で並び替え"
|
912 |
-
|
913 |
-
#: notes.php:77
|
914 |
-
#@ default
|
915 |
-
msgid "Action"
|
916 |
-
msgstr "アクション"
|
917 |
-
|
918 |
-
#: notes.php:82
|
919 |
-
#@ cpd
|
920 |
-
msgid "add"
|
921 |
-
msgstr "追加"
|
922 |
-
|
923 |
-
#: notes.php:98
|
924 |
-
#@ cpd
|
925 |
-
msgid "save"
|
926 |
-
msgstr "保存"
|
927 |
-
|
928 |
-
#: notes.php:99
|
929 |
-
#@ cpd
|
930 |
-
msgid "delete"
|
931 |
-
msgstr "削除"
|
932 |
-
|
933 |
-
#: notes.php:110
|
934 |
-
#@ cpd
|
935 |
-
msgid "edit"
|
936 |
-
msgstr "編集"
|
937 |
-
|
938 |
-
#: userperspan.php:38
|
939 |
-
#@ cpd
|
940 |
-
msgid "Start"
|
941 |
-
msgstr "開始"
|
942 |
-
|
943 |
-
#: userperspan.php:40
|
944 |
-
#@ cpd
|
945 |
-
msgid "End"
|
946 |
-
msgstr "終了"
|
947 |
-
|
948 |
-
#: userperspan.php:42
|
949 |
-
#@ cpd
|
950 |
-
msgid "PostID"
|
951 |
-
msgstr "記事ID"
|
952 |
-
|
953 |
-
#: userperspan.php:50
|
954 |
-
#@ cpd
|
955 |
-
msgid "no data found"
|
956 |
-
msgstr "データが見つかりません"
|
957 |
-
|
958 |
-
#: geoip/geoip.php:93
|
959 |
-
#@ cpd
|
960 |
-
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
961 |
-
msgstr "申し訳ありません、 php.ini が無効になっているか必要な機能(zlib)がインストールされていません。"
|
962 |
-
|
963 |
-
#: geoip/geoip.php:117
|
964 |
-
#@ cpd
|
965 |
-
msgid "New GeoIP database installed."
|
966 |
-
msgstr "新しいGeoIPデータベースがインストールされました。"
|
967 |
-
|
968 |
-
#: geoip/geoip.php:119
|
969 |
-
#@ cpd
|
970 |
-
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
971 |
-
msgstr "申し訳ありません、エラーが発生しました。 再度トライするか \"geoip\" のディレクトリ権限が777であることを確認してください。"
|
972 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-nb_NO.mo
DELETED
Binary file
|
locale/cpd-nb_NO.po
DELETED
@@ -1,972 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count per Day\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-08-10 20:10+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Stein Ivar Johnsen <sijo@dyg.no>\n"
|
8 |
-
"Language-Team: Punktlig IKT <oversetter@punktlig-ikt.no>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: Norwegian bokmal\n"
|
14 |
-
"X-Poedit-Country: Norway\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Poedit-Basepath: d:/wordpress/plugins/count-per-day\n"
|
18 |
-
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Poedit-SearchPath-0: f:/wordpress/plugins/count-per-day\n"
|
20 |
-
|
21 |
-
#@ cpd
|
22 |
-
#: counter-options.php:49
|
23 |
-
msgid "Options updated"
|
24 |
-
msgstr "Innstillingene er oppdatert"
|
25 |
-
|
26 |
-
#@ cpd
|
27 |
-
#: counter-options.php:60
|
28 |
-
#, php-format
|
29 |
-
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
30 |
-
msgstr "Land oppdatert. <strong>%s</strong> poster i %s har stadig ingen angivelse av land."
|
31 |
-
|
32 |
-
#@ cpd
|
33 |
-
#: counter-options.php:65
|
34 |
-
msgid "update next"
|
35 |
-
msgstr "oppdater neste"
|
36 |
-
|
37 |
-
#@ cpd
|
38 |
-
#: counter-options.php:102
|
39 |
-
#, php-format
|
40 |
-
msgid "Mass Bots cleaned. %s counts deleted."
|
41 |
-
msgstr "Massebotter renset. %s rader slettet."
|
42 |
-
|
43 |
-
#@ cpd
|
44 |
-
#: counter-options.php:112
|
45 |
-
#, php-format
|
46 |
-
msgid "Database cleaned. %s rows deleted."
|
47 |
-
msgstr "Databasen renset. %s rader slettet."
|
48 |
-
|
49 |
-
#@ cpd
|
50 |
-
#: counter-options.php:122
|
51 |
-
msgid "Counter reseted."
|
52 |
-
msgstr "Teller nullstilt."
|
53 |
-
|
54 |
-
#@ cpd
|
55 |
-
#: counter-options.php:127
|
56 |
-
#: counter-options.php:810
|
57 |
-
msgid "UNINSTALL Count per Day"
|
58 |
-
msgstr "AVINSTALLER Count per Day"
|
59 |
-
|
60 |
-
#@ cpd
|
61 |
-
#: counter-options.php:132
|
62 |
-
#: counter-options.php:133
|
63 |
-
#: counter-options.php:134
|
64 |
-
#, php-format
|
65 |
-
msgid "Table %s deleted"
|
66 |
-
msgstr "Tabellen %s ble slettet"
|
67 |
-
|
68 |
-
#@ cpd
|
69 |
-
#: counter-options.php:135
|
70 |
-
msgid "Options deleted"
|
71 |
-
msgstr "Innstillinger slettet"
|
72 |
-
|
73 |
-
#@ cpd
|
74 |
-
#: counter-options.php:316
|
75 |
-
#: counter-options.php:796
|
76 |
-
msgid "Uninstall"
|
77 |
-
msgstr "Avinstaller"
|
78 |
-
|
79 |
-
#@ cpd
|
80 |
-
#: counter-options.php:317
|
81 |
-
msgid "Click here"
|
82 |
-
msgstr "Klikk her"
|
83 |
-
|
84 |
-
#@ cpd
|
85 |
-
#: counter-options.php:317
|
86 |
-
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
87 |
-
msgstr "for å fullføre avinstalleringen og deaktivere \"Count per Day\"."
|
88 |
-
|
89 |
-
#@ cpd
|
90 |
-
#: counter-options.php:355
|
91 |
-
msgid "Online time"
|
92 |
-
msgstr "Tid online"
|
93 |
-
|
94 |
-
#@ cpd
|
95 |
-
#: counter-options.php:356
|
96 |
-
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
97 |
-
msgstr "Sekunder for online-teller. Brukes om \"Besøkende online\" i kontrollpanelet."
|
98 |
-
|
99 |
-
#@ cpd
|
100 |
-
#: counter-options.php:359
|
101 |
-
msgid "Logged on Users"
|
102 |
-
msgstr "Innloggede brukere"
|
103 |
-
|
104 |
-
#@ cpd
|
105 |
-
#: counter-options.php:361
|
106 |
-
msgid "count too"
|
107 |
-
msgstr "tell også"
|
108 |
-
|
109 |
-
#@ cpd
|
110 |
-
#: counter-options.php:362
|
111 |
-
msgid "until User Level"
|
112 |
-
msgstr "til og med brukernivå"
|
113 |
-
|
114 |
-
#@ cpd
|
115 |
-
#: counter-options.php:373
|
116 |
-
msgid "Auto counter"
|
117 |
-
msgstr "Auto-teller"
|
118 |
-
|
119 |
-
#@ cpd
|
120 |
-
#: counter-options.php:374
|
121 |
-
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
122 |
-
msgstr "Teller automatisk enkelt-innlegg og -sider; ingen endringer i maler er nødvendig."
|
123 |
-
|
124 |
-
#@ cpd
|
125 |
-
#: counter-options.php:377
|
126 |
-
msgid "Bots to ignore"
|
127 |
-
msgstr "Ignorer følgende botter"
|
128 |
-
|
129 |
-
#@ cpd
|
130 |
-
#: counter-options.php:381
|
131 |
-
msgid "Anonymous IP"
|
132 |
-
msgstr "Anonym IP"
|
133 |
-
|
134 |
-
#@ cpd
|
135 |
-
#: counter-options.php:385
|
136 |
-
msgid "Cache"
|
137 |
-
msgstr "Buffer"
|
138 |
-
|
139 |
-
#@ cpd
|
140 |
-
#: counter-options.php:386
|
141 |
-
msgid "I use a cache plugin. Count these visits with ajax."
|
142 |
-
msgstr "Jeg bruker et buffer-innstikk. Tell disse besøkene med Ajax."
|
143 |
-
|
144 |
-
#@ cpd
|
145 |
-
#: counter-options.php:561
|
146 |
-
msgid "Update options"
|
147 |
-
msgstr "Oppdater innstillinger"
|
148 |
-
|
149 |
-
#@ default
|
150 |
-
#: counter-options.php:403
|
151 |
-
msgid "Dashboard"
|
152 |
-
msgstr "Kontrollpanel"
|
153 |
-
|
154 |
-
#@ cpd
|
155 |
-
#: counter-core.php:727
|
156 |
-
#: counter-options.php:438
|
157 |
-
msgid "Visitors per post"
|
158 |
-
msgstr "Besøkende pr innlegg"
|
159 |
-
|
160 |
-
#@ cpd
|
161 |
-
#: counter-options.php:439
|
162 |
-
#: counter-options.php:443
|
163 |
-
msgid "How many posts do you want to see on dashboard page?"
|
164 |
-
msgstr "Hvor mange innlegg vil du se på kontrollpanelet?"
|
165 |
-
|
166 |
-
#@ cpd
|
167 |
-
#: counter-options.php:442
|
168 |
-
msgid "Latest Counts - Posts"
|
169 |
-
msgstr "Sist leste - innlegg"
|
170 |
-
|
171 |
-
#@ cpd
|
172 |
-
#: counter-options.php:446
|
173 |
-
msgid "Latest Counts - Days"
|
174 |
-
msgstr "Sist leste - dager"
|
175 |
-
|
176 |
-
#@ cpd
|
177 |
-
#: counter-options.php:447
|
178 |
-
#: counter-options.php:451
|
179 |
-
#: counter-options.php:473
|
180 |
-
msgid "How many days do you want look back?"
|
181 |
-
msgstr "Hvor mange dager vil du se tilbake?"
|
182 |
-
|
183 |
-
#@ cpd
|
184 |
-
#: counter-options.php:450
|
185 |
-
msgid "Chart - Days"
|
186 |
-
msgstr "Diagram - dager"
|
187 |
-
|
188 |
-
#@ cpd
|
189 |
-
#: counter-options.php:454
|
190 |
-
msgid "Chart - Height"
|
191 |
-
msgstr "Diagram - høyde"
|
192 |
-
|
193 |
-
#@ cpd
|
194 |
-
#: counter-options.php:455
|
195 |
-
msgid "Height of the biggest bar"
|
196 |
-
msgstr "Høyde på den største søylen"
|
197 |
-
|
198 |
-
#@ cpd
|
199 |
-
#: counter-options.php:459
|
200 |
-
msgid "Countries"
|
201 |
-
msgstr "Land"
|
202 |
-
|
203 |
-
#@ cpd
|
204 |
-
#: counter-options.php:460
|
205 |
-
msgid "How many countries do you want to see on dashboard page?"
|
206 |
-
msgstr "Hvor mange land vil du se på innstikkets side i kontrollpanelet?"
|
207 |
-
|
208 |
-
#@ cpd
|
209 |
-
#: counter-core.php:733
|
210 |
-
#: counter-options.php:464
|
211 |
-
msgid "Browsers"
|
212 |
-
msgstr "Nettlesere"
|
213 |
-
|
214 |
-
#@ cpd
|
215 |
-
#: counter-options.php:465
|
216 |
-
msgid "Substring of the user agent, separated by comma"
|
217 |
-
msgstr "Delstrenger som identifiserer en nettleser, kommaseparert"
|
218 |
-
|
219 |
-
#@ cpd
|
220 |
-
#: counter-options.php:488
|
221 |
-
msgid "Show in lists"
|
222 |
-
msgstr "Vis som liste"
|
223 |
-
|
224 |
-
#@ cpd
|
225 |
-
#: counter-options.php:489
|
226 |
-
msgid "Show \"Reads per Post\" in a new column in post management views."
|
227 |
-
msgstr "Vis \"Lest pr innlegg\" i en ny kolonne siden for innleggsadministrasjon."
|
228 |
-
|
229 |
-
#@ cpd
|
230 |
-
#: counter-options.php:497
|
231 |
-
msgid "Start Values"
|
232 |
-
msgstr "Startverdier"
|
233 |
-
|
234 |
-
#@ cpd
|
235 |
-
#: counter-options.php:501
|
236 |
-
msgid "Here you can change the date of first count and add a start count."
|
237 |
-
msgstr "Her kan du endre datoen på første treff og tilføye et tall som telleren skal starte på."
|
238 |
-
|
239 |
-
#@ cpd
|
240 |
-
#: counter-options.php:505
|
241 |
-
msgid "Start date"
|
242 |
-
msgstr "Startdato"
|
243 |
-
|
244 |
-
#@ cpd
|
245 |
-
#: counter-options.php:506
|
246 |
-
msgid "Your old Counter starts at?"
|
247 |
-
msgstr "Din gamle teller starter når?"
|
248 |
-
|
249 |
-
#@ cpd
|
250 |
-
#: counter-options.php:509
|
251 |
-
#: counter-options.php:513
|
252 |
-
msgid "Start count"
|
253 |
-
msgstr "Start på antall treff"
|
254 |
-
|
255 |
-
#@ cpd
|
256 |
-
#: counter-options.php:510
|
257 |
-
msgid "Add this value to \"Total visitors\"."
|
258 |
-
msgstr "Tilføy denne verdien til \"Besøkende i alt\"."
|
259 |
-
|
260 |
-
#@ cpd
|
261 |
-
#: counter-options.php:514
|
262 |
-
msgid "Add this value to \"Total reads\"."
|
263 |
-
msgstr "Tilføy denne verdi til \"Lest i alt\"."
|
264 |
-
|
265 |
-
#@ cpd
|
266 |
-
#: counter-options.php:554
|
267 |
-
msgid "Debug mode"
|
268 |
-
msgstr "Feilsøkingsmodus"
|
269 |
-
|
270 |
-
#@ cpd
|
271 |
-
#: counter-options.php:556
|
272 |
-
msgid "Show debug informations at the bottom of all pages."
|
273 |
-
msgstr "Vis feilsøkingsinformasjon nederst på alle sider."
|
274 |
-
|
275 |
-
#@ cpd
|
276 |
-
#: counter-options.php:727
|
277 |
-
msgid "GeoIP - Countries"
|
278 |
-
msgstr "GeoIP - Land"
|
279 |
-
|
280 |
-
#@ cpd
|
281 |
-
#: counter-options.php:736
|
282 |
-
msgid "Update old counter data"
|
283 |
-
msgstr "Oppdater gamle tellerdata"
|
284 |
-
|
285 |
-
#@ cpd
|
286 |
-
#: counter-options.php:748
|
287 |
-
msgid "Update GeoIP database"
|
288 |
-
msgstr "Oppdater GeoIP-database"
|
289 |
-
|
290 |
-
#@ cpd
|
291 |
-
#: counter-options.php:743
|
292 |
-
msgid "Download a new version of GeoIP.dat file."
|
293 |
-
msgstr "Last ned en ny versjon av GeoIP.dat-filen."
|
294 |
-
|
295 |
-
#@ cpd
|
296 |
-
#: counter-options.php:753
|
297 |
-
msgid "More informations about GeoIP"
|
298 |
-
msgstr "Flere opplysninger om GeoIP"
|
299 |
-
|
300 |
-
#@ cpd
|
301 |
-
#: counter-options.php:580
|
302 |
-
#: massbots.php:35
|
303 |
-
msgid "Mass Bots"
|
304 |
-
msgstr "Massebotter"
|
305 |
-
|
306 |
-
#@ cpd
|
307 |
-
#: counter-options.php:584
|
308 |
-
#, php-format
|
309 |
-
msgid "Show all IPs with more than %s page views per day"
|
310 |
-
msgstr "Vis alle IP-adresser med mer enn %s sidevisninger pr dag"
|
311 |
-
|
312 |
-
#@ cpd
|
313 |
-
#: counter-options.php:585
|
314 |
-
#: notes.php:71
|
315 |
-
#: userperspan.php:44
|
316 |
-
msgid "show"
|
317 |
-
msgstr "vis"
|
318 |
-
|
319 |
-
#@ cpd
|
320 |
-
#: counter-options.php:593
|
321 |
-
msgid "IP"
|
322 |
-
msgstr "IP"
|
323 |
-
|
324 |
-
#@ cpd
|
325 |
-
#@ default
|
326 |
-
#: counter-options.php:594
|
327 |
-
#: notes.php:75
|
328 |
-
msgid "Date"
|
329 |
-
msgstr "Dato"
|
330 |
-
|
331 |
-
#@ cpd
|
332 |
-
#: counter-options.php:595
|
333 |
-
msgid "Client"
|
334 |
-
msgstr "Klient"
|
335 |
-
|
336 |
-
#@ cpd
|
337 |
-
#: counter-options.php:596
|
338 |
-
msgid "Views"
|
339 |
-
msgstr "Visninger"
|
340 |
-
|
341 |
-
#@ cpd
|
342 |
-
#: counter-options.php:611
|
343 |
-
#: counter-options.php:627
|
344 |
-
#, php-format
|
345 |
-
msgid "Delete these %s counts"
|
346 |
-
msgstr "Slett disse %s treffene"
|
347 |
-
|
348 |
-
#@ cpd
|
349 |
-
#: counter-options.php:656
|
350 |
-
#: counter-options.php:665
|
351 |
-
msgid "Clean the database"
|
352 |
-
msgstr "Rens databasen"
|
353 |
-
|
354 |
-
#@ cpd
|
355 |
-
#: counter-options.php:659
|
356 |
-
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
357 |
-
msgstr "Du kan rense tellertabellen for \"spam-data\".<br />Når du tilføyer nye botter ovenfor, forblir de gamle \"spam-data\" i databasen.<br />Her kan du kjøre bot-filteret igjen og slette bot-besøkene."
|
358 |
-
|
359 |
-
#@ cpd
|
360 |
-
#: counter-options.php:777
|
361 |
-
#: counter-options.php:787
|
362 |
-
msgid "Reset the counter"
|
363 |
-
msgstr "Nullstill telleren"
|
364 |
-
|
365 |
-
#@ cpd
|
366 |
-
#: counter-options.php:780
|
367 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
368 |
-
msgstr "Du kan nullstille telleren ved å tømme tabellen. Alt blir nullstilt.<br />Ta sikkerhetskopi hvis du har bruk for nåværende data."
|
369 |
-
|
370 |
-
#@ cpd
|
371 |
-
#: counter-options.php:799
|
372 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
373 |
-
msgstr "Hvis \"Count per Day\" bare deaktiveres, blir tabellene i databasen bevart."
|
374 |
-
|
375 |
-
#@ cpd
|
376 |
-
#: counter-options.php:800
|
377 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
378 |
-
msgstr "Her kan du slette tabellene og deaktivere \"Count per Day\"."
|
379 |
-
|
380 |
-
#@ cpd
|
381 |
-
#: counter-options.php:803
|
382 |
-
msgid "WARNING"
|
383 |
-
msgstr "ADVARSEL"
|
384 |
-
|
385 |
-
#@ cpd
|
386 |
-
#: counter-options.php:804
|
387 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
388 |
-
msgstr "Disse tabellene (med ALLE teller-data) vil bli slettet."
|
389 |
-
|
390 |
-
#@ cpd
|
391 |
-
#: counter-options.php:806
|
392 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
393 |
-
msgstr "Hvis \"Count per Day\" re-installeres, vil telleren starte på 0."
|
394 |
-
|
395 |
-
#@ cpd
|
396 |
-
#: counter-options.php:786
|
397 |
-
#: counter-options.php:809
|
398 |
-
msgid "Yes"
|
399 |
-
msgstr "Ja"
|
400 |
-
|
401 |
-
#@ cpd
|
402 |
-
#: counter-options.php:810
|
403 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
404 |
-
msgstr "Er du sikker på at du vil deaktivere \"Count per Day\" og slette alle data?"
|
405 |
-
|
406 |
-
#@ cpd
|
407 |
-
#: counter-options.php:714
|
408 |
-
msgid "Support"
|
409 |
-
msgstr "Støtte"
|
410 |
-
|
411 |
-
#@ cpd
|
412 |
-
#: counter-core.php:689
|
413 |
-
#, php-format
|
414 |
-
msgid "Time for Count per Day: <code>%s</code>."
|
415 |
-
msgstr "Tidspunkt for Count per Day: <code>%s</code>."
|
416 |
-
|
417 |
-
#@ cpd
|
418 |
-
#: counter-core.php:690
|
419 |
-
msgid "Bug? Problem? Question? Hint? Praise?"
|
420 |
-
msgstr "Feil? Problemer? Spørsmål? Tips? Ros?"
|
421 |
-
|
422 |
-
#@ cpd
|
423 |
-
#: counter-core.php:691
|
424 |
-
#, php-format
|
425 |
-
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
426 |
-
msgstr "Skriv en kommentar på <a href=\"%s\">innstikksiden</a>."
|
427 |
-
|
428 |
-
#@ cpd
|
429 |
-
#: counter.php:155
|
430 |
-
#: counter.php:1197
|
431 |
-
msgid "Total reads"
|
432 |
-
msgstr "Visninger i alt"
|
433 |
-
|
434 |
-
#@ cpd
|
435 |
-
#: counter.php:156
|
436 |
-
#: counter.php:1198
|
437 |
-
msgid "Reads today"
|
438 |
-
msgstr "Visninger i dag"
|
439 |
-
|
440 |
-
#@ cpd
|
441 |
-
#: counter.php:157
|
442 |
-
#: counter.php:1199
|
443 |
-
msgid "Reads yesterday"
|
444 |
-
msgstr "Visninger i går"
|
445 |
-
|
446 |
-
#@ cpd
|
447 |
-
#: counter-core.php:723
|
448 |
-
#: counter.php:160
|
449 |
-
#: counter.php:1010
|
450 |
-
#: counter.php:1202
|
451 |
-
msgid "Total visitors"
|
452 |
-
msgstr "Antall besøkende i alt"
|
453 |
-
|
454 |
-
#@ cpd
|
455 |
-
#: counter.php:161
|
456 |
-
#: counter.php:1208
|
457 |
-
msgid "Visitors currently online"
|
458 |
-
msgstr "besøkende online akkurat nå"
|
459 |
-
|
460 |
-
#@ cpd
|
461 |
-
#: counter.php:162
|
462 |
-
#: counter.php:1203
|
463 |
-
msgid "Visitors today"
|
464 |
-
msgstr "besøkende i dag"
|
465 |
-
|
466 |
-
#@ cpd
|
467 |
-
#: counter.php:163
|
468 |
-
#: counter.php:1204
|
469 |
-
msgid "Visitors yesterday"
|
470 |
-
msgstr "besøkende i går"
|
471 |
-
|
472 |
-
#@ cpd
|
473 |
-
#: counter.php:164
|
474 |
-
#: counter.php:1205
|
475 |
-
msgid "Visitors last week"
|
476 |
-
msgstr "besøkende siste uke"
|
477 |
-
|
478 |
-
#@ cpd
|
479 |
-
#: counter-core.php:729
|
480 |
-
#: counter.php:166
|
481 |
-
#: counter.php:263
|
482 |
-
#: counter.php:1012
|
483 |
-
#: counter.php:1207
|
484 |
-
#: userperspan.php:34
|
485 |
-
msgid "Visitors per day"
|
486 |
-
msgstr "besøkende pr dag"
|
487 |
-
|
488 |
-
#@ cpd
|
489 |
-
#: counter.php:167
|
490 |
-
#: counter.php:825
|
491 |
-
#: counter.php:1209
|
492 |
-
msgid "Counter starts on"
|
493 |
-
msgstr "Teller starter på"
|
494 |
-
|
495 |
-
#@ cpd
|
496 |
-
#: counter.php:788
|
497 |
-
#: notes.php:42
|
498 |
-
#: notes.php:76
|
499 |
-
msgid "Notes"
|
500 |
-
msgstr "Merknader"
|
501 |
-
|
502 |
-
#@ cpd
|
503 |
-
#: counter.php:672
|
504 |
-
#, php-format
|
505 |
-
msgid "The %s most visited posts in last %s days:"
|
506 |
-
msgstr "De %s mest viste innleggene de siste %s dagene:"
|
507 |
-
|
508 |
-
#@ default
|
509 |
-
#: counter.php:786
|
510 |
-
msgid "Show"
|
511 |
-
msgstr "Vis"
|
512 |
-
|
513 |
-
#@ cpd
|
514 |
-
#: counter.php:821
|
515 |
-
msgid "Other"
|
516 |
-
msgstr "Andre"
|
517 |
-
|
518 |
-
#@ default
|
519 |
-
#: counter.php:976
|
520 |
-
msgid "Edit Post"
|
521 |
-
msgstr "Rediger innlegg"
|
522 |
-
|
523 |
-
#@ default
|
524 |
-
#: counter.php:991
|
525 |
-
#: massbots.php:52
|
526 |
-
#: userperspan.php:63
|
527 |
-
msgid "Front page displays"
|
528 |
-
msgstr "Visninger av forsiden"
|
529 |
-
|
530 |
-
#@ default
|
531 |
-
#: counter-core.php:575
|
532 |
-
#: counter-options.php:341
|
533 |
-
#: counter-options.php:565
|
534 |
-
msgid "Settings"
|
535 |
-
msgstr "Innstillinger"
|
536 |
-
|
537 |
-
# tjekkes
|
538 |
-
#@ cpd
|
539 |
-
#: counter-core.php:639
|
540 |
-
#: counter-options.php:392
|
541 |
-
#: counter.php:159
|
542 |
-
#: counter.php:875
|
543 |
-
msgid "Reads"
|
544 |
-
msgstr "Visninger"
|
545 |
-
|
546 |
-
#@ cpd
|
547 |
-
#: counter.php:1196
|
548 |
-
msgid "This post"
|
549 |
-
msgstr "Dette innlegget"
|
550 |
-
|
551 |
-
#@ cpd
|
552 |
-
#: counter.php:262
|
553 |
-
msgid "Reads per day"
|
554 |
-
msgstr "Visninger pr dag"
|
555 |
-
|
556 |
-
#@ cpd
|
557 |
-
#: counter-core.php:725
|
558 |
-
#: counter.php:1206
|
559 |
-
msgid "Visitors per month"
|
560 |
-
msgstr "besøkende pr måned"
|
561 |
-
|
562 |
-
#@ cpd
|
563 |
-
#: counter-core.php:728
|
564 |
-
msgid "Latest Counts"
|
565 |
-
msgstr "Siste treff"
|
566 |
-
|
567 |
-
#@ default
|
568 |
-
#: counter-core.php:730
|
569 |
-
msgid "Plugin"
|
570 |
-
msgstr "Innstikk"
|
571 |
-
|
572 |
-
#@ cpd
|
573 |
-
#: counter-core.php:738
|
574 |
-
msgid "Reads per Country"
|
575 |
-
msgstr "Visninger pr land"
|
576 |
-
|
577 |
-
#@ cpd
|
578 |
-
#: counter-core.php:739
|
579 |
-
msgid "Visitors per Country"
|
580 |
-
msgstr "besøkende pr land"
|
581 |
-
|
582 |
-
#@ cpd
|
583 |
-
#: counter-core.php:754
|
584 |
-
#: counter.php:1124
|
585 |
-
msgid "Statistics"
|
586 |
-
msgstr "Statistikk"
|
587 |
-
|
588 |
-
#@ cpd
|
589 |
-
#: counter.php:353
|
590 |
-
#: counter.php:1041
|
591 |
-
msgid "Map"
|
592 |
-
msgstr "Kart"
|
593 |
-
|
594 |
-
#@ default
|
595 |
-
#: notes.php:77
|
596 |
-
msgid "Action"
|
597 |
-
msgstr "Handling"
|
598 |
-
|
599 |
-
#@ cpd
|
600 |
-
#: notes.php:82
|
601 |
-
msgid "add"
|
602 |
-
msgstr "legg til"
|
603 |
-
|
604 |
-
#@ cpd
|
605 |
-
#: notes.php:98
|
606 |
-
msgid "save"
|
607 |
-
msgstr "lagre"
|
608 |
-
|
609 |
-
#@ cpd
|
610 |
-
#: notes.php:99
|
611 |
-
msgid "delete"
|
612 |
-
msgstr "slett"
|
613 |
-
|
614 |
-
#@ cpd
|
615 |
-
#: notes.php:110
|
616 |
-
msgid "edit"
|
617 |
-
msgstr "rediger"
|
618 |
-
|
619 |
-
#@ cpd
|
620 |
-
#: userperspan.php:38
|
621 |
-
msgid "Start"
|
622 |
-
msgstr "Start"
|
623 |
-
|
624 |
-
#@ cpd
|
625 |
-
#: userperspan.php:40
|
626 |
-
msgid "End"
|
627 |
-
msgstr "Slutt"
|
628 |
-
|
629 |
-
#@ cpd
|
630 |
-
#: userperspan.php:42
|
631 |
-
msgid "PostID"
|
632 |
-
msgstr "Innleggs-ID"
|
633 |
-
|
634 |
-
#@ cpd
|
635 |
-
#: userperspan.php:50
|
636 |
-
msgid "no data found"
|
637 |
-
msgstr "ingen data funnet"
|
638 |
-
|
639 |
-
#@ cpd
|
640 |
-
#: geoip/geoip.php:93
|
641 |
-
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
642 |
-
msgstr "Beklager, nødvendige funksjoner (zlib) er ikke installert eller ikke aktivert i php.ini."
|
643 |
-
|
644 |
-
#@ cpd
|
645 |
-
#: geoip/geoip.php:117
|
646 |
-
msgid "New GeoIP database installed."
|
647 |
-
msgstr "Ny GeoIP-database installert."
|
648 |
-
|
649 |
-
#@ cpd
|
650 |
-
#: geoip/geoip.php:119
|
651 |
-
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
652 |
-
msgstr "Beklager. Det oppstod en feil. Prøv igjen eller sjekk at adgangsrettigheter til mappen \"geoip\" er 777."
|
653 |
-
|
654 |
-
#@ cpd
|
655 |
-
#: counter-options.php:730
|
656 |
-
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
657 |
-
msgstr "Du kan få land-data for alle innlegg i databasen, hvis du sjekker IP-adressene i GeoIP-databasen. Det kan ta litt tid!"
|
658 |
-
|
659 |
-
#@ cpd
|
660 |
-
#: counter-options.php:351
|
661 |
-
msgid "Counter"
|
662 |
-
msgstr "Teller"
|
663 |
-
|
664 |
-
#@ cpd
|
665 |
-
#: counter-options.php:389
|
666 |
-
msgid "Clients and referrers"
|
667 |
-
msgstr "Klienter og henvisere"
|
668 |
-
|
669 |
-
#@ cpd
|
670 |
-
#: counter-options.php:392
|
671 |
-
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
672 |
-
msgstr "Lagre og vis klienter og henvisere.<br />Bruker mye plass i databasen, men gir deg mer detaljert informasjon om dine besøkende."
|
673 |
-
|
674 |
-
#@ cpd
|
675 |
-
#: counter-options.php:476
|
676 |
-
msgid "Local URLs"
|
677 |
-
msgstr "Lokale URL-er"
|
678 |
-
|
679 |
-
#@ cpd
|
680 |
-
#: counter-options.php:477
|
681 |
-
msgid "Show local referrers too."
|
682 |
-
msgstr "Vis også lokale henvisere."
|
683 |
-
|
684 |
-
#@ default
|
685 |
-
#: counter-options.php:485
|
686 |
-
msgid "Posts"
|
687 |
-
msgstr "Innlegg"
|
688 |
-
|
689 |
-
#@ default
|
690 |
-
#: counter-options.php:485
|
691 |
-
msgid "Pages"
|
692 |
-
msgstr "Sider"
|
693 |
-
|
694 |
-
#@ cpd
|
695 |
-
#: counter.php:158
|
696 |
-
#: counter.php:1200
|
697 |
-
msgid "Reads last week"
|
698 |
-
msgstr "Visninger siste uke"
|
699 |
-
|
700 |
-
#@ default
|
701 |
-
#: counter.php:985
|
702 |
-
msgid "Category"
|
703 |
-
msgstr "Kategori"
|
704 |
-
|
705 |
-
#@ default
|
706 |
-
#: counter.php:988
|
707 |
-
msgid "Tag"
|
708 |
-
msgstr "Stikkord"
|
709 |
-
|
710 |
-
#@ default
|
711 |
-
#: counter-core.php:692
|
712 |
-
msgid "License"
|
713 |
-
msgstr "Lisens"
|
714 |
-
|
715 |
-
#@ cpd
|
716 |
-
#: counter-core.php:726
|
717 |
-
#: counter.php:1201
|
718 |
-
msgid "Reads per month"
|
719 |
-
msgstr "Visninger pr måned"
|
720 |
-
|
721 |
-
#@ cpd
|
722 |
-
#: counter-core.php:734
|
723 |
-
msgid "Referrer"
|
724 |
-
msgstr "Henviser"
|
725 |
-
|
726 |
-
#@ default
|
727 |
-
#: counter.php:1220
|
728 |
-
msgid "Title"
|
729 |
-
msgstr "Tittel"
|
730 |
-
|
731 |
-
#@ cpd
|
732 |
-
#: counter-options.php:468
|
733 |
-
msgid "Referrers - Entries"
|
734 |
-
msgstr "Henvisere - Oppføringer"
|
735 |
-
|
736 |
-
#@ cpd
|
737 |
-
#: counter-options.php:469
|
738 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
739 |
-
msgstr "Hvor mange henvisere vil du se på kontrollpanelet?"
|
740 |
-
|
741 |
-
#@ cpd
|
742 |
-
#: counter-options.php:472
|
743 |
-
msgid "Referrers - Days"
|
744 |
-
msgstr "Henvisere - Dager"
|
745 |
-
|
746 |
-
#@ cpd
|
747 |
-
#: counter.php:845
|
748 |
-
#, php-format
|
749 |
-
msgid "The %s referrers in last %s days:"
|
750 |
-
msgstr "De %s henviserne de siste %s dager:"
|
751 |
-
|
752 |
-
#@ cpd
|
753 |
-
#: counter-core.php:724
|
754 |
-
msgid "Visitors online"
|
755 |
-
msgstr "Gjester online"
|
756 |
-
|
757 |
-
#@ cpd
|
758 |
-
#: counter-core.php:186
|
759 |
-
#, php-format
|
760 |
-
msgid "\"Count per Day\" updated to version %s."
|
761 |
-
msgstr "\"Count per Day\" oppdatert til versjon %s."
|
762 |
-
|
763 |
-
#@ cpd
|
764 |
-
#: counter-core.php:917
|
765 |
-
msgid "Backup failed! Cannot open file"
|
766 |
-
msgstr "Sikkerhetskopi feilet! Kan ikke åpne filen"
|
767 |
-
|
768 |
-
#@ cpd
|
769 |
-
#: counter-core.php:940
|
770 |
-
#, php-format
|
771 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
772 |
-
msgstr "Sikkerhetskopiering av %s oppføringer i gang. Hvert punkt oppfyller %s oppføringer."
|
773 |
-
|
774 |
-
#@ cpd
|
775 |
-
#: counter-core.php:1027
|
776 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
777 |
-
msgstr "Din wp-content katalog er ikke skrivbar. Men du kan kopiere innholdet i denne boksen til en ren tekstfil."
|
778 |
-
|
779 |
-
#@ cpd
|
780 |
-
#: counter-core.php:1033
|
781 |
-
#, php-format
|
782 |
-
msgid "Backup of counter table saved in %s."
|
783 |
-
msgstr "Sikkerhetskopi av teller tabellen lagret i %s."
|
784 |
-
|
785 |
-
#@ cpd
|
786 |
-
#: counter-core.php:1035
|
787 |
-
#, php-format
|
788 |
-
msgid "Backup of counter options and collection saved in %s."
|
789 |
-
msgstr "Sikkerhetskopi av teller alternativer og samling lagret i %s."
|
790 |
-
|
791 |
-
#@ cpd
|
792 |
-
#: counter-options.php:170
|
793 |
-
msgid "Collection in progress..."
|
794 |
-
msgstr "Innsamling pågår ..:"
|
795 |
-
|
796 |
-
#@ cpd
|
797 |
-
#: counter-options.php:240
|
798 |
-
msgid "Get Visitors per Post..."
|
799 |
-
msgstr "Hent besøkende per innlegg ..."
|
800 |
-
|
801 |
-
#@ cpd
|
802 |
-
#: counter-options.php:261
|
803 |
-
msgid "Delete old data..."
|
804 |
-
msgstr "Slett gammel data..."
|
805 |
-
|
806 |
-
#@ cpd
|
807 |
-
#: counter-options.php:285
|
808 |
-
#, php-format
|
809 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
810 |
-
msgstr "Teller oppføringer inntil %s innsamlet og teller tabellen %s optimalisert (størrelse før = %s > størrelse etter = %s)."
|
811 |
-
|
812 |
-
#@ cpd
|
813 |
-
#: counter-options.php:294
|
814 |
-
msgid "Installation of \"Count per Day\" checked"
|
815 |
-
msgstr "Installasjon av \"Count per day\" sjekket"
|
816 |
-
|
817 |
-
#@ default
|
818 |
-
#: counter-options.php:342
|
819 |
-
#: counter-options.php:566
|
820 |
-
msgid "Tools"
|
821 |
-
msgstr "Verktøy"
|
822 |
-
|
823 |
-
#@ cpd
|
824 |
-
#: counter-options.php:394
|
825 |
-
msgid "Save URL only, no query string."
|
826 |
-
msgstr "Lagre kun URL, ingen søkestreng."
|
827 |
-
|
828 |
-
#@ cpd
|
829 |
-
#: counter-options.php:419
|
830 |
-
msgid "Who can see it"
|
831 |
-
msgstr "Hvem kan se det"
|
832 |
-
|
833 |
-
#@ cpd
|
834 |
-
#: counter-options.php:428
|
835 |
-
msgid "custom"
|
836 |
-
msgstr "tilpasset"
|
837 |
-
|
838 |
-
#@ cpd
|
839 |
-
#: counter-options.php:430
|
840 |
-
msgid "and higher are allowed to see the statistics page."
|
841 |
-
msgstr "og høyere får lov til å se statistikk side."
|
842 |
-
|
843 |
-
#@ cpd
|
844 |
-
#: counter-options.php:432
|
845 |
-
#, php-format
|
846 |
-
msgid "Set the %s capability %s a user need:"
|
847 |
-
msgstr "Sett %s evne %s en bruker trenger:"
|
848 |
-
|
849 |
-
#@ cpd
|
850 |
-
#: counter-options.php:522
|
851 |
-
msgid "Stylesheet"
|
852 |
-
msgstr "Stilark"
|
853 |
-
|
854 |
-
#@ cpd
|
855 |
-
#: counter-options.php:525
|
856 |
-
msgid "NO Stylesheet in Frontend"
|
857 |
-
msgstr "INGEN stilark i Frontend"
|
858 |
-
|
859 |
-
#@ cpd
|
860 |
-
#: counter-options.php:526
|
861 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
862 |
-
msgstr "Ikke legg til stilarket \"counter.css\" i frontend."
|
863 |
-
|
864 |
-
#@ cpd
|
865 |
-
#: counter-options.php:534
|
866 |
-
#: counter-options.php:639
|
867 |
-
msgid "Backup"
|
868 |
-
msgstr "Sikkerhetskopi"
|
869 |
-
|
870 |
-
#@ cpd
|
871 |
-
#: counter-options.php:537
|
872 |
-
msgid "Entries per pass"
|
873 |
-
msgstr "Oppføringer per hendelse"
|
874 |
-
|
875 |
-
#@ cpd
|
876 |
-
#: counter-options.php:540
|
877 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr "Hvor mange oppføringer skal lagres per hendelse? Standard: 10000"
|
879 |
-
|
880 |
-
#@ cpd
|
881 |
-
#: counter-options.php:545
|
882 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr "Hvis ditt PHP minne grense er mindre enn 50 MB, og du får en hvit side eller feilmeldinger prøv en mindre verdi."
|
884 |
-
|
885 |
-
#@ cpd
|
886 |
-
#: counter-options.php:643
|
887 |
-
#, php-format
|
888 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr "Lag en sikkerhetskopi av teller tabellen %s i din wp-content katalog (hvis skrivbar)."
|
890 |
-
|
891 |
-
#@ cpd
|
892 |
-
#: counter-options.php:647
|
893 |
-
msgid "Backup the database"
|
894 |
-
msgstr "Sikkerhetskopier databasen"
|
895 |
-
|
896 |
-
#@ cpd
|
897 |
-
#: counter-options.php:674
|
898 |
-
#: counter-options.php:706
|
899 |
-
msgid "Collect old data"
|
900 |
-
msgstr "Samle inn gamle data"
|
901 |
-
|
902 |
-
#@ cpd
|
903 |
-
#: counter-options.php:679
|
904 |
-
#, php-format
|
905 |
-
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr "Nåværende størrelse på teller tabellen %s er %s."
|
907 |
-
|
908 |
-
#@ cpd
|
909 |
-
#: counter-options.php:681
|
910 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
911 |
-
msgstr "Du kan samle gamle data og rydde opp teller tabellen. <br/> Leser og besøkende vil bli lagret per måned, per land og per post. <br/> Kunder og henvisere slettes."
|
912 |
-
|
913 |
-
#@ cpd
|
914 |
-
#: counter-options.php:686
|
915 |
-
#, php-format
|
916 |
-
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr "Foreløpig din innsamling inneholder data inntil %s."
|
918 |
-
|
919 |
-
#@ cpd
|
920 |
-
#: counter-options.php:690
|
921 |
-
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr "Normalt vil nye data bli lagt til i samlingen."
|
923 |
-
|
924 |
-
#@ cpd
|
925 |
-
#: counter-options.php:696
|
926 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr "Slett gammel innsamling og opprette en ny en som inneholder bare data som nå er i teller tabellen."
|
928 |
-
|
929 |
-
#@ cpd
|
930 |
-
#: counter-options.php:697
|
931 |
-
#, php-format
|
932 |
-
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr "Alle innsamlede data inntil %s slettes."
|
934 |
-
|
935 |
-
#@ cpd
|
936 |
-
#: counter-options.php:702
|
937 |
-
#, php-format
|
938 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr "Behold oppføringer av siste %s hele måneder + gjeldende måned i teller tabellen."
|
940 |
-
|
941 |
-
#@ cpd
|
942 |
-
#: counter-options.php:761
|
943 |
-
msgid "ReActivation"
|
944 |
-
msgstr "ReAktivering"
|
945 |
-
|
946 |
-
#@ cpd
|
947 |
-
#: counter-options.php:764
|
948 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr "Her kan du starte installasjon funksjonen manuelt. <br/> Samme som deaktivere og aktivere innstikk."
|
950 |
-
|
951 |
-
#@ cpd
|
952 |
-
#: counter-options.php:769
|
953 |
-
msgid "ReActivate the plugin"
|
954 |
-
msgstr "ReAktiver innstikket"
|
955 |
-
|
956 |
-
#@ cpd
|
957 |
-
#: counter.php:165
|
958 |
-
#: counter.php:899
|
959 |
-
msgid "Visitors"
|
960 |
-
msgstr "Besøkende"
|
961 |
-
|
962 |
-
#@ cpd
|
963 |
-
#: counter.php:168
|
964 |
-
#: counter.php:169
|
965 |
-
msgid "Most visited day"
|
966 |
-
msgstr "Mest besøkt dag"
|
967 |
-
|
968 |
-
#@ cpd
|
969 |
-
#: counter.php:1239
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr "dra og slipp for å sortere"
|
972 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-nl_NL.mo
CHANGED
Binary file
|
locale/cpd-nl_NL.po
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Count per Day
|
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:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,953 +19,766 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
-
#: counter-options.php:
|
23 |
msgid "Options updated"
|
24 |
msgstr "Instellingen bijgewerkt"
|
25 |
|
26 |
#@ cpd
|
27 |
-
#: counter-options.php:
|
28 |
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Database schoongemaakt. %s rijen verwijderd."
|
31 |
|
32 |
#@ cpd
|
33 |
-
#: counter-options.php:
|
34 |
-
#: counter-options.php:
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DEÏNSTALLEREN Count per Day"
|
37 |
|
38 |
#@ cpd
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
#, php-format
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "eTabel %s verwijderd"
|
45 |
|
46 |
#@ cpd
|
47 |
-
#: counter-options.php:
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opties verwijderd"
|
50 |
|
51 |
#@ cpd
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Deinstallatie"
|
56 |
|
57 |
#@ cpd
|
58 |
-
#: counter-options.php:
|
59 |
msgid "Click here"
|
60 |
msgstr "Klik hier"
|
61 |
|
62 |
#@ cpd
|
63 |
-
#: counter-options.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "Online time"
|
70 |
msgstr "Tijd online"
|
71 |
|
72 |
#@ cpd
|
73 |
-
#: counter-options.php:
|
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:
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Aangemelde Gebruikers"
|
81 |
|
82 |
#@ cpd
|
83 |
-
#: counter-options.php:
|
84 |
msgid "count too"
|
85 |
msgstr "ook tellen"
|
86 |
|
87 |
#@ cpd
|
88 |
-
#: counter-options.php:
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Automatisch tellen"
|
91 |
|
92 |
#@ cpd
|
93 |
-
#: counter-options.php:
|
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:
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Bots te negeren"
|
101 |
|
102 |
#@ cpd
|
103 |
-
#: counter-options.php:
|
104 |
msgid "Update options"
|
105 |
msgstr "Aktualiseren opties"
|
106 |
|
107 |
#@ cpd
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Database schoonmaken"
|
112 |
|
113 |
#@ cpd
|
114 |
-
#: counter-options.php:
|
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:
|
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:
|
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:
|
130 |
msgid "WARNING"
|
131 |
msgstr "WAARSCHUWING"
|
132 |
|
133 |
#@ cpd
|
134 |
-
#: counter-options.php:
|
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:
|
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:
|
145 |
-
#: counter-options.php:809
|
146 |
msgid "Yes"
|
147 |
msgstr "Ja"
|
148 |
|
149 |
#@ cpd
|
150 |
-
#: counter-options.php:
|
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
|
156 |
-
#: counter.php:
|
157 |
msgid "Statistics"
|
158 |
msgstr "Statistieken"
|
159 |
|
160 |
#@ cpd
|
161 |
-
#: counter
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
|
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Totaal aantal bezoekers"
|
167 |
|
168 |
#@ cpd
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Bezoekers op dit moment online"
|
173 |
|
174 |
#@ cpd
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Bezoekers vandaag"
|
179 |
|
180 |
#@ cpd
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Bezoekers gisteren"
|
185 |
|
186 |
#@ cpd
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Bezoekers vorige week"
|
191 |
|
192 |
#@ cpd
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:1209
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Teller start bij"
|
198 |
|
199 |
#@ cpd
|
200 |
-
#: counter
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#:
|
|
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "Bezoekers per dag"
|
208 |
|
209 |
#@ cpd
|
210 |
-
#: counter
|
211 |
-
#: counter.php:
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Bezoekers per maand"
|
214 |
|
215 |
#@ cpd
|
216 |
-
#: counter-
|
217 |
-
#: counter
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Bezoekers per bericht"
|
220 |
|
221 |
#@ cpd
|
222 |
-
#: counter-options.php:
|
223 |
msgid "Counter reseted."
|
224 |
msgstr "Teller gereset"
|
225 |
|
226 |
#@ cpd
|
227 |
-
#: counter-options.php:
|
228 |
-
#: counter-options.php:
|
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:
|
234 |
msgid "Latest Counts - Posts"
|
235 |
msgstr "Laatste Tellingen - Berichten"
|
236 |
|
237 |
#@ cpd
|
238 |
-
#: counter-options.php:
|
239 |
msgid "Latest Counts - Days"
|
240 |
msgstr "Laatste Tellingen - Dagen"
|
241 |
|
242 |
#@ cpd
|
243 |
-
#: counter-options.php:
|
244 |
-
#: counter-options.php:
|
245 |
-
#: counter-options.php:
|
246 |
msgid "How many days do you want look back?"
|
247 |
msgstr "Hoeveel dagen wil je terugkijken?"
|
248 |
|
249 |
#@ cpd
|
250 |
-
#: counter-options.php:
|
251 |
msgid "Show in lists"
|
252 |
msgstr "Laat in lijsten zien"
|
253 |
|
254 |
#@ cpd
|
255 |
-
#: counter-options.php:
|
256 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
257 |
-
msgstr "Toon \"
|
258 |
|
259 |
#@ cpd
|
260 |
-
#: counter-options.php:
|
261 |
-
#: counter-options.php:
|
262 |
msgid "Reset the counter"
|
263 |
msgstr "Reset de teller"
|
264 |
|
265 |
#@ cpd
|
266 |
-
#: counter-options.php:
|
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:
|
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
|
278 |
-
#: counter-options.php:341
|
279 |
-
#: counter-options.php:565
|
280 |
msgid "Settings"
|
281 |
msgstr "Instellingen"
|
282 |
|
283 |
#@ cpd
|
284 |
-
#: counter-
|
285 |
-
#: counter
|
286 |
-
#: counter.php:
|
287 |
-
#: counter.php:875
|
288 |
msgid "Reads"
|
289 |
-
msgstr "
|
290 |
|
291 |
#@ cpd
|
292 |
-
#: counter
|
293 |
msgid "Latest Counts"
|
294 |
msgstr "Laatste Tellingen"
|
295 |
|
296 |
#@ cpd
|
297 |
-
#: counter-options.php:
|
298 |
msgid "Chart - Days"
|
299 |
msgstr "Grafiek - Dagen"
|
300 |
|
301 |
#@ cpd
|
302 |
-
#: counter-options.php:
|
303 |
msgid "Chart - Height"
|
304 |
msgstr "Grafiek - Hoogte"
|
305 |
|
306 |
#@ cpd
|
307 |
-
#: counter-options.php:
|
308 |
msgid "Height of the biggest bar"
|
309 |
msgstr "Hoogte van de grootste staaf"
|
310 |
|
311 |
#@ cpd
|
312 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
msgid "This post"
|
314 |
msgstr "Dit bericht"
|
315 |
|
316 |
#@ default
|
317 |
-
#: counter-options.php:
|
318 |
msgid "Dashboard"
|
319 |
msgstr "Dashboard"
|
320 |
|
321 |
#@ cpd
|
322 |
-
#: counter.php:
|
|
|
323 |
msgid "Reads per day"
|
324 |
msgstr "Hits per dag"
|
325 |
|
326 |
#@ cpd
|
327 |
-
#: counter-options.php:
|
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:
|
334 |
msgid "update next"
|
335 |
msgstr "volgende aktualiseren"
|
336 |
|
337 |
#@ cpd
|
338 |
-
#: counter-options.php:
|
339 |
msgid "GeoIP - Countries"
|
340 |
msgstr "GeoIP - Landen"
|
341 |
|
342 |
#@ cpd
|
343 |
-
#: counter-options.php:
|
344 |
msgid "Update old counter data"
|
345 |
msgstr "Aktualiseren data van oude tellingen"
|
346 |
|
347 |
#@ cpd
|
348 |
-
#: counter-options.php:
|
349 |
msgid "Update GeoIP database"
|
350 |
msgstr "Aktualiseren GeoIP databank"
|
351 |
|
352 |
#@ cpd
|
353 |
-
#: counter-options.php:
|
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:
|
359 |
msgid "More informations about GeoIP"
|
360 |
msgstr "Meer informatie over GeoIP"
|
361 |
|
362 |
#@ cpd
|
363 |
-
#: counter
|
364 |
msgid "Reads per Country"
|
365 |
-
msgstr "
|
366 |
|
367 |
#@ cpd
|
368 |
-
#: geoip/geoip.php:
|
369 |
msgid "New GeoIP database installed."
|
370 |
msgstr "Nieuwe GeoIP database geïnstalleerd."
|
371 |
|
372 |
#@ cpd
|
373 |
-
#: geoip/geoip.php:
|
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:
|
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:
|
384 |
msgid "Countries"
|
385 |
msgstr "Landen"
|
386 |
|
387 |
#@ cpd
|
388 |
-
#: counter-options.php:
|
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:
|
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:
|
400 |
-
#: massbots.php:
|
401 |
msgid "Mass Bots"
|
402 |
msgstr "Massa Bots"
|
403 |
|
404 |
#@ cpd
|
405 |
-
#: counter-options.php:
|
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:
|
412 |
-
#: notes.php:
|
413 |
-
#: userperspan.php:
|
414 |
msgid "show"
|
415 |
msgstr "laat zien"
|
416 |
|
417 |
#@ cpd
|
418 |
-
#: counter-options.php:
|
419 |
-
#: counter-options.php:
|
420 |
#, php-format
|
421 |
msgid "Delete these %s counts"
|
422 |
msgstr "Verwijder deze %s tellingen"
|
423 |
|
424 |
#@ cpd
|
425 |
-
#: counter.php:
|
426 |
msgid "Other"
|
427 |
msgstr "Andere"
|
428 |
|
429 |
#@ default
|
430 |
-
#: counter.php:
|
431 |
-
#: massbots.php:
|
432 |
#: userperspan.php:63
|
433 |
msgid "Front page displays"
|
434 |
msgstr "Voorpagina weergaves"
|
435 |
|
436 |
#@ cpd
|
437 |
-
#: counter-
|
438 |
-
#: counter
|
439 |
msgid "Browsers"
|
440 |
msgstr "Browser"
|
441 |
|
442 |
#@ cpd
|
443 |
-
#: counter-options.php:
|
444 |
msgid "IP"
|
445 |
msgstr "IP"
|
446 |
|
447 |
#@ cpd
|
448 |
#@ default
|
449 |
-
#: counter-options.php:
|
450 |
-
#: notes.php:
|
451 |
msgid "Date"
|
452 |
msgstr "Datum"
|
453 |
|
454 |
#@ cpd
|
455 |
-
#: counter-options.php:
|
456 |
msgid "Client"
|
457 |
msgstr "Browser"
|
458 |
|
459 |
#@ cpd
|
460 |
-
#: counter-options.php:
|
461 |
msgid "Views"
|
462 |
msgstr "Hits"
|
463 |
|
464 |
#@ cpd
|
465 |
-
#: counter-options.php:
|
466 |
msgid "Start Values"
|
467 |
msgstr "Beginwaarden"
|
468 |
|
469 |
#@ cpd
|
470 |
-
#: counter-options.php:
|
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:
|
476 |
msgid "Start date"
|
477 |
msgstr "Startdatum"
|
478 |
|
479 |
#@ cpd
|
480 |
-
#: counter-options.php:
|
481 |
msgid "Your old Counter starts at?"
|
482 |
msgstr "Je oude teller start op?"
|
483 |
|
484 |
#@ cpd
|
485 |
-
#: counter-options.php:
|
486 |
-
#: counter-options.php:
|
487 |
msgid "Start count"
|
488 |
msgstr "Beginwaarde van de telling"
|
489 |
|
490 |
#@ cpd
|
491 |
-
#: counter-options.php:
|
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:
|
497 |
msgid "Support"
|
498 |
msgstr "Ondersteuning"
|
499 |
|
500 |
#@ cpd
|
501 |
-
#: counter
|
502 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
503 |
msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
|
504 |
|
505 |
#@ cpd
|
506 |
-
#: counter
|
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:
|
513 |
msgid "Show"
|
514 |
msgstr "Vertonen"
|
515 |
|
516 |
#@ default
|
517 |
-
#: counter.php:
|
518 |
msgid "Edit Post"
|
519 |
msgstr "Bericht Bewerken"
|
520 |
|
521 |
#@ cpd
|
522 |
-
#: counter
|
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:
|
529 |
msgid "until User Level"
|
530 |
msgstr "Tot Gebruikers Niveau"
|
531 |
|
532 |
#@ default
|
533 |
-
#: counter
|
534 |
msgid "Plugin"
|
535 |
msgstr "Plugin"
|
536 |
|
537 |
#@ cpd
|
538 |
-
#: counter.php:
|
539 |
-
#:
|
540 |
-
#: notes.php:
|
|
|
541 |
msgid "Notes"
|
542 |
msgstr "Opmerkingen"
|
543 |
|
544 |
#@ default
|
545 |
-
#: notes.php:
|
546 |
msgid "Action"
|
547 |
msgstr "Actie"
|
548 |
|
549 |
#@ cpd
|
550 |
-
#: notes.php:
|
551 |
msgid "add"
|
552 |
msgstr "toevoegen"
|
553 |
|
554 |
#@ cpd
|
555 |
-
#: notes.php:
|
556 |
msgid "save"
|
557 |
msgstr "bewaren"
|
558 |
|
559 |
#@ cpd
|
560 |
-
#: notes.php:
|
561 |
msgid "delete"
|
562 |
msgstr "verwijderen"
|
563 |
|
564 |
#@ cpd
|
565 |
-
#: notes.php:
|
566 |
msgid "edit"
|
567 |
msgstr "bewerken"
|
568 |
|
569 |
#@ cpd
|
570 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
571 |
msgid "Add this value to \"Total reads\"."
|
572 |
-
msgstr "Voeg deze waarde toe aan \"Totale
|
573 |
|
574 |
#@ cpd
|
575 |
-
#: counter.php:
|
576 |
-
#: counter.php:
|
577 |
msgid "Total reads"
|
578 |
-
msgstr "Totale
|
579 |
|
580 |
#@ cpd
|
581 |
-
#: counter.php:
|
582 |
-
#: counter.php:
|
583 |
msgid "Reads today"
|
584 |
-
msgstr "
|
585 |
|
586 |
#@ cpd
|
587 |
-
#: counter.php:
|
588 |
-
#: counter.php:
|
589 |
msgid "Reads yesterday"
|
590 |
-
msgstr "
|
591 |
|
592 |
#@ cpd
|
593 |
-
#: counter-options.php:
|
594 |
msgid "Anonymous IP"
|
595 |
msgstr "Anonieme IP"
|
596 |
|
597 |
#@ cpd
|
598 |
-
#: counter-options.php:
|
599 |
msgid "Cache"
|
600 |
msgstr "Cache"
|
601 |
|
602 |
#@ cpd
|
603 |
-
#: counter-options.php:
|
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:
|
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:
|
614 |
msgid "Debug mode"
|
615 |
msgstr "Debugmodus"
|
616 |
|
617 |
#@ cpd
|
618 |
-
#: counter-options.php:
|
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
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Bezoekers per Land"
|
626 |
|
627 |
#@ cpd
|
628 |
-
#: counter.php:
|
629 |
-
#: counter.php:
|
630 |
msgid "Map"
|
631 |
msgstr "Kaart"
|
632 |
|
633 |
#@ cpd
|
634 |
-
#: userperspan.php:
|
635 |
msgid "Start"
|
636 |
msgstr "Start"
|
637 |
|
638 |
#@ cpd
|
639 |
-
#: userperspan.php:
|
640 |
msgid "End"
|
641 |
msgstr "Einde"
|
642 |
|
643 |
#@ cpd
|
644 |
-
#: userperspan.php:
|
645 |
msgid "PostID"
|
646 |
msgstr "PostID"
|
647 |
|
648 |
#@ cpd
|
649 |
-
#: userperspan.php:
|
650 |
msgid "no data found"
|
651 |
msgstr "geen data gevonden"
|
652 |
|
653 |
#@ cpd
|
654 |
-
#: counter-options.php:
|
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:
|
660 |
msgid "Counter"
|
661 |
msgstr "Teller"
|
662 |
|
663 |
#@ cpd
|
664 |
-
#: counter-options.php:
|
665 |
msgid "Clients and referrers"
|
666 |
msgstr "Clients en verwijzingen"
|
667 |
|
668 |
#@ cpd
|
669 |
-
#: counter-options.php:
|
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:
|
675 |
msgid "Local URLs"
|
676 |
msgstr "Lokale URLs"
|
677 |
|
678 |
#@ cpd
|
679 |
-
#: counter-options.php:
|
680 |
msgid "Show local referrers too."
|
681 |
msgstr "Geef lokale verwijzingen ook weer."
|
682 |
|
683 |
#@ default
|
684 |
-
#: counter-options.php:
|
685 |
msgid "Posts"
|
686 |
msgstr "Berichten"
|
687 |
|
688 |
#@ default
|
689 |
-
#: counter-options.php:
|
690 |
msgid "Pages"
|
691 |
msgstr "Pagina's"
|
692 |
|
693 |
#@ cpd
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
msgid "Reads last week"
|
697 |
-
msgstr "
|
698 |
|
699 |
#@ default
|
700 |
-
#: counter.php:
|
701 |
msgid "Category"
|
702 |
msgstr "Categorie"
|
703 |
|
704 |
#@ default
|
705 |
-
#: counter.php:
|
706 |
msgid "Tag"
|
707 |
msgstr "Tag"
|
708 |
|
709 |
#@ default
|
710 |
-
#: counter
|
711 |
msgid "License"
|
712 |
msgstr "Licentie"
|
713 |
|
714 |
#@ cpd
|
715 |
-
#: counter
|
716 |
-
#: counter.php:
|
717 |
msgid "Reads per month"
|
718 |
-
msgstr "
|
719 |
|
720 |
#@ cpd
|
721 |
-
#: counter
|
722 |
msgid "Referrer"
|
723 |
msgstr "Verwijzing"
|
724 |
|
725 |
#@ default
|
726 |
-
#: counter.php:
|
727 |
msgid "Title"
|
728 |
msgstr "Titel"
|
729 |
|
730 |
#@ cpd
|
731 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
msgid "Referrers - Entries"
|
733 |
msgstr "Verwijzingen - Entries"
|
734 |
|
735 |
#@ cpd
|
736 |
-
#: counter-options.php:
|
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:
|
742 |
msgid "Referrers - Days"
|
743 |
msgstr "Verwijzingen - Dagen"
|
744 |
|
745 |
#@ cpd
|
746 |
-
#: counter.php:
|
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
|
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 > size after = %s)."
|
809 |
-
msgstr "Teller registraties tot %s verzameld en teller tabel %s geoptimaliseerd (grootte vóór = %s > grootte na = %s)."
|
810 |
-
|
811 |
-
#@ cpd
|
812 |
-
#: counter-options.php:294
|
813 |
-
msgid "Installation of \"Count per Day\" checked"
|
814 |
-
msgstr "Installatie van \"Count per Day\" gecontroleerd"
|
815 |
-
|
816 |
-
#@ default
|
817 |
-
#: counter-options.php:342
|
818 |
-
#: counter-options.php:566
|
819 |
-
msgid "Tools"
|
820 |
-
msgstr "Hulpmiddelen"
|
821 |
-
|
822 |
-
#@ cpd
|
823 |
-
#: counter-options.php:394
|
824 |
-
msgid "Save URL only, no query string."
|
825 |
-
msgstr "Bewaar alleen de URL, geen query string."
|
826 |
-
|
827 |
-
#@ cpd
|
828 |
-
#: counter-options.php:419
|
829 |
-
msgid "Who can see it"
|
830 |
-
msgstr "Wie het kan zien"
|
831 |
-
|
832 |
-
#@ cpd
|
833 |
-
#: counter-options.php:428
|
834 |
-
msgid "custom"
|
835 |
-
msgstr "aangepast"
|
836 |
-
|
837 |
-
#@ cpd
|
838 |
-
#: counter-options.php:430
|
839 |
-
msgid "and higher are allowed to see the statistics page."
|
840 |
-
msgstr "en hoger kunnen de statistieken pagina zien."
|
841 |
-
|
842 |
-
#@ cpd
|
843 |
-
#: counter-options.php:432
|
844 |
-
#, php-format
|
845 |
-
msgid "Set the %s capability %s a user need:"
|
846 |
-
msgstr "Zet de %s mogelijkheid %s wat een gebruiker nodig heeft:"
|
847 |
-
|
848 |
-
#@ cpd
|
849 |
-
#: counter-options.php:522
|
850 |
-
msgid "Stylesheet"
|
851 |
-
msgstr "Stylesheet"
|
852 |
-
|
853 |
-
#@ cpd
|
854 |
-
#: counter-options.php:525
|
855 |
-
msgid "NO Stylesheet in Frontend"
|
856 |
-
msgstr "Geen Stylesheet in Frontend"
|
857 |
-
|
858 |
-
#@ cpd
|
859 |
-
#: counter-options.php:526
|
860 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
861 |
-
msgstr "Laad de stylesheet \"counter.css\" niet in frontend."
|
862 |
-
|
863 |
-
#@ cpd
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:639
|
866 |
-
msgid "Backup"
|
867 |
-
msgstr "Backup"
|
868 |
-
|
869 |
-
#@ cpd
|
870 |
-
#: counter-options.php:537
|
871 |
-
msgid "Entries per pass"
|
872 |
-
msgstr "Registraties per keer"
|
873 |
-
|
874 |
-
#@ cpd
|
875 |
-
#: counter-options.php:540
|
876 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
877 |
-
msgstr "Hoeveel registraties moeten er per keer worden opgeslagen? Standaard: 10000"
|
878 |
-
|
879 |
-
#@ cpd
|
880 |
-
#: counter-options.php:545
|
881 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
882 |
-
msgstr "Als je PHP geheugen limiet minder is dan 50 MB en je krijgt een witte pagina of een foutmelding probeer dan een lagere waarde."
|
883 |
-
|
884 |
-
#@ cpd
|
885 |
-
#: counter-options.php:643
|
886 |
-
#, php-format
|
887 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
888 |
-
msgstr "Creëer een backup van de teller tabel %s in je wp-content folder (indien beschrijfbaar)."
|
889 |
-
|
890 |
-
#@ cpd
|
891 |
-
#: counter-options.php:647
|
892 |
-
msgid "Backup the database"
|
893 |
-
msgstr "Maak een backup van de database"
|
894 |
-
|
895 |
-
#@ cpd
|
896 |
-
#: counter-options.php:674
|
897 |
-
#: counter-options.php:706
|
898 |
-
msgid "Collect old data"
|
899 |
-
msgstr "Verzamel oude data"
|
900 |
-
|
901 |
-
#@ cpd
|
902 |
-
#: counter-options.php:679
|
903 |
-
#, php-format
|
904 |
-
msgid "Current size of your counter table %s is %s."
|
905 |
-
msgstr "Huidige grootte van je teller tabel %s is %s."
|
906 |
-
|
907 |
-
#@ cpd
|
908 |
-
#: counter-options.php:681
|
909 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
910 |
-
msgstr "Je kan oude data verzamelen en de teller tabel schoonmaken.<br/>Vertoningen en bezoekers worden opgeslagen per maand, per land en per bericht.<br/>Clients en verwijzingen worden verwijderd."
|
911 |
-
|
912 |
-
#@ cpd
|
913 |
-
#: counter-options.php:686
|
914 |
-
#, php-format
|
915 |
-
msgid "Currently your collection contains data until %s."
|
916 |
-
msgstr "Je verzameling bevat data tot %s."
|
917 |
-
|
918 |
-
#@ cpd
|
919 |
-
#: counter-options.php:690
|
920 |
-
msgid "Normally new data will be added to the collection."
|
921 |
-
msgstr "Normaliter wordt nieuwe data toegevoegd aan de verzameling."
|
922 |
-
|
923 |
-
#@ cpd
|
924 |
-
#: counter-options.php:696
|
925 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
926 |
-
msgstr "Verwijder oude verzameling en creëer een nieuwe welke alleen de data bevat uit de teller tabel."
|
927 |
-
|
928 |
-
#@ cpd
|
929 |
-
#: counter-options.php:697
|
930 |
-
#, php-format
|
931 |
-
msgid "All collected data until %s will deleted."
|
932 |
-
msgstr "Alle verzamelde data tot %s wordt verwijderd."
|
933 |
-
|
934 |
-
#@ cpd
|
935 |
-
#: counter-options.php:702
|
936 |
-
#, php-format
|
937 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
938 |
-
msgstr "Bewaar registraties tot laatste %s volle maanden + huidige maand in teller tabel."
|
939 |
-
|
940 |
-
#@ cpd
|
941 |
-
#: counter-options.php:761
|
942 |
-
msgid "ReActivation"
|
943 |
-
msgstr "ReActivatie"
|
944 |
-
|
945 |
-
#@ cpd
|
946 |
-
#: counter-options.php:764
|
947 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
948 |
-
msgstr "Hier kun je de installatie functies manueel starten.<br/>Hetzelfde als deactiveren en reactiveren van de plugin."
|
949 |
-
|
950 |
-
#@ cpd
|
951 |
-
#: counter-options.php:769
|
952 |
-
msgid "ReActivate the plugin"
|
953 |
-
msgstr "ReActiveer de plugin"
|
954 |
-
|
955 |
-
#@ cpd
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
msgid "Visitors"
|
959 |
-
msgstr "Bezoekers"
|
960 |
-
|
961 |
-
#@ cpd
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
msgid "Most visited day"
|
965 |
-
msgstr "Meest bezochte dag"
|
966 |
-
|
967 |
-
#@ cpd
|
968 |
-
#: counter.php:1239
|
969 |
-
msgid "drag and drop to sort"
|
970 |
-
msgstr "slepen en neerzetten om te sorteren"
|
971 |
-
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Count per Day v2.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Rene <info@wpwebshop.com>\n"
|
8 |
+
"Language-Team: WPwebshop.com <info@wppg.me>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#@ cpd
|
22 |
+
#: counter-options.php:46
|
23 |
msgid "Options updated"
|
24 |
msgstr "Instellingen bijgewerkt"
|
25 |
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:111
|
28 |
#, php-format
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Database schoongemaakt. %s rijen verwijderd."
|
31 |
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:121
|
34 |
+
#: counter-options.php:496
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DEÏNSTALLEREN 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 "eTabel %s verwijderd"
|
45 |
|
46 |
#@ cpd
|
47 |
+
#: counter-options.php:132
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opties verwijderd"
|
50 |
|
51 |
#@ cpd
|
52 |
+
#: counter-options.php:156
|
53 |
+
#: counter-options.php:481
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Deinstallatie"
|
56 |
|
57 |
#@ cpd
|
58 |
+
#: counter-options.php:157
|
59 |
msgid "Click here"
|
60 |
msgstr "Klik hier"
|
61 |
|
62 |
#@ cpd
|
63 |
+
#: counter-options.php:157
|
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:179
|
69 |
+
msgid "Options"
|
70 |
+
msgstr "Opties"
|
71 |
+
|
72 |
+
#@ cpd
|
73 |
+
#: counter-options.php:190
|
74 |
msgid "Online time"
|
75 |
msgstr "Tijd online"
|
76 |
|
77 |
#@ cpd
|
78 |
+
#: counter-options.php:191
|
79 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
80 |
msgstr "Seconden voor online teller. Gebruikt voor \"Bezoekers online\" op de dashboard pagina."
|
81 |
|
82 |
#@ cpd
|
83 |
+
#: counter-options.php:194
|
84 |
msgid "Logged on Users"
|
85 |
msgstr "Aangemelde Gebruikers"
|
86 |
|
87 |
#@ cpd
|
88 |
+
#: counter-options.php:196
|
89 |
msgid "count too"
|
90 |
msgstr "ook tellen"
|
91 |
|
92 |
#@ cpd
|
93 |
+
#: counter-options.php:208
|
94 |
msgid "Auto counter"
|
95 |
msgstr "Automatisch tellen"
|
96 |
|
97 |
#@ cpd
|
98 |
+
#: counter-options.php:209
|
99 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
100 |
msgstr "Telt automatisch enkelvoudige berichten en pagina's, geen veranderingen aan het thema nodig."
|
101 |
|
102 |
#@ cpd
|
103 |
+
#: counter-options.php:212
|
104 |
msgid "Bots to ignore"
|
105 |
msgstr "Bots te negeren"
|
106 |
|
107 |
#@ cpd
|
108 |
+
#: counter-options.php:331
|
109 |
msgid "Update options"
|
110 |
msgstr "Aktualiseren opties"
|
111 |
|
112 |
#@ cpd
|
113 |
+
#: counter-options.php:445
|
114 |
+
#: counter-options.php:454
|
115 |
msgid "Clean the database"
|
116 |
msgstr "Database schoonmaken"
|
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 "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."
|
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 "Wanneer \"Count per Day\" alleen gedeactiveerd wordt blijven de tabellen in de database behouden."
|
127 |
|
128 |
#@ cpd
|
129 |
+
#: counter-options.php:485
|
130 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
131 |
msgstr "Hier kan je \"Count per Day\" deinstalleren en de tabellen verwijderen."
|
132 |
|
133 |
#@ cpd
|
134 |
+
#: counter-options.php:488
|
135 |
msgid "WARNING"
|
136 |
msgstr "WAARSCHUWING"
|
137 |
|
138 |
#@ cpd
|
139 |
+
#: counter-options.php:489
|
140 |
msgid "These tables (with ALL counter data) will be deleted."
|
141 |
msgstr "Deze tabellen (met ALLE tellingen) worden verwijderd."
|
142 |
|
143 |
#@ cpd
|
144 |
+
#: counter-options.php:491
|
145 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
146 |
msgstr "Wanneer \"Count per Day\" opnieuw wordt geïnstalleerd start de teller op 0."
|
147 |
|
148 |
#@ cpd
|
149 |
+
#: counter-options.php:495
|
|
|
150 |
msgid "Yes"
|
151 |
msgstr "Ja"
|
152 |
|
153 |
#@ cpd
|
154 |
+
#: counter-options.php:496
|
155 |
msgid "You are sure to disable Count per Day and delete all data?"
|
156 |
msgstr "Ben je er zeker van om Count per Day uit te schakelen en alle data te verwijderen?"
|
157 |
|
158 |
#@ cpd
|
159 |
+
#: counter.php:1786
|
160 |
+
#: counter.php:2147
|
161 |
msgid "Statistics"
|
162 |
msgstr "Statistieken"
|
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 "Totaal aantal bezoekers"
|
172 |
|
173 |
#@ cpd
|
174 |
+
#: counter.php:530
|
175 |
+
#: counter.php:2230
|
176 |
msgid "Visitors currently online"
|
177 |
msgstr "Bezoekers op dit moment online"
|
178 |
|
179 |
#@ cpd
|
180 |
+
#: counter.php:531
|
181 |
+
#: counter.php:2225
|
182 |
msgid "Visitors today"
|
183 |
msgstr "Bezoekers vandaag"
|
184 |
|
185 |
#@ cpd
|
186 |
+
#: counter.php:532
|
187 |
+
#: counter.php:2226
|
188 |
msgid "Visitors yesterday"
|
189 |
msgstr "Bezoekers gisteren"
|
190 |
|
191 |
#@ cpd
|
192 |
+
#: counter.php:533
|
193 |
+
#: counter.php:2227
|
194 |
msgid "Visitors last week"
|
195 |
msgstr "Bezoekers vorige week"
|
196 |
|
197 |
#@ cpd
|
198 |
+
#: counter.php:536
|
199 |
+
#: counter.php:2231
|
|
|
200 |
msgid "Counter starts on"
|
201 |
msgstr "Teller start bij"
|
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 "Bezoekers per dag"
|
213 |
|
214 |
#@ cpd
|
215 |
+
#: counter.php:1752
|
216 |
+
#: counter.php:2228
|
217 |
msgid "Visitors per month"
|
218 |
msgstr "Bezoekers per maand"
|
219 |
|
220 |
#@ cpd
|
221 |
+
#: counter-options.php:236
|
222 |
+
#: counter.php:1754
|
223 |
msgid "Visitors per post"
|
224 |
msgstr "Bezoekers per bericht"
|
225 |
|
226 |
#@ cpd
|
227 |
+
#: counter-options.php:117
|
228 |
msgid "Counter reseted."
|
229 |
msgstr "Teller gereset"
|
230 |
|
231 |
#@ cpd
|
232 |
+
#: counter-options.php:237
|
233 |
+
#: counter-options.php:241
|
234 |
msgid "How many posts do you want to see on dashboard page?"
|
235 |
msgstr "Hoeveel berichten wil je zien op de dashboard pagina?"
|
236 |
|
237 |
#@ cpd
|
238 |
+
#: counter-options.php:240
|
239 |
msgid "Latest Counts - Posts"
|
240 |
msgstr "Laatste Tellingen - Berichten"
|
241 |
|
242 |
#@ cpd
|
243 |
+
#: counter-options.php:244
|
244 |
msgid "Latest Counts - Days"
|
245 |
msgstr "Laatste Tellingen - Dagen"
|
246 |
|
247 |
#@ cpd
|
248 |
+
#: counter-options.php:245
|
249 |
+
#: counter-options.php:249
|
250 |
+
#: counter-options.php:275
|
251 |
msgid "How many days do you want look back?"
|
252 |
msgstr "Hoeveel dagen wil je terugkijken?"
|
253 |
|
254 |
#@ cpd
|
255 |
+
#: counter-options.php:290
|
256 |
msgid "Show in lists"
|
257 |
msgstr "Laat in lijsten zien"
|
258 |
|
259 |
#@ cpd
|
260 |
+
#: counter-options.php:291
|
261 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
262 |
+
msgstr "Toon \"Leest per post\" in een nieuwe kolom in bericht impressies management."
|
263 |
|
264 |
#@ cpd
|
265 |
+
#: counter-options.php:463
|
266 |
+
#: counter-options.php:472
|
267 |
msgid "Reset the counter"
|
268 |
msgstr "Reset de teller"
|
269 |
|
270 |
#@ cpd
|
271 |
+
#: counter-options.php:466
|
272 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
273 |
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!"
|
274 |
|
275 |
#@ cpd
|
276 |
+
#: counter.php:1257
|
277 |
#, php-format
|
278 |
msgid "The %s most visited posts in last %s days:"
|
279 |
msgstr "De %s meest bezochte berichten in de laatste %s dagen:"
|
280 |
|
281 |
#@ default
|
282 |
+
#: counter.php:1591
|
|
|
|
|
283 |
msgid "Settings"
|
284 |
msgstr "Instellingen"
|
285 |
|
286 |
#@ cpd
|
287 |
+
#: counter-options.php:225
|
288 |
+
#: counter.php:528
|
289 |
+
#: counter.php:1661
|
|
|
290 |
msgid "Reads"
|
291 |
+
msgstr "Hits"
|
292 |
|
293 |
#@ cpd
|
294 |
+
#: counter.php:1755
|
295 |
msgid "Latest Counts"
|
296 |
msgstr "Laatste Tellingen"
|
297 |
|
298 |
#@ cpd
|
299 |
+
#: counter-options.php:248
|
300 |
msgid "Chart - Days"
|
301 |
msgstr "Grafiek - Dagen"
|
302 |
|
303 |
#@ cpd
|
304 |
+
#: counter-options.php:252
|
305 |
msgid "Chart - Height"
|
306 |
msgstr "Grafiek - Hoogte"
|
307 |
|
308 |
#@ cpd
|
309 |
+
#: counter-options.php:253
|
310 |
msgid "Height of the biggest bar"
|
311 |
msgstr "Hoogte van de grootste staaf"
|
312 |
|
313 |
#@ cpd
|
314 |
+
#: counter.php:845
|
315 |
+
msgid "no reads at this time"
|
316 |
+
msgstr "momenteel geen hits"
|
317 |
+
|
318 |
+
#@ cpd
|
319 |
+
#: counter.php:819
|
320 |
+
msgid "days"
|
321 |
+
msgstr "dagen"
|
322 |
+
|
323 |
+
#@ cpd
|
324 |
+
#: counter.php:2218
|
325 |
msgid "This post"
|
326 |
msgstr "Dit bericht"
|
327 |
|
328 |
#@ default
|
329 |
+
#: counter-options.php:233
|
330 |
msgid "Dashboard"
|
331 |
msgstr "Dashboard"
|
332 |
|
333 |
#@ cpd
|
334 |
+
#: counter.php:635
|
335 |
+
#: counter.php:1766
|
336 |
msgid "Reads per day"
|
337 |
msgstr "Hits per dag"
|
338 |
|
339 |
#@ cpd
|
340 |
+
#: counter-options.php:57
|
341 |
#, php-format
|
342 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
343 |
msgstr "Landen geactualiseerd. <b>%s</b> vermeldingen waarvan %s over zonder land"
|
344 |
|
345 |
#@ cpd
|
346 |
+
#: counter-options.php:62
|
347 |
msgid "update next"
|
348 |
msgstr "volgende aktualiseren"
|
349 |
|
350 |
#@ cpd
|
351 |
+
#: counter-options.php:340
|
352 |
msgid "GeoIP - Countries"
|
353 |
msgstr "GeoIP - Landen"
|
354 |
|
355 |
#@ cpd
|
356 |
+
#: counter-options.php:349
|
357 |
msgid "Update old counter data"
|
358 |
msgstr "Aktualiseren data van oude tellingen"
|
359 |
|
360 |
#@ cpd
|
361 |
+
#: counter-options.php:362
|
362 |
msgid "Update GeoIP database"
|
363 |
msgstr "Aktualiseren GeoIP databank"
|
364 |
|
365 |
#@ cpd
|
366 |
+
#: counter-options.php:365
|
367 |
msgid "Download a new version of GeoIP.dat file."
|
368 |
msgstr "Download een nieuwe versie van het GeoIP.dat bestand."
|
369 |
|
370 |
#@ cpd
|
371 |
+
#: counter-options.php:371
|
372 |
msgid "More informations about GeoIP"
|
373 |
msgstr "Meer informatie over GeoIP"
|
374 |
|
375 |
#@ cpd
|
376 |
+
#: counter.php:1770
|
377 |
msgid "Reads per Country"
|
378 |
+
msgstr "Hits per Land"
|
379 |
|
380 |
#@ cpd
|
381 |
+
#: geoip/geoip.php:132
|
382 |
msgid "New GeoIP database installed."
|
383 |
msgstr "Nieuwe GeoIP database geïnstalleerd."
|
384 |
|
385 |
#@ cpd
|
386 |
+
#: geoip/geoip.php:134
|
387 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
388 |
msgstr "Sorry, er is een fout opgetreden. Probeer het opnieuw of controleer of de toegangsrechten van de map \"geoip\" op 777 staan."
|
389 |
|
390 |
#@ cpd
|
391 |
+
#: geoip/geoip.php:108
|
392 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
393 |
msgstr "Sorry, noodzakelijke functies (zlib) zijn niet geïnstalleerd of ingeschakeld in php.ini."
|
394 |
|
395 |
#@ cpd
|
396 |
+
#: counter-options.php:261
|
397 |
msgid "Countries"
|
398 |
msgstr "Landen"
|
399 |
|
400 |
#@ cpd
|
401 |
+
#: counter-options.php:262
|
402 |
msgid "How many countries do you want to see on dashboard page?"
|
403 |
msgstr "Hoeveel landen wil je zien op de dashboard pagina?"
|
404 |
|
405 |
#@ cpd
|
406 |
+
#: counter-options.php:104
|
407 |
#, php-format
|
408 |
msgid "Mass Bots cleaned. %s counts deleted."
|
409 |
msgstr "Massa Bots schoongemaakt. %s tellingen verwijderd."
|
410 |
|
411 |
#@ cpd
|
412 |
+
#: counter-options.php:386
|
413 |
+
#: massbots.php:33
|
414 |
msgid "Mass Bots"
|
415 |
msgstr "Massa Bots"
|
416 |
|
417 |
#@ cpd
|
418 |
+
#: counter-options.php:390
|
419 |
#, php-format
|
420 |
msgid "Show all IPs with more than %s page views per day"
|
421 |
msgstr "Laat alle IP's zien met meer dan %s pagina hits per dag"
|
422 |
|
423 |
#@ cpd
|
424 |
+
#: counter-options.php:391
|
425 |
+
#: notes.php:76
|
426 |
+
#: userperspan.php:43
|
427 |
msgid "show"
|
428 |
msgstr "laat zien"
|
429 |
|
430 |
#@ cpd
|
431 |
+
#: counter-options.php:413
|
432 |
+
#: counter-options.php:435
|
433 |
#, php-format
|
434 |
msgid "Delete these %s counts"
|
435 |
msgstr "Verwijder deze %s tellingen"
|
436 |
|
437 |
#@ cpd
|
438 |
+
#: counter.php:1421
|
439 |
msgid "Other"
|
440 |
msgstr "Andere"
|
441 |
|
442 |
#@ default
|
443 |
+
#: counter.php:1520
|
444 |
+
#: massbots.php:50
|
445 |
#: userperspan.php:63
|
446 |
msgid "Front page displays"
|
447 |
msgstr "Voorpagina weergaves"
|
448 |
|
449 |
#@ cpd
|
450 |
+
#: counter-options.php:266
|
451 |
+
#: counter.php:1760
|
452 |
msgid "Browsers"
|
453 |
msgstr "Browser"
|
454 |
|
455 |
#@ cpd
|
456 |
+
#: counter-options.php:399
|
457 |
msgid "IP"
|
458 |
msgstr "IP"
|
459 |
|
460 |
#@ cpd
|
461 |
#@ default
|
462 |
+
#: counter-options.php:400
|
463 |
+
#: notes.php:80
|
464 |
msgid "Date"
|
465 |
msgstr "Datum"
|
466 |
|
467 |
#@ cpd
|
468 |
+
#: counter-options.php:401
|
469 |
msgid "Client"
|
470 |
msgstr "Browser"
|
471 |
|
472 |
#@ cpd
|
473 |
+
#: counter-options.php:402
|
474 |
msgid "Views"
|
475 |
msgstr "Hits"
|
476 |
|
477 |
#@ cpd
|
478 |
+
#: counter-options.php:299
|
479 |
msgid "Start Values"
|
480 |
msgstr "Beginwaarden"
|
481 |
|
482 |
#@ cpd
|
483 |
+
#: counter-options.php:303
|
484 |
msgid "Here you can change the date of first count and add a start count."
|
485 |
msgstr "Hier kun je de datum wijzigen van de eerste telling en de beginwaarde van de telling toevoegen."
|
486 |
|
487 |
#@ cpd
|
488 |
+
#: counter-options.php:307
|
489 |
msgid "Start date"
|
490 |
msgstr "Startdatum"
|
491 |
|
492 |
#@ cpd
|
493 |
+
#: counter-options.php:308
|
494 |
msgid "Your old Counter starts at?"
|
495 |
msgstr "Je oude teller start op?"
|
496 |
|
497 |
#@ cpd
|
498 |
+
#: counter-options.php:311
|
499 |
+
#: counter-options.php:315
|
500 |
msgid "Start count"
|
501 |
msgstr "Beginwaarde van de telling"
|
502 |
|
503 |
#@ cpd
|
504 |
+
#: counter-options.php:312
|
505 |
msgid "Add this value to \"Total visitors\"."
|
506 |
msgstr "Voeg deze waarde toe aan \"Totaal aantal bezoekers\"."
|
507 |
|
508 |
#@ cpd
|
509 |
+
#: counter-options.php:504
|
510 |
msgid "Support"
|
511 |
msgstr "Ondersteuning"
|
512 |
|
513 |
#@ cpd
|
514 |
+
#: counter.php:1717
|
515 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
516 |
msgstr "Bug? Probleem? Vraag? Idee? Waarderen?"
|
517 |
|
518 |
#@ cpd
|
519 |
+
#: counter.php:1718
|
520 |
#, php-format
|
521 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
522 |
msgstr "Schrijf je commentaar op de <a href=\"%s\">plugin pagina</a>."
|
523 |
|
524 |
#@ default
|
525 |
+
#: counter.php:1374
|
526 |
msgid "Show"
|
527 |
msgstr "Vertonen"
|
528 |
|
529 |
#@ default
|
530 |
+
#: counter.php:1505
|
531 |
msgid "Edit Post"
|
532 |
msgstr "Bericht Bewerken"
|
533 |
|
534 |
#@ cpd
|
535 |
+
#: counter.php:1716
|
536 |
#, php-format
|
537 |
msgid "Time for Count per Day: <code>%s</code>."
|
538 |
msgstr "Tijd voor Count per Day: <code>%s</code>."
|
539 |
|
540 |
#@ cpd
|
541 |
+
#: counter-options.php:197
|
542 |
msgid "until User Level"
|
543 |
msgstr "Tot Gebruikers Niveau"
|
544 |
|
545 |
#@ default
|
546 |
+
#: counter.php:1757
|
547 |
msgid "Plugin"
|
548 |
msgstr "Plugin"
|
549 |
|
550 |
#@ cpd
|
551 |
+
#: counter.php:822
|
552 |
+
#: counter.php:1376
|
553 |
+
#: notes.php:47
|
554 |
+
#: notes.php:81
|
555 |
msgid "Notes"
|
556 |
msgstr "Opmerkingen"
|
557 |
|
558 |
#@ default
|
559 |
+
#: notes.php:82
|
560 |
msgid "Action"
|
561 |
msgstr "Actie"
|
562 |
|
563 |
#@ cpd
|
564 |
+
#: notes.php:87
|
565 |
msgid "add"
|
566 |
msgstr "toevoegen"
|
567 |
|
568 |
#@ cpd
|
569 |
+
#: notes.php:102
|
570 |
msgid "save"
|
571 |
msgstr "bewaren"
|
572 |
|
573 |
#@ cpd
|
574 |
+
#: notes.php:103
|
575 |
msgid "delete"
|
576 |
msgstr "verwijderen"
|
577 |
|
578 |
#@ cpd
|
579 |
+
#: notes.php:114
|
580 |
msgid "edit"
|
581 |
msgstr "bewerken"
|
582 |
|
583 |
#@ cpd
|
584 |
+
#: notes.php:81
|
585 |
+
msgid "(1 per day)"
|
586 |
+
msgstr "(1 per dag)"
|
587 |
+
|
588 |
+
#@ cpd
|
589 |
+
#: counter-options.php:316
|
590 |
msgid "Add this value to \"Total reads\"."
|
591 |
+
msgstr "Voeg deze waarde toe aan \"Totale Hits\"."
|
592 |
|
593 |
#@ cpd
|
594 |
+
#: counter.php:524
|
595 |
+
#: counter.php:2219
|
596 |
msgid "Total reads"
|
597 |
+
msgstr "Totale Hits"
|
598 |
|
599 |
#@ cpd
|
600 |
+
#: counter.php:525
|
601 |
+
#: counter.php:2220
|
602 |
msgid "Reads today"
|
603 |
+
msgstr "Hits vandaag"
|
604 |
|
605 |
#@ cpd
|
606 |
+
#: counter.php:526
|
607 |
+
#: counter.php:2221
|
608 |
msgid "Reads yesterday"
|
609 |
+
msgstr "Hits gisteren"
|
610 |
|
611 |
#@ cpd
|
612 |
+
#: counter-options.php:216
|
613 |
msgid "Anonymous IP"
|
614 |
msgstr "Anonieme IP"
|
615 |
|
616 |
#@ cpd
|
617 |
+
#: counter-options.php:220
|
618 |
msgid "Cache"
|
619 |
msgstr "Cache"
|
620 |
|
621 |
#@ cpd
|
622 |
+
#: counter-options.php:221
|
623 |
msgid "I use a cache plugin. Count these visits with ajax."
|
624 |
msgstr "Ik gebruik een cache plugin. Tel deze bezoeken met ajax."
|
625 |
|
626 |
#@ cpd
|
627 |
+
#: counter-options.php:267
|
628 |
msgid "Substring of the user agent, separated by comma"
|
629 |
msgstr "Substring van de user agent, gescheiden door een comma"
|
630 |
|
631 |
#@ cpd
|
632 |
+
#: counter-options.php:324
|
633 |
msgid "Debug mode"
|
634 |
msgstr "Debugmodus"
|
635 |
|
636 |
#@ cpd
|
637 |
+
#: counter-options.php:326
|
638 |
msgid "Show debug informations at the bottom of all pages."
|
639 |
msgstr "Geef debug informatie weer op de bodem van elke pagina."
|
640 |
|
641 |
#@ cpd
|
642 |
+
#: counter.php:1771
|
643 |
msgid "Visitors per Country"
|
644 |
msgstr "Bezoekers per Land"
|
645 |
|
646 |
#@ cpd
|
647 |
+
#: counter.php:900
|
648 |
+
#: counter.php:1856
|
649 |
msgid "Map"
|
650 |
msgstr "Kaart"
|
651 |
|
652 |
#@ cpd
|
653 |
+
#: userperspan.php:37
|
654 |
msgid "Start"
|
655 |
msgstr "Start"
|
656 |
|
657 |
#@ cpd
|
658 |
+
#: userperspan.php:39
|
659 |
msgid "End"
|
660 |
msgstr "Einde"
|
661 |
|
662 |
#@ cpd
|
663 |
+
#: userperspan.php:41
|
664 |
msgid "PostID"
|
665 |
msgstr "PostID"
|
666 |
|
667 |
#@ cpd
|
668 |
+
#: userperspan.php:49
|
669 |
msgid "no data found"
|
670 |
msgstr "geen data gevonden"
|
671 |
|
672 |
#@ cpd
|
673 |
+
#: counter-options.php:352
|
674 |
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!"
|
675 |
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!"
|
676 |
|
677 |
#@ cpd
|
678 |
+
#: counter-options.php:186
|
679 |
msgid "Counter"
|
680 |
msgstr "Teller"
|
681 |
|
682 |
#@ cpd
|
683 |
+
#: counter-options.php:224
|
684 |
msgid "Clients and referrers"
|
685 |
msgstr "Clients en verwijzingen"
|
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 "Bewaar en geef clients en verwijzingen weer.<br />Gebruikt veel ruimte in de database maar geeft je meer gedetailleerde informatie over je bezoekers."
|
691 |
|
692 |
#@ cpd
|
693 |
+
#: counter-options.php:278
|
694 |
msgid "Local URLs"
|
695 |
msgstr "Lokale URLs"
|
696 |
|
697 |
#@ cpd
|
698 |
+
#: counter-options.php:279
|
699 |
msgid "Show local referrers too."
|
700 |
msgstr "Geef lokale verwijzingen ook weer."
|
701 |
|
702 |
#@ default
|
703 |
+
#: counter-options.php:287
|
704 |
msgid "Posts"
|
705 |
msgstr "Berichten"
|
706 |
|
707 |
#@ default
|
708 |
+
#: counter-options.php:287
|
709 |
msgid "Pages"
|
710 |
msgstr "Pagina's"
|
711 |
|
712 |
#@ cpd
|
713 |
+
#: counter.php:527
|
714 |
+
#: counter.php:2222
|
715 |
msgid "Reads last week"
|
716 |
+
msgstr "Weergaves vorige week"
|
717 |
|
718 |
#@ default
|
719 |
+
#: counter.php:1514
|
720 |
msgid "Category"
|
721 |
msgstr "Categorie"
|
722 |
|
723 |
#@ default
|
724 |
+
#: counter.php:1517
|
725 |
msgid "Tag"
|
726 |
msgstr "Tag"
|
727 |
|
728 |
#@ default
|
729 |
+
#: counter.php:1719
|
730 |
msgid "License"
|
731 |
msgstr "Licentie"
|
732 |
|
733 |
#@ cpd
|
734 |
+
#: counter.php:1753
|
735 |
+
#: counter.php:2223
|
736 |
msgid "Reads per month"
|
737 |
+
msgstr "Weergaves per maand"
|
738 |
|
739 |
#@ cpd
|
740 |
+
#: counter.php:1761
|
741 |
msgid "Referrer"
|
742 |
msgstr "Verwijzing"
|
743 |
|
744 |
#@ default
|
745 |
+
#: counter.php:2242
|
746 |
msgid "Title"
|
747 |
msgstr "Titel"
|
748 |
|
749 |
#@ cpd
|
750 |
+
#: counter-options.php:256
|
751 |
+
msgid "Old Charts"
|
752 |
+
msgstr "Oude Grafieken"
|
753 |
+
|
754 |
+
#@ cpd
|
755 |
+
#: counter-options.php:257
|
756 |
+
msgid "Show old bar charts."
|
757 |
+
msgstr "Geef oude staafdiagrammen weer."
|
758 |
+
|
759 |
+
#@ cpd
|
760 |
+
#: counter-options.php:270
|
761 |
msgid "Referrers - Entries"
|
762 |
msgstr "Verwijzingen - Entries"
|
763 |
|
764 |
#@ cpd
|
765 |
+
#: counter-options.php:271
|
766 |
msgid "How many referrers do you want to see on dashboard page?"
|
767 |
msgstr "Hoeveel verwijzingen wil je zien op je dashboard pagina ?"
|
768 |
|
769 |
#@ cpd
|
770 |
+
#: counter-options.php:274
|
771 |
msgid "Referrers - Days"
|
772 |
msgstr "Verwijzingen - Dagen"
|
773 |
|
774 |
#@ cpd
|
775 |
+
#: counter.php:1449
|
776 |
#, php-format
|
777 |
msgid "The %s referrers in last %s days:"
|
778 |
msgstr "De %s verwijzingen in de laatste %s dagen:"
|
779 |
|
780 |
#@ cpd
|
781 |
+
#: counter.php:1751
|
782 |
msgid "Visitors online"
|
783 |
msgstr "Bezoekers online"
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-pl_PL.mo
CHANGED
Binary file
|
locale/cpd-pl_PL.po
CHANGED
@@ -19,954 +19,767 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Opcje zaktualizowane"
|
26 |
|
27 |
-
#: counter-options.php:
|
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:
|
34 |
#@ cpd
|
35 |
msgid "update next"
|
36 |
msgstr "Następna aktualizacja"
|
37 |
|
38 |
-
#: counter-options.php:
|
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:
|
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:
|
51 |
#@ cpd
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Licznik skasowany"
|
54 |
|
55 |
-
#: counter-options.php:
|
56 |
-
#: counter-options.php:
|
57 |
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "USUŃ Count per Day"
|
60 |
|
61 |
-
#: counter-options.php:
|
62 |
-
#: counter-options.php:
|
63 |
-
#: counter-options.php:
|
64 |
#, php-format
|
65 |
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "Tabela %s usunięta"
|
68 |
|
69 |
-
#: counter-options.php:
|
70 |
#@ cpd
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Opcje usunięte"
|
73 |
|
74 |
-
#: counter-options.php:
|
75 |
-
#: counter-options.php:
|
76 |
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Odinstalowanie"
|
79 |
|
80 |
-
#: counter-options.php:
|
81 |
#@ cpd
|
82 |
msgid "Click here"
|
83 |
msgstr "Kliknij tutaj"
|
84 |
|
85 |
-
#: counter-options.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
91 |
#@ cpd
|
92 |
msgid "Online time"
|
93 |
msgstr "Czas bycia online"
|
94 |
|
95 |
-
#: counter-options.php:
|
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:
|
101 |
#@ cpd
|
102 |
msgid "Logged on Users"
|
103 |
msgstr "Zalogowani użytkownicy"
|
104 |
|
105 |
-
#: counter-options.php:
|
106 |
#@ cpd
|
107 |
msgid "count too"
|
108 |
msgstr "również liczyć"
|
109 |
|
110 |
-
#: counter-options.php:
|
111 |
#@ cpd
|
112 |
msgid "until User Level"
|
113 |
msgstr "do poziomu użytkownika"
|
114 |
|
115 |
-
#: counter-options.php:
|
116 |
#@ cpd
|
117 |
msgid "Auto counter"
|
118 |
msgstr "Licznik"
|
119 |
|
120 |
-
#: counter-options.php:
|
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:
|
126 |
#@ cpd
|
127 |
msgid "Bots to ignore"
|
128 |
msgstr "Boty do ignorowania"
|
129 |
|
130 |
-
#: counter-options.php:
|
131 |
#@ default
|
132 |
msgid "Dashboard"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: counter-
|
136 |
-
#: counter
|
137 |
#@ cpd
|
138 |
msgid "Visitors per post"
|
139 |
msgstr "Gości na wpisie"
|
140 |
|
141 |
-
#: counter-options.php:
|
142 |
-
#: counter-options.php:
|
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:
|
148 |
#@ cpd
|
149 |
msgid "Latest Counts - Posts"
|
150 |
msgstr "Ostatnie Odsłony - Wpisy"
|
151 |
|
152 |
-
#: counter-options.php:
|
153 |
#@ cpd
|
154 |
msgid "Latest Counts - Days"
|
155 |
msgstr "Ostatnie Odsłony - Dni"
|
156 |
|
157 |
-
#: counter-options.php:
|
158 |
-
#: counter-options.php:
|
159 |
-
#: counter-options.php:
|
160 |
#@ cpd
|
161 |
msgid "How many days do you want look back?"
|
162 |
msgstr "Ile dni chcesz patrzeć wstecz?"
|
163 |
|
164 |
-
#: counter-options.php:
|
165 |
#@ cpd
|
166 |
msgid "Chart - Days"
|
167 |
msgstr "Wykres - Dni"
|
168 |
|
169 |
-
#: counter-options.php:
|
170 |
#@ cpd
|
171 |
msgid "Chart - Height"
|
172 |
msgstr "Wykres - Wysokość"
|
173 |
|
174 |
-
#: counter-options.php:
|
175 |
#@ cpd
|
176 |
msgid "Height of the biggest bar"
|
177 |
msgstr "Wysokość najwyższego słupka"
|
178 |
|
179 |
-
#: counter-options.php:
|
180 |
#@ cpd
|
181 |
msgid "Countries"
|
182 |
msgstr "Państwa"
|
183 |
|
184 |
-
#: counter-options.php:
|
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:
|
190 |
#@ cpd
|
191 |
msgid "Show in lists"
|
192 |
msgstr "Pokaż na listach"
|
193 |
|
194 |
-
#: counter-options.php:
|
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:
|
200 |
#@ cpd
|
201 |
msgid "Start Values"
|
202 |
msgstr "Startowe Wartości"
|
203 |
|
204 |
-
#: counter-options.php:
|
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:
|
210 |
#@ cpd
|
211 |
msgid "Start date"
|
212 |
msgstr "Data rozpoczęcia"
|
213 |
|
214 |
-
#: counter-options.php:
|
215 |
#@ cpd
|
216 |
msgid "Your old Counter starts at?"
|
217 |
msgstr "Stary licznik zaczął w?"
|
218 |
|
219 |
-
#: counter-options.php:
|
220 |
-
#: counter-options.php:
|
221 |
#@ cpd
|
222 |
msgid "Start count"
|
223 |
msgstr "Stan początkowy licznika"
|
224 |
|
225 |
-
#: counter-options.php:
|
226 |
#@ cpd
|
227 |
msgid "Add this value to \"Total visitors\"."
|
228 |
msgstr "Dodaj tą wartość do \"Gości razem\"."
|
229 |
|
230 |
-
#: counter-options.php:
|
231 |
#@ cpd
|
232 |
msgid "Add this value to \"Total reads\"."
|
233 |
msgstr "Dodaj tą wartość do \"Odsłon razem\"."
|
234 |
|
235 |
-
#: counter-options.php:
|
236 |
#@ cpd
|
237 |
msgid "Update options"
|
238 |
msgstr "Aktualizuj opcje"
|
239 |
|
240 |
-
#: counter-options.php:
|
241 |
#@ cpd
|
242 |
msgid "GeoIP - Countries"
|
243 |
msgstr "GeoIP - Państwa"
|
244 |
|
245 |
-
#: counter-options.php:
|
246 |
#@ cpd
|
247 |
msgid "Update old counter data"
|
248 |
msgstr "Aktualizuj stare dane licznika"
|
249 |
|
250 |
-
#: counter-options.php:
|
251 |
#@ cpd
|
252 |
msgid "Update GeoIP database"
|
253 |
msgstr "Aktualizuj bazę danych GeoIP"
|
254 |
|
255 |
-
#: counter-options.php:
|
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:
|
261 |
#@ cpd
|
262 |
msgid "More informations about GeoIP"
|
263 |
msgstr "Więcej informacji o GeoIP"
|
264 |
|
265 |
-
#: counter-options.php:
|
266 |
-
#: massbots.php:
|
267 |
#@ cpd
|
268 |
msgid "Mass Bots"
|
269 |
msgstr "Masowe boty"
|
270 |
|
271 |
-
#: counter-options.php:
|
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:
|
278 |
-
#: notes.php:
|
279 |
-
#: userperspan.php:
|
280 |
#@ cpd
|
281 |
msgid "show"
|
282 |
msgstr "pokaż"
|
283 |
|
284 |
-
#: counter-options.php:
|
285 |
#@ cpd
|
286 |
msgid "IP"
|
287 |
msgstr "IP"
|
288 |
|
289 |
-
#: counter-options.php:
|
290 |
-
#: notes.php:
|
291 |
#@ cpd
|
292 |
#@ default
|
293 |
msgid "Date"
|
294 |
msgstr "Data"
|
295 |
|
296 |
-
#: counter-options.php:
|
297 |
#@ cpd
|
298 |
msgid "Client"
|
299 |
msgstr "Klient"
|
300 |
|
301 |
-
#: counter-options.php:
|
302 |
#@ cpd
|
303 |
msgid "Views"
|
304 |
msgstr "Wyświetlenia"
|
305 |
|
306 |
-
#: counter-options.php:
|
307 |
-
#: counter-options.php:
|
308 |
#, php-format
|
309 |
#@ cpd
|
310 |
msgid "Delete these %s counts"
|
311 |
msgstr "Usuń te s% dane"
|
312 |
|
313 |
-
#: counter-options.php:
|
314 |
-
#: counter-options.php:
|
315 |
#@ cpd
|
316 |
msgid "Clean the database"
|
317 |
msgstr "Wyczyść bazę danych"
|
318 |
|
319 |
-
#: counter-options.php:
|
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:
|
325 |
-
#: counter-options.php:
|
326 |
#@ cpd
|
327 |
msgid "Reset the counter"
|
328 |
msgstr "Skasuj licznik"
|
329 |
|
330 |
-
#: counter-options.php:
|
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:
|
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:
|
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:
|
346 |
#@ cpd
|
347 |
msgid "WARNING"
|
348 |
msgstr "UWAGA"
|
349 |
|
350 |
-
#: counter-options.php:
|
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:
|
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:
|
361 |
-
#: counter-options.php:809
|
362 |
#@ cpd
|
363 |
msgid "Yes"
|
364 |
msgstr "Tak"
|
365 |
|
366 |
-
#: counter-options.php:
|
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:
|
372 |
#@ cpd
|
373 |
msgid "Support"
|
374 |
msgstr "Wsparcie"
|
375 |
|
376 |
-
#: counter
|
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
|
383 |
#@ cpd
|
384 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
385 |
msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
|
386 |
|
387 |
-
#: counter
|
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:
|
394 |
-
#: counter.php:
|
395 |
#@ cpd
|
396 |
msgid "Total reads"
|
397 |
msgstr "Odsłon razem"
|
398 |
|
399 |
-
#: counter.php:
|
400 |
-
#: counter.php:
|
401 |
#@ cpd
|
402 |
msgid "Reads today"
|
403 |
msgstr "Odsłon dzisiaj"
|
404 |
|
405 |
-
#: counter.php:
|
406 |
-
#: counter.php:
|
407 |
#@ cpd
|
408 |
msgid "Reads yesterday"
|
409 |
msgstr "Odsłon wczoraj"
|
410 |
|
411 |
-
#: counter
|
412 |
-
#: counter.php:
|
413 |
-
#: counter.php:
|
414 |
-
#: counter.php:
|
|
|
415 |
#@ cpd
|
416 |
msgid "Total visitors"
|
417 |
msgstr "Gości razem"
|
418 |
|
419 |
-
#: counter.php:
|
420 |
-
#: counter.php:
|
421 |
#@ cpd
|
422 |
msgid "Visitors currently online"
|
423 |
msgstr "Goście obecnie online"
|
424 |
|
425 |
-
#: counter.php:
|
426 |
-
#: counter.php:
|
427 |
#@ cpd
|
428 |
msgid "Visitors today"
|
429 |
msgstr "Gości dzisiaj"
|
430 |
|
431 |
-
#: counter.php:
|
432 |
-
#: counter.php:
|
433 |
#@ cpd
|
434 |
msgid "Visitors yesterday"
|
435 |
msgstr "Gości wczoraj"
|
436 |
|
437 |
-
#: counter.php:
|
438 |
-
#: counter.php:
|
439 |
#@ cpd
|
440 |
msgid "Visitors last week"
|
441 |
msgstr "Gości w preszłym tygodniu"
|
442 |
|
443 |
-
#: counter
|
444 |
-
#: counter.php:
|
445 |
-
#: counter.php:
|
446 |
-
#: counter.php:
|
447 |
-
#: counter.php:
|
448 |
-
#:
|
|
|
449 |
#@ cpd
|
450 |
msgid "Visitors per day"
|
451 |
msgstr "Gości dziennie"
|
452 |
|
453 |
-
#: counter.php:
|
454 |
-
#: counter.php:
|
455 |
-
#: counter.php:1209
|
456 |
#@ cpd
|
457 |
msgid "Counter starts on"
|
458 |
msgstr "Licznone od"
|
459 |
|
460 |
-
#: counter.php:
|
461 |
-
|
462 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
463 |
#@ cpd
|
464 |
msgid "Notes"
|
465 |
msgstr "Notatka"
|
466 |
|
467 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
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:
|
474 |
#@ default
|
475 |
msgid "Show"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: counter.php:
|
479 |
#@ cpd
|
480 |
msgid "Other"
|
481 |
msgstr "Inne"
|
482 |
|
483 |
-
#: counter.php:
|
484 |
#@ default
|
485 |
msgid "Edit Post"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: counter.php:
|
489 |
-
#: massbots.php:
|
490 |
#: userperspan.php:63
|
491 |
#@ default
|
492 |
msgid "Front page displays"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: counter
|
496 |
-
#: counter-options.php:341
|
497 |
-
#: counter-options.php:565
|
498 |
#@ default
|
499 |
msgid "Settings"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: counter-
|
503 |
-
#: counter
|
504 |
-
#: counter.php:
|
505 |
-
#: counter.php:875
|
506 |
#@ cpd
|
507 |
msgid "Reads"
|
508 |
msgstr "Odsłon"
|
509 |
|
510 |
-
#: counter.php:
|
511 |
#@ cpd
|
512 |
msgid "This post"
|
513 |
msgstr "Ten wpis"
|
514 |
|
515 |
-
#: counter.php:
|
|
|
516 |
#@ cpd
|
517 |
msgid "Reads per day"
|
518 |
msgstr "Odsłon dziennie"
|
519 |
|
520 |
-
#: counter
|
521 |
-
#: counter.php:
|
522 |
#@ cpd
|
523 |
msgid "Visitors per month"
|
524 |
msgstr "Gości miesięcznie"
|
525 |
|
526 |
-
#: counter-
|
527 |
-
#: counter
|
528 |
#@ cpd
|
529 |
msgid "Browsers"
|
530 |
msgstr "Przeglądarki"
|
531 |
|
532 |
-
#: counter
|
533 |
#@ cpd
|
534 |
msgid "Latest Counts"
|
535 |
msgstr "Ostatnie Odsłony"
|
536 |
|
537 |
-
#: counter
|
538 |
#@ default
|
539 |
msgid "Plugin"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: counter
|
543 |
#@ cpd
|
544 |
msgid "Reads per Country"
|
545 |
msgstr "Odsłon na państwo"
|
546 |
|
547 |
-
#: counter
|
548 |
-
#: counter.php:
|
549 |
#@ cpd
|
550 |
msgid "Statistics"
|
551 |
msgstr "Statystyki"
|
552 |
|
553 |
-
#: counter.php:
|
554 |
-
#: counter.php:
|
555 |
#@ cpd
|
556 |
msgid "Map"
|
557 |
msgstr "Mapa"
|
558 |
|
559 |
-
#: geoip/geoip.php:
|
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:
|
565 |
#@ cpd
|
566 |
msgid "New GeoIP database installed."
|
567 |
msgstr "Nowa GeoIP baza danych zainstalowana."
|
568 |
|
569 |
-
#: geoip/geoip.php:
|
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:
|
|
|
|
|
|
|
|
|
|
|
575 |
#@ default
|
576 |
msgid "Action"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: notes.php:
|
580 |
#@ cpd
|
581 |
msgid "add"
|
582 |
msgstr "dodać"
|
583 |
|
584 |
-
#: notes.php:
|
585 |
#@ cpd
|
586 |
msgid "save"
|
587 |
msgstr "zapisać"
|
588 |
|
589 |
-
#: notes.php:
|
590 |
#@ cpd
|
591 |
msgid "delete"
|
592 |
msgstr "usunąć"
|
593 |
|
594 |
-
#: notes.php:
|
595 |
#@ cpd
|
596 |
msgid "edit"
|
597 |
msgstr "edytować"
|
598 |
|
599 |
-
#: counter-options.php:
|
600 |
#@ cpd
|
601 |
msgid "Anonymous IP"
|
602 |
msgstr "Anonimowy IP"
|
603 |
|
604 |
-
#: counter-options.php:
|
605 |
#@ cpd
|
606 |
msgid "Cache"
|
607 |
msgstr "Cache"
|
608 |
|
609 |
-
#: counter-options.php:
|
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:
|
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:
|
620 |
#@ cpd
|
621 |
msgid "Debug mode"
|
622 |
msgstr "Tryb debugowania"
|
623 |
|
624 |
-
#: counter-options.php:
|
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
|
630 |
#@ cpd
|
631 |
msgid "Visitors per Country"
|
632 |
msgstr "Gości na państwo"
|
633 |
|
634 |
-
#: userperspan.php:
|
635 |
#@ cpd
|
636 |
msgid "Start"
|
637 |
msgstr "Start"
|
638 |
|
639 |
-
#: userperspan.php:
|
640 |
#@ cpd
|
641 |
msgid "End"
|
642 |
msgstr "Koniec"
|
643 |
|
644 |
-
#: userperspan.php:
|
645 |
#@ cpd
|
646 |
msgid "PostID"
|
647 |
msgstr "ID wpisu"
|
648 |
|
649 |
-
#: userperspan.php:
|
650 |
#@ cpd
|
651 |
msgid "no data found"
|
652 |
msgstr "Nie znaleziono danych"
|
653 |
|
654 |
-
#: counter-options.php:
|
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:
|
660 |
#@ cpd
|
661 |
msgid "Counter"
|
662 |
msgstr "Licznik"
|
663 |
|
664 |
-
#: counter-options.php:
|
665 |
#@ cpd
|
666 |
msgid "Clients and referrers"
|
667 |
msgstr "Przeglądarka i referrer"
|
668 |
|
669 |
-
#: counter-options.php:
|
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:
|
675 |
#@ cpd
|
676 |
msgid "Local URLs"
|
677 |
msgstr "Lokalne adresy URL"
|
678 |
|
679 |
-
#: counter-options.php:
|
680 |
#@ cpd
|
681 |
msgid "Show local referrers too."
|
682 |
msgstr "Pokaż też lokalny referrer."
|
683 |
|
684 |
-
#: counter-options.php:
|
685 |
#@ default
|
686 |
msgid "Posts"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: counter-options.php:
|
690 |
#@ default
|
691 |
msgid "Pages"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
#@ cpd
|
697 |
msgid "Reads last week"
|
698 |
msgstr "Odsłon w zeszłym tygodniu"
|
699 |
|
700 |
-
#: counter.php:
|
701 |
#@ default
|
702 |
msgid "Category"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: counter.php:
|
706 |
#@ default
|
707 |
msgid "Tag"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: counter
|
711 |
#@ default
|
712 |
msgid "License"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: counter
|
716 |
-
#: counter.php:
|
717 |
#@ cpd
|
718 |
msgid "Reads per month"
|
719 |
msgstr "Odsłon miesięcznie"
|
720 |
|
721 |
-
#: counter
|
722 |
#@ cpd
|
723 |
msgid "Referrer"
|
724 |
msgstr "Referrer"
|
725 |
|
726 |
-
#: counter.php:
|
727 |
#@ default
|
728 |
msgid "Title"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: counter-options.php:
|
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 > 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 "
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: counter-options.php:
|
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 "
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: counter-options.php:
|
920 |
#@ cpd
|
921 |
-
msgid "
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: counter-options.php:
|
925 |
#@ cpd
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: counter-options.php:
|
930 |
-
#, php-format
|
931 |
#@ cpd
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: counter
|
936 |
#, php-format
|
937 |
#@ cpd
|
938 |
-
msgid "
|
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:
|
969 |
#@ cpd
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:46
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Opcje zaktualizowane"
|
26 |
|
27 |
+
#: counter-options.php:57
|
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:62
|
34 |
#@ cpd
|
35 |
msgid "update next"
|
36 |
msgstr "Następna aktualizacja"
|
37 |
|
38 |
+
#: counter-options.php:104
|
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:111
|
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:117
|
51 |
#@ cpd
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Licznik skasowany"
|
54 |
|
55 |
+
#: counter-options.php:121
|
56 |
+
#: counter-options.php:496
|
57 |
#@ cpd
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "USUŃ Count per Day"
|
60 |
|
61 |
+
#: counter-options.php:126
|
62 |
+
#: counter-options.php:128
|
63 |
+
#: counter-options.php:130
|
64 |
#, php-format
|
65 |
#@ cpd
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "Tabela %s usunięta"
|
68 |
|
69 |
+
#: counter-options.php:132
|
70 |
#@ cpd
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Opcje usunięte"
|
73 |
|
74 |
+
#: counter-options.php:156
|
75 |
+
#: counter-options.php:481
|
76 |
#@ cpd
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Odinstalowanie"
|
79 |
|
80 |
+
#: counter-options.php:157
|
81 |
#@ cpd
|
82 |
msgid "Click here"
|
83 |
msgstr "Kliknij tutaj"
|
84 |
|
85 |
+
#: counter-options.php:157
|
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:179
|
91 |
+
#@ cpd
|
92 |
+
msgid "Options"
|
93 |
+
msgstr "Opcje"
|
94 |
+
|
95 |
+
#: counter-options.php:190
|
96 |
#@ cpd
|
97 |
msgid "Online time"
|
98 |
msgstr "Czas bycia online"
|
99 |
|
100 |
+
#: counter-options.php:191
|
101 |
#@ cpd
|
102 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
103 |
msgstr "Sekund w liczniku czasu online. Używane dla \"Goście obecnie online\" na tablicy informacyjnej."
|
104 |
|
105 |
+
#: counter-options.php:194
|
106 |
#@ cpd
|
107 |
msgid "Logged on Users"
|
108 |
msgstr "Zalogowani użytkownicy"
|
109 |
|
110 |
+
#: counter-options.php:196
|
111 |
#@ cpd
|
112 |
msgid "count too"
|
113 |
msgstr "również liczyć"
|
114 |
|
115 |
+
#: counter-options.php:197
|
116 |
#@ cpd
|
117 |
msgid "until User Level"
|
118 |
msgstr "do poziomu użytkownika"
|
119 |
|
120 |
+
#: counter-options.php:208
|
121 |
#@ cpd
|
122 |
msgid "Auto counter"
|
123 |
msgstr "Licznik"
|
124 |
|
125 |
+
#: counter-options.php:209
|
126 |
#@ cpd
|
127 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
128 |
msgstr "Liczy automatycznie pojedyncze wpisy i strony, zmiany w szyblonie nie są potrzebne."
|
129 |
|
130 |
+
#: counter-options.php:212
|
131 |
#@ cpd
|
132 |
msgid "Bots to ignore"
|
133 |
msgstr "Boty do ignorowania"
|
134 |
|
135 |
+
#: counter-options.php:233
|
136 |
#@ default
|
137 |
msgid "Dashboard"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: counter-options.php:236
|
141 |
+
#: counter.php:1754
|
142 |
#@ cpd
|
143 |
msgid "Visitors per post"
|
144 |
msgstr "Gości na wpisie"
|
145 |
|
146 |
+
#: counter-options.php:237
|
147 |
+
#: counter-options.php:241
|
148 |
#@ cpd
|
149 |
msgid "How many posts do you want to see on dashboard page?"
|
150 |
msgstr "Ile wpisów chcesz widzieć na tablicy informacyjnej?"
|
151 |
|
152 |
+
#: counter-options.php:240
|
153 |
#@ cpd
|
154 |
msgid "Latest Counts - Posts"
|
155 |
msgstr "Ostatnie Odsłony - Wpisy"
|
156 |
|
157 |
+
#: counter-options.php:244
|
158 |
#@ cpd
|
159 |
msgid "Latest Counts - Days"
|
160 |
msgstr "Ostatnie Odsłony - Dni"
|
161 |
|
162 |
+
#: counter-options.php:245
|
163 |
+
#: counter-options.php:249
|
164 |
+
#: counter-options.php:275
|
165 |
#@ cpd
|
166 |
msgid "How many days do you want look back?"
|
167 |
msgstr "Ile dni chcesz patrzeć wstecz?"
|
168 |
|
169 |
+
#: counter-options.php:248
|
170 |
#@ cpd
|
171 |
msgid "Chart - Days"
|
172 |
msgstr "Wykres - Dni"
|
173 |
|
174 |
+
#: counter-options.php:252
|
175 |
#@ cpd
|
176 |
msgid "Chart - Height"
|
177 |
msgstr "Wykres - Wysokość"
|
178 |
|
179 |
+
#: counter-options.php:253
|
180 |
#@ cpd
|
181 |
msgid "Height of the biggest bar"
|
182 |
msgstr "Wysokość najwyższego słupka"
|
183 |
|
184 |
+
#: counter-options.php:261
|
185 |
#@ cpd
|
186 |
msgid "Countries"
|
187 |
msgstr "Państwa"
|
188 |
|
189 |
+
#: counter-options.php:262
|
190 |
#@ cpd
|
191 |
msgid "How many countries do you want to see on dashboard page?"
|
192 |
msgstr "Ile państw chcesz widzieć na tablicy informacyjnej?"
|
193 |
|
194 |
+
#: counter-options.php:290
|
195 |
#@ cpd
|
196 |
msgid "Show in lists"
|
197 |
msgstr "Pokaż na listach"
|
198 |
|
199 |
+
#: counter-options.php:291
|
200 |
#@ cpd
|
201 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
202 |
msgstr "Pokaż \"Odsłony wpisu\" w nowej kolumnie w przeglądzie wpisów."
|
203 |
|
204 |
+
#: counter-options.php:299
|
205 |
#@ cpd
|
206 |
msgid "Start Values"
|
207 |
msgstr "Startowe Wartości"
|
208 |
|
209 |
+
#: counter-options.php:303
|
210 |
#@ cpd
|
211 |
msgid "Here you can change the date of first count and add a start count."
|
212 |
msgstr "Tutaj możesz zmienić datę rozpoczęcia i stan początkowy licznika."
|
213 |
|
214 |
+
#: counter-options.php:307
|
215 |
#@ cpd
|
216 |
msgid "Start date"
|
217 |
msgstr "Data rozpoczęcia"
|
218 |
|
219 |
+
#: counter-options.php:308
|
220 |
#@ cpd
|
221 |
msgid "Your old Counter starts at?"
|
222 |
msgstr "Stary licznik zaczął w?"
|
223 |
|
224 |
+
#: counter-options.php:311
|
225 |
+
#: counter-options.php:315
|
226 |
#@ cpd
|
227 |
msgid "Start count"
|
228 |
msgstr "Stan początkowy licznika"
|
229 |
|
230 |
+
#: counter-options.php:312
|
231 |
#@ cpd
|
232 |
msgid "Add this value to \"Total visitors\"."
|
233 |
msgstr "Dodaj tą wartość do \"Gości razem\"."
|
234 |
|
235 |
+
#: counter-options.php:316
|
236 |
#@ cpd
|
237 |
msgid "Add this value to \"Total reads\"."
|
238 |
msgstr "Dodaj tą wartość do \"Odsłon razem\"."
|
239 |
|
240 |
+
#: counter-options.php:331
|
241 |
#@ cpd
|
242 |
msgid "Update options"
|
243 |
msgstr "Aktualizuj opcje"
|
244 |
|
245 |
+
#: counter-options.php:340
|
246 |
#@ cpd
|
247 |
msgid "GeoIP - Countries"
|
248 |
msgstr "GeoIP - Państwa"
|
249 |
|
250 |
+
#: counter-options.php:349
|
251 |
#@ cpd
|
252 |
msgid "Update old counter data"
|
253 |
msgstr "Aktualizuj stare dane licznika"
|
254 |
|
255 |
+
#: counter-options.php:362
|
256 |
#@ cpd
|
257 |
msgid "Update GeoIP database"
|
258 |
msgstr "Aktualizuj bazę danych GeoIP"
|
259 |
|
260 |
+
#: counter-options.php:365
|
261 |
#@ cpd
|
262 |
msgid "Download a new version of GeoIP.dat file."
|
263 |
msgstr "Pobierz nową wersję pliku GeoIP.dat."
|
264 |
|
265 |
+
#: counter-options.php:371
|
266 |
#@ cpd
|
267 |
msgid "More informations about GeoIP"
|
268 |
msgstr "Więcej informacji o GeoIP"
|
269 |
|
270 |
+
#: counter-options.php:386
|
271 |
+
#: massbots.php:33
|
272 |
#@ cpd
|
273 |
msgid "Mass Bots"
|
274 |
msgstr "Masowe boty"
|
275 |
|
276 |
+
#: counter-options.php:390
|
277 |
#, php-format
|
278 |
#@ cpd
|
279 |
msgid "Show all IPs with more than %s page views per day"
|
280 |
msgstr "Pokaż wszystkie adresy IP z więcej niż %s odsłon dziennie"
|
281 |
|
282 |
+
#: counter-options.php:391
|
283 |
+
#: notes.php:76
|
284 |
+
#: userperspan.php:43
|
285 |
#@ cpd
|
286 |
msgid "show"
|
287 |
msgstr "pokaż"
|
288 |
|
289 |
+
#: counter-options.php:399
|
290 |
#@ cpd
|
291 |
msgid "IP"
|
292 |
msgstr "IP"
|
293 |
|
294 |
+
#: counter-options.php:400
|
295 |
+
#: notes.php:80
|
296 |
#@ cpd
|
297 |
#@ default
|
298 |
msgid "Date"
|
299 |
msgstr "Data"
|
300 |
|
301 |
+
#: counter-options.php:401
|
302 |
#@ cpd
|
303 |
msgid "Client"
|
304 |
msgstr "Klient"
|
305 |
|
306 |
+
#: counter-options.php:402
|
307 |
#@ cpd
|
308 |
msgid "Views"
|
309 |
msgstr "Wyświetlenia"
|
310 |
|
311 |
+
#: counter-options.php:413
|
312 |
+
#: counter-options.php:435
|
313 |
#, php-format
|
314 |
#@ cpd
|
315 |
msgid "Delete these %s counts"
|
316 |
msgstr "Usuń te s% dane"
|
317 |
|
318 |
+
#: counter-options.php:445
|
319 |
+
#: counter-options.php:454
|
320 |
#@ cpd
|
321 |
msgid "Clean the database"
|
322 |
msgstr "Wyczyść bazę danych"
|
323 |
|
324 |
+
#: counter-options.php:448
|
325 |
#@ cpd
|
326 |
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."
|
327 |
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."
|
328 |
|
329 |
+
#: counter-options.php:463
|
330 |
+
#: counter-options.php:472
|
331 |
#@ cpd
|
332 |
msgid "Reset the counter"
|
333 |
msgstr "Skasuj licznik"
|
334 |
|
335 |
+
#: counter-options.php:466
|
336 |
#@ cpd
|
337 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
338 |
msgstr "Możesz wykasować licznik przez wyzerowanie tabeli. WSZYSTKIE do 0!<br />Jeśli potrzebujesz aktualne dane, zrób kopie!"
|
339 |
|
340 |
+
#: counter-options.php:484
|
341 |
#@ cpd
|
342 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
343 |
msgstr "Jeśli \"Count per Day\" jest tylko nieaktywny, tabele w bazie danych zostaną zachowane."
|
344 |
|
345 |
+
#: counter-options.php:485
|
346 |
#@ cpd
|
347 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
348 |
msgstr "Tutaj możesz usunąć tabele i wyłączyć \"Count per Day\"."
|
349 |
|
350 |
+
#: counter-options.php:488
|
351 |
#@ cpd
|
352 |
msgid "WARNING"
|
353 |
msgstr "UWAGA"
|
354 |
|
355 |
+
#: counter-options.php:489
|
356 |
#@ cpd
|
357 |
msgid "These tables (with ALL counter data) will be deleted."
|
358 |
msgstr "Te tabele (z WSZYSTKIMI danymi licznika) zostaną usunięte."
|
359 |
|
360 |
+
#: counter-options.php:491
|
361 |
#@ cpd
|
362 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
363 |
msgstr "Jeśli \"Count per Day\" będzie reinstalowany, licznik zacznie się od 0."
|
364 |
|
365 |
+
#: counter-options.php:495
|
|
|
366 |
#@ cpd
|
367 |
msgid "Yes"
|
368 |
msgstr "Tak"
|
369 |
|
370 |
+
#: counter-options.php:496
|
371 |
#@ cpd
|
372 |
msgid "You are sure to disable Count per Day and delete all data?"
|
373 |
msgstr "Jesteś pewny, że chcesz wyłączyć Count per Day i usunąć wszystkie dane?"
|
374 |
|
375 |
+
#: counter-options.php:504
|
376 |
#@ cpd
|
377 |
msgid "Support"
|
378 |
msgstr "Wsparcie"
|
379 |
|
380 |
+
#: counter.php:1716
|
381 |
#, php-format
|
382 |
#@ cpd
|
383 |
msgid "Time for Count per Day: <code>%s</code>."
|
384 |
msgstr "Czas u Count per Day: <code>%s</code>."
|
385 |
|
386 |
+
#: counter.php:1717
|
387 |
#@ cpd
|
388 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
389 |
msgstr "Błąd? Problem? Pytanie? Podpowiedź? Pochwały?"
|
390 |
|
391 |
+
#: counter.php:1718
|
392 |
#, php-format
|
393 |
#@ cpd
|
394 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
395 |
msgstr "Napisz komentarz na <a href=\"%s\">stronie wtyczki</a>."
|
396 |
|
397 |
+
#: counter.php:524
|
398 |
+
#: counter.php:2219
|
399 |
#@ cpd
|
400 |
msgid "Total reads"
|
401 |
msgstr "Odsłon razem"
|
402 |
|
403 |
+
#: counter.php:525
|
404 |
+
#: counter.php:2220
|
405 |
#@ cpd
|
406 |
msgid "Reads today"
|
407 |
msgstr "Odsłon dzisiaj"
|
408 |
|
409 |
+
#: counter.php:526
|
410 |
+
#: counter.php:2221
|
411 |
#@ cpd
|
412 |
msgid "Reads yesterday"
|
413 |
msgstr "Odsłon wczoraj"
|
414 |
|
415 |
+
#: counter.php:529
|
416 |
+
#: counter.php:534
|
417 |
+
#: counter.php:1604
|
418 |
+
#: counter.php:1750
|
419 |
+
#: counter.php:2224
|
420 |
#@ cpd
|
421 |
msgid "Total visitors"
|
422 |
msgstr "Gości razem"
|
423 |
|
424 |
+
#: counter.php:530
|
425 |
+
#: counter.php:2230
|
426 |
#@ cpd
|
427 |
msgid "Visitors currently online"
|
428 |
msgstr "Goście obecnie online"
|
429 |
|
430 |
+
#: counter.php:531
|
431 |
+
#: counter.php:2225
|
432 |
#@ cpd
|
433 |
msgid "Visitors today"
|
434 |
msgstr "Gości dzisiaj"
|
435 |
|
436 |
+
#: counter.php:532
|
437 |
+
#: counter.php:2226
|
438 |
#@ cpd
|
439 |
msgid "Visitors yesterday"
|
440 |
msgstr "Gości wczoraj"
|
441 |
|
442 |
+
#: counter.php:533
|
443 |
+
#: counter.php:2227
|
444 |
#@ cpd
|
445 |
msgid "Visitors last week"
|
446 |
msgstr "Gości w preszłym tygodniu"
|
447 |
|
448 |
+
#: counter.php:535
|
449 |
+
#: counter.php:636
|
450 |
+
#: counter.php:1606
|
451 |
+
#: counter.php:1756
|
452 |
+
#: counter.php:1765
|
453 |
+
#: counter.php:2229
|
454 |
+
#: userperspan.php:33
|
455 |
#@ cpd
|
456 |
msgid "Visitors per day"
|
457 |
msgstr "Gości dziennie"
|
458 |
|
459 |
+
#: counter.php:536
|
460 |
+
#: counter.php:2231
|
|
|
461 |
#@ cpd
|
462 |
msgid "Counter starts on"
|
463 |
msgstr "Licznone od"
|
464 |
|
465 |
+
#: counter.php:819
|
466 |
+
#@ cpd
|
467 |
+
msgid "days"
|
468 |
+
msgstr "dni"
|
469 |
+
|
470 |
+
#: counter.php:822
|
471 |
+
#: counter.php:1376
|
472 |
+
#: notes.php:47
|
473 |
+
#: notes.php:81
|
474 |
#@ cpd
|
475 |
msgid "Notes"
|
476 |
msgstr "Notatka"
|
477 |
|
478 |
+
#: counter.php:845
|
479 |
+
#@ cpd
|
480 |
+
msgid "no reads at this time"
|
481 |
+
msgstr "bez odczytów w tym czasie"
|
482 |
+
|
483 |
+
#: counter.php:1257
|
484 |
#, php-format
|
485 |
#@ cpd
|
486 |
msgid "The %s most visited posts in last %s days:"
|
487 |
msgstr "%s najczęściej odwiedzanych wpisów w %s ostatnich dni:"
|
488 |
|
489 |
+
#: counter.php:1374
|
490 |
#@ default
|
491 |
msgid "Show"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: counter.php:1421
|
495 |
#@ cpd
|
496 |
msgid "Other"
|
497 |
msgstr "Inne"
|
498 |
|
499 |
+
#: counter.php:1505
|
500 |
#@ default
|
501 |
msgid "Edit Post"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: counter.php:1520
|
505 |
+
#: massbots.php:50
|
506 |
#: userperspan.php:63
|
507 |
#@ default
|
508 |
msgid "Front page displays"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: counter.php:1591
|
|
|
|
|
512 |
#@ default
|
513 |
msgid "Settings"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: counter-options.php:225
|
517 |
+
#: counter.php:528
|
518 |
+
#: counter.php:1661
|
|
|
519 |
#@ cpd
|
520 |
msgid "Reads"
|
521 |
msgstr "Odsłon"
|
522 |
|
523 |
+
#: counter.php:2218
|
524 |
#@ cpd
|
525 |
msgid "This post"
|
526 |
msgstr "Ten wpis"
|
527 |
|
528 |
+
#: counter.php:635
|
529 |
+
#: counter.php:1766
|
530 |
#@ cpd
|
531 |
msgid "Reads per day"
|
532 |
msgstr "Odsłon dziennie"
|
533 |
|
534 |
+
#: counter.php:1752
|
535 |
+
#: counter.php:2228
|
536 |
#@ cpd
|
537 |
msgid "Visitors per month"
|
538 |
msgstr "Gości miesięcznie"
|
539 |
|
540 |
+
#: counter-options.php:266
|
541 |
+
#: counter.php:1760
|
542 |
#@ cpd
|
543 |
msgid "Browsers"
|
544 |
msgstr "Przeglądarki"
|
545 |
|
546 |
+
#: counter.php:1755
|
547 |
#@ cpd
|
548 |
msgid "Latest Counts"
|
549 |
msgstr "Ostatnie Odsłony"
|
550 |
|
551 |
+
#: counter.php:1757
|
552 |
#@ default
|
553 |
msgid "Plugin"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: counter.php:1770
|
557 |
#@ cpd
|
558 |
msgid "Reads per Country"
|
559 |
msgstr "Odsłon na państwo"
|
560 |
|
561 |
+
#: counter.php:1786
|
562 |
+
#: counter.php:2147
|
563 |
#@ cpd
|
564 |
msgid "Statistics"
|
565 |
msgstr "Statystyki"
|
566 |
|
567 |
+
#: counter.php:900
|
568 |
+
#: counter.php:1856
|
569 |
#@ cpd
|
570 |
msgid "Map"
|
571 |
msgstr "Mapa"
|
572 |
|
573 |
+
#: geoip/geoip.php:108
|
574 |
#@ cpd
|
575 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
576 |
msgstr "Przepraszamy, niezbędne funkcje (zlib) nie są zainstalowane lub włączone w php.ini."
|
577 |
|
578 |
+
#: geoip/geoip.php:132
|
579 |
#@ cpd
|
580 |
msgid "New GeoIP database installed."
|
581 |
msgstr "Nowa GeoIP baza danych zainstalowana."
|
582 |
|
583 |
+
#: geoip/geoip.php:134
|
584 |
#@ cpd
|
585 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
586 |
msgstr "Przepraszamy, wystąpił błąd. Spróbuj ponownie lub sprawdzić prawa dostępu do katalogu \"geoip\", jest 777."
|
587 |
|
588 |
+
#: notes.php:81
|
589 |
+
#@ cpd
|
590 |
+
msgid "(1 per day)"
|
591 |
+
msgstr "(1 na dzień)"
|
592 |
+
|
593 |
+
#: notes.php:82
|
594 |
#@ default
|
595 |
msgid "Action"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: notes.php:87
|
599 |
#@ cpd
|
600 |
msgid "add"
|
601 |
msgstr "dodać"
|
602 |
|
603 |
+
#: notes.php:102
|
604 |
#@ cpd
|
605 |
msgid "save"
|
606 |
msgstr "zapisać"
|
607 |
|
608 |
+
#: notes.php:103
|
609 |
#@ cpd
|
610 |
msgid "delete"
|
611 |
msgstr "usunąć"
|
612 |
|
613 |
+
#: notes.php:114
|
614 |
#@ cpd
|
615 |
msgid "edit"
|
616 |
msgstr "edytować"
|
617 |
|
618 |
+
#: counter-options.php:216
|
619 |
#@ cpd
|
620 |
msgid "Anonymous IP"
|
621 |
msgstr "Anonimowy IP"
|
622 |
|
623 |
+
#: counter-options.php:220
|
624 |
#@ cpd
|
625 |
msgid "Cache"
|
626 |
msgstr "Cache"
|
627 |
|
628 |
+
#: counter-options.php:221
|
629 |
#@ cpd
|
630 |
msgid "I use a cache plugin. Count these visits with ajax."
|
631 |
msgstr "Używam cache plugin. Licz wizyty z AJAX."
|
632 |
|
633 |
+
#: counter-options.php:267
|
634 |
#@ cpd
|
635 |
msgid "Substring of the user agent, separated by comma"
|
636 |
msgstr "Identyfikatory przeglądarki (user agent), oddzielone przecinkiem"
|
637 |
|
638 |
+
#: counter-options.php:324
|
639 |
#@ cpd
|
640 |
msgid "Debug mode"
|
641 |
msgstr "Tryb debugowania"
|
642 |
|
643 |
+
#: counter-options.php:326
|
644 |
#@ cpd
|
645 |
msgid "Show debug informations at the bottom of all pages."
|
646 |
msgstr "Pokaż debug analizę na dole wszystkich stron."
|
647 |
|
648 |
+
#: counter.php:1771
|
649 |
#@ cpd
|
650 |
msgid "Visitors per Country"
|
651 |
msgstr "Gości na państwo"
|
652 |
|
653 |
+
#: userperspan.php:37
|
654 |
#@ cpd
|
655 |
msgid "Start"
|
656 |
msgstr "Start"
|
657 |
|
658 |
+
#: userperspan.php:39
|
659 |
#@ cpd
|
660 |
msgid "End"
|
661 |
msgstr "Koniec"
|
662 |
|
663 |
+
#: userperspan.php:41
|
664 |
#@ cpd
|
665 |
msgid "PostID"
|
666 |
msgstr "ID wpisu"
|
667 |
|
668 |
+
#: userperspan.php:49
|
669 |
#@ cpd
|
670 |
msgid "no data found"
|
671 |
msgstr "Nie znaleziono danych"
|
672 |
|
673 |
+
#: counter-options.php:352
|
674 |
#@ cpd
|
675 |
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!"
|
676 |
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ć!"
|
677 |
|
678 |
+
#: counter-options.php:186
|
679 |
#@ cpd
|
680 |
msgid "Counter"
|
681 |
msgstr "Licznik"
|
682 |
|
683 |
+
#: counter-options.php:224
|
684 |
#@ cpd
|
685 |
msgid "Clients and referrers"
|
686 |
msgstr "Przeglądarka i referrer"
|
687 |
|
688 |
+
#: counter-options.php:225
|
689 |
#@ cpd
|
690 |
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."
|
691 |
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."
|
692 |
|
693 |
+
#: counter-options.php:278
|
694 |
#@ cpd
|
695 |
msgid "Local URLs"
|
696 |
msgstr "Lokalne adresy URL"
|
697 |
|
698 |
+
#: counter-options.php:279
|
699 |
#@ cpd
|
700 |
msgid "Show local referrers too."
|
701 |
msgstr "Pokaż też lokalny referrer."
|
702 |
|
703 |
+
#: counter-options.php:287
|
704 |
#@ default
|
705 |
msgid "Posts"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: counter-options.php:287
|
709 |
#@ default
|
710 |
msgid "Pages"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: counter.php:527
|
714 |
+
#: counter.php:2222
|
715 |
#@ cpd
|
716 |
msgid "Reads last week"
|
717 |
msgstr "Odsłon w zeszłym tygodniu"
|
718 |
|
719 |
+
#: counter.php:1514
|
720 |
#@ default
|
721 |
msgid "Category"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: counter.php:1517
|
725 |
#@ default
|
726 |
msgid "Tag"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: counter.php:1719
|
730 |
#@ default
|
731 |
msgid "License"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: counter.php:1753
|
735 |
+
#: counter.php:2223
|
736 |
#@ cpd
|
737 |
msgid "Reads per month"
|
738 |
msgstr "Odsłon miesięcznie"
|
739 |
|
740 |
+
#: counter.php:1761
|
741 |
#@ cpd
|
742 |
msgid "Referrer"
|
743 |
msgstr "Referrer"
|
744 |
|
745 |
+
#: counter.php:2242
|
746 |
#@ default
|
747 |
msgid "Title"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: counter-options.php:256
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
751 |
#@ cpd
|
752 |
+
msgid "Old Charts"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: counter-options.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
756 |
#@ cpd
|
757 |
+
msgid "Show old bar charts."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: counter-options.php:270
|
761 |
#@ cpd
|
762 |
+
msgid "Referrers - Entries"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: counter-options.php:271
|
766 |
#@ cpd
|
767 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: counter-options.php:274
|
|
|
771 |
#@ cpd
|
772 |
+
msgid "Referrers - Days"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: counter.php:1449
|
776 |
#, php-format
|
777 |
#@ cpd
|
778 |
+
msgid "The %s referrers in last %s days:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: counter.php:1751
|
782 |
#@ cpd
|
783 |
+
msgid "Visitors online"
|
784 |
msgstr ""
|
785 |
|
locale/cpd-pt_BR.mo
CHANGED
Binary file
|
locale/cpd-pt_BR.po
CHANGED
@@ -13,959 +13,773 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Portuguese\n"
|
14 |
"X-Poedit-Country: BRAZIL\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
"X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
|
|
21 |
#@ cpd
|
22 |
-
#: counter-options.php:49
|
23 |
msgid "Options updated"
|
24 |
msgstr "Opções atualizadas"
|
25 |
|
26 |
-
|
27 |
-
#: counter-options.php:112
|
28 |
#, php-format
|
|
|
29 |
msgid "Database cleaned. %s rows deleted."
|
30 |
msgstr "Banco de dados limpo. %s linhas apagadas."
|
31 |
|
|
|
|
|
32 |
#@ cpd
|
33 |
-
#: counter-options.php:127
|
34 |
-
#: counter-options.php:810
|
35 |
msgid "UNINSTALL Count per Day"
|
36 |
msgstr "DESINSTALAR o Count per Day"
|
37 |
|
38 |
-
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:134
|
42 |
#, php-format
|
|
|
43 |
msgid "Table %s deleted"
|
44 |
msgstr "Tabela %s apagada"
|
45 |
|
|
|
46 |
#@ cpd
|
47 |
-
#: counter-options.php:135
|
48 |
msgid "Options deleted"
|
49 |
msgstr "Opções apagadas"
|
50 |
|
|
|
|
|
51 |
#@ cpd
|
52 |
-
#: counter-options.php:316
|
53 |
-
#: counter-options.php:796
|
54 |
msgid "Uninstall"
|
55 |
msgstr "Desinstalar"
|
56 |
|
|
|
57 |
#@ cpd
|
58 |
-
#: counter-options.php:317
|
59 |
msgid "Click here"
|
60 |
msgstr "Clique aqui"
|
61 |
|
|
|
62 |
#@ cpd
|
63 |
-
#: counter-options.php:317
|
64 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
65 |
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
#@ cpd
|
68 |
-
#: counter-options.php:355
|
69 |
msgid "Online time"
|
70 |
msgstr "Período online"
|
71 |
|
|
|
72 |
#@ cpd
|
73 |
-
#: counter-options.php:356
|
74 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
76 |
|
|
|
77 |
#@ cpd
|
78 |
-
#: counter-options.php:359
|
79 |
msgid "Logged on Users"
|
80 |
msgstr "Usuários logados"
|
81 |
|
|
|
82 |
#@ cpd
|
83 |
-
#: counter-options.php:361
|
84 |
msgid "count too"
|
85 |
msgstr "contar também"
|
86 |
|
|
|
87 |
#@ cpd
|
88 |
-
#: counter-options.php:373
|
89 |
msgid "Auto counter"
|
90 |
msgstr "Autocontador"
|
91 |
|
|
|
92 |
#@ cpd
|
93 |
-
#: counter-options.php:374
|
94 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
95 |
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
96 |
|
|
|
97 |
#@ cpd
|
98 |
-
#: counter-options.php:377
|
99 |
msgid "Bots to ignore"
|
100 |
msgstr "Bots a serem ignorados"
|
101 |
|
|
|
102 |
#@ cpd
|
103 |
-
#: counter-options.php:561
|
104 |
msgid "Update options"
|
105 |
msgstr "Atualizar opções"
|
106 |
|
|
|
|
|
107 |
#@ cpd
|
108 |
-
#: counter-options.php:656
|
109 |
-
#: counter-options.php:665
|
110 |
msgid "Clean the database"
|
111 |
msgstr "Limpar o banco de dados"
|
112 |
|
|
|
113 |
#@ cpd
|
114 |
-
#: counter-options.php:659
|
115 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
116 |
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
117 |
|
|
|
118 |
#@ cpd
|
119 |
-
#: counter-options.php:799
|
120 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
121 |
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
122 |
|
|
|
123 |
#@ cpd
|
124 |
-
#: counter-options.php:800
|
125 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
126 |
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
127 |
|
|
|
128 |
#@ cpd
|
129 |
-
#: counter-options.php:803
|
130 |
msgid "WARNING"
|
131 |
msgstr "ATENÇÃO"
|
132 |
|
|
|
133 |
#@ cpd
|
134 |
-
#: counter-options.php:804
|
135 |
msgid "These tables (with ALL counter data) will be deleted."
|
136 |
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
137 |
|
|
|
138 |
#@ cpd
|
139 |
-
#: counter-options.php:806
|
140 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
141 |
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
142 |
|
|
|
143 |
#@ cpd
|
144 |
-
#: counter-options.php:786
|
145 |
-
#: counter-options.php:809
|
146 |
msgid "Yes"
|
147 |
msgstr "Sim, quero"
|
148 |
|
|
|
149 |
#@ cpd
|
150 |
-
#: counter-options.php:810
|
151 |
msgid "You are sure to disable Count per Day and delete all data?"
|
152 |
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
153 |
|
|
|
|
|
154 |
#@ cpd
|
155 |
-
#: counter-core.php:754
|
156 |
-
#: counter.php:1124
|
157 |
msgid "Statistics"
|
158 |
msgstr "Estatísticas"
|
159 |
|
|
|
|
|
|
|
|
|
|
|
160 |
#@ cpd
|
161 |
-
#: counter-core.php:723
|
162 |
-
#: counter.php:160
|
163 |
-
#: counter.php:1010
|
164 |
-
#: counter.php:1202
|
165 |
msgid "Total visitors"
|
166 |
msgstr "Total de visitas"
|
167 |
|
|
|
|
|
168 |
#@ cpd
|
169 |
-
#: counter.php:161
|
170 |
-
#: counter.php:1208
|
171 |
msgid "Visitors currently online"
|
172 |
msgstr "Visitantes online"
|
173 |
|
|
|
|
|
174 |
#@ cpd
|
175 |
-
#: counter.php:162
|
176 |
-
#: counter.php:1203
|
177 |
msgid "Visitors today"
|
178 |
msgstr "Visitas hoje"
|
179 |
|
|
|
|
|
180 |
#@ cpd
|
181 |
-
#: counter.php:163
|
182 |
-
#: counter.php:1204
|
183 |
msgid "Visitors yesterday"
|
184 |
msgstr "Visitas ontem"
|
185 |
|
|
|
|
|
186 |
#@ cpd
|
187 |
-
#: counter.php:164
|
188 |
-
#: counter.php:1205
|
189 |
msgid "Visitors last week"
|
190 |
msgstr "Visitas semana passada"
|
191 |
|
|
|
|
|
192 |
#@ cpd
|
193 |
-
#: counter.php:167
|
194 |
-
#: counter.php:825
|
195 |
-
#: counter.php:1209
|
196 |
msgid "Counter starts on"
|
197 |
msgstr "Início da contagem"
|
198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
#@ cpd
|
200 |
-
#: counter-core.php:729
|
201 |
-
#: counter.php:166
|
202 |
-
#: counter.php:263
|
203 |
-
#: counter.php:1012
|
204 |
-
#: counter.php:1207
|
205 |
-
#: userperspan.php:34
|
206 |
msgid "Visitors per day"
|
207 |
msgstr "(média) de visitas por dia"
|
208 |
|
|
|
|
|
209 |
#@ cpd
|
210 |
-
#: counter-core.php:725
|
211 |
-
#: counter.php:1206
|
212 |
msgid "Visitors per month"
|
213 |
msgstr "Visitas por mês"
|
214 |
|
|
|
|
|
215 |
#@ cpd
|
216 |
-
#: counter-core.php:727
|
217 |
-
#: counter-options.php:438
|
218 |
msgid "Visitors per post"
|
219 |
msgstr "Visitas por post"
|
220 |
|
221 |
-
|
222 |
-
#: counter-options.php:60
|
223 |
#, php-format
|
|
|
224 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
225 |
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
226 |
|
|
|
227 |
#@ cpd
|
228 |
-
#: counter-options.php:65
|
229 |
msgid "update next"
|
230 |
msgstr "Atualizar proximo"
|
231 |
|
232 |
-
|
233 |
-
#: counter-options.php:102
|
234 |
#, php-format
|
|
|
235 |
msgid "Mass Bots cleaned. %s counts deleted."
|
236 |
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
237 |
|
|
|
238 |
#@ cpd
|
239 |
-
#: counter-options.php:122
|
240 |
msgid "Counter reseted."
|
241 |
msgstr "Contador reiniciado."
|
242 |
|
|
|
243 |
#@ default
|
244 |
-
#: counter-options.php:403
|
245 |
msgid "Dashboard"
|
246 |
msgstr "Painel"
|
247 |
|
|
|
|
|
248 |
#@ cpd
|
249 |
-
#: counter-options.php:439
|
250 |
-
#: counter-options.php:443
|
251 |
msgid "How many posts do you want to see on dashboard page?"
|
252 |
msgstr "Quantos posts você deseja visualizar no Painel?"
|
253 |
|
|
|
254 |
#@ cpd
|
255 |
-
#: counter-options.php:442
|
256 |
msgid "Latest Counts - Posts"
|
257 |
msgstr "Contagens Recentes - Posts"
|
258 |
|
|
|
259 |
#@ cpd
|
260 |
-
#: counter-options.php:446
|
261 |
msgid "Latest Counts - Days"
|
262 |
msgstr "Contagens Recentes - Dias"
|
263 |
|
|
|
|
|
|
|
264 |
#@ cpd
|
265 |
-
#: counter-options.php:447
|
266 |
-
#: counter-options.php:451
|
267 |
-
#: counter-options.php:473
|
268 |
msgid "How many days do you want look back?"
|
269 |
msgstr "Quantos dias atrás você quer ver?"
|
270 |
|
|
|
271 |
#@ cpd
|
272 |
-
#: counter-options.php:450
|
273 |
msgid "Chart - Days"
|
274 |
msgstr "Gráfico - Dias"
|
275 |
|
|
|
276 |
#@ cpd
|
277 |
-
#: counter-options.php:454
|
278 |
msgid "Chart - Height"
|
279 |
msgstr "Gráfico - Altura"
|
280 |
|
|
|
281 |
#@ cpd
|
282 |
-
#: counter-options.php:455
|
283 |
msgid "Height of the biggest bar"
|
284 |
msgstr "Altura da barra maior"
|
285 |
|
|
|
286 |
#@ cpd
|
287 |
-
#: counter-options.php:459
|
288 |
msgid "Countries"
|
289 |
msgstr "Países"
|
290 |
|
|
|
291 |
#@ cpd
|
292 |
-
#: counter-options.php:460
|
293 |
msgid "How many countries do you want to see on dashboard page?"
|
294 |
msgstr "Quantos países você quer visualizar no Painel?"
|
295 |
|
|
|
296 |
#@ cpd
|
297 |
-
#: counter-options.php:488
|
298 |
msgid "Show in lists"
|
299 |
msgstr "Exibir em listas"
|
300 |
|
|
|
301 |
#@ cpd
|
302 |
-
#: counter-options.php:489
|
303 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
304 |
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
305 |
|
|
|
306 |
#@ cpd
|
307 |
-
#: counter-options.php:727
|
308 |
msgid "GeoIP - Countries"
|
309 |
msgstr "GeoIP - Países"
|
310 |
|
|
|
311 |
#@ cpd
|
312 |
-
#: counter-options.php:736
|
313 |
msgid "Update old counter data"
|
314 |
msgstr "Atualizar dados de contadores antigos"
|
315 |
|
|
|
316 |
#@ cpd
|
317 |
-
#: counter-options.php:748
|
318 |
msgid "Update GeoIP database"
|
319 |
msgstr "Atualizar Base de Dados GeoIP"
|
320 |
|
|
|
321 |
#@ cpd
|
322 |
-
#: counter-options.php:743
|
323 |
msgid "Download a new version of GeoIP.dat file."
|
324 |
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
325 |
|
|
|
326 |
#@ cpd
|
327 |
-
#: counter-options.php:753
|
328 |
msgid "More informations about GeoIP"
|
329 |
msgstr "Mais informações sobre o GeoIP"
|
330 |
|
|
|
|
|
331 |
#@ cpd
|
332 |
-
#: counter-options.php:580
|
333 |
-
#: massbots.php:35
|
334 |
msgid "Mass Bots"
|
335 |
msgstr "Mass Bots"
|
336 |
|
337 |
-
|
338 |
-
#: counter-options.php:584
|
339 |
#, php-format
|
|
|
340 |
msgid "Show all IPs with more than %s page views per day"
|
341 |
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
342 |
|
|
|
|
|
|
|
343 |
#@ cpd
|
344 |
-
#: counter-options.php:585
|
345 |
-
#: notes.php:71
|
346 |
-
#: userperspan.php:44
|
347 |
msgid "show"
|
348 |
msgstr "exibir"
|
349 |
|
|
|
350 |
#@ cpd
|
351 |
-
#: counter-options.php:593
|
352 |
msgid "IP"
|
353 |
msgstr "IP"
|
354 |
|
|
|
|
|
355 |
#@ cpd
|
356 |
#@ default
|
357 |
-
#: counter-options.php:594
|
358 |
-
#: notes.php:75
|
359 |
msgid "Date"
|
360 |
msgstr "Data"
|
361 |
|
|
|
362 |
#@ cpd
|
363 |
-
#: counter-options.php:595
|
364 |
msgid "Client"
|
365 |
msgstr "Cliente"
|
366 |
|
|
|
367 |
#@ cpd
|
368 |
-
#: counter-options.php:596
|
369 |
msgid "Views"
|
370 |
msgstr "Exibições"
|
371 |
|
372 |
-
|
373 |
-
#: counter-options.php:
|
374 |
-
#: counter-options.php:627
|
375 |
#, php-format
|
|
|
376 |
msgid "Delete these %s counts"
|
377 |
msgstr "Deletar estes %s contadores"
|
378 |
|
|
|
|
|
379 |
#@ cpd
|
380 |
-
#: counter-options.php:777
|
381 |
-
#: counter-options.php:787
|
382 |
msgid "Reset the counter"
|
383 |
msgstr "Reiniciar o contador"
|
384 |
|
|
|
385 |
#@ cpd
|
386 |
-
#: counter-options.php:780
|
387 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
388 |
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
389 |
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
#@ cpd
|
391 |
-
|
|
|
|
|
|
|
392 |
#, php-format
|
|
|
393 |
msgid "The %s most visited posts in last %s days:"
|
394 |
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
395 |
|
|
|
396 |
#@ cpd
|
397 |
-
#: counter.php:821
|
398 |
msgid "Other"
|
399 |
msgstr "Outro"
|
400 |
|
401 |
-
|
402 |
-
#:
|
403 |
-
#: massbots.php:52
|
404 |
#: userperspan.php:63
|
|
|
405 |
msgid "Front page displays"
|
406 |
msgstr "Exibições da primeira página"
|
407 |
|
|
|
408 |
#@ default
|
409 |
-
#: counter-core.php:575
|
410 |
-
#: counter-options.php:341
|
411 |
-
#: counter-options.php:565
|
412 |
msgid "Settings"
|
413 |
msgstr "Configurações"
|
414 |
|
|
|
|
|
|
|
415 |
#@ cpd
|
416 |
-
#: counter-core.php:639
|
417 |
-
#: counter-options.php:392
|
418 |
-
#: counter.php:159
|
419 |
-
#: counter.php:875
|
420 |
msgid "Reads"
|
421 |
msgstr "Leituras"
|
422 |
|
|
|
423 |
#@ cpd
|
424 |
-
#: counter.php:1196
|
425 |
msgid "This post"
|
426 |
msgstr "Este post"
|
427 |
|
|
|
|
|
428 |
#@ cpd
|
429 |
-
#: counter.php:262
|
430 |
msgid "Reads per day"
|
431 |
msgstr "Leituras por dia"
|
432 |
|
|
|
|
|
433 |
#@ cpd
|
434 |
-
#: counter-core.php:733
|
435 |
-
#: counter-options.php:464
|
436 |
msgid "Browsers"
|
437 |
msgstr "Navegadores"
|
438 |
|
|
|
439 |
#@ cpd
|
440 |
-
#: counter-core.php:728
|
441 |
msgid "Latest Counts"
|
442 |
msgstr "Contagens Recentes"
|
443 |
|
|
|
444 |
#@ cpd
|
445 |
-
#: counter-core.php:738
|
446 |
msgid "Reads per Country"
|
447 |
msgstr "Leituras por País"
|
448 |
|
|
|
449 |
#@ cpd
|
450 |
-
#: geoip/geoip.php:93
|
451 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
452 |
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
453 |
|
|
|
454 |
#@ cpd
|
455 |
-
#: geoip/geoip.php:117
|
456 |
msgid "New GeoIP database installed."
|
457 |
msgstr "Nova base de dados GeoIP instalada."
|
458 |
|
|
|
459 |
#@ cpd
|
460 |
-
#: geoip/geoip.php:119
|
461 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
462 |
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
463 |
|
|
|
464 |
#@ cpd
|
465 |
-
#: counter-options.php:362
|
466 |
msgid "until User Level"
|
467 |
msgstr "usuários do nível"
|
468 |
|
|
|
469 |
#@ cpd
|
470 |
-
#: counter-options.php:497
|
471 |
msgid "Start Values"
|
472 |
msgstr "Valor inicial"
|
473 |
|
|
|
474 |
#@ cpd
|
475 |
-
#: counter-options.php:501
|
476 |
msgid "Here you can change the date of first count and add a start count."
|
477 |
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
478 |
|
|
|
479 |
#@ cpd
|
480 |
-
#: counter-options.php:505
|
481 |
msgid "Start date"
|
482 |
msgstr "Data inicial"
|
483 |
|
|
|
484 |
#@ cpd
|
485 |
-
#: counter-options.php:506
|
486 |
msgid "Your old Counter starts at?"
|
487 |
msgstr "Sua contagem antiga começa em?"
|
488 |
|
|
|
|
|
489 |
#@ cpd
|
490 |
-
#: counter-options.php:509
|
491 |
-
#: counter-options.php:513
|
492 |
msgid "Start count"
|
493 |
msgstr "Contagem inicial"
|
494 |
|
|
|
495 |
#@ cpd
|
496 |
-
#: counter-options.php:510
|
497 |
msgid "Add this value to \"Total visitors\"."
|
498 |
msgstr "Adicione este valor para \"Total visitors\"."
|
499 |
|
|
|
500 |
#@ cpd
|
501 |
-
#: counter-options.php:714
|
502 |
msgid "Support"
|
503 |
msgstr "Suporte"
|
504 |
|
|
|
505 |
#@ cpd
|
506 |
-
#: counter-core.php:690
|
507 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
508 |
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
509 |
|
510 |
-
|
511 |
-
#: counter-core.php:691
|
512 |
#, php-format
|
|
|
513 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
514 |
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
515 |
|
|
|
516 |
#@ default
|
517 |
-
#: counter.php:786
|
518 |
msgid "Show"
|
519 |
msgstr "Mostrar"
|
520 |
|
|
|
|
|
|
|
|
|
521 |
#@ cpd
|
522 |
-
#: counter.php:788
|
523 |
-
#: notes.php:42
|
524 |
-
#: notes.php:76
|
525 |
msgid "Notes"
|
526 |
msgstr "Notas"
|
527 |
|
|
|
528 |
#@ default
|
529 |
-
#: counter.php:976
|
530 |
msgid "Edit Post"
|
531 |
msgstr "Editar Post"
|
532 |
|
|
|
533 |
#@ default
|
534 |
-
#: counter-core.php:730
|
535 |
msgid "Plugin"
|
536 |
msgstr "Plugin"
|
537 |
|
538 |
-
|
539 |
-
#: counter-core.php:689
|
540 |
#, php-format
|
|
|
541 |
msgid "Time for Count per Day: <code>%s</code>."
|
542 |
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
543 |
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
#@ default
|
545 |
-
#: notes.php:77
|
546 |
msgid "Action"
|
547 |
msgstr "Ação"
|
548 |
|
|
|
549 |
#@ cpd
|
550 |
-
#: notes.php:82
|
551 |
msgid "add"
|
552 |
msgstr "Adicionar"
|
553 |
|
|
|
554 |
#@ cpd
|
555 |
-
#: notes.php:98
|
556 |
msgid "save"
|
557 |
msgstr "Salvar"
|
558 |
|
|
|
559 |
#@ cpd
|
560 |
-
#: notes.php:99
|
561 |
msgid "delete"
|
562 |
msgstr "Apagar"
|
563 |
|
|
|
564 |
#@ cpd
|
565 |
-
#: notes.php:110
|
566 |
msgid "edit"
|
567 |
msgstr "Editar"
|
568 |
|
|
|
569 |
#@ cpd
|
570 |
-
#: counter-options.php:381
|
571 |
msgid "Anonymous IP"
|
572 |
msgstr "IP Anônimo"
|
573 |
|
|
|
574 |
#@ cpd
|
575 |
-
#: counter-options.php:385
|
576 |
msgid "Cache"
|
577 |
msgstr "Cache"
|
578 |
|
|
|
579 |
#@ cpd
|
580 |
-
#: counter-options.php:386
|
581 |
msgid "I use a cache plugin. Count these visits with ajax."
|
582 |
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
583 |
|
|
|
584 |
#@ cpd
|
585 |
-
#: counter-options.php:465
|
586 |
msgid "Substring of the user agent, separated by comma"
|
587 |
msgstr "Substring do usuário agente, separado por vírgula"
|
588 |
|
|
|
589 |
#@ cpd
|
590 |
-
#: counter-options.php:514
|
591 |
msgid "Add this value to \"Total reads\"."
|
592 |
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
593 |
|
|
|
594 |
#@ cpd
|
595 |
-
#: counter-options.php:554
|
596 |
msgid "Debug mode"
|
597 |
msgstr "Modo de depuração"
|
598 |
|
|
|
599 |
#@ cpd
|
600 |
-
#: counter-options.php:556
|
601 |
msgid "Show debug informations at the bottom of all pages."
|
602 |
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
603 |
|
|
|
|
|
604 |
#@ cpd
|
605 |
-
#: counter.php:155
|
606 |
-
#: counter.php:1197
|
607 |
msgid "Total reads"
|
608 |
msgstr "Total de Leituras"
|
609 |
|
|
|
|
|
610 |
#@ cpd
|
611 |
-
#: counter.php:156
|
612 |
-
#: counter.php:1198
|
613 |
msgid "Reads today"
|
614 |
msgstr "Leituras Hoje"
|
615 |
|
|
|
|
|
616 |
#@ cpd
|
617 |
-
#: counter.php:157
|
618 |
-
#: counter.php:1199
|
619 |
msgid "Reads yesterday"
|
620 |
msgstr "Leituras Ontem"
|
621 |
|
|
|
622 |
#@ cpd
|
623 |
-
#: counter-core.php:739
|
624 |
msgid "Visitors per Country"
|
625 |
msgstr "Visitantes por Paíis"
|
626 |
|
|
|
|
|
627 |
#@ cpd
|
628 |
-
#: counter.php:353
|
629 |
-
#: counter.php:1041
|
630 |
msgid "Map"
|
631 |
msgstr "Mapa"
|
632 |
|
|
|
633 |
#@ cpd
|
634 |
-
#: userperspan.php:38
|
635 |
msgid "Start"
|
636 |
msgstr "Iniciar"
|
637 |
|
|
|
638 |
#@ cpd
|
639 |
-
#: userperspan.php:40
|
640 |
msgid "End"
|
641 |
msgstr "Fim"
|
642 |
|
|
|
643 |
#@ cpd
|
644 |
-
#: userperspan.php:42
|
645 |
msgid "PostID"
|
646 |
msgstr "PostID"
|
647 |
|
|
|
648 |
#@ cpd
|
649 |
-
#: userperspan.php:50
|
650 |
msgid "no data found"
|
651 |
msgstr "Não foram encontrados dados"
|
652 |
|
|
|
653 |
#@ cpd
|
654 |
-
#: counter-options.php:730
|
655 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
656 |
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
657 |
|
|
|
658 |
#@ cpd
|
659 |
-
#: counter-options.php:351
|
660 |
msgid "Counter"
|
661 |
-
msgstr "
|
662 |
|
|
|
663 |
#@ cpd
|
664 |
-
#: counter-options.php:389
|
665 |
msgid "Clients and referrers"
|
666 |
-
msgstr "
|
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 "
|
672 |
|
|
|
673 |
#@ cpd
|
674 |
-
#: counter-options.php:476
|
675 |
msgid "Local URLs"
|
676 |
-
msgstr "
|
677 |
|
|
|
678 |
#@ cpd
|
679 |
-
#: counter-options.php:477
|
680 |
msgid "Show local referrers too."
|
681 |
-
msgstr "
|
682 |
|
|
|
683 |
#@ default
|
684 |
-
#: counter-options.php:485
|
685 |
msgid "Posts"
|
686 |
-
msgstr "
|
687 |
|
|
|
688 |
#@ default
|
689 |
-
#: counter-options.php:485
|
690 |
msgid "Pages"
|
691 |
-
msgstr "
|
692 |
|
|
|
|
|
693 |
#@ cpd
|
694 |
-
#: counter.php:158
|
695 |
-
#: counter.php:1200
|
696 |
msgid "Reads last week"
|
697 |
-
msgstr "
|
698 |
|
|
|
699 |
#@ default
|
700 |
-
#: counter.php:985
|
701 |
msgid "Category"
|
702 |
-
msgstr "
|
703 |
|
|
|
704 |
#@ default
|
705 |
-
#: counter.php:988
|
706 |
msgid "Tag"
|
707 |
-
msgstr "
|
708 |
|
|
|
709 |
#@ default
|
710 |
-
#: counter-core.php:692
|
711 |
msgid "License"
|
712 |
-
msgstr "
|
713 |
|
|
|
|
|
714 |
#@ cpd
|
715 |
-
#: counter-core.php:726
|
716 |
-
#: counter.php:1201
|
717 |
msgid "Reads per month"
|
718 |
-
msgstr "
|
719 |
|
|
|
720 |
#@ cpd
|
721 |
-
#: counter-core.php:734
|
722 |
msgid "Referrer"
|
723 |
-
msgstr "
|
724 |
|
|
|
725 |
#@ default
|
726 |
-
#: counter.php:1220
|
727 |
msgid "Title"
|
728 |
-
msgstr "
|
729 |
-
|
730 |
-
#@ cpd
|
731 |
-
#: counter-options.php:468
|
732 |
-
msgid "Referrers - Entries"
|
733 |
-
msgstr "Referência - entradas"
|
734 |
-
|
735 |
-
#@ cpd
|
736 |
-
#: counter-options.php:469
|
737 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
-
msgstr "Quantas referência você quer ver no painel?"
|
739 |
-
|
740 |
-
#@ cpd
|
741 |
-
#: counter-options.php:472
|
742 |
-
msgid "Referrers - Days"
|
743 |
-
msgstr "Referência - Dias"
|
744 |
-
|
745 |
-
#@ cpd
|
746 |
-
#: counter.php:845
|
747 |
-
#, php-format
|
748 |
-
msgid "The %s referrers in last %s days:"
|
749 |
-
msgstr "AA %s referências nos últimos %s dias:"
|
750 |
-
|
751 |
-
#@ cpd
|
752 |
-
#: counter-core.php:724
|
753 |
-
msgid "Visitors online"
|
754 |
-
msgstr "Visitantes online"
|
755 |
-
|
756 |
-
#@ cpd
|
757 |
-
#: counter-core.php:186
|
758 |
-
#, php-format
|
759 |
-
msgid "\"Count per Day\" updated to version %s."
|
760 |
-
msgstr "Atualizar \"Count per Day\" para a versão %s."
|
761 |
-
|
762 |
-
#@ cpd
|
763 |
-
#: counter-core.php:917
|
764 |
-
msgid "Backup failed! Cannot open file"
|
765 |
-
msgstr "Backup falhou. O arquivo não abriu"
|
766 |
-
|
767 |
-
#@ cpd
|
768 |
-
#: counter-core.php:940
|
769 |
-
#, php-format
|
770 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
-
msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
|
772 |
-
|
773 |
-
#@ cpd
|
774 |
-
#: counter-core.php:1027
|
775 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
776 |
-
msgstr "Seu diretório wp-content não é gravável. Contudo você pode copiar o conteúdo desta caixa para um arquivo de texto."
|
777 |
-
|
778 |
-
#@ cpd
|
779 |
-
#: counter-core.php:1033
|
780 |
-
#, php-format
|
781 |
-
msgid "Backup of counter table saved in %s."
|
782 |
-
msgstr "Backup da tabela do contador salvo em %s."
|
783 |
-
|
784 |
-
#@ cpd
|
785 |
-
#: counter-core.php:1035
|
786 |
-
#, php-format
|
787 |
-
msgid "Backup of counter options and collection saved in %s."
|
788 |
-
msgstr "Backup das opções de contador e acumuladores salvas em %s."
|
789 |
-
|
790 |
-
#@ cpd
|
791 |
-
#: counter-options.php:170
|
792 |
-
msgid "Collection in progress..."
|
793 |
-
msgstr "Acumulador em progresso..."
|
794 |
-
|
795 |
-
#@ cpd
|
796 |
-
#: counter-options.php:240
|
797 |
-
msgid "Get Visitors per Post..."
|
798 |
-
msgstr "Obter visitas por Post..."
|
799 |
-
|
800 |
-
#@ cpd
|
801 |
-
#: counter-options.php:261
|
802 |
-
msgid "Delete old data..."
|
803 |
-
msgstr "Deletar dados antigos..."
|
804 |
-
|
805 |
-
#@ cpd
|
806 |
-
#: counter-options.php:285
|
807 |
-
#, php-format
|
808 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
809 |
-
msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s > tamanho posterior = %s)."
|
810 |
-
|
811 |
-
#@ cpd
|
812 |
-
#: counter-options.php:294
|
813 |
-
msgid "Installation of \"Count per Day\" checked"
|
814 |
-
msgstr "Instalação do \"Count per Day\" checada"
|
815 |
-
|
816 |
-
#@ default
|
817 |
-
#: counter-options.php:342
|
818 |
-
#: counter-options.php:566
|
819 |
-
msgid "Tools"
|
820 |
-
msgstr "Ferramentas"
|
821 |
-
|
822 |
-
#@ cpd
|
823 |
-
#: counter-options.php:394
|
824 |
-
msgid "Save URL only, no query string."
|
825 |
-
msgstr "Salvar somente URL, sem sequencia de caracteres"
|
826 |
-
|
827 |
-
#@ cpd
|
828 |
-
#: counter-options.php:419
|
829 |
-
msgid "Who can see it"
|
830 |
-
msgstr "Quem pode ver isto"
|
831 |
-
|
832 |
-
#@ cpd
|
833 |
-
#: counter-options.php:428
|
834 |
-
msgid "custom"
|
835 |
-
msgstr "Customizar"
|
836 |
-
|
837 |
-
#@ cpd
|
838 |
-
#: counter-options.php:430
|
839 |
-
msgid "and higher are allowed to see the statistics page."
|
840 |
-
msgstr "e superior têm permissão para ver a página de estatísticas."
|
841 |
-
|
842 |
-
#@ cpd
|
843 |
-
#: counter-options.php:432
|
844 |
-
#, php-format
|
845 |
-
msgid "Set the %s capability %s a user need:"
|
846 |
-
msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
|
847 |
-
|
848 |
-
#@ cpd
|
849 |
-
#: counter-options.php:522
|
850 |
-
msgid "Stylesheet"
|
851 |
-
msgstr "Estilo"
|
852 |
-
|
853 |
-
#@ cpd
|
854 |
-
#: counter-options.php:525
|
855 |
-
msgid "NO Stylesheet in Frontend"
|
856 |
-
msgstr "SEM Estilo na interface pública"
|
857 |
-
|
858 |
-
#@ cpd
|
859 |
-
#: counter-options.php:526
|
860 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
861 |
-
msgstr "Não carregue o estilo \"counter.css\" na interface pública"
|
862 |
-
|
863 |
-
#@ cpd
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:639
|
866 |
-
msgid "Backup"
|
867 |
-
msgstr "Backup"
|
868 |
-
|
869 |
-
#@ cpd
|
870 |
-
#: counter-options.php:537
|
871 |
-
msgid "Entries per pass"
|
872 |
-
msgstr "Entradas por passagem"
|
873 |
-
|
874 |
-
#@ cpd
|
875 |
-
#: counter-options.php:540
|
876 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
877 |
-
msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
|
878 |
-
|
879 |
-
#@ cpd
|
880 |
-
#: counter-options.php:545
|
881 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
882 |
-
msgstr "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
|
883 |
-
|
884 |
-
#@ cpd
|
885 |
-
#: counter-options.php:643
|
886 |
-
#, php-format
|
887 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
888 |
-
msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
|
889 |
-
|
890 |
-
#@ cpd
|
891 |
-
#: counter-options.php:647
|
892 |
-
msgid "Backup the database"
|
893 |
-
msgstr "Backup da base de dados"
|
894 |
-
|
895 |
-
#@ cpd
|
896 |
-
#: counter-options.php:674
|
897 |
-
#: counter-options.php:706
|
898 |
-
msgid "Collect old data"
|
899 |
-
msgstr "Coletar dados antigos"
|
900 |
-
|
901 |
-
#@ cpd
|
902 |
-
#: counter-options.php:679
|
903 |
-
#, php-format
|
904 |
-
msgid "Current size of your counter table %s is %s."
|
905 |
-
msgstr "O tamanho atual da sua tabela de contador %s é %s."
|
906 |
|
|
|
907 |
#@ cpd
|
908 |
-
|
909 |
-
|
910 |
-
msgstr "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
|
911 |
|
|
|
912 |
#@ cpd
|
913 |
-
|
914 |
-
|
915 |
-
msgid "Currently your collection contains data until %s."
|
916 |
-
msgstr "Atualmente sua coleção contém dados até %s"
|
917 |
|
|
|
918 |
#@ cpd
|
919 |
-
|
920 |
-
|
921 |
-
msgstr "Dados novos são adicionados normalmente à coleção."
|
922 |
|
|
|
923 |
#@ cpd
|
924 |
-
|
925 |
-
|
926 |
-
msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
|
927 |
|
|
|
928 |
#@ cpd
|
929 |
-
|
930 |
-
|
931 |
-
msgid "All collected data until %s will deleted."
|
932 |
-
msgstr "Todos os dados coletados até %s serão excluidos."
|
933 |
|
934 |
-
|
935 |
-
#: counter-options.php:702
|
936 |
#, php-format
|
937 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
938 |
-
msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
|
939 |
-
|
940 |
-
#@ cpd
|
941 |
-
#: counter-options.php:761
|
942 |
-
msgid "ReActivation"
|
943 |
-
msgstr "Reativação"
|
944 |
-
|
945 |
#@ cpd
|
946 |
-
|
947 |
-
|
948 |
-
msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
|
949 |
-
|
950 |
-
#@ cpd
|
951 |
-
#: counter-options.php:769
|
952 |
-
msgid "ReActivate the plugin"
|
953 |
-
msgstr "Reativar o plugin"
|
954 |
-
|
955 |
-
#@ cpd
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
msgid "Visitors"
|
959 |
-
msgstr "Visitantes"
|
960 |
-
|
961 |
-
#@ cpd
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
msgid "Most visited day"
|
965 |
-
msgstr "Dia mais visitado"
|
966 |
|
|
|
967 |
#@ cpd
|
968 |
-
|
969 |
-
|
970 |
-
msgstr "arrastar e soltar para classificar"
|
971 |
|
13 |
"X-Poedit-Language: Portuguese\n"
|
14 |
"X-Poedit-Country: BRAZIL\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_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-Poedit-Bookmarks: \n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:46
|
23 |
#@ cpd
|
|
|
24 |
msgid "Options updated"
|
25 |
msgstr "Opções atualizadas"
|
26 |
|
27 |
+
#: counter-options.php:111
|
|
|
28 |
#, php-format
|
29 |
+
#@ cpd
|
30 |
msgid "Database cleaned. %s rows deleted."
|
31 |
msgstr "Banco de dados limpo. %s linhas apagadas."
|
32 |
|
33 |
+
#: counter-options.php:121
|
34 |
+
#: counter-options.php:496
|
35 |
#@ cpd
|
|
|
|
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "DESINSTALAR o Count per Day"
|
38 |
|
39 |
+
#: counter-options.php:126
|
40 |
+
#: counter-options.php:128
|
41 |
+
#: counter-options.php:130
|
|
|
42 |
#, php-format
|
43 |
+
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "Tabela %s apagada"
|
46 |
|
47 |
+
#: counter-options.php:132
|
48 |
#@ cpd
|
|
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Opções apagadas"
|
51 |
|
52 |
+
#: counter-options.php:156
|
53 |
+
#: counter-options.php:481
|
54 |
#@ cpd
|
|
|
|
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Desinstalar"
|
57 |
|
58 |
+
#: counter-options.php:157
|
59 |
#@ cpd
|
|
|
60 |
msgid "Click here"
|
61 |
msgstr "Clique aqui"
|
62 |
|
63 |
+
#: counter-options.php:157
|
64 |
#@ cpd
|
|
|
65 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
67 |
|
68 |
+
#: counter-options.php:179
|
69 |
+
#@ cpd
|
70 |
+
msgid "Options"
|
71 |
+
msgstr "Opções"
|
72 |
+
|
73 |
+
#: counter-options.php:190
|
74 |
#@ cpd
|
|
|
75 |
msgid "Online time"
|
76 |
msgstr "Período online"
|
77 |
|
78 |
+
#: counter-options.php:191
|
79 |
#@ cpd
|
|
|
80 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
81 |
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
82 |
|
83 |
+
#: counter-options.php:194
|
84 |
#@ cpd
|
|
|
85 |
msgid "Logged on Users"
|
86 |
msgstr "Usuários logados"
|
87 |
|
88 |
+
#: counter-options.php:196
|
89 |
#@ cpd
|
|
|
90 |
msgid "count too"
|
91 |
msgstr "contar também"
|
92 |
|
93 |
+
#: counter-options.php:208
|
94 |
#@ cpd
|
|
|
95 |
msgid "Auto counter"
|
96 |
msgstr "Autocontador"
|
97 |
|
98 |
+
#: counter-options.php:209
|
99 |
#@ cpd
|
|
|
100 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
101 |
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
102 |
|
103 |
+
#: counter-options.php:212
|
104 |
#@ cpd
|
|
|
105 |
msgid "Bots to ignore"
|
106 |
msgstr "Bots a serem ignorados"
|
107 |
|
108 |
+
#: counter-options.php:331
|
109 |
#@ cpd
|
|
|
110 |
msgid "Update options"
|
111 |
msgstr "Atualizar opções"
|
112 |
|
113 |
+
#: counter-options.php:445
|
114 |
+
#: counter-options.php:454
|
115 |
#@ cpd
|
|
|
|
|
116 |
msgid "Clean the database"
|
117 |
msgstr "Limpar o banco de dados"
|
118 |
|
119 |
+
#: counter-options.php:448
|
120 |
#@ cpd
|
|
|
121 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
122 |
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
123 |
|
124 |
+
#: counter-options.php:484
|
125 |
#@ cpd
|
|
|
126 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
127 |
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
128 |
|
129 |
+
#: counter-options.php:485
|
130 |
#@ cpd
|
|
|
131 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
132 |
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
133 |
|
134 |
+
#: counter-options.php:488
|
135 |
#@ cpd
|
|
|
136 |
msgid "WARNING"
|
137 |
msgstr "ATENÇÃO"
|
138 |
|
139 |
+
#: counter-options.php:489
|
140 |
#@ cpd
|
|
|
141 |
msgid "These tables (with ALL counter data) will be deleted."
|
142 |
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
143 |
|
144 |
+
#: counter-options.php:491
|
145 |
#@ cpd
|
|
|
146 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
147 |
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
148 |
|
149 |
+
#: counter-options.php:495
|
150 |
#@ cpd
|
|
|
|
|
151 |
msgid "Yes"
|
152 |
msgstr "Sim, quero"
|
153 |
|
154 |
+
#: counter-options.php:496
|
155 |
#@ cpd
|
|
|
156 |
msgid "You are sure to disable Count per Day and delete all data?"
|
157 |
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
158 |
|
159 |
+
#: counter.php:1786
|
160 |
+
#: counter.php:2147
|
161 |
#@ cpd
|
|
|
|
|
162 |
msgid "Statistics"
|
163 |
msgstr "Estatísticas"
|
164 |
|
165 |
+
#: counter.php:529
|
166 |
+
#: counter.php:534
|
167 |
+
#: counter.php:1604
|
168 |
+
#: counter.php:1750
|
169 |
+
#: counter.php:2224
|
170 |
#@ cpd
|
|
|
|
|
|
|
|
|
171 |
msgid "Total visitors"
|
172 |
msgstr "Total de visitas"
|
173 |
|
174 |
+
#: counter.php:530
|
175 |
+
#: counter.php:2230
|
176 |
#@ cpd
|
|
|
|
|
177 |
msgid "Visitors currently online"
|
178 |
msgstr "Visitantes online"
|
179 |
|
180 |
+
#: counter.php:531
|
181 |
+
#: counter.php:2225
|
182 |
#@ cpd
|
|
|
|
|
183 |
msgid "Visitors today"
|
184 |
msgstr "Visitas hoje"
|
185 |
|
186 |
+
#: counter.php:532
|
187 |
+
#: counter.php:2226
|
188 |
#@ cpd
|
|
|
|
|
189 |
msgid "Visitors yesterday"
|
190 |
msgstr "Visitas ontem"
|
191 |
|
192 |
+
#: counter.php:533
|
193 |
+
#: counter.php:2227
|
194 |
#@ cpd
|
|
|
|
|
195 |
msgid "Visitors last week"
|
196 |
msgstr "Visitas semana passada"
|
197 |
|
198 |
+
#: counter.php:536
|
199 |
+
#: counter.php:2231
|
200 |
#@ cpd
|
|
|
|
|
|
|
201 |
msgid "Counter starts on"
|
202 |
msgstr "Início da contagem"
|
203 |
|
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 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
msgid "Visitors per day"
|
213 |
msgstr "(média) de visitas por dia"
|
214 |
|
215 |
+
#: counter.php:1752
|
216 |
+
#: counter.php:2228
|
217 |
#@ cpd
|
|
|
|
|
218 |
msgid "Visitors per month"
|
219 |
msgstr "Visitas por mês"
|
220 |
|
221 |
+
#: counter-options.php:236
|
222 |
+
#: counter.php:1754
|
223 |
#@ cpd
|
|
|
|
|
224 |
msgid "Visitors per post"
|
225 |
msgstr "Visitas por post"
|
226 |
|
227 |
+
#: counter-options.php:57
|
|
|
228 |
#, php-format
|
229 |
+
#@ cpd
|
230 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
231 |
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
232 |
|
233 |
+
#: counter-options.php:62
|
234 |
#@ cpd
|
|
|
235 |
msgid "update next"
|
236 |
msgstr "Atualizar proximo"
|
237 |
|
238 |
+
#: counter-options.php:104
|
|
|
239 |
#, php-format
|
240 |
+
#@ cpd
|
241 |
msgid "Mass Bots cleaned. %s counts deleted."
|
242 |
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
243 |
|
244 |
+
#: counter-options.php:117
|
245 |
#@ cpd
|
|
|
246 |
msgid "Counter reseted."
|
247 |
msgstr "Contador reiniciado."
|
248 |
|
249 |
+
#: counter-options.php:233
|
250 |
#@ default
|
|
|
251 |
msgid "Dashboard"
|
252 |
msgstr "Painel"
|
253 |
|
254 |
+
#: counter-options.php:237
|
255 |
+
#: counter-options.php:241
|
256 |
#@ cpd
|
|
|
|
|
257 |
msgid "How many posts do you want to see on dashboard page?"
|
258 |
msgstr "Quantos posts você deseja visualizar no Painel?"
|
259 |
|
260 |
+
#: counter-options.php:240
|
261 |
#@ cpd
|
|
|
262 |
msgid "Latest Counts - Posts"
|
263 |
msgstr "Contagens Recentes - Posts"
|
264 |
|
265 |
+
#: counter-options.php:244
|
266 |
#@ cpd
|
|
|
267 |
msgid "Latest Counts - Days"
|
268 |
msgstr "Contagens Recentes - Dias"
|
269 |
|
270 |
+
#: counter-options.php:245
|
271 |
+
#: counter-options.php:249
|
272 |
+
#: counter-options.php:275
|
273 |
#@ cpd
|
|
|
|
|
|
|
274 |
msgid "How many days do you want look back?"
|
275 |
msgstr "Quantos dias atrás você quer ver?"
|
276 |
|
277 |
+
#: counter-options.php:248
|
278 |
#@ cpd
|
|
|
279 |
msgid "Chart - Days"
|
280 |
msgstr "Gráfico - Dias"
|
281 |
|
282 |
+
#: counter-options.php:252
|
283 |
#@ cpd
|
|
|
284 |
msgid "Chart - Height"
|
285 |
msgstr "Gráfico - Altura"
|
286 |
|
287 |
+
#: counter-options.php:253
|
288 |
#@ cpd
|
|
|
289 |
msgid "Height of the biggest bar"
|
290 |
msgstr "Altura da barra maior"
|
291 |
|
292 |
+
#: counter-options.php:261
|
293 |
#@ cpd
|
|
|
294 |
msgid "Countries"
|
295 |
msgstr "Países"
|
296 |
|
297 |
+
#: counter-options.php:262
|
298 |
#@ cpd
|
|
|
299 |
msgid "How many countries do you want to see on dashboard page?"
|
300 |
msgstr "Quantos países você quer visualizar no Painel?"
|
301 |
|
302 |
+
#: counter-options.php:290
|
303 |
#@ cpd
|
|
|
304 |
msgid "Show in lists"
|
305 |
msgstr "Exibir em listas"
|
306 |
|
307 |
+
#: counter-options.php:291
|
308 |
#@ cpd
|
|
|
309 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
310 |
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
311 |
|
312 |
+
#: counter-options.php:340
|
313 |
#@ cpd
|
|
|
314 |
msgid "GeoIP - Countries"
|
315 |
msgstr "GeoIP - Países"
|
316 |
|
317 |
+
#: counter-options.php:349
|
318 |
#@ cpd
|
|
|
319 |
msgid "Update old counter data"
|
320 |
msgstr "Atualizar dados de contadores antigos"
|
321 |
|
322 |
+
#: counter-options.php:362
|
323 |
#@ cpd
|
|
|
324 |
msgid "Update GeoIP database"
|
325 |
msgstr "Atualizar Base de Dados GeoIP"
|
326 |
|
327 |
+
#: counter-options.php:365
|
328 |
#@ cpd
|
|
|
329 |
msgid "Download a new version of GeoIP.dat file."
|
330 |
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
331 |
|
332 |
+
#: counter-options.php:371
|
333 |
#@ cpd
|
|
|
334 |
msgid "More informations about GeoIP"
|
335 |
msgstr "Mais informações sobre o GeoIP"
|
336 |
|
337 |
+
#: counter-options.php:386
|
338 |
+
#: massbots.php:33
|
339 |
#@ cpd
|
|
|
|
|
340 |
msgid "Mass Bots"
|
341 |
msgstr "Mass Bots"
|
342 |
|
343 |
+
#: counter-options.php:390
|
|
|
344 |
#, php-format
|
345 |
+
#@ cpd
|
346 |
msgid "Show all IPs with more than %s page views per day"
|
347 |
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
348 |
|
349 |
+
#: counter-options.php:391
|
350 |
+
#: notes.php:76
|
351 |
+
#: userperspan.php:43
|
352 |
#@ cpd
|
|
|
|
|
|
|
353 |
msgid "show"
|
354 |
msgstr "exibir"
|
355 |
|
356 |
+
#: counter-options.php:399
|
357 |
#@ cpd
|
|
|
358 |
msgid "IP"
|
359 |
msgstr "IP"
|
360 |
|
361 |
+
#: counter-options.php:400
|
362 |
+
#: notes.php:80
|
363 |
#@ cpd
|
364 |
#@ default
|
|
|
|
|
365 |
msgid "Date"
|
366 |
msgstr "Data"
|
367 |
|
368 |
+
#: counter-options.php:401
|
369 |
#@ cpd
|
|
|
370 |
msgid "Client"
|
371 |
msgstr "Cliente"
|
372 |
|
373 |
+
#: counter-options.php:402
|
374 |
#@ cpd
|
|
|
375 |
msgid "Views"
|
376 |
msgstr "Exibições"
|
377 |
|
378 |
+
#: counter-options.php:413
|
379 |
+
#: counter-options.php:435
|
|
|
380 |
#, php-format
|
381 |
+
#@ cpd
|
382 |
msgid "Delete these %s counts"
|
383 |
msgstr "Deletar estes %s contadores"
|
384 |
|
385 |
+
#: counter-options.php:463
|
386 |
+
#: counter-options.php:472
|
387 |
#@ cpd
|
|
|
|
|
388 |
msgid "Reset the counter"
|
389 |
msgstr "Reiniciar o contador"
|
390 |
|
391 |
+
#: counter-options.php:466
|
392 |
#@ cpd
|
|
|
393 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
394 |
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
395 |
|
396 |
+
#: counter.php:845
|
397 |
+
#@ cpd
|
398 |
+
msgid "no reads at this time"
|
399 |
+
msgstr "nenhuma leitura nesse momento"
|
400 |
+
|
401 |
+
#: counter.php:819
|
402 |
#@ cpd
|
403 |
+
msgid "days"
|
404 |
+
msgstr "dias"
|
405 |
+
|
406 |
+
#: counter.php:1257
|
407 |
#, php-format
|
408 |
+
#@ cpd
|
409 |
msgid "The %s most visited posts in last %s days:"
|
410 |
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
411 |
|
412 |
+
#: counter.php:1421
|
413 |
#@ cpd
|
|
|
414 |
msgid "Other"
|
415 |
msgstr "Outro"
|
416 |
|
417 |
+
#: counter.php:1520
|
418 |
+
#: massbots.php:50
|
|
|
419 |
#: userperspan.php:63
|
420 |
+
#@ default
|
421 |
msgid "Front page displays"
|
422 |
msgstr "Exibições da primeira página"
|
423 |
|
424 |
+
#: counter.php:1591
|
425 |
#@ default
|
|
|
|
|
|
|
426 |
msgid "Settings"
|
427 |
msgstr "Configurações"
|
428 |
|
429 |
+
#: counter-options.php:225
|
430 |
+
#: counter.php:528
|
431 |
+
#: counter.php:1661
|
432 |
#@ cpd
|
|
|
|
|
|
|
|
|
433 |
msgid "Reads"
|
434 |
msgstr "Leituras"
|
435 |
|
436 |
+
#: counter.php:2218
|
437 |
#@ cpd
|
|
|
438 |
msgid "This post"
|
439 |
msgstr "Este post"
|
440 |
|
441 |
+
#: counter.php:635
|
442 |
+
#: counter.php:1766
|
443 |
#@ cpd
|
|
|
444 |
msgid "Reads per day"
|
445 |
msgstr "Leituras por dia"
|
446 |
|
447 |
+
#: counter-options.php:266
|
448 |
+
#: counter.php:1760
|
449 |
#@ cpd
|
|
|
|
|
450 |
msgid "Browsers"
|
451 |
msgstr "Navegadores"
|
452 |
|
453 |
+
#: counter.php:1755
|
454 |
#@ cpd
|
|
|
455 |
msgid "Latest Counts"
|
456 |
msgstr "Contagens Recentes"
|
457 |
|
458 |
+
#: counter.php:1770
|
459 |
#@ cpd
|
|
|
460 |
msgid "Reads per Country"
|
461 |
msgstr "Leituras por País"
|
462 |
|
463 |
+
#: geoip/geoip.php:108
|
464 |
#@ cpd
|
|
|
465 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
466 |
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
467 |
|
468 |
+
#: geoip/geoip.php:132
|
469 |
#@ cpd
|
|
|
470 |
msgid "New GeoIP database installed."
|
471 |
msgstr "Nova base de dados GeoIP instalada."
|
472 |
|
473 |
+
#: geoip/geoip.php:134
|
474 |
#@ cpd
|
|
|
475 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
476 |
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
477 |
|
478 |
+
#: counter-options.php:197
|
479 |
#@ cpd
|
|
|
480 |
msgid "until User Level"
|
481 |
msgstr "usuários do nível"
|
482 |
|
483 |
+
#: counter-options.php:299
|
484 |
#@ cpd
|
|
|
485 |
msgid "Start Values"
|
486 |
msgstr "Valor inicial"
|
487 |
|
488 |
+
#: counter-options.php:303
|
489 |
#@ cpd
|
|
|
490 |
msgid "Here you can change the date of first count and add a start count."
|
491 |
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
492 |
|
493 |
+
#: counter-options.php:307
|
494 |
#@ cpd
|
|
|
495 |
msgid "Start date"
|
496 |
msgstr "Data inicial"
|
497 |
|
498 |
+
#: counter-options.php:308
|
499 |
#@ cpd
|
|
|
500 |
msgid "Your old Counter starts at?"
|
501 |
msgstr "Sua contagem antiga começa em?"
|
502 |
|
503 |
+
#: counter-options.php:311
|
504 |
+
#: counter-options.php:315
|
505 |
#@ cpd
|
|
|
|
|
506 |
msgid "Start count"
|
507 |
msgstr "Contagem inicial"
|
508 |
|
509 |
+
#: counter-options.php:312
|
510 |
#@ cpd
|
|
|
511 |
msgid "Add this value to \"Total visitors\"."
|
512 |
msgstr "Adicione este valor para \"Total visitors\"."
|
513 |
|
514 |
+
#: counter-options.php:504
|
515 |
#@ cpd
|
|
|
516 |
msgid "Support"
|
517 |
msgstr "Suporte"
|
518 |
|
519 |
+
#: counter.php:1717
|
520 |
#@ cpd
|
|
|
521 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
522 |
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
523 |
|
524 |
+
#: counter.php:1718
|
|
|
525 |
#, php-format
|
526 |
+
#@ cpd
|
527 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
528 |
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
529 |
|
530 |
+
#: counter.php:1374
|
531 |
#@ default
|
|
|
532 |
msgid "Show"
|
533 |
msgstr "Mostrar"
|
534 |
|
535 |
+
#: counter.php:822
|
536 |
+
#: counter.php:1376
|
537 |
+
#: notes.php:47
|
538 |
+
#: notes.php:81
|
539 |
#@ cpd
|
|
|
|
|
|
|
540 |
msgid "Notes"
|
541 |
msgstr "Notas"
|
542 |
|
543 |
+
#: counter.php:1505
|
544 |
#@ default
|
|
|
545 |
msgid "Edit Post"
|
546 |
msgstr "Editar Post"
|
547 |
|
548 |
+
#: counter.php:1757
|
549 |
#@ default
|
|
|
550 |
msgid "Plugin"
|
551 |
msgstr "Plugin"
|
552 |
|
553 |
+
#: counter.php:1716
|
|
|
554 |
#, php-format
|
555 |
+
#@ cpd
|
556 |
msgid "Time for Count per Day: <code>%s</code>."
|
557 |
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
558 |
|
559 |
+
#: notes.php:81
|
560 |
+
#@ cpd
|
561 |
+
msgid "(1 per day)"
|
562 |
+
msgstr "(1 por dia)"
|
563 |
+
|
564 |
+
#: notes.php:82
|
565 |
#@ default
|
|
|
566 |
msgid "Action"
|
567 |
msgstr "Ação"
|
568 |
|
569 |
+
#: notes.php:87
|
570 |
#@ cpd
|
|
|
571 |
msgid "add"
|
572 |
msgstr "Adicionar"
|
573 |
|
574 |
+
#: notes.php:102
|
575 |
#@ cpd
|
|
|
576 |
msgid "save"
|
577 |
msgstr "Salvar"
|
578 |
|
579 |
+
#: notes.php:103
|
580 |
#@ cpd
|
|
|
581 |
msgid "delete"
|
582 |
msgstr "Apagar"
|
583 |
|
584 |
+
#: notes.php:114
|
585 |
#@ cpd
|
|
|
586 |
msgid "edit"
|
587 |
msgstr "Editar"
|
588 |
|
589 |
+
#: counter-options.php:216
|
590 |
#@ cpd
|
|
|
591 |
msgid "Anonymous IP"
|
592 |
msgstr "IP Anônimo"
|
593 |
|
594 |
+
#: counter-options.php:220
|
595 |
#@ cpd
|
|
|
596 |
msgid "Cache"
|
597 |
msgstr "Cache"
|
598 |
|
599 |
+
#: counter-options.php:221
|
600 |
#@ cpd
|
|
|
601 |
msgid "I use a cache plugin. Count these visits with ajax."
|
602 |
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
603 |
|
604 |
+
#: counter-options.php:267
|
605 |
#@ cpd
|
|
|
606 |
msgid "Substring of the user agent, separated by comma"
|
607 |
msgstr "Substring do usuário agente, separado por vírgula"
|
608 |
|
609 |
+
#: counter-options.php:316
|
610 |
#@ cpd
|
|
|
611 |
msgid "Add this value to \"Total reads\"."
|
612 |
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
613 |
|
614 |
+
#: counter-options.php:324
|
615 |
#@ cpd
|
|
|
616 |
msgid "Debug mode"
|
617 |
msgstr "Modo de depuração"
|
618 |
|
619 |
+
#: counter-options.php:326
|
620 |
#@ cpd
|
|
|
621 |
msgid "Show debug informations at the bottom of all pages."
|
622 |
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
623 |
|
624 |
+
#: counter.php:524
|
625 |
+
#: counter.php:2219
|
626 |
#@ cpd
|
|
|
|
|
627 |
msgid "Total reads"
|
628 |
msgstr "Total de Leituras"
|
629 |
|
630 |
+
#: counter.php:525
|
631 |
+
#: counter.php:2220
|
632 |
#@ cpd
|
|
|
|
|
633 |
msgid "Reads today"
|
634 |
msgstr "Leituras Hoje"
|
635 |
|
636 |
+
#: counter.php:526
|
637 |
+
#: counter.php:2221
|
638 |
#@ cpd
|
|
|
|
|
639 |
msgid "Reads yesterday"
|
640 |
msgstr "Leituras Ontem"
|
641 |
|
642 |
+
#: counter.php:1771
|
643 |
#@ cpd
|
|
|
644 |
msgid "Visitors per Country"
|
645 |
msgstr "Visitantes por Paíis"
|
646 |
|
647 |
+
#: counter.php:900
|
648 |
+
#: counter.php:1856
|
649 |
#@ cpd
|
|
|
|
|
650 |
msgid "Map"
|
651 |
msgstr "Mapa"
|
652 |
|
653 |
+
#: userperspan.php:37
|
654 |
#@ cpd
|
|
|
655 |
msgid "Start"
|
656 |
msgstr "Iniciar"
|
657 |
|
658 |
+
#: userperspan.php:39
|
659 |
#@ cpd
|
|
|
660 |
msgid "End"
|
661 |
msgstr "Fim"
|
662 |
|
663 |
+
#: userperspan.php:41
|
664 |
#@ cpd
|
|
|
665 |
msgid "PostID"
|
666 |
msgstr "PostID"
|
667 |
|
668 |
+
#: userperspan.php:49
|
669 |
#@ cpd
|
|
|
670 |
msgid "no data found"
|
671 |
msgstr "Não foram encontrados dados"
|
672 |
|
673 |
+
#: counter-options.php:352
|
674 |
#@ cpd
|
|
|
675 |
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!"
|
676 |
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
677 |
|
678 |
+
#: counter-options.php:186
|
679 |
#@ cpd
|
|
|
680 |
msgid "Counter"
|
681 |
+
msgstr ""
|
682 |
|
683 |
+
#: counter-options.php:224
|
684 |
#@ cpd
|
|
|
685 |
msgid "Clients and referrers"
|
686 |
+
msgstr ""
|
687 |
|
688 |
+
#: counter-options.php:225
|
689 |
#@ cpd
|
|
|
690 |
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."
|
691 |
+
msgstr ""
|
692 |
|
693 |
+
#: counter-options.php:278
|
694 |
#@ cpd
|
|
|
695 |
msgid "Local URLs"
|
696 |
+
msgstr ""
|
697 |
|
698 |
+
#: counter-options.php:279
|
699 |
#@ cpd
|
|
|
700 |
msgid "Show local referrers too."
|
701 |
+
msgstr ""
|
702 |
|
703 |
+
#: counter-options.php:287
|
704 |
#@ default
|
|
|
705 |
msgid "Posts"
|
706 |
+
msgstr ""
|
707 |
|
708 |
+
#: counter-options.php:287
|
709 |
#@ default
|
|
|
710 |
msgid "Pages"
|
711 |
+
msgstr ""
|
712 |
|
713 |
+
#: counter.php:527
|
714 |
+
#: counter.php:2222
|
715 |
#@ cpd
|
|
|
|
|
716 |
msgid "Reads last week"
|
717 |
+
msgstr ""
|
718 |
|
719 |
+
#: counter.php:1514
|
720 |
#@ default
|
|
|
721 |
msgid "Category"
|
722 |
+
msgstr ""
|
723 |
|
724 |
+
#: counter.php:1517
|
725 |
#@ default
|
|
|
726 |
msgid "Tag"
|
727 |
+
msgstr ""
|
728 |
|
729 |
+
#: counter.php:1719
|
730 |
#@ default
|
|
|
731 |
msgid "License"
|
732 |
+
msgstr ""
|
733 |
|
734 |
+
#: counter.php:1753
|
735 |
+
#: counter.php:2223
|
736 |
#@ cpd
|
|
|
|
|
737 |
msgid "Reads per month"
|
738 |
+
msgstr ""
|
739 |
|
740 |
+
#: counter.php:1761
|
741 |
#@ cpd
|
|
|
742 |
msgid "Referrer"
|
743 |
+
msgstr ""
|
744 |
|
745 |
+
#: counter.php:2242
|
746 |
#@ default
|
|
|
747 |
msgid "Title"
|
748 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
|
750 |
+
#: counter-options.php:256
|
751 |
#@ cpd
|
752 |
+
msgid "Old Charts"
|
753 |
+
msgstr ""
|
|
|
754 |
|
755 |
+
#: counter-options.php:257
|
756 |
#@ cpd
|
757 |
+
msgid "Show old bar charts."
|
758 |
+
msgstr ""
|
|
|
|
|
759 |
|
760 |
+
#: counter-options.php:270
|
761 |
#@ cpd
|
762 |
+
msgid "Referrers - Entries"
|
763 |
+
msgstr ""
|
|
|
764 |
|
765 |
+
#: counter-options.php:271
|
766 |
#@ cpd
|
767 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
768 |
+
msgstr ""
|
|
|
769 |
|
770 |
+
#: counter-options.php:274
|
771 |
#@ cpd
|
772 |
+
msgid "Referrers - Days"
|
773 |
+
msgstr ""
|
|
|
|
|
774 |
|
775 |
+
#: counter.php:1449
|
|
|
776 |
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
#@ cpd
|
778 |
+
msgid "The %s referrers in last %s days:"
|
779 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
780 |
|
781 |
+
#: counter.php:1751
|
782 |
#@ cpd
|
783 |
+
msgid "Visitors online"
|
784 |
+
msgstr ""
|
|
|
785 |
|
locale/cpd-pt_PT.mo
DELETED
Binary file
|
locale/cpd-pt_PT.po
DELETED
@@ -1,971 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count per Day\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-09-03 20:03+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Beto Ribeiro <beto.br@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: Portuguese\n"
|
14 |
-
"X-Poedit-Country: BRAZIL\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
-
"X-Poedit-Basepath: P:/xampp/htdocs/levelbase_tribune/wp-content/plugins/count-per-day\n"
|
18 |
-
"X-Textdomain-Support: yes\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
|
21 |
-
#@ cpd
|
22 |
-
#: counter-options.php:49
|
23 |
-
msgid "Options updated"
|
24 |
-
msgstr "Opções atualizadas"
|
25 |
-
|
26 |
-
#@ cpd
|
27 |
-
#: counter-options.php:112
|
28 |
-
#, php-format
|
29 |
-
msgid "Database cleaned. %s rows deleted."
|
30 |
-
msgstr "Banco de dados limpo. %s linhas apagadas."
|
31 |
-
|
32 |
-
#@ cpd
|
33 |
-
#: counter-options.php:127
|
34 |
-
#: counter-options.php:810
|
35 |
-
msgid "UNINSTALL Count per Day"
|
36 |
-
msgstr "DESINSTALAR o Count per Day"
|
37 |
-
|
38 |
-
#@ cpd
|
39 |
-
#: counter-options.php:132
|
40 |
-
#: counter-options.php:133
|
41 |
-
#: counter-options.php:134
|
42 |
-
#, php-format
|
43 |
-
msgid "Table %s deleted"
|
44 |
-
msgstr "Tabela %s apagada"
|
45 |
-
|
46 |
-
#@ cpd
|
47 |
-
#: counter-options.php:135
|
48 |
-
msgid "Options deleted"
|
49 |
-
msgstr "Opções apagadas"
|
50 |
-
|
51 |
-
#@ cpd
|
52 |
-
#: counter-options.php:316
|
53 |
-
#: counter-options.php:796
|
54 |
-
msgid "Uninstall"
|
55 |
-
msgstr "Desinstalar"
|
56 |
-
|
57 |
-
#@ cpd
|
58 |
-
#: counter-options.php:317
|
59 |
-
msgid "Click here"
|
60 |
-
msgstr "Clique aqui"
|
61 |
-
|
62 |
-
#@ cpd
|
63 |
-
#: counter-options.php:317
|
64 |
-
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
65 |
-
msgstr "Para terminar a desinstalação e desativar o \"Count per Day\". "
|
66 |
-
|
67 |
-
#@ cpd
|
68 |
-
#: counter-options.php:355
|
69 |
-
msgid "Online time"
|
70 |
-
msgstr "Período online"
|
71 |
-
|
72 |
-
#@ cpd
|
73 |
-
#: counter-options.php:356
|
74 |
-
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
75 |
-
msgstr "Segundos para o contador on-line. Usado no \"Visitantes online\" na página do painel."
|
76 |
-
|
77 |
-
#@ cpd
|
78 |
-
#: counter-options.php:359
|
79 |
-
msgid "Logged on Users"
|
80 |
-
msgstr "Usuários logados"
|
81 |
-
|
82 |
-
#@ cpd
|
83 |
-
#: counter-options.php:361
|
84 |
-
msgid "count too"
|
85 |
-
msgstr "contar também"
|
86 |
-
|
87 |
-
#@ cpd
|
88 |
-
#: counter-options.php:373
|
89 |
-
msgid "Auto counter"
|
90 |
-
msgstr "Autocontador"
|
91 |
-
|
92 |
-
#@ cpd
|
93 |
-
#: counter-options.php:374
|
94 |
-
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
95 |
-
msgstr "Conta automaticamente posts e páginas, sem a necessidade de alterações em templates."
|
96 |
-
|
97 |
-
#@ cpd
|
98 |
-
#: counter-options.php:377
|
99 |
-
msgid "Bots to ignore"
|
100 |
-
msgstr "Bots a serem ignorados"
|
101 |
-
|
102 |
-
#@ cpd
|
103 |
-
#: counter-options.php:561
|
104 |
-
msgid "Update options"
|
105 |
-
msgstr "Atualizar opções"
|
106 |
-
|
107 |
-
#@ cpd
|
108 |
-
#: counter-options.php:656
|
109 |
-
#: counter-options.php:665
|
110 |
-
msgid "Clean the database"
|
111 |
-
msgstr "Limpar o banco de dados"
|
112 |
-
|
113 |
-
#@ cpd
|
114 |
-
#: counter-options.php:659
|
115 |
-
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
116 |
-
msgstr "Você pode limpar os \"dados de spam\" da tabela de contadores. <br />Caso você adicione novos bots acima, os \"dados de spam\" deles continuarão no banco de dados. <br />Para limpar as visitas desses bots, você pode executar novamente o filtro de bot aqui."
|
117 |
-
|
118 |
-
#@ cpd
|
119 |
-
#: counter-options.php:799
|
120 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
121 |
-
msgstr "Se o plugin \"Count per Day\" for desativado apenas, as tabelas do banco de dados serão preservadas."
|
122 |
-
|
123 |
-
#@ cpd
|
124 |
-
#: counter-options.php:800
|
125 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
126 |
-
msgstr "A opção a seguir permite apagar definitivamente as tabelas do banco de dados, além de desabilitar o plugin."
|
127 |
-
|
128 |
-
#@ cpd
|
129 |
-
#: counter-options.php:803
|
130 |
-
msgid "WARNING"
|
131 |
-
msgstr "ATENÇÃO"
|
132 |
-
|
133 |
-
#@ cpd
|
134 |
-
#: counter-options.php:804
|
135 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
136 |
-
msgstr "As seguintes tabelas (incluindo TODOS os dados dos contadores) serão apagadas:"
|
137 |
-
|
138 |
-
#@ cpd
|
139 |
-
#: counter-options.php:806
|
140 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
141 |
-
msgstr "Se o \"Count per Day\" for reinstalado, os contadores reiniciarão a partir do 0."
|
142 |
-
|
143 |
-
#@ cpd
|
144 |
-
#: counter-options.php:786
|
145 |
-
#: counter-options.php:809
|
146 |
-
msgid "Yes"
|
147 |
-
msgstr "Sim, quero"
|
148 |
-
|
149 |
-
#@ cpd
|
150 |
-
#: counter-options.php:810
|
151 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
152 |
-
msgstr "Confirma a desativação do Count per Day e a exclusão de todos os dados?"
|
153 |
-
|
154 |
-
#@ cpd
|
155 |
-
#: counter-core.php:754
|
156 |
-
#: counter.php:1124
|
157 |
-
msgid "Statistics"
|
158 |
-
msgstr "Estatísticas"
|
159 |
-
|
160 |
-
#@ cpd
|
161 |
-
#: counter-core.php:723
|
162 |
-
#: counter.php:160
|
163 |
-
#: counter.php:1010
|
164 |
-
#: counter.php:1202
|
165 |
-
msgid "Total visitors"
|
166 |
-
msgstr "Total de visitas"
|
167 |
-
|
168 |
-
#@ cpd
|
169 |
-
#: counter.php:161
|
170 |
-
#: counter.php:1208
|
171 |
-
msgid "Visitors currently online"
|
172 |
-
msgstr "Visitantes online"
|
173 |
-
|
174 |
-
#@ cpd
|
175 |
-
#: counter.php:162
|
176 |
-
#: counter.php:1203
|
177 |
-
msgid "Visitors today"
|
178 |
-
msgstr "Visitas hoje"
|
179 |
-
|
180 |
-
#@ cpd
|
181 |
-
#: counter.php:163
|
182 |
-
#: counter.php:1204
|
183 |
-
msgid "Visitors yesterday"
|
184 |
-
msgstr "Visitas ontem"
|
185 |
-
|
186 |
-
#@ cpd
|
187 |
-
#: counter.php:164
|
188 |
-
#: counter.php:1205
|
189 |
-
msgid "Visitors last week"
|
190 |
-
msgstr "Visitas semana passada"
|
191 |
-
|
192 |
-
#@ cpd
|
193 |
-
#: counter.php:167
|
194 |
-
#: counter.php:825
|
195 |
-
#: counter.php:1209
|
196 |
-
msgid "Counter starts on"
|
197 |
-
msgstr "Início da contagem"
|
198 |
-
|
199 |
-
#@ cpd
|
200 |
-
#: counter-core.php:729
|
201 |
-
#: counter.php:166
|
202 |
-
#: counter.php:263
|
203 |
-
#: counter.php:1012
|
204 |
-
#: counter.php:1207
|
205 |
-
#: userperspan.php:34
|
206 |
-
msgid "Visitors per day"
|
207 |
-
msgstr "(média) de visitas por dia"
|
208 |
-
|
209 |
-
#@ cpd
|
210 |
-
#: counter-core.php:725
|
211 |
-
#: counter.php:1206
|
212 |
-
msgid "Visitors per month"
|
213 |
-
msgstr "Visitas por mês"
|
214 |
-
|
215 |
-
#@ cpd
|
216 |
-
#: counter-core.php:727
|
217 |
-
#: counter-options.php:438
|
218 |
-
msgid "Visitors per post"
|
219 |
-
msgstr "Visitas por post"
|
220 |
-
|
221 |
-
#@ cpd
|
222 |
-
#: counter-options.php:60
|
223 |
-
#, php-format
|
224 |
-
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
225 |
-
msgstr "Países atualizados. <b>%s</b> lançamentos em %s menos países faltando"
|
226 |
-
|
227 |
-
#@ cpd
|
228 |
-
#: counter-options.php:65
|
229 |
-
msgid "update next"
|
230 |
-
msgstr "Atualizar proximo"
|
231 |
-
|
232 |
-
#@ cpd
|
233 |
-
#: counter-options.php:102
|
234 |
-
#, php-format
|
235 |
-
msgid "Mass Bots cleaned. %s counts deleted."
|
236 |
-
msgstr "Mass Bots apagados. %s ocorrências deletadas."
|
237 |
-
|
238 |
-
#@ cpd
|
239 |
-
#: counter-options.php:122
|
240 |
-
msgid "Counter reseted."
|
241 |
-
msgstr "Contador reiniciado."
|
242 |
-
|
243 |
-
#@ default
|
244 |
-
#: counter-options.php:403
|
245 |
-
msgid "Dashboard"
|
246 |
-
msgstr "Painel"
|
247 |
-
|
248 |
-
#@ cpd
|
249 |
-
#: counter-options.php:439
|
250 |
-
#: counter-options.php:443
|
251 |
-
msgid "How many posts do you want to see on dashboard page?"
|
252 |
-
msgstr "Quantos posts você deseja visualizar no Painel?"
|
253 |
-
|
254 |
-
#@ cpd
|
255 |
-
#: counter-options.php:442
|
256 |
-
msgid "Latest Counts - Posts"
|
257 |
-
msgstr "Contagens Recentes - Posts"
|
258 |
-
|
259 |
-
#@ cpd
|
260 |
-
#: counter-options.php:446
|
261 |
-
msgid "Latest Counts - Days"
|
262 |
-
msgstr "Contagens Recentes - Dias"
|
263 |
-
|
264 |
-
#@ cpd
|
265 |
-
#: counter-options.php:447
|
266 |
-
#: counter-options.php:451
|
267 |
-
#: counter-options.php:473
|
268 |
-
msgid "How many days do you want look back?"
|
269 |
-
msgstr "Quantos dias atrás você quer ver?"
|
270 |
-
|
271 |
-
#@ cpd
|
272 |
-
#: counter-options.php:450
|
273 |
-
msgid "Chart - Days"
|
274 |
-
msgstr "Gráfico - Dias"
|
275 |
-
|
276 |
-
#@ cpd
|
277 |
-
#: counter-options.php:454
|
278 |
-
msgid "Chart - Height"
|
279 |
-
msgstr "Gráfico - Altura"
|
280 |
-
|
281 |
-
#@ cpd
|
282 |
-
#: counter-options.php:455
|
283 |
-
msgid "Height of the biggest bar"
|
284 |
-
msgstr "Altura da barra maior"
|
285 |
-
|
286 |
-
#@ cpd
|
287 |
-
#: counter-options.php:459
|
288 |
-
msgid "Countries"
|
289 |
-
msgstr "Países"
|
290 |
-
|
291 |
-
#@ cpd
|
292 |
-
#: counter-options.php:460
|
293 |
-
msgid "How many countries do you want to see on dashboard page?"
|
294 |
-
msgstr "Quantos países você quer visualizar no Painel?"
|
295 |
-
|
296 |
-
#@ cpd
|
297 |
-
#: counter-options.php:488
|
298 |
-
msgid "Show in lists"
|
299 |
-
msgstr "Exibir em listas"
|
300 |
-
|
301 |
-
#@ cpd
|
302 |
-
#: counter-options.php:489
|
303 |
-
msgid "Show \"Reads per Post\" in a new column in post management views."
|
304 |
-
msgstr "Exibir \"Leituras por Post\" em uma nova coluna no gerenciador de visualização de posts."
|
305 |
-
|
306 |
-
#@ cpd
|
307 |
-
#: counter-options.php:727
|
308 |
-
msgid "GeoIP - Countries"
|
309 |
-
msgstr "GeoIP - Países"
|
310 |
-
|
311 |
-
#@ cpd
|
312 |
-
#: counter-options.php:736
|
313 |
-
msgid "Update old counter data"
|
314 |
-
msgstr "Atualizar dados de contadores antigos"
|
315 |
-
|
316 |
-
#@ cpd
|
317 |
-
#: counter-options.php:748
|
318 |
-
msgid "Update GeoIP database"
|
319 |
-
msgstr "Atualizar Base de Dados GeoIP"
|
320 |
-
|
321 |
-
#@ cpd
|
322 |
-
#: counter-options.php:743
|
323 |
-
msgid "Download a new version of GeoIP.dat file."
|
324 |
-
msgstr "Baixe uma nova versão do arquivo GeoIP.dat"
|
325 |
-
|
326 |
-
#@ cpd
|
327 |
-
#: counter-options.php:753
|
328 |
-
msgid "More informations about GeoIP"
|
329 |
-
msgstr "Mais informações sobre o GeoIP"
|
330 |
-
|
331 |
-
#@ cpd
|
332 |
-
#: counter-options.php:580
|
333 |
-
#: massbots.php:35
|
334 |
-
msgid "Mass Bots"
|
335 |
-
msgstr "Mass Bots"
|
336 |
-
|
337 |
-
#@ cpd
|
338 |
-
#: counter-options.php:584
|
339 |
-
#, php-format
|
340 |
-
msgid "Show all IPs with more than %s page views per day"
|
341 |
-
msgstr "Exibir todos os IPs com mais de %s páginas exibidas por dia"
|
342 |
-
|
343 |
-
#@ cpd
|
344 |
-
#: counter-options.php:585
|
345 |
-
#: notes.php:71
|
346 |
-
#: userperspan.php:44
|
347 |
-
msgid "show"
|
348 |
-
msgstr "exibir"
|
349 |
-
|
350 |
-
#@ cpd
|
351 |
-
#: counter-options.php:593
|
352 |
-
msgid "IP"
|
353 |
-
msgstr "IP"
|
354 |
-
|
355 |
-
#@ cpd
|
356 |
-
#@ default
|
357 |
-
#: counter-options.php:594
|
358 |
-
#: notes.php:75
|
359 |
-
msgid "Date"
|
360 |
-
msgstr "Data"
|
361 |
-
|
362 |
-
#@ cpd
|
363 |
-
#: counter-options.php:595
|
364 |
-
msgid "Client"
|
365 |
-
msgstr "Cliente"
|
366 |
-
|
367 |
-
#@ cpd
|
368 |
-
#: counter-options.php:596
|
369 |
-
msgid "Views"
|
370 |
-
msgstr "Exibições"
|
371 |
-
|
372 |
-
#@ cpd
|
373 |
-
#: counter-options.php:611
|
374 |
-
#: counter-options.php:627
|
375 |
-
#, php-format
|
376 |
-
msgid "Delete these %s counts"
|
377 |
-
msgstr "Deletar estes %s contadores"
|
378 |
-
|
379 |
-
#@ cpd
|
380 |
-
#: counter-options.php:777
|
381 |
-
#: counter-options.php:787
|
382 |
-
msgid "Reset the counter"
|
383 |
-
msgstr "Reiniciar o contador"
|
384 |
-
|
385 |
-
#@ cpd
|
386 |
-
#: counter-options.php:780
|
387 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
388 |
-
msgstr "Você pode reinicar o contador por esvaziamento da tabela. TODOS PARA 0!<br />Faça um backup se você precisar das informações atuais!"
|
389 |
-
|
390 |
-
#@ cpd
|
391 |
-
#: counter.php:672
|
392 |
-
#, php-format
|
393 |
-
msgid "The %s most visited posts in last %s days:"
|
394 |
-
msgstr "Os %s posts mais visitados nos últimos %s dias:"
|
395 |
-
|
396 |
-
#@ cpd
|
397 |
-
#: counter.php:821
|
398 |
-
msgid "Other"
|
399 |
-
msgstr "Outro"
|
400 |
-
|
401 |
-
#@ default
|
402 |
-
#: counter.php:991
|
403 |
-
#: massbots.php:52
|
404 |
-
#: userperspan.php:63
|
405 |
-
msgid "Front page displays"
|
406 |
-
msgstr "Exibições da primeira página"
|
407 |
-
|
408 |
-
#@ default
|
409 |
-
#: counter-core.php:575
|
410 |
-
#: counter-options.php:341
|
411 |
-
#: counter-options.php:565
|
412 |
-
msgid "Settings"
|
413 |
-
msgstr "Configurações"
|
414 |
-
|
415 |
-
#@ cpd
|
416 |
-
#: counter-core.php:639
|
417 |
-
#: counter-options.php:392
|
418 |
-
#: counter.php:159
|
419 |
-
#: counter.php:875
|
420 |
-
msgid "Reads"
|
421 |
-
msgstr "Leituras"
|
422 |
-
|
423 |
-
#@ cpd
|
424 |
-
#: counter.php:1196
|
425 |
-
msgid "This post"
|
426 |
-
msgstr "Este post"
|
427 |
-
|
428 |
-
#@ cpd
|
429 |
-
#: counter.php:262
|
430 |
-
msgid "Reads per day"
|
431 |
-
msgstr "Leituras por dia"
|
432 |
-
|
433 |
-
#@ cpd
|
434 |
-
#: counter-core.php:733
|
435 |
-
#: counter-options.php:464
|
436 |
-
msgid "Browsers"
|
437 |
-
msgstr "Navegadores"
|
438 |
-
|
439 |
-
#@ cpd
|
440 |
-
#: counter-core.php:728
|
441 |
-
msgid "Latest Counts"
|
442 |
-
msgstr "Contagens Recentes"
|
443 |
-
|
444 |
-
#@ cpd
|
445 |
-
#: counter-core.php:738
|
446 |
-
msgid "Reads per Country"
|
447 |
-
msgstr "Leituras por País"
|
448 |
-
|
449 |
-
#@ cpd
|
450 |
-
#: geoip/geoip.php:93
|
451 |
-
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
452 |
-
msgstr "Desculpe, funções necessárias (zlib) não instaladas ou habilitadas no php.ini."
|
453 |
-
|
454 |
-
#@ cpd
|
455 |
-
#: geoip/geoip.php:117
|
456 |
-
msgid "New GeoIP database installed."
|
457 |
-
msgstr "Nova base de dados GeoIP instalada."
|
458 |
-
|
459 |
-
#@ cpd
|
460 |
-
#: geoip/geoip.php:119
|
461 |
-
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
462 |
-
msgstr "Desculpe, ocorreu um erro. Tente novamente ou verifique se as permissões do diretório \"geoip\" estão setadas para 777."
|
463 |
-
|
464 |
-
#@ cpd
|
465 |
-
#: counter-options.php:362
|
466 |
-
msgid "until User Level"
|
467 |
-
msgstr "usuários do nível"
|
468 |
-
|
469 |
-
#@ cpd
|
470 |
-
#: counter-options.php:497
|
471 |
-
msgid "Start Values"
|
472 |
-
msgstr "Valor inicial"
|
473 |
-
|
474 |
-
#@ cpd
|
475 |
-
#: counter-options.php:501
|
476 |
-
msgid "Here you can change the date of first count and add a start count."
|
477 |
-
msgstr "Aqui você pode mudar a data de sua primeira contagem e adicionar uma contagem inicial."
|
478 |
-
|
479 |
-
#@ cpd
|
480 |
-
#: counter-options.php:505
|
481 |
-
msgid "Start date"
|
482 |
-
msgstr "Data inicial"
|
483 |
-
|
484 |
-
#@ cpd
|
485 |
-
#: counter-options.php:506
|
486 |
-
msgid "Your old Counter starts at?"
|
487 |
-
msgstr "Sua contagem antiga começa em?"
|
488 |
-
|
489 |
-
#@ cpd
|
490 |
-
#: counter-options.php:509
|
491 |
-
#: counter-options.php:513
|
492 |
-
msgid "Start count"
|
493 |
-
msgstr "Contagem inicial"
|
494 |
-
|
495 |
-
#@ cpd
|
496 |
-
#: counter-options.php:510
|
497 |
-
msgid "Add this value to \"Total visitors\"."
|
498 |
-
msgstr "Adicione este valor para \"Total visitors\"."
|
499 |
-
|
500 |
-
#@ cpd
|
501 |
-
#: counter-options.php:714
|
502 |
-
msgid "Support"
|
503 |
-
msgstr "Suporte"
|
504 |
-
|
505 |
-
#@ cpd
|
506 |
-
#: counter-core.php:690
|
507 |
-
msgid "Bug? Problem? Question? Hint? Praise?"
|
508 |
-
msgstr "Erro? Problema? Dúvida? Sugestão? Elogio?"
|
509 |
-
|
510 |
-
#@ cpd
|
511 |
-
#: counter-core.php:691
|
512 |
-
#, php-format
|
513 |
-
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
514 |
-
msgstr "Escreva um comentário na <a href=\"%s\">página do plugin</a>."
|
515 |
-
|
516 |
-
#@ default
|
517 |
-
#: counter.php:786
|
518 |
-
msgid "Show"
|
519 |
-
msgstr "Mostrar"
|
520 |
-
|
521 |
-
#@ cpd
|
522 |
-
#: counter.php:788
|
523 |
-
#: notes.php:42
|
524 |
-
#: notes.php:76
|
525 |
-
msgid "Notes"
|
526 |
-
msgstr "Notas"
|
527 |
-
|
528 |
-
#@ default
|
529 |
-
#: counter.php:976
|
530 |
-
msgid "Edit Post"
|
531 |
-
msgstr "Editar Post"
|
532 |
-
|
533 |
-
#@ default
|
534 |
-
#: counter-core.php:730
|
535 |
-
msgid "Plugin"
|
536 |
-
msgstr "Plugin"
|
537 |
-
|
538 |
-
#@ cpd
|
539 |
-
#: counter-core.php:689
|
540 |
-
#, php-format
|
541 |
-
msgid "Time for Count per Day: <code>%s</code>."
|
542 |
-
msgstr "Tempo para Contagem por Dia: <code>%s</code>."
|
543 |
-
|
544 |
-
#@ default
|
545 |
-
#: notes.php:77
|
546 |
-
msgid "Action"
|
547 |
-
msgstr "Ação"
|
548 |
-
|
549 |
-
#@ cpd
|
550 |
-
#: notes.php:82
|
551 |
-
msgid "add"
|
552 |
-
msgstr "Adicionar"
|
553 |
-
|
554 |
-
#@ cpd
|
555 |
-
#: notes.php:98
|
556 |
-
msgid "save"
|
557 |
-
msgstr "Salvar"
|
558 |
-
|
559 |
-
#@ cpd
|
560 |
-
#: notes.php:99
|
561 |
-
msgid "delete"
|
562 |
-
msgstr "Apagar"
|
563 |
-
|
564 |
-
#@ cpd
|
565 |
-
#: notes.php:110
|
566 |
-
msgid "edit"
|
567 |
-
msgstr "Editar"
|
568 |
-
|
569 |
-
#@ cpd
|
570 |
-
#: counter-options.php:381
|
571 |
-
msgid "Anonymous IP"
|
572 |
-
msgstr "IP Anônimo"
|
573 |
-
|
574 |
-
#@ cpd
|
575 |
-
#: counter-options.php:385
|
576 |
-
msgid "Cache"
|
577 |
-
msgstr "Cache"
|
578 |
-
|
579 |
-
#@ cpd
|
580 |
-
#: counter-options.php:386
|
581 |
-
msgid "I use a cache plugin. Count these visits with ajax."
|
582 |
-
msgstr "Eu uso um Plugin de Cache. Contar essas visitas com Ajax."
|
583 |
-
|
584 |
-
#@ cpd
|
585 |
-
#: counter-options.php:465
|
586 |
-
msgid "Substring of the user agent, separated by comma"
|
587 |
-
msgstr "Substring do usuário agente, separado por vírgula"
|
588 |
-
|
589 |
-
#@ cpd
|
590 |
-
#: counter-options.php:514
|
591 |
-
msgid "Add this value to \"Total reads\"."
|
592 |
-
msgstr "Adicione este valor ao \"Total de Leituras\"."
|
593 |
-
|
594 |
-
#@ cpd
|
595 |
-
#: counter-options.php:554
|
596 |
-
msgid "Debug mode"
|
597 |
-
msgstr "Modo de depuração"
|
598 |
-
|
599 |
-
#@ cpd
|
600 |
-
#: counter-options.php:556
|
601 |
-
msgid "Show debug informations at the bottom of all pages."
|
602 |
-
msgstr "Mostrar informações de depuração na base de todas as páginas."
|
603 |
-
|
604 |
-
#@ cpd
|
605 |
-
#: counter.php:155
|
606 |
-
#: counter.php:1197
|
607 |
-
msgid "Total reads"
|
608 |
-
msgstr "Total de Leituras"
|
609 |
-
|
610 |
-
#@ cpd
|
611 |
-
#: counter.php:156
|
612 |
-
#: counter.php:1198
|
613 |
-
msgid "Reads today"
|
614 |
-
msgstr "Leituras Hoje"
|
615 |
-
|
616 |
-
#@ cpd
|
617 |
-
#: counter.php:157
|
618 |
-
#: counter.php:1199
|
619 |
-
msgid "Reads yesterday"
|
620 |
-
msgstr "Leituras Ontem"
|
621 |
-
|
622 |
-
#@ cpd
|
623 |
-
#: counter-core.php:739
|
624 |
-
msgid "Visitors per Country"
|
625 |
-
msgstr "Visitantes por Paíis"
|
626 |
-
|
627 |
-
#@ cpd
|
628 |
-
#: counter.php:353
|
629 |
-
#: counter.php:1041
|
630 |
-
msgid "Map"
|
631 |
-
msgstr "Mapa"
|
632 |
-
|
633 |
-
#@ cpd
|
634 |
-
#: userperspan.php:38
|
635 |
-
msgid "Start"
|
636 |
-
msgstr "Iniciar"
|
637 |
-
|
638 |
-
#@ cpd
|
639 |
-
#: userperspan.php:40
|
640 |
-
msgid "End"
|
641 |
-
msgstr "Fim"
|
642 |
-
|
643 |
-
#@ cpd
|
644 |
-
#: userperspan.php:42
|
645 |
-
msgid "PostID"
|
646 |
-
msgstr "PostID"
|
647 |
-
|
648 |
-
#@ cpd
|
649 |
-
#: userperspan.php:50
|
650 |
-
msgid "no data found"
|
651 |
-
msgstr "Não foram encontrados dados"
|
652 |
-
|
653 |
-
#@ cpd
|
654 |
-
#: counter-options.php:730
|
655 |
-
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
656 |
-
msgstr "Você pode obter os dados dos países para todas as entradas no banco de dados checando novamente os endereços IP na base de dados GeoIP. Isto pode demorar um pouco!"
|
657 |
-
|
658 |
-
#@ cpd
|
659 |
-
#: counter-options.php:351
|
660 |
-
msgid "Counter"
|
661 |
-
msgstr "contador"
|
662 |
-
|
663 |
-
#@ cpd
|
664 |
-
#: counter-options.php:389
|
665 |
-
msgid "Clients and referrers"
|
666 |
-
msgstr "Clientes e Referências"
|
667 |
-
|
668 |
-
#@ cpd
|
669 |
-
#: counter-options.php:392
|
670 |
-
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
671 |
-
msgstr "Salvar e Exibir Clientes e Referências"
|
672 |
-
|
673 |
-
#@ cpd
|
674 |
-
#: counter-options.php:476
|
675 |
-
msgid "Local URLs"
|
676 |
-
msgstr "URLs Locais"
|
677 |
-
|
678 |
-
#@ cpd
|
679 |
-
#: counter-options.php:477
|
680 |
-
msgid "Show local referrers too."
|
681 |
-
msgstr "Também exibir referência local."
|
682 |
-
|
683 |
-
#@ default
|
684 |
-
#: counter-options.php:485
|
685 |
-
msgid "Posts"
|
686 |
-
msgstr "Posts"
|
687 |
-
|
688 |
-
#@ default
|
689 |
-
#: counter-options.php:485
|
690 |
-
msgid "Pages"
|
691 |
-
msgstr "Páginas"
|
692 |
-
|
693 |
-
#@ cpd
|
694 |
-
#: counter.php:158
|
695 |
-
#: counter.php:1200
|
696 |
-
msgid "Reads last week"
|
697 |
-
msgstr "Leituras na semana passada"
|
698 |
-
|
699 |
-
#@ default
|
700 |
-
#: counter.php:985
|
701 |
-
msgid "Category"
|
702 |
-
msgstr "Categoria"
|
703 |
-
|
704 |
-
#@ default
|
705 |
-
#: counter.php:988
|
706 |
-
msgid "Tag"
|
707 |
-
msgstr "Teg"
|
708 |
-
|
709 |
-
#@ default
|
710 |
-
#: counter-core.php:692
|
711 |
-
msgid "License"
|
712 |
-
msgstr "License"
|
713 |
-
|
714 |
-
#@ cpd
|
715 |
-
#: counter-core.php:726
|
716 |
-
#: counter.php:1201
|
717 |
-
msgid "Reads per month"
|
718 |
-
msgstr "Leituras por mês"
|
719 |
-
|
720 |
-
#@ cpd
|
721 |
-
#: counter-core.php:734
|
722 |
-
msgid "Referrer"
|
723 |
-
msgstr "Referência"
|
724 |
-
|
725 |
-
#@ default
|
726 |
-
#: counter.php:1220
|
727 |
-
msgid "Title"
|
728 |
-
msgstr "Título"
|
729 |
-
|
730 |
-
#@ cpd
|
731 |
-
#: counter-options.php:468
|
732 |
-
msgid "Referrers - Entries"
|
733 |
-
msgstr "Referência - entradas"
|
734 |
-
|
735 |
-
#@ cpd
|
736 |
-
#: counter-options.php:469
|
737 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
738 |
-
msgstr "Quantas referência você quer ver no painel?"
|
739 |
-
|
740 |
-
#@ cpd
|
741 |
-
#: counter-options.php:472
|
742 |
-
msgid "Referrers - Days"
|
743 |
-
msgstr "Referência - Dias"
|
744 |
-
|
745 |
-
#@ cpd
|
746 |
-
#: counter.php:845
|
747 |
-
#, php-format
|
748 |
-
msgid "The %s referrers in last %s days:"
|
749 |
-
msgstr "AA %s referências nos últimos %s dias:"
|
750 |
-
|
751 |
-
#@ cpd
|
752 |
-
#: counter-core.php:724
|
753 |
-
msgid "Visitors online"
|
754 |
-
msgstr "Visitantes online"
|
755 |
-
|
756 |
-
#@ cpd
|
757 |
-
#: counter-core.php:186
|
758 |
-
#, php-format
|
759 |
-
msgid "\"Count per Day\" updated to version %s."
|
760 |
-
msgstr "Atualizar \"Count per Day\" para a versão %s."
|
761 |
-
|
762 |
-
#@ cpd
|
763 |
-
#: counter-core.php:917
|
764 |
-
msgid "Backup failed! Cannot open file"
|
765 |
-
msgstr "Backup falhou. O arquivo não abriu"
|
766 |
-
|
767 |
-
#@ cpd
|
768 |
-
#: counter-core.php:940
|
769 |
-
#, php-format
|
770 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
771 |
-
msgstr "Backup de %s entradas em progresso. Cada ponto corresponde a %s entradas"
|
772 |
-
|
773 |
-
#@ cpd
|
774 |
-
#: counter-core.php:1027
|
775 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
776 |
-
msgstr "Seu diretório wp-content não é gravável. Contudo você pode copiar o conteúdo desta caixa para um arquivo de texto."
|
777 |
-
|
778 |
-
#@ cpd
|
779 |
-
#: counter-core.php:1033
|
780 |
-
#, php-format
|
781 |
-
msgid "Backup of counter table saved in %s."
|
782 |
-
msgstr "Backup da tabela do contador salvo em %s."
|
783 |
-
|
784 |
-
#@ cpd
|
785 |
-
#: counter-core.php:1035
|
786 |
-
#, php-format
|
787 |
-
msgid "Backup of counter options and collection saved in %s."
|
788 |
-
msgstr "Backup das opções de contador e acumuladores salvas em %s."
|
789 |
-
|
790 |
-
#@ cpd
|
791 |
-
#: counter-options.php:170
|
792 |
-
msgid "Collection in progress..."
|
793 |
-
msgstr "Acumulador em progresso..."
|
794 |
-
|
795 |
-
#@ cpd
|
796 |
-
#: counter-options.php:240
|
797 |
-
msgid "Get Visitors per Post..."
|
798 |
-
msgstr "Obter visitas por Post..."
|
799 |
-
|
800 |
-
#@ cpd
|
801 |
-
#: counter-options.php:261
|
802 |
-
msgid "Delete old data..."
|
803 |
-
msgstr "Deletar dados antigos..."
|
804 |
-
|
805 |
-
#@ cpd
|
806 |
-
#: counter-options.php:285
|
807 |
-
#, php-format
|
808 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
809 |
-
msgstr "Contador de entradas até %s acumuladores e tabela de contador %s otimizados (tamanho anterior = %s > tamanho posterior = %s)."
|
810 |
-
|
811 |
-
#@ cpd
|
812 |
-
#: counter-options.php:294
|
813 |
-
msgid "Installation of \"Count per Day\" checked"
|
814 |
-
msgstr "Instalação do \"Count per Day\" checada"
|
815 |
-
|
816 |
-
#@ default
|
817 |
-
#: counter-options.php:342
|
818 |
-
#: counter-options.php:566
|
819 |
-
msgid "Tools"
|
820 |
-
msgstr "Ferramentas"
|
821 |
-
|
822 |
-
#@ cpd
|
823 |
-
#: counter-options.php:394
|
824 |
-
msgid "Save URL only, no query string."
|
825 |
-
msgstr "Salvar somente URL, sem sequencia de caracteres"
|
826 |
-
|
827 |
-
#@ cpd
|
828 |
-
#: counter-options.php:419
|
829 |
-
msgid "Who can see it"
|
830 |
-
msgstr "Quem pode ver isto"
|
831 |
-
|
832 |
-
#@ cpd
|
833 |
-
#: counter-options.php:428
|
834 |
-
msgid "custom"
|
835 |
-
msgstr "Customizar"
|
836 |
-
|
837 |
-
#@ cpd
|
838 |
-
#: counter-options.php:430
|
839 |
-
msgid "and higher are allowed to see the statistics page."
|
840 |
-
msgstr "e superior têm permissão para ver a página de estatísticas."
|
841 |
-
|
842 |
-
#@ cpd
|
843 |
-
#: counter-options.php:432
|
844 |
-
#, php-format
|
845 |
-
msgid "Set the %s capability %s a user need:"
|
846 |
-
msgstr "Definir a %s capacidade %s a uma necessidade do usuário"
|
847 |
-
|
848 |
-
#@ cpd
|
849 |
-
#: counter-options.php:522
|
850 |
-
msgid "Stylesheet"
|
851 |
-
msgstr "Estilo"
|
852 |
-
|
853 |
-
#@ cpd
|
854 |
-
#: counter-options.php:525
|
855 |
-
msgid "NO Stylesheet in Frontend"
|
856 |
-
msgstr "SEM Estilo na interface pública"
|
857 |
-
|
858 |
-
#@ cpd
|
859 |
-
#: counter-options.php:526
|
860 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
861 |
-
msgstr "Não carregue o estilo \"counter.css\" na interface pública"
|
862 |
-
|
863 |
-
#@ cpd
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:639
|
866 |
-
msgid "Backup"
|
867 |
-
msgstr "Backup"
|
868 |
-
|
869 |
-
#@ cpd
|
870 |
-
#: counter-options.php:537
|
871 |
-
msgid "Entries per pass"
|
872 |
-
msgstr "Entradas por passagem"
|
873 |
-
|
874 |
-
#@ cpd
|
875 |
-
#: counter-options.php:540
|
876 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
877 |
-
msgstr "Quantas entradas devem ser salvas por passagem? Padrão: 10000"
|
878 |
-
|
879 |
-
#@ cpd
|
880 |
-
#: counter-options.php:545
|
881 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
882 |
-
msgstr "Se o limite de memória do PHP for inferior a 50Mb você terá uma página em branco ou mensagens de erro. Tente um valor menor."
|
883 |
-
|
884 |
-
#@ cpd
|
885 |
-
#: counter-options.php:643
|
886 |
-
#, php-format
|
887 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
888 |
-
msgstr "Criar um backup da tabela de contador %s no seu diretório wp-content (se tiver permissão de escrita)"
|
889 |
-
|
890 |
-
#@ cpd
|
891 |
-
#: counter-options.php:647
|
892 |
-
msgid "Backup the database"
|
893 |
-
msgstr "Backup da base de dados"
|
894 |
-
|
895 |
-
#@ cpd
|
896 |
-
#: counter-options.php:674
|
897 |
-
#: counter-options.php:706
|
898 |
-
msgid "Collect old data"
|
899 |
-
msgstr "Coletar dados antigos"
|
900 |
-
|
901 |
-
#@ cpd
|
902 |
-
#: counter-options.php:679
|
903 |
-
#, php-format
|
904 |
-
msgid "Current size of your counter table %s is %s."
|
905 |
-
msgstr "O tamanho atual da sua tabela de contador %s é %s."
|
906 |
-
|
907 |
-
#@ cpd
|
908 |
-
#: counter-options.php:681
|
909 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
910 |
-
msgstr "Você pode coletar dados antigos e limpar a tabela de contadores. <br/> Leituras e Visitantes serão salvos por mês, por país e por post. <br/> Clientes e refrência serão excluídos."
|
911 |
-
|
912 |
-
#@ cpd
|
913 |
-
#: counter-options.php:686
|
914 |
-
#, php-format
|
915 |
-
msgid "Currently your collection contains data until %s."
|
916 |
-
msgstr "Atualmente sua coleção contém dados até %s"
|
917 |
-
|
918 |
-
#@ cpd
|
919 |
-
#: counter-options.php:690
|
920 |
-
msgid "Normally new data will be added to the collection."
|
921 |
-
msgstr "Dados novos são adicionados normalmente à coleção."
|
922 |
-
|
923 |
-
#@ cpd
|
924 |
-
#: counter-options.php:696
|
925 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
926 |
-
msgstr "Excluir coleção antiga e criar uma nova, que contenha apenas os dados atuais na tabela do contador."
|
927 |
-
|
928 |
-
#@ cpd
|
929 |
-
#: counter-options.php:697
|
930 |
-
#, php-format
|
931 |
-
msgid "All collected data until %s will deleted."
|
932 |
-
msgstr "Todos os dados coletados até %s serão excluidos."
|
933 |
-
|
934 |
-
#@ cpd
|
935 |
-
#: counter-options.php:702
|
936 |
-
#, php-format
|
937 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
938 |
-
msgstr "Manter entradas dos últimos %s meses completos + mês atual na tabela do contador."
|
939 |
-
|
940 |
-
#@ cpd
|
941 |
-
#: counter-options.php:761
|
942 |
-
msgid "ReActivation"
|
943 |
-
msgstr "Reativação"
|
944 |
-
|
945 |
-
#@ cpd
|
946 |
-
#: counter-options.php:764
|
947 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
948 |
-
msgstr "Aqui você pode iniciar as funções de instalação manualmente. <br/> Equivale a desativar e reativar o plugin."
|
949 |
-
|
950 |
-
#@ cpd
|
951 |
-
#: counter-options.php:769
|
952 |
-
msgid "ReActivate the plugin"
|
953 |
-
msgstr "Reativar o plugin"
|
954 |
-
|
955 |
-
#@ cpd
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
msgid "Visitors"
|
959 |
-
msgstr "Visitantes"
|
960 |
-
|
961 |
-
#@ cpd
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
msgid "Most visited day"
|
965 |
-
msgstr "Dia mais visitado"
|
966 |
-
|
967 |
-
#@ cpd
|
968 |
-
#: counter.php:1239
|
969 |
-
msgid "drag and drop to sort"
|
970 |
-
msgstr "arrastar e soltar para classificar"
|
971 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-ru_RU.mo
CHANGED
Binary file
|
locale/cpd-ru_RU.po
CHANGED
@@ -19,954 +19,766 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: counter-options.php:
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Настройки сохранены"
|
26 |
|
27 |
-
#: counter-options.php:
|
28 |
#, php-format
|
29 |
#@ cpd
|
30 |
msgid "Database cleaned. %s rows deleted."
|
31 |
msgstr "База данных очищена. %s строчек удалено."
|
32 |
|
33 |
-
#: counter-options.php:
|
34 |
-
#: counter-options.php:
|
35 |
#@ cpd
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
|
38 |
|
39 |
-
#: counter-options.php:
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
#, php-format
|
43 |
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "Таблица %s удалена"
|
46 |
|
47 |
-
#: counter-options.php:
|
48 |
#@ cpd
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Настройки удалены"
|
51 |
|
52 |
-
#: counter-options.php:
|
53 |
-
#: counter-options.php:
|
54 |
#@ cpd
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Деинсталяция"
|
57 |
|
58 |
-
#: counter-options.php:
|
59 |
#@ cpd
|
60 |
msgid "Click here"
|
61 |
msgstr "Нажмите сюда"
|
62 |
|
63 |
-
#: counter-options.php:
|
64 |
#@ cpd
|
65 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
|
67 |
|
68 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
69 |
#@ cpd
|
70 |
msgid "Online time"
|
71 |
msgstr "Время онлайн"
|
72 |
|
73 |
-
#: counter-options.php:
|
74 |
#@ cpd
|
75 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
|
77 |
|
78 |
-
#: counter-options.php:
|
79 |
#@ cpd
|
80 |
msgid "Logged on Users"
|
81 |
msgstr "Вошедших пользователей"
|
82 |
|
83 |
-
#: counter-options.php:
|
84 |
#@ cpd
|
85 |
msgid "count too"
|
86 |
msgstr "также считать"
|
87 |
|
88 |
-
#: counter-options.php:
|
89 |
#@ cpd
|
90 |
msgid "Auto counter"
|
91 |
msgstr "Автоматический счетчик"
|
92 |
|
93 |
-
#: counter-options.php:
|
94 |
#@ cpd
|
95 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
|
97 |
|
98 |
-
#: counter-options.php:
|
99 |
#@ cpd
|
100 |
msgid "Bots to ignore"
|
101 |
msgstr "Игнорировать ботов"
|
102 |
|
103 |
-
#: counter-options.php:
|
104 |
#@ cpd
|
105 |
msgid "Update options"
|
106 |
msgstr "Сохранить настройки"
|
107 |
|
108 |
-
#: counter-options.php:
|
109 |
-
#: counter-options.php:
|
110 |
#@ cpd
|
111 |
msgid "Clean the database"
|
112 |
msgstr "Очистить базу данных"
|
113 |
|
114 |
-
#: counter-options.php:
|
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:
|
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:
|
125 |
#@ cpd
|
126 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
|
128 |
|
129 |
-
#: counter-options.php:
|
130 |
#@ cpd
|
131 |
msgid "WARNING"
|
132 |
msgstr "ВНИМАНИЕ"
|
133 |
|
134 |
-
#: counter-options.php:
|
135 |
#@ cpd
|
136 |
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
|
138 |
|
139 |
-
#: counter-options.php:
|
140 |
#@ cpd
|
141 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
|
143 |
|
144 |
-
#: counter-options.php:
|
145 |
-
#: counter-options.php:809
|
146 |
#@ cpd
|
147 |
msgid "Yes"
|
148 |
msgstr "Да"
|
149 |
|
150 |
-
#: counter-options.php:
|
151 |
#@ cpd
|
152 |
msgid "You are sure to disable Count per Day and delete all data?"
|
153 |
msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
|
154 |
|
155 |
-
#: counter
|
156 |
-
#: counter.php:
|
157 |
#@ cpd
|
158 |
msgid "Statistics"
|
159 |
msgstr "Статистика"
|
160 |
|
161 |
-
#: counter
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
|
|
165 |
#@ cpd
|
166 |
msgid "Total visitors"
|
167 |
msgstr "Всего посетителей"
|
168 |
|
169 |
-
#: counter.php:
|
170 |
-
#: counter.php:
|
171 |
#@ cpd
|
172 |
msgid "Visitors currently online"
|
173 |
msgstr "Посетителей сейчас на сайте"
|
174 |
|
175 |
-
#: counter.php:
|
176 |
-
#: counter.php:
|
177 |
#@ cpd
|
178 |
msgid "Visitors today"
|
179 |
msgstr "Посетителей сегодня"
|
180 |
|
181 |
-
#: counter.php:
|
182 |
-
#: counter.php:
|
183 |
#@ cpd
|
184 |
msgid "Visitors yesterday"
|
185 |
msgstr "Посетителей вчера"
|
186 |
|
187 |
-
#: counter.php:
|
188 |
-
#: counter.php:
|
189 |
#@ cpd
|
190 |
msgid "Visitors last week"
|
191 |
msgstr "Посетителей на прошлой неделе"
|
192 |
|
193 |
-
#: counter.php:
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:1209
|
196 |
#@ cpd
|
197 |
msgid "Counter starts on"
|
198 |
msgstr "Счетчик начинается с"
|
199 |
|
200 |
-
#: counter
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#:
|
|
|
206 |
#@ cpd
|
207 |
msgid "Visitors per day"
|
208 |
msgstr "Посетителей в день"
|
209 |
|
210 |
-
#: counter
|
211 |
-
#: counter.php:
|
212 |
#@ cpd
|
213 |
msgid "Visitors per month"
|
214 |
msgstr "Посетителей в месяц"
|
215 |
|
216 |
-
#: counter-
|
217 |
-
#: counter
|
218 |
#@ cpd
|
219 |
msgid "Visitors per post"
|
220 |
msgstr "Посетителей записи"
|
221 |
|
222 |
-
#: counter-options.php:
|
223 |
#@ cpd
|
224 |
msgid "Counter reseted."
|
225 |
-
msgstr "Счетчик
|
226 |
|
227 |
-
#: counter-options.php:
|
228 |
#@ default
|
229 |
msgid "Dashboard"
|
230 |
msgstr "Консоль"
|
231 |
|
232 |
-
#: counter-options.php:
|
233 |
-
#: counter-options.php:
|
234 |
#@ cpd
|
235 |
msgid "How many posts do you want to see on dashboard page?"
|
236 |
msgstr "Сколько записей вы хотите видеть на странице консоли?"
|
237 |
|
238 |
-
#: counter-options.php:
|
239 |
#@ cpd
|
240 |
msgid "Latest Counts - Posts"
|
241 |
msgstr "Последние счетчики - Записи"
|
242 |
|
243 |
-
#: counter-options.php:
|
244 |
#@ cpd
|
245 |
msgid "Latest Counts - Days"
|
246 |
msgstr "Последние счетчики - Дни"
|
247 |
|
248 |
-
#: counter-options.php:
|
249 |
-
#: counter-options.php:
|
250 |
-
#: counter-options.php:
|
251 |
#@ cpd
|
252 |
msgid "How many days do you want look back?"
|
253 |
msgstr "Насколько дней назад вы хотите видеть статистику?"
|
254 |
|
255 |
-
#: counter-options.php:
|
256 |
#@ cpd
|
257 |
msgid "Chart - Days"
|
258 |
msgstr "Таблица - Дни"
|
259 |
|
260 |
-
#: counter-options.php:
|
261 |
#@ cpd
|
262 |
msgid "Chart - Height"
|
263 |
msgstr "Таблица - Высота"
|
264 |
|
265 |
-
#: counter-options.php:
|
266 |
#@ cpd
|
267 |
msgid "Height of the biggest bar"
|
268 |
msgstr "Высота самого большого столбика"
|
269 |
|
270 |
-
#: counter-options.php:
|
271 |
#@ cpd
|
272 |
msgid "Show in lists"
|
273 |
msgstr "Показать в списках"
|
274 |
|
275 |
-
#: counter-options.php:
|
276 |
#@ cpd
|
277 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
278 |
msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
|
279 |
|
280 |
-
#: counter-options.php:
|
281 |
-
#: counter-options.php:
|
282 |
#@ cpd
|
283 |
msgid "Reset the counter"
|
284 |
msgstr "Обнулить счетчик"
|
285 |
|
286 |
-
#: counter-options.php:
|
287 |
#@ cpd
|
288 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
289 |
msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
|
290 |
|
291 |
-
#: counter.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
#, php-format
|
293 |
#@ cpd
|
294 |
msgid "The %s most visited posts in last %s days:"
|
295 |
msgstr "Самое %s посещаемые записи за последние %s дней:"
|
296 |
|
297 |
-
#: counter
|
298 |
-
#: counter-options.php:341
|
299 |
-
#: counter-options.php:565
|
300 |
#@ default
|
301 |
msgid "Settings"
|
302 |
msgstr "Настройки"
|
303 |
|
304 |
-
#: counter.php:
|
|
|
305 |
#@ cpd
|
306 |
msgid "Reads per day"
|
307 |
msgstr "Прочтений в день"
|
308 |
|
309 |
-
#: counter-
|
310 |
-
#: counter
|
311 |
-
#: counter.php:
|
312 |
-
#: counter.php:875
|
313 |
#@ cpd
|
314 |
msgid "Reads"
|
315 |
msgstr "Прочтений"
|
316 |
|
317 |
-
#: counter.php:
|
318 |
#@ cpd
|
319 |
msgid "This post"
|
320 |
msgstr "Эта запись"
|
321 |
|
322 |
-
#: counter-options.php:
|
323 |
#, php-format
|
324 |
#@ cpd
|
325 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
326 |
msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
|
327 |
|
328 |
-
#: counter-options.php:
|
329 |
#@ cpd
|
330 |
msgid "update next"
|
331 |
msgstr "обновить следующий"
|
332 |
|
333 |
-
#: counter-options.php:
|
334 |
#, php-format
|
335 |
#@ cpd
|
336 |
msgid "Mass Bots cleaned. %s counts deleted."
|
337 |
msgstr "Таблица ботов очищена. %s записей удалено"
|
338 |
|
339 |
-
#: counter-options.php:
|
340 |
#@ cpd
|
341 |
msgid "until User Level"
|
342 |
msgstr "до уровня пользователя"
|
343 |
|
344 |
-
#: counter-options.php:
|
345 |
#@ cpd
|
346 |
msgid "Anonymous IP"
|
347 |
msgstr "Анонимный IP"
|
348 |
|
349 |
-
#: counter-options.php:
|
350 |
#@ cpd
|
351 |
msgid "Countries"
|
352 |
msgstr "Страны"
|
353 |
|
354 |
-
#: counter-options.php:
|
355 |
#@ cpd
|
356 |
msgid "How many countries do you want to see on dashboard page?"
|
357 |
msgstr "Сколько стран вы хотите видеть в списке?"
|
358 |
|
359 |
-
#: counter-options.php:
|
360 |
#@ cpd
|
361 |
msgid "Start Values"
|
362 |
msgstr "Начальные данные"
|
363 |
|
364 |
-
#: counter-options.php:
|
365 |
#@ cpd
|
366 |
msgid "Here you can change the date of first count and add a start count."
|
367 |
msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
|
368 |
|
369 |
-
#: counter-options.php:
|
370 |
#@ cpd
|
371 |
msgid "Start date"
|
372 |
msgstr "Дата начала"
|
373 |
|
374 |
-
#: counter-options.php:
|
375 |
#@ cpd
|
376 |
msgid "Your old Counter starts at?"
|
377 |
msgstr "Ваш старый Счетчик начинался с"
|
378 |
|
379 |
-
#: counter-options.php:
|
380 |
-
#: counter-options.php:
|
381 |
#@ cpd
|
382 |
msgid "Start count"
|
383 |
msgstr "Начало отсчета"
|
384 |
|
385 |
-
#: counter-options.php:
|
386 |
#@ cpd
|
387 |
msgid "Add this value to \"Total visitors\"."
|
388 |
msgstr "Добавить значение к \"Всего посетителей\"."
|
389 |
|
390 |
-
#: counter-options.php:
|
391 |
#@ cpd
|
392 |
msgid "GeoIP - Countries"
|
393 |
msgstr "GeoIP - Страны"
|
394 |
|
395 |
-
#: counter-options.php:
|
396 |
#@ cpd
|
397 |
msgid "Update old counter data"
|
398 |
msgstr "Обновить данные старого счетчика"
|
399 |
|
400 |
-
#: counter-options.php:
|
401 |
#@ cpd
|
402 |
msgid "Update GeoIP database"
|
403 |
msgstr "Обновить базу данных GeoIP"
|
404 |
|
405 |
-
#: counter-options.php:
|
406 |
#@ cpd
|
407 |
msgid "Download a new version of GeoIP.dat file."
|
408 |
msgstr "Скачать новую версию файла GeoIP.dat."
|
409 |
|
410 |
-
#: counter-options.php:
|
411 |
#@ cpd
|
412 |
msgid "More informations about GeoIP"
|
413 |
msgstr "Больше информации про GeoIP"
|
414 |
|
415 |
-
#: counter-options.php:
|
416 |
-
#: massbots.php:
|
417 |
#@ cpd
|
418 |
msgid "Mass Bots"
|
419 |
msgstr "Вероятные боты"
|
420 |
|
421 |
-
#: counter-options.php:
|
422 |
#, php-format
|
423 |
#@ cpd
|
424 |
msgid "Show all IPs with more than %s page views per day"
|
425 |
msgstr "Показать все IP с более чем %s просмотров в сутки"
|
426 |
|
427 |
-
#: counter-options.php:
|
428 |
-
#: notes.php:
|
429 |
-
#: userperspan.php:
|
430 |
#@ cpd
|
431 |
msgid "show"
|
432 |
msgstr "показать"
|
433 |
|
434 |
-
#: counter-options.php:
|
435 |
#@ cpd
|
436 |
msgid "IP"
|
437 |
msgstr "IP"
|
438 |
|
439 |
-
#: counter-options.php:
|
440 |
-
#: notes.php:
|
441 |
#@ cpd
|
442 |
#@ default
|
443 |
msgid "Date"
|
444 |
msgstr "Дата"
|
445 |
|
446 |
-
#: counter-options.php:
|
447 |
#@ cpd
|
448 |
msgid "Client"
|
449 |
msgstr "Клиент"
|
450 |
|
451 |
-
#: counter-options.php:
|
452 |
#@ cpd
|
453 |
msgid "Views"
|
454 |
msgstr "Просмотров"
|
455 |
|
456 |
-
#: counter-options.php:
|
457 |
-
#: counter-options.php:
|
458 |
#, php-format
|
459 |
#@ cpd
|
460 |
msgid "Delete these %s counts"
|
461 |
msgstr "Удалить эти %s счетчиков"
|
462 |
|
463 |
-
#: counter-options.php:
|
464 |
#@ cpd
|
465 |
msgid "Support"
|
466 |
msgstr "Поддержка"
|
467 |
|
468 |
-
#: counter
|
469 |
#, php-format
|
470 |
#@ cpd
|
471 |
msgid "Time for Count per Day: <code>%s</code>."
|
472 |
msgstr "Время для Count per Day: <code>%s</code>"
|
473 |
|
474 |
-
#: counter
|
475 |
#@ cpd
|
476 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
477 |
msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
|
478 |
|
479 |
-
#: counter
|
480 |
#, php-format
|
481 |
#@ cpd
|
482 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
483 |
msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
|
484 |
|
485 |
-
#: counter.php:
|
486 |
-
#: counter.php:
|
487 |
#@ cpd
|
488 |
msgid "Total reads"
|
489 |
msgstr "Всего прочтений"
|
490 |
|
491 |
-
#: counter.php:
|
492 |
-
#: counter.php:
|
493 |
#@ cpd
|
494 |
msgid "Reads today"
|
495 |
msgstr "Прочтений сегодня"
|
496 |
|
497 |
-
#: counter.php:
|
498 |
-
#: counter.php:
|
499 |
#@ cpd
|
500 |
msgid "Reads yesterday"
|
501 |
msgstr "Прочтений вчера"
|
502 |
|
503 |
-
#: counter.php:
|
504 |
-
#:
|
505 |
-
#: notes.php:
|
|
|
506 |
#@ cpd
|
507 |
msgid "Notes"
|
508 |
msgstr "Заметки"
|
509 |
|
510 |
-
#: counter.php:
|
511 |
#@ default
|
512 |
msgid "Show"
|
513 |
msgstr "Показать"
|
514 |
|
515 |
-
#: counter.php:
|
516 |
#@ cpd
|
517 |
msgid "Other"
|
518 |
msgstr "Другие"
|
519 |
|
520 |
-
#: counter.php:
|
521 |
#@ default
|
522 |
msgid "Edit Post"
|
523 |
msgstr "Редактировать запись"
|
524 |
|
525 |
-
#: counter.php:
|
526 |
-
#: massbots.php:
|
527 |
#: userperspan.php:63
|
528 |
#@ default
|
529 |
msgid "Front page displays"
|
530 |
msgstr "Отображений главной страницы"
|
531 |
|
532 |
-
#: counter-
|
533 |
-
#: counter
|
534 |
#@ cpd
|
535 |
msgid "Browsers"
|
536 |
msgstr "Браузеры"
|
537 |
|
538 |
-
#: counter
|
539 |
#@ cpd
|
540 |
msgid "Latest Counts"
|
541 |
msgstr "Недавние подсчеты"
|
542 |
|
543 |
-
#: counter
|
544 |
#@ default
|
545 |
msgid "Plugin"
|
546 |
msgstr "Плагин"
|
547 |
|
548 |
-
#: counter
|
549 |
#@ cpd
|
550 |
msgid "Reads per Country"
|
551 |
msgstr "Прочтений по странам"
|
552 |
|
553 |
-
#: counter.php:
|
554 |
-
#: counter.php:
|
555 |
#@ cpd
|
556 |
msgid "Map"
|
557 |
msgstr "Карта"
|
558 |
|
559 |
-
#: geoip/geoip.php:
|
560 |
#@ cpd
|
561 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
562 |
msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
|
563 |
|
564 |
-
#: geoip/geoip.php:
|
565 |
#@ cpd
|
566 |
msgid "New GeoIP database installed."
|
567 |
msgstr "Новая база данных GeoIP установлена."
|
568 |
|
569 |
-
#: geoip/geoip.php:
|
570 |
#@ cpd
|
571 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
572 |
msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
|
573 |
|
574 |
-
#: notes.php:
|
|
|
|
|
|
|
|
|
|
|
575 |
#@ default
|
576 |
msgid "Action"
|
577 |
msgstr "Действие"
|
578 |
|
579 |
-
#: notes.php:
|
580 |
#@ cpd
|
581 |
msgid "add"
|
582 |
msgstr "добавить"
|
583 |
|
584 |
-
#: notes.php:
|
585 |
#@ cpd
|
586 |
msgid "save"
|
587 |
msgstr "сохранить"
|
588 |
|
589 |
-
#: notes.php:
|
590 |
#@ cpd
|
591 |
msgid "delete"
|
592 |
msgstr "удалить"
|
593 |
|
594 |
-
#: notes.php:
|
595 |
#@ cpd
|
596 |
msgid "edit"
|
597 |
msgstr "редактировать"
|
598 |
|
599 |
-
#: counter-options.php:
|
600 |
#@ cpd
|
601 |
msgid "Cache"
|
602 |
msgstr "Кэш"
|
603 |
|
604 |
-
#: counter-options.php:
|
605 |
#@ cpd
|
606 |
msgid "I use a cache plugin. Count these visits with ajax."
|
607 |
msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
|
608 |
|
609 |
-
#: counter-options.php:
|
610 |
#@ cpd
|
611 |
msgid "Substring of the user agent, separated by comma"
|
612 |
msgstr "Подстрока агента пользователя разделенный запятой"
|
613 |
|
614 |
-
#: counter-options.php:
|
615 |
#@ cpd
|
616 |
msgid "Debug mode"
|
617 |
msgstr "Режим отладки"
|
618 |
|
619 |
-
#: counter-options.php:
|
620 |
#@ cpd
|
621 |
msgid "Show debug informations at the bottom of all pages."
|
622 |
msgstr "Добавить отладочную информацию внизу каждой страницы."
|
623 |
|
624 |
-
#: counter
|
625 |
#@ cpd
|
626 |
msgid "Visitors per Country"
|
627 |
msgstr "Посетителей по странам"
|
628 |
|
629 |
-
#: userperspan.php:
|
630 |
#@ cpd
|
631 |
msgid "Start"
|
632 |
msgstr "Начало"
|
633 |
|
634 |
-
#: userperspan.php:
|
635 |
#@ cpd
|
636 |
msgid "End"
|
637 |
msgstr "Конец"
|
638 |
|
639 |
-
#: userperspan.php:
|
640 |
#@ cpd
|
641 |
msgid "PostID"
|
642 |
msgstr "ID сообщения"
|
643 |
|
644 |
-
#: counter-options.php:
|
645 |
#@ cpd
|
646 |
msgid "Add this value to \"Total reads\"."
|
647 |
msgstr "Добавить значение к \"Всего прочтений\"."
|
648 |
|
649 |
-
#: counter-options.php:
|
650 |
#@ cpd
|
651 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
652 |
msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
|
653 |
|
654 |
-
#: userperspan.php:
|
655 |
#@ cpd
|
656 |
msgid "no data found"
|
657 |
msgstr "ничего не найдено"
|
658 |
|
659 |
-
#: counter-options.php:
|
660 |
#@ cpd
|
661 |
msgid "Counter"
|
662 |
msgstr "Счетчик"
|
663 |
|
664 |
-
#: counter-options.php:
|
665 |
#@ cpd
|
666 |
msgid "Clients and referrers"
|
667 |
msgstr "Клиенты и ссылающиеся сайты"
|
668 |
|
669 |
-
#: counter-options.php:
|
670 |
#@ cpd
|
671 |
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
672 |
msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
|
673 |
|
674 |
-
#: counter-options.php:
|
675 |
#@ cpd
|
676 |
msgid "Local URLs"
|
677 |
msgstr "Локальные URL"
|
678 |
|
679 |
-
#: counter-options.php:
|
680 |
#@ cpd
|
681 |
msgid "Show local referrers too."
|
682 |
msgstr "Показывать локальные переходы тоже."
|
683 |
|
684 |
-
#: counter-options.php:
|
685 |
#@ default
|
686 |
msgid "Posts"
|
687 |
msgstr "Записи"
|
688 |
|
689 |
-
#: counter-options.php:
|
690 |
#@ default
|
691 |
msgid "Pages"
|
692 |
msgstr "Страницы"
|
693 |
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
#@ cpd
|
697 |
msgid "Reads last week"
|
698 |
msgstr "Прочтений на прошлой неделе"
|
699 |
|
700 |
-
#: counter.php:
|
701 |
#@ default
|
702 |
msgid "Category"
|
703 |
msgstr "Категория"
|
704 |
|
705 |
-
#: counter.php:
|
706 |
#@ default
|
707 |
msgid "Tag"
|
708 |
msgstr "Тег"
|
709 |
|
710 |
-
#: counter
|
711 |
#@ default
|
712 |
msgid "License"
|
713 |
msgstr "Лицензия"
|
714 |
|
715 |
-
#: counter
|
716 |
-
#: counter.php:
|
717 |
#@ cpd
|
718 |
msgid "Reads per month"
|
719 |
msgstr "Прочтений за месяц"
|
720 |
|
721 |
-
#: counter
|
722 |
#@ cpd
|
723 |
msgid "Referrer"
|
724 |
msgstr "Ссылающийся сайт"
|
725 |
|
726 |
-
#: counter-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
727 |
#@ cpd
|
728 |
msgid "Referrers - Entries"
|
729 |
msgstr "Ссылающиеся сайты - Вхождения"
|
730 |
|
731 |
-
#: counter-options.php:
|
732 |
#@ cpd
|
733 |
msgid "How many referrers do you want to see on dashboard page?"
|
734 |
msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
|
735 |
|
736 |
-
#: counter-options.php:
|
737 |
#@ cpd
|
738 |
msgid "Referrers - Days"
|
739 |
msgstr "Ссылающиеся сайты - Дни"
|
740 |
|
741 |
-
#: counter.php:
|
742 |
#, php-format
|
743 |
#@ cpd
|
744 |
msgid "The %s referrers in last %s days:"
|
745 |
msgstr "%s ссылающихся сайтов за последние %s дней:"
|
746 |
|
747 |
-
#: counter
|
748 |
#@ cpd
|
749 |
msgid "Visitors online"
|
750 |
msgstr "Посетителей на сайте"
|
751 |
|
752 |
-
#: counter
|
753 |
-
#, php-format
|
754 |
-
#@ cpd
|
755 |
-
msgid "\"Count per Day\" updated to version %s."
|
756 |
-
msgstr "\"Count per Day\" обновлен до версии %s"
|
757 |
-
|
758 |
-
#: counter-core.php:917
|
759 |
-
#@ cpd
|
760 |
-
msgid "Backup failed! Cannot open file"
|
761 |
-
msgstr "Обновление не удалось! Не могу открыть файл"
|
762 |
-
|
763 |
-
#: counter-core.php:940
|
764 |
-
#, php-format
|
765 |
-
#@ cpd
|
766 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
767 |
-
msgstr "Происходит резервное соранение %s записей. Каждой точке соответствует %s записей."
|
768 |
-
|
769 |
-
#: counter-core.php:1027
|
770 |
-
#@ cpd
|
771 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
772 |
-
msgstr "Ваша папка wp-content только для чтения, но вы можете скопировать содержимое этого поля в текстовый файл."
|
773 |
-
|
774 |
-
#: counter-core.php:1033
|
775 |
-
#, php-format
|
776 |
-
#@ cpd
|
777 |
-
msgid "Backup of counter table saved in %s."
|
778 |
-
msgstr "Резервная копия таблицы счетчика сохранена в %s"
|
779 |
-
|
780 |
-
#: counter-core.php:1035
|
781 |
-
#, php-format
|
782 |
-
#@ cpd
|
783 |
-
msgid "Backup of counter options and collection saved in %s."
|
784 |
-
msgstr "Резервная копия настроек счетчика и коллекции сохранены в %s"
|
785 |
-
|
786 |
-
#: counter-options.php:170
|
787 |
-
#@ cpd
|
788 |
-
msgid "Collection in progress..."
|
789 |
-
msgstr "Происходит сбор данных..."
|
790 |
-
|
791 |
-
#: counter-options.php:240
|
792 |
-
#@ cpd
|
793 |
-
msgid "Get Visitors per Post..."
|
794 |
-
msgstr "Получить посетителей по записям..."
|
795 |
-
|
796 |
-
#: counter-options.php:261
|
797 |
-
#@ cpd
|
798 |
-
msgid "Delete old data..."
|
799 |
-
msgstr "Удалить старые данные..."
|
800 |
-
|
801 |
-
#: counter-options.php:285
|
802 |
-
#, php-format
|
803 |
-
#@ cpd
|
804 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
805 |
-
msgstr "Записи счетчика до %s собраны и оптимизирована таблица счетчика %s (размер перед = %s > размер после = %s)."
|
806 |
-
|
807 |
-
#: counter-options.php:294
|
808 |
-
#@ cpd
|
809 |
-
msgid "Installation of \"Count per Day\" checked"
|
810 |
-
msgstr "Установка \"Count per Day\" проверена"
|
811 |
-
|
812 |
-
#: counter-options.php:342
|
813 |
-
#: counter-options.php:566
|
814 |
-
#@ default
|
815 |
-
msgid "Tools"
|
816 |
-
msgstr "Инструменты"
|
817 |
-
|
818 |
-
#: counter-options.php:394
|
819 |
-
#@ cpd
|
820 |
-
msgid "Save URL only, no query string."
|
821 |
-
msgstr "Сохранять только URL без строки запроса."
|
822 |
-
|
823 |
-
#: counter-options.php:419
|
824 |
-
#@ cpd
|
825 |
-
msgid "Who can see it"
|
826 |
-
msgstr "Кто может это видеть"
|
827 |
-
|
828 |
-
#: counter-options.php:428
|
829 |
-
#@ cpd
|
830 |
-
msgid "custom"
|
831 |
-
msgstr "пользовательский"
|
832 |
-
|
833 |
-
#: counter-options.php:430
|
834 |
-
#@ cpd
|
835 |
-
msgid "and higher are allowed to see the statistics page."
|
836 |
-
msgstr "и выше могут видеть статистику страницы."
|
837 |
-
|
838 |
-
#: counter-options.php:432
|
839 |
-
#, php-format
|
840 |
-
#@ cpd
|
841 |
-
msgid "Set the %s capability %s a user need:"
|
842 |
-
msgstr "Установить %s права % необходимые пользователю:"
|
843 |
-
|
844 |
-
#: counter-options.php:522
|
845 |
-
#@ cpd
|
846 |
-
msgid "Stylesheet"
|
847 |
-
msgstr "Стили"
|
848 |
-
|
849 |
-
#: counter-options.php:525
|
850 |
-
#@ cpd
|
851 |
-
msgid "NO Stylesheet in Frontend"
|
852 |
-
msgstr "НЕ использовать стили в интерфейсе"
|
853 |
-
|
854 |
-
#: counter-options.php:526
|
855 |
-
#@ cpd
|
856 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
857 |
-
msgstr "Не загружать файл стилей \"counter.css\" для интерфейса."
|
858 |
-
|
859 |
-
#: counter-options.php:534
|
860 |
-
#: counter-options.php:639
|
861 |
-
#@ cpd
|
862 |
-
msgid "Backup"
|
863 |
-
msgstr "Резервирование"
|
864 |
-
|
865 |
-
#: counter-options.php:537
|
866 |
-
#@ cpd
|
867 |
-
msgid "Entries per pass"
|
868 |
-
msgstr "Записей за один проход"
|
869 |
-
|
870 |
-
#: counter-options.php:540
|
871 |
-
#@ cpd
|
872 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
873 |
-
msgstr "Сколько записей сохранять за один проход? По умолчанию: 10000"
|
874 |
-
|
875 |
-
#: counter-options.php:545
|
876 |
-
#@ cpd
|
877 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
878 |
-
msgstr "Если ограничение памяти вашего PHP меньше 50 MB и вы получаете белую страницу или сообщения об ошибках, то попробуйте меньшее значение."
|
879 |
-
|
880 |
-
#: counter-options.php:643
|
881 |
-
#, php-format
|
882 |
-
#@ cpd
|
883 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
884 |
-
msgstr "Создать резервную копию таблицы счетчика %s в вашей папке wp-content (если она не только для чтения)"
|
885 |
-
|
886 |
-
#: counter-options.php:647
|
887 |
-
#@ cpd
|
888 |
-
msgid "Backup the database"
|
889 |
-
msgstr "Резервирование базы данных"
|
890 |
-
|
891 |
-
#: counter-options.php:674
|
892 |
-
#: counter-options.php:706
|
893 |
-
#@ cpd
|
894 |
-
msgid "Collect old data"
|
895 |
-
msgstr "Собрать старые данные"
|
896 |
-
|
897 |
-
#: counter-options.php:679
|
898 |
-
#, php-format
|
899 |
-
#@ cpd
|
900 |
-
msgid "Current size of your counter table %s is %s."
|
901 |
-
msgstr "Текущий размер вашей таблицы счетчика %s : %s."
|
902 |
-
|
903 |
-
#: counter-options.php:681
|
904 |
-
#@ cpd
|
905 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
906 |
-
msgstr "Вы можете собрать старые данные и очистить таблицу счетчика.<br/>Прочтения и посетители будут сохранены за каждый месяц, по стране и по записям.<br/>Клиенты и ссылающиеся сайты будут удалены."
|
907 |
-
|
908 |
-
#: counter-options.php:686
|
909 |
-
#, php-format
|
910 |
-
#@ cpd
|
911 |
-
msgid "Currently your collection contains data until %s."
|
912 |
-
msgstr "Сейчас ваша коллекция содержит данные до %s."
|
913 |
-
|
914 |
-
#: counter-options.php:690
|
915 |
-
#@ cpd
|
916 |
-
msgid "Normally new data will be added to the collection."
|
917 |
-
msgstr "Если все пройдет успешно, то новые данные будут добавлены в коллекцию."
|
918 |
-
|
919 |
-
#: counter-options.php:696
|
920 |
-
#@ cpd
|
921 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
922 |
-
msgstr "Удалить старую коллекцию и создать новую, которая содержит только данные, которые сейчас в таблице счетчика."
|
923 |
-
|
924 |
-
#: counter-options.php:697
|
925 |
-
#, php-format
|
926 |
-
#@ cpd
|
927 |
-
msgid "All collected data until %s will deleted."
|
928 |
-
msgstr "Все данные до %s будут удалены."
|
929 |
-
|
930 |
-
#: counter-options.php:702
|
931 |
-
#, php-format
|
932 |
-
#@ cpd
|
933 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
934 |
-
msgstr "Сохранить записи за последние %s полные месяца + текущий месяц в таблице счетчика."
|
935 |
-
|
936 |
-
#: counter-options.php:761
|
937 |
-
#@ cpd
|
938 |
-
msgid "ReActivation"
|
939 |
-
msgstr "Переактивация"
|
940 |
-
|
941 |
-
#: counter-options.php:764
|
942 |
-
#@ cpd
|
943 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
944 |
-
msgstr "Здесь вы можете запустить функции установки вручную.<br/>Точно также, как и деактивация и активация плагина."
|
945 |
-
|
946 |
-
#: counter-options.php:769
|
947 |
-
#@ cpd
|
948 |
-
msgid "ReActivate the plugin"
|
949 |
-
msgstr "Переактивировать плагин"
|
950 |
-
|
951 |
-
#: counter.php:165
|
952 |
-
#: counter.php:899
|
953 |
-
#@ cpd
|
954 |
-
msgid "Visitors"
|
955 |
-
msgstr "Посетителей"
|
956 |
-
|
957 |
-
#: counter.php:168
|
958 |
-
#: counter.php:169
|
959 |
-
#@ cpd
|
960 |
-
msgid "Most visited day"
|
961 |
-
msgstr "Самый посещаемый день"
|
962 |
-
|
963 |
-
#: counter.php:1220
|
964 |
#@ default
|
965 |
msgid "Title"
|
966 |
-
msgstr "Заголовок"
|
967 |
-
|
968 |
-
#: counter.php:1239
|
969 |
-
#@ cpd
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr "перетащите для сортировки"
|
972 |
-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: counter-options.php:46
|
23 |
#@ cpd
|
24 |
msgid "Options updated"
|
25 |
msgstr "Настройки сохранены"
|
26 |
|
27 |
+
#: counter-options.php:111
|
28 |
#, php-format
|
29 |
#@ cpd
|
30 |
msgid "Database cleaned. %s rows deleted."
|
31 |
msgstr "База данных очищена. %s строчек удалено."
|
32 |
|
33 |
+
#: counter-options.php:121
|
34 |
+
#: counter-options.php:496
|
35 |
#@ cpd
|
36 |
msgid "UNINSTALL Count per Day"
|
37 |
msgstr "УДАЛИТЬ \"Ежедневный счетчик\". "
|
38 |
|
39 |
+
#: counter-options.php:126
|
40 |
+
#: counter-options.php:128
|
41 |
+
#: counter-options.php:130
|
42 |
#, php-format
|
43 |
#@ cpd
|
44 |
msgid "Table %s deleted"
|
45 |
msgstr "Таблица %s удалена"
|
46 |
|
47 |
+
#: counter-options.php:132
|
48 |
#@ cpd
|
49 |
msgid "Options deleted"
|
50 |
msgstr "Настройки удалены"
|
51 |
|
52 |
+
#: counter-options.php:156
|
53 |
+
#: counter-options.php:481
|
54 |
#@ cpd
|
55 |
msgid "Uninstall"
|
56 |
msgstr "Деинсталяция"
|
57 |
|
58 |
+
#: counter-options.php:157
|
59 |
#@ cpd
|
60 |
msgid "Click here"
|
61 |
msgstr "Нажмите сюда"
|
62 |
|
63 |
+
#: counter-options.php:157
|
64 |
#@ cpd
|
65 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
msgstr "Для завершения деинсталяции и отключения \"Ежедневного счетчика\". "
|
67 |
|
68 |
+
#: counter-options.php:179
|
69 |
+
#@ cpd
|
70 |
+
msgid "Options"
|
71 |
+
msgstr "Настройки"
|
72 |
+
|
73 |
+
#: counter-options.php:190
|
74 |
#@ cpd
|
75 |
msgid "Online time"
|
76 |
msgstr "Время онлайн"
|
77 |
|
78 |
+
#: counter-options.php:191
|
79 |
#@ cpd
|
80 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
81 |
msgstr "Секунд для онлайн счетчика. Используется для \"Посетителей онлайн \" на \"Панели инструментов\"."
|
82 |
|
83 |
+
#: counter-options.php:194
|
84 |
#@ cpd
|
85 |
msgid "Logged on Users"
|
86 |
msgstr "Вошедших пользователей"
|
87 |
|
88 |
+
#: counter-options.php:196
|
89 |
#@ cpd
|
90 |
msgid "count too"
|
91 |
msgstr "также считать"
|
92 |
|
93 |
+
#: counter-options.php:208
|
94 |
#@ cpd
|
95 |
msgid "Auto counter"
|
96 |
msgstr "Автоматический счетчик"
|
97 |
|
98 |
+
#: counter-options.php:209
|
99 |
#@ cpd
|
100 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
101 |
msgstr "Считает автоматически отдельные публикации и страницы, никаких изменений в шаблон не потребуется. "
|
102 |
|
103 |
+
#: counter-options.php:212
|
104 |
#@ cpd
|
105 |
msgid "Bots to ignore"
|
106 |
msgstr "Игнорировать ботов"
|
107 |
|
108 |
+
#: counter-options.php:331
|
109 |
#@ cpd
|
110 |
msgid "Update options"
|
111 |
msgstr "Сохранить настройки"
|
112 |
|
113 |
+
#: counter-options.php:445
|
114 |
+
#: counter-options.php:454
|
115 |
#@ cpd
|
116 |
msgid "Clean the database"
|
117 |
msgstr "Очистить базу данных"
|
118 |
|
119 |
+
#: counter-options.php:448
|
120 |
#@ cpd
|
121 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
122 |
msgstr "Вы можете очистить счетчик удалив \"Спам \". <br /> Если вы добавите новых ботов поверх \"Спама \", вы сохраните базу данных. <br /> Здесь вы можете запустить бот-фильтр снова и удалить посещения ботов."
|
123 |
|
124 |
+
#: counter-options.php:484
|
125 |
#@ cpd
|
126 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
127 |
msgstr "Если \"Ежедневный счетчик\" активирован, таблицы в базах данных будут сохранены :)."
|
128 |
|
129 |
+
#: counter-options.php:485
|
130 |
#@ cpd
|
131 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
132 |
msgstr "Тут вы можете удалить таблицы и отключить \"Ежедневный счетчик\"."
|
133 |
|
134 |
+
#: counter-options.php:488
|
135 |
#@ cpd
|
136 |
msgid "WARNING"
|
137 |
msgstr "ВНИМАНИЕ"
|
138 |
|
139 |
+
#: counter-options.php:489
|
140 |
#@ cpd
|
141 |
msgid "These tables (with ALL counter data) will be deleted."
|
142 |
msgstr "Эти таблицы (со ВСЕМИ данными счетчика), будут удалены."
|
143 |
|
144 |
+
#: counter-options.php:491
|
145 |
#@ cpd
|
146 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
147 |
msgstr "Когда \"Ежедневный счетчик\" переинсталлирован, счетчик начинается с 0."
|
148 |
|
149 |
+
#: counter-options.php:495
|
|
|
150 |
#@ cpd
|
151 |
msgid "Yes"
|
152 |
msgstr "Да"
|
153 |
|
154 |
+
#: counter-options.php:496
|
155 |
#@ cpd
|
156 |
msgid "You are sure to disable Count per Day and delete all data?"
|
157 |
msgstr "Вы уверены, что хотите отключить \"Ежедневный счетчик\" и удалить все данные?"
|
158 |
|
159 |
+
#: counter.php:1786
|
160 |
+
#: counter.php:2147
|
161 |
#@ cpd
|
162 |
msgid "Statistics"
|
163 |
msgstr "Статистика"
|
164 |
|
165 |
+
#: counter.php:529
|
166 |
+
#: counter.php:534
|
167 |
+
#: counter.php:1604
|
168 |
+
#: counter.php:1750
|
169 |
+
#: counter.php:2224
|
170 |
#@ cpd
|
171 |
msgid "Total visitors"
|
172 |
msgstr "Всего посетителей"
|
173 |
|
174 |
+
#: counter.php:530
|
175 |
+
#: counter.php:2230
|
176 |
#@ cpd
|
177 |
msgid "Visitors currently online"
|
178 |
msgstr "Посетителей сейчас на сайте"
|
179 |
|
180 |
+
#: counter.php:531
|
181 |
+
#: counter.php:2225
|
182 |
#@ cpd
|
183 |
msgid "Visitors today"
|
184 |
msgstr "Посетителей сегодня"
|
185 |
|
186 |
+
#: counter.php:532
|
187 |
+
#: counter.php:2226
|
188 |
#@ cpd
|
189 |
msgid "Visitors yesterday"
|
190 |
msgstr "Посетителей вчера"
|
191 |
|
192 |
+
#: counter.php:533
|
193 |
+
#: counter.php:2227
|
194 |
#@ cpd
|
195 |
msgid "Visitors last week"
|
196 |
msgstr "Посетителей на прошлой неделе"
|
197 |
|
198 |
+
#: counter.php:536
|
199 |
+
#: counter.php:2231
|
|
|
200 |
#@ cpd
|
201 |
msgid "Counter starts on"
|
202 |
msgstr "Счетчик начинается с"
|
203 |
|
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 |
#@ cpd
|
212 |
msgid "Visitors per day"
|
213 |
msgstr "Посетителей в день"
|
214 |
|
215 |
+
#: counter.php:1752
|
216 |
+
#: counter.php:2228
|
217 |
#@ cpd
|
218 |
msgid "Visitors per month"
|
219 |
msgstr "Посетителей в месяц"
|
220 |
|
221 |
+
#: counter-options.php:236
|
222 |
+
#: counter.php:1754
|
223 |
#@ cpd
|
224 |
msgid "Visitors per post"
|
225 |
msgstr "Посетителей записи"
|
226 |
|
227 |
+
#: counter-options.php:117
|
228 |
#@ cpd
|
229 |
msgid "Counter reseted."
|
230 |
+
msgstr "Счетчик обнулен"
|
231 |
|
232 |
+
#: counter-options.php:233
|
233 |
#@ default
|
234 |
msgid "Dashboard"
|
235 |
msgstr "Консоль"
|
236 |
|
237 |
+
#: counter-options.php:237
|
238 |
+
#: counter-options.php:241
|
239 |
#@ cpd
|
240 |
msgid "How many posts do you want to see on dashboard page?"
|
241 |
msgstr "Сколько записей вы хотите видеть на странице консоли?"
|
242 |
|
243 |
+
#: counter-options.php:240
|
244 |
#@ cpd
|
245 |
msgid "Latest Counts - Posts"
|
246 |
msgstr "Последние счетчики - Записи"
|
247 |
|
248 |
+
#: counter-options.php:244
|
249 |
#@ cpd
|
250 |
msgid "Latest Counts - Days"
|
251 |
msgstr "Последние счетчики - Дни"
|
252 |
|
253 |
+
#: counter-options.php:245
|
254 |
+
#: counter-options.php:249
|
255 |
+
#: counter-options.php:275
|
256 |
#@ cpd
|
257 |
msgid "How many days do you want look back?"
|
258 |
msgstr "Насколько дней назад вы хотите видеть статистику?"
|
259 |
|
260 |
+
#: counter-options.php:248
|
261 |
#@ cpd
|
262 |
msgid "Chart - Days"
|
263 |
msgstr "Таблица - Дни"
|
264 |
|
265 |
+
#: counter-options.php:252
|
266 |
#@ cpd
|
267 |
msgid "Chart - Height"
|
268 |
msgstr "Таблица - Высота"
|
269 |
|
270 |
+
#: counter-options.php:253
|
271 |
#@ cpd
|
272 |
msgid "Height of the biggest bar"
|
273 |
msgstr "Высота самого большого столбика"
|
274 |
|
275 |
+
#: counter-options.php:290
|
276 |
#@ cpd
|
277 |
msgid "Show in lists"
|
278 |
msgstr "Показать в списках"
|
279 |
|
280 |
+
#: counter-options.php:291
|
281 |
#@ cpd
|
282 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
283 |
msgstr "Показать \"Прочтения сообщений\" в новой колонке в управлении записями"
|
284 |
|
285 |
+
#: counter-options.php:463
|
286 |
+
#: counter-options.php:472
|
287 |
#@ cpd
|
288 |
msgid "Reset the counter"
|
289 |
msgstr "Обнулить счетчик"
|
290 |
|
291 |
+
#: counter-options.php:466
|
292 |
#@ cpd
|
293 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
294 |
msgstr "Вы можете обнулить счетчик путем очистки таблицы. ВСЁ В 0!<br />Сохраните резервную копию если вам необходимы текущие данные"
|
295 |
|
296 |
+
#: counter.php:845
|
297 |
+
#@ cpd
|
298 |
+
msgid "no reads at this time"
|
299 |
+
msgstr "нет прочтений к этому времени"
|
300 |
+
|
301 |
+
#: counter.php:819
|
302 |
+
#@ cpd
|
303 |
+
msgid "days"
|
304 |
+
msgstr "дней"
|
305 |
+
|
306 |
+
#: counter.php:1257
|
307 |
#, php-format
|
308 |
#@ cpd
|
309 |
msgid "The %s most visited posts in last %s days:"
|
310 |
msgstr "Самое %s посещаемые записи за последние %s дней:"
|
311 |
|
312 |
+
#: counter.php:1591
|
|
|
|
|
313 |
#@ default
|
314 |
msgid "Settings"
|
315 |
msgstr "Настройки"
|
316 |
|
317 |
+
#: counter.php:635
|
318 |
+
#: counter.php:1766
|
319 |
#@ cpd
|
320 |
msgid "Reads per day"
|
321 |
msgstr "Прочтений в день"
|
322 |
|
323 |
+
#: counter-options.php:225
|
324 |
+
#: counter.php:528
|
325 |
+
#: counter.php:1661
|
|
|
326 |
#@ cpd
|
327 |
msgid "Reads"
|
328 |
msgstr "Прочтений"
|
329 |
|
330 |
+
#: counter.php:2218
|
331 |
#@ cpd
|
332 |
msgid "This post"
|
333 |
msgstr "Эта запись"
|
334 |
|
335 |
+
#: counter-options.php:57
|
336 |
#, php-format
|
337 |
#@ cpd
|
338 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
339 |
msgstr "Страны обновлены. <b>%s</b> записей в %s осталось без стран "
|
340 |
|
341 |
+
#: counter-options.php:62
|
342 |
#@ cpd
|
343 |
msgid "update next"
|
344 |
msgstr "обновить следующий"
|
345 |
|
346 |
+
#: counter-options.php:104
|
347 |
#, php-format
|
348 |
#@ cpd
|
349 |
msgid "Mass Bots cleaned. %s counts deleted."
|
350 |
msgstr "Таблица ботов очищена. %s записей удалено"
|
351 |
|
352 |
+
#: counter-options.php:197
|
353 |
#@ cpd
|
354 |
msgid "until User Level"
|
355 |
msgstr "до уровня пользователя"
|
356 |
|
357 |
+
#: counter-options.php:216
|
358 |
#@ cpd
|
359 |
msgid "Anonymous IP"
|
360 |
msgstr "Анонимный IP"
|
361 |
|
362 |
+
#: counter-options.php:261
|
363 |
#@ cpd
|
364 |
msgid "Countries"
|
365 |
msgstr "Страны"
|
366 |
|
367 |
+
#: counter-options.php:262
|
368 |
#@ cpd
|
369 |
msgid "How many countries do you want to see on dashboard page?"
|
370 |
msgstr "Сколько стран вы хотите видеть в списке?"
|
371 |
|
372 |
+
#: counter-options.php:299
|
373 |
#@ cpd
|
374 |
msgid "Start Values"
|
375 |
msgstr "Начальные данные"
|
376 |
|
377 |
+
#: counter-options.php:303
|
378 |
#@ cpd
|
379 |
msgid "Here you can change the date of first count and add a start count."
|
380 |
msgstr "Здесь вы можете поменять дату начала отсчета и добавить начальный счетчик"
|
381 |
|
382 |
+
#: counter-options.php:307
|
383 |
#@ cpd
|
384 |
msgid "Start date"
|
385 |
msgstr "Дата начала"
|
386 |
|
387 |
+
#: counter-options.php:308
|
388 |
#@ cpd
|
389 |
msgid "Your old Counter starts at?"
|
390 |
msgstr "Ваш старый Счетчик начинался с"
|
391 |
|
392 |
+
#: counter-options.php:311
|
393 |
+
#: counter-options.php:315
|
394 |
#@ cpd
|
395 |
msgid "Start count"
|
396 |
msgstr "Начало отсчета"
|
397 |
|
398 |
+
#: counter-options.php:312
|
399 |
#@ cpd
|
400 |
msgid "Add this value to \"Total visitors\"."
|
401 |
msgstr "Добавить значение к \"Всего посетителей\"."
|
402 |
|
403 |
+
#: counter-options.php:340
|
404 |
#@ cpd
|
405 |
msgid "GeoIP - Countries"
|
406 |
msgstr "GeoIP - Страны"
|
407 |
|
408 |
+
#: counter-options.php:349
|
409 |
#@ cpd
|
410 |
msgid "Update old counter data"
|
411 |
msgstr "Обновить данные старого счетчика"
|
412 |
|
413 |
+
#: counter-options.php:362
|
414 |
#@ cpd
|
415 |
msgid "Update GeoIP database"
|
416 |
msgstr "Обновить базу данных GeoIP"
|
417 |
|
418 |
+
#: counter-options.php:365
|
419 |
#@ cpd
|
420 |
msgid "Download a new version of GeoIP.dat file."
|
421 |
msgstr "Скачать новую версию файла GeoIP.dat."
|
422 |
|
423 |
+
#: counter-options.php:371
|
424 |
#@ cpd
|
425 |
msgid "More informations about GeoIP"
|
426 |
msgstr "Больше информации про GeoIP"
|
427 |
|
428 |
+
#: counter-options.php:386
|
429 |
+
#: massbots.php:33
|
430 |
#@ cpd
|
431 |
msgid "Mass Bots"
|
432 |
msgstr "Вероятные боты"
|
433 |
|
434 |
+
#: counter-options.php:390
|
435 |
#, php-format
|
436 |
#@ cpd
|
437 |
msgid "Show all IPs with more than %s page views per day"
|
438 |
msgstr "Показать все IP с более чем %s просмотров в сутки"
|
439 |
|
440 |
+
#: counter-options.php:391
|
441 |
+
#: notes.php:76
|
442 |
+
#: userperspan.php:43
|
443 |
#@ cpd
|
444 |
msgid "show"
|
445 |
msgstr "показать"
|
446 |
|
447 |
+
#: counter-options.php:399
|
448 |
#@ cpd
|
449 |
msgid "IP"
|
450 |
msgstr "IP"
|
451 |
|
452 |
+
#: counter-options.php:400
|
453 |
+
#: notes.php:80
|
454 |
#@ cpd
|
455 |
#@ default
|
456 |
msgid "Date"
|
457 |
msgstr "Дата"
|
458 |
|
459 |
+
#: counter-options.php:401
|
460 |
#@ cpd
|
461 |
msgid "Client"
|
462 |
msgstr "Клиент"
|
463 |
|
464 |
+
#: counter-options.php:402
|
465 |
#@ cpd
|
466 |
msgid "Views"
|
467 |
msgstr "Просмотров"
|
468 |
|
469 |
+
#: counter-options.php:413
|
470 |
+
#: counter-options.php:435
|
471 |
#, php-format
|
472 |
#@ cpd
|
473 |
msgid "Delete these %s counts"
|
474 |
msgstr "Удалить эти %s счетчиков"
|
475 |
|
476 |
+
#: counter-options.php:504
|
477 |
#@ cpd
|
478 |
msgid "Support"
|
479 |
msgstr "Поддержка"
|
480 |
|
481 |
+
#: counter.php:1716
|
482 |
#, php-format
|
483 |
#@ cpd
|
484 |
msgid "Time for Count per Day: <code>%s</code>."
|
485 |
msgstr "Время для Count per Day: <code>%s</code>"
|
486 |
|
487 |
+
#: counter.php:1717
|
488 |
#@ cpd
|
489 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
490 |
msgstr "Ошибка? Проблема? Вопрос? Совет? Хвала?"
|
491 |
|
492 |
+
#: counter.php:1718
|
493 |
#, php-format
|
494 |
#@ cpd
|
495 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
496 |
msgstr "Напишите комментарий на <a href=\"%s\">странице плагина</a>"
|
497 |
|
498 |
+
#: counter.php:524
|
499 |
+
#: counter.php:2219
|
500 |
#@ cpd
|
501 |
msgid "Total reads"
|
502 |
msgstr "Всего прочтений"
|
503 |
|
504 |
+
#: counter.php:525
|
505 |
+
#: counter.php:2220
|
506 |
#@ cpd
|
507 |
msgid "Reads today"
|
508 |
msgstr "Прочтений сегодня"
|
509 |
|
510 |
+
#: counter.php:526
|
511 |
+
#: counter.php:2221
|
512 |
#@ cpd
|
513 |
msgid "Reads yesterday"
|
514 |
msgstr "Прочтений вчера"
|
515 |
|
516 |
+
#: counter.php:822
|
517 |
+
#: counter.php:1376
|
518 |
+
#: notes.php:47
|
519 |
+
#: notes.php:81
|
520 |
#@ cpd
|
521 |
msgid "Notes"
|
522 |
msgstr "Заметки"
|
523 |
|
524 |
+
#: counter.php:1374
|
525 |
#@ default
|
526 |
msgid "Show"
|
527 |
msgstr "Показать"
|
528 |
|
529 |
+
#: counter.php:1421
|
530 |
#@ cpd
|
531 |
msgid "Other"
|
532 |
msgstr "Другие"
|
533 |
|
534 |
+
#: counter.php:1505
|
535 |
#@ default
|
536 |
msgid "Edit Post"
|
537 |
msgstr "Редактировать запись"
|
538 |
|
539 |
+
#: counter.php:1520
|
540 |
+
#: massbots.php:50
|
541 |
#: userperspan.php:63
|
542 |
#@ default
|
543 |
msgid "Front page displays"
|
544 |
msgstr "Отображений главной страницы"
|
545 |
|
546 |
+
#: counter-options.php:266
|
547 |
+
#: counter.php:1760
|
548 |
#@ cpd
|
549 |
msgid "Browsers"
|
550 |
msgstr "Браузеры"
|
551 |
|
552 |
+
#: counter.php:1755
|
553 |
#@ cpd
|
554 |
msgid "Latest Counts"
|
555 |
msgstr "Недавние подсчеты"
|
556 |
|
557 |
+
#: counter.php:1757
|
558 |
#@ default
|
559 |
msgid "Plugin"
|
560 |
msgstr "Плагин"
|
561 |
|
562 |
+
#: counter.php:1770
|
563 |
#@ cpd
|
564 |
msgid "Reads per Country"
|
565 |
msgstr "Прочтений по странам"
|
566 |
|
567 |
+
#: counter.php:900
|
568 |
+
#: counter.php:1856
|
569 |
#@ cpd
|
570 |
msgid "Map"
|
571 |
msgstr "Карта"
|
572 |
|
573 |
+
#: geoip/geoip.php:108
|
574 |
#@ cpd
|
575 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
576 |
msgstr "Приносим извинения, необходимые функции (zlib) не установлена или не включена в php.ini."
|
577 |
|
578 |
+
#: geoip/geoip.php:132
|
579 |
#@ cpd
|
580 |
msgid "New GeoIP database installed."
|
581 |
msgstr "Новая база данных GeoIP установлена."
|
582 |
|
583 |
+
#: geoip/geoip.php:134
|
584 |
#@ cpd
|
585 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
586 |
msgstr "Приносим извинения, произошла ошибка. Попробуйте снова или проверьте что права доступа к папке \"geoip\" - 777"
|
587 |
|
588 |
+
#: notes.php:81
|
589 |
+
#@ cpd
|
590 |
+
msgid "(1 per day)"
|
591 |
+
msgstr "(1 на сутки)"
|
592 |
+
|
593 |
+
#: notes.php:82
|
594 |
#@ default
|
595 |
msgid "Action"
|
596 |
msgstr "Действие"
|
597 |
|
598 |
+
#: notes.php:87
|
599 |
#@ cpd
|
600 |
msgid "add"
|
601 |
msgstr "добавить"
|
602 |
|
603 |
+
#: notes.php:102
|
604 |
#@ cpd
|
605 |
msgid "save"
|
606 |
msgstr "сохранить"
|
607 |
|
608 |
+
#: notes.php:103
|
609 |
#@ cpd
|
610 |
msgid "delete"
|
611 |
msgstr "удалить"
|
612 |
|
613 |
+
#: notes.php:114
|
614 |
#@ cpd
|
615 |
msgid "edit"
|
616 |
msgstr "редактировать"
|
617 |
|
618 |
+
#: counter-options.php:220
|
619 |
#@ cpd
|
620 |
msgid "Cache"
|
621 |
msgstr "Кэш"
|
622 |
|
623 |
+
#: counter-options.php:221
|
624 |
#@ cpd
|
625 |
msgid "I use a cache plugin. Count these visits with ajax."
|
626 |
msgstr "Я использую кэшированый плагин. Считать эти посещения при помощи ajax"
|
627 |
|
628 |
+
#: counter-options.php:267
|
629 |
#@ cpd
|
630 |
msgid "Substring of the user agent, separated by comma"
|
631 |
msgstr "Подстрока агента пользователя разделенный запятой"
|
632 |
|
633 |
+
#: counter-options.php:324
|
634 |
#@ cpd
|
635 |
msgid "Debug mode"
|
636 |
msgstr "Режим отладки"
|
637 |
|
638 |
+
#: counter-options.php:326
|
639 |
#@ cpd
|
640 |
msgid "Show debug informations at the bottom of all pages."
|
641 |
msgstr "Добавить отладочную информацию внизу каждой страницы."
|
642 |
|
643 |
+
#: counter.php:1771
|
644 |
#@ cpd
|
645 |
msgid "Visitors per Country"
|
646 |
msgstr "Посетителей по странам"
|
647 |
|
648 |
+
#: userperspan.php:37
|
649 |
#@ cpd
|
650 |
msgid "Start"
|
651 |
msgstr "Начало"
|
652 |
|
653 |
+
#: userperspan.php:39
|
654 |
#@ cpd
|
655 |
msgid "End"
|
656 |
msgstr "Конец"
|
657 |
|
658 |
+
#: userperspan.php:41
|
659 |
#@ cpd
|
660 |
msgid "PostID"
|
661 |
msgstr "ID сообщения"
|
662 |
|
663 |
+
#: counter-options.php:316
|
664 |
#@ cpd
|
665 |
msgid "Add this value to \"Total reads\"."
|
666 |
msgstr "Добавить значение к \"Всего прочтений\"."
|
667 |
|
668 |
+
#: counter-options.php:352
|
669 |
#@ cpd
|
670 |
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!"
|
671 |
msgstr "Вы можете получить данные стран для всех записей проверив IP адреса заново. Может занять некоторое время!"
|
672 |
|
673 |
+
#: userperspan.php:49
|
674 |
#@ cpd
|
675 |
msgid "no data found"
|
676 |
msgstr "ничего не найдено"
|
677 |
|
678 |
+
#: counter-options.php:186
|
679 |
#@ cpd
|
680 |
msgid "Counter"
|
681 |
msgstr "Счетчик"
|
682 |
|
683 |
+
#: counter-options.php:224
|
684 |
#@ cpd
|
685 |
msgid "Clients and referrers"
|
686 |
msgstr "Клиенты и ссылающиеся сайты"
|
687 |
|
688 |
+
#: counter-options.php:225
|
689 |
#@ cpd
|
690 |
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."
|
691 |
msgstr "Сохранить и показать клиентов и ссылающиеся сайты.<br />Требует много дискового пространства в базе данных, но предоставляет более детальную информацию о ваших посетителях."
|
692 |
|
693 |
+
#: counter-options.php:278
|
694 |
#@ cpd
|
695 |
msgid "Local URLs"
|
696 |
msgstr "Локальные URL"
|
697 |
|
698 |
+
#: counter-options.php:279
|
699 |
#@ cpd
|
700 |
msgid "Show local referrers too."
|
701 |
msgstr "Показывать локальные переходы тоже."
|
702 |
|
703 |
+
#: counter-options.php:287
|
704 |
#@ default
|
705 |
msgid "Posts"
|
706 |
msgstr "Записи"
|
707 |
|
708 |
+
#: counter-options.php:287
|
709 |
#@ default
|
710 |
msgid "Pages"
|
711 |
msgstr "Страницы"
|
712 |
|
713 |
+
#: counter.php:527
|
714 |
+
#: counter.php:2222
|
715 |
#@ cpd
|
716 |
msgid "Reads last week"
|
717 |
msgstr "Прочтений на прошлой неделе"
|
718 |
|
719 |
+
#: counter.php:1514
|
720 |
#@ default
|
721 |
msgid "Category"
|
722 |
msgstr "Категория"
|
723 |
|
724 |
+
#: counter.php:1517
|
725 |
#@ default
|
726 |
msgid "Tag"
|
727 |
msgstr "Тег"
|
728 |
|
729 |
+
#: counter.php:1719
|
730 |
#@ default
|
731 |
msgid "License"
|
732 |
msgstr "Лицензия"
|
733 |
|
734 |
+
#: counter.php:1753
|
735 |
+
#: counter.php:2223
|
736 |
#@ cpd
|
737 |
msgid "Reads per month"
|
738 |
msgstr "Прочтений за месяц"
|
739 |
|
740 |
+
#: counter.php:1761
|
741 |
#@ cpd
|
742 |
msgid "Referrer"
|
743 |
msgstr "Ссылающийся сайт"
|
744 |
|
745 |
+
#: counter-options.php:256
|
746 |
+
#@ cpd
|
747 |
+
msgid "Old Charts"
|
748 |
+
msgstr "Старые таблицы"
|
749 |
+
|
750 |
+
#: counter-options.php:257
|
751 |
+
#@ cpd
|
752 |
+
msgid "Show old bar charts."
|
753 |
+
msgstr "Отображать в таблицу столбиками"
|
754 |
+
|
755 |
+
#: counter-options.php:270
|
756 |
#@ cpd
|
757 |
msgid "Referrers - Entries"
|
758 |
msgstr "Ссылающиеся сайты - Вхождения"
|
759 |
|
760 |
+
#: counter-options.php:271
|
761 |
#@ cpd
|
762 |
msgid "How many referrers do you want to see on dashboard page?"
|
763 |
msgstr "Сколько ссылающихся сайтов вы хотите увидеть на странице статистики?"
|
764 |
|
765 |
+
#: counter-options.php:274
|
766 |
#@ cpd
|
767 |
msgid "Referrers - Days"
|
768 |
msgstr "Ссылающиеся сайты - Дни"
|
769 |
|
770 |
+
#: counter.php:1449
|
771 |
#, php-format
|
772 |
#@ cpd
|
773 |
msgid "The %s referrers in last %s days:"
|
774 |
msgstr "%s ссылающихся сайтов за последние %s дней:"
|
775 |
|
776 |
+
#: counter.php:1751
|
777 |
#@ cpd
|
778 |
msgid "Visitors online"
|
779 |
msgstr "Посетителей на сайте"
|
780 |
|
781 |
+
#: counter.php:2242
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
782 |
#@ default
|
783 |
msgid "Title"
|
784 |
+
msgstr "Заголовок"
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-sv_SE.mo
CHANGED
Binary file
|
locale/cpd-sv_SE.po
CHANGED
@@ -13,960 +13,772 @@ msgstr ""
|
|
13 |
"X-Poedit-Language: Swedish\n"
|
14 |
"X-Poedit-Country: SWEDEN\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
|
23 |
-
#: counter.php:
|
24 |
-
|
25 |
msgid "Total reads"
|
26 |
msgstr "Antal läsningar totalt"
|
27 |
|
28 |
-
|
29 |
-
#: counter.php:
|
30 |
-
|
31 |
msgid "Reads today"
|
32 |
msgstr "Läsningar idag"
|
33 |
|
34 |
-
|
35 |
-
#: counter.php:
|
36 |
-
|
37 |
msgid "Reads yesterday"
|
38 |
msgstr "Läsningar igår"
|
39 |
|
40 |
-
|
41 |
-
#: counter.php:
|
42 |
-
|
43 |
msgid "Reads last week"
|
44 |
msgstr "Läsningar förra veckan"
|
45 |
|
46 |
-
|
47 |
-
#: counter
|
48 |
-
#: counter.php:
|
49 |
-
#: counter.php:
|
50 |
-
#@ cpd
|
51 |
msgid "Reads"
|
52 |
msgstr "Visningar"
|
53 |
|
54 |
-
|
55 |
-
#: counter.php:
|
56 |
-
#: counter.php:
|
57 |
-
#: counter.php:
|
58 |
-
|
|
|
59 |
msgid "Total visitors"
|
60 |
msgstr "Antal besökare totalt"
|
61 |
|
62 |
-
|
63 |
-
#: counter.php:
|
64 |
-
|
65 |
msgid "Visitors currently online"
|
66 |
msgstr "Besökare online nu"
|
67 |
|
68 |
-
|
69 |
-
#: counter.php:
|
70 |
-
|
71 |
msgid "Visitors today"
|
72 |
msgstr "Besökare idag"
|
73 |
|
74 |
-
|
75 |
-
#: counter.php:
|
76 |
-
|
77 |
msgid "Visitors yesterday"
|
78 |
msgstr "Besökare igår"
|
79 |
|
80 |
-
|
81 |
-
#: counter.php:
|
82 |
-
|
83 |
msgid "Visitors last week"
|
84 |
msgstr "Besökare förra veckan"
|
85 |
|
86 |
-
|
87 |
-
#: counter.php:
|
88 |
-
#: counter.php:
|
89 |
-
#: counter.php:
|
90 |
-
#: counter.php:
|
91 |
-
#:
|
92 |
-
|
|
|
93 |
msgid "Visitors per day"
|
94 |
msgstr "Besök per dag"
|
95 |
|
96 |
-
|
97 |
-
#: counter.php:
|
98 |
-
#: counter.php:
|
99 |
-
#@ cpd
|
100 |
msgid "Counter starts on"
|
101 |
msgstr "Räknaren startar den"
|
102 |
|
103 |
-
|
104 |
-
|
|
|
105 |
msgid "Reads per day"
|
106 |
msgstr "Läsningar per dag"
|
107 |
|
108 |
-
|
109 |
-
#:
|
110 |
-
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
msgid "Notes"
|
113 |
msgstr "Anteckningar"
|
114 |
|
115 |
-
|
116 |
-
#: counter.php:
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Map"
|
119 |
msgstr "Karta"
|
120 |
|
121 |
-
|
|
|
122 |
#, php-format
|
123 |
-
#@ cpd
|
124 |
msgid "The %s most visited posts in last %s days:"
|
125 |
msgstr "De %s mest visade inläggen de senaste %s dagarna:"
|
126 |
|
127 |
-
|
128 |
-
|
129 |
msgid "Show"
|
130 |
msgstr "Visa"
|
131 |
|
132 |
-
|
133 |
-
|
134 |
msgid "Other"
|
135 |
msgstr "Övriga"
|
136 |
|
137 |
-
|
|
|
138 |
#, php-format
|
139 |
-
#@ cpd
|
140 |
msgid "The %s referrers in last %s days:"
|
141 |
msgstr "De %s senaste hänvisningarna de senaste %s dagarna:"
|
142 |
|
143 |
-
|
144 |
-
|
145 |
msgid "Edit Post"
|
146 |
msgstr "Redigera inlägg"
|
147 |
|
148 |
-
|
149 |
-
|
150 |
msgid "Category"
|
151 |
msgstr "Kategori"
|
152 |
|
153 |
-
|
154 |
-
|
155 |
msgid "Tag"
|
156 |
msgstr "Tag"
|
157 |
|
158 |
-
|
159 |
-
#:
|
|
|
160 |
#: userperspan.php:63
|
161 |
-
#@ default
|
162 |
msgid "Front page displays"
|
163 |
msgstr "Visningar av framsidan"
|
164 |
|
165 |
-
|
166 |
-
#: counter
|
167 |
-
#: counter-options.php:565
|
168 |
-
#@ default
|
169 |
msgid "Settings"
|
170 |
msgstr "Inställningar"
|
171 |
|
172 |
-
|
|
|
173 |
#, php-format
|
174 |
-
#@ cpd
|
175 |
msgid "Time for Count per Day: <code>%s</code>."
|
176 |
msgstr "Tid för Count per Day: <code>%s</code>."
|
177 |
|
178 |
-
|
179 |
-
|
180 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
181 |
msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
|
182 |
|
183 |
-
|
|
|
184 |
#, php-format
|
185 |
-
#@ cpd
|
186 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
187 |
msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
|
188 |
|
189 |
-
|
190 |
-
|
191 |
msgid "License"
|
192 |
msgstr "Licens"
|
193 |
|
194 |
-
|
195 |
-
|
196 |
msgid "Visitors online"
|
197 |
msgstr "Besökare online"
|
198 |
|
199 |
-
|
200 |
-
#: counter.php:
|
201 |
-
|
202 |
msgid "Visitors per month"
|
203 |
msgstr "Besökare per månad"
|
204 |
|
205 |
-
|
206 |
-
#: counter.php:
|
207 |
-
|
208 |
msgid "Reads per month"
|
209 |
msgstr "Läsningar per månad"
|
210 |
|
211 |
-
|
212 |
-
#: counter
|
213 |
-
|
214 |
msgid "Visitors per post"
|
215 |
msgstr "Besökare per inlägg"
|
216 |
|
217 |
-
|
218 |
-
|
219 |
msgid "Latest Counts"
|
220 |
msgstr "Senaste besöken"
|
221 |
|
222 |
-
|
223 |
-
|
224 |
msgid "Plugin"
|
225 |
msgstr "Plugin"
|
226 |
|
227 |
-
|
228 |
-
#: counter
|
229 |
-
|
230 |
msgid "Browsers"
|
231 |
msgstr "Webbläsare"
|
232 |
|
233 |
-
|
234 |
-
|
235 |
msgid "Referrer"
|
236 |
msgstr "Hänvisare"
|
237 |
|
238 |
-
|
239 |
-
|
240 |
msgid "Reads per Country"
|
241 |
msgstr "Visningar per land"
|
242 |
|
243 |
-
|
244 |
-
|
245 |
msgid "Visitors per Country"
|
246 |
msgstr "Besökare per land"
|
247 |
|
248 |
-
|
249 |
-
#: counter.php:
|
250 |
-
|
251 |
msgid "Statistics"
|
252 |
msgstr "Statistik"
|
253 |
|
254 |
-
|
255 |
-
|
256 |
msgid "This post"
|
257 |
msgstr "Det här inlägget"
|
258 |
|
259 |
-
|
260 |
-
|
261 |
msgid "Title"
|
262 |
msgstr "Titel"
|
263 |
|
264 |
-
|
265 |
-
#: notes.php:
|
266 |
-
#: userperspan.php:
|
267 |
-
|
268 |
msgid "show"
|
269 |
msgstr "visa"
|
270 |
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
msgid "Date"
|
276 |
msgstr "Datum"
|
277 |
|
278 |
-
|
279 |
-
|
|
|
|
|
|
|
|
|
|
|
280 |
msgid "Action"
|
281 |
msgstr "Åtgärd"
|
282 |
|
283 |
-
|
284 |
-
|
285 |
msgid "add"
|
286 |
msgstr "lägg till"
|
287 |
|
288 |
-
|
289 |
-
|
290 |
msgid "save"
|
291 |
msgstr "spara"
|
292 |
|
293 |
-
|
294 |
-
|
295 |
msgid "delete"
|
296 |
msgstr "ta bort"
|
297 |
|
298 |
-
|
299 |
-
|
300 |
msgid "edit"
|
301 |
msgstr "redigera"
|
302 |
|
303 |
-
|
304 |
-
#: massbots.php:
|
305 |
-
|
306 |
msgid "Mass Bots"
|
307 |
msgstr "Massbotar"
|
308 |
|
309 |
-
|
310 |
-
|
311 |
msgid "Start"
|
312 |
msgstr "Start"
|
313 |
|
314 |
-
|
315 |
-
|
316 |
msgid "End"
|
317 |
msgstr "Slut"
|
318 |
|
319 |
-
|
320 |
-
|
321 |
msgid "PostID"
|
322 |
msgstr "PostID"
|
323 |
|
324 |
-
|
325 |
-
|
326 |
msgid "no data found"
|
327 |
msgstr "ingen information hittades"
|
328 |
|
329 |
-
|
330 |
-
|
331 |
msgid "Options updated"
|
332 |
msgstr "Inställningarna är uppdaterade"
|
333 |
|
334 |
-
|
|
|
335 |
#, php-format
|
336 |
-
#@ cpd
|
337 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
338 |
msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
|
339 |
|
340 |
-
|
341 |
-
|
342 |
msgid "update next"
|
343 |
msgstr "uppdatera nästa"
|
344 |
|
345 |
-
|
|
|
346 |
#, php-format
|
347 |
-
#@ cpd
|
348 |
msgid "Mass Bots cleaned. %s counts deleted."
|
349 |
msgstr "Massbotar rensades. %s stycken togs bort."
|
350 |
|
351 |
-
|
|
|
352 |
#, php-format
|
353 |
-
#@ cpd
|
354 |
msgid "Database cleaned. %s rows deleted."
|
355 |
msgstr "Databasen städades. %s rader togs bort."
|
356 |
|
357 |
-
|
358 |
-
|
359 |
msgid "Counter reseted."
|
360 |
msgstr "Räknaren återställdes."
|
361 |
|
362 |
-
|
363 |
-
#: counter-options.php:
|
364 |
-
|
365 |
msgid "UNINSTALL Count per Day"
|
366 |
msgstr "AVINSTALLERA Count per Day"
|
367 |
|
368 |
-
|
369 |
-
#: counter-options.php:
|
370 |
-
#: counter-options.php:
|
|
|
371 |
#, php-format
|
372 |
-
#@ cpd
|
373 |
msgid "Table %s deleted"
|
374 |
msgstr "Tabellen %s raderades"
|
375 |
|
376 |
-
|
377 |
-
|
378 |
msgid "Options deleted"
|
379 |
msgstr "Inställningarna togs bort"
|
380 |
|
381 |
-
|
382 |
-
#: counter-options.php:
|
383 |
-
|
384 |
msgid "Uninstall"
|
385 |
msgstr "Avinstallera"
|
386 |
|
387 |
-
|
388 |
-
|
389 |
msgid "Click here"
|
390 |
msgstr "Klicka här"
|
391 |
|
392 |
-
|
393 |
-
|
394 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
395 |
msgstr "för att avinstallera och avaktivera \"Count per Day\"."
|
396 |
|
397 |
-
|
398 |
-
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid "Counter"
|
400 |
msgstr "Räknare"
|
401 |
|
402 |
-
|
403 |
-
|
404 |
msgid "Online time"
|
405 |
msgstr "Tid online"
|
406 |
|
407 |
-
|
408 |
-
|
409 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
410 |
msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
|
411 |
|
412 |
-
|
413 |
-
|
414 |
msgid "Logged on Users"
|
415 |
msgstr "Inloggade användare"
|
416 |
|
417 |
-
|
418 |
-
|
419 |
msgid "count too"
|
420 |
msgstr "räkna med"
|
421 |
|
422 |
-
|
423 |
-
|
424 |
msgid "until User Level"
|
425 |
msgstr "upp till användarbehörighet"
|
426 |
|
427 |
-
|
428 |
-
|
429 |
msgid "Auto counter"
|
430 |
msgstr "Automatisk räknare"
|
431 |
|
432 |
-
|
433 |
-
|
434 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
435 |
msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
|
436 |
|
437 |
-
|
438 |
-
|
439 |
msgid "Bots to ignore"
|
440 |
msgstr "Bots att ignorera"
|
441 |
|
442 |
-
|
443 |
-
|
444 |
msgid "Anonymous IP"
|
445 |
msgstr "Anonym IP-adress"
|
446 |
|
447 |
-
|
448 |
-
|
449 |
msgid "Cache"
|
450 |
msgstr "Cache"
|
451 |
|
452 |
-
|
453 |
-
|
454 |
msgid "I use a cache plugin. Count these visits with ajax."
|
455 |
msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
|
456 |
|
457 |
-
|
458 |
-
|
459 |
msgid "Clients and referrers"
|
460 |
msgstr "Klienter och hänvisare"
|
461 |
|
462 |
-
|
463 |
-
|
464 |
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
465 |
msgstr "Spara och visa klienter och hänvisare.<br />Kräver stor plats i databasen, men ger dig mer information om dina besökare."
|
466 |
|
467 |
-
|
468 |
-
|
469 |
msgid "Dashboard"
|
470 |
msgstr "Panel"
|
471 |
|
472 |
-
|
473 |
-
#: counter-options.php:
|
474 |
-
|
475 |
msgid "How many posts do you want to see on dashboard page?"
|
476 |
msgstr "Hur många inlägg vill du se på panelsidan?"
|
477 |
|
478 |
-
|
479 |
-
|
480 |
msgid "Latest Counts - Posts"
|
481 |
msgstr "Senaste träffar - Inlägg"
|
482 |
|
483 |
-
|
484 |
-
|
485 |
msgid "Latest Counts - Days"
|
486 |
msgstr "Senaste träffar - Dagar"
|
487 |
|
488 |
-
|
489 |
-
#: counter-options.php:
|
490 |
-
#: counter-options.php:
|
491 |
-
|
492 |
msgid "How many days do you want look back?"
|
493 |
msgstr "Hur många dagar bakåt vill du se?"
|
494 |
|
495 |
-
|
496 |
-
|
497 |
msgid "Chart - Days"
|
498 |
msgstr "Diagram - Dagar"
|
499 |
|
500 |
-
|
501 |
-
|
502 |
msgid "Chart - Height"
|
503 |
msgstr "Diagram - Höjd"
|
504 |
|
505 |
-
|
506 |
-
|
507 |
msgid "Height of the biggest bar"
|
508 |
msgstr "Den högsta stapelns höjd"
|
509 |
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
msgid "Countries"
|
513 |
msgstr "Länder"
|
514 |
|
515 |
-
|
516 |
-
|
517 |
msgid "How many countries do you want to see on dashboard page?"
|
518 |
msgstr "Hur många länder vill du visa på Panelen?"
|
519 |
|
520 |
-
|
521 |
-
|
522 |
msgid "Substring of the user agent, separated by comma"
|
523 |
msgstr "Delsträng av \"user agent\", separerad med kommatecken"
|
524 |
|
525 |
-
|
526 |
-
|
527 |
msgid "Referrers - Entries"
|
528 |
msgstr "Hänvisare - Inlägg"
|
529 |
|
530 |
-
|
531 |
-
|
532 |
msgid "How many referrers do you want to see on dashboard page?"
|
533 |
msgstr "Hur många hänvisare vill du se på panelsidan?"
|
534 |
|
535 |
-
|
536 |
-
|
537 |
msgid "Referrers - Days"
|
538 |
msgstr "Hänvisare - Dagar"
|
539 |
|
540 |
-
|
541 |
-
|
542 |
msgid "Local URLs"
|
543 |
msgstr "Lokala URL:er"
|
544 |
|
545 |
-
|
546 |
-
|
547 |
msgid "Show local referrers too."
|
548 |
msgstr "Visa även lokala hänvisare."
|
549 |
|
550 |
-
|
551 |
-
|
552 |
msgid "Posts"
|
553 |
msgstr "Inlägg"
|
554 |
|
555 |
-
|
556 |
-
|
557 |
msgid "Pages"
|
558 |
msgstr "Sidor"
|
559 |
|
560 |
-
|
561 |
-
|
562 |
msgid "Show in lists"
|
563 |
msgstr "Visa i listor"
|
564 |
|
565 |
-
|
566 |
-
|
567 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
568 |
msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
|
569 |
|
570 |
-
|
571 |
-
|
572 |
msgid "Start Values"
|
573 |
msgstr "Startvärden"
|
574 |
|
575 |
-
|
576 |
-
|
577 |
msgid "Here you can change the date of first count and add a start count."
|
578 |
msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
|
579 |
|
580 |
-
|
581 |
-
|
582 |
msgid "Start date"
|
583 |
msgstr "Startdatum"
|
584 |
|
585 |
-
|
586 |
-
|
587 |
msgid "Your old Counter starts at?"
|
588 |
msgstr "Din gamla räknare startar den?"
|
589 |
|
590 |
-
|
591 |
-
#: counter-options.php:
|
592 |
-
|
593 |
msgid "Start count"
|
594 |
msgstr "Starta räknaren"
|
595 |
|
596 |
-
|
597 |
-
|
598 |
msgid "Add this value to \"Total visitors\"."
|
599 |
msgstr "Lägg till det här värdet till \"Besökare totalt\"."
|
600 |
|
601 |
-
|
602 |
-
|
603 |
msgid "Add this value to \"Total reads\"."
|
604 |
msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
|
605 |
|
606 |
-
|
607 |
-
|
608 |
msgid "Debug mode"
|
609 |
msgstr "Felsökningsläge"
|
610 |
|
611 |
-
|
612 |
-
|
613 |
msgid "Show debug informations at the bottom of all pages."
|
614 |
msgstr "Visa felsökningsinformation längst ner på alla sidor."
|
615 |
|
616 |
-
|
617 |
-
|
618 |
msgid "Update options"
|
619 |
msgstr "Uppdatera inställningarna"
|
620 |
|
621 |
-
|
622 |
-
|
623 |
msgid "GeoIP - Countries"
|
624 |
msgstr "GeoIP - Länder"
|
625 |
|
626 |
-
|
627 |
-
|
628 |
msgid "Update old counter data"
|
629 |
msgstr "Uppdatera gammal räknardata"
|
630 |
|
631 |
-
|
632 |
-
|
633 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
634 |
msgstr "Du kan få information om land för alla poster i databasen genom att kolla IP-adresserna mot GeoIP-databasen. Räkna med att det kan ta ett tag!"
|
635 |
|
636 |
-
|
637 |
-
|
638 |
msgid "Update GeoIP database"
|
639 |
msgstr "Uppdatera GeoIP-databasen"
|
640 |
|
641 |
-
|
642 |
-
|
643 |
msgid "Download a new version of GeoIP.dat file."
|
644 |
msgstr "Ladda ner en ny version av filen GeoIP.dat."
|
645 |
|
646 |
-
|
647 |
-
|
648 |
msgid "More informations about GeoIP"
|
649 |
msgstr "Mer information om GeoIP"
|
650 |
|
651 |
-
|
|
|
652 |
#, php-format
|
653 |
-
#@ cpd
|
654 |
msgid "Show all IPs with more than %s page views per day"
|
655 |
msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
|
656 |
|
657 |
-
|
658 |
-
|
659 |
msgid "IP"
|
660 |
msgstr "IP"
|
661 |
|
662 |
-
|
663 |
-
|
664 |
msgid "Client"
|
665 |
msgstr "Klient"
|
666 |
|
667 |
-
|
668 |
-
|
669 |
msgid "Views"
|
670 |
msgstr "Visningar"
|
671 |
|
672 |
-
|
673 |
-
#: counter-options.php:
|
|
|
674 |
#, php-format
|
675 |
-
#@ cpd
|
676 |
msgid "Delete these %s counts"
|
677 |
msgstr "Ta bort bort %s stycken"
|
678 |
|
679 |
-
|
680 |
-
#: counter-options.php:
|
681 |
-
|
682 |
msgid "Clean the database"
|
683 |
msgstr "Städa databasen"
|
684 |
|
685 |
-
|
686 |
-
|
687 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
688 |
msgstr "Du kan rensa räknartabellen genom att ta bort \"spamdata\".<br />Om du lägger till nya botar ovan, behålls den gamla \"spamdatan\" i databasen.<br />Här kan du köra botfiltret igen och ta bort botarnas besök."
|
689 |
|
690 |
-
|
691 |
-
#: counter-options.php:
|
692 |
-
|
693 |
msgid "Reset the counter"
|
694 |
msgstr "Nollställ räknaren"
|
695 |
|
696 |
-
|
697 |
-
|
698 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
699 |
msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
|
700 |
|
701 |
-
|
702 |
-
|
703 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
704 |
msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
|
705 |
|
706 |
-
|
707 |
-
|
708 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
709 |
msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
|
710 |
|
711 |
-
|
712 |
-
|
713 |
msgid "WARNING"
|
714 |
msgstr "VARNING"
|
715 |
|
716 |
-
|
717 |
-
|
718 |
msgid "These tables (with ALL counter data) will be deleted."
|
719 |
msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
|
720 |
|
721 |
-
|
722 |
-
|
723 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
724 |
msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
|
725 |
|
726 |
-
|
727 |
-
#: counter-options.php:
|
728 |
-
#@ cpd
|
729 |
msgid "Yes"
|
730 |
msgstr "Ja"
|
731 |
|
732 |
-
|
733 |
-
|
734 |
msgid "You are sure to disable Count per Day and delete all data?"
|
735 |
msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
|
736 |
|
737 |
-
|
738 |
-
|
739 |
msgid "Support"
|
740 |
msgstr "Support"
|
741 |
|
742 |
-
|
743 |
-
|
744 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
745 |
msgstr "Tyvärr, nödvändiga funktioner (zlib) är inte installerade/aktiverade i php.ini."
|
746 |
|
747 |
-
|
748 |
-
|
749 |
msgid "New GeoIP database installed."
|
750 |
msgstr "Ny GeoIP-databas installerades."
|
751 |
|
752 |
-
|
753 |
-
|
754 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
755 |
msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
|
756 |
|
757 |
-
#: counter-core.php:186
|
758 |
-
#, php-format
|
759 |
-
#@ cpd
|
760 |
-
msgid "\"Count per Day\" updated to version %s."
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: counter-core.php:917
|
764 |
-
#@ cpd
|
765 |
-
msgid "Backup failed! Cannot open file"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: counter-core.php:940
|
769 |
-
#, php-format
|
770 |
-
#@ cpd
|
771 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: counter-core.php:1027
|
775 |
-
#@ cpd
|
776 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: counter-core.php:1033
|
780 |
-
#, php-format
|
781 |
-
#@ cpd
|
782 |
-
msgid "Backup of counter table saved in %s."
|
783 |
-
msgstr ""
|
784 |
-
|
785 |
-
#: counter-core.php:1035
|
786 |
-
#, php-format
|
787 |
-
#@ cpd
|
788 |
-
msgid "Backup of counter options and collection saved in %s."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: counter-options.php:170
|
792 |
-
#@ cpd
|
793 |
-
msgid "Collection in progress..."
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: counter-options.php:240
|
797 |
-
#@ cpd
|
798 |
-
msgid "Get Visitors per Post..."
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: counter-options.php:261
|
802 |
-
#@ cpd
|
803 |
-
msgid "Delete old data..."
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: counter-options.php:285
|
807 |
-
#, php-format
|
808 |
-
#@ cpd
|
809 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: counter-options.php:294
|
813 |
-
#@ cpd
|
814 |
-
msgid "Installation of \"Count per Day\" checked"
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: counter-options.php:342
|
818 |
-
#: counter-options.php:566
|
819 |
-
#@ default
|
820 |
-
msgid "Tools"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: counter-options.php:394
|
824 |
-
#@ cpd
|
825 |
-
msgid "Save URL only, no query string."
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: counter-options.php:419
|
829 |
-
#@ cpd
|
830 |
-
msgid "Who can see it"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: counter-options.php:428
|
834 |
-
#@ cpd
|
835 |
-
msgid "custom"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: counter-options.php:430
|
839 |
-
#@ cpd
|
840 |
-
msgid "and higher are allowed to see the statistics page."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: counter-options.php:432
|
844 |
-
#, php-format
|
845 |
-
#@ cpd
|
846 |
-
msgid "Set the %s capability %s a user need:"
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: counter-options.php:522
|
850 |
-
#@ cpd
|
851 |
-
msgid "Stylesheet"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: counter-options.php:525
|
855 |
-
#@ cpd
|
856 |
-
msgid "NO Stylesheet in Frontend"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: counter-options.php:526
|
860 |
-
#@ cpd
|
861 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:639
|
866 |
-
#@ cpd
|
867 |
-
msgid "Backup"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: counter-options.php:537
|
871 |
-
#@ cpd
|
872 |
-
msgid "Entries per pass"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: counter-options.php:540
|
876 |
-
#@ cpd
|
877 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: counter-options.php:545
|
881 |
-
#@ cpd
|
882 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: counter-options.php:643
|
886 |
-
#, php-format
|
887 |
-
#@ cpd
|
888 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: counter-options.php:647
|
892 |
-
#@ cpd
|
893 |
-
msgid "Backup the database"
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: counter-options.php:674
|
897 |
-
#: counter-options.php:706
|
898 |
-
#@ cpd
|
899 |
-
msgid "Collect old data"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: counter-options.php:679
|
903 |
-
#, php-format
|
904 |
-
#@ cpd
|
905 |
-
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: counter-options.php:681
|
909 |
-
#@ cpd
|
910 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
911 |
-
msgstr ""
|
912 |
-
|
913 |
-
#: counter-options.php:686
|
914 |
-
#, php-format
|
915 |
-
#@ cpd
|
916 |
-
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: counter-options.php:690
|
920 |
-
#@ cpd
|
921 |
-
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: counter-options.php:696
|
925 |
-
#@ cpd
|
926 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: counter-options.php:697
|
930 |
-
#, php-format
|
931 |
-
#@ cpd
|
932 |
-
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: counter-options.php:702
|
936 |
-
#, php-format
|
937 |
-
#@ cpd
|
938 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr ""
|
940 |
-
|
941 |
-
#: counter-options.php:761
|
942 |
-
#@ cpd
|
943 |
-
msgid "ReActivation"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: counter-options.php:764
|
947 |
-
#@ cpd
|
948 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: counter-options.php:769
|
952 |
-
#@ cpd
|
953 |
-
msgid "ReActivate the plugin"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
#@ cpd
|
959 |
-
msgid "Visitors"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
#@ cpd
|
965 |
-
msgid "Most visited day"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: counter.php:1239
|
969 |
-
#@ cpd
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr ""
|
972 |
-
|
13 |
"X-Poedit-Language: Swedish\n"
|
14 |
"X-Poedit-Country: SWEDEN\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
20 |
|
21 |
+
# @ cpd
|
22 |
+
#: counter.php:524
|
23 |
+
#: counter.php:2210
|
24 |
msgid "Total reads"
|
25 |
msgstr "Antal läsningar totalt"
|
26 |
|
27 |
+
# @ cpd
|
28 |
+
#: counter.php:525
|
29 |
+
#: counter.php:2211
|
30 |
msgid "Reads today"
|
31 |
msgstr "Läsningar idag"
|
32 |
|
33 |
+
# @ cpd
|
34 |
+
#: counter.php:526
|
35 |
+
#: counter.php:2212
|
36 |
msgid "Reads yesterday"
|
37 |
msgstr "Läsningar igår"
|
38 |
|
39 |
+
# @ cpd
|
40 |
+
#: counter.php:527
|
41 |
+
#: counter.php:2213
|
42 |
msgid "Reads last week"
|
43 |
msgstr "Läsningar förra veckan"
|
44 |
|
45 |
+
# @ cpd
|
46 |
+
#: counter.php:528
|
47 |
+
#: counter.php:1653
|
48 |
+
#: counter-options.php:225
|
|
|
49 |
msgid "Reads"
|
50 |
msgstr "Visningar"
|
51 |
|
52 |
+
# @ cpd
|
53 |
+
#: counter.php:529
|
54 |
+
#: counter.php:534
|
55 |
+
#: counter.php:1596
|
56 |
+
#: counter.php:1741
|
57 |
+
#: counter.php:2215
|
58 |
msgid "Total visitors"
|
59 |
msgstr "Antal besökare totalt"
|
60 |
|
61 |
+
# @ cpd
|
62 |
+
#: counter.php:530
|
63 |
+
#: counter.php:2221
|
64 |
msgid "Visitors currently online"
|
65 |
msgstr "Besökare online nu"
|
66 |
|
67 |
+
# @ cpd
|
68 |
+
#: counter.php:531
|
69 |
+
#: counter.php:2216
|
70 |
msgid "Visitors today"
|
71 |
msgstr "Besökare idag"
|
72 |
|
73 |
+
# @ cpd
|
74 |
+
#: counter.php:532
|
75 |
+
#: counter.php:2217
|
76 |
msgid "Visitors yesterday"
|
77 |
msgstr "Besökare igår"
|
78 |
|
79 |
+
# @ cpd
|
80 |
+
#: counter.php:533
|
81 |
+
#: counter.php:2218
|
82 |
msgid "Visitors last week"
|
83 |
msgstr "Besökare förra veckan"
|
84 |
|
85 |
+
# @ cpd
|
86 |
+
#: counter.php:535
|
87 |
+
#: counter.php:636
|
88 |
+
#: counter.php:1598
|
89 |
+
#: counter.php:1747
|
90 |
+
#: counter.php:1756
|
91 |
+
#: counter.php:2220
|
92 |
+
#: userperspan.php:33
|
93 |
msgid "Visitors per day"
|
94 |
msgstr "Besök per dag"
|
95 |
|
96 |
+
# @ cpd
|
97 |
+
#: counter.php:536
|
98 |
+
#: counter.php:2222
|
|
|
99 |
msgid "Counter starts on"
|
100 |
msgstr "Räknaren startar den"
|
101 |
|
102 |
+
# @ cpd
|
103 |
+
#: counter.php:635
|
104 |
+
#: counter.php:1757
|
105 |
msgid "Reads per day"
|
106 |
msgstr "Läsningar per dag"
|
107 |
|
108 |
+
# @ cpd
|
109 |
+
#: counter.php:819
|
110 |
+
msgid "days"
|
111 |
+
msgstr "dagar"
|
112 |
+
|
113 |
+
# @ cpd
|
114 |
+
#: counter.php:822
|
115 |
+
#: counter.php:1376
|
116 |
+
#: notes.php:47
|
117 |
+
#: notes.php:81
|
118 |
msgid "Notes"
|
119 |
msgstr "Anteckningar"
|
120 |
|
121 |
+
# @ cpd
|
122 |
+
#: counter.php:845
|
123 |
+
msgid "no reads at this time"
|
124 |
+
msgstr "inga läsningar vid denna tidpunkt"
|
125 |
+
|
126 |
+
# @ cpd
|
127 |
+
#: counter.php:900
|
128 |
+
#: counter.php:1846
|
129 |
msgid "Map"
|
130 |
msgstr "Karta"
|
131 |
|
132 |
+
# @ cpd
|
133 |
+
#: counter.php:1257
|
134 |
#, php-format
|
|
|
135 |
msgid "The %s most visited posts in last %s days:"
|
136 |
msgstr "De %s mest visade inläggen de senaste %s dagarna:"
|
137 |
|
138 |
+
# @ default
|
139 |
+
#: counter.php:1374
|
140 |
msgid "Show"
|
141 |
msgstr "Visa"
|
142 |
|
143 |
+
# @ cpd
|
144 |
+
#: counter.php:1415
|
145 |
msgid "Other"
|
146 |
msgstr "Övriga"
|
147 |
|
148 |
+
# @ cpd
|
149 |
+
#: counter.php:1440
|
150 |
#, php-format
|
|
|
151 |
msgid "The %s referrers in last %s days:"
|
152 |
msgstr "De %s senaste hänvisningarna de senaste %s dagarna:"
|
153 |
|
154 |
+
# @ default
|
155 |
+
#: counter.php:1497
|
156 |
msgid "Edit Post"
|
157 |
msgstr "Redigera inlägg"
|
158 |
|
159 |
+
# @ default
|
160 |
+
#: counter.php:1506
|
161 |
msgid "Category"
|
162 |
msgstr "Kategori"
|
163 |
|
164 |
+
# @ default
|
165 |
+
#: counter.php:1509
|
166 |
msgid "Tag"
|
167 |
msgstr "Tag"
|
168 |
|
169 |
+
# @ default
|
170 |
+
#: counter.php:1512
|
171 |
+
#: massbots.php:50
|
172 |
#: userperspan.php:63
|
|
|
173 |
msgid "Front page displays"
|
174 |
msgstr "Visningar av framsidan"
|
175 |
|
176 |
+
# @ default
|
177 |
+
#: counter.php:1583
|
|
|
|
|
178 |
msgid "Settings"
|
179 |
msgstr "Inställningar"
|
180 |
|
181 |
+
# @ cpd
|
182 |
+
#: counter.php:1708
|
183 |
#, php-format
|
|
|
184 |
msgid "Time for Count per Day: <code>%s</code>."
|
185 |
msgstr "Tid för Count per Day: <code>%s</code>."
|
186 |
|
187 |
+
# @ cpd
|
188 |
+
#: counter.php:1709
|
189 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
190 |
msgstr "Bugg? Problem? Fråga? Tips? Beröm?"
|
191 |
|
192 |
+
# @ cpd
|
193 |
+
#: counter.php:1710
|
194 |
#, php-format
|
|
|
195 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
196 |
msgstr "Skriv en kommentar på <a href=\"%s\">pluginsidan</a>."
|
197 |
|
198 |
+
# @ default
|
199 |
+
#: counter.php:1711
|
200 |
msgid "License"
|
201 |
msgstr "Licens"
|
202 |
|
203 |
+
# @ cpd
|
204 |
+
#: counter.php:1742
|
205 |
msgid "Visitors online"
|
206 |
msgstr "Besökare online"
|
207 |
|
208 |
+
# @ cpd
|
209 |
+
#: counter.php:1743
|
210 |
+
#: counter.php:2219
|
211 |
msgid "Visitors per month"
|
212 |
msgstr "Besökare per månad"
|
213 |
|
214 |
+
# @ cpd
|
215 |
+
#: counter.php:1744
|
216 |
+
#: counter.php:2214
|
217 |
msgid "Reads per month"
|
218 |
msgstr "Läsningar per månad"
|
219 |
|
220 |
+
# @ cpd
|
221 |
+
#: counter.php:1745
|
222 |
+
#: counter-options.php:236
|
223 |
msgid "Visitors per post"
|
224 |
msgstr "Besökare per inlägg"
|
225 |
|
226 |
+
# @ cpd
|
227 |
+
#: counter.php:1746
|
228 |
msgid "Latest Counts"
|
229 |
msgstr "Senaste besöken"
|
230 |
|
231 |
+
# @ default
|
232 |
+
#: counter.php:1748
|
233 |
msgid "Plugin"
|
234 |
msgstr "Plugin"
|
235 |
|
236 |
+
# @ cpd
|
237 |
+
#: counter.php:1751
|
238 |
+
#: counter-options.php:266
|
239 |
msgid "Browsers"
|
240 |
msgstr "Webbläsare"
|
241 |
|
242 |
+
# @ cpd
|
243 |
+
#: counter.php:1752
|
244 |
msgid "Referrer"
|
245 |
msgstr "Hänvisare"
|
246 |
|
247 |
+
# @ cpd
|
248 |
+
#: counter.php:1761
|
249 |
msgid "Reads per Country"
|
250 |
msgstr "Visningar per land"
|
251 |
|
252 |
+
# @ cpd
|
253 |
+
#: counter.php:1762
|
254 |
msgid "Visitors per Country"
|
255 |
msgstr "Besökare per land"
|
256 |
|
257 |
+
# @ cpd
|
258 |
+
#: counter.php:1777
|
259 |
+
#: counter.php:2138
|
260 |
msgid "Statistics"
|
261 |
msgstr "Statistik"
|
262 |
|
263 |
+
# @ cpd
|
264 |
+
#: counter.php:2209
|
265 |
msgid "This post"
|
266 |
msgstr "Det här inlägget"
|
267 |
|
268 |
+
# @ default
|
269 |
+
#: counter.php:2233
|
270 |
msgid "Title"
|
271 |
msgstr "Titel"
|
272 |
|
273 |
+
# @ cpd
|
274 |
+
#: notes.php:76
|
275 |
+
#: userperspan.php:43
|
276 |
+
#: counter-options.php:391
|
277 |
msgid "show"
|
278 |
msgstr "visa"
|
279 |
|
280 |
+
# @ cpd
|
281 |
+
# @ default
|
282 |
+
#: notes.php:80
|
283 |
+
#: counter-options.php:400
|
284 |
msgid "Date"
|
285 |
msgstr "Datum"
|
286 |
|
287 |
+
# @ cpd
|
288 |
+
#: notes.php:81
|
289 |
+
msgid "(1 per day)"
|
290 |
+
msgstr "(1 per dag)"
|
291 |
+
|
292 |
+
# @ default
|
293 |
+
#: notes.php:82
|
294 |
msgid "Action"
|
295 |
msgstr "Åtgärd"
|
296 |
|
297 |
+
# @ cpd
|
298 |
+
#: notes.php:87
|
299 |
msgid "add"
|
300 |
msgstr "lägg till"
|
301 |
|
302 |
+
# @ cpd
|
303 |
+
#: notes.php:102
|
304 |
msgid "save"
|
305 |
msgstr "spara"
|
306 |
|
307 |
+
# @ cpd
|
308 |
+
#: notes.php:103
|
309 |
msgid "delete"
|
310 |
msgstr "ta bort"
|
311 |
|
312 |
+
# @ cpd
|
313 |
+
#: notes.php:114
|
314 |
msgid "edit"
|
315 |
msgstr "redigera"
|
316 |
|
317 |
+
# @ cpd
|
318 |
+
#: massbots.php:33
|
319 |
+
#: counter-options.php:386
|
320 |
msgid "Mass Bots"
|
321 |
msgstr "Massbotar"
|
322 |
|
323 |
+
# @ cpd
|
324 |
+
#: userperspan.php:37
|
325 |
msgid "Start"
|
326 |
msgstr "Start"
|
327 |
|
328 |
+
# @ cpd
|
329 |
+
#: userperspan.php:39
|
330 |
msgid "End"
|
331 |
msgstr "Slut"
|
332 |
|
333 |
+
# @ cpd
|
334 |
+
#: userperspan.php:41
|
335 |
msgid "PostID"
|
336 |
msgstr "PostID"
|
337 |
|
338 |
+
# @ cpd
|
339 |
+
#: userperspan.php:49
|
340 |
msgid "no data found"
|
341 |
msgstr "ingen information hittades"
|
342 |
|
343 |
+
# @ cpd
|
344 |
+
#: counter-options.php:46
|
345 |
msgid "Options updated"
|
346 |
msgstr "Inställningarna är uppdaterade"
|
347 |
|
348 |
+
# @ cpd
|
349 |
+
#: counter-options.php:57
|
350 |
#, php-format
|
|
|
351 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
352 |
msgstr "Länder uppdaterade. <b>%s</b> inlägg i %s utan länder kvar"
|
353 |
|
354 |
+
# @ cpd
|
355 |
+
#: counter-options.php:62
|
356 |
msgid "update next"
|
357 |
msgstr "uppdatera nästa"
|
358 |
|
359 |
+
# @ cpd
|
360 |
+
#: counter-options.php:104
|
361 |
#, php-format
|
|
|
362 |
msgid "Mass Bots cleaned. %s counts deleted."
|
363 |
msgstr "Massbotar rensades. %s stycken togs bort."
|
364 |
|
365 |
+
# @ cpd
|
366 |
+
#: counter-options.php:111
|
367 |
#, php-format
|
|
|
368 |
msgid "Database cleaned. %s rows deleted."
|
369 |
msgstr "Databasen städades. %s rader togs bort."
|
370 |
|
371 |
+
# @ cpd
|
372 |
+
#: counter-options.php:117
|
373 |
msgid "Counter reseted."
|
374 |
msgstr "Räknaren återställdes."
|
375 |
|
376 |
+
# @ cpd
|
377 |
+
#: counter-options.php:121
|
378 |
+
#: counter-options.php:496
|
379 |
msgid "UNINSTALL Count per Day"
|
380 |
msgstr "AVINSTALLERA Count per Day"
|
381 |
|
382 |
+
# @ cpd
|
383 |
+
#: counter-options.php:126
|
384 |
+
#: counter-options.php:128
|
385 |
+
#: counter-options.php:130
|
386 |
#, php-format
|
|
|
387 |
msgid "Table %s deleted"
|
388 |
msgstr "Tabellen %s raderades"
|
389 |
|
390 |
+
# @ cpd
|
391 |
+
#: counter-options.php:132
|
392 |
msgid "Options deleted"
|
393 |
msgstr "Inställningarna togs bort"
|
394 |
|
395 |
+
# @ cpd
|
396 |
+
#: counter-options.php:156
|
397 |
+
#: counter-options.php:481
|
398 |
msgid "Uninstall"
|
399 |
msgstr "Avinstallera"
|
400 |
|
401 |
+
# @ cpd
|
402 |
+
#: counter-options.php:157
|
403 |
msgid "Click here"
|
404 |
msgstr "Klicka här"
|
405 |
|
406 |
+
# @ cpd
|
407 |
+
#: counter-options.php:157
|
408 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
409 |
msgstr "för att avinstallera och avaktivera \"Count per Day\"."
|
410 |
|
411 |
+
# @ cpd
|
412 |
+
#: counter-options.php:179
|
413 |
+
msgid "Options"
|
414 |
+
msgstr "Inställningar"
|
415 |
+
|
416 |
+
# @ cpd
|
417 |
+
#: counter-options.php:186
|
418 |
msgid "Counter"
|
419 |
msgstr "Räknare"
|
420 |
|
421 |
+
# @ cpd
|
422 |
+
#: counter-options.php:190
|
423 |
msgid "Online time"
|
424 |
msgstr "Tid online"
|
425 |
|
426 |
+
# @ cpd
|
427 |
+
#: counter-options.php:191
|
428 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
429 |
msgstr "Sekunder för onlineräknare. Används för \"Besökare online\" på panelsidan."
|
430 |
|
431 |
+
# @ cpd
|
432 |
+
#: counter-options.php:194
|
433 |
msgid "Logged on Users"
|
434 |
msgstr "Inloggade användare"
|
435 |
|
436 |
+
# @ cpd
|
437 |
+
#: counter-options.php:196
|
438 |
msgid "count too"
|
439 |
msgstr "räkna med"
|
440 |
|
441 |
+
# @ cpd
|
442 |
+
#: counter-options.php:197
|
443 |
msgid "until User Level"
|
444 |
msgstr "upp till användarbehörighet"
|
445 |
|
446 |
+
# @ cpd
|
447 |
+
#: counter-options.php:208
|
448 |
msgid "Auto counter"
|
449 |
msgstr "Automatisk räknare"
|
450 |
|
451 |
+
# @ cpd
|
452 |
+
#: counter-options.php:209
|
453 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
454 |
msgstr "Räknar automatiskt enstaka inlägg och sidor, inga ändringar i mall behövs."
|
455 |
|
456 |
+
# @ cpd
|
457 |
+
#: counter-options.php:212
|
458 |
msgid "Bots to ignore"
|
459 |
msgstr "Bots att ignorera"
|
460 |
|
461 |
+
# @ cpd
|
462 |
+
#: counter-options.php:216
|
463 |
msgid "Anonymous IP"
|
464 |
msgstr "Anonym IP-adress"
|
465 |
|
466 |
+
# @ cpd
|
467 |
+
#: counter-options.php:220
|
468 |
msgid "Cache"
|
469 |
msgstr "Cache"
|
470 |
|
471 |
+
# @ cpd
|
472 |
+
#: counter-options.php:221
|
473 |
msgid "I use a cache plugin. Count these visits with ajax."
|
474 |
msgstr "Jag använder ett plugin för cache. Räkna dessa besök med hjälp av ajax."
|
475 |
|
476 |
+
# @ cpd
|
477 |
+
#: counter-options.php:224
|
478 |
msgid "Clients and referrers"
|
479 |
msgstr "Klienter och hänvisare"
|
480 |
|
481 |
+
# @ cpd
|
482 |
+
#: counter-options.php:225
|
483 |
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."
|
484 |
msgstr "Spara och visa klienter och hänvisare.<br />Kräver stor plats i databasen, men ger dig mer information om dina besökare."
|
485 |
|
486 |
+
# @ default
|
487 |
+
#: counter-options.php:233
|
488 |
msgid "Dashboard"
|
489 |
msgstr "Panel"
|
490 |
|
491 |
+
# @ cpd
|
492 |
+
#: counter-options.php:237
|
493 |
+
#: counter-options.php:241
|
494 |
msgid "How many posts do you want to see on dashboard page?"
|
495 |
msgstr "Hur många inlägg vill du se på panelsidan?"
|
496 |
|
497 |
+
# @ cpd
|
498 |
+
#: counter-options.php:240
|
499 |
msgid "Latest Counts - Posts"
|
500 |
msgstr "Senaste träffar - Inlägg"
|
501 |
|
502 |
+
# @ cpd
|
503 |
+
#: counter-options.php:244
|
504 |
msgid "Latest Counts - Days"
|
505 |
msgstr "Senaste träffar - Dagar"
|
506 |
|
507 |
+
# @ cpd
|
508 |
+
#: counter-options.php:245
|
509 |
+
#: counter-options.php:249
|
510 |
+
#: counter-options.php:275
|
511 |
msgid "How many days do you want look back?"
|
512 |
msgstr "Hur många dagar bakåt vill du se?"
|
513 |
|
514 |
+
# @ cpd
|
515 |
+
#: counter-options.php:248
|
516 |
msgid "Chart - Days"
|
517 |
msgstr "Diagram - Dagar"
|
518 |
|
519 |
+
# @ cpd
|
520 |
+
#: counter-options.php:252
|
521 |
msgid "Chart - Height"
|
522 |
msgstr "Diagram - Höjd"
|
523 |
|
524 |
+
# @ cpd
|
525 |
+
#: counter-options.php:253
|
526 |
msgid "Height of the biggest bar"
|
527 |
msgstr "Den högsta stapelns höjd"
|
528 |
|
529 |
+
# @ cpd
|
530 |
+
#: counter-options.php:256
|
531 |
+
msgid "Old Charts"
|
532 |
+
msgstr "Gamla diagram"
|
533 |
+
|
534 |
+
# @ cpd
|
535 |
+
#: counter-options.php:257
|
536 |
+
msgid "Show old bar charts."
|
537 |
+
msgstr "Visa gamla stapeldiagram."
|
538 |
+
|
539 |
+
# @ cpd
|
540 |
+
#: counter-options.php:261
|
541 |
msgid "Countries"
|
542 |
msgstr "Länder"
|
543 |
|
544 |
+
# @ cpd
|
545 |
+
#: counter-options.php:262
|
546 |
msgid "How many countries do you want to see on dashboard page?"
|
547 |
msgstr "Hur många länder vill du visa på Panelen?"
|
548 |
|
549 |
+
# @ cpd
|
550 |
+
#: counter-options.php:267
|
551 |
msgid "Substring of the user agent, separated by comma"
|
552 |
msgstr "Delsträng av \"user agent\", separerad med kommatecken"
|
553 |
|
554 |
+
# @ cpd
|
555 |
+
#: counter-options.php:270
|
556 |
msgid "Referrers - Entries"
|
557 |
msgstr "Hänvisare - Inlägg"
|
558 |
|
559 |
+
# @ cpd
|
560 |
+
#: counter-options.php:271
|
561 |
msgid "How many referrers do you want to see on dashboard page?"
|
562 |
msgstr "Hur många hänvisare vill du se på panelsidan?"
|
563 |
|
564 |
+
# @ cpd
|
565 |
+
#: counter-options.php:274
|
566 |
msgid "Referrers - Days"
|
567 |
msgstr "Hänvisare - Dagar"
|
568 |
|
569 |
+
# @ cpd
|
570 |
+
#: counter-options.php:278
|
571 |
msgid "Local URLs"
|
572 |
msgstr "Lokala URL:er"
|
573 |
|
574 |
+
# @ cpd
|
575 |
+
#: counter-options.php:279
|
576 |
msgid "Show local referrers too."
|
577 |
msgstr "Visa även lokala hänvisare."
|
578 |
|
579 |
+
# @ default
|
580 |
+
#: counter-options.php:287
|
581 |
msgid "Posts"
|
582 |
msgstr "Inlägg"
|
583 |
|
584 |
+
# @ default
|
585 |
+
#: counter-options.php:287
|
586 |
msgid "Pages"
|
587 |
msgstr "Sidor"
|
588 |
|
589 |
+
# @ cpd
|
590 |
+
#: counter-options.php:290
|
591 |
msgid "Show in lists"
|
592 |
msgstr "Visa i listor"
|
593 |
|
594 |
+
# @ cpd
|
595 |
+
#: counter-options.php:291
|
596 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
597 |
msgstr "Visa \"Visningar per inlägg\" i en ny kolumn när du redigerar ett inlägg."
|
598 |
|
599 |
+
# @ cpd
|
600 |
+
#: counter-options.php:299
|
601 |
msgid "Start Values"
|
602 |
msgstr "Startvärden"
|
603 |
|
604 |
+
# @ cpd
|
605 |
+
#: counter-options.php:303
|
606 |
msgid "Here you can change the date of first count and add a start count."
|
607 |
msgstr "Här kan du ändra startdatum och lägga till ett startvärde för räknaren."
|
608 |
|
609 |
+
# @ cpd
|
610 |
+
#: counter-options.php:307
|
611 |
msgid "Start date"
|
612 |
msgstr "Startdatum"
|
613 |
|
614 |
+
# @ cpd
|
615 |
+
#: counter-options.php:308
|
616 |
msgid "Your old Counter starts at?"
|
617 |
msgstr "Din gamla räknare startar den?"
|
618 |
|
619 |
+
# @ cpd
|
620 |
+
#: counter-options.php:311
|
621 |
+
#: counter-options.php:315
|
622 |
msgid "Start count"
|
623 |
msgstr "Starta räknaren"
|
624 |
|
625 |
+
# @ cpd
|
626 |
+
#: counter-options.php:312
|
627 |
msgid "Add this value to \"Total visitors\"."
|
628 |
msgstr "Lägg till det här värdet till \"Besökare totalt\"."
|
629 |
|
630 |
+
# @ cpd
|
631 |
+
#: counter-options.php:316
|
632 |
msgid "Add this value to \"Total reads\"."
|
633 |
msgstr "Lägg till det här värdet till \"Läsningar totalt\"."
|
634 |
|
635 |
+
# @ cpd
|
636 |
+
#: counter-options.php:324
|
637 |
msgid "Debug mode"
|
638 |
msgstr "Felsökningsläge"
|
639 |
|
640 |
+
# @ cpd
|
641 |
+
#: counter-options.php:326
|
642 |
msgid "Show debug informations at the bottom of all pages."
|
643 |
msgstr "Visa felsökningsinformation längst ner på alla sidor."
|
644 |
|
645 |
+
# @ cpd
|
646 |
+
#: counter-options.php:331
|
647 |
msgid "Update options"
|
648 |
msgstr "Uppdatera inställningarna"
|
649 |
|
650 |
+
# @ cpd
|
651 |
+
#: counter-options.php:340
|
652 |
msgid "GeoIP - Countries"
|
653 |
msgstr "GeoIP - Länder"
|
654 |
|
655 |
+
# @ cpd
|
656 |
+
#: counter-options.php:349
|
657 |
msgid "Update old counter data"
|
658 |
msgstr "Uppdatera gammal räknardata"
|
659 |
|
660 |
+
# @ cpd
|
661 |
+
#: counter-options.php:352
|
662 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
663 |
msgstr "Du kan få information om land för alla poster i databasen genom att kolla IP-adresserna mot GeoIP-databasen. Räkna med att det kan ta ett tag!"
|
664 |
|
665 |
+
# @ cpd
|
666 |
+
#: counter-options.php:362
|
667 |
msgid "Update GeoIP database"
|
668 |
msgstr "Uppdatera GeoIP-databasen"
|
669 |
|
670 |
+
# @ cpd
|
671 |
+
#: counter-options.php:365
|
672 |
msgid "Download a new version of GeoIP.dat file."
|
673 |
msgstr "Ladda ner en ny version av filen GeoIP.dat."
|
674 |
|
675 |
+
# @ cpd
|
676 |
+
#: counter-options.php:371
|
677 |
msgid "More informations about GeoIP"
|
678 |
msgstr "Mer information om GeoIP"
|
679 |
|
680 |
+
# @ cpd
|
681 |
+
#: counter-options.php:390
|
682 |
#, php-format
|
|
|
683 |
msgid "Show all IPs with more than %s page views per day"
|
684 |
msgstr "Visa alla IP-adresser med mer än %s sidvisningar per dag"
|
685 |
|
686 |
+
# @ cpd
|
687 |
+
#: counter-options.php:399
|
688 |
msgid "IP"
|
689 |
msgstr "IP"
|
690 |
|
691 |
+
# @ cpd
|
692 |
+
#: counter-options.php:401
|
693 |
msgid "Client"
|
694 |
msgstr "Klient"
|
695 |
|
696 |
+
# @ cpd
|
697 |
+
#: counter-options.php:402
|
698 |
msgid "Views"
|
699 |
msgstr "Visningar"
|
700 |
|
701 |
+
# @ cpd
|
702 |
+
#: counter-options.php:413
|
703 |
+
#: counter-options.php:435
|
704 |
#, php-format
|
|
|
705 |
msgid "Delete these %s counts"
|
706 |
msgstr "Ta bort bort %s stycken"
|
707 |
|
708 |
+
# @ cpd
|
709 |
+
#: counter-options.php:445
|
710 |
+
#: counter-options.php:454
|
711 |
msgid "Clean the database"
|
712 |
msgstr "Städa databasen"
|
713 |
|
714 |
+
# @ cpd
|
715 |
+
#: counter-options.php:448
|
716 |
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."
|
717 |
msgstr "Du kan rensa räknartabellen genom att ta bort \"spamdata\".<br />Om du lägger till nya botar ovan, behålls den gamla \"spamdatan\" i databasen.<br />Här kan du köra botfiltret igen och ta bort botarnas besök."
|
718 |
|
719 |
+
# @ cpd
|
720 |
+
#: counter-options.php:463
|
721 |
+
#: counter-options.php:472
|
722 |
msgid "Reset the counter"
|
723 |
msgstr "Nollställ räknaren"
|
724 |
|
725 |
+
# @ cpd
|
726 |
+
#: counter-options.php:466
|
727 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
728 |
msgstr "Du kan nollställa räknaren genom att tömma tabellen. ALLA TILL 0!<br />Ta backup om du vill spara nuvarande data!"
|
729 |
|
730 |
+
# @ cpd
|
731 |
+
#: counter-options.php:484
|
732 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
733 |
msgstr "Om du endast avaktiverar \"Count per Day\" behålls tabellerna i databasen."
|
734 |
|
735 |
+
# @ cpd
|
736 |
+
#: counter-options.php:485
|
737 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
738 |
msgstr "Här kan du ta bort tabellerna och avaktivera \"Count per Day\"."
|
739 |
|
740 |
+
# @ cpd
|
741 |
+
#: counter-options.php:488
|
742 |
msgid "WARNING"
|
743 |
msgstr "VARNING"
|
744 |
|
745 |
+
# @ cpd
|
746 |
+
#: counter-options.php:489
|
747 |
msgid "These tables (with ALL counter data) will be deleted."
|
748 |
msgstr "Följande tabeller (inklusive all data tillhörande räknaren) kommer att tas bort."
|
749 |
|
750 |
+
# @ cpd
|
751 |
+
#: counter-options.php:491
|
752 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
753 |
msgstr "Om du ominstallerar \"Count per Day\", kommer räknaren att starta på 0."
|
754 |
|
755 |
+
# @ cpd
|
756 |
+
#: counter-options.php:495
|
|
|
757 |
msgid "Yes"
|
758 |
msgstr "Ja"
|
759 |
|
760 |
+
# @ cpd
|
761 |
+
#: counter-options.php:496
|
762 |
msgid "You are sure to disable Count per Day and delete all data?"
|
763 |
msgstr "Är du säker på att du vill avaktivera Count per Day och radera all data?"
|
764 |
|
765 |
+
# @ cpd
|
766 |
+
#: counter-options.php:504
|
767 |
msgid "Support"
|
768 |
msgstr "Support"
|
769 |
|
770 |
+
# @ cpd
|
771 |
+
#: geoip/geoip.php:108
|
772 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
773 |
msgstr "Tyvärr, nödvändiga funktioner (zlib) är inte installerade/aktiverade i php.ini."
|
774 |
|
775 |
+
# @ cpd
|
776 |
+
#: geoip/geoip.php:132
|
777 |
msgid "New GeoIP database installed."
|
778 |
msgstr "Ny GeoIP-databas installerades."
|
779 |
|
780 |
+
# @ cpd
|
781 |
+
#: geoip/geoip.php:134
|
782 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
783 |
msgstr "Ett fel uppstod. Prova igen eller kolla så att rättigheterna på mappen \"geoip\" är 777."
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-tr_TR.mo
CHANGED
Binary file
|
locale/cpd-tr_TR.po
CHANGED
@@ -13,960 +13,772 @@ msgstr ""
|
|
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
|
17 |
"X-Poedit-Basepath: ../\n"
|
18 |
-
"X-
|
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 "Seçenekler güncellendi."
|
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 "Ülkeler güncellendi."
|
32 |
|
33 |
-
#: counter-options.php:65
|
34 |
#@ cpd
|
|
|
35 |
msgid "update next"
|
36 |
msgstr "sonraki güncelleme"
|
37 |
|
38 |
-
#: counter-options.php:102
|
39 |
-
#, php-format
|
40 |
#@ cpd
|
|
|
|
|
41 |
msgid "Mass Bots cleaned. %s counts deleted."
|
42 |
msgstr "Botlar temizlendi. %s adet silindi."
|
43 |
|
44 |
-
#: counter-options.php:112
|
45 |
-
#, php-format
|
46 |
#@ cpd
|
|
|
|
|
47 |
msgid "Database cleaned. %s rows deleted."
|
48 |
msgstr "Veritabanı temizlendi. %s satır silindi."
|
49 |
|
50 |
-
#: counter-options.php:122
|
51 |
#@ cpd
|
|
|
52 |
msgid "Counter reseted."
|
53 |
msgstr "Sayaç sıfırlandı."
|
54 |
|
55 |
-
#: counter-options.php:127
|
56 |
-
#: counter-options.php:810
|
57 |
#@ cpd
|
|
|
|
|
58 |
msgid "UNINSTALL Count per Day"
|
59 |
msgstr "Count per Day'i kaldır."
|
60 |
|
61 |
-
#: counter-options.php:132
|
62 |
-
#: counter-options.php:133
|
63 |
-
#: counter-options.php:134
|
64 |
-
#, php-format
|
65 |
#@ cpd
|
|
|
|
|
|
|
|
|
66 |
msgid "Table %s deleted"
|
67 |
msgstr "%s tablo silindi."
|
68 |
|
69 |
-
#: counter-options.php:135
|
70 |
#@ cpd
|
|
|
71 |
msgid "Options deleted"
|
72 |
msgstr "Seçenekler silindi"
|
73 |
|
74 |
-
#: counter-options.php:316
|
75 |
-
#: counter-options.php:796
|
76 |
#@ cpd
|
|
|
|
|
77 |
msgid "Uninstall"
|
78 |
msgstr "Kaldır"
|
79 |
|
80 |
-
#: counter-options.php:317
|
81 |
#@ cpd
|
|
|
82 |
msgid "Click here"
|
83 |
msgstr "Burayı tıklayın"
|
84 |
|
85 |
-
#: counter-options.php:317
|
86 |
#@ cpd
|
|
|
87 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
88 |
msgstr "\"Count per Day\" kaldırmak ve etkisizleştirmek için."
|
89 |
|
90 |
-
#: counter-options.php:351
|
91 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
msgid "Counter"
|
93 |
msgstr "Sayaç"
|
94 |
|
95 |
-
#: counter-options.php:355
|
96 |
#@ cpd
|
|
|
97 |
msgid "Online time"
|
98 |
msgstr "Online süresi"
|
99 |
|
100 |
-
#: counter-options.php:356
|
101 |
#@ cpd
|
|
|
102 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
103 |
msgstr "Online sayaç için saniye. Kontrol sayfasındaki \"Visitors online\" kullan."
|
104 |
|
105 |
-
#: counter-options.php:359
|
106 |
#@ cpd
|
|
|
107 |
msgid "Logged on Users"
|
108 |
msgstr "Giriş yapmış kullanıcılar"
|
109 |
|
110 |
-
#: counter-options.php:361
|
111 |
#@ cpd
|
|
|
112 |
msgid "count too"
|
113 |
msgstr "saymak"
|
114 |
|
115 |
-
#: counter-options.php:362
|
116 |
#@ cpd
|
|
|
117 |
msgid "until User Level"
|
118 |
msgstr "kullanıcı seviye kadar"
|
119 |
|
120 |
-
#: counter-options.php:373
|
121 |
#@ cpd
|
|
|
122 |
msgid "Auto counter"
|
123 |
msgstr "Otomatik sayaç"
|
124 |
|
125 |
-
#: counter-options.php:374
|
126 |
#@ cpd
|
|
|
127 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
128 |
msgstr "Otomatik olarak tek-gönderileri ve sayfaları sayar, şablonda değişiklik gerekmez."
|
129 |
|
130 |
-
#: counter-options.php:377
|
131 |
#@ cpd
|
|
|
132 |
msgid "Bots to ignore"
|
133 |
msgstr "Botları önemseme"
|
134 |
|
135 |
-
#: counter-options.php:381
|
136 |
#@ cpd
|
|
|
137 |
msgid "Anonymous IP"
|
138 |
msgstr "Anonim IP"
|
139 |
|
140 |
-
#: counter-options.php:385
|
141 |
#@ cpd
|
|
|
142 |
msgid "Cache"
|
143 |
msgstr "Önbellek"
|
144 |
|
145 |
-
#: counter-options.php:386
|
146 |
#@ cpd
|
|
|
147 |
msgid "I use a cache plugin. Count these visits with ajax."
|
148 |
msgstr "Önbellek eklentisi kullanıyorum. Ziyaretçileri AJAX ile say."
|
149 |
|
150 |
-
#: counter-options.php:389
|
151 |
#@ cpd
|
|
|
152 |
msgid "Clients and referrers"
|
153 |
msgstr "Yönlendirmeler ve kullanıcılar"
|
154 |
|
155 |
-
#: counter-options.php:392
|
156 |
#@ cpd
|
|
|
157 |
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
158 |
msgstr "Kullanıcıları ve yönlendirmeleri göster ve kaydet. <br /> Veritabanında daha çok yere ihtiyaç duyar fakat ziyaretçiler hakkında detaylı bilgi verir."
|
159 |
|
160 |
-
#: counter-core.php:639
|
161 |
-
#: counter-options.php:392
|
162 |
-
#: counter.php:159
|
163 |
-
#: counter.php:875
|
164 |
#@ cpd
|
|
|
|
|
|
|
165 |
msgid "Reads"
|
166 |
msgstr "Okunma"
|
167 |
|
168 |
-
#: counter-options.php:403
|
169 |
#@ default
|
|
|
170 |
msgid "Dashboard"
|
171 |
msgstr "Kontrol paneli"
|
172 |
|
173 |
-
#: counter-core.php:727
|
174 |
-
#: counter-options.php:438
|
175 |
#@ cpd
|
|
|
|
|
176 |
msgid "Visitors per post"
|
177 |
msgstr "Gönderi başına ziyaretçi"
|
178 |
|
179 |
-
#: counter-options.php:439
|
180 |
-
#: counter-options.php:443
|
181 |
#@ cpd
|
|
|
|
|
182 |
msgid "How many posts do you want to see on dashboard page?"
|
183 |
msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
|
184 |
|
185 |
-
#: counter-options.php:442
|
186 |
#@ cpd
|
|
|
187 |
msgid "Latest Counts - Posts"
|
188 |
msgstr "Son sayım - Gönderi"
|
189 |
|
190 |
-
#: counter-options.php:446
|
191 |
#@ cpd
|
|
|
192 |
msgid "Latest Counts - Days"
|
193 |
msgstr "Son sayaç - Gün"
|
194 |
|
195 |
-
#: counter-options.php:447
|
196 |
-
#: counter-options.php:451
|
197 |
-
#: counter-options.php:473
|
198 |
#@ cpd
|
|
|
|
|
|
|
199 |
msgid "How many days do you want look back?"
|
200 |
msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
|
201 |
|
202 |
-
#: counter-options.php:450
|
203 |
#@ cpd
|
|
|
204 |
msgid "Chart - Days"
|
205 |
msgstr "Grafik - Gün"
|
206 |
|
207 |
-
#: counter-options.php:454
|
208 |
#@ cpd
|
|
|
209 |
msgid "Chart - Height"
|
210 |
msgstr "Grafik - Yükseklik"
|
211 |
|
212 |
-
#: counter-options.php:455
|
213 |
#@ cpd
|
|
|
214 |
msgid "Height of the biggest bar"
|
215 |
msgstr "En büyük bar'ın yüksekliği"
|
216 |
|
217 |
-
#: counter-options.php:459
|
218 |
#@ cpd
|
|
|
219 |
msgid "Countries"
|
220 |
msgstr "Ülkeler"
|
221 |
|
222 |
-
#: counter-options.php:460
|
223 |
#@ cpd
|
|
|
224 |
msgid "How many countries do you want to see on dashboard page?"
|
225 |
msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
|
226 |
|
227 |
-
#: counter-core.php:733
|
228 |
-
#: counter-options.php:464
|
229 |
#@ cpd
|
|
|
|
|
230 |
msgid "Browsers"
|
231 |
msgstr "Tarayıcılar"
|
232 |
|
233 |
-
#: counter-options.php:465
|
234 |
#@ cpd
|
|
|
235 |
msgid "Substring of the user agent, separated by comma"
|
236 |
msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
|
237 |
|
238 |
-
#: counter-options.php:476
|
239 |
#@ cpd
|
|
|
240 |
msgid "Local URLs"
|
241 |
msgstr "Websitenizdeki URL'ler"
|
242 |
|
243 |
-
#: counter-options.php:477
|
244 |
#@ cpd
|
|
|
245 |
msgid "Show local referrers too."
|
246 |
msgstr "Websitenizden yönlenenler."
|
247 |
|
248 |
-
#: counter-options.php:485
|
249 |
#@ default
|
|
|
250 |
msgid "Posts"
|
251 |
msgstr "Gönderiler"
|
252 |
|
253 |
-
#: counter-options.php:485
|
254 |
#@ default
|
|
|
255 |
msgid "Pages"
|
256 |
msgstr "Sayfalar"
|
257 |
|
258 |
-
#: counter-options.php:488
|
259 |
#@ cpd
|
|
|
260 |
msgid "Show in lists"
|
261 |
msgstr "Liste içinde göster"
|
262 |
|
263 |
-
#: counter-options.php:489
|
264 |
#@ cpd
|
|
|
265 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
266 |
msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
|
267 |
|
268 |
-
#: counter-options.php:497
|
269 |
#@ cpd
|
|
|
270 |
msgid "Start Values"
|
271 |
msgstr "Başlangıç değeri"
|
272 |
|
273 |
-
#: counter-options.php:501
|
274 |
#@ cpd
|
|
|
275 |
msgid "Here you can change the date of first count and add a start count."
|
276 |
msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
|
277 |
|
278 |
-
#: counter-options.php:505
|
279 |
#@ cpd
|
|
|
280 |
msgid "Start date"
|
281 |
msgstr "Başlama tarihi"
|
282 |
|
283 |
-
#: counter-options.php:506
|
284 |
#@ cpd
|
|
|
285 |
msgid "Your old Counter starts at?"
|
286 |
msgstr "Eski sayacının başlangıç değeri ?"
|
287 |
|
288 |
-
#: counter-options.php:509
|
289 |
-
#: counter-options.php:513
|
290 |
#@ cpd
|
|
|
|
|
291 |
msgid "Start count"
|
292 |
msgstr "Başlama sayacı"
|
293 |
|
294 |
-
#: counter-options.php:510
|
295 |
#@ cpd
|
|
|
296 |
msgid "Add this value to \"Total visitors\"."
|
297 |
msgstr "Bu değeri ekle \"Total visitors\"."
|
298 |
|
299 |
-
#: counter-options.php:514
|
300 |
#@ cpd
|
|
|
301 |
msgid "Add this value to \"Total reads\"."
|
302 |
msgstr "Bu değeri ekle \"Total reads\"."
|
303 |
|
304 |
-
#: counter-options.php:554
|
305 |
#@ cpd
|
|
|
306 |
msgid "Debug mode"
|
307 |
msgstr "Problem çözme modu"
|
308 |
|
309 |
-
#: counter-options.php:556
|
310 |
#@ cpd
|
|
|
311 |
msgid "Show debug informations at the bottom of all pages."
|
312 |
msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
|
313 |
|
314 |
-
#: counter-options.php:561
|
315 |
#@ cpd
|
|
|
316 |
msgid "Update options"
|
317 |
msgstr "Seçenekleri güncelle"
|
318 |
|
319 |
-
#: counter-options.php:727
|
320 |
#@ cpd
|
|
|
321 |
msgid "GeoIP - Countries"
|
322 |
msgstr "GeoIP - Ülkeler"
|
323 |
|
324 |
-
#: counter-options.php:736
|
325 |
#@ cpd
|
|
|
326 |
msgid "Update old counter data"
|
327 |
msgstr "Eski sayaç verilerini güncelle"
|
328 |
|
329 |
-
#: counter-options.php:730
|
330 |
#@ cpd
|
|
|
331 |
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
332 |
msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
|
333 |
|
334 |
-
#: counter-options.php:748
|
335 |
#@ cpd
|
|
|
336 |
msgid "Update GeoIP database"
|
337 |
msgstr "GeoIP veritabanını günce.elle."
|
338 |
|
339 |
-
#: counter-options.php:743
|
340 |
#@ cpd
|
|
|
341 |
msgid "Download a new version of GeoIP.dat file."
|
342 |
msgstr "En son GeoIP.dat dosyasını indir."
|
343 |
|
344 |
-
#: counter-options.php:753
|
345 |
#@ cpd
|
|
|
346 |
msgid "More informations about GeoIP"
|
347 |
msgstr "GeoIP hakkında daha fazla bilgi"
|
348 |
|
349 |
-
#: counter-options.php:580
|
350 |
-
#: massbots.php:35
|
351 |
#@ cpd
|
|
|
|
|
352 |
msgid "Mass Bots"
|
353 |
msgstr "Kitle botları"
|
354 |
|
355 |
-
#: counter-options.php:584
|
356 |
-
#, php-format
|
357 |
#@ cpd
|
|
|
|
|
358 |
msgid "Show all IPs with more than %s page views per day"
|
359 |
msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
|
360 |
|
361 |
-
#: counter-options.php:585
|
362 |
-
#: notes.php:71
|
363 |
-
#: userperspan.php:44
|
364 |
#@ cpd
|
|
|
|
|
|
|
365 |
msgid "show"
|
366 |
msgstr "göster"
|
367 |
|
368 |
-
#: counter-options.php:593
|
369 |
#@ cpd
|
|
|
370 |
msgid "IP"
|
371 |
msgstr "IP"
|
372 |
|
373 |
-
#: counter-options.php:594
|
374 |
-
#: notes.php:75
|
375 |
#@ cpd
|
376 |
#@ default
|
|
|
|
|
377 |
msgid "Date"
|
378 |
msgstr "Tarih"
|
379 |
|
380 |
-
#: counter-options.php:595
|
381 |
#@ cpd
|
|
|
382 |
msgid "Client"
|
383 |
msgstr "Müşteri/Kullanıcı"
|
384 |
|
385 |
-
#: counter-options.php:596
|
386 |
#@ cpd
|
|
|
387 |
msgid "Views"
|
388 |
msgstr "Görünümler"
|
389 |
|
390 |
-
#: counter-options.php:611
|
391 |
-
#: counter-options.php:627
|
392 |
-
#, php-format
|
393 |
#@ cpd
|
|
|
|
|
|
|
394 |
msgid "Delete these %s counts"
|
395 |
msgstr "%s sayaçları sil"
|
396 |
|
397 |
-
#: counter-options.php:656
|
398 |
-
#: counter-options.php:665
|
399 |
#@ cpd
|
|
|
|
|
400 |
msgid "Clean the database"
|
401 |
msgstr "Veritabanını temizle."
|
402 |
|
403 |
-
#: counter-options.php:659
|
404 |
#@ cpd
|
|
|
405 |
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
406 |
msgstr "\"spam data\" ile sayaç tablosunuz temizleyebilirsiniz. .<br /> Eğer yukarıya yeni botlar eklerseniz veritabanında ki eski \"spam data\" tutabilirsiniz. Buradan botlar için filitre çalıştırabilirsiniz ve botların ziyaretlerini silinir."
|
407 |
|
408 |
-
#: counter-options.php:777
|
409 |
-
#: counter-options.php:787
|
410 |
#@ cpd
|
|
|
|
|
411 |
msgid "Reset the counter"
|
412 |
msgstr "Sayacı resetle"
|
413 |
|
414 |
-
#: counter-options.php:780
|
415 |
#@ cpd
|
|
|
416 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
417 |
msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
|
418 |
|
419 |
-
#: counter-options.php:799
|
420 |
#@ cpd
|
|
|
421 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
422 |
msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
|
423 |
|
424 |
-
#: counter-options.php:800
|
425 |
#@ cpd
|
|
|
426 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
427 |
msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
|
428 |
|
429 |
-
#: counter-options.php:803
|
430 |
#@ cpd
|
|
|
431 |
msgid "WARNING"
|
432 |
msgstr "UYARI"
|
433 |
|
434 |
-
#: counter-options.php:804
|
435 |
#@ cpd
|
|
|
436 |
msgid "These tables (with ALL counter data) will be deleted."
|
437 |
msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
|
438 |
|
439 |
-
#: counter-options.php:806
|
440 |
#@ cpd
|
|
|
441 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
442 |
msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
|
443 |
|
444 |
-
#: counter-options.php:786
|
445 |
-
#: counter-options.php:809
|
446 |
#@ cpd
|
|
|
447 |
msgid "Yes"
|
448 |
msgstr "Evet"
|
449 |
|
450 |
-
#: counter-options.php:810
|
451 |
#@ cpd
|
|
|
452 |
msgid "You are sure to disable Count per Day and delete all data?"
|
453 |
msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
|
454 |
|
455 |
-
#: counter-options.php:714
|
456 |
#@ cpd
|
|
|
457 |
msgid "Support"
|
458 |
msgstr "Destek"
|
459 |
|
460 |
-
#: counter.php:155
|
461 |
-
#: counter.php:1197
|
462 |
#@ cpd
|
|
|
|
|
463 |
msgid "Total reads"
|
464 |
msgstr "Toplam okunan."
|
465 |
|
466 |
-
#: counter.php:156
|
467 |
-
#: counter.php:1198
|
468 |
#@ cpd
|
|
|
|
|
469 |
msgid "Reads today"
|
470 |
msgstr "Bugün okunanlar"
|
471 |
|
472 |
-
#: counter.php:157
|
473 |
-
#: counter.php:1199
|
474 |
#@ cpd
|
|
|
|
|
475 |
msgid "Reads yesterday"
|
476 |
msgstr "Dün okunanlar"
|
477 |
|
478 |
-
#: counter.php:158
|
479 |
-
#: counter.php:1200
|
480 |
#@ cpd
|
|
|
|
|
481 |
msgid "Reads last week"
|
482 |
msgstr "Geçen hafta okunanlar"
|
483 |
|
484 |
-
#: counter-core.php:723
|
485 |
-
#: counter.php:160
|
486 |
-
#: counter.php:1010
|
487 |
-
#: counter.php:1202
|
488 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
489 |
msgid "Total visitors"
|
490 |
msgstr "Toplam ziyaretçi"
|
491 |
|
492 |
-
#: counter.php:161
|
493 |
-
#: counter.php:1208
|
494 |
#@ cpd
|
|
|
|
|
495 |
msgid "Visitors currently online"
|
496 |
msgstr "Şu anda online olan ziyatçiler"
|
497 |
|
498 |
-
#: counter.php:162
|
499 |
-
#: counter.php:1203
|
500 |
#@ cpd
|
|
|
|
|
501 |
msgid "Visitors today"
|
502 |
msgstr "Bugün kü ziyaretçiler"
|
503 |
|
504 |
-
#: counter.php:163
|
505 |
-
#: counter.php:1204
|
506 |
#@ cpd
|
|
|
|
|
507 |
msgid "Visitors yesterday"
|
508 |
msgstr "Dünkü ziyaretçiler"
|
509 |
|
510 |
-
#: counter.php:164
|
511 |
-
#: counter.php:1205
|
512 |
#@ cpd
|
|
|
|
|
513 |
msgid "Visitors last week"
|
514 |
msgstr "Geçen haftaki ziyaretçiler"
|
515 |
|
516 |
-
#: counter-core.php:729
|
517 |
-
#: counter.php:166
|
518 |
-
#: counter.php:263
|
519 |
-
#: counter.php:1012
|
520 |
-
#: counter.php:1207
|
521 |
-
#: userperspan.php:34
|
522 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
523 |
msgid "Visitors per day"
|
524 |
msgstr "Günlük ziyaretçi"
|
525 |
|
526 |
-
#: counter.php:167
|
527 |
-
#: counter.php:825
|
528 |
-
#: counter.php:1209
|
529 |
#@ cpd
|
|
|
|
|
530 |
msgid "Counter starts on"
|
531 |
msgstr "Sayaç başlıyacak"
|
532 |
|
533 |
-
#: counter.php:788
|
534 |
-
#: notes.php:42
|
535 |
-
#: notes.php:76
|
536 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgid "Notes"
|
538 |
msgstr "Notlar"
|
539 |
|
540 |
-
#: counter.php:672
|
541 |
-
#, php-format
|
542 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
msgid "The %s most visited posts in last %s days:"
|
544 |
msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
|
545 |
|
546 |
-
#: counter.php:786
|
547 |
#@ default
|
|
|
548 |
msgid "Show"
|
549 |
msgstr "Göster"
|
550 |
|
551 |
-
#: counter.php:821
|
552 |
#@ cpd
|
|
|
553 |
msgid "Other"
|
554 |
msgstr "Diğer"
|
555 |
|
556 |
-
#: counter.php:976
|
557 |
#@ default
|
|
|
558 |
msgid "Edit Post"
|
559 |
msgstr "Gönderi düzenle"
|
560 |
|
561 |
-
#: counter.php:985
|
562 |
#@ default
|
|
|
563 |
msgid "Category"
|
564 |
msgstr "Katogori"
|
565 |
|
566 |
-
#: counter.php:988
|
567 |
#@ default
|
|
|
568 |
msgid "Tag"
|
569 |
msgstr "Таg"
|
570 |
|
571 |
-
#: counter.php:991
|
572 |
-
#: massbots.php:52
|
573 |
-
#: userperspan.php:63
|
574 |
#@ default
|
|
|
|
|
|
|
575 |
msgid "Front page displays"
|
576 |
msgstr "Ön sayfa görüntüleri"
|
577 |
|
578 |
-
#: counter-core.php:575
|
579 |
-
#: counter-options.php:341
|
580 |
-
#: counter-options.php:565
|
581 |
#@ default
|
|
|
582 |
msgid "Settings"
|
583 |
msgstr "Ayarlar"
|
584 |
|
585 |
-
#: counter-core.php:689
|
586 |
-
#, php-format
|
587 |
#@ cpd
|
|
|
|
|
588 |
msgid "Time for Count per Day: <code>%s</code>."
|
589 |
msgstr "Günlük sayım için zaman: <code>%s</code>."
|
590 |
|
591 |
-
#: counter-core.php:690
|
592 |
#@ cpd
|
|
|
593 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
594 |
msgstr "Problem? Soru? Fikir? Övgü?"
|
595 |
|
596 |
-
#: counter-core.php:691
|
597 |
-
#, php-format
|
598 |
#@ cpd
|
|
|
|
|
599 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
600 |
msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
|
601 |
|
602 |
-
#: counter-core.php:692
|
603 |
#@ default
|
|
|
604 |
msgid "License"
|
605 |
msgstr "Lisans"
|
606 |
|
607 |
-
#: counter.php:262
|
608 |
#@ cpd
|
|
|
|
|
609 |
msgid "Reads per day"
|
610 |
msgstr "Günlük ortalama okunma"
|
611 |
|
612 |
-
#: counter-core.php:725
|
613 |
-
#: counter.php:1206
|
614 |
#@ cpd
|
|
|
|
|
615 |
msgid "Visitors per month"
|
616 |
msgstr "Aylık ziyaretçi"
|
617 |
|
618 |
-
#: counter-core.php:726
|
619 |
-
#: counter.php:1201
|
620 |
#@ cpd
|
|
|
|
|
621 |
msgid "Reads per month"
|
622 |
msgstr "Aylık okunma"
|
623 |
|
624 |
-
#: counter-core.php:728
|
625 |
#@ cpd
|
|
|
626 |
msgid "Latest Counts"
|
627 |
msgstr "Son sayım"
|
628 |
|
629 |
-
#: counter-core.php:730
|
630 |
#@ default
|
|
|
631 |
msgid "Plugin"
|
632 |
msgstr "Eklenti"
|
633 |
|
634 |
-
#: counter-core.php:734
|
635 |
#@ cpd
|
|
|
636 |
msgid "Referrer"
|
637 |
msgstr "Yönlendirme"
|
638 |
|
639 |
-
#: counter-core.php:738
|
640 |
#@ cpd
|
|
|
641 |
msgid "Reads per Country"
|
642 |
msgstr "Ülke bazında okuma"
|
643 |
|
644 |
-
#: counter-core.php:739
|
645 |
#@ cpd
|
|
|
646 |
msgid "Visitors per Country"
|
647 |
msgstr "Ülke bazında ziyaretçi"
|
648 |
|
649 |
-
#: counter-core.php:754
|
650 |
-
#: counter.php:1124
|
651 |
#@ cpd
|
|
|
|
|
652 |
msgid "Statistics"
|
653 |
msgstr "İstatislikler"
|
654 |
|
655 |
-
#: counter.php:353
|
656 |
-
#: counter.php:1041
|
657 |
#@ cpd
|
|
|
|
|
658 |
msgid "Map"
|
659 |
msgstr "Harita"
|
660 |
|
661 |
-
#: counter.php:1196
|
662 |
#@ cpd
|
|
|
663 |
msgid "This post"
|
664 |
msgstr "Bu gönderi"
|
665 |
|
666 |
-
#: counter.php:1220
|
667 |
#@ default
|
|
|
668 |
msgid "Title"
|
669 |
msgstr "Başlık"
|
670 |
|
671 |
-
#: geoip/geoip.php:93
|
672 |
#@ cpd
|
|
|
673 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
674 |
msgstr "Üzgünüm, gerekli fonksiyonlar yüklü değil (zlib) yada php.ini içinde kapalı."
|
675 |
|
676 |
-
#: geoip/geoip.php:117
|
677 |
#@ cpd
|
|
|
678 |
msgid "New GeoIP database installed."
|
679 |
msgstr "Yeni GeoIP veritabanı yüklendi."
|
680 |
|
681 |
-
#: geoip/geoip.php:119
|
682 |
#@ cpd
|
|
|
683 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
684 |
msgstr "Üzgünüm, hata oluştu, \"geoip\" klasör'ünün 777 erişim hakkını kontrol edip tekrar deneyiniz."
|
685 |
|
686 |
-
|
|
|
|
|
|
|
|
|
687 |
#@ default
|
|
|
688 |
msgid "Action"
|
689 |
msgstr "Eylem"
|
690 |
|
691 |
-
#: notes.php:82
|
692 |
#@ cpd
|
|
|
693 |
msgid "add"
|
694 |
msgstr "ekle"
|
695 |
|
696 |
-
#: notes.php:98
|
697 |
#@ cpd
|
|
|
698 |
msgid "save"
|
699 |
msgstr "kaydet"
|
700 |
|
701 |
-
#: notes.php:99
|
702 |
#@ cpd
|
|
|
703 |
msgid "delete"
|
704 |
msgstr "sil"
|
705 |
|
706 |
-
#: notes.php:110
|
707 |
#@ cpd
|
|
|
708 |
msgid "edit"
|
709 |
msgstr "eüzenle"
|
710 |
|
711 |
-
#: userperspan.php:38
|
712 |
#@ cpd
|
|
|
713 |
msgid "Start"
|
714 |
msgstr "Başlangıç"
|
715 |
|
716 |
-
#: userperspan.php:40
|
717 |
#@ cpd
|
|
|
718 |
msgid "End"
|
719 |
msgstr "Son"
|
720 |
|
721 |
-
#: userperspan.php:42
|
722 |
#@ cpd
|
|
|
723 |
msgid "PostID"
|
724 |
msgstr "Gönderi ID"
|
725 |
|
726 |
-
#: userperspan.php:50
|
727 |
#@ cpd
|
|
|
728 |
msgid "no data found"
|
729 |
msgstr "veri bulunamadı"
|
730 |
|
731 |
-
#: counter-options.php:468
|
732 |
#@ cpd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
msgid "Referrers - Entries"
|
734 |
msgstr "Yönlendirmeleri - Girişler"
|
735 |
|
736 |
-
#: counter-options.php:469
|
737 |
#@ cpd
|
|
|
738 |
msgid "How many referrers do you want to see on dashboard page?"
|
739 |
msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
|
740 |
|
741 |
-
#: counter-options.php:472
|
742 |
#@ cpd
|
|
|
743 |
msgid "Referrers - Days"
|
744 |
msgstr "Yönlendirmeler - Günler"
|
745 |
|
746 |
-
#: counter.php:845
|
747 |
-
#, php-format
|
748 |
#@ cpd
|
|
|
|
|
749 |
msgid "The %s referrers in last %s days:"
|
750 |
msgstr "Son %s günkü yönlendirmeler:"
|
751 |
|
752 |
-
#: counter-core.php:724
|
753 |
#@ cpd
|
|
|
754 |
msgid "Visitors online"
|
755 |
msgstr "Online ziyaretçiler."
|
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 > size after = %s)."
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: counter-options.php:294
|
813 |
-
#@ cpd
|
814 |
-
msgid "Installation of \"Count per Day\" checked"
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: counter-options.php:342
|
818 |
-
#: counter-options.php:566
|
819 |
-
#@ default
|
820 |
-
msgid "Tools"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: counter-options.php:394
|
824 |
-
#@ cpd
|
825 |
-
msgid "Save URL only, no query string."
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: counter-options.php:419
|
829 |
-
#@ cpd
|
830 |
-
msgid "Who can see it"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: counter-options.php:428
|
834 |
-
#@ cpd
|
835 |
-
msgid "custom"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: counter-options.php:430
|
839 |
-
#@ cpd
|
840 |
-
msgid "and higher are allowed to see the statistics page."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: counter-options.php:432
|
844 |
-
#, php-format
|
845 |
-
#@ cpd
|
846 |
-
msgid "Set the %s capability %s a user need:"
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: counter-options.php:522
|
850 |
-
#@ cpd
|
851 |
-
msgid "Stylesheet"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: counter-options.php:525
|
855 |
-
#@ cpd
|
856 |
-
msgid "NO Stylesheet in Frontend"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: counter-options.php:526
|
860 |
-
#@ cpd
|
861 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: counter-options.php:534
|
865 |
-
#: counter-options.php:639
|
866 |
-
#@ cpd
|
867 |
-
msgid "Backup"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: counter-options.php:537
|
871 |
-
#@ cpd
|
872 |
-
msgid "Entries per pass"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: counter-options.php:540
|
876 |
-
#@ cpd
|
877 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: counter-options.php:545
|
881 |
-
#@ cpd
|
882 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: counter-options.php:643
|
886 |
-
#, php-format
|
887 |
-
#@ cpd
|
888 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: counter-options.php:647
|
892 |
-
#@ cpd
|
893 |
-
msgid "Backup the database"
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: counter-options.php:674
|
897 |
-
#: counter-options.php:706
|
898 |
-
#@ cpd
|
899 |
-
msgid "Collect old data"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: counter-options.php:679
|
903 |
-
#, php-format
|
904 |
-
#@ cpd
|
905 |
-
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: counter-options.php:681
|
909 |
-
#@ cpd
|
910 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
911 |
-
msgstr ""
|
912 |
-
|
913 |
-
#: counter-options.php:686
|
914 |
-
#, php-format
|
915 |
-
#@ cpd
|
916 |
-
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: counter-options.php:690
|
920 |
-
#@ cpd
|
921 |
-
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: counter-options.php:696
|
925 |
-
#@ cpd
|
926 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: counter-options.php:697
|
930 |
-
#, php-format
|
931 |
-
#@ cpd
|
932 |
-
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: counter-options.php:702
|
936 |
-
#, php-format
|
937 |
-
#@ cpd
|
938 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr ""
|
940 |
-
|
941 |
-
#: counter-options.php:761
|
942 |
-
#@ cpd
|
943 |
-
msgid "ReActivation"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: counter-options.php:764
|
947 |
-
#@ cpd
|
948 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: counter-options.php:769
|
952 |
-
#@ cpd
|
953 |
-
msgid "ReActivate the plugin"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
#@ cpd
|
959 |
-
msgid "Visitors"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
#@ cpd
|
965 |
-
msgid "Most visited day"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: counter.php:1239
|
969 |
-
#@ cpd
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr ""
|
972 |
-
|
13 |
"X-Poedit-Language: 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:46
|
23 |
msgid "Options updated"
|
24 |
msgstr "Seçenekler güncellendi."
|
25 |
|
|
|
|
|
26 |
#@ cpd
|
27 |
+
#: counter-options.php:57
|
28 |
+
#, php-format
|
29 |
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
30 |
msgstr "Ülkeler güncellendi."
|
31 |
|
|
|
32 |
#@ cpd
|
33 |
+
#: counter-options.php:62
|
34 |
msgid "update next"
|
35 |
msgstr "sonraki güncelleme"
|
36 |
|
|
|
|
|
37 |
#@ cpd
|
38 |
+
#: counter-options.php:104
|
39 |
+
#, php-format
|
40 |
msgid "Mass Bots cleaned. %s counts deleted."
|
41 |
msgstr "Botlar temizlendi. %s adet silindi."
|
42 |
|
|
|
|
|
43 |
#@ cpd
|
44 |
+
#: counter-options.php:111
|
45 |
+
#, php-format
|
46 |
msgid "Database cleaned. %s rows deleted."
|
47 |
msgstr "Veritabanı temizlendi. %s satır silindi."
|
48 |
|
|
|
49 |
#@ cpd
|
50 |
+
#: counter-options.php:117
|
51 |
msgid "Counter reseted."
|
52 |
msgstr "Sayaç sıfırlandı."
|
53 |
|
|
|
|
|
54 |
#@ cpd
|
55 |
+
#: counter-options.php:121
|
56 |
+
#: counter-options.php:496
|
57 |
msgid "UNINSTALL Count per Day"
|
58 |
msgstr "Count per Day'i kaldır."
|
59 |
|
|
|
|
|
|
|
|
|
60 |
#@ cpd
|
61 |
+
#: counter-options.php:126
|
62 |
+
#: counter-options.php:128
|
63 |
+
#: counter-options.php:130
|
64 |
+
#, php-format
|
65 |
msgid "Table %s deleted"
|
66 |
msgstr "%s tablo silindi."
|
67 |
|
|
|
68 |
#@ cpd
|
69 |
+
#: counter-options.php:132
|
70 |
msgid "Options deleted"
|
71 |
msgstr "Seçenekler silindi"
|
72 |
|
|
|
|
|
73 |
#@ cpd
|
74 |
+
#: counter-options.php:156
|
75 |
+
#: counter-options.php:481
|
76 |
msgid "Uninstall"
|
77 |
msgstr "Kaldır"
|
78 |
|
|
|
79 |
#@ cpd
|
80 |
+
#: counter-options.php:157
|
81 |
msgid "Click here"
|
82 |
msgstr "Burayı tıklayın"
|
83 |
|
|
|
84 |
#@ cpd
|
85 |
+
#: counter-options.php:157
|
86 |
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
87 |
msgstr "\"Count per Day\" kaldırmak ve etkisizleştirmek için."
|
88 |
|
|
|
89 |
#@ cpd
|
90 |
+
#: counter-options.php:179
|
91 |
+
msgid "Options"
|
92 |
+
msgstr "Seçenekler"
|
93 |
+
|
94 |
+
#@ cpd
|
95 |
+
#: counter-options.php:186
|
96 |
msgid "Counter"
|
97 |
msgstr "Sayaç"
|
98 |
|
|
|
99 |
#@ cpd
|
100 |
+
#: counter-options.php:190
|
101 |
msgid "Online time"
|
102 |
msgstr "Online süresi"
|
103 |
|
|
|
104 |
#@ cpd
|
105 |
+
#: counter-options.php:191
|
106 |
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
107 |
msgstr "Online sayaç için saniye. Kontrol sayfasındaki \"Visitors online\" kullan."
|
108 |
|
|
|
109 |
#@ cpd
|
110 |
+
#: counter-options.php:194
|
111 |
msgid "Logged on Users"
|
112 |
msgstr "Giriş yapmış kullanıcılar"
|
113 |
|
|
|
114 |
#@ cpd
|
115 |
+
#: counter-options.php:196
|
116 |
msgid "count too"
|
117 |
msgstr "saymak"
|
118 |
|
|
|
119 |
#@ cpd
|
120 |
+
#: counter-options.php:197
|
121 |
msgid "until User Level"
|
122 |
msgstr "kullanıcı seviye kadar"
|
123 |
|
|
|
124 |
#@ cpd
|
125 |
+
#: counter-options.php:208
|
126 |
msgid "Auto counter"
|
127 |
msgstr "Otomatik sayaç"
|
128 |
|
|
|
129 |
#@ cpd
|
130 |
+
#: counter-options.php:209
|
131 |
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
132 |
msgstr "Otomatik olarak tek-gönderileri ve sayfaları sayar, şablonda değişiklik gerekmez."
|
133 |
|
|
|
134 |
#@ cpd
|
135 |
+
#: counter-options.php:212
|
136 |
msgid "Bots to ignore"
|
137 |
msgstr "Botları önemseme"
|
138 |
|
|
|
139 |
#@ cpd
|
140 |
+
#: counter-options.php:216
|
141 |
msgid "Anonymous IP"
|
142 |
msgstr "Anonim IP"
|
143 |
|
|
|
144 |
#@ cpd
|
145 |
+
#: counter-options.php:220
|
146 |
msgid "Cache"
|
147 |
msgstr "Önbellek"
|
148 |
|
|
|
149 |
#@ cpd
|
150 |
+
#: counter-options.php:221
|
151 |
msgid "I use a cache plugin. Count these visits with ajax."
|
152 |
msgstr "Önbellek eklentisi kullanıyorum. Ziyaretçileri AJAX ile say."
|
153 |
|
|
|
154 |
#@ cpd
|
155 |
+
#: counter-options.php:224
|
156 |
msgid "Clients and referrers"
|
157 |
msgstr "Yönlendirmeler ve kullanıcılar"
|
158 |
|
|
|
159 |
#@ cpd
|
160 |
+
#: counter-options.php:225
|
161 |
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."
|
162 |
msgstr "Kullanıcıları ve yönlendirmeleri göster ve kaydet. <br /> Veritabanında daha çok yere ihtiyaç duyar fakat ziyaretçiler hakkında detaylı bilgi verir."
|
163 |
|
|
|
|
|
|
|
|
|
164 |
#@ cpd
|
165 |
+
#: counter-options.php:225
|
166 |
+
#: counter.php:528
|
167 |
+
#: counter.php:1661
|
168 |
msgid "Reads"
|
169 |
msgstr "Okunma"
|
170 |
|
|
|
171 |
#@ default
|
172 |
+
#: counter-options.php:233
|
173 |
msgid "Dashboard"
|
174 |
msgstr "Kontrol paneli"
|
175 |
|
|
|
|
|
176 |
#@ cpd
|
177 |
+
#: counter-options.php:236
|
178 |
+
#: counter.php:1754
|
179 |
msgid "Visitors per post"
|
180 |
msgstr "Gönderi başına ziyaretçi"
|
181 |
|
|
|
|
|
182 |
#@ cpd
|
183 |
+
#: counter-options.php:237
|
184 |
+
#: counter-options.php:241
|
185 |
msgid "How many posts do you want to see on dashboard page?"
|
186 |
msgstr "Kontrol panelinde kaç gönderi görmek istersiniz ?"
|
187 |
|
|
|
188 |
#@ cpd
|
189 |
+
#: counter-options.php:240
|
190 |
msgid "Latest Counts - Posts"
|
191 |
msgstr "Son sayım - Gönderi"
|
192 |
|
|
|
193 |
#@ cpd
|
194 |
+
#: counter-options.php:244
|
195 |
msgid "Latest Counts - Days"
|
196 |
msgstr "Son sayaç - Gün"
|
197 |
|
|
|
|
|
|
|
198 |
#@ cpd
|
199 |
+
#: counter-options.php:245
|
200 |
+
#: counter-options.php:249
|
201 |
+
#: counter-options.php:275
|
202 |
msgid "How many days do you want look back?"
|
203 |
msgstr "Kaç gün geriye doğru bakmak istiyorsun?"
|
204 |
|
|
|
205 |
#@ cpd
|
206 |
+
#: counter-options.php:248
|
207 |
msgid "Chart - Days"
|
208 |
msgstr "Grafik - Gün"
|
209 |
|
|
|
210 |
#@ cpd
|
211 |
+
#: counter-options.php:252
|
212 |
msgid "Chart - Height"
|
213 |
msgstr "Grafik - Yükseklik"
|
214 |
|
|
|
215 |
#@ cpd
|
216 |
+
#: counter-options.php:253
|
217 |
msgid "Height of the biggest bar"
|
218 |
msgstr "En büyük bar'ın yüksekliği"
|
219 |
|
|
|
220 |
#@ cpd
|
221 |
+
#: counter-options.php:261
|
222 |
msgid "Countries"
|
223 |
msgstr "Ülkeler"
|
224 |
|
|
|
225 |
#@ cpd
|
226 |
+
#: counter-options.php:262
|
227 |
msgid "How many countries do you want to see on dashboard page?"
|
228 |
msgstr "Kontrol panelde kaç ülke görmek istiyorsun ?"
|
229 |
|
|
|
|
|
230 |
#@ cpd
|
231 |
+
#: counter-options.php:266
|
232 |
+
#: counter.php:1760
|
233 |
msgid "Browsers"
|
234 |
msgstr "Tarayıcılar"
|
235 |
|
|
|
236 |
#@ cpd
|
237 |
+
#: counter-options.php:267
|
238 |
msgid "Substring of the user agent, separated by comma"
|
239 |
msgstr "Kullanıcıların altdizileri, virgül ile ayrılır"
|
240 |
|
|
|
241 |
#@ cpd
|
242 |
+
#: counter-options.php:278
|
243 |
msgid "Local URLs"
|
244 |
msgstr "Websitenizdeki URL'ler"
|
245 |
|
|
|
246 |
#@ cpd
|
247 |
+
#: counter-options.php:279
|
248 |
msgid "Show local referrers too."
|
249 |
msgstr "Websitenizden yönlenenler."
|
250 |
|
|
|
251 |
#@ default
|
252 |
+
#: counter-options.php:287
|
253 |
msgid "Posts"
|
254 |
msgstr "Gönderiler"
|
255 |
|
|
|
256 |
#@ default
|
257 |
+
#: counter-options.php:287
|
258 |
msgid "Pages"
|
259 |
msgstr "Sayfalar"
|
260 |
|
|
|
261 |
#@ cpd
|
262 |
+
#: counter-options.php:290
|
263 |
msgid "Show in lists"
|
264 |
msgstr "Liste içinde göster"
|
265 |
|
|
|
266 |
#@ cpd
|
267 |
+
#: counter-options.php:291
|
268 |
msgid "Show \"Reads per Post\" in a new column in post management views."
|
269 |
msgstr "Yönetim panaline \"Reads per Post\" sutununu ekle"
|
270 |
|
|
|
271 |
#@ cpd
|
272 |
+
#: counter-options.php:299
|
273 |
msgid "Start Values"
|
274 |
msgstr "Başlangıç değeri"
|
275 |
|
|
|
276 |
#@ cpd
|
277 |
+
#: counter-options.php:303
|
278 |
msgid "Here you can change the date of first count and add a start count."
|
279 |
msgstr "Burada başlama sayacın ve ilk sayacın tarhini değiştirebilirsin."
|
280 |
|
|
|
281 |
#@ cpd
|
282 |
+
#: counter-options.php:307
|
283 |
msgid "Start date"
|
284 |
msgstr "Başlama tarihi"
|
285 |
|
|
|
286 |
#@ cpd
|
287 |
+
#: counter-options.php:308
|
288 |
msgid "Your old Counter starts at?"
|
289 |
msgstr "Eski sayacının başlangıç değeri ?"
|
290 |
|
|
|
|
|
291 |
#@ cpd
|
292 |
+
#: counter-options.php:311
|
293 |
+
#: counter-options.php:315
|
294 |
msgid "Start count"
|
295 |
msgstr "Başlama sayacı"
|
296 |
|
|
|
297 |
#@ cpd
|
298 |
+
#: counter-options.php:312
|
299 |
msgid "Add this value to \"Total visitors\"."
|
300 |
msgstr "Bu değeri ekle \"Total visitors\"."
|
301 |
|
|
|
302 |
#@ cpd
|
303 |
+
#: counter-options.php:316
|
304 |
msgid "Add this value to \"Total reads\"."
|
305 |
msgstr "Bu değeri ekle \"Total reads\"."
|
306 |
|
|
|
307 |
#@ cpd
|
308 |
+
#: counter-options.php:324
|
309 |
msgid "Debug mode"
|
310 |
msgstr "Problem çözme modu"
|
311 |
|
|
|
312 |
#@ cpd
|
313 |
+
#: counter-options.php:326
|
314 |
msgid "Show debug informations at the bottom of all pages."
|
315 |
msgstr "Problem çözme modu bilgilerini tüm sayfaların en altında göster."
|
316 |
|
|
|
317 |
#@ cpd
|
318 |
+
#: counter-options.php:331
|
319 |
msgid "Update options"
|
320 |
msgstr "Seçenekleri güncelle"
|
321 |
|
|
|
322 |
#@ cpd
|
323 |
+
#: counter-options.php:340
|
324 |
msgid "GeoIP - Countries"
|
325 |
msgstr "GeoIP - Ülkeler"
|
326 |
|
|
|
327 |
#@ cpd
|
328 |
+
#: counter-options.php:349
|
329 |
msgid "Update old counter data"
|
330 |
msgstr "Eski sayaç verilerini güncelle"
|
331 |
|
|
|
332 |
#@ cpd
|
333 |
+
#: counter-options.php:352
|
334 |
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!"
|
335 |
msgstr "GeoIP veritabanına karşı IP adreslerini kontrol ederek, tüm girişler için ülke verisini alabilirsin. Bu biraz zaman alabilir!"
|
336 |
|
|
|
337 |
#@ cpd
|
338 |
+
#: counter-options.php:362
|
339 |
msgid "Update GeoIP database"
|
340 |
msgstr "GeoIP veritabanını günce.elle."
|
341 |
|
|
|
342 |
#@ cpd
|
343 |
+
#: counter-options.php:365
|
344 |
msgid "Download a new version of GeoIP.dat file."
|
345 |
msgstr "En son GeoIP.dat dosyasını indir."
|
346 |
|
|
|
347 |
#@ cpd
|
348 |
+
#: counter-options.php:371
|
349 |
msgid "More informations about GeoIP"
|
350 |
msgstr "GeoIP hakkında daha fazla bilgi"
|
351 |
|
|
|
|
|
352 |
#@ cpd
|
353 |
+
#: counter-options.php:386
|
354 |
+
#: massbots.php:33
|
355 |
msgid "Mass Bots"
|
356 |
msgstr "Kitle botları"
|
357 |
|
|
|
|
|
358 |
#@ cpd
|
359 |
+
#: counter-options.php:390
|
360 |
+
#, php-format
|
361 |
msgid "Show all IPs with more than %s page views per day"
|
362 |
msgstr "Günde %s sayfadan fazla görüntüleyen tüm IP leri göster"
|
363 |
|
|
|
|
|
|
|
364 |
#@ cpd
|
365 |
+
#: counter-options.php:391
|
366 |
+
#: notes.php:76
|
367 |
+
#: userperspan.php:43
|
368 |
msgid "show"
|
369 |
msgstr "göster"
|
370 |
|
|
|
371 |
#@ cpd
|
372 |
+
#: counter-options.php:399
|
373 |
msgid "IP"
|
374 |
msgstr "IP"
|
375 |
|
|
|
|
|
376 |
#@ cpd
|
377 |
#@ default
|
378 |
+
#: counter-options.php:400
|
379 |
+
#: notes.php:80
|
380 |
msgid "Date"
|
381 |
msgstr "Tarih"
|
382 |
|
|
|
383 |
#@ cpd
|
384 |
+
#: counter-options.php:401
|
385 |
msgid "Client"
|
386 |
msgstr "Müşteri/Kullanıcı"
|
387 |
|
|
|
388 |
#@ cpd
|
389 |
+
#: counter-options.php:402
|
390 |
msgid "Views"
|
391 |
msgstr "Görünümler"
|
392 |
|
|
|
|
|
|
|
393 |
#@ cpd
|
394 |
+
#: counter-options.php:413
|
395 |
+
#: counter-options.php:435
|
396 |
+
#, php-format
|
397 |
msgid "Delete these %s counts"
|
398 |
msgstr "%s sayaçları sil"
|
399 |
|
|
|
|
|
400 |
#@ cpd
|
401 |
+
#: counter-options.php:445
|
402 |
+
#: counter-options.php:454
|
403 |
msgid "Clean the database"
|
404 |
msgstr "Veritabanını temizle."
|
405 |
|
|
|
406 |
#@ cpd
|
407 |
+
#: counter-options.php:448
|
408 |
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."
|
409 |
msgstr "\"spam data\" ile sayaç tablosunuz temizleyebilirsiniz. .<br /> Eğer yukarıya yeni botlar eklerseniz veritabanında ki eski \"spam data\" tutabilirsiniz. Buradan botlar için filitre çalıştırabilirsiniz ve botların ziyaretlerini silinir."
|
410 |
|
|
|
|
|
411 |
#@ cpd
|
412 |
+
#: counter-options.php:463
|
413 |
+
#: counter-options.php:472
|
414 |
msgid "Reset the counter"
|
415 |
msgstr "Sayacı resetle"
|
416 |
|
|
|
417 |
#@ cpd
|
418 |
+
#: counter-options.php:466
|
419 |
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
420 |
msgstr "Boş tablo kullanarak sayaçları sıfırlarsınız. Şuanki verilere ihtiyacınız var ise yedek alın."
|
421 |
|
|
|
422 |
#@ cpd
|
423 |
+
#: counter-options.php:484
|
424 |
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
425 |
msgstr "Eğer \"Count per Day\" sadece kapatıldı ise, veritabanındaki tablolar korunmuş olur."
|
426 |
|
|
|
427 |
#@ cpd
|
428 |
+
#: counter-options.php:485
|
429 |
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
430 |
msgstr "Buradan tabloları silebilir ve \"Count per Day\" kapatabilirsiniz."
|
431 |
|
|
|
432 |
#@ cpd
|
433 |
+
#: counter-options.php:488
|
434 |
msgid "WARNING"
|
435 |
msgstr "UYARI"
|
436 |
|
|
|
437 |
#@ cpd
|
438 |
+
#: counter-options.php:489
|
439 |
msgid "These tables (with ALL counter data) will be deleted."
|
440 |
msgstr "Bu tablolar silinecek (bütün sayaç bilgileri ile birlikte)."
|
441 |
|
|
|
442 |
#@ cpd
|
443 |
+
#: counter-options.php:491
|
444 |
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
445 |
msgstr "Eğer \"Count per Day\" 'i yeniden kurarsan, tüm sayaçlar sıfır '0'dan başlar."
|
446 |
|
|
|
|
|
447 |
#@ cpd
|
448 |
+
#: counter-options.php:495
|
449 |
msgid "Yes"
|
450 |
msgstr "Evet"
|
451 |
|
|
|
452 |
#@ cpd
|
453 |
+
#: counter-options.php:496
|
454 |
msgid "You are sure to disable Count per Day and delete all data?"
|
455 |
msgstr "Count per Day'i devredışı bırakmak ve tüm verileri silmek istediğinizden emin misiniz ?"
|
456 |
|
|
|
457 |
#@ cpd
|
458 |
+
#: counter-options.php:504
|
459 |
msgid "Support"
|
460 |
msgstr "Destek"
|
461 |
|
|
|
|
|
462 |
#@ cpd
|
463 |
+
#: counter.php:524
|
464 |
+
#: counter.php:2219
|
465 |
msgid "Total reads"
|
466 |
msgstr "Toplam okunan."
|
467 |
|
|
|
|
|
468 |
#@ cpd
|
469 |
+
#: counter.php:525
|
470 |
+
#: counter.php:2220
|
471 |
msgid "Reads today"
|
472 |
msgstr "Bugün okunanlar"
|
473 |
|
|
|
|
|
474 |
#@ cpd
|
475 |
+
#: counter.php:526
|
476 |
+
#: counter.php:2221
|
477 |
msgid "Reads yesterday"
|
478 |
msgstr "Dün okunanlar"
|
479 |
|
|
|
|
|
480 |
#@ cpd
|
481 |
+
#: counter.php:527
|
482 |
+
#: counter.php:2222
|
483 |
msgid "Reads last week"
|
484 |
msgstr "Geçen hafta okunanlar"
|
485 |
|
|
|
|
|
|
|
|
|
486 |
#@ cpd
|
487 |
+
#: counter.php:529
|
488 |
+
#: counter.php:534
|
489 |
+
#: counter.php:1604
|
490 |
+
#: counter.php:1750
|
491 |
+
#: counter.php:2224
|
492 |
msgid "Total visitors"
|
493 |
msgstr "Toplam ziyaretçi"
|
494 |
|
|
|
|
|
495 |
#@ cpd
|
496 |
+
#: counter.php:530
|
497 |
+
#: counter.php:2230
|
498 |
msgid "Visitors currently online"
|
499 |
msgstr "Şu anda online olan ziyatçiler"
|
500 |
|
|
|
|
|
501 |
#@ cpd
|
502 |
+
#: counter.php:531
|
503 |
+
#: counter.php:2225
|
504 |
msgid "Visitors today"
|
505 |
msgstr "Bugün kü ziyaretçiler"
|
506 |
|
|
|
|
|
507 |
#@ cpd
|
508 |
+
#: counter.php:532
|
509 |
+
#: counter.php:2226
|
510 |
msgid "Visitors yesterday"
|
511 |
msgstr "Dünkü ziyaretçiler"
|
512 |
|
|
|
|
|
513 |
#@ cpd
|
514 |
+
#: counter.php:533
|
515 |
+
#: counter.php:2227
|
516 |
msgid "Visitors last week"
|
517 |
msgstr "Geçen haftaki ziyaretçiler"
|
518 |
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
#@ cpd
|
520 |
+
#: counter.php:535
|
521 |
+
#: counter.php:636
|
522 |
+
#: counter.php:1606
|
523 |
+
#: counter.php:1756
|
524 |
+
#: counter.php:1765
|
525 |
+
#: counter.php:2229
|
526 |
+
#: userperspan.php:33
|
527 |
msgid "Visitors per day"
|
528 |
msgstr "Günlük ziyaretçi"
|
529 |
|
|
|
|
|
|
|
530 |
#@ cpd
|
531 |
+
#: counter.php:536
|
532 |
+
#: counter.php:2231
|
533 |
msgid "Counter starts on"
|
534 |
msgstr "Sayaç başlıyacak"
|
535 |
|
|
|
|
|
|
|
536 |
#@ cpd
|
537 |
+
#: counter.php:819
|
538 |
+
msgid "days"
|
539 |
+
msgstr "günler"
|
540 |
+
|
541 |
+
#@ cpd
|
542 |
+
#: counter.php:822
|
543 |
+
#: counter.php:1376
|
544 |
+
#: notes.php:47
|
545 |
+
#: notes.php:81
|
546 |
msgid "Notes"
|
547 |
msgstr "Notlar"
|
548 |
|
|
|
|
|
549 |
#@ cpd
|
550 |
+
#: counter.php:845
|
551 |
+
msgid "no reads at this time"
|
552 |
+
msgstr "Şu anda okunan yok"
|
553 |
+
|
554 |
+
#@ cpd
|
555 |
+
#: counter.php:1257
|
556 |
+
#, php-format
|
557 |
msgid "The %s most visited posts in last %s days:"
|
558 |
msgstr "Son %s günde en çok ziyaret edilen gönderiler:"
|
559 |
|
|
|
560 |
#@ default
|
561 |
+
#: counter.php:1374
|
562 |
msgid "Show"
|
563 |
msgstr "Göster"
|
564 |
|
|
|
565 |
#@ cpd
|
566 |
+
#: counter.php:1421
|
567 |
msgid "Other"
|
568 |
msgstr "Diğer"
|
569 |
|
|
|
570 |
#@ default
|
571 |
+
#: counter.php:1505
|
572 |
msgid "Edit Post"
|
573 |
msgstr "Gönderi düzenle"
|
574 |
|
|
|
575 |
#@ default
|
576 |
+
#: counter.php:1514
|
577 |
msgid "Category"
|
578 |
msgstr "Katogori"
|
579 |
|
|
|
580 |
#@ default
|
581 |
+
#: counter.php:1517
|
582 |
msgid "Tag"
|
583 |
msgstr "Таg"
|
584 |
|
|
|
|
|
|
|
585 |
#@ default
|
586 |
+
#: counter.php:1520
|
587 |
+
#: massbots.php:50
|
588 |
+
#: userperspan.php:63
|
589 |
msgid "Front page displays"
|
590 |
msgstr "Ön sayfa görüntüleri"
|
591 |
|
|
|
|
|
|
|
592 |
#@ default
|
593 |
+
#: counter.php:1591
|
594 |
msgid "Settings"
|
595 |
msgstr "Ayarlar"
|
596 |
|
|
|
|
|
597 |
#@ cpd
|
598 |
+
#: counter.php:1716
|
599 |
+
#, php-format
|
600 |
msgid "Time for Count per Day: <code>%s</code>."
|
601 |
msgstr "Günlük sayım için zaman: <code>%s</code>."
|
602 |
|
|
|
603 |
#@ cpd
|
604 |
+
#: counter.php:1717
|
605 |
msgid "Bug? Problem? Question? Hint? Praise?"
|
606 |
msgstr "Problem? Soru? Fikir? Övgü?"
|
607 |
|
|
|
|
|
608 |
#@ cpd
|
609 |
+
#: counter.php:1718
|
610 |
+
#, php-format
|
611 |
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
612 |
msgstr "Yorumunu eklenti <a href=\"%s\">sayfasına yaz</a>."
|
613 |
|
|
|
614 |
#@ default
|
615 |
+
#: counter.php:1719
|
616 |
msgid "License"
|
617 |
msgstr "Lisans"
|
618 |
|
|
|
619 |
#@ cpd
|
620 |
+
#: counter.php:635
|
621 |
+
#: counter.php:1766
|
622 |
msgid "Reads per day"
|
623 |
msgstr "Günlük ortalama okunma"
|
624 |
|
|
|
|
|
625 |
#@ cpd
|
626 |
+
#: counter.php:1752
|
627 |
+
#: counter.php:2228
|
628 |
msgid "Visitors per month"
|
629 |
msgstr "Aylık ziyaretçi"
|
630 |
|
|
|
|
|
631 |
#@ cpd
|
632 |
+
#: counter.php:1753
|
633 |
+
#: counter.php:2223
|
634 |
msgid "Reads per month"
|
635 |
msgstr "Aylık okunma"
|
636 |
|
|
|
637 |
#@ cpd
|
638 |
+
#: counter.php:1755
|
639 |
msgid "Latest Counts"
|
640 |
msgstr "Son sayım"
|
641 |
|
|
|
642 |
#@ default
|
643 |
+
#: counter.php:1757
|
644 |
msgid "Plugin"
|
645 |
msgstr "Eklenti"
|
646 |
|
|
|
647 |
#@ cpd
|
648 |
+
#: counter.php:1761
|
649 |
msgid "Referrer"
|
650 |
msgstr "Yönlendirme"
|
651 |
|
|
|
652 |
#@ cpd
|
653 |
+
#: counter.php:1770
|
654 |
msgid "Reads per Country"
|
655 |
msgstr "Ülke bazında okuma"
|
656 |
|
|
|
657 |
#@ cpd
|
658 |
+
#: counter.php:1771
|
659 |
msgid "Visitors per Country"
|
660 |
msgstr "Ülke bazında ziyaretçi"
|
661 |
|
|
|
|
|
662 |
#@ cpd
|
663 |
+
#: counter.php:1786
|
664 |
+
#: counter.php:2147
|
665 |
msgid "Statistics"
|
666 |
msgstr "İstatislikler"
|
667 |
|
|
|
|
|
668 |
#@ cpd
|
669 |
+
#: counter.php:900
|
670 |
+
#: counter.php:1856
|
671 |
msgid "Map"
|
672 |
msgstr "Harita"
|
673 |
|
|
|
674 |
#@ cpd
|
675 |
+
#: counter.php:2218
|
676 |
msgid "This post"
|
677 |
msgstr "Bu gönderi"
|
678 |
|
|
|
679 |
#@ default
|
680 |
+
#: counter.php:2242
|
681 |
msgid "Title"
|
682 |
msgstr "Başlık"
|
683 |
|
|
|
684 |
#@ cpd
|
685 |
+
#: geoip/geoip.php:108
|
686 |
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
687 |
msgstr "Üzgünüm, gerekli fonksiyonlar yüklü değil (zlib) yada php.ini içinde kapalı."
|
688 |
|
|
|
689 |
#@ cpd
|
690 |
+
#: geoip/geoip.php:132
|
691 |
msgid "New GeoIP database installed."
|
692 |
msgstr "Yeni GeoIP veritabanı yüklendi."
|
693 |
|
|
|
694 |
#@ cpd
|
695 |
+
#: geoip/geoip.php:134
|
696 |
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
697 |
msgstr "Üzgünüm, hata oluştu, \"geoip\" klasör'ünün 777 erişim hakkını kontrol edip tekrar deneyiniz."
|
698 |
|
699 |
+
#@ cpd
|
700 |
+
#: notes.php:81
|
701 |
+
msgid "(1 per day)"
|
702 |
+
msgstr "(Her bir gün)"
|
703 |
+
|
704 |
#@ default
|
705 |
+
#: notes.php:82
|
706 |
msgid "Action"
|
707 |
msgstr "Eylem"
|
708 |
|
|
|
709 |
#@ cpd
|
710 |
+
#: notes.php:87
|
711 |
msgid "add"
|
712 |
msgstr "ekle"
|
713 |
|
|
|
714 |
#@ cpd
|
715 |
+
#: notes.php:102
|
716 |
msgid "save"
|
717 |
msgstr "kaydet"
|
718 |
|
|
|
719 |
#@ cpd
|
720 |
+
#: notes.php:103
|
721 |
msgid "delete"
|
722 |
msgstr "sil"
|
723 |
|
|
|
724 |
#@ cpd
|
725 |
+
#: notes.php:114
|
726 |
msgid "edit"
|
727 |
msgstr "eüzenle"
|
728 |
|
|
|
729 |
#@ cpd
|
730 |
+
#: userperspan.php:37
|
731 |
msgid "Start"
|
732 |
msgstr "Başlangıç"
|
733 |
|
|
|
734 |
#@ cpd
|
735 |
+
#: userperspan.php:39
|
736 |
msgid "End"
|
737 |
msgstr "Son"
|
738 |
|
|
|
739 |
#@ cpd
|
740 |
+
#: userperspan.php:41
|
741 |
msgid "PostID"
|
742 |
msgstr "Gönderi ID"
|
743 |
|
|
|
744 |
#@ cpd
|
745 |
+
#: userperspan.php:49
|
746 |
msgid "no data found"
|
747 |
msgstr "veri bulunamadı"
|
748 |
|
|
|
749 |
#@ cpd
|
750 |
+
#: counter-options.php:256
|
751 |
+
msgid "Old Charts"
|
752 |
+
msgstr "Eski grafikler"
|
753 |
+
|
754 |
+
#@ cpd
|
755 |
+
#: counter-options.php:257
|
756 |
+
msgid "Show old bar charts."
|
757 |
+
msgstr "Grafikleri bar olarak göster"
|
758 |
+
|
759 |
+
#@ cpd
|
760 |
+
#: counter-options.php:270
|
761 |
msgid "Referrers - Entries"
|
762 |
msgstr "Yönlendirmeleri - Girişler"
|
763 |
|
|
|
764 |
#@ cpd
|
765 |
+
#: counter-options.php:271
|
766 |
msgid "How many referrers do you want to see on dashboard page?"
|
767 |
msgstr "Kontrol panalinde kaç adet yönlendirme görmek istiyorsun ?"
|
768 |
|
|
|
769 |
#@ cpd
|
770 |
+
#: counter-options.php:274
|
771 |
msgid "Referrers - Days"
|
772 |
msgstr "Yönlendirmeler - Günler"
|
773 |
|
|
|
|
|
774 |
#@ cpd
|
775 |
+
#: counter.php:1449
|
776 |
+
#, php-format
|
777 |
msgid "The %s referrers in last %s days:"
|
778 |
msgstr "Son %s günkü yönlendirmeler:"
|
779 |
|
|
|
780 |
#@ cpd
|
781 |
+
#: counter.php:1751
|
782 |
msgid "Visitors online"
|
783 |
msgstr "Online ziyaretçiler."
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
locale/cpd-ua_UA.mo
DELETED
Binary file
|
locale/cpd-ua_UA.po
DELETED
@@ -1,972 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count per Day\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Alexandr <pixelpwnz@gmail.com>\n"
|
8 |
-
"Language-Team: Alyona Lompar <alyona.lompar@aol.com>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Poedit-Language: Ukrainian\n"
|
14 |
-
"X-Poedit-Country: UKRAINE\n"
|
15 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
-
"X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
18 |
-
"X-Poedit-Bookmarks: \n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Textdomain-Support: yes"
|
21 |
-
|
22 |
-
#: counter-options.php:49
|
23 |
-
#@ cpd
|
24 |
-
msgid "Options updated"
|
25 |
-
msgstr "Налаштування збереженні"
|
26 |
-
|
27 |
-
#: counter-options.php:113
|
28 |
-
#, php-format
|
29 |
-
#@ cpd
|
30 |
-
msgid "Database cleaned. %s rows deleted."
|
31 |
-
msgstr "База даних очищена. %s строк видалено."
|
32 |
-
|
33 |
-
#: counter-options.php:128
|
34 |
-
#: counter-options.php:811
|
35 |
-
#@ cpd
|
36 |
-
msgid "UNINSTALL Count per Day"
|
37 |
-
msgstr "Видалити Count per Day"
|
38 |
-
|
39 |
-
#: counter-options.php:133
|
40 |
-
#: counter-options.php:134
|
41 |
-
#: counter-options.php:135
|
42 |
-
#, php-format
|
43 |
-
#@ cpd
|
44 |
-
msgid "Table %s deleted"
|
45 |
-
msgstr "Таблиця %s видалена"
|
46 |
-
|
47 |
-
#: counter-options.php:136
|
48 |
-
#@ cpd
|
49 |
-
msgid "Options deleted"
|
50 |
-
msgstr "Параметри видалено"
|
51 |
-
|
52 |
-
#: counter-options.php:317
|
53 |
-
#: counter-options.php:797
|
54 |
-
#@ cpd
|
55 |
-
msgid "Uninstall"
|
56 |
-
msgstr "Видалити"
|
57 |
-
|
58 |
-
#: counter-options.php:318
|
59 |
-
#@ cpd
|
60 |
-
msgid "Click here"
|
61 |
-
msgstr "Натисніть тут"
|
62 |
-
|
63 |
-
#: counter-options.php:318
|
64 |
-
#@ cpd
|
65 |
-
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
66 |
-
msgstr "Для завершення видалення і відключення \"Count per Day\"."
|
67 |
-
|
68 |
-
#: counter-options.php:356
|
69 |
-
#@ cpd
|
70 |
-
msgid "Online time"
|
71 |
-
msgstr "Час з'єднання"
|
72 |
-
|
73 |
-
#: counter-options.php:357
|
74 |
-
#@ cpd
|
75 |
-
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
76 |
-
msgstr "Секунд для он-лайн лічильника. Використовується для \" Відвідувачей онлайн \" на приладовій панелі сторінки."
|
77 |
-
|
78 |
-
#: counter-options.php:360
|
79 |
-
#@ cpd
|
80 |
-
msgid "Logged on Users"
|
81 |
-
msgstr "Зареєстрованих користувачів"
|
82 |
-
|
83 |
-
#: counter-options.php:362
|
84 |
-
#@ cpd
|
85 |
-
msgid "count too"
|
86 |
-
msgstr "Враховувати також"
|
87 |
-
|
88 |
-
#: counter-options.php:374
|
89 |
-
#@ cpd
|
90 |
-
msgid "Auto counter"
|
91 |
-
msgstr "Авто лічильник"
|
92 |
-
|
93 |
-
#: counter-options.php:375
|
94 |
-
#@ cpd
|
95 |
-
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
96 |
-
msgstr "Рахує автоматично окремі повідомлення і сторінки, ніяких змін в шаблон не потрібно\"."
|
97 |
-
|
98 |
-
#: counter-options.php:378
|
99 |
-
#@ cpd
|
100 |
-
msgid "Bots to ignore"
|
101 |
-
msgstr "Ігнорувати пошукові системи"
|
102 |
-
|
103 |
-
#: counter-options.php:562
|
104 |
-
#@ cpd
|
105 |
-
msgid "Update options"
|
106 |
-
msgstr "Параметри оновлення"
|
107 |
-
|
108 |
-
#: counter-options.php:657
|
109 |
-
#: counter-options.php:666
|
110 |
-
#@ cpd
|
111 |
-
msgid "Clean the database"
|
112 |
-
msgstr "Очистити бази даних"
|
113 |
-
|
114 |
-
#: counter-options.php:660
|
115 |
-
#@ cpd
|
116 |
-
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
117 |
-
msgstr "Ви можете очистити лічильник таблиці видаливши \"Спам\". <br />Якщо ви додаєте нових ботів над старими \"Спам\" які є в базі даних. <br />Тут ви можете запустити бот-фільтр знову і видалити візити ботів\"."
|
118 |
-
|
119 |
-
#: counter-options.php:800
|
120 |
-
#@ cpd
|
121 |
-
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
122 |
-
msgstr "Якщо \"Count per Day\" активований, таблиці в базі даних будуть збережені."
|
123 |
-
|
124 |
-
#: counter-options.php:801
|
125 |
-
#@ cpd
|
126 |
-
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
127 |
-
msgstr "Тут можна видалити таблиці і відключити \"Count per Day\"."
|
128 |
-
|
129 |
-
#: counter-options.php:804
|
130 |
-
#@ cpd
|
131 |
-
msgid "WARNING"
|
132 |
-
msgstr "УВАГА"
|
133 |
-
|
134 |
-
#: counter-options.php:805
|
135 |
-
#@ cpd
|
136 |
-
msgid "These tables (with ALL counter data) will be deleted."
|
137 |
-
msgstr "Ці таблиці (з усіма даними лічильника), будуть видалені."
|
138 |
-
|
139 |
-
#: counter-options.php:807
|
140 |
-
#@ cpd
|
141 |
-
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
142 |
-
msgstr "Якщо \"Count per Day\" було перевстановлено, лічильник починається з 0."
|
143 |
-
|
144 |
-
#: counter-options.php:787
|
145 |
-
#: counter-options.php:810
|
146 |
-
#@ cpd
|
147 |
-
msgid "Yes"
|
148 |
-
msgstr "Так"
|
149 |
-
|
150 |
-
#: counter-options.php:811
|
151 |
-
#@ cpd
|
152 |
-
msgid "You are sure to disable Count per Day and delete all data?"
|
153 |
-
msgstr "Ви впевнені, що хочете відключити Count per Day і видалити всі дані?"
|
154 |
-
|
155 |
-
#: counter-core.php:754
|
156 |
-
#: counter.php:1124
|
157 |
-
#@ cpd
|
158 |
-
msgid "Statistics"
|
159 |
-
msgstr "Статистика"
|
160 |
-
|
161 |
-
#: counter-core.php:723
|
162 |
-
#: counter.php:160
|
163 |
-
#: counter.php:1010
|
164 |
-
#: counter.php:1202
|
165 |
-
#@ cpd
|
166 |
-
msgid "Total visitors"
|
167 |
-
msgstr "Усього користувачів"
|
168 |
-
|
169 |
-
#: counter.php:161
|
170 |
-
#: counter.php:1208
|
171 |
-
#@ cpd
|
172 |
-
msgid "Visitors currently online"
|
173 |
-
msgstr "Відвідувачі даний час в мережі"
|
174 |
-
|
175 |
-
#: counter.php:162
|
176 |
-
#: counter.php:1203
|
177 |
-
#@ cpd
|
178 |
-
msgid "Visitors today"
|
179 |
-
msgstr "Відвідувачів сьогодні"
|
180 |
-
|
181 |
-
#: counter.php:163
|
182 |
-
#: counter.php:1204
|
183 |
-
#@ cpd
|
184 |
-
msgid "Visitors yesterday"
|
185 |
-
msgstr "Відвідувачів вчора"
|
186 |
-
|
187 |
-
#: counter.php:164
|
188 |
-
#: counter.php:1205
|
189 |
-
#@ cpd
|
190 |
-
msgid "Visitors last week"
|
191 |
-
msgstr "Відвідувачів на минулому тижні"
|
192 |
-
|
193 |
-
#: counter.php:167
|
194 |
-
#: counter.php:825
|
195 |
-
#: counter.php:1209
|
196 |
-
#@ cpd
|
197 |
-
msgid "Counter starts on"
|
198 |
-
msgstr "Лічильник починається з"
|
199 |
-
|
200 |
-
#: counter-core.php:729
|
201 |
-
#: counter.php:166
|
202 |
-
#: counter.php:263
|
203 |
-
#: counter.php:1012
|
204 |
-
#: counter.php:1207
|
205 |
-
#: userperspan.php:34
|
206 |
-
#@ cpd
|
207 |
-
msgid "Visitors per day"
|
208 |
-
msgstr "Відвідувачів у день"
|
209 |
-
|
210 |
-
#: counter-core.php:725
|
211 |
-
#: counter.php:1206
|
212 |
-
#@ cpd
|
213 |
-
msgid "Visitors per month"
|
214 |
-
msgstr "Відвідувачів за місяць"
|
215 |
-
|
216 |
-
#: counter-core.php:727
|
217 |
-
#: counter-options.php:439
|
218 |
-
#@ cpd
|
219 |
-
msgid "Visitors per post"
|
220 |
-
msgstr "Відвідувачів повідомлення"
|
221 |
-
|
222 |
-
#: counter-options.php:123
|
223 |
-
#@ cpd
|
224 |
-
msgid "Counter reseted."
|
225 |
-
msgstr "Лічильник оновлено"
|
226 |
-
|
227 |
-
#: counter-options.php:404
|
228 |
-
#@ default
|
229 |
-
msgid "Dashboard"
|
230 |
-
msgstr "Панель"
|
231 |
-
|
232 |
-
#: counter-options.php:440
|
233 |
-
#: counter-options.php:444
|
234 |
-
#@ cpd
|
235 |
-
msgid "How many posts do you want to see on dashboard page?"
|
236 |
-
msgstr "Скільки повідомлень ви хочете бачити на приладовій панелі сторінки?"
|
237 |
-
|
238 |
-
#: counter-options.php:443
|
239 |
-
#@ cpd
|
240 |
-
msgid "Latest Counts - Posts"
|
241 |
-
msgstr "Останні рахунки - Повідомлення"
|
242 |
-
|
243 |
-
#: counter-options.php:447
|
244 |
-
#@ cpd
|
245 |
-
msgid "Latest Counts - Days"
|
246 |
-
msgstr "Останні рахунки - Дні"
|
247 |
-
|
248 |
-
#: counter-options.php:448
|
249 |
-
#: counter-options.php:452
|
250 |
-
#: counter-options.php:474
|
251 |
-
#@ cpd
|
252 |
-
msgid "How many days do you want look back?"
|
253 |
-
msgstr "На скільки днів ви хочете озирнутися назад?"
|
254 |
-
|
255 |
-
#: counter-options.php:451
|
256 |
-
#@ cpd
|
257 |
-
msgid "Chart - Days"
|
258 |
-
msgstr "Графік - Дні"
|
259 |
-
|
260 |
-
#: counter-options.php:455
|
261 |
-
#@ cpd
|
262 |
-
msgid "Chart - Height"
|
263 |
-
msgstr "Графік - висота"
|
264 |
-
|
265 |
-
#: counter-options.php:456
|
266 |
-
#@ cpd
|
267 |
-
msgid "Height of the biggest bar"
|
268 |
-
msgstr "Висота найбільшого стовпчика"
|
269 |
-
|
270 |
-
#: counter-options.php:489
|
271 |
-
#@ cpd
|
272 |
-
msgid "Show in lists"
|
273 |
-
msgstr "Показувати в списках"
|
274 |
-
|
275 |
-
#: counter-options.php:490
|
276 |
-
#@ cpd
|
277 |
-
msgid "Show \"Reads per Post\" in a new column in post management views."
|
278 |
-
msgstr "Показати \"Читачів на повідомлення\" в новій колонці в управлінні записами."
|
279 |
-
|
280 |
-
#: counter-options.php:778
|
281 |
-
#: counter-options.php:788
|
282 |
-
#@ cpd
|
283 |
-
msgid "Reset the counter"
|
284 |
-
msgstr "Скидання лічильника"
|
285 |
-
|
286 |
-
#: counter-options.php:781
|
287 |
-
#@ cpd
|
288 |
-
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
289 |
-
msgstr "Ви можете скинути лічильник шляхом очищення таблиці. ВСІ НА 0! <br />Зробіть резервну копію, якщо вам потрібні поточні дані!"
|
290 |
-
|
291 |
-
#: counter.php:672
|
292 |
-
#, php-format
|
293 |
-
#@ cpd
|
294 |
-
msgid "The %s most visited posts in last %s days:"
|
295 |
-
msgstr "%s самих відвідуваних повідомлень за останні %s днів."
|
296 |
-
|
297 |
-
#: counter-core.php:575
|
298 |
-
#: counter-options.php:342
|
299 |
-
#: counter-options.php:566
|
300 |
-
#@ default
|
301 |
-
msgid "Settings"
|
302 |
-
msgstr "Настройки"
|
303 |
-
|
304 |
-
#: counter.php:262
|
305 |
-
#@ cpd
|
306 |
-
msgid "Reads per day"
|
307 |
-
msgstr "Читання в день"
|
308 |
-
|
309 |
-
#: counter-core.php:639
|
310 |
-
#: counter-options.php:393
|
311 |
-
#: counter.php:159
|
312 |
-
#: counter.php:875
|
313 |
-
#@ cpd
|
314 |
-
msgid "Reads"
|
315 |
-
msgstr "Читання"
|
316 |
-
|
317 |
-
#: counter.php:1196
|
318 |
-
#@ cpd
|
319 |
-
msgid "This post"
|
320 |
-
msgstr "Це повідомлення"
|
321 |
-
|
322 |
-
#: counter-options.php:60
|
323 |
-
#, php-format
|
324 |
-
#@ cpd
|
325 |
-
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
326 |
-
msgstr "Країни оновлені. <b>%s</b> записів в %s залишилось без країни"
|
327 |
-
|
328 |
-
#: counter-options.php:63
|
329 |
-
#@ cpd
|
330 |
-
msgid "update next"
|
331 |
-
msgstr "Оновити наступний"
|
332 |
-
|
333 |
-
#: counter-options.php:103
|
334 |
-
#, php-format
|
335 |
-
#@ cpd
|
336 |
-
msgid "Mass Bots cleaned. %s counts deleted."
|
337 |
-
msgstr "Таблиця Пошукових систем очищена. %s записів видалено."
|
338 |
-
|
339 |
-
#: counter-options.php:363
|
340 |
-
#@ cpd
|
341 |
-
msgid "until User Level"
|
342 |
-
msgstr "до рівня користувача"
|
343 |
-
|
344 |
-
#: counter-options.php:382
|
345 |
-
#@ cpd
|
346 |
-
msgid "Anonymous IP"
|
347 |
-
msgstr "Анонімний IP"
|
348 |
-
|
349 |
-
#: counter-options.php:460
|
350 |
-
#@ cpd
|
351 |
-
msgid "Countries"
|
352 |
-
msgstr "Країни"
|
353 |
-
|
354 |
-
#: counter-options.php:461
|
355 |
-
#@ cpd
|
356 |
-
msgid "How many countries do you want to see on dashboard page?"
|
357 |
-
msgstr "Скільки країн ви хотіли б бачити на приладовій панелі сторінки?"
|
358 |
-
|
359 |
-
#: counter-options.php:498
|
360 |
-
#@ cpd
|
361 |
-
msgid "Start Values"
|
362 |
-
msgstr "Початкові дані"
|
363 |
-
|
364 |
-
#: counter-options.php:502
|
365 |
-
#@ cpd
|
366 |
-
msgid "Here you can change the date of first count and add a start count."
|
367 |
-
msgstr "Тут ви можете змінити дату першого відрахунку і задати початок відрахунку."
|
368 |
-
|
369 |
-
#: counter-options.php:506
|
370 |
-
#@ cpd
|
371 |
-
msgid "Start date"
|
372 |
-
msgstr "Дата початку"
|
373 |
-
|
374 |
-
#: counter-options.php:507
|
375 |
-
#@ cpd
|
376 |
-
msgid "Your old Counter starts at?"
|
377 |
-
msgstr "Ваш старий лічильник починався з?"
|
378 |
-
|
379 |
-
#: counter-options.php:510
|
380 |
-
#: counter-options.php:514
|
381 |
-
#@ cpd
|
382 |
-
msgid "Start count"
|
383 |
-
msgstr "Почати рахувати"
|
384 |
-
|
385 |
-
#: counter-options.php:511
|
386 |
-
#@ cpd
|
387 |
-
msgid "Add this value to \"Total visitors\"."
|
388 |
-
msgstr "Установка цього значення в \"Усього користувачів\"."
|
389 |
-
|
390 |
-
#: counter-options.php:728
|
391 |
-
#@ cpd
|
392 |
-
msgid "GeoIP - Countries"
|
393 |
-
msgstr "GeoIP - Країни"
|
394 |
-
|
395 |
-
#: counter-options.php:737
|
396 |
-
#@ cpd
|
397 |
-
msgid "Update old counter data"
|
398 |
-
msgstr "Оновлення старих даних лічильника"
|
399 |
-
|
400 |
-
#: counter-options.php:749
|
401 |
-
#@ cpd
|
402 |
-
msgid "Update GeoIP database"
|
403 |
-
msgstr "Оновлення бази даних GeoIP"
|
404 |
-
|
405 |
-
#: counter-options.php:744
|
406 |
-
#@ cpd
|
407 |
-
msgid "Download a new version of GeoIP.dat file."
|
408 |
-
msgstr "Завантажити нову версію файла GeoIP.dat"
|
409 |
-
|
410 |
-
#: counter-options.php:754
|
411 |
-
#@ cpd
|
412 |
-
msgid "More informations about GeoIP"
|
413 |
-
msgstr "Більш детальна інформація про GeoIP"
|
414 |
-
|
415 |
-
#: counter-options.php:581
|
416 |
-
#: massbots.php:35
|
417 |
-
#@ cpd
|
418 |
-
msgid "Mass Bots"
|
419 |
-
msgstr "Масові Пошукові системи"
|
420 |
-
|
421 |
-
#: counter-options.php:585
|
422 |
-
#, php-format
|
423 |
-
#@ cpd
|
424 |
-
msgid "Show all IPs with more than %s page views per day"
|
425 |
-
msgstr "Показати всі IP-адреси з більш ніж %s переглядів сторінок на день"
|
426 |
-
|
427 |
-
#: counter-options.php:586
|
428 |
-
#: notes.php:71
|
429 |
-
#: userperspan.php:44
|
430 |
-
#@ cpd
|
431 |
-
msgid "show"
|
432 |
-
msgstr "показати"
|
433 |
-
|
434 |
-
#: counter-options.php:594
|
435 |
-
#@ cpd
|
436 |
-
msgid "IP"
|
437 |
-
msgstr "IP"
|
438 |
-
|
439 |
-
#: counter-options.php:595
|
440 |
-
#: notes.php:75
|
441 |
-
#@ cpd
|
442 |
-
#@ default
|
443 |
-
msgid "Date"
|
444 |
-
msgstr "Дата"
|
445 |
-
|
446 |
-
#: counter-options.php:596
|
447 |
-
#@ cpd
|
448 |
-
msgid "Client"
|
449 |
-
msgstr "Клієнт"
|
450 |
-
|
451 |
-
#: counter-options.php:597
|
452 |
-
#@ cpd
|
453 |
-
msgid "Views"
|
454 |
-
msgstr "Переглядів"
|
455 |
-
|
456 |
-
#: counter-options.php:612
|
457 |
-
#: counter-options.php:628
|
458 |
-
#, php-format
|
459 |
-
#@ cpd
|
460 |
-
msgid "Delete these %s counts"
|
461 |
-
msgstr "Видалити ц і%s лічильників"
|
462 |
-
|
463 |
-
#: counter-options.php:715
|
464 |
-
#@ cpd
|
465 |
-
msgid "Support"
|
466 |
-
msgstr "Підтримка"
|
467 |
-
|
468 |
-
#: counter-core.php:689
|
469 |
-
#, php-format
|
470 |
-
#@ cpd
|
471 |
-
msgid "Time for Count per Day: <code>%s</code>."
|
472 |
-
msgstr "Час для Count per Day: <code>%s</code>."
|
473 |
-
|
474 |
-
#: counter-core.php:690
|
475 |
-
#@ cpd
|
476 |
-
msgid "Bug? Problem? Question? Hint? Praise?"
|
477 |
-
msgstr "Помилка? Проблема? Питання? Підказка? Хвала?"
|
478 |
-
|
479 |
-
#: counter-core.php:691
|
480 |
-
#, php-format
|
481 |
-
#@ cpd
|
482 |
-
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
483 |
-
msgstr "Написати коментар на <a href=\"%s\">сторінці плагіна</a>."
|
484 |
-
|
485 |
-
#: counter.php:155
|
486 |
-
#: counter.php:1197
|
487 |
-
#@ cpd
|
488 |
-
msgid "Total reads"
|
489 |
-
msgstr "Всього читаннь"
|
490 |
-
|
491 |
-
#: counter.php:156
|
492 |
-
#: counter.php:1198
|
493 |
-
#@ cpd
|
494 |
-
msgid "Reads today"
|
495 |
-
msgstr "Читаннь сьогодні"
|
496 |
-
|
497 |
-
#: counter.php:157
|
498 |
-
#: counter.php:1199
|
499 |
-
#@ cpd
|
500 |
-
msgid "Reads yesterday"
|
501 |
-
msgstr "Читаннь вчора"
|
502 |
-
|
503 |
-
#: counter.php:788
|
504 |
-
#: notes.php:42
|
505 |
-
#: notes.php:76
|
506 |
-
#@ cpd
|
507 |
-
msgid "Notes"
|
508 |
-
msgstr "Записки"
|
509 |
-
|
510 |
-
#: counter.php:786
|
511 |
-
#@ default
|
512 |
-
msgid "Show"
|
513 |
-
msgstr "Показати"
|
514 |
-
|
515 |
-
#: counter.php:821
|
516 |
-
#@ cpd
|
517 |
-
msgid "Other"
|
518 |
-
msgstr "Інші"
|
519 |
-
|
520 |
-
#: counter.php:976
|
521 |
-
#@ default
|
522 |
-
msgid "Edit Post"
|
523 |
-
msgstr "Редагувати повідомлення"
|
524 |
-
|
525 |
-
#: counter.php:991
|
526 |
-
#: massbots.php:52
|
527 |
-
#: userperspan.php:63
|
528 |
-
#@ default
|
529 |
-
msgid "Front page displays"
|
530 |
-
msgstr "Відображати на першій сторінці"
|
531 |
-
|
532 |
-
#: counter-core.php:733
|
533 |
-
#: counter-options.php:465
|
534 |
-
#@ cpd
|
535 |
-
msgid "Browsers"
|
536 |
-
msgstr "Браузери"
|
537 |
-
|
538 |
-
#: counter-core.php:728
|
539 |
-
#@ cpd
|
540 |
-
msgid "Latest Counts"
|
541 |
-
msgstr "Останні підрахунки"
|
542 |
-
|
543 |
-
#: counter-core.php:730
|
544 |
-
#@ default
|
545 |
-
msgid "Plugin"
|
546 |
-
msgstr "Плагін"
|
547 |
-
|
548 |
-
#: counter-core.php:738
|
549 |
-
#@ cpd
|
550 |
-
msgid "Reads per Country"
|
551 |
-
msgstr "Читання по країнам"
|
552 |
-
|
553 |
-
#: counter.php:353
|
554 |
-
#: counter.php:1041
|
555 |
-
#@ cpd
|
556 |
-
msgid "Map"
|
557 |
-
msgstr "Карта"
|
558 |
-
|
559 |
-
#: geoip/geoip.php:93
|
560 |
-
#@ cpd
|
561 |
-
msgid "Sorry, necessary functions (zlib) not installed or enabled in php.ini."
|
562 |
-
msgstr "На жаль, необхідні функції (Zlib) не встановлені або не включені в php.ini."
|
563 |
-
|
564 |
-
#: geoip/geoip.php:117
|
565 |
-
#@ cpd
|
566 |
-
msgid "New GeoIP database installed."
|
567 |
-
msgstr "Нова база даних GeoIP встановлена."
|
568 |
-
|
569 |
-
#: geoip/geoip.php:119
|
570 |
-
#@ cpd
|
571 |
-
msgid "Sorry, an error occurred. Try again or check the access rights of directory \"geoip\" is 777."
|
572 |
-
msgstr "Вибачте, сталася помилка. Спробуйте ще раз або перевірьте права доступу каталогу \"GeoIP\" є 777."
|
573 |
-
|
574 |
-
#: notes.php:77
|
575 |
-
#@ default
|
576 |
-
msgid "Action"
|
577 |
-
msgstr "Дія"
|
578 |
-
|
579 |
-
#: notes.php:82
|
580 |
-
#@ cpd
|
581 |
-
msgid "add"
|
582 |
-
msgstr "Додати"
|
583 |
-
|
584 |
-
#: notes.php:98
|
585 |
-
#@ cpd
|
586 |
-
msgid "save"
|
587 |
-
msgstr "Зберегти"
|
588 |
-
|
589 |
-
#: notes.php:99
|
590 |
-
#@ cpd
|
591 |
-
msgid "delete"
|
592 |
-
msgstr "Видалити"
|
593 |
-
|
594 |
-
#: notes.php:110
|
595 |
-
#@ cpd
|
596 |
-
msgid "edit"
|
597 |
-
msgstr "Змінити"
|
598 |
-
|
599 |
-
#: counter-options.php:386
|
600 |
-
#@ cpd
|
601 |
-
msgid "Cache"
|
602 |
-
msgstr "Кеш"
|
603 |
-
|
604 |
-
#: counter-options.php:387
|
605 |
-
#@ cpd
|
606 |
-
msgid "I use a cache plugin. Count these visits with ajax."
|
607 |
-
msgstr "Я використовую кеш плагінів. Рахувати ці візити за допомогою Ajax."
|
608 |
-
|
609 |
-
#: counter-options.php:466
|
610 |
-
#@ cpd
|
611 |
-
msgid "Substring of the user agent, separated by comma"
|
612 |
-
msgstr "Підрядок агента користувача, розділених комою"
|
613 |
-
|
614 |
-
#: counter-options.php:555
|
615 |
-
#@ cpd
|
616 |
-
msgid "Debug mode"
|
617 |
-
msgstr "Режим відлагодження"
|
618 |
-
|
619 |
-
#: counter-options.php:557
|
620 |
-
#@ cpd
|
621 |
-
msgid "Show debug informations at the bottom of all pages."
|
622 |
-
msgstr "Показати відлагоджувальну інофрмацію в нижній частині всіх сторінок."
|
623 |
-
|
624 |
-
#: counter-core.php:739
|
625 |
-
#@ cpd
|
626 |
-
msgid "Visitors per Country"
|
627 |
-
msgstr "Відвідувачів по країнах"
|
628 |
-
|
629 |
-
#: userperspan.php:38
|
630 |
-
#@ cpd
|
631 |
-
msgid "Start"
|
632 |
-
msgstr "Старт"
|
633 |
-
|
634 |
-
#: userperspan.php:40
|
635 |
-
#@ cpd
|
636 |
-
msgid "End"
|
637 |
-
msgstr "Кінець"
|
638 |
-
|
639 |
-
#: userperspan.php:42
|
640 |
-
#@ cpd
|
641 |
-
msgid "PostID"
|
642 |
-
msgstr "ID повідомлення"
|
643 |
-
|
644 |
-
#: counter-options.php:515
|
645 |
-
#@ cpd
|
646 |
-
msgid "Add this value to \"Total reads\"."
|
647 |
-
msgstr "Установити це значення в \"Всього читаннь\"."
|
648 |
-
|
649 |
-
#: counter-options.php:731
|
650 |
-
#@ cpd
|
651 |
-
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
652 |
-
msgstr "Ви можете отримати дані по країнах для всіх записів в базі даних, перевіряючи IP-адреси по базі даних GeoIP. Це може зайняти деякий час!"
|
653 |
-
|
654 |
-
#: userperspan.php:50
|
655 |
-
#@ cpd
|
656 |
-
msgid "no data found"
|
657 |
-
msgstr "Нічого не знайдено"
|
658 |
-
|
659 |
-
#: counter-options.php:352
|
660 |
-
#@ cpd
|
661 |
-
msgid "Counter"
|
662 |
-
msgstr "Лічильник"
|
663 |
-
|
664 |
-
#: counter-options.php:390
|
665 |
-
#@ cpd
|
666 |
-
msgid "Clients and referrers"
|
667 |
-
msgstr "Клієнти та джерела"
|
668 |
-
|
669 |
-
#: counter-options.php:393
|
670 |
-
#@ cpd
|
671 |
-
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
672 |
-
msgstr "Зберегти і показати клієнтів і джерела. <br />Потребує багато місця в базі даних, але надає більш детальну інформацію про ваших відвідувачів."
|
673 |
-
|
674 |
-
#: counter-options.php:477
|
675 |
-
#@ cpd
|
676 |
-
msgid "Local URLs"
|
677 |
-
msgstr "Місцеві URL"
|
678 |
-
|
679 |
-
#: counter-options.php:478
|
680 |
-
#@ cpd
|
681 |
-
msgid "Show local referrers too."
|
682 |
-
msgstr "Показати місцеві джерела теж."
|
683 |
-
|
684 |
-
#: counter-options.php:486
|
685 |
-
#@ default
|
686 |
-
msgid "Posts"
|
687 |
-
msgstr "Повідомлення"
|
688 |
-
|
689 |
-
#: counter-options.php:486
|
690 |
-
#@ default
|
691 |
-
msgid "Pages"
|
692 |
-
msgstr "Сторінки"
|
693 |
-
|
694 |
-
#: counter.php:158
|
695 |
-
#: counter.php:1200
|
696 |
-
#@ cpd
|
697 |
-
msgid "Reads last week"
|
698 |
-
msgstr "Читаннь минулого тижня"
|
699 |
-
|
700 |
-
#: counter.php:985
|
701 |
-
#@ default
|
702 |
-
msgid "Category"
|
703 |
-
msgstr "Категорія"
|
704 |
-
|
705 |
-
#: counter.php:988
|
706 |
-
#@ default
|
707 |
-
msgid "Tag"
|
708 |
-
msgstr "Тег"
|
709 |
-
|
710 |
-
#: counter-core.php:692
|
711 |
-
#@ default
|
712 |
-
msgid "License"
|
713 |
-
msgstr "Ліцензія"
|
714 |
-
|
715 |
-
#: counter-core.php:726
|
716 |
-
#: counter.php:1201
|
717 |
-
#@ cpd
|
718 |
-
msgid "Reads per month"
|
719 |
-
msgstr "Читаннь в місяць"
|
720 |
-
|
721 |
-
#: counter-core.php:734
|
722 |
-
#@ cpd
|
723 |
-
msgid "Referrer"
|
724 |
-
msgstr "Джерела"
|
725 |
-
|
726 |
-
#: counter-options.php:469
|
727 |
-
#@ cpd
|
728 |
-
msgid "Referrers - Entries"
|
729 |
-
msgstr "Джерела - Входження"
|
730 |
-
|
731 |
-
#: counter-options.php:470
|
732 |
-
#@ cpd
|
733 |
-
msgid "How many referrers do you want to see on dashboard page?"
|
734 |
-
msgstr "Скільки джерел ви хочете бачити на приладовій панелі сторінки?"
|
735 |
-
|
736 |
-
#: counter-options.php:473
|
737 |
-
#@ cpd
|
738 |
-
msgid "Referrers - Days"
|
739 |
-
msgstr "Джерела - Дні"
|
740 |
-
|
741 |
-
#: counter.php:845
|
742 |
-
#, php-format
|
743 |
-
#@ cpd
|
744 |
-
msgid "The %s referrers in last %s days:"
|
745 |
-
msgstr "%s джерел в останні %s днів:"
|
746 |
-
|
747 |
-
#: counter-core.php:724
|
748 |
-
#@ cpd
|
749 |
-
msgid "Visitors online"
|
750 |
-
msgstr "Відвідувачів онлайн"
|
751 |
-
|
752 |
-
#: counter.php:1220
|
753 |
-
#@ default
|
754 |
-
msgid "Title"
|
755 |
-
msgstr "Назва"
|
756 |
-
|
757 |
-
#: counter-core.php:186
|
758 |
-
#, php-format
|
759 |
-
#@ cpd
|
760 |
-
msgid "\"Count per Day\" updated to version %s."
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: counter-core.php:917
|
764 |
-
#@ cpd
|
765 |
-
msgid "Backup failed! Cannot open file"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: counter-core.php:940
|
769 |
-
#, php-format
|
770 |
-
#@ cpd
|
771 |
-
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: counter-core.php:1027
|
775 |
-
#@ cpd
|
776 |
-
msgid "Your wp-content directory is not writable. But you can copy the content of this box to a plain text file."
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: counter-core.php:1033
|
780 |
-
#, php-format
|
781 |
-
#@ cpd
|
782 |
-
msgid "Backup of counter table saved in %s."
|
783 |
-
msgstr ""
|
784 |
-
|
785 |
-
#: counter-core.php:1035
|
786 |
-
#, php-format
|
787 |
-
#@ cpd
|
788 |
-
msgid "Backup of counter options and collection saved in %s."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: counter-options.php:171
|
792 |
-
#@ cpd
|
793 |
-
msgid "Collection in progress..."
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: counter-options.php:241
|
797 |
-
#@ cpd
|
798 |
-
msgid "Get Visitors per Post..."
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#: counter-options.php:262
|
802 |
-
#@ cpd
|
803 |
-
msgid "Delete old data..."
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: counter-options.php:286
|
807 |
-
#, php-format
|
808 |
-
#@ cpd
|
809 |
-
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: counter-options.php:295
|
813 |
-
#@ cpd
|
814 |
-
msgid "Installation of \"Count per Day\" checked"
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#: counter-options.php:343
|
818 |
-
#: counter-options.php:567
|
819 |
-
#@ default
|
820 |
-
msgid "Tools"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: counter-options.php:395
|
824 |
-
#@ cpd
|
825 |
-
msgid "Save URL only, no query string."
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: counter-options.php:420
|
829 |
-
#@ cpd
|
830 |
-
msgid "Who can see it"
|
831 |
-
msgstr ""
|
832 |
-
|
833 |
-
#: counter-options.php:429
|
834 |
-
#@ cpd
|
835 |
-
msgid "custom"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: counter-options.php:431
|
839 |
-
#@ cpd
|
840 |
-
msgid "and higher are allowed to see the statistics page."
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: counter-options.php:433
|
844 |
-
#, php-format
|
845 |
-
#@ cpd
|
846 |
-
msgid "Set the %s capability %s a user need:"
|
847 |
-
msgstr ""
|
848 |
-
|
849 |
-
#: counter-options.php:523
|
850 |
-
#@ cpd
|
851 |
-
msgid "Stylesheet"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: counter-options.php:526
|
855 |
-
#@ cpd
|
856 |
-
msgid "NO Stylesheet in Frontend"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: counter-options.php:527
|
860 |
-
#@ cpd
|
861 |
-
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: counter-options.php:535
|
865 |
-
#: counter-options.php:640
|
866 |
-
#@ cpd
|
867 |
-
msgid "Backup"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
-
#: counter-options.php:538
|
871 |
-
#@ cpd
|
872 |
-
msgid "Entries per pass"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: counter-options.php:541
|
876 |
-
#@ cpd
|
877 |
-
msgid "How many entries should be saved per pass? Default: 10000"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: counter-options.php:546
|
881 |
-
#@ cpd
|
882 |
-
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: counter-options.php:644
|
886 |
-
#, php-format
|
887 |
-
#@ cpd
|
888 |
-
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: counter-options.php:648
|
892 |
-
#@ cpd
|
893 |
-
msgid "Backup the database"
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: counter-options.php:675
|
897 |
-
#: counter-options.php:707
|
898 |
-
#@ cpd
|
899 |
-
msgid "Collect old data"
|
900 |
-
msgstr ""
|
901 |
-
|
902 |
-
#: counter-options.php:680
|
903 |
-
#, php-format
|
904 |
-
#@ cpd
|
905 |
-
msgid "Current size of your counter table %s is %s."
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: counter-options.php:682
|
909 |
-
#@ cpd
|
910 |
-
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
911 |
-
msgstr ""
|
912 |
-
|
913 |
-
#: counter-options.php:687
|
914 |
-
#, php-format
|
915 |
-
#@ cpd
|
916 |
-
msgid "Currently your collection contains data until %s."
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: counter-options.php:691
|
920 |
-
#@ cpd
|
921 |
-
msgid "Normally new data will be added to the collection."
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: counter-options.php:697
|
925 |
-
#@ cpd
|
926 |
-
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#: counter-options.php:698
|
930 |
-
#, php-format
|
931 |
-
#@ cpd
|
932 |
-
msgid "All collected data until %s will deleted."
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: counter-options.php:703
|
936 |
-
#, php-format
|
937 |
-
#@ cpd
|
938 |
-
msgid "Keep entries of last %s full months + current month in counter table."
|
939 |
-
msgstr ""
|
940 |
-
|
941 |
-
#: counter-options.php:762
|
942 |
-
#@ cpd
|
943 |
-
msgid "ReActivation"
|
944 |
-
msgstr ""
|
945 |
-
|
946 |
-
#: counter-options.php:765
|
947 |
-
#@ cpd
|
948 |
-
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: counter-options.php:770
|
952 |
-
#@ cpd
|
953 |
-
msgid "ReActivate the plugin"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: counter.php:165
|
957 |
-
#: counter.php:899
|
958 |
-
#@ cpd
|
959 |
-
msgid "Visitors"
|
960 |
-
msgstr ""
|
961 |
-
|
962 |
-
#: counter.php:168
|
963 |
-
#: counter.php:169
|
964 |
-
#@ cpd
|
965 |
-
msgid "Most visited day"
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#: counter.php:1239
|
969 |
-
#@ cpd
|
970 |
-
msgid "drag and drop to sort"
|
971 |
-
msgstr ""
|
972 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map/ammap.swf
CHANGED
Binary file
|
map/data.xml.php
CHANGED
@@ -1,68 +1,81 @@
|
|
1 |
<?php
|
2 |
if (!session_id()) session_start();
|
3 |
-
|
4 |
-
require_once($cpd_wp.'wp-load.php');
|
5 |
require_once($cpd_path.'/geoip/geoip.php');
|
6 |
$geoip = new GeoIPCpD();
|
7 |
$data = array();
|
8 |
|
9 |
$what = (empty($_GET['map'])) ? 'reads' : $_GET['map'];
|
10 |
|
11 |
-
if ( $what == 'online' )
|
12 |
{
|
13 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
14 |
-
|
15 |
-
$
|
16 |
-
|
17 |
{
|
18 |
-
$
|
19 |
-
$
|
20 |
-
if ( !empty($id) )
|
21 |
{
|
22 |
-
$
|
23 |
-
$
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
|
|
|
|
26 |
}
|
27 |
-
foreach ( $vo as $k => $v )
|
28 |
-
$data[] = array($v[0], $k ,$v[1]);
|
29 |
}
|
30 |
else
|
31 |
{
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
{
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
$
|
40 |
-
if ( !empty($name) )
|
41 |
-
$data[] = array($name, $country ,$value);
|
42 |
-
}
|
43 |
}
|
44 |
}
|
45 |
|
46 |
header("content-type: text/xml; charset=utf-8");
|
47 |
echo '<?xml version="1.0" encoding="UTF-8"?>';
|
48 |
?>
|
|
|
49 |
<map map_file="world.swf" tl_long="-168.49" tl_lat="83.63" br_long="190.3" br_lat="-55.58" zoom_x="10%" zoom_y="6%" zoom="85%">
|
50 |
<areas>
|
|
|
51 |
<?php
|
52 |
foreach ( $data as $d )
|
53 |
echo '<area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
|
54 |
';
|
55 |
?>
|
|
|
56 |
<area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
|
57 |
</areas>
|
58 |
-
|
59 |
<labels>
|
60 |
<label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
|
61 |
<text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
|
62 |
</label>
|
63 |
</labels>
|
|
|
64 |
<movies>
|
65 |
<movie long="13" lat="53.4" file="target" width="10" height="10" color="#000000" fixed_size="true" title="Home of your best friend: Tom, the plugin author ;)"></movie>
|
66 |
</movies>
|
67 |
-
|
68 |
</map>
|
1 |
<?php
|
2 |
if (!session_id()) session_start();
|
3 |
+
require_once($_SESSION['cpd_wp'].'wp-load.php');
|
|
|
4 |
require_once($cpd_path.'/geoip/geoip.php');
|
5 |
$geoip = new GeoIPCpD();
|
6 |
$data = array();
|
7 |
|
8 |
$what = (empty($_GET['map'])) ? 'reads' : $_GET['map'];
|
9 |
|
10 |
+
if ( $what == 'visitors online' )
|
11 |
{
|
12 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
13 |
+
|
14 |
+
$res = $count_per_day->getQuery("SELECT INET_NTOA(ip) AS ip FROM ".CPD_CO_TABLE, 'getUserOnline');
|
15 |
+
if ( @mysql_num_rows($res) )
|
16 |
{
|
17 |
+
$vo = array();
|
18 |
+
while ( $r = mysql_fetch_array($res) )
|
|
|
19 |
{
|
20 |
+
$country = cpd_geoip_country_code_by_addr($gi, $r['ip']);
|
21 |
+
$id = $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country];
|
22 |
+
if ( !empty($id) )
|
23 |
+
{
|
24 |
+
$name = $geoip->GEOIP_COUNTRY_NAMES[$id];
|
25 |
+
$count = (isset($vo[$country])) ? $vo[$country][1] + 1 : 1;
|
26 |
+
$vo[$country] = array($name, $count);
|
27 |
+
}
|
28 |
}
|
29 |
+
foreach ( $vo as $k => $v )
|
30 |
+
$data[] = array($v[0], $k ,$v[1]);
|
31 |
}
|
|
|
|
|
32 |
}
|
33 |
else
|
34 |
{
|
35 |
+
if ( $what == 'visitors' )
|
36 |
+
$res = $count_per_day->getQuery("
|
37 |
+
SELECT country, COUNT(*) c
|
38 |
+
FROM ( SELECT country, ip, COUNT(*) c
|
39 |
+
FROM ".CPD_C_TABLE."
|
40 |
+
WHERE ip > 0
|
41 |
+
GROUP BY country, ip ) AS t
|
42 |
+
GROUP BY country", 'getCountriesMap');
|
43 |
+
else
|
44 |
+
$res = $count_per_day->getQuery("SELECT country, COUNT(*) c FROM ".CPD_C_TABLE." WHERE country > '' GROUP BY country", 'getCountriesMap');
|
45 |
+
|
46 |
+
while ( $r = mysql_fetch_array($res) )
|
47 |
{
|
48 |
+
$country = strtoupper($r['country']);
|
49 |
+
$name = $geoip->GEOIP_COUNTRY_NAMES[ $geoip->GEOIP_COUNTRY_CODE_TO_NUMBER[$country] ];
|
50 |
+
if ( !empty($name) )
|
51 |
+
$data[] = array($name, $country ,$r['c']);
|
|
|
|
|
|
|
52 |
}
|
53 |
}
|
54 |
|
55 |
header("content-type: text/xml; charset=utf-8");
|
56 |
echo '<?xml version="1.0" encoding="UTF-8"?>';
|
57 |
?>
|
58 |
+
|
59 |
<map map_file="world.swf" tl_long="-168.49" tl_lat="83.63" br_long="190.3" br_lat="-55.58" zoom_x="10%" zoom_y="6%" zoom="85%">
|
60 |
<areas>
|
61 |
+
|
62 |
<?php
|
63 |
foreach ( $data as $d )
|
64 |
echo '<area title="'.$d[0].'" mc_name="'.$d[1].'" value="'.$d[2].'"></area>
|
65 |
';
|
66 |
?>
|
67 |
+
|
68 |
<area title="borders" mc_name="borders" color="#AAAAAA" balloon="false"></area>
|
69 |
</areas>
|
70 |
+
|
71 |
<labels>
|
72 |
<label x="0" y="0" width="100%" align="center" text_size="16" color="#000000">
|
73 |
<text><![CDATA[<b>Your Visitors all over the World</b>]]></text>
|
74 |
</label>
|
75 |
</labels>
|
76 |
+
|
77 |
<movies>
|
78 |
<movie long="13" lat="53.4" file="target" width="10" height="10" color="#000000" fixed_size="true" title="Home of your best friend: Tom, the plugin author ;)"></movie>
|
79 |
</movies>
|
80 |
+
|
81 |
</map>
|
map/map.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php $what = (empty($_GET['map'])) ? 'reads' : $_GET['map']; ?>
|
2 |
|
3 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4 |
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
5 |
<head>
|
6 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
7 |
<title>CountPerDay</title>
|
1 |
<?php $what = (empty($_GET['map'])) ? 'reads' : $_GET['map']; ?>
|
2 |
|
3 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4 |
+
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE">
|
5 |
<head>
|
6 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
7 |
<title>CountPerDay</title>
|
map/settings.xml.php
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
<?php
|
2 |
$what = (empty($_GET['map'])) ? 'Reads' : ucfirst($_GET['map']);
|
3 |
-
$disable = (empty($_GET['min'])) ? '' : '<enabled>false</enabled>';
|
4 |
|
5 |
header("content-type: text/xml; charset=utf-8");
|
6 |
echo '<?xml version="1.0" encoding="UTF-8"?>';
|
@@ -39,14 +38,12 @@ echo '<?xml version="1.0" encoding="UTF-8"?>';
|
|
39 |
</balloon>
|
40 |
|
41 |
<zoom>
|
42 |
-
<?php echo $disable ?>
|
43 |
<x>5</x>
|
44 |
<y>27</y>
|
45 |
<min>85</min>
|
46 |
</zoom>
|
47 |
|
48 |
<legend>
|
49 |
-
<?php echo $disable ?>
|
50 |
<x>5</x>
|
51 |
<y>!32</y>
|
52 |
<margins>5</margins>
|
1 |
<?php
|
2 |
$what = (empty($_GET['map'])) ? 'Reads' : ucfirst($_GET['map']);
|
|
|
3 |
|
4 |
header("content-type: text/xml; charset=utf-8");
|
5 |
echo '<?xml version="1.0" encoding="UTF-8"?>';
|
38 |
</balloon>
|
39 |
|
40 |
<zoom>
|
|
|
41 |
<x>5</x>
|
42 |
<y>27</y>
|
43 |
<min>85</min>
|
44 |
</zoom>
|
45 |
|
46 |
<legend>
|
|
|
47 |
<x>5</x>
|
48 |
<y>!32</y>
|
49 |
<margins>5</margins>
|
notes.php
CHANGED
@@ -4,16 +4,16 @@ require_once($_SESSION['cpd_wp'].'wp-load.php');
|
|
4 |
|
5 |
// set default values
|
6 |
if ( isset($_POST['month']) )
|
7 |
-
$month = $_POST['month'];
|
8 |
else if ( isset($_GET['month']) )
|
9 |
-
$month = $_GET['month'];
|
10 |
else
|
11 |
$month = date_i18n('m');
|
12 |
|
13 |
if ( isset($_POST['month']) )
|
14 |
-
$year = $_POST['year'];
|
15 |
else if ( isset($_GET['year']) )
|
16 |
-
$year = $_GET['year'];
|
17 |
else
|
18 |
$year = date_i18n('Y');
|
19 |
|
@@ -33,7 +33,7 @@ if ( $month )
|
|
33 |
$where .= " AND MONTH(date) = $month ";
|
34 |
if ( $year )
|
35 |
$where .= " AND YEAR(date) = $year ";
|
36 |
-
$notes = $wpdb->get_results('SELECT * FROM '.$table_prefix.'cpd_notes WHERE 1 '.$where.' ORDER BY date DESC', ARRAY_A);
|
37 |
?>
|
38 |
|
39 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
@@ -111,7 +111,7 @@ if ( $notes )
|
|
111 |
<tr>
|
112 |
<td><?php echo $row['date'] ?></td>
|
113 |
<td><?php echo $row['note'] ?></td>
|
114 |
-
<td><input type="image" src="cpd_pen.png" name="edit_<?php echo $row['id'] ?>" title="<?php _e('edit', 'cpd') ?>" style="width:auto;" /></td>
|
115 |
</tr>
|
116 |
<?php
|
117 |
}
|
4 |
|
5 |
// set default values
|
6 |
if ( isset($_POST['month']) )
|
7 |
+
$month = (int) $_POST['month'];
|
8 |
else if ( isset($_GET['month']) )
|
9 |
+
$month = (int) $_GET['month'];
|
10 |
else
|
11 |
$month = date_i18n('m');
|
12 |
|
13 |
if ( isset($_POST['month']) )
|
14 |
+
$year = (int) $_POST['year'];
|
15 |
else if ( isset($_GET['year']) )
|
16 |
+
$year = (int) $_GET['year'];
|
17 |
else
|
18 |
$year = date_i18n('Y');
|
19 |
|
33 |
$where .= " AND MONTH(date) = $month ";
|
34 |
if ( $year )
|
35 |
$where .= " AND YEAR(date) = $year ";
|
36 |
+
$notes = $wpdb->get_results($wpdb->prepare('SELECT * FROM '.$table_prefix.'cpd_notes WHERE 1 '.$where.' ORDER BY date DESC'), ARRAY_A);
|
37 |
?>
|
38 |
|
39 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
111 |
<tr>
|
112 |
<td><?php echo $row['date'] ?></td>
|
113 |
<td><?php echo $row['note'] ?></td>
|
114 |
+
<td><input type="image" src="img/cpd_pen.png" name="edit_<?php echo $row['id'] ?>" title="<?php _e('edit', 'cpd') ?>" style="width:auto;" /></td>
|
115 |
</tr>
|
116 |
<?php
|
117 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Tom Braider
|
|
3 |
Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 3.1
|
6 |
-
Stable tag: 2.
|
7 |
License: Postcardware
|
8 |
Donate link: http://www.tomsdimension.de/postcards
|
9 |
|
@@ -23,26 +23,26 @@ Visit Counter, shows reads per page, visitors today, yesterday, last week, last
|
|
23 |
|
24 |
= Languages, Translators =
|
25 |
|
26 |
-
- Dansk - 100% - Jonas Thomsen -
|
27 |
-
- Dutch NL - 100% - Rene -
|
28 |
-
- France - 100% - Bjork -
|
29 |
-
- German - 100% - I, Tom -
|
30 |
-
- Greek - 100% - Essetai_Imar -
|
31 |
-
- Italian - 100% - Gianni Diurno -
|
32 |
-
- Russian - 100% - Ilya Pshenichny -
|
33 |
-
- Swedish - 100% - Magnus Suther -
|
34 |
-
|
35 |
-
|
36 |
-
-
|
|
|
37 |
- Espanol - 90% - Juan Carlos del Río -
|
38 |
-
- Portuguese BR - 90% - Beto Ribeiro -
|
39 |
|
40 |
== Installation ==
|
41 |
|
42 |
1. unzip plugin directory into the '/wp-content/plugins/' directory
|
43 |
1. activate the plugin through the 'Plugins' menu in WordPress
|
44 |
1. after every update you have to deactivate and reactivate the plugin to update some settings!
|
45 |
-
1. if you want to use the GeoIP function you have to download the GeoIP-database on options page
|
46 |
|
47 |
The activation will create or update 3 tables wp_cpd_counter, wp_cpd_counter_useronline and wp_cpd_notes.
|
48 |
|
@@ -97,6 +97,10 @@ You can use these shortcodes in the content while writing you posts to show a nu
|
|
97 |
[CPD_POSTS_ON_DAY date="2010-10-06" limit="3"]
|
98 |
- date (optional), format: year-month-day, default = today
|
99 |
- limit (optional): max records to show, default = all
|
|
|
|
|
|
|
|
|
100 |
|
101 |
**Functions**
|
102 |
|
@@ -194,7 +198,7 @@ Use '<?php if(method_exists($count_per_day, "show")) $count_per_day->show();
|
|
194 |
* lists number of visitors per month
|
195 |
* $frontend: 0 echo, 1 return output
|
196 |
|
197 |
-
'getUserPerPost( $limit
|
198 |
|
199 |
* lists _$limit_ number of posts, -1: all, 0: get option from DB, x: number
|
200 |
* $frontend: 0 echo, 1 return output
|
@@ -206,20 +210,20 @@ Use '<?php if(method_exists($count_per_day, "show")) $count_per_day->show();
|
|
206 |
* $limit = count of posts (last posts), 0: get option from DB
|
207 |
* $frontend: 0 echo, 1 return output
|
208 |
|
209 |
-
'getVisitedPostsOnDay( $date
|
210 |
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
|
217 |
'getClients( $frontend )'
|
218 |
|
219 |
* shows visits per client/browser in percent
|
220 |
* $frontend: 0 echo, 1 return output
|
221 |
|
222 |
-
'getReferers( $limit
|
223 |
|
224 |
* lists top _$limit_ referrers, 0: get option from DB, x: number
|
225 |
* $frontend: 0 echo, 1 return output
|
@@ -231,6 +235,14 @@ Use '<?php if(method_exists($count_per_day, "show")) $count_per_day->show();
|
|
231 |
* $cats IDs of categories to filter, array or number
|
232 |
* $return_array true returns an array with Post-ID, title and count, false returns comma separated list of Post-IDs
|
233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
**GeoIP**
|
235 |
|
236 |
* With GeoIP you can associate your visitors to an country using the ip address.
|
@@ -243,8 +255,15 @@ Use '<?php if(method_exists($count_per_day, "show")) $count_per_day->show();
|
|
243 |
|
244 |
== Changelog ==
|
245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
= 2.16.1 =
|
247 |
-
Bugfix: widget was empty
|
248 |
|
249 |
= 2.16 =
|
250 |
+ New: more modern charts (jQuery flot plugin)
|
3 |
Tags: counter, count, posts, visits, reads, dashboard, widget, shortcode
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 3.1
|
6 |
+
Stable tag: 2.17
|
7 |
License: Postcardware
|
8 |
Donate link: http://www.tomsdimension.de/postcards
|
9 |
|
23 |
|
24 |
= Languages, Translators =
|
25 |
|
26 |
+
- Dansk - 100% - Jonas Thomsen - http://jonasthomsen.com
|
27 |
+
- Dutch NL - 100% - Rene - http://wpwebshop.com
|
28 |
+
- France - 100% - Bjork - http://www.habbzone.fr
|
29 |
+
- German - 100% - I, Tom - http://www.tomsdimension.de
|
30 |
+
- Greek - 100% - Essetai_Imar - http://www.elliniki-grothia.com
|
31 |
+
- Italian - 100% - Gianni Diurno - http://gidibao.net
|
32 |
+
- Russian - 100% - Ilya Pshenichny - http://iluhis.com
|
33 |
+
- Swedish - 100% - Magnus Suther - http://www.magnussuther.se
|
34 |
+
- Turkish - 100% - Emrullah Tahir Ekmekçi - http://emrullahekmekci.com.tr
|
35 |
+
|
36 |
+
- Polish - 95% - LeXuS - http://intrakardial.de
|
37 |
+
- Bulgarian - 90% - joro - http://www.joro711.com
|
38 |
- Espanol - 90% - Juan Carlos del Río -
|
39 |
+
- Portuguese BR - 90% - Beto Ribeiro - http://www.sevenarts.com.br
|
40 |
|
41 |
== Installation ==
|
42 |
|
43 |
1. unzip plugin directory into the '/wp-content/plugins/' directory
|
44 |
1. activate the plugin through the 'Plugins' menu in WordPress
|
45 |
1. after every update you have to deactivate and reactivate the plugin to update some settings!
|
|
|
46 |
|
47 |
The activation will create or update 3 tables wp_cpd_counter, wp_cpd_counter_useronline and wp_cpd_notes.
|
48 |
|
97 |
[CPD_POSTS_ON_DAY date="2010-10-06" limit="3"]
|
98 |
- date (optional), format: year-month-day, default = today
|
99 |
- limit (optional): max records to show, default = all
|
100 |
+
[CPD_MAP width="500" height="340" what="reads" min=1]
|
101 |
+
- width and height: size, default 500x340 px
|
102 |
+
- what: map content - reads|visitors|online, default reads
|
103 |
+
- min: 1 (disable title, legend and zoombar), default 0
|
104 |
|
105 |
**Functions**
|
106 |
|
198 |
* lists number of visitors per month
|
199 |
* $frontend: 0 echo, 1 return output
|
200 |
|
201 |
+
'getUserPerPost( $limit, $frontend )'
|
202 |
|
203 |
* lists _$limit_ number of posts, -1: all, 0: get option from DB, x: number
|
204 |
* $frontend: 0 echo, 1 return output
|
210 |
* $limit = count of posts (last posts), 0: get option from DB
|
211 |
* $frontend: 0 echo, 1 return output
|
212 |
|
213 |
+
'getVisitedPostsOnDay( $date, $limit, $show_form, $show_notes )'
|
214 |
|
215 |
+
* shows visited pages at given day
|
216 |
+
* $date day in MySQL date format yyyy-mm-dd, 0 today
|
217 |
+
* $limit count of posts
|
218 |
+
* $show_form show form for date selection, default on, in frontend set it to 0
|
219 |
+
* $show_notes show button to add notes in form, default on, in frontend set it to 0
|
220 |
|
221 |
'getClients( $frontend )'
|
222 |
|
223 |
* shows visits per client/browser in percent
|
224 |
* $frontend: 0 echo, 1 return output
|
225 |
|
226 |
+
'getReferers( $limit, $frontend )'
|
227 |
|
228 |
* lists top _$limit_ referrers, 0: get option from DB, x: number
|
229 |
* $frontend: 0 echo, 1 return output
|
235 |
* $cats IDs of categories to filter, array or number
|
236 |
* $return_array true returns an array with Post-ID, title and count, false returns comma separated list of Post-IDs
|
237 |
|
238 |
+
'function getMap( $what, $width, $height, $min )'
|
239 |
+
|
240 |
+
* gets a world map
|
241 |
+
* $what visitors|reads|online
|
242 |
+
* $width size in px
|
243 |
+
* $height size in px
|
244 |
+
* $min : 1 disable title, legend and zoombar
|
245 |
+
|
246 |
**GeoIP**
|
247 |
|
248 |
* With GeoIP you can associate your visitors to an country using the ip address.
|
255 |
|
256 |
== Changelog ==
|
257 |
|
258 |
+
= 2.17 =
|
259 |
+
+ Bugfix: JavaScript error on dashboard page, boxes not movable
|
260 |
+
+ Bugfix: PHP4 compatibility
|
261 |
+
+ New: function and shortcode to show world map in frontend
|
262 |
+
+ New: option - who is allowed to see the statistics page
|
263 |
+
+ New language: Turkish, thanks to Emrullah Tahir Ekmekçi
|
264 |
+
|
265 |
= 2.16.1 =
|
266 |
+
+ Bugfix: widget was empty
|
267 |
|
268 |
= 2.16 =
|
269 |
+ New: more modern charts (jQuery flot plugin)
|