Version Description
- Added: In the optimization page you can now empty all tables at once.
- Added: In the optimization page you can now purge statistics over a given number of days old.
- Added: Daily scheduled job to purge statistics over a given number of days old.
- Fixed: Bug in the robots code that on new installs failed to populate the defaults in the database.
- Fixed: All known warning messages when running in WordPress debug mode.
- Fixed: Incorrect description of co-efficient value in the setting page.
- Fixed: Top level links on the various stats pages now update highlight the current page in the admin menu instead of the overview page.
- Fixed: Install code now only executes on a true new installation instead of on each activation.
- Fixed: Bug in hits code when GeoIP was disabled, IP address would not be recorded.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 4.6 |
Comparing to | |
See all releases |
Code changes from version 4.5 to 4.6
- images/{donate.png → donate/donate.png} +0 -0
- images/donate/tdCflg.png +0 -0
- includes/class/hits.class.php +1 -0
- includes/class/statistics.class.php +11 -5
- includes/class/useronline.class.php +0 -1
- includes/functions/functions.php +8 -2
- includes/log/hit-statistics.php +9 -9
- includes/log/last-search.php +2 -2
- includes/log/last-visitor.php +3 -3
- includes/log/log.php +13 -13
- includes/log/search-statistics.php +9 -9
- includes/log/top-referring.php +4 -4
- includes/optimization/empty.php +39 -11
- includes/optimization/optimization-geoip.php +49 -6
- includes/optimization/optimization.php +44 -2
- includes/optimization/purge-data.php +38 -0
- includes/setting/settings.php +44 -3
- languages/default.mo +0 -0
- languages/default.po +328 -243
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +341 -244
- readme.txt +12 -1
- schedule.php +33 -0
- styles/log.css +13 -14
- styles/rtl.css +8 -9
- upgrade.php +57 -62
- wp-statistics.php +45 -17
images/{donate.png → donate/donate.png}
RENAMED
File without changes
|
images/donate/tdCflg.png
ADDED
Binary file
|
includes/class/hits.class.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
|
4 |
public $result = null;
|
5 |
private $exclusion_match = FALSE;
|
|
|
6 |
|
7 |
public function __construct() {
|
8 |
|
3 |
|
4 |
public $result = null;
|
5 |
private $exclusion_match = FALSE;
|
6 |
+
private $ip;
|
7 |
|
8 |
public function __construct() {
|
9 |
|
includes/class/statistics.class.php
CHANGED
@@ -109,13 +109,13 @@
|
|
109 |
public function get_Referred($default_referr = false) {
|
110 |
|
111 |
if( $default_referr ) {
|
112 |
-
if(
|
113 |
return get_bloginfo('url');
|
114 |
} else {
|
115 |
-
return
|
116 |
}
|
117 |
} else {
|
118 |
-
return
|
119 |
}
|
120 |
}
|
121 |
|
@@ -174,7 +174,8 @@
|
|
174 |
}
|
175 |
|
176 |
$parts = parse_url($url);
|
177 |
-
|
|
|
178 |
|
179 |
$search_engines = wp_statistics_searchengine_list();
|
180 |
|
@@ -185,7 +186,12 @@
|
|
185 |
|
186 |
if( isset($matches[1]) )
|
187 |
{
|
188 |
-
|
|
|
|
|
|
|
|
|
|
|
189 |
|
190 |
if( $words == '' ) { $words = 'No search query found!'; }
|
191 |
return $words;
|
109 |
public function get_Referred($default_referr = false) {
|
110 |
|
111 |
if( $default_referr ) {
|
112 |
+
if( esc_sql(strip_tags($_SERVER['HTTP_REFERER'])) ) {
|
113 |
return get_bloginfo('url');
|
114 |
} else {
|
115 |
+
return esc_sql(strip_tags($_SERVER['HTTP_REFERER']));
|
116 |
}
|
117 |
} else {
|
118 |
+
return esc_sql(strip_tags($_SERVER['HTTP_REFERER']));
|
119 |
}
|
120 |
}
|
121 |
|
174 |
}
|
175 |
|
176 |
$parts = parse_url($url);
|
177 |
+
|
178 |
+
if( array_key_exists('query',$parts) ) { parse_str($parts['query'], $query); } else { $query = array(); }
|
179 |
|
180 |
$search_engines = wp_statistics_searchengine_list();
|
181 |
|
186 |
|
187 |
if( isset($matches[1]) )
|
188 |
{
|
189 |
+
if( array_key_exists($search_engines[$key]['querykey'], $query) ) {
|
190 |
+
$words = strip_tags($query[$search_engines[$key]['querykey']]);
|
191 |
+
}
|
192 |
+
else {
|
193 |
+
$words = '';
|
194 |
+
}
|
195 |
|
196 |
if( $words == '' ) { $words = 'No search query found!'; }
|
197 |
return $words;
|
includes/class/useronline.class.php
CHANGED
@@ -81,7 +81,6 @@
|
|
81 |
'ip' => $this->get_IP()
|
82 |
)
|
83 |
);
|
84 |
-
|
85 |
}
|
86 |
}
|
87 |
|
81 |
'ip' => $this->get_IP()
|
82 |
)
|
83 |
);
|
|
|
84 |
}
|
85 |
}
|
86 |
|
includes/functions/functions.php
CHANGED
@@ -54,8 +54,12 @@
|
|
54 |
break;
|
55 |
}
|
56 |
}
|
57 |
-
|
58 |
-
|
|
|
|
|
|
|
|
|
59 |
}
|
60 |
|
61 |
function wp_statistics_visitor($time, $daily = null) {
|
@@ -197,6 +201,7 @@
|
|
197 |
|
198 |
function wp_statistics_searchengine_query($search_engine = 'all') {
|
199 |
$searchengine_list = wp_statistics_searchengine_list();
|
|
|
200 |
|
201 |
if( strtolower($search_engine) == 'all' ) {
|
202 |
foreach( $searchengine_list as $se ) {
|
@@ -232,6 +237,7 @@
|
|
232 |
|
233 |
function wp_statistics_searchengine_regex($search_engine = 'all') {
|
234 |
$searchengine_list = wp_statistics_searchengine_list();
|
|
|
235 |
|
236 |
if( strtolower($search_engine) == 'all' ) {
|
237 |
foreach( $searchengine_list as $se ) {
|
54 |
break;
|
55 |
}
|
56 |
}
|
57 |
+
|
58 |
+
if( array_key_exists(0,$result) ) {
|
59 |
+
return $result[0];
|
60 |
+
} else {
|
61 |
+
return 0;
|
62 |
+
}
|
63 |
}
|
64 |
|
65 |
function wp_statistics_visitor($time, $daily = null) {
|
201 |
|
202 |
function wp_statistics_searchengine_query($search_engine = 'all') {
|
203 |
$searchengine_list = wp_statistics_searchengine_list();
|
204 |
+
$search_query = '';
|
205 |
|
206 |
if( strtolower($search_engine) == 'all' ) {
|
207 |
foreach( $searchengine_list as $se ) {
|
237 |
|
238 |
function wp_statistics_searchengine_regex($search_engine = 'all') {
|
239 |
$searchengine_list = wp_statistics_searchengine_list();
|
240 |
+
$search_query = '';
|
241 |
|
242 |
if( strtolower($search_engine) == 'all' ) {
|
243 |
foreach( $searchengine_list as $se ) {
|
includes/log/hit-statistics.php
CHANGED
@@ -8,15 +8,15 @@
|
|
8 |
<h2><?php _e('Hit Statistics', 'wp_statistics'); ?></h2>
|
9 |
|
10 |
<ul class="subsubsub">
|
11 |
-
<?php if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; }
|
12 |
-
<li class="all"><a <?php if($daysToDisplay == 10) { echo 'class="current"'; } ?>href="?page=
|
13 |
-
| <li class="all"><a <?php if($daysToDisplay == 20) { echo 'class="current"'; } ?>href="?page=
|
14 |
-
| <li class="all"><a <?php if($daysToDisplay == 30) { echo 'class="current"'; } ?>href="?page=
|
15 |
-
| <li class="all"><a <?php if($daysToDisplay == 60) { echo 'class="current"'; } ?>href="?page=
|
16 |
-
| <li class="all"><a <?php if($daysToDisplay == 90) { echo 'class="current"'; } ?>href="?page=
|
17 |
-
| <li class="all"><a <?php if($daysToDisplay == 180) { echo 'class="current"'; } ?>href="?page=
|
18 |
-
| <li class="all"><a <?php if($daysToDisplay == 270) { echo 'class="current"'; } ?>href="?page=
|
19 |
-
| <li class="all"><a <?php if($daysToDisplay == 365) { echo 'class="current"'; } ?>href="?page=
|
20 |
</ul>
|
21 |
|
22 |
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
8 |
<h2><?php _e('Hit Statistics', 'wp_statistics'); ?></h2>
|
9 |
|
10 |
<ul class="subsubsub">
|
11 |
+
<?php $daysToDisplay = 20; if( array_key_exists('hitdays',$_GET) ) { if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; } }?>
|
12 |
+
<li class="all"><a <?php if($daysToDisplay == 10) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=10"><?php _e('10 Days', 'wp_statistics'); ?></a></li>
|
13 |
+
| <li class="all"><a <?php if($daysToDisplay == 20) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=20"><?php _e('20 Days', 'wp_statistics'); ?></a></li>
|
14 |
+
| <li class="all"><a <?php if($daysToDisplay == 30) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=30"><?php _e('30 Days', 'wp_statistics'); ?></a></li>
|
15 |
+
| <li class="all"><a <?php if($daysToDisplay == 60) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=60"><?php _e('2 Months', 'wp_statistics'); ?></a></li>
|
16 |
+
| <li class="all"><a <?php if($daysToDisplay == 90) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=90"><?php _e('3 Months', 'wp_statistics'); ?></a></li>
|
17 |
+
| <li class="all"><a <?php if($daysToDisplay == 180) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=180"><?php _e('6 Months', 'wp_statistics'); ?></a></li>
|
18 |
+
| <li class="all"><a <?php if($daysToDisplay == 270) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=270"><?php _e('9 Months', 'wp_statistics'); ?></a></li>
|
19 |
+
| <li class="all"><a <?php if($daysToDisplay == 365) { echo 'class="current"'; } ?>href="?page=wps_hits_menu&hitdays=365"><?php _e('1 Year', 'wp_statistics'); ?></a></li>
|
20 |
</ul>
|
21 |
|
22 |
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
includes/log/last-search.php
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
$name = $search_engines[$key]['name'];
|
34 |
}
|
35 |
|
36 |
-
echo "<li><a href='?page=
|
37 |
}
|
38 |
?>
|
39 |
</ul>
|
@@ -82,7 +82,7 @@
|
|
82 |
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
83 |
|
84 |
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
85 |
-
echo "<a href='?page=
|
86 |
|
87 |
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
88 |
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
33 |
$name = $search_engines[$key]['name'];
|
34 |
}
|
35 |
|
36 |
+
echo "<li><a href='?page=wps_words_menu&referred={$tag}'>" . __($name, 'wp_statistics') . " <span class='count'>({$value})</span></a>{$separator}</li>";
|
37 |
}
|
38 |
?>
|
39 |
</ul>
|
82 |
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
83 |
|
84 |
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
85 |
+
echo "<a href='?page=wps_words_menu&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
|
86 |
|
87 |
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
88 |
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
includes/log/last-visitor.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<?php screen_icon('options-general'); ?>
|
13 |
<h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
|
14 |
<ul class="subsubsub">
|
15 |
-
<li class="all"><a <?php if(!$agent) { echo 'class="current"'; } ?>href="?page=
|
16 |
<?php
|
17 |
$Browsers = wp_statistics_ua_list();
|
18 |
$i = 0;
|
@@ -24,7 +24,7 @@
|
|
24 |
$i++;
|
25 |
if($agent == $Browser) { $current = 'class="current" '; } else { $current = ""; }
|
26 |
if( $i == $Total ) { $spacer = ""; }
|
27 |
-
echo " <li><a " . $current . "href='?page=
|
28 |
}
|
29 |
?>
|
30 |
</ul>
|
@@ -82,7 +82,7 @@
|
|
82 |
$AgentImage = "unknown.png";
|
83 |
}
|
84 |
|
85 |
-
echo "<a href='?page=
|
86 |
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
87 |
echo "</div>";
|
88 |
|
12 |
<?php screen_icon('options-general'); ?>
|
13 |
<h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
|
14 |
<ul class="subsubsub">
|
15 |
+
<li class="all"><a <?php if(!$agent) { echo 'class="current"'; } ?>href="?page=wps_visitors_menu"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $total; ?>)</span></a>|</li>
|
16 |
<?php
|
17 |
$Browsers = wp_statistics_ua_list();
|
18 |
$i = 0;
|
24 |
$i++;
|
25 |
if($agent == $Browser) { $current = 'class="current" '; } else { $current = ""; }
|
26 |
if( $i == $Total ) { $spacer = ""; }
|
27 |
+
echo " <li><a " . $current . "href='?page=wps_visitors_menu&agent=" . $Browser . "'> " . __($Browser, 'wp_statistics') ." <span class='count'>(" . wp_statistics_useragent($Browser) .")</span></a>" . $spacer . "</li>";
|
28 |
}
|
29 |
?>
|
30 |
</ul>
|
82 |
$AgentImage = "unknown.png";
|
83 |
}
|
84 |
|
85 |
+
echo "<a href='?page=wps_visitors_menu&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$AgentImage."' class='log-tools' title='{$items->agent}'/></a>";
|
86 |
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
87 |
echo "</div>";
|
88 |
|
includes/log/log.php
CHANGED
@@ -332,24 +332,24 @@
|
|
332 |
<p><?php _e('Please donate to WP Statistics. With your help WP Statistics will rule the world!', 'wp_statistics'); ?></p>
|
333 |
|
334 |
<div id="donate-button">
|
335 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
</div>
|
337 |
|
338 |
<div class="clear"></div>
|
339 |
-
<?php
|
340 |
-
/*
|
341 |
-
<div class="ads">
|
342 |
-
<a href="http://ads.iran98.org/view/link/11" target="_blank" alt="ads-link"><img src="http://ads.iran98.org/view/banner/11"/></a>
|
343 |
-
<a href="http://ads.iran98.org/view/link/12" target="_blank" alt="ads-link"><img src="http://ads.iran98.org/view/banner/12"/></a>
|
344 |
-
<a href="http://ads.iran98.org/view/link/13" target="_blank" alt="ads-link"><img src="http://ads.iran98.org/view/banner/13"/></a>
|
345 |
-
</div>
|
346 |
|
347 |
-
<div class="clear"></div>
|
348 |
-
*/
|
349 |
-
?>
|
350 |
<div>
|
351 |
-
|
352 |
-
This product includes GeoLite2 data created by MaxMind, available from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.
|
353 |
</div>
|
354 |
</div>
|
355 |
</div>
|
332 |
<p><?php _e('Please donate to WP Statistics. With your help WP Statistics will rule the world!', 'wp_statistics'); ?></p>
|
333 |
|
334 |
<div id="donate-button">
|
335 |
+
<div class="left-div">
|
336 |
+
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
|
337 |
+
<input type="hidden" name="cmd" value="_s-xclick">
|
338 |
+
<input type="hidden" name="hosted_button_id" value="Z959U3RPCC9WG">
|
339 |
+
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
340 |
+
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
341 |
+
</form>
|
342 |
+
</div>
|
343 |
+
|
344 |
+
<div class="right-div">
|
345 |
+
<a href="http://iran98.org/donate/" target="_blank"><img src="<?php echo plugins_url('wp-statistics/images/donate/donate.png'); ?>" id="donate" alt="<?php _e('Donate', 'wp_statistics'); ?>"/><br /><img src="<?php echo plugins_url('wp-statistics/images/donate/tdCflg.png'); ?>" id="donate" alt="<?php _e('Donate', 'wp_statistics'); ?>"/></a>
|
346 |
+
</div>
|
347 |
</div>
|
348 |
|
349 |
<div class="clear"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
|
|
|
|
|
|
|
351 |
<div>
|
352 |
+
<br/>This product includes GeoLite2 data created by MaxMind, available from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.
|
|
|
353 |
</div>
|
354 |
</div>
|
355 |
</div>
|
includes/log/search-statistics.php
CHANGED
@@ -8,15 +8,15 @@
|
|
8 |
<h2><?php _e('Search Engine Referrers Statistics', 'wp_statistics'); ?></h2>
|
9 |
|
10 |
<ul class="subsubsub">
|
11 |
-
<?php if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; }
|
12 |
-
<li class="all"><a <?php if($daysToDisplay == 10) { echo 'class="current"'; } ?>href="?page=
|
13 |
-
| <li class="all"><a <?php if($daysToDisplay == 20) { echo 'class="current"'; } ?>href="?page=
|
14 |
-
| <li class="all"><a <?php if($daysToDisplay == 30) { echo 'class="current"'; } ?>href="?page=
|
15 |
-
| <li class="all"><a <?php if($daysToDisplay == 60) { echo 'class="current"'; } ?>href="?page=
|
16 |
-
| <li class="all"><a <?php if($daysToDisplay == 90) { echo 'class="current"'; } ?>href="?page=
|
17 |
-
| <li class="all"><a <?php if($daysToDisplay == 180) { echo 'class="current"'; } ?>href="?page=
|
18 |
-
| <li class="all"><a <?php if($daysToDisplay == 270) { echo 'class="current"'; } ?>href="?page=
|
19 |
-
| <li class="all"><a <?php if($daysToDisplay == 365) { echo 'class="current"'; } ?>href="?page=
|
20 |
</ul>
|
21 |
|
22 |
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
8 |
<h2><?php _e('Search Engine Referrers Statistics', 'wp_statistics'); ?></h2>
|
9 |
|
10 |
<ul class="subsubsub">
|
11 |
+
<?php $daysToDisplay = 20; if( array_key_exists('hitdays',$_GET)) { if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; } } ?>
|
12 |
+
<li class="all"><a <?php if($daysToDisplay == 10) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=10"><?php _e('10 Days', 'wp_statistics'); ?></a></li>
|
13 |
+
| <li class="all"><a <?php if($daysToDisplay == 20) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=20"><?php _e('20 Days', 'wp_statistics'); ?></a></li>
|
14 |
+
| <li class="all"><a <?php if($daysToDisplay == 30) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=30"><?php _e('30 Days', 'wp_statistics'); ?></a></li>
|
15 |
+
| <li class="all"><a <?php if($daysToDisplay == 60) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=60"><?php _e('2 Months', 'wp_statistics'); ?></a></li>
|
16 |
+
| <li class="all"><a <?php if($daysToDisplay == 90) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=90"><?php _e('3 Months', 'wp_statistics'); ?></a></li>
|
17 |
+
| <li class="all"><a <?php if($daysToDisplay == 180) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=180"><?php _e('6 Months', 'wp_statistics'); ?></a></li>
|
18 |
+
| <li class="all"><a <?php if($daysToDisplay == 270) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=270"><?php _e('9 Months', 'wp_statistics'); ?></a></li>
|
19 |
+
| <li class="all"><a <?php if($daysToDisplay == 365) { echo 'class="current"'; } ?>href="?page=wps_searches_menu&hitdays=365"><?php _e('1 Year', 'wp_statistics'); ?></a></li>
|
20 |
</ul>
|
21 |
|
22 |
<div class="postbox-container" style="width: 100%; float: left; margin-right:20px">
|
includes/log/top-referring.php
CHANGED
@@ -12,9 +12,9 @@
|
|
12 |
<?php screen_icon('options-general'); ?>
|
13 |
<h2><?php _e('Top referring sites', 'wp_statistics'); ?></h2>
|
14 |
<ul class="subsubsub">
|
15 |
-
<li class="all"><a <?php if(!$referr) { echo 'class="current"'; } ?>href="?page=
|
16 |
<?php if($referr) { ?>
|
17 |
-
| <li><a class="current" href="?page=
|
18 |
<?php } ?>
|
19 |
</ul>
|
20 |
<div class="postbox-container" id="last-log">
|
@@ -55,7 +55,7 @@
|
|
55 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
56 |
echo "<div class='clear'></div>";
|
57 |
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
58 |
-
echo "<a href='?page=
|
59 |
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
60 |
echo "</div>";
|
61 |
|
@@ -84,7 +84,7 @@
|
|
84 |
$i++;
|
85 |
|
86 |
echo "<div class='log-item'>";
|
87 |
-
echo "<div class='log-referred'>{$i} - <a href='?page=
|
88 |
echo "<div class='log-ip'>".__('Reference', 'wp_statistics').": {$value}</div>";
|
89 |
echo "<div class='clear'></div>";
|
90 |
echo "<div class='log-url'><a href='http://{$items}/'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items}'/> http://{$items}/</a></div>";
|
12 |
<?php screen_icon('options-general'); ?>
|
13 |
<h2><?php _e('Top referring sites', 'wp_statistics'); ?></h2>
|
14 |
<ul class="subsubsub">
|
15 |
+
<li class="all"><a <?php if(!$referr) { echo 'class="current"'; } ?>href="?page=wps_referers_menu"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $total; ?>)</span></a></li>
|
16 |
<?php if($referr) { ?>
|
17 |
+
| <li><a class="current" href="?page=wps_referers_menu&referr=<?php echo $referr; ?>"> <?php echo $referr; ?> <span class="count">(<?php echo $total; ?>)</span></a></li>
|
18 |
<?php } ?>
|
19 |
</ul>
|
20 |
<div class="postbox-container" id="last-log">
|
55 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
56 |
echo "<div class='clear'></div>";
|
57 |
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
58 |
+
echo "<a href='?page=wps_referers_menu&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
59 |
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
60 |
echo "</div>";
|
61 |
|
84 |
$i++;
|
85 |
|
86 |
echo "<div class='log-item'>";
|
87 |
+
echo "<div class='log-referred'>{$i} - <a href='?page=wps_referers_menu&referr={$items}'>{$items}</a></div>";
|
88 |
echo "<div class='log-ip'>".__('Reference', 'wp_statistics').": {$value}</div>";
|
89 |
echo "<div class='clear'></div>";
|
90 |
echo "<div class='log-url'><a href='http://{$items}/'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items}'/> http://{$items}/</a></div>";
|
includes/optimization/empty.php
CHANGED
@@ -5,21 +5,49 @@
|
|
5 |
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
|
7 |
$table_name = $_POST['table_name'];
|
8 |
-
|
9 |
if($table_name) {
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
}
|
|
|
|
|
|
|
|
|
21 |
|
22 |
} else {
|
23 |
_e('Please select the desired items.', 'wp_statistics');
|
24 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
?>
|
5 |
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
|
7 |
$table_name = $_POST['table_name'];
|
8 |
+
|
9 |
if($table_name) {
|
10 |
+
|
11 |
+
switch( $table_name ) {
|
12 |
+
case 'useronline':
|
13 |
+
echo wp_statitiscs_empty_table($table_prefix . 'statistics_useronline');
|
14 |
+
break;
|
15 |
+
case 'visit':
|
16 |
+
echo wp_statitiscs_empty_table($table_prefix . 'statistics_visit');
|
17 |
+
break;
|
18 |
+
case 'visitors':
|
19 |
+
echo wp_statitiscs_empty_table($table_prefix . 'statistics_visitor');
|
20 |
+
break;
|
21 |
+
case 'all':
|
22 |
+
$result_string = wp_statitiscs_empty_table($table_prefix . 'statistics_useronline');
|
23 |
+
$result_string .= '<br>' . wp_statitiscs_empty_table($table_prefix . 'statistics_visit');
|
24 |
+
$result_string .= '<br>' . wp_statitiscs_empty_table($table_prefix . 'statistics_visitor');
|
25 |
+
|
26 |
+
echo $result_string;
|
27 |
+
|
28 |
+
break;
|
29 |
}
|
30 |
+
|
31 |
+
$s = new WP_Statistics();
|
32 |
+
|
33 |
+
$s->Primary_Values();
|
34 |
|
35 |
} else {
|
36 |
_e('Please select the desired items.', 'wp_statistics');
|
37 |
}
|
38 |
+
|
39 |
+
function wp_statitiscs_empty_table( $table_name = FALSE ) {
|
40 |
+
|
41 |
+
global $wpdb;
|
42 |
+
|
43 |
+
if( $table_name ) {
|
44 |
+
$result = $wpdb->query('DELETE FROM ' . $table_name);
|
45 |
+
|
46 |
+
if($result) {
|
47 |
+
return sprintf(__('<code>%s</code> table data deleted successfully.', 'wp_statistics'), $table_name);
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
return sprintf(__('Error, %s not emptied!', 'wp_statistics'), $table_name );
|
52 |
+
}
|
53 |
?>
|
includes/optimization/optimization-geoip.php
CHANGED
@@ -1,5 +1,31 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
jQuery("#empty-table-submit").click(function(){
|
4 |
|
5 |
var action = jQuery('#empty-table').val();
|
@@ -85,10 +111,11 @@
|
|
85 |
});
|
86 |
</script>
|
87 |
<?php
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
92 |
}
|
93 |
?>
|
94 |
<a name="top"></a>
|
@@ -96,7 +123,7 @@
|
|
96 |
<?php screen_icon('options-general'); ?>
|
97 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
98 |
<br>
|
99 |
-
<a href="#resources"><?php _e('Resources', 'wp_statistics'); ?></a> | <a href="#versioninfo"><?php _e('Version Info', 'wp_statistics'); ?></a> | <a href="#clientinfo"><?php _e('Client Info', 'wp_statistics'); ?></a> | <a href="#export"><?php _e('Export', 'wp_statistics'); ?></a> | <a href="#empty"><?php _e('
|
100 |
|
101 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
102 |
<table class="form-table">
|
@@ -252,7 +279,7 @@
|
|
252 |
</tr>
|
253 |
|
254 |
<tr valign="top">
|
255 |
-
<th scope="row" colspan="2"><a name="empty" href="#top" style='text-decoration: none;'><h3><?php _e('
|
256 |
</tr>
|
257 |
|
258 |
<tr valign="top">
|
@@ -266,6 +293,7 @@
|
|
266 |
<option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
|
267 |
<option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
|
268 |
<option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
|
|
|
269 |
</select>
|
270 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
271 |
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
@@ -273,6 +301,21 @@
|
|
273 |
<span id="empty-result"></span>
|
274 |
</td>
|
275 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
|
277 |
<tr valign="top">
|
278 |
<th scope="row" colspan="2"><a name="deleteuseragenttypes" href="#top" style='text-decoration: none;'><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></a></th>
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function() {
|
3 |
+
jQuery("#purge-data-submit").click(function(){
|
4 |
+
|
5 |
+
var action = jQuery('#purge-data').val();
|
6 |
+
|
7 |
+
if(action == 0)
|
8 |
+
return false;
|
9 |
+
|
10 |
+
var agree = confirm('<?php _e('Are you sure?', 'wp_statistics'); ?>');
|
11 |
+
|
12 |
+
if(!agree)
|
13 |
+
return false;
|
14 |
+
|
15 |
+
var data = new Array();
|
16 |
+
data['purge-days'] = action;
|
17 |
+
|
18 |
+
|
19 |
+
jQuery("#purge-data-submit").attr("disabled", "disabled");
|
20 |
+
jQuery("#purge-data-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
21 |
+
|
22 |
+
jQuery.post("<?php echo parse_url(plugins_url('purge-data.php', __FILE__), PHP_URL_PATH ); ?>", {purge_days:data['purge-days']})
|
23 |
+
.done(function(result){
|
24 |
+
jQuery("#purge-data-result").html(result);
|
25 |
+
jQuery("#purge-data-submit").removeAttr("disabled");
|
26 |
+
});
|
27 |
+
});
|
28 |
+
|
29 |
jQuery("#empty-table-submit").click(function(){
|
30 |
|
31 |
var action = jQuery('#empty-table').val();
|
111 |
});
|
112 |
</script>
|
113 |
<?php
|
114 |
+
if( array_key_exists( 'populate', $_GET ) ) {
|
115 |
+
if( $_GET['populate'] == 1 ) {
|
116 |
+
require_once( plugin_dir_path( __FILE__ ) . '../functions/geoip-populate.php' );
|
117 |
+
echo wp_statistics_populate_geoip_info();
|
118 |
+
}
|
119 |
}
|
120 |
?>
|
121 |
<a name="top"></a>
|
123 |
<?php screen_icon('options-general'); ?>
|
124 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
125 |
<br>
|
126 |
+
<a href="#resources"><?php _e('Resources', 'wp_statistics'); ?></a> | <a href="#versioninfo"><?php _e('Version Info', 'wp_statistics'); ?></a> | <a href="#clientinfo"><?php _e('Client Info', 'wp_statistics'); ?></a> | <a href="#export"><?php _e('Export', 'wp_statistics'); ?></a> | <a href="#empty"><?php _e('Data', 'wp_statistics'); ?></a> | <a href="#deleteuseragenttypes"><?php _e('Delete User Agent Types', 'wp_statistics'); ?></a> | <a href="#geoipoptions"><?php _e('GeoIP Options', 'wp_statistics'); ?></a>
|
127 |
|
128 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
129 |
<table class="form-table">
|
279 |
</tr>
|
280 |
|
281 |
<tr valign="top">
|
282 |
+
<th scope="row" colspan="2"><a name="empty" href="#top" style='text-decoration: none;'><h3><?php _e('Data', 'wp_statistics'); ?></h3></a></th>
|
283 |
</tr>
|
284 |
|
285 |
<tr valign="top">
|
293 |
<option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
|
294 |
<option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
|
295 |
<option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
|
296 |
+
<option value="all"><?php echo __('All','wp_statistics'); ?></option>
|
297 |
</select>
|
298 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
299 |
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
301 |
<span id="empty-result"></span>
|
302 |
</td>
|
303 |
</tr>
|
304 |
+
|
305 |
+
<tr>
|
306 |
+
<th scope="row">
|
307 |
+
<label for="purge-data"><?php _e('Purge records older than', 'wp_statistics'); ?>:</label>
|
308 |
+
</th>
|
309 |
+
|
310 |
+
<td>
|
311 |
+
<input type="text" class="small-text code" id="purge-data" name="wps_purge_data" value="365"/>
|
312 |
+
<label for="purge-data"><?php _e('days', 'wp_statistics'); ?></label>
|
313 |
+
<p class="description"><?php _e('Deleted user statistics data older than the selected number of days. Minimum value is 30 days.', 'wp_statistics'); ?></p>
|
314 |
+
<input id="purge-data-submit" class="button button-primary" type="submit" value="<?php _e('Purge now!', 'wp_statistics'); ?>" name="purge-data-submit" Onclick="return false;"/>
|
315 |
+
|
316 |
+
<span id="purge-data-result"></span>
|
317 |
+
</td>
|
318 |
+
</tr>
|
319 |
|
320 |
<tr valign="top">
|
321 |
<th scope="row" colspan="2"><a name="deleteuseragenttypes" href="#top" style='text-decoration: none;'><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></a></th>
|
includes/optimization/optimization.php
CHANGED
@@ -1,5 +1,31 @@
|
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
jQuery("#empty-table-submit").click(function(){
|
4 |
|
5 |
var action = jQuery('#empty-table').val();
|
@@ -89,7 +115,7 @@
|
|
89 |
<?php screen_icon('options-general'); ?>
|
90 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
91 |
<br>
|
92 |
-
<a href="#resources"><?php _e('Resources', 'wp_statistics'); ?></a> | <a href="#versioninfo"><?php _e('Version Info', 'wp_statistics'); ?></a> | <a href="#clientinfo"><?php _e('Client Info', 'wp_statistics'); ?></a> | <a href="#export"><?php _e('Export', 'wp_statistics'); ?></a> | <a href="#empty"><?php _e('
|
93 |
|
94 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
95 |
<table class="form-table">
|
@@ -245,7 +271,7 @@
|
|
245 |
</tr>
|
246 |
|
247 |
<tr valign="top">
|
248 |
-
<th scope="row" colspan="2"><a name="empty" href="#top" style='text-decoration: none;'><h3><?php _e('
|
249 |
</tr>
|
250 |
|
251 |
<tr valign="top">
|
@@ -259,6 +285,7 @@
|
|
259 |
<option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
|
260 |
<option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
|
261 |
<option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
|
|
|
262 |
</select>
|
263 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
264 |
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
@@ -266,6 +293,21 @@
|
|
266 |
<span id="empty-result"></span>
|
267 |
</td>
|
268 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
|
270 |
<tr valign="top">
|
271 |
<th scope="row" colspan="2"><a name="deleteuseragenttypes" href="#top" style='text-decoration: none;'><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></a></th>
|
1 |
<script type="text/javascript">
|
2 |
jQuery(document).ready(function() {
|
3 |
+
jQuery("#purge-data-submit").click(function(){
|
4 |
+
|
5 |
+
var action = jQuery('#purge-data').val();
|
6 |
+
|
7 |
+
if(action == 0)
|
8 |
+
return false;
|
9 |
+
|
10 |
+
var agree = confirm('<?php _e('Are you sure?', 'wp_statistics'); ?>');
|
11 |
+
|
12 |
+
if(!agree)
|
13 |
+
return false;
|
14 |
+
|
15 |
+
var data = new Array();
|
16 |
+
data['purge-days'] = action;
|
17 |
+
|
18 |
+
|
19 |
+
jQuery("#purge-data-submit").attr("disabled", "disabled");
|
20 |
+
jQuery("#purge-data-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
21 |
+
|
22 |
+
jQuery.post("<?php echo parse_url(plugins_url('purge-data.php', __FILE__), PHP_URL_PATH ); ?>", {purge_days:data['purge-days']})
|
23 |
+
.done(function(result){
|
24 |
+
jQuery("#purge-data-result").html(result);
|
25 |
+
jQuery("#purge-data-submit").removeAttr("disabled");
|
26 |
+
});
|
27 |
+
});
|
28 |
+
|
29 |
jQuery("#empty-table-submit").click(function(){
|
30 |
|
31 |
var action = jQuery('#empty-table').val();
|
115 |
<?php screen_icon('options-general'); ?>
|
116 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
117 |
<br>
|
118 |
+
<a href="#resources"><?php _e('Resources', 'wp_statistics'); ?></a> | <a href="#versioninfo"><?php _e('Version Info', 'wp_statistics'); ?></a> | <a href="#clientinfo"><?php _e('Client Info', 'wp_statistics'); ?></a> | <a href="#export"><?php _e('Export', 'wp_statistics'); ?></a> | <a href="#empty"><?php _e('Data', 'wp_statistics'); ?></a> | <a href="#deleteuseragenttypes"><?php _e('Delete User Agent Types', 'wp_statistics'); ?></a>
|
119 |
|
120 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
121 |
<table class="form-table">
|
271 |
</tr>
|
272 |
|
273 |
<tr valign="top">
|
274 |
+
<th scope="row" colspan="2"><a name="empty" href="#top" style='text-decoration: none;'><h3><?php _e('Data', 'wp_statistics'); ?></h3></a></th>
|
275 |
</tr>
|
276 |
|
277 |
<tr valign="top">
|
285 |
<option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
|
286 |
<option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
|
287 |
<option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
|
288 |
+
<option value="all"><?php echo __('All','wp_statistics'); ?></option>
|
289 |
</select>
|
290 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
291 |
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
293 |
<span id="empty-result"></span>
|
294 |
</td>
|
295 |
</tr>
|
296 |
+
|
297 |
+
<tr>
|
298 |
+
<th scope="row">
|
299 |
+
<label for="purge-data">e:</label>
|
300 |
+
</th>
|
301 |
+
|
302 |
+
<td>
|
303 |
+
<input type="text" class="small-text code" id="purge-data" name="wps_purge_data" value="365"/>
|
304 |
+
<label for="purge-data"><?php _e('days', 'wp_statistics'); ?></label>
|
305 |
+
<p class="description"><?php _e('Deleted user statistics data older than the selected number of days. Minimum value is 30 days.', 'wp_statistics'); ?></p>
|
306 |
+
<input id="purge-data-submit" class="button button-primary" type="submit" value="<?php _e('Purge now!', 'wp_statistics'); ?>" name="purge-data-submit" Onclick="return false;"/>
|
307 |
+
|
308 |
+
<span id="purge-data-result"></span>
|
309 |
+
</td>
|
310 |
+
</tr>
|
311 |
|
312 |
<tr valign="top">
|
313 |
<th scope="row" colspan="2"><a name="deleteuseragenttypes" href="#top" style='text-decoration: none;'><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></a></th>
|
includes/optimization/purge-data.php
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
require('../../../../../wp-blog-header.php');
|
3 |
+
|
4 |
+
if( !is_super_admin() )
|
5 |
+
wp_die(__('Access denied!', 'wp_statistics'));
|
6 |
+
|
7 |
+
$purge_days = intval($_POST['purge_days']);
|
8 |
+
|
9 |
+
if($purge_days > 30) {
|
10 |
+
|
11 |
+
$table_name = $table_prefix . 'statistics_visit';
|
12 |
+
$date_string = date( 'Y-m-d', strtotime( '-' . $purge_days . ' days'));
|
13 |
+
|
14 |
+
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
15 |
+
|
16 |
+
if($result) {
|
17 |
+
$result_string = sprintf(__('<code>%s</code> data older than <code>%s</code> days purged successfully.', 'wp_statistics'), $table_name, $purge_days);
|
18 |
+
} else {
|
19 |
+
$result_string = sprintf(__('No records found to purge from <code>%s</code>!', 'wp_statistics'), $table_name );
|
20 |
+
}
|
21 |
+
|
22 |
+
$table_name = $table_prefix . 'statistics_visitor';
|
23 |
+
|
24 |
+
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
25 |
+
|
26 |
+
if($result) {
|
27 |
+
$result_string .= '<br>' . sprintf(__('<code>%s</code> data older than <code>%s</code> days purged successfully.', 'wp_statistics'), $table_name, $purge_days);
|
28 |
+
} else {
|
29 |
+
$result_string .= '<br>' . sprintf(__('No records found to purge from <code>%s</code>!', 'wp_statistics'), $table_name );
|
30 |
+
}
|
31 |
+
|
32 |
+
echo $result_string;
|
33 |
+
|
34 |
+
} else {
|
35 |
+
_e('Please select a value over 30 days.', 'wp_statistics');
|
36 |
+
}
|
37 |
+
|
38 |
+
?>
|
includes/setting/settings.php
CHANGED
@@ -2,13 +2,25 @@
|
|
2 |
function ToggleStatOptions() {
|
3 |
jQuery('[id^="wps_stats_report_option"]').fadeToggle();
|
4 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
</script>
|
6 |
<a name="top"></a>
|
7 |
<div class="wrap">
|
8 |
<?php screen_icon('options-general'); ?>
|
9 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
10 |
<br>
|
11 |
-
<a href="#generalsettings"><?php _e('General Settings', 'wp_statistics'); ?></a> | <a href="#adminlevels"><?php _e('Admin Levels', 'wp_statistics'); ?><a/> | <a href="#excludeuserroles"><?php _e('Exclude User Roles', 'wp_statistics'); ?><a/> | <a href="#iprobotexclusions"><?php _e('IP/Robot Exclusions', 'wp_statistics'); ?><a/> | <a href="#charts"><?php _e('Charts', 'wp_statistics'); ?><a/> | <a href="#statisticalreportingsettings"><?php _e('Statistical reporting settings', 'wp_statistics'); ?><a/> | <a href="#geoip"><?php _e('GeoIP', 'wp_statistics'); ?></a>
|
12 |
|
13 |
<form method="post" action="options.php">
|
14 |
<table class="form-table">
|
@@ -74,7 +86,7 @@
|
|
74 |
<td>
|
75 |
<input type="text" class="small-text code" id="check_online" name="wps_check_online" value="<?php echo get_option('wps_check_online'); ?>"/>
|
76 |
<?php _e('Second', 'wp_statistics'); ?>
|
77 |
-
<p class="description"><?php echo sprintf(__('Time for the check accurate online user in the site. Now: %s Second', 'wp_statistics'),
|
78 |
</td>
|
79 |
</tr>
|
80 |
|
@@ -99,7 +111,7 @@
|
|
99 |
|
100 |
<td>
|
101 |
<input type="text" class="small-text code" id="coefficient" name="wps_coefficient" value="<?php echo get_option('wps_coefficient'); ?>"/>
|
102 |
-
<p class="description"><?php echo sprintf(__('
|
103 |
</td>
|
104 |
</tr>
|
105 |
|
@@ -132,6 +144,7 @@
|
|
132 |
ksort( $all_caps );
|
133 |
|
134 |
$read_cap = get_option('wps_read_capability','manage_options');
|
|
|
135 |
|
136 |
foreach( $all_caps as $key => $cap ) {
|
137 |
if( $key == $read_cap ) { $selected = " SELECTED"; } else { $selected = ""; }
|
@@ -394,7 +407,35 @@
|
|
394 |
</th>
|
395 |
</tr>
|
396 |
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
</tbody>
|
399 |
</table>
|
400 |
<?php submit_button(); ?>
|
2 |
function ToggleStatOptions() {
|
3 |
jQuery('[id^="wps_stats_report_option"]').fadeToggle();
|
4 |
}
|
5 |
+
|
6 |
+
function DBMaintWarning() {
|
7 |
+
var checkbox = jQuery('#wps_schedule_dbmaint');
|
8 |
+
|
9 |
+
if( checkbox.attr('checked') == 'checked' )
|
10 |
+
{
|
11 |
+
if(!confirm('<?php _e('This will permanently delete data from the database each day, are you sure you want to enable this option?', 'wp_statistics'); ?>'))
|
12 |
+
checkbox.attr('checked', false);
|
13 |
+
}
|
14 |
+
|
15 |
+
|
16 |
+
}
|
17 |
</script>
|
18 |
<a name="top"></a>
|
19 |
<div class="wrap">
|
20 |
<?php screen_icon('options-general'); ?>
|
21 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
22 |
<br>
|
23 |
+
<a href="#generalsettings"><?php _e('General Settings', 'wp_statistics'); ?></a> | <a href="#adminlevels"><?php _e('Admin Levels', 'wp_statistics'); ?><a/> | <a href="#excludeuserroles"><?php _e('Exclude User Roles', 'wp_statistics'); ?><a/> | <a href="#iprobotexclusions"><?php _e('IP/Robot Exclusions', 'wp_statistics'); ?><a/> | <a href="#charts"><?php _e('Charts', 'wp_statistics'); ?><a/> | <a href="#statisticalreportingsettings"><?php _e('Statistical reporting settings', 'wp_statistics'); ?><a/> | <a href="#geoip"><?php _e('GeoIP', 'wp_statistics'); ?></a> | <a href="#databasemaintenance"><?php _e('Database Maintenance', 'wp_statistics'); ?></a>
|
24 |
|
25 |
<form method="post" action="options.php">
|
26 |
<table class="form-table">
|
86 |
<td>
|
87 |
<input type="text" class="small-text code" id="check_online" name="wps_check_online" value="<?php echo get_option('wps_check_online'); ?>"/>
|
88 |
<?php _e('Second', 'wp_statistics'); ?>
|
89 |
+
<p class="description"><?php echo sprintf(__('Time for the check accurate online user in the site. Now: %s Second', 'wp_statistics'), get_option('wps_check_online')); ?></p>
|
90 |
</td>
|
91 |
</tr>
|
92 |
|
111 |
|
112 |
<td>
|
113 |
<input type="text" class="small-text code" id="coefficient" name="wps_coefficient" value="<?php echo get_option('wps_coefficient'); ?>"/>
|
114 |
+
<p class="description"><?php echo sprintf(__('For each visit to account for several hits. Currently %s.', 'wp_statistics'), get_option('wps_coefficient')); ?></p>
|
115 |
</td>
|
116 |
</tr>
|
117 |
|
144 |
ksort( $all_caps );
|
145 |
|
146 |
$read_cap = get_option('wps_read_capability','manage_options');
|
147 |
+
$option_list = '';
|
148 |
|
149 |
foreach( $all_caps as $key => $cap ) {
|
150 |
if( $key == $read_cap ) { $selected = " SELECTED"; } else { $selected = ""; }
|
407 |
</th>
|
408 |
</tr>
|
409 |
<?php } ?>
|
410 |
+
|
411 |
+
<tr valign="top">
|
412 |
+
<th scope="row" colspan="2"><a name="databasemaintenance" href="#top" style='text-decoration: none;'><h3><?php _e('Database Maintenance', 'wp_statistics'); ?></h3></a></th>
|
413 |
+
</tr>
|
414 |
+
|
415 |
+
<tr valign="top">
|
416 |
+
<th scope="row">
|
417 |
+
<label for="wps_schedule_dbmaint"><?php _e('Run a daily WP Cron job to prune the databases', 'wp_statistics'); ?>:</label>
|
418 |
+
</th>
|
419 |
+
|
420 |
+
<td>
|
421 |
+
<input id="wps_schedule_dbmaint" type="checkbox" name="wps_schedule_dbmaint" <?php echo get_option('wps_schedule_dbmaint')==true? "checked='checked'":'';?> onclick='DBMaintWarning();'>
|
422 |
+
<label for="wps_schedule_dbmaint"><?php _e('Active', 'wp_statistics'); ?></label>
|
423 |
+
<p class="description"><?php _e('A WP Cron job will be run daily to prune any data older than a set number of days.', 'wp_statistics'); ?></p>
|
424 |
+
</td>
|
425 |
+
</tr>
|
426 |
|
427 |
+
<tr valign="top">
|
428 |
+
<th scope="row">
|
429 |
+
<label for="check_online"><?php _e('Prune data older than', 'wp_statistics'); ?>:</label>
|
430 |
+
</th>
|
431 |
+
|
432 |
+
<td>
|
433 |
+
<input type="text" class="small-text code" id="wps_schedule_dbmaint_days" name="wps_schedule_dbmaint_days" value="<?php echo get_option('wps_schedule_dbmaint_days', 365); ?>"/>
|
434 |
+
<?php _e('Days', 'wp_statistics'); ?>
|
435 |
+
<p class="description"><?php echo __('The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance.', 'wp_statistics'); ?></p>
|
436 |
+
</td>
|
437 |
+
</tr>
|
438 |
+
|
439 |
</tbody>
|
440 |
</table>
|
441 |
<?php submit_button(); ?>
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-01-18
|
6 |
-
"PO-Revision-Date: 2014-01-18
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -17,14 +17,14 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr ""
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
28 |
msgid "Statistics"
|
29 |
msgstr ""
|
30 |
|
@@ -33,33 +33,33 @@ msgid "Show site stats in sidebar"
|
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
39 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr ""
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr ""
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr ""
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr ""
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr ""
|
@@ -80,13 +80,13 @@ msgid "Years Visit"
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr ""
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr ""
|
@@ -149,104 +149,104 @@ msgstr ""
|
|
149 |
msgid "Complete statistics for your blog."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
153 |
#, php-format
|
154 |
msgid ""
|
155 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
156 |
"\">setting page</a> and enable statistics"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
160 |
msgid "Overview"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
164 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
166 |
msgid "Browsers"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
171 |
msgid "Countries"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
175 |
msgid "Hits"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
179 |
msgid "Referers"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
183 |
msgid "Searches"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
187 |
msgid "Search Words"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
191 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
192 |
msgid "Visitors"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
196 |
msgid "Optimization"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
200 |
msgid "Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
204 |
msgid "Today visitor"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
208 |
msgid "Today visit"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
212 |
msgid "Yesterday visitor"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
216 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
217 |
msgid "Yesterday visit"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
221 |
msgid "View Stats"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
225 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
227 |
msgid "You do not have sufficient permissions to access this page."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
231 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
235 |
#, php-format
|
236 |
msgid "Error downloading GeoIP database from: %s"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
240 |
#, php-format
|
241 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
245 |
#, php-format
|
246 |
msgid "Error could not open destination GeoIP database for writing %s"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
250 |
msgid "GeoIP Database updated successfully!"
|
251 |
msgstr ""
|
252 |
|
@@ -364,6 +364,8 @@ msgstr ""
|
|
364 |
|
365 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
|
366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
|
|
|
|
|
367 |
msgid "days"
|
368 |
msgstr ""
|
369 |
|
@@ -425,6 +427,8 @@ msgstr ""
|
|
425 |
|
426 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
427 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
|
|
|
|
428 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:55
|
429 |
msgid "All"
|
430 |
msgstr ""
|
@@ -467,7 +471,7 @@ msgid "Total"
|
|
467 |
msgstr ""
|
468 |
|
469 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
|
470 |
-
msgid "Search Engine
|
471 |
msgstr ""
|
472 |
|
473 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:99
|
@@ -575,7 +579,7 @@ msgid ""
|
|
575 |
"world!"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
579 |
msgid "Donate"
|
580 |
msgstr ""
|
581 |
|
@@ -617,6 +621,7 @@ msgstr ""
|
|
617 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
618 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
619 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
|
|
620 |
msgid "Access denied!"
|
621 |
msgstr ""
|
622 |
|
@@ -627,7 +632,7 @@ msgstr ""
|
|
627 |
|
628 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
629 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
630 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:
|
631 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
|
632 |
msgid "Please select the desired items."
|
633 |
msgstr ""
|
@@ -637,418 +642,474 @@ msgstr ""
|
|
637 |
msgid "<code>%s</code> platform data deleted successfully."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:
|
641 |
#, php-format
|
642 |
msgid "<code>%s</code> table data deleted successfully."
|
643 |
msgstr ""
|
644 |
|
|
|
|
|
|
|
|
|
|
|
645 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
646 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:36
|
647 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
|
|
648 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
649 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:36
|
650 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
|
|
651 |
msgid "Are you sure?"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
655 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
656 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
657 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
658 |
msgid "Resources"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
662 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
663 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
664 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
665 |
msgid "Version Info"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
669 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
670 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
671 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
672 |
msgid "Client Info"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
676 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
677 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
678 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
679 |
msgid "Export"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
683 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
684 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
685 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
686 |
-
msgid "
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
690 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
691 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
692 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
693 |
msgid "Delete User Agent Types"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
697 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
698 |
msgid "GeoIP Options"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
702 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
703 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
704 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
705 |
msgid "Memory usage in PHP"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
709 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
710 |
msgid "Byte"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
714 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
715 |
#, php-format
|
716 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
720 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
721 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
722 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
723 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
725 |
msgid "Row"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
729 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
731 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
732 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
733 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
734 |
msgid "Number of rows"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
738 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
739 |
#, php-format
|
740 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
744 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
745 |
#, php-format
|
746 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
751 |
msgid "WP Statistics Version"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
755 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
756 |
msgid "The WP Statistics version you are running."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
760 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
761 |
msgid "PHP Version"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
765 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
766 |
msgid "The PHP version you are running."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
770 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
771 |
msgid "jQuery Version"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
776 |
msgid "The jQuery version you are running."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
780 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
781 |
msgid "Client IP"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
785 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
786 |
msgid "The client IP address."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
790 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
791 |
msgid "User Agent"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
796 |
msgid "The client user agent string."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
800 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
801 |
msgid "Export from"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
805 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
806 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
807 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
808 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
809 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
810 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
812 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
813 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
814 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
816 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
817 |
msgid "Please select."
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
821 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
822 |
msgid "Select the table for the output file."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
827 |
msgid "Export To"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
831 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
832 |
msgid "Select the output file type."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
837 |
msgid "Start Now!"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
842 |
msgid "Empty Table"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
847 |
msgid "All data table will be lost."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
851 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
852 |
msgid "Clear now!"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
856 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
msgid "Delete Agents"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
861 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
862 |
msgid "All visitor data will be lost for this agent type."
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
866 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
868 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
869 |
msgid "Delete now!"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
873 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
874 |
msgid "Delete Platforms"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
878 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
879 |
msgid "All visitor data will be lost for this platform type."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
883 |
msgid "Update Now!"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
887 |
msgid "Get updates for the location and the countries, this may take a while"
|
888 |
msgstr ""
|
889 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
891 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
msgid "General Settings"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
896 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
897 |
msgid "Admin Levels"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
902 |
msgid "Exclude User Roles"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
906 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
907 |
msgid "IP/Robot Exclusions"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
911 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
912 |
msgid "Charts"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
916 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
917 |
msgid "Statistical reporting settings"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
921 |
msgid "GeoIP"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
925 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:40
|
926 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:52
|
927 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:64
|
928 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
929 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
930 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
932 |
msgid "Active"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:29
|
936 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:41
|
937 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:53
|
938 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
939 |
msgid "Enable or disable this feature"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
943 |
msgid "Visits"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
947 |
msgid "Store entire user agent string"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
951 |
msgid "Only enabled for debugging"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
955 |
msgid "Check for online users every"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
959 |
msgid "Second"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
963 |
#, php-format
|
964 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
968 |
msgid "Show stats in menu bar"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
972 |
msgid "No"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
976 |
msgid "Yes"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
980 |
msgid "Show stats in admin menu bar"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
984 |
msgid "Coefficient per visitor"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
988 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
989 |
#, php-format
|
990 |
-
msgid "
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
994 |
#, php-format
|
995 |
msgid ""
|
996 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
997 |
"levels."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1001 |
msgid ""
|
1002 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
1003 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1004 |
"Contributor, read = Everyone."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1008 |
msgid ""
|
1009 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1010 |
"configuration. So for example selecting publish_posts grants the right to "
|
1011 |
"Authors, Editors, Admins and Super Admins."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1015 |
#, php-format
|
1016 |
msgid ""
|
1017 |
"If you need a more robust solution to delegate access you might want to look "
|
1018 |
"at %s in the WordPress plugin directory."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1022 |
msgid "Required user level to view WP Statistics"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1026 |
msgid "Required user level to manage WP Statistics"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1030 |
msgid "Exclude"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
1034 |
msgid "Robot List"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1038 |
msgid ""
|
1039 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1040 |
"must be at least 4 characters long or they will be ignored."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1044 |
msgid "Reset to Default"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1048 |
msgid "Excluded IP Address List"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1052 |
msgid ""
|
1053 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1054 |
"from statistics collection (both 192.168.0.0/24 and "
|
@@ -1056,171 +1117,195 @@ msgid ""
|
|
1056 |
"only, do not add any subnet value."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1060 |
msgid "Add 10.0.0.0"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1064 |
msgid "Add 172.16.0.0"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1068 |
msgid "Add 192.168.0.0"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1072 |
msgid "Chart type"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1076 |
msgid "Line"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1080 |
msgid "Spline"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1084 |
msgid "Area"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1088 |
msgid "Area Spline"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1092 |
msgid "Column"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1096 |
msgid "Bar"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1100 |
msgid "Scatter"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1104 |
msgid "Chart type in view stats."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1108 |
msgid "Time send"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1112 |
msgid "Hourly"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1116 |
msgid "Twice daily"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1120 |
msgid "daily"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1124 |
msgid "Select when receiving statistics report."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1128 |
msgid "Send Statistical reporting to"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1132 |
msgid "Email"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1136 |
msgid "SMS"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1140 |
msgid "Type Select Get Status Report."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1144 |
#, php-format
|
1145 |
msgid ""
|
1146 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1147 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1151 |
msgid "Send Content Report"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1155 |
msgid "Enter the contents of the reports received."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1159 |
msgid "Input data:"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1163 |
msgid "GeoIP settings"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1167 |
msgid "GeoIP collection"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1171 |
msgid ""
|
1172 |
"For get more information and location (country) from visitor, enable this "
|
1173 |
"feature."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1177 |
msgid "Update GeoIP Info"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1181 |
msgid "Download GeoIP Database"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1185 |
msgid "Save changes on this page to download the update."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1189 |
msgid "Schedule monthly update of GeoIP DB"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1193 |
msgid "Next update will be"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1197 |
msgid ""
|
1198 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1199 |
"Tuesday of the month."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1203 |
msgid ""
|
1204 |
"This option will also download the database if the local filesize is less "
|
1205 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1206 |
"place)."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1210 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1214 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1221 |
"the installed PHP version being "
|
1222 |
msgstr ""
|
1223 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1224 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1225 |
msgid "Name"
|
1226 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-01-20 18:07+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-01-20 18:07+0330\n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
17 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr ""
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:120
|
28 |
msgid "Statistics"
|
29 |
msgstr ""
|
30 |
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:152
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:35
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:311
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr ""
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:313
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr ""
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:312
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr ""
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:315
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr ""
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:314
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr ""
|
80 |
msgstr ""
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:317
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr ""
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:316
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr ""
|
149 |
msgid "Complete statistics for your blog."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
|
153 |
#, php-format
|
154 |
msgid ""
|
155 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
156 |
"\">setting page</a> and enable statistics"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
|
160 |
msgid "Overview"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:123
|
164 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
166 |
msgid "Browsers"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
|
170 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:379
|
171 |
msgid "Countries"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
175 |
msgid "Hits"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
|
179 |
msgid "Referers"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
|
183 |
msgid "Searches"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
|
187 |
msgid "Search Words"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
|
191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:59
|
192 |
msgid "Visitors"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
|
196 |
msgid "Optimization"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
|
200 |
msgid "Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:157
|
204 |
msgid "Today visitor"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:162
|
208 |
msgid "Today visit"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:167
|
212 |
msgid "Yesterday visitor"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:172
|
216 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
217 |
msgid "Yesterday visit"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:177
|
221 |
msgid "View Stats"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:271
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:381
|
226 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:452
|
227 |
msgid "You do not have sufficient permissions to access this page."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:281
|
231 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:406
|
235 |
#, php-format
|
236 |
msgid "Error downloading GeoIP database from: %s"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:414
|
240 |
#, php-format
|
241 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:420
|
245 |
#, php-format
|
246 |
msgid "Error could not open destination GeoIP database for writing %s"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:433
|
250 |
msgid "GeoIP Database updated successfully!"
|
251 |
msgstr ""
|
252 |
|
364 |
|
365 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
|
366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
|
367 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:312
|
368 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:304
|
369 |
msgid "days"
|
370 |
msgstr ""
|
371 |
|
427 |
|
428 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
429 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
430 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:296
|
431 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:288
|
432 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:55
|
433 |
msgid "All"
|
434 |
msgstr ""
|
471 |
msgstr ""
|
472 |
|
473 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
|
474 |
+
msgid "Search Engine Referrals"
|
475 |
msgstr ""
|
476 |
|
477 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:99
|
579 |
"world!"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:345
|
583 |
msgid "Donate"
|
584 |
msgstr ""
|
585 |
|
621 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
622 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
623 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
624 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
|
625 |
msgid "Access denied!"
|
626 |
msgstr ""
|
627 |
|
632 |
|
633 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
634 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
635 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
|
636 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
|
637 |
msgid "Please select the desired items."
|
638 |
msgstr ""
|
642 |
msgid "<code>%s</code> platform data deleted successfully."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:47
|
646 |
#, php-format
|
647 |
msgid "<code>%s</code> table data deleted successfully."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:51
|
651 |
+
#, php-format
|
652 |
+
msgid "Error, %s not emptied!"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
656 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:36
|
657 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:62
|
658 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:90
|
659 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
660 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:36
|
661 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:62
|
662 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:90
|
663 |
msgid "Are you sure?"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
667 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:133
|
668 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
669 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:125
|
670 |
msgid "Resources"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
674 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:181
|
675 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
676 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:173
|
677 |
msgid "Version Info"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
681 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:218
|
682 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:210
|
684 |
msgid "Client Info"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
688 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:244
|
689 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
690 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:236
|
691 |
msgid "Export"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
695 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:282
|
696 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:274
|
698 |
+
msgid "Data"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
702 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:321
|
703 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
704 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:313
|
705 |
msgid "Delete User Agent Types"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
709 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:374
|
710 |
msgid "GeoIP Options"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:138
|
714 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:143
|
715 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:130
|
716 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:135
|
717 |
msgid "Memory usage in PHP"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:142
|
721 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:134
|
722 |
msgid "Byte"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:149
|
726 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:141
|
727 |
#, php-format
|
728 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:153
|
732 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:164
|
733 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:175
|
734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
|
735 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:156
|
736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:167
|
737 |
msgid "Row"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:154
|
741 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:165
|
742 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:176
|
743 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:146
|
744 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:157
|
745 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:168
|
746 |
msgid "Number of rows"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:160
|
750 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:152
|
751 |
#, php-format
|
752 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:171
|
756 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:163
|
757 |
#, php-format
|
758 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:186
|
762 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:178
|
763 |
msgid "WP Statistics Version"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:191
|
767 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:183
|
768 |
msgid "The WP Statistics version you are running."
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:197
|
772 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:189
|
773 |
msgid "PHP Version"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:202
|
777 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:194
|
778 |
msgid "The PHP version you are running."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:208
|
782 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:200
|
783 |
msgid "jQuery Version"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:213
|
787 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:205
|
788 |
msgid "The jQuery version you are running."
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:223
|
792 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:215
|
793 |
msgid "Client IP"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:228
|
797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:220
|
798 |
msgid "The client IP address."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:234
|
802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:226
|
803 |
msgid "User Agent"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
|
807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:231
|
808 |
msgid "The client user agent string."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:249
|
812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:241
|
813 |
msgid "Export from"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:254
|
817 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:270
|
818 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:292
|
819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:331
|
820 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:355
|
821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:246
|
822 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:262
|
823 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:284
|
824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:323
|
825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:347
|
826 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:236
|
827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:273
|
828 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:289
|
829 |
msgid "Please select."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:259
|
833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:251
|
834 |
msgid "Select the table for the output file."
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:265
|
838 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:257
|
839 |
msgid "Export To"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:276
|
843 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:268
|
844 |
msgid "Select the output file type."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:277
|
848 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:269
|
849 |
msgid "Start Now!"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:287
|
853 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:279
|
854 |
msgid "Empty Table"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:298
|
858 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:290
|
859 |
msgid "All data table will be lost."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:299
|
863 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:291
|
864 |
msgid "Clear now!"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:307
|
868 |
+
msgid "Purge records older than"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:313
|
872 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:305
|
873 |
+
msgid ""
|
874 |
+
"Deleted user statistics data older than the selected number of days. "
|
875 |
+
"Minimum value is 30 days."
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:314
|
879 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:306
|
880 |
+
msgid "Purge now!"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:326
|
884 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:318
|
885 |
msgid "Delete Agents"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:341
|
889 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:333
|
890 |
msgid "All visitor data will be lost for this agent type."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:342
|
894 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:366
|
895 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:334
|
896 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:358
|
897 |
msgid "Delete now!"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:350
|
901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:342
|
902 |
msgid "Delete Platforms"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:365
|
906 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:357
|
907 |
msgid "All visitor data will be lost for this platform type."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:383
|
911 |
msgid "Update Now!"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:384
|
915 |
msgid "Get updates for the location and the countries, this may take a while"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
|
919 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
|
920 |
+
#, php-format
|
921 |
+
msgid ""
|
922 |
+
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
926 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
927 |
+
#, php-format
|
928 |
+
msgid "No records found to purge from <code>%s</code>!"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:35
|
932 |
+
msgid "Please select a value over 30 days."
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
936 |
+
msgid ""
|
937 |
+
"This will permanently delete data from the database each day, are you sure "
|
938 |
+
"you want to enable this option?"
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
942 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:30
|
943 |
msgid "General Settings"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
947 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
|
948 |
msgid "Admin Levels"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
952 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
|
953 |
msgid "Exclude User Roles"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
957 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:194
|
958 |
msgid "IP/Robot Exclusions"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
962 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:226
|
963 |
msgid "Charts"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
967 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:250
|
968 |
msgid "Statistical reporting settings"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
972 |
msgid "GeoIP"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
976 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:412
|
977 |
+
msgid "Database Maintenance"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:40
|
981 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:52
|
982 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:64
|
983 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
|
984 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
985 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:339
|
986 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:363
|
987 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:397
|
988 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:422
|
989 |
msgid "Active"
|
990 |
msgstr ""
|
991 |
|
|
|
992 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:41
|
993 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:53
|
994 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:65
|
995 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:261
|
996 |
msgid "Enable or disable this feature"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:47
|
1000 |
msgid "Visits"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:71
|
1004 |
msgid "Store entire user agent string"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:77
|
1008 |
msgid "Only enabled for debugging"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:83
|
1012 |
msgid "Check for online users every"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:88
|
1016 |
msgid "Second"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:89
|
1020 |
#, php-format
|
1021 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:95
|
1025 |
msgid "Show stats in menu bar"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
|
1029 |
msgid "No"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
|
1033 |
msgid "Yes"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
|
1037 |
msgid "Show stats in admin menu bar"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
1041 |
msgid "Coefficient per visitor"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
|
|
|
1045 |
#, php-format
|
1046 |
+
msgid "For each visit to account for several hits. Currently %s."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
|
1050 |
#, php-format
|
1051 |
msgid ""
|
1052 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1053 |
"levels."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
|
1057 |
msgid ""
|
1058 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
1059 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1060 |
"Contributor, read = Everyone."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
|
1064 |
msgid ""
|
1065 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1066 |
"configuration. So for example selecting publish_posts grants the right to "
|
1067 |
"Authors, Editors, Admins and Super Admins."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
|
1071 |
#, php-format
|
1072 |
msgid ""
|
1073 |
"If you need a more robust solution to delegate access you might want to look "
|
1074 |
"at %s in the WordPress plugin directory."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:155
|
1078 |
msgid "Required user level to view WP Statistics"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
|
1082 |
msgid "Required user level to manage WP Statistics"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:187
|
1086 |
msgid "Exclude"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:188
|
1090 |
+
#, php-format
|
1091 |
+
msgid "Exclude %s role from data collection."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:198
|
1095 |
msgid "Robot List"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:210
|
1099 |
msgid ""
|
1100 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1101 |
"must be at least 4 characters long or they will be ignored."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:211
|
1105 |
msgid "Reset to Default"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:215
|
1109 |
msgid "Excluded IP Address List"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:218
|
1113 |
msgid ""
|
1114 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1115 |
"from statistics collection (both 192.168.0.0/24 and "
|
1117 |
"only, do not add any subnet value."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:219
|
1121 |
msgid "Add 10.0.0.0"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:220
|
1125 |
msgid "Add 172.16.0.0"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
1129 |
msgid "Add 192.168.0.0"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:231
|
1133 |
msgid "Chart type"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:237
|
1137 |
msgid "Line"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:238
|
1141 |
msgid "Spline"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:239
|
1145 |
msgid "Area"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:240
|
1149 |
msgid "Area Spline"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:241
|
1153 |
msgid "Column"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:242
|
1157 |
msgid "Bar"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:243
|
1161 |
msgid "Scatter"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:245
|
1165 |
msgid "Chart type in view stats."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:268
|
1169 |
msgid "Time send"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:274
|
1173 |
msgid "Hourly"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:275
|
1177 |
msgid "Twice daily"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
1181 |
msgid "daily"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:278
|
1185 |
msgid "Select when receiving statistics report."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:284
|
1189 |
msgid "Send Statistical reporting to"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:290
|
1193 |
msgid "Email"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:291
|
1197 |
msgid "SMS"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:293
|
1201 |
msgid "Type Select Get Status Report."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:296
|
1205 |
#, php-format
|
1206 |
msgid ""
|
1207 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1208 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:303
|
1212 |
msgid "Send Content Report"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:308
|
1216 |
msgid "Enter the contents of the reports received."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:310
|
1220 |
msgid "Input data:"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:323
|
1224 |
msgid "GeoIP settings"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:334
|
1228 |
msgid "GeoIP collection"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:340
|
1232 |
msgid ""
|
1233 |
"For get more information and location (country) from visitor, enable this "
|
1234 |
"feature."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:346
|
1238 |
msgid "Update GeoIP Info"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:351
|
1242 |
msgid "Download GeoIP Database"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:352
|
1246 |
msgid "Save changes on this page to download the update."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:358
|
1250 |
msgid "Schedule monthly update of GeoIP DB"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:366
|
1254 |
msgid "Next update will be"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:385
|
1258 |
msgid ""
|
1259 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1260 |
"Tuesday of the month."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:386
|
1264 |
msgid ""
|
1265 |
"This option will also download the database if the local filesize is less "
|
1266 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1267 |
"place)."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:392
|
1271 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:398
|
1275 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:406
|
1279 |
#, php-format
|
1280 |
msgid ""
|
1281 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1282 |
"the installed PHP version being "
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:417
|
1286 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:423
|
1290 |
+
msgid ""
|
1291 |
+
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1292 |
+
"days."
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:429
|
1296 |
+
msgid "Prune data older than"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:434
|
1300 |
+
msgid "Days"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:435
|
1304 |
+
msgid ""
|
1305 |
+
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1306 |
+
"Invalid values will disable the daily maintenance."
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1310 |
msgid "Name"
|
1311 |
msgstr ""
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP Statistics\n"
|
6 |
-
"POT-Creation-Date: 2014-01-
|
7 |
-
"PO-Revision-Date: 2014-01-
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -18,14 +18,14 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:
|
22 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr "گزارش آماری"
|
25 |
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
27 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
28 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
29 |
msgid "Statistics"
|
30 |
msgstr "آماره"
|
31 |
|
@@ -34,33 +34,33 @@ msgid "Show site stats in sidebar"
|
|
34 |
msgstr "نمایش آمار سایت در ابزارک"
|
35 |
|
36 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
37 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
39 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
40 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
42 |
msgid "User Online"
|
43 |
msgstr "کاربران حاضر"
|
44 |
|
45 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
46 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
48 |
msgid "Today Visit"
|
49 |
msgstr "بازدید امروز"
|
50 |
|
51 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
52 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
53 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
54 |
msgid "Today Visitor"
|
55 |
msgstr "بازدیدکننده امروز"
|
56 |
|
57 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
58 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
59 |
msgid "Yesterday Visit"
|
60 |
msgstr "بازدید دیروز"
|
61 |
|
62 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
63 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
64 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
65 |
msgid "Yesterday Visitor"
|
66 |
msgstr "بازدید کننده دیروز"
|
@@ -81,13 +81,13 @@ msgid "Years Visit"
|
|
81 |
msgstr "بازدید سال"
|
82 |
|
83 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
84 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
85 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
86 |
msgid "Total Visit"
|
87 |
msgstr "کل بازدیدها"
|
88 |
|
89 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
90 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
91 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
92 |
msgid "Total Visitor"
|
93 |
msgstr "کل بازدیدکنندهگان"
|
@@ -150,7 +150,7 @@ msgstr "آماره وردپرس"
|
|
150 |
msgid "Complete statistics for your blog."
|
151 |
msgstr "آماری کامل برای وبلاگ شما."
|
152 |
|
153 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
@@ -159,97 +159,97 @@ msgstr ""
|
|
159 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
160 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
161 |
|
162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
168 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
173 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
174 |
msgid "Countries"
|
175 |
msgstr "کشورها"
|
176 |
|
177 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
178 |
msgid "Hits"
|
179 |
msgstr "بازدیدها"
|
180 |
|
181 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
182 |
msgid "Referers"
|
183 |
msgstr "ارجاعدهندهها"
|
184 |
|
185 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
186 |
msgid "Searches"
|
187 |
msgstr "جستجوها"
|
188 |
|
189 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
190 |
msgid "Search Words"
|
191 |
msgstr "کلمات جستجو شده"
|
192 |
|
193 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
194 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
195 |
msgid "Visitors"
|
196 |
msgstr "بازدیدکنندهگان"
|
197 |
|
198 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
199 |
msgid "Optimization"
|
200 |
msgstr "بهینه سازی"
|
201 |
|
202 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
203 |
msgid "Settings"
|
204 |
msgstr "تنظیمات"
|
205 |
|
206 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
207 |
msgid "Today visitor"
|
208 |
msgstr "بازدید کننده امروز"
|
209 |
|
210 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
211 |
msgid "Today visit"
|
212 |
msgstr "بازدید امروز"
|
213 |
|
214 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
215 |
msgid "Yesterday visitor"
|
216 |
msgstr "بازدید کننده دیروز"
|
217 |
|
218 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
219 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
220 |
msgid "Yesterday visit"
|
221 |
msgstr "بازدید دیروز"
|
222 |
|
223 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
224 |
msgid "View Stats"
|
225 |
msgstr "نمایش آمار"
|
226 |
|
227 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
228 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
229 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
230 |
msgid "You do not have sufficient permissions to access this page."
|
231 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
232 |
|
233 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
234 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
235 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
236 |
|
237 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
238 |
#, php-format
|
239 |
msgid "Error downloading GeoIP database from: %s"
|
240 |
msgstr "خطای دریافت پایگاهداده GeoIP از: %s"
|
241 |
|
242 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
243 |
#, php-format
|
244 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
245 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای خواندن: %s"
|
246 |
|
247 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
248 |
#, php-format
|
249 |
msgid "Error could not open destination GeoIP database for writing %s"
|
250 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای نوشتن: %s"
|
251 |
|
252 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
253 |
msgid "GeoIP Database updated successfully!"
|
254 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
255 |
|
@@ -367,6 +367,8 @@ msgstr "نمودار آخرین بازدیدها"
|
|
367 |
|
368 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
|
369 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
|
|
|
|
|
370 |
msgid "days"
|
371 |
msgstr "روزه"
|
372 |
|
@@ -428,6 +430,8 @@ msgstr "آخرین بازدیدکنندگان"
|
|
428 |
|
429 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
430 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
|
|
|
|
431 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:55
|
432 |
msgid "All"
|
433 |
msgstr "همه"
|
@@ -620,6 +624,7 @@ msgstr "سایت های ارجاع دهنده از"
|
|
620 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
621 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
622 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
|
|
623 |
msgid "Access denied!"
|
624 |
msgstr "دسترسی غیرمجاز!"
|
625 |
|
@@ -630,7 +635,7 @@ msgstr "مرورگر <code>%s</code> با موفقیت حذف شد."
|
|
630 |
|
631 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
632 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
633 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:
|
634 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
|
635 |
msgid "Please select the desired items."
|
636 |
msgstr "لطفا موارد مورد نظر را انتخاب کنید."
|
@@ -640,368 +645,424 @@ msgstr "لطفا موارد مورد نظر را انتخاب کنید."
|
|
640 |
msgid "<code>%s</code> platform data deleted successfully."
|
641 |
msgstr "سَکوی <code>%s</code> با موفقیت حذف شد."
|
642 |
|
643 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:
|
644 |
#, php-format
|
645 |
msgid "<code>%s</code> table data deleted successfully."
|
646 |
msgstr "دادههای جدول <code>%s</code> با موفقیت حذف شد."
|
647 |
|
|
|
|
|
|
|
|
|
|
|
648 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
649 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:36
|
650 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
|
|
651 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
652 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:36
|
653 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
|
|
654 |
msgid "Are you sure?"
|
655 |
msgstr "آیا مطمئن هستید؟"
|
656 |
|
657 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
658 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
659 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
660 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
661 |
msgid "Resources"
|
662 |
msgstr "منابع"
|
663 |
|
664 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
665 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
666 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
667 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
668 |
msgid "Version Info"
|
669 |
msgstr "اطلاعات نگارش"
|
670 |
|
671 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
672 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
673 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
674 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
675 |
msgid "Client Info"
|
676 |
msgstr "اطلاعات کاربر"
|
677 |
|
678 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
679 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
680 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
681 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
682 |
msgid "Export"
|
683 |
msgstr "برونبری"
|
684 |
|
685 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
686 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
687 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
688 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
689 |
-
msgid "
|
690 |
-
msgstr "
|
691 |
-
|
692 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
693 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
694 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
695 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
696 |
msgid "Delete User Agent Types"
|
697 |
msgstr "حذف نوع سیستم عامل کاربر"
|
698 |
|
699 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
700 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
701 |
msgid "GeoIP Options"
|
702 |
msgstr "تنظیمات GeoIP"
|
703 |
|
704 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
705 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
706 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
707 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
708 |
msgid "Memory usage in PHP"
|
709 |
msgstr "حافظه استفاده شده در پیاچپی"
|
710 |
|
711 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
712 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
713 |
msgid "Byte"
|
714 |
msgstr "بایت"
|
715 |
|
716 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
717 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
718 |
#, php-format
|
719 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
720 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_useronline</code>"
|
721 |
|
722 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
723 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
725 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
726 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
727 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
728 |
msgid "Row"
|
729 |
msgstr "ردیف"
|
730 |
|
731 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
732 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
733 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
734 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
735 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
737 |
msgid "Number of rows"
|
738 |
msgstr "تعداد ردیفهای موجود"
|
739 |
|
740 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
741 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
742 |
#, php-format
|
743 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
744 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visit</code>"
|
745 |
|
746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
748 |
#, php-format
|
749 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
750 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</code>"
|
751 |
|
752 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
753 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
754 |
msgid "WP Statistics Version"
|
755 |
msgstr "نگارش افزونه آماره"
|
756 |
|
757 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
759 |
msgid "The WP Statistics version you are running."
|
760 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
761 |
|
762 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
764 |
msgid "PHP Version"
|
765 |
msgstr "نگارش PHP"
|
766 |
|
767 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
768 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
769 |
msgid "The PHP version you are running."
|
770 |
msgstr "نگارش PHP در حال اجرای شما."
|
771 |
|
772 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
773 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
774 |
msgid "jQuery Version"
|
775 |
msgstr "نگارش جیکوئری"
|
776 |
|
777 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
778 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
779 |
msgid "The jQuery version you are running."
|
780 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
781 |
|
782 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
784 |
msgid "Client IP"
|
785 |
msgstr "آیپی کاربر"
|
786 |
|
787 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
788 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
789 |
msgid "The client IP address."
|
790 |
msgstr "آدرس آیپی کاربر."
|
791 |
|
792 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
793 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
794 |
msgid "User Agent"
|
795 |
msgstr "عامل کاربر"
|
796 |
|
797 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
798 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
799 |
msgid "The client user agent string."
|
800 |
msgstr "رشتهی عامل کاربری"
|
801 |
|
802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
803 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
804 |
msgid "Export from"
|
805 |
msgstr "برونبری از"
|
806 |
|
807 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
808 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
809 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
810 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
812 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
813 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
814 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
816 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
817 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
818 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
819 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
820 |
msgid "Please select."
|
821 |
msgstr "لطفا انتخاب کنید."
|
822 |
|
823 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
824 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
825 |
msgid "Select the table for the output file."
|
826 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
827 |
|
828 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
829 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
830 |
msgid "Export To"
|
831 |
msgstr "برونبری به"
|
832 |
|
833 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
835 |
msgid "Select the output file type."
|
836 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
837 |
|
838 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
839 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
840 |
msgid "Start Now!"
|
841 |
msgstr "شروع کن!"
|
842 |
|
843 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
844 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
845 |
msgid "Empty Table"
|
846 |
msgstr "خالی کردن جدول"
|
847 |
|
848 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
849 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
850 |
msgid "All data table will be lost."
|
851 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
852 |
|
853 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
855 |
msgid "Clear now!"
|
856 |
msgstr "پاک کن!"
|
857 |
|
858 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
859 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
860 |
msgid "Delete Agents"
|
861 |
msgstr "حذف سیستم عاملها"
|
862 |
|
863 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
864 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
865 |
msgid "All visitor data will be lost for this agent type."
|
866 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
867 |
|
868 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
869 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
870 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
871 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
872 |
msgid "Delete now!"
|
873 |
msgstr "پاک کن!"
|
874 |
|
875 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
876 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
877 |
msgid "Delete Platforms"
|
878 |
msgstr "حذف سَکوها"
|
879 |
|
880 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
881 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
882 |
msgid "All visitor data will be lost for this platform type."
|
883 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
884 |
|
885 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
886 |
msgid "Update Now!"
|
887 |
msgstr "بهروز رسانی کن!"
|
888 |
|
889 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
890 |
msgid "Get updates for the location and the countries, this may take a while"
|
891 |
msgstr ""
|
892 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
893 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
894 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
895 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
896 |
msgid "General Settings"
|
897 |
msgstr "تنظیمات عمومی"
|
898 |
|
899 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
900 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
901 |
msgid "Admin Levels"
|
902 |
msgstr "سطح مدیریت"
|
903 |
|
904 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
906 |
msgid "Exclude User Roles"
|
907 |
msgstr "محرومکردن نقشهای کاربری"
|
908 |
|
909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
910 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
911 |
msgid "IP/Robot Exclusions"
|
912 |
msgstr "محرومیتهای آیپی/ربات"
|
913 |
|
914 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
915 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
916 |
msgid "Charts"
|
917 |
msgstr "نمودار"
|
918 |
|
919 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
920 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
921 |
msgid "Statistical reporting settings"
|
922 |
msgstr "تنظیمات گزارش آماری"
|
923 |
|
924 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
925 |
msgid "GeoIP"
|
926 |
msgstr "GeoIP"
|
927 |
|
928 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
929 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:40
|
930 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:52
|
931 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:64
|
932 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
933 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
934 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
935 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
936 |
msgid "Active"
|
937 |
msgstr "فعال"
|
938 |
|
939 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:29
|
940 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:41
|
941 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:53
|
942 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
943 |
msgid "Enable or disable this feature"
|
944 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
945 |
|
946 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
947 |
msgid "Visits"
|
948 |
msgstr "بازدیدها"
|
949 |
|
950 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
951 |
msgid "Store entire user agent string"
|
952 |
msgstr "ذخیره تمامی مرورگرهای کاربر"
|
953 |
|
954 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
955 |
msgid "Only enabled for debugging"
|
956 |
msgstr "فعال فقط برای اشکال زدایی"
|
957 |
|
958 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
959 |
msgid "Check for online users every"
|
960 |
msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
|
961 |
|
962 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
963 |
msgid "Second"
|
964 |
msgstr "ثانیه"
|
965 |
|
966 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
967 |
#, php-format
|
968 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
969 |
msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. فعلا %s ثانیه است"
|
970 |
|
971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
972 |
msgid "Show stats in menu bar"
|
973 |
msgstr "نمایش آمار در منوبار"
|
974 |
|
975 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
976 |
msgid "No"
|
977 |
msgstr "خیر"
|
978 |
|
979 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
980 |
msgid "Yes"
|
981 |
msgstr "بله"
|
982 |
|
983 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
984 |
msgid "Show stats in admin menu bar"
|
985 |
msgstr "نمایش آمار در منوبار مدیریت"
|
986 |
|
987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
988 |
msgid "Coefficient per visitor"
|
989 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
990 |
|
991 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
992 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
993 |
#, php-format
|
994 |
-
msgid "
|
995 |
-
msgstr "
|
996 |
|
997 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
998 |
#, php-format
|
999 |
msgid ""
|
1000 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1001 |
"levels."
|
1002 |
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
1003 |
|
1004 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1005 |
msgid ""
|
1006 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
1007 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
@@ -1010,7 +1071,7 @@ msgstr ""
|
|
1010 |
"نکته: manage_network = سوپر مدیر، manage_options = مدیر، edit_others_posts = "
|
1011 |
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
1012 |
|
1013 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1014 |
msgid ""
|
1015 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1016 |
"configuration. So for example selecting publish_posts grants the right to "
|
@@ -1019,7 +1080,7 @@ msgstr ""
|
|
1019 |
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
1020 |
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
1021 |
|
1022 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"If you need a more robust solution to delegate access you might want to look "
|
@@ -1028,23 +1089,28 @@ msgstr ""
|
|
1028 |
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1029 |
"به افزونه %s بیندازید."
|
1030 |
|
1031 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1032 |
msgid "Required user level to view WP Statistics"
|
1033 |
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
1034 |
|
1035 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1036 |
msgid "Required user level to manage WP Statistics"
|
1037 |
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
1038 |
|
1039 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1040 |
msgid "Exclude"
|
1041 |
msgstr "محروم"
|
1042 |
|
1043 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
1044 |
msgid "Robot List"
|
1045 |
msgstr "لیست روباتها"
|
1046 |
|
1047 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1048 |
msgid ""
|
1049 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1050 |
"must be at least 4 characters long or they will be ignored."
|
@@ -1052,15 +1118,15 @@ msgstr ""
|
|
1052 |
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
1053 |
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
1054 |
|
1055 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1056 |
msgid "Reset to Default"
|
1057 |
msgstr "بازگشت به حالت پیشفرض"
|
1058 |
|
1059 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1060 |
msgid "Excluded IP Address List"
|
1061 |
msgstr "لیست آدرس آیپیهای محروم"
|
1062 |
|
1063 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1064 |
msgid ""
|
1065 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1066 |
"from statistics collection (both 192.168.0.0/24 and "
|
@@ -1072,91 +1138,91 @@ msgstr ""
|
|
1072 |
"هر خط یکی را اضافه کنید.) برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet "
|
1073 |
"Mask را اضافه کنید."
|
1074 |
|
1075 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1076 |
msgid "Add 10.0.0.0"
|
1077 |
msgstr "افزودن 10.0.0.0"
|
1078 |
|
1079 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1080 |
msgid "Add 172.16.0.0"
|
1081 |
msgstr "افزودن 172.16.0.0"
|
1082 |
|
1083 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1084 |
msgid "Add 192.168.0.0"
|
1085 |
msgstr "افزودن 192.168.0.0"
|
1086 |
|
1087 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1088 |
msgid "Chart type"
|
1089 |
msgstr "نوع نمودار"
|
1090 |
|
1091 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1092 |
msgid "Line"
|
1093 |
msgstr "خطی"
|
1094 |
|
1095 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1096 |
msgid "Spline"
|
1097 |
msgstr "نوار باریک"
|
1098 |
|
1099 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1100 |
msgid "Area"
|
1101 |
msgstr "خطی توپُر"
|
1102 |
|
1103 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1104 |
msgid "Area Spline"
|
1105 |
msgstr "نوار توپُر"
|
1106 |
|
1107 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1108 |
msgid "Column"
|
1109 |
msgstr "ستونی"
|
1110 |
|
1111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1112 |
msgid "Bar"
|
1113 |
msgstr "شِمشی"
|
1114 |
|
1115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1116 |
msgid "Scatter"
|
1117 |
msgstr "پراکنده"
|
1118 |
|
1119 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1120 |
msgid "Chart type in view stats."
|
1121 |
msgstr "نوع نمودار در نمایش آمار."
|
1122 |
|
1123 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1124 |
msgid "Time send"
|
1125 |
msgstr "زمان ارسال"
|
1126 |
|
1127 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1128 |
msgid "Hourly"
|
1129 |
msgstr "هرساعت"
|
1130 |
|
1131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1132 |
msgid "Twice daily"
|
1133 |
msgstr "2 بار در روز"
|
1134 |
|
1135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1136 |
msgid "daily"
|
1137 |
msgstr "روزانه"
|
1138 |
|
1139 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1140 |
msgid "Select when receiving statistics report."
|
1141 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1142 |
|
1143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1144 |
msgid "Send Statistical reporting to"
|
1145 |
msgstr "ارسال گزارش آمار به"
|
1146 |
|
1147 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1148 |
msgid "Email"
|
1149 |
msgstr "پست الکترونیک"
|
1150 |
|
1151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1152 |
msgid "SMS"
|
1153 |
msgstr "پیامک"
|
1154 |
|
1155 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1156 |
msgid "Type Select Get Status Report."
|
1157 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1158 |
|
1159 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1160 |
#, php-format
|
1161 |
msgid ""
|
1162 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -1165,27 +1231,27 @@ msgstr ""
|
|
1165 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1166 |
"وردپرس</a> را نصب کنید."
|
1167 |
|
1168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1169 |
msgid "Send Content Report"
|
1170 |
msgstr "محتوای ارسال گزارش"
|
1171 |
|
1172 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1173 |
msgid "Enter the contents of the reports received."
|
1174 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1175 |
|
1176 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1177 |
msgid "Input data:"
|
1178 |
msgstr "دادههای ورودی:"
|
1179 |
|
1180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1181 |
msgid "GeoIP settings"
|
1182 |
msgstr "تنظیمات GeoIP"
|
1183 |
|
1184 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1185 |
msgid "GeoIP collection"
|
1186 |
msgstr "مجموعه GeoIP"
|
1187 |
|
1188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1189 |
msgid ""
|
1190 |
"For get more information and location (country) from visitor, enable this "
|
1191 |
"feature."
|
@@ -1193,33 +1259,33 @@ msgstr ""
|
|
1193 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1194 |
"کنید."
|
1195 |
|
1196 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1197 |
msgid "Update GeoIP Info"
|
1198 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1199 |
|
1200 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1201 |
msgid "Download GeoIP Database"
|
1202 |
msgstr "دریافت پایگاهداده GeoIP"
|
1203 |
|
1204 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1205 |
msgid "Save changes on this page to download the update."
|
1206 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1207 |
|
1208 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1209 |
msgid "Schedule monthly update of GeoIP DB"
|
1210 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1211 |
|
1212 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1213 |
msgid "Next update will be"
|
1214 |
msgstr "بهروز رسانی بعدی خواهد بود"
|
1215 |
|
1216 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1217 |
msgid ""
|
1218 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1219 |
"Tuesday of the month."
|
1220 |
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1221 |
|
1222 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1223 |
msgid ""
|
1224 |
"This option will also download the database if the local filesize is less "
|
1225 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
@@ -1228,16 +1294,16 @@ msgstr ""
|
|
1228 |
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1229 |
"دادههای همراه افزونه است)."
|
1230 |
|
1231 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1232 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1233 |
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1234 |
|
1235 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1236 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1237 |
msgstr ""
|
1238 |
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1239 |
|
1240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1241 |
#, php-format
|
1242 |
msgid ""
|
1243 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
@@ -1246,6 +1312,34 @@ msgstr ""
|
|
1246 |
"مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
|
1247 |
"بودن نسخه PHP شما، غیرفعال است"
|
1248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1249 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1250 |
msgid "Name"
|
1251 |
msgstr "نام"
|
@@ -1270,6 +1364,9 @@ msgstr "میلادی"
|
|
1270 |
msgid "Persian"
|
1271 |
msgstr "شمسی (فارسی)"
|
1272 |
|
|
|
|
|
|
|
1273 |
#~ msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1274 |
#~ msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
1275 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP Statistics\n"
|
6 |
+
"POT-Creation-Date: 2014-01-20 17:28+0330\n"
|
7 |
+
"PO-Revision-Date: 2014-01-20 17:28+0330\n"
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
22 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr "گزارش آماری"
|
25 |
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
27 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
28 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:120
|
29 |
msgid "Statistics"
|
30 |
msgstr "آماره"
|
31 |
|
34 |
msgstr "نمایش آمار سایت در ابزارک"
|
35 |
|
36 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
37 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:152
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:35
|
40 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:311
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
42 |
msgid "User Online"
|
43 |
msgstr "کاربران حاضر"
|
44 |
|
45 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
46 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:313
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
48 |
msgid "Today Visit"
|
49 |
msgstr "بازدید امروز"
|
50 |
|
51 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
52 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:312
|
53 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
54 |
msgid "Today Visitor"
|
55 |
msgstr "بازدیدکننده امروز"
|
56 |
|
57 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
58 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:315
|
59 |
msgid "Yesterday Visit"
|
60 |
msgstr "بازدید دیروز"
|
61 |
|
62 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
63 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:314
|
64 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
65 |
msgid "Yesterday Visitor"
|
66 |
msgstr "بازدید کننده دیروز"
|
81 |
msgstr "بازدید سال"
|
82 |
|
83 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
84 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:317
|
85 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
86 |
msgid "Total Visit"
|
87 |
msgstr "کل بازدیدها"
|
88 |
|
89 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
90 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:316
|
91 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
92 |
msgid "Total Visitor"
|
93 |
msgstr "کل بازدیدکنندهگان"
|
150 |
msgid "Complete statistics for your blog."
|
151 |
msgstr "آماری کامل برای وبلاگ شما."
|
152 |
|
153 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:60
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
159 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
160 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
161 |
|
162 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:123
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
168 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
|
173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:379
|
174 |
msgid "Countries"
|
175 |
msgstr "کشورها"
|
176 |
|
177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
178 |
msgid "Hits"
|
179 |
msgstr "بازدیدها"
|
180 |
|
181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
|
182 |
msgid "Referers"
|
183 |
msgstr "ارجاعدهندهها"
|
184 |
|
185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
|
186 |
msgid "Searches"
|
187 |
msgstr "جستجوها"
|
188 |
|
189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
|
190 |
msgid "Search Words"
|
191 |
msgstr "کلمات جستجو شده"
|
192 |
|
193 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
|
194 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:59
|
195 |
msgid "Visitors"
|
196 |
msgstr "بازدیدکنندهگان"
|
197 |
|
198 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
|
199 |
msgid "Optimization"
|
200 |
msgstr "بهینه سازی"
|
201 |
|
202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
|
203 |
msgid "Settings"
|
204 |
msgstr "تنظیمات"
|
205 |
|
206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:157
|
207 |
msgid "Today visitor"
|
208 |
msgstr "بازدید کننده امروز"
|
209 |
|
210 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:162
|
211 |
msgid "Today visit"
|
212 |
msgstr "بازدید امروز"
|
213 |
|
214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:167
|
215 |
msgid "Yesterday visitor"
|
216 |
msgstr "بازدید کننده دیروز"
|
217 |
|
218 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:172
|
219 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
220 |
msgid "Yesterday visit"
|
221 |
msgstr "بازدید دیروز"
|
222 |
|
223 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:177
|
224 |
msgid "View Stats"
|
225 |
msgstr "نمایش آمار"
|
226 |
|
227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:271
|
228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:381
|
229 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:452
|
230 |
msgid "You do not have sufficient permissions to access this page."
|
231 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
232 |
|
233 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:281
|
234 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
235 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
236 |
|
237 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:406
|
238 |
#, php-format
|
239 |
msgid "Error downloading GeoIP database from: %s"
|
240 |
msgstr "خطای دریافت پایگاهداده GeoIP از: %s"
|
241 |
|
242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:414
|
243 |
#, php-format
|
244 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
245 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای خواندن: %s"
|
246 |
|
247 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:420
|
248 |
#, php-format
|
249 |
msgid "Error could not open destination GeoIP database for writing %s"
|
250 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای نوشتن: %s"
|
251 |
|
252 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:433
|
253 |
msgid "GeoIP Database updated successfully!"
|
254 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
255 |
|
367 |
|
368 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:43
|
369 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:43
|
370 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:312
|
371 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:304
|
372 |
msgid "days"
|
373 |
msgstr "روزه"
|
374 |
|
430 |
|
431 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
432 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
433 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:296
|
434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:288
|
435 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:55
|
436 |
msgid "All"
|
437 |
msgstr "همه"
|
624 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
|
625 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
|
626 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
|
627 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
|
628 |
msgid "Access denied!"
|
629 |
msgstr "دسترسی غیرمجاز!"
|
630 |
|
635 |
|
636 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
|
637 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
|
638 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
|
639 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
|
640 |
msgid "Please select the desired items."
|
641 |
msgstr "لطفا موارد مورد نظر را انتخاب کنید."
|
645 |
msgid "<code>%s</code> platform data deleted successfully."
|
646 |
msgstr "سَکوی <code>%s</code> با موفقیت حذف شد."
|
647 |
|
648 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:47
|
649 |
#, php-format
|
650 |
msgid "<code>%s</code> table data deleted successfully."
|
651 |
msgstr "دادههای جدول <code>%s</code> با موفقیت حذف شد."
|
652 |
|
653 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:51
|
654 |
+
#, php-format
|
655 |
+
msgid "Error, %s not emptied!"
|
656 |
+
msgstr "خطا! %s خالی نیست!"
|
657 |
+
|
658 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
659 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:36
|
660 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:62
|
661 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:90
|
662 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
663 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:36
|
664 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:62
|
665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:90
|
666 |
msgid "Are you sure?"
|
667 |
msgstr "آیا مطمئن هستید؟"
|
668 |
|
669 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
670 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:133
|
671 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
672 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:125
|
673 |
msgid "Resources"
|
674 |
msgstr "منابع"
|
675 |
|
676 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
677 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:181
|
678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
679 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:173
|
680 |
msgid "Version Info"
|
681 |
msgstr "اطلاعات نگارش"
|
682 |
|
683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
684 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:218
|
685 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
686 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:210
|
687 |
msgid "Client Info"
|
688 |
msgstr "اطلاعات کاربر"
|
689 |
|
690 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
691 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:244
|
692 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
693 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:236
|
694 |
msgid "Export"
|
695 |
msgstr "برونبری"
|
696 |
|
697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
698 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:282
|
699 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
700 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:274
|
701 |
+
msgid "Data"
|
702 |
+
msgstr "داده"
|
703 |
+
|
704 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:321
|
706 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:118
|
707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:313
|
708 |
msgid "Delete User Agent Types"
|
709 |
msgstr "حذف نوع سیستم عامل کاربر"
|
710 |
|
711 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
712 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:374
|
713 |
msgid "GeoIP Options"
|
714 |
msgstr "تنظیمات GeoIP"
|
715 |
|
716 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:138
|
717 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:143
|
718 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:130
|
719 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:135
|
720 |
msgid "Memory usage in PHP"
|
721 |
msgstr "حافظه استفاده شده در پیاچپی"
|
722 |
|
723 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:142
|
724 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:134
|
725 |
msgid "Byte"
|
726 |
msgstr "بایت"
|
727 |
|
728 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:149
|
729 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:141
|
730 |
#, php-format
|
731 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
732 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_useronline</code>"
|
733 |
|
734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:153
|
735 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:164
|
736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:175
|
737 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
|
738 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:156
|
739 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:167
|
740 |
msgid "Row"
|
741 |
msgstr "ردیف"
|
742 |
|
743 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:154
|
744 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:165
|
745 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:176
|
746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:146
|
747 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:157
|
748 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:168
|
749 |
msgid "Number of rows"
|
750 |
msgstr "تعداد ردیفهای موجود"
|
751 |
|
752 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:160
|
753 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:152
|
754 |
#, php-format
|
755 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
756 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visit</code>"
|
757 |
|
758 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:171
|
759 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:163
|
760 |
#, php-format
|
761 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
762 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</code>"
|
763 |
|
764 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:186
|
765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:178
|
766 |
msgid "WP Statistics Version"
|
767 |
msgstr "نگارش افزونه آماره"
|
768 |
|
769 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:191
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:183
|
771 |
msgid "The WP Statistics version you are running."
|
772 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
773 |
|
774 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:197
|
775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:189
|
776 |
msgid "PHP Version"
|
777 |
msgstr "نگارش PHP"
|
778 |
|
779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:202
|
780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:194
|
781 |
msgid "The PHP version you are running."
|
782 |
msgstr "نگارش PHP در حال اجرای شما."
|
783 |
|
784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:208
|
785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:200
|
786 |
msgid "jQuery Version"
|
787 |
msgstr "نگارش جیکوئری"
|
788 |
|
789 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:213
|
790 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:205
|
791 |
msgid "The jQuery version you are running."
|
792 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
793 |
|
794 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:223
|
795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:215
|
796 |
msgid "Client IP"
|
797 |
msgstr "آیپی کاربر"
|
798 |
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:228
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:220
|
801 |
msgid "The client IP address."
|
802 |
msgstr "آدرس آیپی کاربر."
|
803 |
|
804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:234
|
805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:226
|
806 |
msgid "User Agent"
|
807 |
msgstr "عامل کاربر"
|
808 |
|
809 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
|
810 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:231
|
811 |
msgid "The client user agent string."
|
812 |
msgstr "رشتهی عامل کاربری"
|
813 |
|
814 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:249
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:241
|
816 |
msgid "Export from"
|
817 |
msgstr "برونبری از"
|
818 |
|
819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:254
|
820 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:270
|
821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:292
|
822 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:331
|
823 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:355
|
824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:246
|
825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:262
|
826 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:284
|
827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:323
|
828 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:347
|
829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:236
|
830 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:273
|
831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:289
|
832 |
msgid "Please select."
|
833 |
msgstr "لطفا انتخاب کنید."
|
834 |
|
835 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:259
|
836 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:251
|
837 |
msgid "Select the table for the output file."
|
838 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
839 |
|
840 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:265
|
841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:257
|
842 |
msgid "Export To"
|
843 |
msgstr "برونبری به"
|
844 |
|
845 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:276
|
846 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:268
|
847 |
msgid "Select the output file type."
|
848 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
849 |
|
850 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:277
|
851 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:269
|
852 |
msgid "Start Now!"
|
853 |
msgstr "شروع کن!"
|
854 |
|
855 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:287
|
856 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:279
|
857 |
msgid "Empty Table"
|
858 |
msgstr "خالی کردن جدول"
|
859 |
|
860 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:298
|
861 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:290
|
862 |
msgid "All data table will be lost."
|
863 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
864 |
|
865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:299
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:291
|
867 |
msgid "Clear now!"
|
868 |
msgstr "پاک کن!"
|
869 |
|
870 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:307
|
871 |
+
msgid "Purge records older than"
|
872 |
+
msgstr "پاکسازی رکوردهای قدیمیتر از"
|
873 |
+
|
874 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:313
|
875 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:305
|
876 |
+
msgid ""
|
877 |
+
"Deleted user statistics data older than the selected number of days. "
|
878 |
+
"Minimum value is 30 days."
|
879 |
+
msgstr ""
|
880 |
+
"انتخاب روزهای قبل برای حذف دادههای آماری کاربری. حداقل مقدار 30 روز است."
|
881 |
+
|
882 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:314
|
883 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:306
|
884 |
+
msgid "Purge now!"
|
885 |
+
msgstr "هماکنون پاکسازی کن!"
|
886 |
+
|
887 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:326
|
888 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:318
|
889 |
msgid "Delete Agents"
|
890 |
msgstr "حذف سیستم عاملها"
|
891 |
|
892 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:341
|
893 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:333
|
894 |
msgid "All visitor data will be lost for this agent type."
|
895 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
896 |
|
897 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:342
|
898 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:366
|
899 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:334
|
900 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:358
|
901 |
msgid "Delete now!"
|
902 |
msgstr "پاک کن!"
|
903 |
|
904 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:350
|
905 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:342
|
906 |
msgid "Delete Platforms"
|
907 |
msgstr "حذف سَکوها"
|
908 |
|
909 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:365
|
910 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:357
|
911 |
msgid "All visitor data will be lost for this platform type."
|
912 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
913 |
|
914 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:383
|
915 |
msgid "Update Now!"
|
916 |
msgstr "بهروز رسانی کن!"
|
917 |
|
918 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:384
|
919 |
msgid "Get updates for the location and the countries, this may take a while"
|
920 |
msgstr ""
|
921 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
922 |
|
923 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
|
924 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
|
925 |
+
#, php-format
|
926 |
+
msgid ""
|
927 |
+
"<code>%s</code> data older than <code>%s</code> days purged successfully."
|
928 |
+
msgstr ""
|
929 |
+
"دادههای جدول <code>%s</code> قدیمیتر از <code>%s</code> روز با موفقیت "
|
930 |
+
"پاکسازی شد."
|
931 |
+
|
932 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
|
933 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
|
934 |
+
#, php-format
|
935 |
+
msgid "No records found to purge from <code>%s</code>!"
|
936 |
+
msgstr "رکوردی در جدول <code>%s</code> یافت نشد!"
|
937 |
+
|
938 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:35
|
939 |
+
msgid "Please select a value over 30 days."
|
940 |
+
msgstr "لطفاً مقدار بیشتر از 30 روز انتخاب کنید."
|
941 |
+
|
942 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
943 |
+
msgid ""
|
944 |
+
"This will permanently delete data from the database each day, are you sure "
|
945 |
+
"you want to enable this option?"
|
946 |
+
msgstr ""
|
947 |
+
"این درخواست دادههای قدیمی را برای همیشه پاک میکند. برای فعال سازی آن مطمئن "
|
948 |
+
"هستید؟"
|
949 |
+
|
950 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
951 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:30
|
952 |
msgid "General Settings"
|
953 |
msgstr "تنظیمات عمومی"
|
954 |
|
955 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
956 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
|
957 |
msgid "Admin Levels"
|
958 |
msgstr "سطح مدیریت"
|
959 |
|
960 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
961 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
|
962 |
msgid "Exclude User Roles"
|
963 |
msgstr "محرومکردن نقشهای کاربری"
|
964 |
|
965 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
966 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:194
|
967 |
msgid "IP/Robot Exclusions"
|
968 |
msgstr "محرومیتهای آیپی/ربات"
|
969 |
|
970 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
971 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:226
|
972 |
msgid "Charts"
|
973 |
msgstr "نمودار"
|
974 |
|
975 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
976 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:250
|
977 |
msgid "Statistical reporting settings"
|
978 |
msgstr "تنظیمات گزارش آماری"
|
979 |
|
980 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
981 |
msgid "GeoIP"
|
982 |
msgstr "GeoIP"
|
983 |
|
984 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
985 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:412
|
986 |
+
msgid "Database Maintenance"
|
987 |
+
msgstr "تعمیر و نگهداری پایگاهداده"
|
988 |
+
|
989 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:40
|
990 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:52
|
991 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:64
|
992 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
|
993 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
994 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:339
|
995 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:363
|
996 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:397
|
997 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:422
|
998 |
msgid "Active"
|
999 |
msgstr "فعال"
|
1000 |
|
|
|
1001 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:41
|
1002 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:53
|
1003 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:65
|
1004 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:261
|
1005 |
msgid "Enable or disable this feature"
|
1006 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
1007 |
|
1008 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:47
|
1009 |
msgid "Visits"
|
1010 |
msgstr "بازدیدها"
|
1011 |
|
1012 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:71
|
1013 |
msgid "Store entire user agent string"
|
1014 |
msgstr "ذخیره تمامی مرورگرهای کاربر"
|
1015 |
|
1016 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:77
|
1017 |
msgid "Only enabled for debugging"
|
1018 |
msgstr "فعال فقط برای اشکال زدایی"
|
1019 |
|
1020 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:83
|
1021 |
msgid "Check for online users every"
|
1022 |
msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
|
1023 |
|
1024 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:88
|
1025 |
msgid "Second"
|
1026 |
msgstr "ثانیه"
|
1027 |
|
1028 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:89
|
1029 |
#, php-format
|
1030 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
1031 |
msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. فعلا %s ثانیه است"
|
1032 |
|
1033 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:95
|
1034 |
msgid "Show stats in menu bar"
|
1035 |
msgstr "نمایش آمار در منوبار"
|
1036 |
|
1037 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
|
1038 |
msgid "No"
|
1039 |
msgstr "خیر"
|
1040 |
|
1041 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
|
1042 |
msgid "Yes"
|
1043 |
msgstr "بله"
|
1044 |
|
1045 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
|
1046 |
msgid "Show stats in admin menu bar"
|
1047 |
msgstr "نمایش آمار در منوبار مدیریت"
|
1048 |
|
1049 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
1050 |
msgid "Coefficient per visitor"
|
1051 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
1052 |
|
1053 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
|
|
|
1054 |
#, php-format
|
1055 |
+
msgid "For each visit to account for several hits. Currently %s."
|
1056 |
+
msgstr "ضریب محاسبه هر بازدید کننده را در آمار مشخص میکند. درحال حاضر %s است."
|
1057 |
|
1058 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
|
1059 |
#, php-format
|
1060 |
msgid ""
|
1061 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1062 |
"levels."
|
1063 |
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
1064 |
|
1065 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:122
|
1066 |
msgid ""
|
1067 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
1068 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1071 |
"نکته: manage_network = سوپر مدیر، manage_options = مدیر، edit_others_posts = "
|
1072 |
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
1073 |
|
1074 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:123
|
1075 |
msgid ""
|
1076 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1077 |
"configuration. So for example selecting publish_posts grants the right to "
|
1080 |
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
1081 |
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
1082 |
|
1083 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:124
|
1084 |
#, php-format
|
1085 |
msgid ""
|
1086 |
"If you need a more robust solution to delegate access you might want to look "
|
1089 |
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1090 |
"به افزونه %s بیندازید."
|
1091 |
|
1092 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:155
|
1093 |
msgid "Required user level to view WP Statistics"
|
1094 |
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
1095 |
|
1096 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
|
1097 |
msgid "Required user level to manage WP Statistics"
|
1098 |
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
1099 |
|
1100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:187
|
1101 |
msgid "Exclude"
|
1102 |
msgstr "محروم"
|
1103 |
|
1104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:188
|
1105 |
+
#, php-format
|
1106 |
+
msgid "Exclude %s role from data collection."
|
1107 |
+
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
1108 |
+
|
1109 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:198
|
1110 |
msgid "Robot List"
|
1111 |
msgstr "لیست روباتها"
|
1112 |
|
1113 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:210
|
1114 |
msgid ""
|
1115 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1116 |
"must be at least 4 characters long or they will be ignored."
|
1118 |
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
1119 |
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
1120 |
|
1121 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:211
|
1122 |
msgid "Reset to Default"
|
1123 |
msgstr "بازگشت به حالت پیشفرض"
|
1124 |
|
1125 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:215
|
1126 |
msgid "Excluded IP Address List"
|
1127 |
msgstr "لیست آدرس آیپیهای محروم"
|
1128 |
|
1129 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:218
|
1130 |
msgid ""
|
1131 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1132 |
"from statistics collection (both 192.168.0.0/24 and "
|
1138 |
"هر خط یکی را اضافه کنید.) برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet "
|
1139 |
"Mask را اضافه کنید."
|
1140 |
|
1141 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:219
|
1142 |
msgid "Add 10.0.0.0"
|
1143 |
msgstr "افزودن 10.0.0.0"
|
1144 |
|
1145 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:220
|
1146 |
msgid "Add 172.16.0.0"
|
1147 |
msgstr "افزودن 172.16.0.0"
|
1148 |
|
1149 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
1150 |
msgid "Add 192.168.0.0"
|
1151 |
msgstr "افزودن 192.168.0.0"
|
1152 |
|
1153 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:231
|
1154 |
msgid "Chart type"
|
1155 |
msgstr "نوع نمودار"
|
1156 |
|
1157 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:237
|
1158 |
msgid "Line"
|
1159 |
msgstr "خطی"
|
1160 |
|
1161 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:238
|
1162 |
msgid "Spline"
|
1163 |
msgstr "نوار باریک"
|
1164 |
|
1165 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:239
|
1166 |
msgid "Area"
|
1167 |
msgstr "خطی توپُر"
|
1168 |
|
1169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:240
|
1170 |
msgid "Area Spline"
|
1171 |
msgstr "نوار توپُر"
|
1172 |
|
1173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:241
|
1174 |
msgid "Column"
|
1175 |
msgstr "ستونی"
|
1176 |
|
1177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:242
|
1178 |
msgid "Bar"
|
1179 |
msgstr "شِمشی"
|
1180 |
|
1181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:243
|
1182 |
msgid "Scatter"
|
1183 |
msgstr "پراکنده"
|
1184 |
|
1185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:245
|
1186 |
msgid "Chart type in view stats."
|
1187 |
msgstr "نوع نمودار در نمایش آمار."
|
1188 |
|
1189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:268
|
1190 |
msgid "Time send"
|
1191 |
msgstr "زمان ارسال"
|
1192 |
|
1193 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:274
|
1194 |
msgid "Hourly"
|
1195 |
msgstr "هرساعت"
|
1196 |
|
1197 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:275
|
1198 |
msgid "Twice daily"
|
1199 |
msgstr "2 بار در روز"
|
1200 |
|
1201 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
1202 |
msgid "daily"
|
1203 |
msgstr "روزانه"
|
1204 |
|
1205 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:278
|
1206 |
msgid "Select when receiving statistics report."
|
1207 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1208 |
|
1209 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:284
|
1210 |
msgid "Send Statistical reporting to"
|
1211 |
msgstr "ارسال گزارش آمار به"
|
1212 |
|
1213 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:290
|
1214 |
msgid "Email"
|
1215 |
msgstr "پست الکترونیک"
|
1216 |
|
1217 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:291
|
1218 |
msgid "SMS"
|
1219 |
msgstr "پیامک"
|
1220 |
|
1221 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:293
|
1222 |
msgid "Type Select Get Status Report."
|
1223 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1224 |
|
1225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:296
|
1226 |
#, php-format
|
1227 |
msgid ""
|
1228 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1231 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1232 |
"وردپرس</a> را نصب کنید."
|
1233 |
|
1234 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:303
|
1235 |
msgid "Send Content Report"
|
1236 |
msgstr "محتوای ارسال گزارش"
|
1237 |
|
1238 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:308
|
1239 |
msgid "Enter the contents of the reports received."
|
1240 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1241 |
|
1242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:310
|
1243 |
msgid "Input data:"
|
1244 |
msgstr "دادههای ورودی:"
|
1245 |
|
1246 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:323
|
1247 |
msgid "GeoIP settings"
|
1248 |
msgstr "تنظیمات GeoIP"
|
1249 |
|
1250 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:334
|
1251 |
msgid "GeoIP collection"
|
1252 |
msgstr "مجموعه GeoIP"
|
1253 |
|
1254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:340
|
1255 |
msgid ""
|
1256 |
"For get more information and location (country) from visitor, enable this "
|
1257 |
"feature."
|
1259 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1260 |
"کنید."
|
1261 |
|
1262 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:346
|
1263 |
msgid "Update GeoIP Info"
|
1264 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1265 |
|
1266 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:351
|
1267 |
msgid "Download GeoIP Database"
|
1268 |
msgstr "دریافت پایگاهداده GeoIP"
|
1269 |
|
1270 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:352
|
1271 |
msgid "Save changes on this page to download the update."
|
1272 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1273 |
|
1274 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:358
|
1275 |
msgid "Schedule monthly update of GeoIP DB"
|
1276 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1277 |
|
1278 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:366
|
1279 |
msgid "Next update will be"
|
1280 |
msgstr "بهروز رسانی بعدی خواهد بود"
|
1281 |
|
1282 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:385
|
1283 |
msgid ""
|
1284 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1285 |
"Tuesday of the month."
|
1286 |
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1287 |
|
1288 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:386
|
1289 |
msgid ""
|
1290 |
"This option will also download the database if the local filesize is less "
|
1291 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1294 |
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1295 |
"دادههای همراه افزونه است)."
|
1296 |
|
1297 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:392
|
1298 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1299 |
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1300 |
|
1301 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:398
|
1302 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1303 |
msgstr ""
|
1304 |
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1305 |
|
1306 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:406
|
1307 |
#, php-format
|
1308 |
msgid ""
|
1309 |
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1312 |
"مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
|
1313 |
"بودن نسخه PHP شما، غیرفعال است"
|
1314 |
|
1315 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:417
|
1316 |
+
msgid "Run a daily WP Cron job to prune the databases"
|
1317 |
+
msgstr "اجرای روزانه یک زمانبندی برای هرس کردن پایگاهداده."
|
1318 |
+
|
1319 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:423
|
1320 |
+
msgid ""
|
1321 |
+
"A WP Cron job will be run daily to prune any data older than a set number of "
|
1322 |
+
"days."
|
1323 |
+
msgstr ""
|
1324 |
+
"وظیفه آن اجرای روزانه برای حذف دادههایی که بیشتر از زمان انتخاب شده نگهداری "
|
1325 |
+
"شده اند."
|
1326 |
+
|
1327 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:429
|
1328 |
+
msgid "Prune data older than"
|
1329 |
+
msgstr "دادههای قدیمیتر از"
|
1330 |
+
|
1331 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:434
|
1332 |
+
msgid "Days"
|
1333 |
+
msgstr "روز"
|
1334 |
+
|
1335 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:435
|
1336 |
+
msgid ""
|
1337 |
+
"The number of days to keep statistics for. Minimum value is 30 days. "
|
1338 |
+
"Invalid values will disable the daily maintenance."
|
1339 |
+
msgstr ""
|
1340 |
+
"تعداد روزها برای حفظ آمار. حداقل مقدار 30 روز است. مقدارهای نامعتبر روزانه "
|
1341 |
+
"غیرفعال میشوند."
|
1342 |
+
|
1343 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1344 |
msgid "Name"
|
1345 |
msgstr "نام"
|
1364 |
msgid "Persian"
|
1365 |
msgstr "شمسی (فارسی)"
|
1366 |
|
1367 |
+
#~ msgid "Empty"
|
1368 |
+
#~ msgstr "خالی کردن"
|
1369 |
+
|
1370 |
#~ msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1371 |
#~ msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
1372 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://iran98.org/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
@@ -162,6 +162,17 @@ The webcrawler detection code has be fixed and will now exclude them from your s
|
|
162 |
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
163 |
|
164 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
= 4.5 =
|
166 |
* Added: Support for more search engines: DuckDuckGo, Baidu and Yandex.
|
167 |
* Added: Support for Google local sites like google.ca, google.fr, etc.
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8
|
7 |
+
Stable tag: 4.6
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
162 |
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
163 |
|
164 |
== Changelog ==
|
165 |
+
= 4.6 =
|
166 |
+
* Added: In the optimization page you can now empty all tables at once.
|
167 |
+
* Added: In the optimization page you can now purge statistics over a given number of days old.
|
168 |
+
* Added: Daily scheduled job to purge statistics over a given number of days old.
|
169 |
+
* Fixed: Bug in the robots code that on new installs failed to populate the defaults in the database.
|
170 |
+
* Fixed: All known warning messages when running in WordPress debug mode.
|
171 |
+
* Fixed: Incorrect description of co-efficient value in the setting page.
|
172 |
+
* Fixed: Top level links on the various stats pages now update highlight the current page in the admin menu instead of the overview page.
|
173 |
+
* Fixed: Install code now only executes on a true new installation instead of on each activation.
|
174 |
+
* Fixed: Bug in hits code when GeoIP was disabled, IP address would not be recorded.
|
175 |
+
|
176 |
= 4.5 =
|
177 |
* Added: Support for more search engines: DuckDuckGo, Baidu and Yandex.
|
178 |
* Added: Support for Google local sites like google.ca, google.fr, etc.
|
schedule.php
CHANGED
@@ -24,6 +24,18 @@
|
|
24 |
wp_unschedule_event(wp_next_scheduled('wp_statistics_geoip_hook'), 'wp_statistics_geoip_hook');
|
25 |
}
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
function wp_statistics_geoip_event() {
|
28 |
|
29 |
// Maxmind updates the geoip database on the first Tuesday of the month, to make sure we don't update before they post
|
@@ -46,6 +58,27 @@
|
|
46 |
}
|
47 |
add_action('wp_statistics_geoip_hook', 'wp_statistics_geoip_event');
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
function wp_statistics_send_report() {
|
51 |
|
24 |
wp_unschedule_event(wp_next_scheduled('wp_statistics_geoip_hook'), 'wp_statistics_geoip_hook');
|
25 |
}
|
26 |
|
27 |
+
// Add the GeoIP update schedule if it doesn't exist and it should be.
|
28 |
+
if( !wp_next_scheduled('wp_statistics_dbmaint_hook') && get_option('wps_schedule_dbmaint') ) {
|
29 |
+
|
30 |
+
wp_schedule_event(time(), 'daily', 'wp_statistics_dbmaint_hook');
|
31 |
+
}
|
32 |
+
|
33 |
+
// Remove the GeoIP update schedule if it does exist and it should shouldn't.
|
34 |
+
if( wp_next_scheduled('wp_statistics_dbmaint_hook') && (!get_option('wps_schedule_dbmaint') ) ) {
|
35 |
+
|
36 |
+
wp_unschedule_event(wp_next_scheduled('wp_statistics_dbmaint_hook'), 'wp_statistics_dbmaint_hook');
|
37 |
+
}
|
38 |
+
|
39 |
function wp_statistics_geoip_event() {
|
40 |
|
41 |
// Maxmind updates the geoip database on the first Tuesday of the month, to make sure we don't update before they post
|
58 |
}
|
59 |
add_action('wp_statistics_geoip_hook', 'wp_statistics_geoip_event');
|
60 |
|
61 |
+
|
62 |
+
function wp_statistics_dbmaint_event() {
|
63 |
+
|
64 |
+
global $wpdb;
|
65 |
+
|
66 |
+
$purge_days = intval( get_option('wps_schedule_dbmaint_days', FALSE) );
|
67 |
+
|
68 |
+
if( $purge_days > 30 ) {
|
69 |
+
|
70 |
+
$table_name = $wpdb->prefix . 'statistics_visit';
|
71 |
+
$date_string = date( 'Y-m-d', strtotime( '-' . $purge_days . ' days'));
|
72 |
+
|
73 |
+
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
74 |
+
|
75 |
+
$table_name = $wpdb->prefix . 'statistics_visitor';
|
76 |
+
|
77 |
+
$result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
|
78 |
+
}
|
79 |
+
}
|
80 |
+
add_action('wp_statistics_dbmaint_hook', 'wp_statistics_dbmaint_event');
|
81 |
+
|
82 |
|
83 |
function wp_statistics_send_report() {
|
84 |
|
styles/log.css
CHANGED
@@ -126,16 +126,15 @@
|
|
126 |
margin: 0 auto;
|
127 |
width: 100%;
|
128 |
}
|
129 |
-
#platform-log{
|
130 |
direction: ltr;
|
131 |
}
|
132 |
-
#visits-stats{
|
133 |
-
|
134 |
}
|
135 |
-
#search-stats{
|
136 |
-
|
137 |
}
|
138 |
-
|
139 |
#about-links {
|
140 |
margin: 0 0 10px;
|
141 |
}
|
@@ -147,14 +146,14 @@
|
|
147 |
#about-links a {
|
148 |
}
|
149 |
#donate-button {
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
}
|
155 |
-
.
|
|
|
156 |
}
|
157 |
-
.
|
158 |
-
|
159 |
-
width: 120px;
|
160 |
}
|
126 |
margin: 0 auto;
|
127 |
width: 100%;
|
128 |
}
|
129 |
+
#platform-log {
|
130 |
direction: ltr;
|
131 |
}
|
132 |
+
#visits-stats {
|
133 |
+
direction: ltr;
|
134 |
}
|
135 |
+
#search-stats {
|
136 |
+
direction: ltr;
|
137 |
}
|
|
|
138 |
#about-links {
|
139 |
margin: 0 0 10px;
|
140 |
}
|
146 |
#about-links a {
|
147 |
}
|
148 |
#donate-button {
|
149 |
+
float: left;
|
150 |
+
padding: 7px 0 0;
|
151 |
+
text-align: center;
|
152 |
+
width: 100%;
|
153 |
}
|
154 |
+
.left-div {
|
155 |
+
float: left;
|
156 |
}
|
157 |
+
.right-div {
|
158 |
+
float: right;
|
|
|
159 |
}
|
styles/rtl.css
CHANGED
@@ -1,15 +1,14 @@
|
|
1 |
#left-log {
|
2 |
margin: 0 1% 0 0;
|
3 |
}
|
4 |
-
.td-align{
|
5 |
-
|
6 |
}
|
7 |
-
#donate-button{
|
8 |
-
float: left;
|
9 |
}
|
10 |
-
.log-referred{
|
11 |
-
|
12 |
-
}
|
13 |
-
.log-ip{
|
14 |
-
float: left;
|
15 |
}
|
|
|
|
|
|
1 |
#left-log {
|
2 |
margin: 0 1% 0 0;
|
3 |
}
|
4 |
+
.td-align {
|
5 |
+
text-align: right;
|
6 |
}
|
7 |
+
#donate-button {
|
|
|
8 |
}
|
9 |
+
.log-referred {
|
10 |
+
float: right;
|
|
|
|
|
|
|
11 |
}
|
12 |
+
.log-ip {
|
13 |
+
float: left;
|
14 |
+
}
|
upgrade.php
CHANGED
@@ -1,73 +1,68 @@
|
|
1 |
<?php
|
2 |
if( is_admin() ) {
|
3 |
|
4 |
-
$
|
5 |
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
)
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
`last_counter` date NOT NULL,
|
33 |
-
`referred` text NOT NULL,
|
34 |
-
`agent` varchar(255) NOT NULL,
|
35 |
-
`platform` varchar(255),
|
36 |
-
`version` varchar(255),
|
37 |
-
`UAString` varchar(255),
|
38 |
-
`ip` varchar(20) NOT NULL,
|
39 |
-
`location` varchar(10),
|
40 |
-
PRIMARY KEY (`ID`),
|
41 |
-
KEY `agent` (`agent`),
|
42 |
-
KEY `platform` (`platform`),
|
43 |
-
KEY `version` (`version`),
|
44 |
-
KEY `location` (`location`)
|
45 |
-
) CHARSET=utf8");
|
46 |
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
|
62 |
-
|
63 |
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
}
|
72 |
}
|
73 |
?>
|
1 |
<?php
|
2 |
if( is_admin() ) {
|
3 |
|
4 |
+
global $wp_statistics_db_version, $table_prefix;
|
5 |
|
6 |
+
$create_useronline_table = ("CREATE TABLE {$table_prefix}statistics_useronline (
|
7 |
+
`ID` int(11) NOT NULL AUTO_INCREMENT,
|
8 |
+
`ip` varchar(20) NOT NULL,
|
9 |
+
`timestamp` int(10) NOT NULL,
|
10 |
+
`date` datetime NOT NULL,
|
11 |
+
`referred` text CHARACTER SET utf8 NOT NULL,
|
12 |
+
`agent` varchar(255) NOT NULL,
|
13 |
+
`platform` varchar(255),
|
14 |
+
`version` varchar(255),
|
15 |
+
PRIMARY KEY (`ID`)
|
16 |
+
) CHARSET=utf8");
|
17 |
|
18 |
+
$create_visit_table = ("CREATE TABLE {$table_prefix}statistics_visit (
|
19 |
+
`ID` int(11) NOT NULL AUTO_INCREMENT,
|
20 |
+
`last_visit` datetime NOT NULL,
|
21 |
+
`last_counter` date NOT NULL,
|
22 |
+
`visit` int(10) NOT NULL,
|
23 |
+
PRIMARY KEY (`ID`)
|
24 |
+
) CHARSET=utf8");
|
25 |
+
|
26 |
+
$create_visitor_table = ("CREATE TABLE {$table_prefix}statistics_visitor (
|
27 |
+
`ID` int(11) NOT NULL AUTO_INCREMENT,
|
28 |
+
`last_counter` date NOT NULL,
|
29 |
+
`referred` text NOT NULL,
|
30 |
+
`agent` varchar(255) NOT NULL,
|
31 |
+
`platform` varchar(255),
|
32 |
+
`version` varchar(255),
|
33 |
+
`UAString` varchar(255),
|
34 |
+
`ip` varchar(20) NOT NULL,
|
35 |
+
`location` varchar(10),
|
36 |
+
PRIMARY KEY (`ID`),
|
37 |
+
KEY `agent` (`agent`),
|
38 |
+
KEY `platform` (`platform`),
|
39 |
+
KEY `version` (`version`),
|
40 |
+
KEY `location` (`location`)
|
41 |
+
) CHARSET=utf8");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
44 |
+
|
45 |
+
dbDelta($create_useronline_table);
|
46 |
+
dbDelta($create_visit_table);
|
47 |
+
dbDelta($create_visitor_table);
|
48 |
+
|
49 |
+
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
50 |
+
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
51 |
+
|
52 |
+
$wps_robotslist = get_option('wps_robotlist');
|
53 |
|
54 |
+
if(trim($wps_robotlist) == "") {
|
55 |
+
include_once('robotslist.php');
|
56 |
+
}
|
57 |
|
58 |
+
update_option('wps_robotlist', $wps_robotslist);
|
59 |
|
60 |
+
// WP Statistics V4.2 and below automatically exclude the administrator for statistics collection
|
61 |
+
// newer versions allow the option to be set for any role in WordPress, however we should mimic
|
62 |
+
// 4.2 behaviour when we upgrade, so see if the option exists in the database and if not, set it.
|
63 |
+
// This will not work correctly on a WordPress install that has removed the administrator role.
|
64 |
+
// However that seems VERY unlikely.
|
65 |
+
$exclude_admins = get_option('wps_exclude_administrator', '2');
|
66 |
+
if( $exclude_admins == '2' ) { update_option('wps_exclude_administrator', '1'); }
|
|
|
67 |
}
|
68 |
?>
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
|
5 |
Description: Complete statistics for your blog.
|
6 |
-
Version: 4.
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
Text Domain: wp_statistics
|
@@ -15,24 +15,36 @@ License: GPL2
|
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
-
define('WP_STATISTICS_VERSION', '4.
|
19 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0' );
|
20 |
|
21 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
22 |
__('Wordpress Statistics', 'wp_statistics');
|
23 |
__('Complete statistics for your blog.', 'wp_statistics');
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
include_once dirname( __FILE__ ) . '/includes/functions/parse-user-agent.php';
|
30 |
|
31 |
include_once dirname( __FILE__ ) . '/includes/class/statistics.class.php';
|
32 |
include_once dirname( __FILE__ ) . '/includes/class/useronline.class.php';
|
33 |
|
34 |
-
include_once dirname( __FILE__ ) . '/upgrade.php';
|
35 |
-
|
36 |
if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
|
37 |
include_once dirname( __FILE__ ) . '/includes/class/hits.geoip.class.php';
|
38 |
} else {
|
@@ -196,6 +208,8 @@ License: GPL2
|
|
196 |
register_setting('wps_settings', 'wps_manage_capability');
|
197 |
register_setting('wps_settings', 'wps_schedule_geoip');
|
198 |
register_setting('wps_settings', 'wps_auto_pop');
|
|
|
|
|
199 |
|
200 |
$role_list = $wp_roles->get_names();
|
201 |
|
@@ -250,7 +264,7 @@ License: GPL2
|
|
250 |
|
251 |
function wp_statistics_log( $log_type = "" ) {
|
252 |
|
253 |
-
if( $log_type == "" )
|
254 |
$log_type = $_GET['type'];
|
255 |
|
256 |
if (!current_user_can(wp_statistics_validate_capability(get_option('wps_read_capability', 'manage_option')))) {
|
@@ -285,18 +299,26 @@ License: GPL2
|
|
285 |
|
286 |
if( $log_type == 'last-all-search' ) {
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
$total = $search_result[$referred];
|
291 |
-
} else {
|
292 |
-
$total = $search_result['All'];
|
293 |
}
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
include_once dirname( __FILE__ ) . '/includes/log/last-search.php';
|
296 |
|
297 |
} else if( $log_type == 'last-all-visitor' ) {
|
298 |
|
299 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
if( $agent ) {
|
301 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `agent` LIKE '%{$agent}%'");
|
302 |
} else {
|
@@ -307,9 +329,15 @@ License: GPL2
|
|
307 |
|
308 |
} else if( $log_type == 'top-referring-site' ) {
|
309 |
|
310 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
if( $referr ) {
|
312 |
-
$total = $wpdb->query("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%
|
313 |
} else {
|
314 |
$total = $wpdb->query("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE referred <> ''");
|
315 |
}
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
|
5 |
Description: Complete statistics for your blog.
|
6 |
+
Version: 4.6
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
Text Domain: wp_statistics
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
+
define('WP_STATISTICS_VERSION', '4.6');
|
19 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0' );
|
20 |
|
21 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
22 |
__('Wordpress Statistics', 'wp_statistics');
|
23 |
__('Complete statistics for your blog.', 'wp_statistics');
|
24 |
+
|
25 |
+
// Check to see if we're installed and are the current version.
|
26 |
+
$WPS_Installed = get_option('wp_statistics_plugin_version');
|
27 |
+
if( $WPS_Installed != WP_STATISTICS_VERSION ) {
|
28 |
+
|
29 |
+
if( $WPS_Installed == false ) {
|
30 |
+
// If this is a new installed (aka wp_statistics_plugin_version doesn't exists, register the activation hook
|
31 |
+
// We don't need to execute this on every activation as the user may have deactivated us at some point and is
|
32 |
+
// just re-activating us.
|
33 |
+
include_once dirname( __FILE__ ) . '/install.php';
|
34 |
+
|
35 |
+
register_activation_hook(__FILE__, 'wp_statistics_install');
|
36 |
+
}
|
37 |
+
else {
|
38 |
+
// If it's an upgrade (aka wp_statistics_plugin_version exists and is some number other than what we're running.
|
39 |
+
include_once dirname( __FILE__ ) . '/upgrade.php';
|
40 |
+
}
|
41 |
+
}
|
42 |
|
43 |
include_once dirname( __FILE__ ) . '/includes/functions/parse-user-agent.php';
|
44 |
|
45 |
include_once dirname( __FILE__ ) . '/includes/class/statistics.class.php';
|
46 |
include_once dirname( __FILE__ ) . '/includes/class/useronline.class.php';
|
47 |
|
|
|
|
|
48 |
if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
|
49 |
include_once dirname( __FILE__ ) . '/includes/class/hits.geoip.class.php';
|
50 |
} else {
|
208 |
register_setting('wps_settings', 'wps_manage_capability');
|
209 |
register_setting('wps_settings', 'wps_schedule_geoip');
|
210 |
register_setting('wps_settings', 'wps_auto_pop');
|
211 |
+
register_setting('wps_settings', 'wps_schedule_dbmaint');
|
212 |
+
register_setting('wps_settings', 'wps_schedule_dbmaint_days');
|
213 |
|
214 |
$role_list = $wp_roles->get_names();
|
215 |
|
264 |
|
265 |
function wp_statistics_log( $log_type = "" ) {
|
266 |
|
267 |
+
if( $log_type == "" && array_key_exists('type', $_GET))
|
268 |
$log_type = $_GET['type'];
|
269 |
|
270 |
if (!current_user_can(wp_statistics_validate_capability(get_option('wps_read_capability', 'manage_option')))) {
|
299 |
|
300 |
if( $log_type == 'last-all-search' ) {
|
301 |
|
302 |
+
if( array_key_exists('referred',$_GET) ) {
|
303 |
+
$referred = $_GET['referred'];
|
|
|
|
|
|
|
304 |
}
|
305 |
+
else {
|
306 |
+
$referred = 'All';
|
307 |
+
}
|
308 |
+
|
309 |
+
$total = $search_result[$referred];
|
310 |
|
311 |
include_once dirname( __FILE__ ) . '/includes/log/last-search.php';
|
312 |
|
313 |
} else if( $log_type == 'last-all-visitor' ) {
|
314 |
|
315 |
+
if( array_key_exists('agent',$_GET) ) {
|
316 |
+
$agent = $_GET['agent'];
|
317 |
+
}
|
318 |
+
else {
|
319 |
+
$agent = false;
|
320 |
+
}
|
321 |
+
|
322 |
if( $agent ) {
|
323 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `agent` LIKE '%{$agent}%'");
|
324 |
} else {
|
329 |
|
330 |
} else if( $log_type == 'top-referring-site' ) {
|
331 |
|
332 |
+
if( array_key_exists('referr',$_GET) ) {
|
333 |
+
$referr = esc_sql( $_GET['referr'] );
|
334 |
+
}
|
335 |
+
else {
|
336 |
+
$referr = '';
|
337 |
+
}
|
338 |
+
|
339 |
if( $referr ) {
|
340 |
+
$total = $wpdb->query("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%" . esc_sql($referr) . "%'");
|
341 |
} else {
|
342 |
$total = $wpdb->query("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE referred <> ''");
|
343 |
}
|