Version Description
- Bugfix: Plugin dir path fixed
- Bugfix: CSS path fixed
- Bugfix: search word now case insensitive
- Bugfix: Translation of widget titles
- New: world map of current visitors
- New: check referer agains bot list
- New: delete clients and referers of older entries
Download this release
Release Info
Developer | Tom Braider |
Plugin | ![]() |
Version | 3.2.10 |
Comparing to | |
See all releases |
Code changes from version 3.2.9 to 3.2.10
- ajax.php +2 -2
- counter-core.php +15 -7
- counter-options.php +30 -2
- counter.css +7 -2
- counter.php +14 -8
- geoip/GeoIP.dat +0 -0
- geoip/geoip.php +10 -2
- locale/cpd-az_AZ.po +1122 -972
- locale/cpd-be_BY.po +1122 -784
- locale/cpd-bg_BG.po +1122 -971
- locale/cpd-da_DK.po +1123 -973
- locale/cpd-de_DE.mo +0 -0
- locale/cpd-de_DE.po +1122 -1231
- locale/cpd-el.po +1123 -973
- locale/cpd-es_ES.po +1122 -972
- locale/cpd-fa_IR.po +597 -461
- locale/cpd-fi.po +527 -532
- locale/cpd-fr_FR.po +1122 -971
- locale/cpd-hi_IN_HI.po +1122 -971
- locale/cpd-it_IT.po +1122 -971
- locale/cpd-ja.po +1122 -1095
- locale/cpd-lt_LT.po +1122 -784
- locale/cpd-nb_NO.po +1123 -972
- locale/cpd-nl_NL.po +1122 -971
- locale/cpd-pl_PL.po +1122 -972
- locale/cpd-pt_BR.po +1122 -1094
- locale/cpd-pt_PT.po +1122 -1094
- locale/cpd-ro_RO.po +1041 -961
ajax.php
CHANGED
@@ -29,9 +29,9 @@ if ( $_GET['f'] == 'count' )
|
|
29 |
if ( $f == 'getUserPerDay' )
|
30 |
echo $count_per_day->getUserPerDay($count_per_day->options['dashboard_last_days']);
|
31 |
else if ( $f == 'show' )
|
32 |
-
echo $count_per_day->show(
|
33 |
else
|
34 |
-
echo
|
35 |
echo '|';
|
36 |
}
|
37 |
}
|
29 |
if ( $f == 'getUserPerDay' )
|
30 |
echo $count_per_day->getUserPerDay($count_per_day->options['dashboard_last_days']);
|
31 |
else if ( $f == 'show' )
|
32 |
+
echo $count_per_day->show('', '', false, false, $page);
|
33 |
else
|
34 |
+
echo $count_per_day->{$f}();
|
35 |
echo '|';
|
36 |
}
|
37 |
}
|
counter-core.php
CHANGED
@@ -49,8 +49,11 @@ function init()
|
|
49 |
// manual debug mode
|
50 |
if (!empty($_GET['debug']) && WP_DEBUG )
|
51 |
$this->options['debug'] = 1;
|
|
|
|
|
|
|
|
|
52 |
|
53 |
-
$this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
|
54 |
$this->queries[0] = 0;
|
55 |
|
56 |
// update online counter
|
@@ -326,13 +329,16 @@ function getPostID()
|
|
326 |
* @param string $client USER_AGENT
|
327 |
* @param array $bots strings to check
|
328 |
* @param string $ip IP adress
|
|
|
329 |
*/
|
330 |
-
function isBot( $client = '', $bots = '', $ip = '' )
|
331 |
{
|
332 |
if ( empty($client) && isset($_SERVER['HTTP_USER_AGENT']) )
|
333 |
$client = $_SERVER['HTTP_USER_AGENT'];
|
334 |
if (empty($ip))
|
335 |
$ip = $_SERVER['REMOTE_ADDR'];
|
|
|
|
|
336 |
|
337 |
// empty/short client -> not normal browser -> bot
|
338 |
if ( empty($client) || strlen($client) < 20 )
|
@@ -347,7 +353,7 @@ function isBot( $client = '', $bots = '', $ip = '' )
|
|
347 |
if (!$isBot) // loop until first bot was found only
|
348 |
{
|
349 |
$b = trim($bot);
|
350 |
-
if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false ) )
|
351 |
$isBot = true;
|
352 |
}
|
353 |
}
|
@@ -579,8 +585,8 @@ jQuery(document).ready( function()
|
|
579 |
for(var i = 0; i < cpd_funcs.length; i++)
|
580 |
{
|
581 |
var cpd_daten = cpd_funcs[i].split('===');
|
582 |
-
var
|
583 |
-
if (
|
584 |
}
|
585 |
});
|
586 |
} );
|
@@ -628,7 +634,8 @@ function menu($content)
|
|
628 |
global $cpd_dir_name;
|
629 |
if (function_exists('add_options_page'))
|
630 |
{
|
631 |
-
|
|
|
632 |
add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
|
633 |
}
|
634 |
}
|
@@ -729,7 +736,8 @@ function screenLayoutColumns($columns, $screen)
|
|
729 |
*/
|
730 |
function setAdminMenu()
|
731 |
{
|
732 |
-
|
|
|
733 |
$this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
|
734 |
add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
|
735 |
}
|
49 |
// manual debug mode
|
50 |
if (!empty($_GET['debug']) && WP_DEBUG )
|
51 |
$this->options['debug'] = 1;
|
52 |
+
// $this->dir = get_bloginfo('wpurl').'/'.PLUGINDIR.'/'.$cpd_dir_name;
|
53 |
+
$this->dir = plugins_url('/'.$cpd_dir_name);
|
54 |
+
// var_dump($this->dir);
|
55 |
+
// content_url()
|
56 |
|
|
|
57 |
$this->queries[0] = 0;
|
58 |
|
59 |
// update online counter
|
329 |
* @param string $client USER_AGENT
|
330 |
* @param array $bots strings to check
|
331 |
* @param string $ip IP adress
|
332 |
+
* @param string $ref referrer
|
333 |
*/
|
334 |
+
function isBot( $client = '', $bots = '', $ip = '', $ref = '' )
|
335 |
{
|
336 |
if ( empty($client) && isset($_SERVER['HTTP_USER_AGENT']) )
|
337 |
$client = $_SERVER['HTTP_USER_AGENT'];
|
338 |
if (empty($ip))
|
339 |
$ip = $_SERVER['REMOTE_ADDR'];
|
340 |
+
if ( empty($ref) && isset($_SERVER['HTTP_REFERER']) )
|
341 |
+
$ref = $_SERVER['HTTP_REFERER'];
|
342 |
|
343 |
// empty/short client -> not normal browser -> bot
|
344 |
if ( empty($client) || strlen($client) < 20 )
|
353 |
if (!$isBot) // loop until first bot was found only
|
354 |
{
|
355 |
$b = trim($bot);
|
356 |
+
if ( !empty($b) && ( $ip == $b || strpos( strtolower($client), strtolower($b) ) !== false || strpos( strtolower($ref), strtolower($b) ) !== false ) )
|
357 |
$isBot = true;
|
358 |
}
|
359 |
}
|
585 |
for(var i = 0; i < cpd_funcs.length; i++)
|
586 |
{
|
587 |
var cpd_daten = cpd_funcs[i].split('===');
|
588 |
+
var cpd_field = document.getElementById('cpd_number_' + cpd_daten[0].toLowerCase());
|
589 |
+
if (cpd_field != null) { cpd_field.innerHTML = cpd_daten[1]; }
|
590 |
}
|
591 |
});
|
592 |
} );
|
634 |
global $cpd_dir_name;
|
635 |
if (function_exists('add_options_page'))
|
636 |
{
|
637 |
+
// $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="/" style="width:9px;height:12px;" /> Count per Day';
|
638 |
+
$menutitle = 'Count per Day';
|
639 |
add_options_page('CountPerDay', $menutitle, 'manage_options', $cpd_dir_name.'/counter-options.php') ;
|
640 |
}
|
641 |
}
|
736 |
*/
|
737 |
function setAdminMenu()
|
738 |
{
|
739 |
+
// $menutitle = '<img src="'.$this->img('cpd_menu.gif').'" alt="" style="width:12px;height:12px;" /> Count per Day';
|
740 |
+
$menutitle = 'Count per Day';
|
741 |
$this->pagehook = add_submenu_page('index.php', 'CountPerDay', $menutitle, $this->options['whocansee'], CPD_METABOX, array(&$this, 'onShowPage'));
|
742 |
add_action('load-'.$this->pagehook, array(&$this, 'onLoadPage'));
|
743 |
}
|
counter-options.php
CHANGED
@@ -330,6 +330,21 @@ if(!empty($_POST['do']))
|
|
330 |
update_option('count_per_day_search', $searches);
|
331 |
unset($searches);
|
332 |
echo '<div class="updated"><p>'.__('Old search strings deleted', 'cpd').'</p></div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
333 |
|
334 |
default:
|
335 |
break;
|
@@ -537,10 +552,10 @@ switch($mode) {
|
|
537 |
<div class="postbox">
|
538 |
<h3><span class="cpd_icon cpd_clean"> </span> <?php _e('Clean the database', 'cpd') ?></h3>
|
539 |
<div class="inside">
|
|
|
540 |
<p>
|
541 |
<?php _e('You can clean the counter table by delete the "spam data".<br />If you add new bots above the old "spam data" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots.', 'cpd') ?>
|
542 |
</p>
|
543 |
-
<form method="post" action="<?php echo $mysiteurl ?>">
|
544 |
<p>
|
545 |
<input type="hidden" name="do" value="cpd_clean" />
|
546 |
<input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
|
@@ -548,12 +563,25 @@ switch($mode) {
|
|
548 |
</form>
|
549 |
|
550 |
<form method="post" action="<?php echo $mysiteurl ?>">
|
|
|
|
|
|
|
551 |
<p>
|
552 |
-
<?php printf(__('Delete search strings older than %s days.', 'cpd'), '<input type="text" size="2" name="cpd_keepsearch" value="14" class="code" />') ?><br/>
|
553 |
<input type="hidden" name="do" value="cpd_searchclean" />
|
554 |
<input type="submit" name="clean" value="<?php _e('Delete search strings', 'cpd') ?>" class="button" />
|
555 |
</p>
|
556 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
</div>
|
558 |
</div>
|
559 |
<?php endif; ?>
|
330 |
update_option('count_per_day_search', $searches);
|
331 |
unset($searches);
|
332 |
echo '<div class="updated"><p>'.__('Old search strings deleted', 'cpd').'</p></div>';
|
333 |
+
|
334 |
+
|
335 |
+
// delete clients and referers
|
336 |
+
case 'cpd_clientsclean' :
|
337 |
+
$days = intval($_POST['cpd_keepclients']);
|
338 |
+
$deldate = date('Y-m-d', time() - $days * 86400);
|
339 |
+
|
340 |
+
$cpd_sql = "
|
341 |
+
UPDATE $wpdb->cpd_counter
|
342 |
+
SET client = '',
|
343 |
+
referer = ''
|
344 |
+
WHERE date < '$deldate'";
|
345 |
+
$count_per_day->mysqlQuery('', $cpd_sql, 'deleteClients '.__LINE__);
|
346 |
+
|
347 |
+
echo '<div class="updated"><p>'.__('Clients and referers deleted', 'cpd').'</p></div>';
|
348 |
|
349 |
default:
|
350 |
break;
|
552 |
<div class="postbox">
|
553 |
<h3><span class="cpd_icon cpd_clean"> </span> <?php _e('Clean the database', 'cpd') ?></h3>
|
554 |
<div class="inside">
|
555 |
+
<form method="post" action="<?php echo $mysiteurl ?>">
|
556 |
<p>
|
557 |
<?php _e('You can clean the counter table by delete the "spam data".<br />If you add new bots above the old "spam data" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots.', 'cpd') ?>
|
558 |
</p>
|
|
|
559 |
<p>
|
560 |
<input type="hidden" name="do" value="cpd_clean" />
|
561 |
<input type="submit" name="clean" value="<?php _e('Clean the database', 'cpd') ?>" class="button" />
|
563 |
</form>
|
564 |
|
565 |
<form method="post" action="<?php echo $mysiteurl ?>">
|
566 |
+
<p style="border-top:1px #ddd solid; padding-top:10px">
|
567 |
+
<?php printf(__('Delete search strings older than %s days.', 'cpd'), '<input type="text" size="2" name="cpd_keepsearch" value="14" class="code" />') ?>
|
568 |
+
</p>
|
569 |
<p>
|
|
|
570 |
<input type="hidden" name="do" value="cpd_searchclean" />
|
571 |
<input type="submit" name="clean" value="<?php _e('Delete search strings', 'cpd') ?>" class="button" />
|
572 |
</p>
|
573 |
</form>
|
574 |
+
|
575 |
+
<form method="post" action="<?php echo $mysiteurl ?>">
|
576 |
+
<p style="border-top:1px #ddd solid; padding-top:10px">
|
577 |
+
<?php printf(__('Current size of your counter table %s is %s.', 'cpd'), '<code>'.$wpdb->cpd_counter.'</code>', $count_per_day->getTableSize($wpdb->cpd_counter));?><br/>
|
578 |
+
<?php printf(__('Delete clients and referers older than %s days to reduce the size of the counter table.', 'cpd'), '<input type="text" size="2" name="cpd_keepclients" value="90" class="code" />') ?>
|
579 |
+
</p>
|
580 |
+
<p>
|
581 |
+
<input type="hidden" name="do" value="cpd_clientsclean" />
|
582 |
+
<input type="submit" name="clean" value="<?php _e('Delete clients and referers', 'cpd') ?>" class="button" />
|
583 |
+
</p>
|
584 |
+
</form>
|
585 |
</div>
|
586 |
</div>
|
587 |
<?php endif; ?>
|
counter.css
CHANGED
@@ -169,8 +169,7 @@ h2 .cpd_icon {
|
|
169 |
.cpd-dashboard li b {
|
170 |
float: right;
|
171 |
text-align: right;
|
172 |
-
font-
|
173 |
-
font-size: 18px;
|
174 |
color: #2583ad;
|
175 |
}
|
176 |
|
@@ -195,6 +194,12 @@ h2 .cpd_icon {
|
|
195 |
text-align: right;
|
196 |
}
|
197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
/* widget */
|
199 |
|
200 |
.cpd_widget_item {
|
169 |
.cpd-dashboard li b {
|
170 |
float: right;
|
171 |
text-align: right;
|
172 |
+
font-size: 1.2em;
|
|
|
173 |
color: #2583ad;
|
174 |
}
|
175 |
|
194 |
text-align: right;
|
195 |
}
|
196 |
|
197 |
+
/* otherwise hidden on little displays */
|
198 |
+
.columns-prefs .columns-prefs-3, .columns-prefs .columns-prefs-4 {
|
199 |
+
display: inline-block !important;
|
200 |
+
}
|
201 |
+
|
202 |
+
|
203 |
/* widget */
|
204 |
|
205 |
.cpd_widget_item {
|
counter.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
Plugin Name: Count Per Day
|
4 |
Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
|
5 |
Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
-
Version: 3.2.
|
7 |
License: Postcardware
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
-
$cpd_version = '3.2.
|
14 |
|
15 |
if (strpos($_SERVER['SERVER_NAME'], '.test'))
|
16 |
$cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
|
@@ -119,6 +119,7 @@ function count( $x, $page = 'x' )
|
|
119 |
$real_ip = $_SERVER['REMOTE_ADDR'];
|
120 |
|
121 |
$userip = $this->anonymize_ip($real_ip);
|
|
|
122 |
$client = ($this->options['referers']) ? wp_strip_all_tags($_SERVER['HTTP_USER_AGENT']) : '';
|
123 |
$referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? wp_strip_all_tags($_SERVER['HTTP_REFERER']) : '';
|
124 |
if ($this->options['referers_cut'])
|
@@ -133,6 +134,10 @@ function count( $x, $page = 'x' )
|
|
133 |
{
|
134 |
// with GeoIP addon save country
|
135 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
|
|
|
|
|
|
|
|
136 |
if ( strpos($userip,'.') !== false && strpos($userip,':') === false)
|
137 |
{
|
138 |
// IPv4
|
@@ -872,7 +877,7 @@ function getVisitedPostsOnDay( $date = 0, $limit = 0, $show_form = true, $show_n
|
|
872 |
}
|
873 |
if (isset($note))
|
874 |
echo '<p style="background:#eee; padding:2px;">'.implode(', ', $note).'</p>';
|
875 |
-
$r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend );
|
876 |
if ($return) return $r; else echo $r;
|
877 |
}
|
878 |
|
@@ -933,7 +938,7 @@ function getReferers( $limit = 0, $return = false, $days = 0 )
|
|
933 |
|
934 |
// local url filter
|
935 |
$dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
|
936 |
-
|
937 |
$localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%%' ";
|
938 |
$res = $this->mysqlQuery('rows', "SELECT COUNT(*) count, referer FROM $wpdb->cpd_counter WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers '.__LINE__);
|
939 |
$r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'</small>';
|
@@ -1086,16 +1091,16 @@ function getUserPer_SQL( $sql, $name = '', $frontend = false, $limit = 0 )
|
|
1086 |
$r .= '<a href="'.get_bloginfo('url');
|
1087 |
if ( $row->tax == 'category' )
|
1088 |
// category
|
1089 |
-
$r .= '?cat='.abs($row->post_id).'">- '
|
1090 |
else if ( $row->tax )
|
1091 |
// tag
|
1092 |
-
$r .= '?tag='.$row->tag_cat_slug.'">- '
|
1093 |
else if ( $row->post_id == 0 )
|
1094 |
// homepage
|
1095 |
-
$r .= '">- '.__('Front page
|
1096 |
else
|
1097 |
// post/page
|
1098 |
-
$r .= '?p='.$row->post_id.'">'.($row->post ? $row->post : '---');
|
1099 |
$r .= '</a>';
|
1100 |
|
1101 |
$r .= ' <b>'.$row->count.'</b></li>'."\n";
|
@@ -1125,6 +1130,7 @@ function getSearches( $limit = 0, $days = 0, $return = false )
|
|
1125 |
if (is_array($strings))
|
1126 |
foreach ( $strings as $s )
|
1127 |
{
|
|
|
1128 |
if (isset($c[$s]))
|
1129 |
$c[$s]++;
|
1130 |
else
|
3 |
Plugin Name: Count Per Day
|
4 |
Plugin URI: http://www.tomsdimension.de/wp-plugins/count-per-day
|
5 |
Description: Counter, shows reads and visitors per page; today, yesterday, last week, last months ... on dashboard, per shortcode or in widget.
|
6 |
+
Version: 3.2.10
|
7 |
License: Postcardware
|
8 |
Author: Tom Braider
|
9 |
Author URI: http://www.tomsdimension.de
|
10 |
*/
|
11 |
|
12 |
$cpd_dir_name = 'count-per-day';
|
13 |
+
$cpd_version = '3.2.10';
|
14 |
|
15 |
if (strpos($_SERVER['SERVER_NAME'], '.test'))
|
16 |
$cpd_path = str_replace('/', DIRECTORY_SEPARATOR, ABSPATH.PLUGINDIR.'/'.$cpd_dir_name.'/');
|
119 |
$real_ip = $_SERVER['REMOTE_ADDR'];
|
120 |
|
121 |
$userip = $this->anonymize_ip($real_ip);
|
122 |
+
|
123 |
$client = ($this->options['referers']) ? wp_strip_all_tags($_SERVER['HTTP_USER_AGENT']) : '';
|
124 |
$referer = ($this->options['referers'] && isset($_SERVER['HTTP_REFERER'])) ? wp_strip_all_tags($_SERVER['HTTP_REFERER']) : '';
|
125 |
if ($this->options['referers_cut'])
|
134 |
{
|
135 |
// with GeoIP addon save country
|
136 |
$gi = cpd_geoip_open($cpd_path.'geoip/GeoIP.dat', GEOIP_STANDARD);
|
137 |
+
|
138 |
+
if (!filter_var($userip, FILTER_VALIDATE_IP))
|
139 |
+
$userip = ' 127.0.0.1';
|
140 |
+
|
141 |
if ( strpos($userip,'.') !== false && strpos($userip,':') === false)
|
142 |
{
|
143 |
// IPv4
|
877 |
}
|
878 |
if (isset($note))
|
879 |
echo '<p style="background:#eee; padding:2px;">'.implode(', ', $note).'</p>';
|
880 |
+
$r = $this->getUserPer_SQL( $sql, 'getVisitedPostsOnDay', $frontend, $limit );
|
881 |
if ($return) return $r; else echo $r;
|
882 |
}
|
883 |
|
938 |
|
939 |
// local url filter
|
940 |
$dayfiltre = "AND date > DATE_SUB('".date_i18n('Y-m-d')."', INTERVAL $days DAY)";
|
941 |
+
|
942 |
$localref = ($this->options['localref']) ? '' : " AND referer NOT LIKE '".get_bloginfo('url')."%%' ";
|
943 |
$res = $this->mysqlQuery('rows', "SELECT COUNT(*) count, referer FROM $wpdb->cpd_counter WHERE referer > '' $dayfiltre $localref GROUP BY referer ORDER BY count DESC LIMIT $limit", 'getReferers '.__LINE__);
|
944 |
$r = '<small>'.sprintf(__('The %s referrers in last %s days:', 'cpd'), $limit, $days).'</small>';
|
1091 |
$r .= '<a href="'.get_bloginfo('url');
|
1092 |
if ( $row->tax == 'category' )
|
1093 |
// category
|
1094 |
+
$r .= '?cat='.abs($row->post_id).'">- '.__($row->tag_cat_name).' ('.__('Category').') -';
|
1095 |
else if ( $row->tax )
|
1096 |
// tag
|
1097 |
+
$r .= '?tag='.$row->tag_cat_slug.'">- '.__($row->tag_cat_name).' ('.__('Tag').') -';
|
1098 |
else if ( $row->post_id == 0 )
|
1099 |
// homepage
|
1100 |
+
$r .= '">- '.__('Front page').' -';
|
1101 |
else
|
1102 |
// post/page
|
1103 |
+
$r .= '?p='.$row->post_id.'">'.($row->post ? __($row->post) : '---');
|
1104 |
$r .= '</a>';
|
1105 |
|
1106 |
$r .= ' <b>'.$row->count.'</b></li>'."\n";
|
1130 |
if (is_array($strings))
|
1131 |
foreach ( $strings as $s )
|
1132 |
{
|
1133 |
+
$s = strtolower($s);
|
1134 |
if (isset($c[$s]))
|
1135 |
$c[$s]++;
|
1136 |
else
|
geoip/GeoIP.dat
CHANGED
Binary file
|
geoip/geoip.php
CHANGED
@@ -26,11 +26,19 @@ function getCountry( $ip )
|
|
26 |
$ip = "::$ip";
|
27 |
|
28 |
$gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
if ( empty($c) )
|
|
|
32 |
$c = 'unknown';
|
33 |
-
|
|
|
34 |
cpd_geoip_close($gi);
|
35 |
$country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
|
36 |
return $country;
|
26 |
$ip = "::$ip";
|
27 |
|
28 |
$gi = cpd_geoip_open($cpd_path.'/geoip/GeoIP.dat', GEOIP_STANDARD);
|
29 |
+
|
30 |
+
// if ( strpos($ip, 'u') !== false ) // 'unknow...'
|
31 |
+
if (filter_var($ip, FILTER_VALIDATE_IP))
|
32 |
+
{
|
33 |
+
$c = strtolower(cpd_geoip_country_code_by_addr_v6($gi, $ip));
|
34 |
+
$cname = cpd_geoip_country_name_by_addr_v6($gi, $ip);
|
35 |
+
}
|
36 |
|
37 |
if ( empty($c) )
|
38 |
+
{
|
39 |
$c = 'unknown';
|
40 |
+
$cname = '';
|
41 |
+
}
|
42 |
cpd_geoip_close($gi);
|
43 |
$country = array( $c, '<div class="cpd-flag cpd-flag-'.$c.'" title="'.$cname.'"></div>', $cname );
|
44 |
return $country;
|
locale/cpd-az_AZ.po
CHANGED
@@ -1,972 +1,1122 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count
|
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-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
"X-Poedit-
|
17 |
-
"X-Poedit-
|
18 |
-
"X-Poedit-
|
19 |
-
"X-Poedit-
|
20 |
-
"X-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
#: counter-options.php:
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
#: counter-options.php:133
|
41 |
-
#: counter-options.php:134
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
#: counter-options.php:
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
#: counter-options.php:
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
#: counter-options.php:
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
#: counter.php:
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
#: counter.php:
|
163 |
-
#: counter.php:
|
164 |
-
#: counter.php:
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
#: counter.php:
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
#: counter.php:
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
#: counter.php:
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
#: counter.php:
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
#: counter.php:
|
195 |
-
#: counter.php:
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
#: counter.php:
|
202 |
-
#: counter.php:
|
203 |
-
#: counter.php:
|
204 |
-
#: counter.php:
|
205 |
-
#:
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
#: counter.php:
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
#: counter-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
#: counter-options.php:
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
#: counter-options.php:
|
250 |
-
#: counter-options.php:
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
#: counter-options.php:
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
#: counter-
|
299 |
-
#: counter-options.php:
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
#: counter-
|
311 |
-
#: counter.php:
|
312 |
-
#: counter.php:
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
#: counter-options.php:
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
#:
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
#:
|
429 |
-
#:
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
#:
|
441 |
-
|
442 |
-
#@
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
#: counter-options.php:
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
#: counter.php:
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
#: counter.php:
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
#: counter.php:
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
#:
|
505 |
-
#: notes.php:
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
#: massbots.php:
|
527 |
-
#: userperspan.php:
|
528 |
-
#@ default
|
529 |
-
msgid "Front page displays"
|
530 |
-
msgstr "Əsas səhifənin göstərişi"
|
531 |
-
|
532 |
-
#: counter-core.php:
|
533 |
-
#: counter-options.php:
|
534 |
-
#@ cpd
|
535 |
-
msgid "Browsers"
|
536 |
-
msgstr "Brauzerlər"
|
537 |
-
|
538 |
-
#: counter-core.php:
|
539 |
-
#@ cpd
|
540 |
-
msgid "Latest Counts"
|
541 |
-
msgstr "Yaxında keçirilmiş hesablamalar"
|
542 |
-
|
543 |
-
#: counter-core.php:
|
544 |
-
#@ default
|
545 |
-
msgid "Plugin"
|
546 |
-
msgstr "Plagin"
|
547 |
-
|
548 |
-
#: counter-core.php:
|
549 |
-
#@ cpd
|
550 |
-
msgid "Reads per Country"
|
551 |
-
msgstr "Ölkələr üzrə oxunuşlar"
|
552 |
-
|
553 |
-
#: counter.php:
|
554 |
-
#: counter.php:
|
555 |
-
#@ cpd
|
556 |
-
msgid "Map"
|
557 |
-
msgstr "Xəritə"
|
558 |
-
|
559 |
-
#: geoip/geoip.php:
|
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:
|
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:
|
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:
|
575 |
-
#@ default
|
576 |
-
msgid "Action"
|
577 |
-
msgstr "Hərəkət"
|
578 |
-
|
579 |
-
#: notes.php:
|
580 |
-
#@ cpd
|
581 |
-
msgid "add"
|
582 |
-
msgstr "əlavə etmək"
|
583 |
-
|
584 |
-
#: notes.php:
|
585 |
-
#@ cpd
|
586 |
-
msgid "save"
|
587 |
-
msgstr "yaddaşda saxlamaq"
|
588 |
-
|
589 |
-
#: notes.php:
|
590 |
-
#@ cpd
|
591 |
-
msgid "delete"
|
592 |
-
msgstr "silmək"
|
593 |
-
|
594 |
-
#: notes.php:
|
595 |
-
#@ cpd
|
596 |
-
msgid "edit"
|
597 |
-
msgstr "redaktə etmək"
|
598 |
-
|
599 |
-
#: counter-options.php:
|
600 |
-
#@ cpd
|
601 |
-
msgid "Cache"
|
602 |
-
msgstr "Keş"
|
603 |
-
|
604 |
-
#: counter-options.php:
|
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:
|
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:
|
615 |
-
#@ cpd
|
616 |
-
msgid "Debug mode"
|
617 |
-
msgstr "Düzəliş rejimi"
|
618 |
-
|
619 |
-
#: counter-options.php:
|
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:
|
625 |
-
#@ cpd
|
626 |
-
msgid "Visitors per Country"
|
627 |
-
msgstr "Ölkə üzrə gəlişlər"
|
628 |
-
|
629 |
-
#: userperspan.php:
|
630 |
-
#@ cpd
|
631 |
-
msgid "Start"
|
632 |
-
msgstr "Başlamaq"
|
633 |
-
|
634 |
-
#: userperspan.php:
|
635 |
-
#@ cpd
|
636 |
-
msgid "End"
|
637 |
-
msgstr "Son"
|
638 |
-
|
639 |
-
#: userperspan.php:
|
640 |
-
#@ cpd
|
641 |
-
msgid "PostID"
|
642 |
-
msgstr "ID məlumatlar"
|
643 |
-
|
644 |
-
#: counter-options.php:
|
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:
|
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:
|
655 |
-
#@ cpd
|
656 |
-
msgid "no data found"
|
657 |
-
msgstr "heç bir məlumat tapılmayıb"
|
658 |
-
|
659 |
-
#: counter-options.php:
|
660 |
-
#@ cpd
|
661 |
-
msgid "Counter"
|
662 |
-
msgstr "Sayğac"
|
663 |
-
|
664 |
-
#: counter-options.php:
|
665 |
-
#@ cpd
|
666 |
-
msgid "Clients and referrers"
|
667 |
-
msgstr "Müştərilər və istinad olan saytlar"
|
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 "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:
|
675 |
-
#@ cpd
|
676 |
-
msgid "Local URLs"
|
677 |
-
msgstr "Lokal URL"
|
678 |
-
|
679 |
-
#: counter-options.php:
|
680 |
-
#@ cpd
|
681 |
-
msgid "Show local referrers too."
|
682 |
-
msgstr "Lokal keçidləri də göstərmək."
|
683 |
-
|
684 |
-
#: counter-options.php:
|
685 |
-
#@ default
|
686 |
-
msgid "Posts"
|
687 |
-
msgstr "Yazılar"
|
688 |
-
|
689 |
-
#: counter-options.php:
|
690 |
-
#@ default
|
691 |
-
msgid "Pages"
|
692 |
-
msgstr "Səhifələr"
|
693 |
-
|
694 |
-
#: counter.php:
|
695 |
-
#: counter.php:
|
696 |
-
#@ cpd
|
697 |
-
msgid "Reads last week"
|
698 |
-
msgstr "Ötən həftənin oxunuşları"
|
699 |
-
|
700 |
-
#: counter.php:
|
701 |
-
#@ default
|
702 |
-
msgid "Category"
|
703 |
-
msgstr "Kateqoriyalar"
|
704 |
-
|
705 |
-
#: counter.php:
|
706 |
-
#@ default
|
707 |
-
msgid "Tag"
|
708 |
-
msgstr "Teq"
|
709 |
-
|
710 |
-
#: counter-core.php:
|
711 |
-
#@ default
|
712 |
-
msgid "License"
|
713 |
-
msgstr "Lisenziya"
|
714 |
-
|
715 |
-
#: counter-core.php:
|
716 |
-
#: counter.php:
|
717 |
-
#@ cpd
|
718 |
-
msgid "Reads per month"
|
719 |
-
msgstr "Ay ərzində oxunuşlar"
|
720 |
-
|
721 |
-
#: counter-core.php:
|
722 |
-
#@ cpd
|
723 |
-
msgid "Referrer"
|
724 |
-
msgstr "İstinad olunan sayt"
|
725 |
-
|
726 |
-
#: counter-options.php:
|
727 |
-
#@ cpd
|
728 |
-
msgid "Referrers - Entries"
|
729 |
-
msgstr "İstenad olan saytlar - Girişlər"
|
730 |
-
|
731 |
-
#: counter-options.php:
|
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:
|
737 |
-
#@ cpd
|
738 |
-
msgid "Referrers - Days"
|
739 |
-
msgstr "İstenad olan saytlar - Günlər"
|
740 |
-
|
741 |
-
#: counter.php:
|
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:
|
748 |
-
#@ cpd
|
749 |
-
msgid "Visitors online"
|
750 |
-
msgstr "Qonaq onlayn"
|
751 |
-
|
752 |
-
#: counter.php:
|
753 |
-
#@ default
|
754 |
-
msgid "Title"
|
755 |
-
msgstr "Başlıq"
|
756 |
-
|
757 |
-
#: counter-core.php:
|
758 |
-
#, php-format
|
759 |
-
#@ cpd
|
760 |
-
msgid "\"Count per Day\" updated to version %s."
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: counter-core.php:
|
764 |
-
#@ cpd
|
765 |
-
msgid "Backup failed! Cannot open file"
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: counter-core.php:
|
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:
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Count Per Day v3.2.10\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-05-08 08:13:03+0000\n"
|
7 |
+
"Last-Translator: Madat <translator.baku@gmail.com>\n"
|
8 |
+
"Language-Team: Webmestre <translator.baku@gmail.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: Azerbaijani\n"
|
15 |
+
"X-Poedit-Country: AZERBAIJAN\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: P:/xampp/htdocs/wp/wp-content/plugins/count-per-day\n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: counter-options.php:52
|
24 |
+
#@ cpd
|
25 |
+
msgid "Options updated"
|
26 |
+
msgstr "Opsiyalar yaddaşda saxlanılıb"
|
27 |
+
|
28 |
+
#: counter-options.php:113
|
29 |
+
#, php-format
|
30 |
+
#@ cpd
|
31 |
+
msgid "Database cleaned. %s rows deleted."
|
32 |
+
msgstr "Məlumat bazası silinib. %s sətir silinib."
|
33 |
+
|
34 |
+
#: counter-options.php:128
|
35 |
+
#: counter-options.php:719
|
36 |
+
#@ cpd
|
37 |
+
msgid "UNINSTALL Count per Day"
|
38 |
+
msgstr "DEİNSTALYASİYA Gündəlik Sayğac. "
|
39 |
+
|
40 |
+
#: counter-options.php:133
|
41 |
+
#: counter-options.php:134
|
42 |
+
#: counter-options.php:135
|
43 |
+
#, php-format
|
44 |
+
#@ cpd
|
45 |
+
msgid "Table %s deleted"
|
46 |
+
msgstr "Cədvəl %s silinib"
|
47 |
+
|
48 |
+
#: counter-options.php:136
|
49 |
+
#@ cpd
|
50 |
+
msgid "Options deleted"
|
51 |
+
msgstr "Opsiyalar silinib"
|
52 |
+
|
53 |
+
#: counter-options.php:377
|
54 |
+
#: counter-options.php:705
|
55 |
+
#@ cpd
|
56 |
+
msgid "Uninstall"
|
57 |
+
msgstr "Deinstalyasiya"
|
58 |
+
|
59 |
+
#: counter-options.php:378
|
60 |
+
#@ cpd
|
61 |
+
msgid "Click here"
|
62 |
+
msgstr "Bura basın"
|
63 |
+
|
64 |
+
#: counter-options.php:378
|
65 |
+
#@ cpd
|
66 |
+
msgid "to finish the uninstall and to deactivate \"Count per Day\"."
|
67 |
+
msgstr "deinstalyasiyanı bitirilməsi və \"Gündəlik Sayğac\" deaktivizasiya üçün. "
|
68 |
+
|
69 |
+
#: counter-options.php:752
|
70 |
+
#@ cpd
|
71 |
+
msgid "Online time"
|
72 |
+
msgstr "Onlayn vaxt"
|
73 |
+
|
74 |
+
#: counter-options.php:753
|
75 |
+
#@ cpd
|
76 |
+
msgid "Seconds for online counter. Used for \"Visitors online\" on dashboard page."
|
77 |
+
msgstr "Onlayn sayğac üçün saniyələr. \"İnstrumentlər panelində\" \"Onlayn qonaqlar \" üçün istifadə olunur."
|
78 |
+
|
79 |
+
#: counter-options.php:756
|
80 |
+
#@ cpd
|
81 |
+
msgid "Logged on Users"
|
82 |
+
msgstr "Daxil olmuş istifadəçilər"
|
83 |
+
|
84 |
+
#: counter-options.php:758
|
85 |
+
#@ cpd
|
86 |
+
msgid "count too"
|
87 |
+
msgstr "onu da saymaq"
|
88 |
+
|
89 |
+
#: counter-options.php:770
|
90 |
+
#@ cpd
|
91 |
+
msgid "Auto counter"
|
92 |
+
msgstr "Avtomatik sayğac"
|
93 |
+
|
94 |
+
#: counter-options.php:771
|
95 |
+
#@ cpd
|
96 |
+
msgid "Counts automatically single-posts and pages, no changes on template needed."
|
97 |
+
msgstr "Ayrica yazıları və səhifələri avtomatik olaraq sayır, heç bir dəyişiklik etmək şablonda lazım olmayacaq."
|
98 |
+
|
99 |
+
#: counter-options.php:774
|
100 |
+
#@ cpd
|
101 |
+
msgid "Bots to ignore"
|
102 |
+
msgstr "Botları əhəmiyyət verməmək"
|
103 |
+
|
104 |
+
#: counter-options.php:952
|
105 |
+
#@ cpd
|
106 |
+
msgid "Update options"
|
107 |
+
msgstr "Opsiyaları yeniləşdirmək"
|
108 |
+
|
109 |
+
#: counter-options.php:553
|
110 |
+
#: counter-options.php:561
|
111 |
+
#@ cpd
|
112 |
+
msgid "Clean the database"
|
113 |
+
msgstr "Məlumat bazasının silmək"
|
114 |
+
|
115 |
+
#: counter-options.php:557
|
116 |
+
#@ cpd
|
117 |
+
msgid "You can clean the counter table by delete the \"spam data\".<br />If you add new bots above the old \"spam data\" keeps in the database.<br />Here you can run the bot filter again and delete the visits of the bots."
|
118 |
+
msgstr "\"Spam məlumatı \" silərək Siz sayğacını təmizləyə bilərsiniz. <br /> Əgər Siz köhnə \"spam məlumatının \" üstəndən yeni botlarını əlavə etsəniz, Siz məlumat bazasını qorura bilərsiniz. <br /> Burada Siz yenidən bot-filtrı yenidən qoşa bilərsiniz və botun baş çəkməsini silə bilərsiniz."
|
119 |
+
|
120 |
+
#: counter-options.php:708
|
121 |
+
#@ cpd
|
122 |
+
msgid "If \"Count per Day\" only disabled the tables in the database will be preserved."
|
123 |
+
msgstr "Əgər \"Gündəlik sayğac \" aktivizasiya olunubsa, onda cədvəllər məlumat bazasında qorunacaqdır."
|
124 |
+
|
125 |
+
#: counter-options.php:709
|
126 |
+
#@ cpd
|
127 |
+
msgid "Here you can delete the tables and disable \"Count per Day\"."
|
128 |
+
msgstr "Siz burada \"Gündəlik sayğacı\" silə və söndürə bilərsiniz."
|
129 |
+
|
130 |
+
#: counter-options.php:712
|
131 |
+
#@ cpd
|
132 |
+
msgid "WARNING"
|
133 |
+
msgstr "DİQQƏT"
|
134 |
+
|
135 |
+
#: counter-options.php:713
|
136 |
+
#@ cpd
|
137 |
+
msgid "These tables (with ALL counter data) will be deleted."
|
138 |
+
msgstr "Bu cədvəllər (Bütün sayğacın məlumatları ilə birlikdə) silinəcəkdirlər."
|
139 |
+
|
140 |
+
#: counter-options.php:715
|
141 |
+
#@ cpd
|
142 |
+
msgid "If \"Count per Day\" re-installed, the counter starts at 0."
|
143 |
+
msgstr " \"Gündəlin sayğac\" yenidən instalyasiya edildikdən sonra, sayğac 0-dan başlayır."
|
144 |
+
|
145 |
+
#: counter-options.php:695
|
146 |
+
#: counter-options.php:718
|
147 |
+
#@ cpd
|
148 |
+
msgid "Yes"
|
149 |
+
msgstr "Bəli"
|
150 |
+
|
151 |
+
#: counter-options.php:719
|
152 |
+
#@ cpd
|
153 |
+
msgid "You are sure to disable Count per Day and delete all data?"
|
154 |
+
msgstr "Siz əminsiniz ki, \"Gündəlik sayğacı\" söndürmək və bütün məlumatları silmək istəyirsiniz?"
|
155 |
+
|
156 |
+
#: counter-core.php:820
|
157 |
+
#: counter.php:1283
|
158 |
+
#@ cpd
|
159 |
+
msgid "Statistics"
|
160 |
+
msgstr "Statistika"
|
161 |
+
|
162 |
+
#: counter-core.php:788
|
163 |
+
#: counter.php:223
|
164 |
+
#: counter.php:1167
|
165 |
+
#: counter.php:1361
|
166 |
+
#@ cpd
|
167 |
+
msgid "Total visitors"
|
168 |
+
msgstr "Ümümi qonaqların sayı"
|
169 |
+
|
170 |
+
#: counter.php:224
|
171 |
+
#: counter.php:1367
|
172 |
+
#@ cpd
|
173 |
+
msgid "Visitors currently online"
|
174 |
+
msgstr "İndi qonaqların sayı saytda "
|
175 |
+
|
176 |
+
#: counter.php:225
|
177 |
+
#: counter.php:1362
|
178 |
+
#@ cpd
|
179 |
+
msgid "Visitors today"
|
180 |
+
msgstr "Qonaqlar sayı bu gün"
|
181 |
+
|
182 |
+
#: counter.php:226
|
183 |
+
#: counter.php:1363
|
184 |
+
#@ cpd
|
185 |
+
msgid "Visitors yesterday"
|
186 |
+
msgstr "Qonaqların sayı dünən"
|
187 |
+
|
188 |
+
#: counter.php:227
|
189 |
+
#: counter.php:1364
|
190 |
+
#@ cpd
|
191 |
+
msgid "Visitors last week"
|
192 |
+
msgstr "Qonaqların sayı keçən həftə"
|
193 |
+
|
194 |
+
#: counter.php:230
|
195 |
+
#: counter.php:924
|
196 |
+
#: counter.php:1368
|
197 |
+
#@ cpd
|
198 |
+
msgid "Counter starts on"
|
199 |
+
msgstr "Sayğac başlanır -dan"
|
200 |
+
|
201 |
+
#: counter-core.php:794
|
202 |
+
#: counter.php:229
|
203 |
+
#: counter.php:328
|
204 |
+
#: counter.php:1169
|
205 |
+
#: counter.php:1366
|
206 |
+
#: userperspan.php:46
|
207 |
+
#@ cpd
|
208 |
+
msgid "Visitors per day"
|
209 |
+
msgstr "Gonaqlarn sayı gündə"
|
210 |
+
|
211 |
+
#: counter-core.php:790
|
212 |
+
#: counter.php:1365
|
213 |
+
#@ cpd
|
214 |
+
msgid "Visitors per month"
|
215 |
+
msgstr "Qonaqların sayı ayda"
|
216 |
+
|
217 |
+
#: counter-core.php:792
|
218 |
+
#: counter-options.php:834
|
219 |
+
#@ cpd
|
220 |
+
msgid "Visitors per post"
|
221 |
+
msgstr "Qonaqların sayı yazışa görə"
|
222 |
+
|
223 |
+
#: counter-options.php:123
|
224 |
+
#@ cpd
|
225 |
+
msgid "Counter reseted."
|
226 |
+
msgstr "Sayğac yenidən başlayıb"
|
227 |
+
|
228 |
+
#: counter-options.php:799
|
229 |
+
#@ default
|
230 |
+
msgid "Dashboard"
|
231 |
+
msgstr "Konsol"
|
232 |
+
|
233 |
+
#: counter-options.php:835
|
234 |
+
#: counter-options.php:839
|
235 |
+
#@ cpd
|
236 |
+
msgid "How many posts do you want to see on dashboard page?"
|
237 |
+
msgstr "Konsol səhifəsində neçə yazı Siz görmək istiyardiniz?"
|
238 |
+
|
239 |
+
#: counter-options.php:838
|
240 |
+
#@ cpd
|
241 |
+
msgid "Latest Counts - Posts"
|
242 |
+
msgstr "Son sayğaclar - Yazılar"
|
243 |
+
|
244 |
+
#: counter-options.php:842
|
245 |
+
#@ cpd
|
246 |
+
msgid "Latest Counts - Days"
|
247 |
+
msgstr "Son sayğaclar - Günlər"
|
248 |
+
|
249 |
+
#: counter-options.php:843
|
250 |
+
#: counter-options.php:847
|
251 |
+
#: counter-options.php:869
|
252 |
+
#@ cpd
|
253 |
+
msgid "How many days do you want look back?"
|
254 |
+
msgstr "Necə gün əvvəl olan statistikanı görmək istiyərdiniz?"
|
255 |
+
|
256 |
+
#: counter-options.php:846
|
257 |
+
#@ cpd
|
258 |
+
msgid "Chart - Days"
|
259 |
+
msgstr "Cədvəl - Günlər"
|
260 |
+
|
261 |
+
#: counter-options.php:850
|
262 |
+
#@ cpd
|
263 |
+
msgid "Chart - Height"
|
264 |
+
msgstr "Cədvəl - Hündürlük"
|
265 |
+
|
266 |
+
#: counter-options.php:851
|
267 |
+
#@ cpd
|
268 |
+
msgid "Height of the biggest bar"
|
269 |
+
msgstr "Ən böyük olan sütunun hündürlüyü"
|
270 |
+
|
271 |
+
#: counter-options.php:883
|
272 |
+
#@ cpd
|
273 |
+
msgid "Show in lists"
|
274 |
+
msgstr "Siyahıda göstərmək"
|
275 |
+
|
276 |
+
#: counter-options.php:884
|
277 |
+
#@ cpd
|
278 |
+
msgid "Show \"Reads per Post\" in a new column in post management views."
|
279 |
+
msgstr "Yazılaşların idarəetməsində yeni sütunda \"Məlumatları oxumaq\" göstərmək."
|
280 |
+
|
281 |
+
#: counter-options.php:686
|
282 |
+
#: counter-options.php:696
|
283 |
+
#@ cpd
|
284 |
+
msgid "Reset the counter"
|
285 |
+
msgstr "Sayğacı yenidən 0 qoymaq"
|
286 |
+
|
287 |
+
#: counter-options.php:689
|
288 |
+
#@ cpd
|
289 |
+
msgid "You can reset the counter by empty the table. ALL TO 0!<br />Make a backup if you need the current data!"
|
290 |
+
msgstr "Cədvəli təmizliyərək Siz sayğacı yenidən 0 qoya bilərsiniz. HAMSI 0!<br />Sizə hazırki məlumatlar lazımdırsan onda rezerv kopiyasını saxlayın!"
|
291 |
+
|
292 |
+
#: counter.php:756
|
293 |
+
#, php-format
|
294 |
+
#@ cpd
|
295 |
+
msgid "The %s most visited posts in last %s days:"
|
296 |
+
msgstr "Son %s gün ərzində ən çox %s oxunan yazılar %s :"
|
297 |
+
|
298 |
+
#: counter-core.php:652
|
299 |
+
#: counter-options.php:401
|
300 |
+
#: counter-options.php:740
|
301 |
+
#@ default
|
302 |
+
msgid "Settings"
|
303 |
+
msgstr "Kökləmələr"
|
304 |
+
|
305 |
+
#: counter.php:327
|
306 |
+
#@ cpd
|
307 |
+
msgid "Reads per day"
|
308 |
+
msgstr "Gün ərzində oxunuş"
|
309 |
+
|
310 |
+
#: counter-core.php:1464
|
311 |
+
#: counter-options.php:789
|
312 |
+
#: counter.php:222
|
313 |
+
#: counter.php:974
|
314 |
+
#@ cpd
|
315 |
+
msgid "Reads"
|
316 |
+
msgstr "Oxumalar"
|
317 |
+
|
318 |
+
#: counter.php:1355
|
319 |
+
#@ cpd
|
320 |
+
msgid "This post"
|
321 |
+
msgstr "Bu yazı"
|
322 |
+
|
323 |
+
#: counter-options.php:63
|
324 |
+
#, php-format
|
325 |
+
#@ cpd
|
326 |
+
msgid "Countries updated. <b>%s</b> entries in %s without country left"
|
327 |
+
msgstr "Ölkələr yenilənib. %s-da <b>%s</b> yazılar ölkəsiz qalıblar"
|
328 |
+
|
329 |
+
#: counter-options.php:66
|
330 |
+
#@ cpd
|
331 |
+
msgid "update next"
|
332 |
+
msgstr "sonraki yeniləşdirmək"
|
333 |
+
|
334 |
+
#: counter-options.php:106
|
335 |
+
#, php-format
|
336 |
+
#@ cpd
|
337 |
+
msgid "Mass Bots cleaned. %s counts deleted."
|
338 |
+
msgstr "Bot cədvəli təmizlənib. %s yazılar silinb."
|
339 |
+
|
340 |
+
#: counter-options.php:759
|
341 |
+
#@ cpd
|
342 |
+
msgid "until User Level"
|
343 |
+
msgstr "istifadəçi səviyyəsinə qədər"
|
344 |
+
|
345 |
+
#: counter-options.php:778
|
346 |
+
#@ cpd
|
347 |
+
msgid "Anonymous IP"
|
348 |
+
msgstr "Anonim IP"
|
349 |
+
|
350 |
+
#: counter-options.php:855
|
351 |
+
#@ cpd
|
352 |
+
msgid "Countries"
|
353 |
+
msgstr "Ölkələr"
|
354 |
+
|
355 |
+
#: counter-options.php:856
|
356 |
+
#@ cpd
|
357 |
+
msgid "How many countries do you want to see on dashboard page?"
|
358 |
+
msgstr "Siyahıda neçə ölkə görmək istiyərdiniz?"
|
359 |
+
|
360 |
+
#: counter-options.php:891
|
361 |
+
#@ cpd
|
362 |
+
msgid "Start Values"
|
363 |
+
msgstr "Başlanğıc məlumatlar"
|
364 |
+
|
365 |
+
#: counter-options.php:895
|
366 |
+
#@ cpd
|
367 |
+
msgid "Here you can change the date of first count and add a start count."
|
368 |
+
msgstr "Burada hesablama tarixini və başlanğıc sayğacı əlavə edə bilərsiniz."
|
369 |
+
|
370 |
+
#: counter-options.php:899
|
371 |
+
#@ cpd
|
372 |
+
msgid "Start date"
|
373 |
+
msgstr "Başlanğıc tarix"
|
374 |
+
|
375 |
+
#: counter-options.php:900
|
376 |
+
#@ cpd
|
377 |
+
msgid "Your old Counter starts at?"
|
378 |
+
msgstr "Sizin köhnə Sayğacınız başlanır?"
|
379 |
+
|
380 |
+
#: counter-options.php:903
|
381 |
+
#: counter-options.php:907
|
382 |
+
#@ cpd
|
383 |
+
msgid "Start count"
|
384 |
+
msgstr "Sayın başlanğıcı"
|
385 |
+
|
386 |
+
#: counter-options.php:904
|
387 |
+
#@ cpd
|
388 |
+
msgid "Add this value to \"Total visitors\"."
|
389 |
+
msgstr " \"Ümumi qonaqlar\"-ra dəyər əlavə etmək."
|
390 |
+
|
391 |
+
#: counter-options.php:636
|
392 |
+
#@ cpd
|
393 |
+
msgid "GeoIP - Countries"
|
394 |
+
msgstr "GeoIP - Ölkələr"
|
395 |
+
|
396 |
+
#: counter-options.php:645
|
397 |
+
#@ cpd
|
398 |
+
msgid "Update old counter data"
|
399 |
+
msgstr "Köhnə sayğacların məlumatlarını yeniləşdirmək"
|
400 |
+
|
401 |
+
#: counter-options.php:657
|
402 |
+
#@ cpd
|
403 |
+
msgid "Update GeoIP database"
|
404 |
+
msgstr "GeoIP məlumat bazasını yeniləşdirmək"
|
405 |
+
|
406 |
+
#: counter-options.php:652
|
407 |
+
#@ cpd
|
408 |
+
msgid "Download a new version of GeoIP.dat file."
|
409 |
+
msgstr "Yeni GeoIP.dat. versiya fayılını yükləmək."
|
410 |
+
|
411 |
+
#: counter-options.php:662
|
412 |
+
#@ cpd
|
413 |
+
msgid "More informations about GeoIP"
|
414 |
+
msgstr " GeoIP haqqında daha da çox məlumat"
|
415 |
+
|
416 |
+
#: counter-options.php:417
|
417 |
+
#: massbots.php:46
|
418 |
+
#@ cpd
|
419 |
+
msgid "Mass Bots"
|
420 |
+
msgstr "Mümkün olan botlar"
|
421 |
+
|
422 |
+
#: counter-options.php:421
|
423 |
+
#, php-format
|
424 |
+
#@ cpd
|
425 |
+
msgid "Show all IPs with more than %s page views per day"
|
426 |
+
msgstr "Gün ərzində %s daha çox olan baxışların bütün IP-lərini göstərmək"
|
427 |
+
|
428 |
+
#: counter-options.php:422
|
429 |
+
#: notes.php:84
|
430 |
+
#: userperspan.php:56
|
431 |
+
#@ cpd
|
432 |
+
msgid "show"
|
433 |
+
msgstr "göstərməkl"
|
434 |
+
|
435 |
+
#: counter-options.php:430
|
436 |
+
#@ cpd
|
437 |
+
msgid "IP"
|
438 |
+
msgstr "IP"
|
439 |
+
|
440 |
+
#: counter-options.php:431
|
441 |
+
#: notes.php:88
|
442 |
+
#@ cpd
|
443 |
+
#@ default
|
444 |
+
msgid "Date"
|
445 |
+
msgstr "Tarix"
|
446 |
+
|
447 |
+
#: counter-options.php:432
|
448 |
+
#@ cpd
|
449 |
+
msgid "Client"
|
450 |
+
msgstr "Müştəri"
|
451 |
+
|
452 |
+
#: counter-options.php:433
|
453 |
+
#@ cpd
|
454 |
+
msgid "Views"
|
455 |
+
msgstr "Baxış"
|
456 |
+
|
457 |
+
#: counter-options.php:448
|
458 |
+
#: counter-options.php:464
|
459 |
+
#, php-format
|
460 |
+
#@ cpd
|
461 |
+
msgid "Delete these %s counts"
|
462 |
+
msgstr "Bu %s sayğacları silmək"
|
463 |
+
|
464 |
+
#: counter-options.php:727
|
465 |
+
#@ cpd
|
466 |
+
msgid "Support"
|
467 |
+
msgstr "Dəstək"
|
468 |
+
|
469 |
+
#: counter-core.php:753
|
470 |
+
#, php-format
|
471 |
+
#@ cpd
|
472 |
+
msgid "Time for Count per Day: <code>%s</code>."
|
473 |
+
msgstr " Count per Day üçün vaxt: <code>%s</code>"
|
474 |
+
|
475 |
+
#: counter-core.php:754
|
476 |
+
#@ cpd
|
477 |
+
msgid "Bug? Problem? Question? Hint? Praise?"
|
478 |
+
msgstr "Səhv? Problem? Sual? Məsləhət? Alqış?"
|
479 |
+
|
480 |
+
#: counter-core.php:755
|
481 |
+
#, php-format
|
482 |
+
#@ cpd
|
483 |
+
msgid "Write a comment on the <a href=\"%s\">plugin page</a>."
|
484 |
+
msgstr " <a href=\"%s\">plaginin səhifəsinidə</a> kommentariy yazın."
|
485 |
+
|
486 |
+
#: counter.php:218
|
487 |
+
#: counter.php:1356
|
488 |
+
#@ cpd
|
489 |
+
msgid "Total reads"
|
490 |
+
msgstr "Ümumi oxunuş"
|
491 |
+
|
492 |
+
#: counter.php:219
|
493 |
+
#: counter.php:1357
|
494 |
+
#@ cpd
|
495 |
+
msgid "Reads today"
|
496 |
+
msgstr "Bu günkü oxunuş"
|
497 |
+
|
498 |
+
#: counter.php:220
|
499 |
+
#: counter.php:1358
|
500 |
+
#@ cpd
|
501 |
+
msgid "Reads yesterday"
|
502 |
+
msgstr "Dünənki oxunuş"
|
503 |
+
|
504 |
+
#: counter.php:875
|
505 |
+
#: notes.php:55
|
506 |
+
#: notes.php:89
|
507 |
+
#@ cpd
|
508 |
+
msgid "Notes"
|
509 |
+
msgstr "Qeydlər"
|
510 |
+
|
511 |
+
#: counter.php:873
|
512 |
+
#@ default
|
513 |
+
msgid "Show"
|
514 |
+
msgstr "Göstərmək"
|
515 |
+
|
516 |
+
#: counter.php:913
|
517 |
+
#@ cpd
|
518 |
+
msgid "Other"
|
519 |
+
msgstr "Digər"
|
520 |
+
|
521 |
+
#: counter.php:1085
|
522 |
+
#@ default
|
523 |
+
msgid "Edit Post"
|
524 |
+
msgstr "Yazışı redaktə etmək"
|
525 |
+
|
526 |
+
#: massbots.php:63
|
527 |
+
#: userperspan.php:75
|
528 |
+
#@ default
|
529 |
+
msgid "Front page displays"
|
530 |
+
msgstr "Əsas səhifənin göstərişi"
|
531 |
+
|
532 |
+
#: counter-core.php:799
|
533 |
+
#: counter-options.php:860
|
534 |
+
#@ cpd
|
535 |
+
msgid "Browsers"
|
536 |
+
msgstr "Brauzerlər"
|
537 |
+
|
538 |
+
#: counter-core.php:793
|
539 |
+
#@ cpd
|
540 |
+
msgid "Latest Counts"
|
541 |
+
msgstr "Yaxında keçirilmiş hesablamalar"
|
542 |
+
|
543 |
+
#: counter-core.php:796
|
544 |
+
#@ default
|
545 |
+
msgid "Plugin"
|
546 |
+
msgstr "Plagin"
|
547 |
+
|
548 |
+
#: counter-core.php:804
|
549 |
+
#@ cpd
|
550 |
+
msgid "Reads per Country"
|
551 |
+
msgstr "Ölkələr üzrə oxunuşlar"
|
552 |
+
|
553 |
+
#: counter.php:418
|
554 |
+
#: counter.php:1198
|
555 |
+
#@ cpd
|
556 |
+
msgid "Map"
|
557 |
+
msgstr "Xəritə"
|
558 |
+
|
559 |
+
#: geoip/geoip.php:117
|
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:142
|
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:144
|
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:90
|
575 |
+
#@ default
|
576 |
+
msgid "Action"
|
577 |
+
msgstr "Hərəkət"
|
578 |
+
|
579 |
+
#: notes.php:95
|
580 |
+
#@ cpd
|
581 |
+
msgid "add"
|
582 |
+
msgstr "əlavə etmək"
|
583 |
+
|
584 |
+
#: notes.php:111
|
585 |
+
#@ cpd
|
586 |
+
msgid "save"
|
587 |
+
msgstr "yaddaşda saxlamaq"
|
588 |
+
|
589 |
+
#: notes.php:112
|
590 |
+
#@ cpd
|
591 |
+
msgid "delete"
|
592 |
+
msgstr "silmək"
|
593 |
+
|
594 |
+
#: notes.php:123
|
595 |
+
#@ cpd
|
596 |
+
msgid "edit"
|
597 |
+
msgstr "redaktə etmək"
|
598 |
+
|
599 |
+
#: counter-options.php:782
|
600 |
+
#@ cpd
|
601 |
+
msgid "Cache"
|
602 |
+
msgstr "Keş"
|
603 |
+
|
604 |
+
#: counter-options.php:783
|
605 |
+
#@ cpd
|
606 |
+
msgid "I use a cache plugin. Count these visits with ajax."
|
607 |
+
msgstr "Mən keş olan plagindən istifadə edirəm. Ajax vasitəsi ilə bu gəlişləri saymaq."
|
608 |
+
|
609 |
+
#: counter-options.php:861
|
610 |
+
#@ cpd
|
611 |
+
msgid "Substring of the user agent, separated by comma"
|
612 |
+
msgstr "İstifadəçinin agentinin sətir altı vergül ilə bölünüb"
|
613 |
+
|
614 |
+
#: counter-options.php:945
|
615 |
+
#@ cpd
|
616 |
+
msgid "Debug mode"
|
617 |
+
msgstr "Düzəliş rejimi"
|
618 |
+
|
619 |
+
#: counter-options.php:947
|
620 |
+
#@ cpd
|
621 |
+
msgid "Show debug informations at the bottom of all pages."
|
622 |
+
msgstr "Hər səhifənin sonunda düzəliş məlıumatını əlavə etmək."
|
623 |
+
|
624 |
+
#: counter-core.php:805
|
625 |
+
#@ cpd
|
626 |
+
msgid "Visitors per Country"
|
627 |
+
msgstr "Ölkə üzrə gəlişlər"
|
628 |
+
|
629 |
+
#: userperspan.php:50
|
630 |
+
#@ cpd
|
631 |
+
msgid "Start"
|
632 |
+
msgstr "Başlamaq"
|
633 |
+
|
634 |
+
#: userperspan.php:52
|
635 |
+
#@ cpd
|
636 |
+
msgid "End"
|
637 |
+
msgstr "Son"
|
638 |
+
|
639 |
+
#: userperspan.php:54
|
640 |
+
#@ cpd
|
641 |
+
msgid "PostID"
|
642 |
+
msgstr "ID məlumatlar"
|
643 |
+
|
644 |
+
#: counter-options.php:908
|
645 |
+
#@ cpd
|
646 |
+
msgid "Add this value to \"Total reads\"."
|
647 |
+
msgstr "\"Ümumi oxunuşlar\" -ra dəyərini əlavə etmək."
|
648 |
+
|
649 |
+
#: counter-options.php:639
|
650 |
+
#@ cpd
|
651 |
+
msgid "You can get the country data for all entries in database by checking the IP adress against the GeoIP database. This can take a while!"
|
652 |
+
msgstr "Siz IP adreslərini yoxluyaraq bütün yazılar üçün ölkələr üçün məlumatları ala yenidən bilərsiniz. Bir az vaxt tuta bilər!"
|
653 |
+
|
654 |
+
#: userperspan.php:62
|
655 |
+
#@ cpd
|
656 |
+
msgid "no data found"
|
657 |
+
msgstr "heç bir məlumat tapılmayıb"
|
658 |
+
|
659 |
+
#: counter-options.php:748
|
660 |
+
#@ cpd
|
661 |
+
msgid "Counter"
|
662 |
+
msgstr "Sayğac"
|
663 |
+
|
664 |
+
#: counter-options.php:786
|
665 |
+
#@ cpd
|
666 |
+
msgid "Clients and referrers"
|
667 |
+
msgstr "Müştərilər və istinad olan saytlar"
|
668 |
+
|
669 |
+
#: counter-options.php:789
|
670 |
+
#@ cpd
|
671 |
+
msgid "Save and show clients and referrers.<br />Needs a lot of space in the database but gives you more detailed informations of your visitors."
|
672 |
+
msgstr "Yaddaşda saxlamaq və müştəriləri və istenad olan saytlarını göstərmək. <br />Məlumat bazasında daha da çox həcm tələb edir, lakin gələn qonaqlar barəsində daha da ətraflı məlumat verir."
|
673 |
+
|
674 |
+
#: counter-options.php:872
|
675 |
+
#@ cpd
|
676 |
+
msgid "Local URLs"
|
677 |
+
msgstr "Lokal URL"
|
678 |
+
|
679 |
+
#: counter-options.php:873
|
680 |
+
#@ cpd
|
681 |
+
msgid "Show local referrers too."
|
682 |
+
msgstr "Lokal keçidləri də göstərmək."
|
683 |
+
|
684 |
+
#: counter-options.php:880
|
685 |
+
#@ default
|
686 |
+
msgid "Posts"
|
687 |
+
msgstr "Yazılar"
|
688 |
+
|
689 |
+
#: counter-options.php:880
|
690 |
+
#@ default
|
691 |
+
msgid "Pages"
|
692 |
+
msgstr "Səhifələr"
|
693 |
+
|
694 |
+
#: counter.php:221
|
695 |
+
#: counter.php:1359
|
696 |
+
#@ cpd
|
697 |
+
msgid "Reads last week"
|
698 |
+
msgstr "Ötən həftənin oxunuşları"
|
699 |
+
|
700 |
+
#: counter.php:1094
|
701 |
+
#@ default
|
702 |
+
msgid "Category"
|
703 |
+
msgstr "Kateqoriyalar"
|
704 |
+
|
705 |
+
#: counter.php:1097
|
706 |
+
#@ default
|
707 |
+
msgid "Tag"
|
708 |
+
msgstr "Teq"
|
709 |
+
|
710 |
+
#: counter-core.php:756
|
711 |
+
#@ default
|
712 |
+
msgid "License"
|
713 |
+
msgstr "Lisenziya"
|
714 |
+
|
715 |
+
#: counter-core.php:791
|
716 |
+
#: counter.php:1360
|
717 |
+
#@ cpd
|
718 |
+
msgid "Reads per month"
|
719 |
+
msgstr "Ay ərzində oxunuşlar"
|
720 |
+
|
721 |
+
#: counter-core.php:800
|
722 |
+
#@ cpd
|
723 |
+
msgid "Referrer"
|
724 |
+
msgstr "İstinad olunan sayt"
|
725 |
+
|
726 |
+
#: counter-options.php:864
|
727 |
+
#@ cpd
|
728 |
+
msgid "Referrers - Entries"
|
729 |
+
msgstr "İstenad olan saytlar - Girişlər"
|
730 |
+
|
731 |
+
#: counter-options.php:865
|
732 |
+
#@ cpd
|
733 |
+
msgid "How many referrers do you want to see on dashboard page?"
|
734 |
+
msgstr "Statistika səhifəsində neçə istenad olan saytları Siz görmək istiyərdiniz?"
|
735 |
+
|
736 |
+
#: counter-options.php:868
|
737 |
+
#@ cpd
|
738 |
+
msgid "Referrers - Days"
|
739 |
+
msgstr "İstenad olan saytlar - Günlər"
|
740 |
+
|
741 |
+
#: counter.php:944
|
742 |
+
#, php-format
|
743 |
+
#@ cpd
|
744 |
+
msgid "The %s referrers in last %s days:"
|
745 |
+
msgstr "%s istenad olan saytlar son %s günlər:"
|
746 |
+
|
747 |
+
#: counter-core.php:789
|
748 |
+
#@ cpd
|
749 |
+
msgid "Visitors online"
|
750 |
+
msgstr "Qonaq onlayn"
|
751 |
+
|
752 |
+
#: counter.php:1380
|
753 |
+
#@ default
|
754 |
+
msgid "Title"
|
755 |
+
msgstr "Başlıq"
|
756 |
+
|
757 |
+
#: counter-core.php:259
|
758 |
+
#, php-format
|
759 |
+
#@ cpd
|
760 |
+
msgid "\"Count per Day\" updated to version %s."
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: counter-core.php:1000
|
764 |
+
#@ cpd
|
765 |
+
msgid "Backup failed! Cannot open file"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: counter-core.php:1027
|
769 |
+
#, php-format
|
770 |
+
#@ cpd
|
771 |
+
msgid "Backup of %s entries in progress. Every point complies %s entries."
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: counter-core.php:1118
|
775 |
+
#: counter-core.php:1126
|
776 |
+
#, php-format
|
777 |
+
#@ cpd
|
778 |
+
msgid "Backup of counter table saved in %s."
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: counter-core.php:1120
|
782 |
+
#: counter-core.php:1128
|
783 |
+
#, php-format
|
784 |
+
#@ cpd
|
785 |
+
msgid "Backup of counter options and collection saved in %s."
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: counter-options.php:169
|
789 |
+
#@ cpd
|
790 |
+
msgid "Collection in progress..."
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: counter-options.php:263
|
794 |
+
#@ cpd
|
795 |
+
msgid "Get Visitors per Post..."
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: counter-options.php:284
|
799 |
+
#@ cpd
|
800 |
+
msgid "Delete old data..."
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: counter-options.php:308
|
804 |
+
#, php-format
|
805 |
+
#@ cpd
|
806 |
+
msgid "Counter entries until %s collected and counter table %s optimized (size before = %s > size after = %s)."
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: counter-options.php:317
|
810 |
+
#@ cpd
|
811 |
+
msgid "Installation of \"Count per Day\" checked"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: counter-options.php:400
|
815 |
+
#: counter-options.php:739
|
816 |
+
#@ default
|
817 |
+
msgid "Tools"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: counter-options.php:791
|
821 |
+
#@ cpd
|
822 |
+
msgid "Save URL only, no query string."
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: counter-options.php:815
|
826 |
+
#@ cpd
|
827 |
+
msgid "Who can see it"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: counter-options.php:824
|
831 |
+
#@ cpd
|
832 |
+
msgid "custom"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: counter-options.php:826
|
836 |
+
#@ cpd
|
837 |
+
msgid "and higher are allowed to see the statistics page."
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: counter-options.php:828
|
841 |
+
#, php-format
|
842 |
+
#@ cpd
|
843 |
+
msgid "Set the %s capability %s a user need:"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: counter-options.php:915
|
847 |
+
#@ cpd
|
848 |
+
msgid "Stylesheet"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: counter-options.php:918
|
852 |
+
#@ cpd
|
853 |
+
msgid "NO Stylesheet in Frontend"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: counter-options.php:919
|
857 |
+
#@ cpd
|
858 |
+
msgid "Do not load the stylesheet \"counter.css\" in frontend."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: counter-options.php:476
|
862 |
+
#: counter-options.php:926
|
863 |
+
#@ cpd
|
864 |
+
msgid "Backup"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: counter-options.php:929
|
868 |
+
#@ cpd
|
869 |
+
msgid "Entries per pass"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: counter-options.php:932
|
873 |
+
#@ cpd
|
874 |
+
msgid "How many entries should be saved per pass? Default: 10000"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: counter-options.php:937
|
878 |
+
#@ cpd
|
879 |
+
msgid "If your PHP memory limit less then 50 MB and you get a white page or error messages try a smaller value."
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: counter-options.php:480
|
883 |
+
#, php-format
|
884 |
+
#@ cpd
|
885 |
+
msgid "Create a backup of the counter table %s in your wp-content directory (if writable)."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: counter-options.php:487
|
889 |
+
#@ cpd
|
890 |
+
msgid "Backup the database"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: counter-options.php:591
|
894 |
+
#: counter-options.php:623
|
895 |
+
#@ cpd
|
896 |
+
msgid "Collect old data"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: counter-options.php:577
|
900 |
+
#: counter-options.php:596
|
901 |
+
#, php-format
|
902 |
+
#@ cpd
|
903 |
+
msgid "Current size of your counter table %s is %s."
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: counter-options.php:598
|
907 |
+
#@ cpd
|
908 |
+
msgid "You can collect old data and clean up the counter table.<br/>Reads and visitors will be saved per month, per country and per post.<br/>Clients and referrers will deleted."
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: counter-options.php:603
|
912 |
+
#, php-format
|
913 |
+
#@ cpd
|
914 |
+
msgid "Currently your collection contains data until %s."
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: counter-options.php:607
|
918 |
+
#@ cpd
|
919 |
+
msgid "Normally new data will be added to the collection."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: counter-options.php:613
|
923 |
+
#@ cpd
|
924 |
+
msgid "Delete old collection and create a new one which contains only the data currently in counter table."
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: counter-options.php:614
|
928 |
+
#, php-format
|
929 |
+
#@ cpd
|
930 |
+
msgid "All collected data until %s will deleted."
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: counter-options.php:619
|
934 |
+
#, php-format
|
935 |
+
#@ cpd
|
936 |
+
msgid "Keep entries of last %s full months + current month in counter table."
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: counter-options.php:670
|
940 |
+
#@ cpd
|
941 |
+
msgid "ReActivation"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: counter-options.php:673
|
945 |
+
#@ cpd
|
946 |
+
msgid "Here you can start the installation functions manually.<br/>Same as deactivate and reactivate the plugin."
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: counter-options.php:678
|
950 |
+
#@ cpd
|
951 |
+
msgid "ReActivate the plugin"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: counter.php:228
|
955 |
+
#: counter.php:998
|
956 |
+
#@ cpd
|
957 |
+
msgid "Visitors"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: counter.php:231
|
961 |
+
#: counter.php:232
|
962 |
+
#@ cpd
|
963 |
+
msgid "Most visited day"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: counter.php:1399
|
967 |
+
#@ cpd
|
968 |
+
msgid "drag and drop to sort"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: counter-core.php:795
|
972 |
+
#: counter-options.php:864
|
973 |
+
#: counter-options.php:868
|
974 |
+
#@ cpd
|
975 |
+
msgid "Search strings"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: counter-core.php:1114
|
979 |
+
#@ cpd
|
980 |
+
msgid "Your can download the backup files here and now."
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: counter-core.php:1184
|
984 |
+
#@ cpd
|
985 |
+
msgid "Error while reading backup file!"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: counter-core.php:1188
|
989 |
+
#, php-format
|
990 |
+
#@ cpd
|
991 |
+
msgid "The backup was added to counter table %s."
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: counter-core.php:1190
|
995 |
+
#, php-format
|
996 |
+
#@ cpd
|
997 |
+
msgid "The counter table %s was restored from backup."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: counter-core.php:1207
|
1001 |
+
#@ cpd
|
1002 |
+
msgid "Options restored from backup."
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: counter-options.php:332
|
1006 |
+
#@ cpd
|
1007 |
+
msgid "Old search strings deleted"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: counter-options.php:347
|
1011 |
+
#@ cpd
|
1012 |
+
msgid "Clients and referers deleted"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: counter-options.php:483
|
1016 |
+
#@ cpd
|
1017 |
+
msgid "Download only"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: counter-options.php:515
|
1021 |
+
#@ cpd
|
1022 |
+
msgid "Settings and collections"
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: counter-options.php:520
|
1026 |
+
#, php-format
|
1027 |
+
#@ cpd
|
1028 |
+
msgid "Counter table %s"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: counter-options.php:527
|
1032 |
+
#, php-format
|
1033 |
+
#@ cpd
|
1034 |
+
msgid "Add data from the backup file %s to existing counter table?"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: counter-options.php:527
|
1038 |
+
#@ cpd
|
1039 |
+
msgid "Add"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: counter-options.php:531
|
1043 |
+
#, php-format
|
1044 |
+
#@ cpd
|
1045 |
+
msgid "Restore data from the backup file %s ?"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: counter-options.php:531
|
1049 |
+
#@ default
|
1050 |
+
msgid "Restore"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: counter-options.php:533
|
1054 |
+
#@ default
|
1055 |
+
msgid "Delete"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: counter-options.php:534
|
1059 |
+
#, php-format
|
1060 |
+
#@ cpd
|
1061 |
+
msgid "Delete the backup file %s ?"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: counter-options.php:540
|
1065 |
+
#@ cpd
|
1066 |
+
msgid "add backup to current counter table"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: counter-options.php:541
|
1070 |
+
#@ cpd
|
1071 |
+
msgid "replace current counter table with with backup"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: counter-options.php:542
|
1075 |
+
#@ cpd
|
1076 |
+
msgid "delete backup file"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: counter-options.php:567
|
1080 |
+
#, php-format
|
1081 |
+
#@ cpd
|
1082 |
+
msgid "Delete search strings older than %s days."
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: counter-options.php:571
|
1086 |
+
#@ cpd
|
1087 |
+
msgid "Delete search strings"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: counter-options.php:578
|
1091 |
+
#, php-format
|
1092 |
+
#@ cpd
|
1093 |
+
msgid "Delete clients and referers older than %s days to reduce the size of the counter table."
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: counter-options.php:582
|
1097 |
+
#@ cpd
|
1098 |
+
msgid "Delete clients and referers"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: counter.php:1100
|
1102 |
+
#@ default
|
1103 |
+
msgid "Front page"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: counter.php:1142
|
1107 |
+
#, php-format
|
1108 |
+
#@ cpd
|
1109 |
+
msgid "The %s most searched strings:"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: counter.php:1151
|
1113 |
+
#, php-format
|
1114 |
+
#@ cpd
|
1115 |
+
msgid "The search strings of the last %s days:"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: counter.php:1315
|
1119 |
+
#@ default
|
1120 |
+
msgid "_name"
|
1121 |
+
msgstr ""
|
1122 |
+
|
locale/cpd-be_BY.po
CHANGED
@@ -1,784 +1,1122 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Count
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-11-02 12:13+0100\n"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: Alexandr Alexandrov <yuzver@gmx.com>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-
|
14 |
-
"X-Poedit-
|
15 |
-
"X-Poedit-
|
16 |
-
"X-Poedit-
|
17 |
-
"X-Poedit-
|
18 |
-
"X-
|
19 |
-
"X-Poedit-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
#: counter-options.php:
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
#: counter-options.php:
|
41 |
-
#: counter-options.php:
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
#: counter-options.php:
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |