Version Description
- Added: option to set the required capability level to view statistics in the admin interface.
- Added: option to set the required capability level to manage statistics in the admin interface.
- Fixed: 'See More' links on the overview page now update highlight the current page in the admin menu instead of the overview page.
- Added: Schedule downloads of the GeoIP database.
- Added: Auto populate missing GeoIP information after a download of the GeoIP database.
- Fixed: Unschedule of report event if reporting is disabled.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 4.4 |
Comparing to | |
See all releases |
Code changes from version 4.3.1 to 4.4
- includes/functions/geoip-populate.php +28 -0
- includes/log/all-browsers.php +5 -5
- includes/log/log.php +7 -7
- includes/optimization/optimization-geoip.php +13 -31
- includes/optimization/optimization.php +10 -7
- includes/setting/settings.php +91 -18
- install.php +3 -1
- languages/default.mo +0 -0
- languages/default.po +259 -196
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +276 -201
- readme.txt +9 -1
- robotslist.php +81 -0
- schedule.php +44 -1
- upgrade.php +4 -4
- wp-statistics.php +105 -61
includes/functions/geoip-populate.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
include_once( plugin_dir_path( __FILE__ ) . '../../vendor/autoload.php' );
|
3 |
+
use GeoIp2\Database\Reader;
|
4 |
+
|
5 |
+
function wp_statistics_populate_geoip_info() {
|
6 |
+
global $wpdb;
|
7 |
+
|
8 |
+
$result = $wpdb->get_results("SELECT id,ip FROM `{$table_prefix}statistics_visitor` WHERE location = '' or location = '000' or location IS NULL");
|
9 |
+
|
10 |
+
$reader = new Reader( plugin_dir_path( __FILE__ ) . '../../GeoIP2-db/GeoLite2-Country.mmdb' );
|
11 |
+
|
12 |
+
$count = 0;
|
13 |
+
|
14 |
+
foreach( $result as $item ) {
|
15 |
+
$count++;
|
16 |
+
try {
|
17 |
+
$record = $reader->country( $item->ip );
|
18 |
+
$location = $record->country->isoCode;
|
19 |
+
} catch( Exception $e ) {
|
20 |
+
$location = "000";
|
21 |
+
}
|
22 |
+
|
23 |
+
$wpdb->update( $table_prefix . "statistics_visitor", array( 'location' => $location ), array( 'id' => $item->id) );
|
24 |
+
}
|
25 |
+
|
26 |
+
return "<div class='updated settings-error'><p><strong>" . sprintf(__('Updated %s GeoIP records in the visitors database.', 'wp_statistics'), $count) . "</strong></p></div>";
|
27 |
+
}
|
28 |
+
?>
|
includes/log/all-browsers.php
CHANGED
@@ -260,20 +260,20 @@
|
|
260 |
</div>
|
261 |
</div>
|
262 |
|
263 |
-
<?php function BrowserVersionStats($Browser) { ?>
|
264 |
<div class="postbox">
|
265 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
266 |
<h3 class="hndle"><span><?php echo sprintf(__('%s Version', 'wp_statistics'), $Browser); ?></span></h3>
|
267 |
<div class="inside">
|
268 |
<script type="text/javascript">
|
269 |
jQuery(function () {
|
270 |
-
var <?php echo $
|
271 |
jQuery(document).ready(function() {
|
272 |
|
273 |
// Build the chart
|
274 |
-
<?php echo $
|
275 |
chart: {
|
276 |
-
renderTo: 'version-<?php echo $
|
277 |
plotBackgroundColor: null,
|
278 |
plotBorderWidth: null,
|
279 |
plotShadow: false,
|
@@ -346,7 +346,7 @@
|
|
346 |
|
347 |
});
|
348 |
</script>
|
349 |
-
<div class="ltr" id="version-<?php echo $
|
350 |
</div>
|
351 |
</div>
|
352 |
<?php } ?>
|
260 |
</div>
|
261 |
</div>
|
262 |
|
263 |
+
<?php function BrowserVersionStats($Browser) { $Browser_tag = strtolower(str_replace(' ', '_', $Browser)); ?>
|
264 |
<div class="postbox">
|
265 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
266 |
<h3 class="hndle"><span><?php echo sprintf(__('%s Version', 'wp_statistics'), $Browser); ?></span></h3>
|
267 |
<div class="inside">
|
268 |
<script type="text/javascript">
|
269 |
jQuery(function () {
|
270 |
+
var <?php echo $Browser_tag;?>_chart;
|
271 |
jQuery(document).ready(function() {
|
272 |
|
273 |
// Build the chart
|
274 |
+
<?php echo $Browser_tag;?>_chart = new Highcharts.Chart({
|
275 |
chart: {
|
276 |
+
renderTo: 'version-<?php echo $Browser_tag;?>-log',
|
277 |
plotBackgroundColor: null,
|
278 |
plotBorderWidth: null,
|
279 |
plotShadow: false,
|
346 |
|
347 |
});
|
348 |
</script>
|
349 |
+
<div class="ltr" id="version-<?php echo $Browser_tag;?>-log"></div>
|
350 |
</div>
|
351 |
</div>
|
352 |
<?php } ?>
|
includes/log/log.php
CHANGED
@@ -110,7 +110,7 @@
|
|
110 |
|
111 |
<div class="postbox">
|
112 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
113 |
-
<h3 class="hndle"><span><?php _e('Browsers', 'wp_statistics'); ?> <a href="?page=
|
114 |
<div class="inside">
|
115 |
<script type="text/javascript">
|
116 |
jQuery(function () {
|
@@ -211,7 +211,7 @@
|
|
211 |
<div class="postbox">
|
212 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
213 |
<h3 class="hndle">
|
214 |
-
<span><?php _e('Top referring sites', 'wp_statistics'); ?></span> <a href="?page=
|
215 |
</h3>
|
216 |
<div class="inside">
|
217 |
<div class="inside">
|
@@ -256,7 +256,7 @@
|
|
256 |
<div class="postbox">
|
257 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
258 |
<h3 class="hndle">
|
259 |
-
<span><?php _e('Top 10 Countries', 'wp_statistics'); ?> <a href="?page=
|
260 |
</h3>
|
261 |
<div class="inside">
|
262 |
<div class="inside">
|
@@ -345,7 +345,7 @@
|
|
345 |
<div class="meta-box-sortables">
|
346 |
<div class="postbox">
|
347 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
348 |
-
<h3 class="hndle"><span><?php _e('Hits Statistical Chart', 'wp_statistics'); ?> <a href="?page=
|
349 |
<div class="inside">
|
350 |
<script type="text/javascript">
|
351 |
var visit_chart;
|
@@ -440,7 +440,7 @@
|
|
440 |
|
441 |
<div class="postbox">
|
442 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
443 |
-
<h3 class="hndle"><span><?php _e('Search Engine Referrers Statistical Chart', 'wp_statistics'); ?> <a href="?page=
|
444 |
<div class="inside">
|
445 |
<script type="text/javascript">
|
446 |
var visit_chart;
|
@@ -547,7 +547,7 @@
|
|
547 |
<div class="postbox">
|
548 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
549 |
<h3 class="hndle">
|
550 |
-
<span><?php _e('Latest search words', 'wp_statistics'); ?> <a href="?page=
|
551 |
</h3>
|
552 |
<div class="inside">
|
553 |
|
@@ -588,7 +588,7 @@
|
|
588 |
<div class="postbox">
|
589 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
590 |
<h3 class="hndle">
|
591 |
-
<span><?php _e('Recent Visitors', 'wp_statistics'); ?> <a href="?page=
|
592 |
</h3>
|
593 |
<div class="inside">
|
594 |
|
110 |
|
111 |
<div class="postbox">
|
112 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
113 |
+
<h3 class="hndle"><span><?php _e('Browsers', 'wp_statistics'); ?> <a href="?page=wps_browsers_menu"><?php _e('(See more)', 'wp_statistics'); ?></a></span></h3>
|
114 |
<div class="inside">
|
115 |
<script type="text/javascript">
|
116 |
jQuery(function () {
|
211 |
<div class="postbox">
|
212 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
213 |
<h3 class="hndle">
|
214 |
+
<span><?php _e('Top referring sites', 'wp_statistics'); ?></span> <a href="?page=wps_referers_menu"><?php _e('(See more)', 'wp_statistics'); ?></a>
|
215 |
</h3>
|
216 |
<div class="inside">
|
217 |
<div class="inside">
|
256 |
<div class="postbox">
|
257 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
258 |
<h3 class="hndle">
|
259 |
+
<span><?php _e('Top 10 Countries', 'wp_statistics'); ?> <a href="?page=wps_countries_menu"><?php _e('(See more)', 'wp_statistics'); ?></a></span>
|
260 |
</h3>
|
261 |
<div class="inside">
|
262 |
<div class="inside">
|
345 |
<div class="meta-box-sortables">
|
346 |
<div class="postbox">
|
347 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
348 |
+
<h3 class="hndle"><span><?php _e('Hits Statistical Chart', 'wp_statistics'); ?> <a href="?page=wps_hits_menu"><?php _e('(See more)', 'wp_statistics'); ?></a></span></h3>
|
349 |
<div class="inside">
|
350 |
<script type="text/javascript">
|
351 |
var visit_chart;
|
440 |
|
441 |
<div class="postbox">
|
442 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
443 |
+
<h3 class="hndle"><span><?php _e('Search Engine Referrers Statistical Chart', 'wp_statistics'); ?> <a href="?page=wps_searches_menu"><?php _e('(See more)', 'wp_statistics'); ?></a></span></h3>
|
444 |
<div class="inside">
|
445 |
<script type="text/javascript">
|
446 |
var visit_chart;
|
547 |
<div class="postbox">
|
548 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
549 |
<h3 class="hndle">
|
550 |
+
<span><?php _e('Latest search words', 'wp_statistics'); ?> <a href="?page=wps_words_menu"><?php _e('(See more)', 'wp_statistics'); ?></a></span>
|
551 |
</h3>
|
552 |
<div class="inside">
|
553 |
|
588 |
<div class="postbox">
|
589 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
590 |
<h3 class="hndle">
|
591 |
+
<span><?php _e('Recent Visitors', 'wp_statistics'); ?> <a href="?page=wps_visitors_menu"><?php _e('(See more)', 'wp_statistics'); ?></a></span>
|
592 |
</h3>
|
593 |
<div class="inside">
|
594 |
|
includes/optimization/optimization-geoip.php
CHANGED
@@ -19,7 +19,8 @@
|
|
19 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
20 |
jQuery("#empty-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
21 |
|
22 |
-
jQuery.post("<?php echo parse_url(plugins_url('empty.php', __FILE__), PHP_URL_PATH ); ?>", {table_name:data['table-name']}
|
|
|
23 |
jQuery("#empty-result").html(result);
|
24 |
jQuery("#empty-table-submit").removeAttr("disabled");
|
25 |
});
|
@@ -44,11 +45,12 @@
|
|
44 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
45 |
jQuery("#delete-agents-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
46 |
|
47 |
-
jQuery.post("<?php echo parse_url(plugins_url('delete-agents.php', __FILE__), PHP_URL_PATH ); ?>", {agent_name:data['agent-name']}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
52 |
});
|
53 |
});
|
54 |
|
@@ -71,7 +73,8 @@
|
|
71 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
72 |
jQuery("#delete-platforms-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
73 |
|
74 |
-
jQuery.post("<?php echo parse_url(plugins_url('delete-platforms.php', __FILE__), PHP_URL_PATH ); ?>", {platform_name:data['platform-name']}
|
|
|
75 |
jQuery("#delete-platforms-result").html(result);
|
76 |
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
77 |
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
@@ -82,31 +85,10 @@
|
|
82 |
});
|
83 |
</script>
|
84 |
<?php
|
85 |
-
require_once( plugin_dir_path( __FILE__ ) . '../../vendor/autoload.php' );
|
86 |
-
use GeoIp2\Database\Reader;
|
87 |
|
88 |
if( $_GET['populate'] == 1 ) {
|
89 |
-
|
90 |
-
|
91 |
-
$result = $wpdb->get_results("SELECT id,ip FROM `{$table_prefix}statistics_visitor` WHERE location = '' or location = '000' or location IS NULL");
|
92 |
-
|
93 |
-
$reader = new Reader( plugin_dir_path( __FILE__ ) . '../../GeoIP2-db/GeoLite2-Country.mmdb' );
|
94 |
-
|
95 |
-
$count = 0;
|
96 |
-
|
97 |
-
foreach( $result as $item ) {
|
98 |
-
$count++;
|
99 |
-
try {
|
100 |
-
$record = $reader->country( $item->ip );
|
101 |
-
$location = $record->country->isoCode;
|
102 |
-
} catch( Exception $e ) {
|
103 |
-
$location = "000";
|
104 |
-
}
|
105 |
-
|
106 |
-
$wpdb->update( $table_prefix . "statistics_visitor", array( 'location' => $location ), array( 'id' => $item->id) );
|
107 |
-
}
|
108 |
-
|
109 |
-
echo "<div class='updated settings-error'><p><strong>" . sprintf(__('%s New records is updated.', 'wp_statistics'), $count) . "</strong></p></div>";
|
110 |
}
|
111 |
?>
|
112 |
<div class="wrap">
|
@@ -351,7 +333,7 @@
|
|
351 |
</th>
|
352 |
|
353 |
<td>
|
354 |
-
<input id="populate-submit" class="button button-primary" type="button" value="<?php _e('
|
355 |
<p class="description"><?php _e('Get updates for the location and the countries, this may take a while', 'wp_statistics'); ?></p>
|
356 |
</td>
|
357 |
</tr>
|
19 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
20 |
jQuery("#empty-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
21 |
|
22 |
+
jQuery.post("<?php echo parse_url(plugins_url('empty.php', __FILE__), PHP_URL_PATH ); ?>", {table_name:data['table-name']})
|
23 |
+
.done(function(result){
|
24 |
jQuery("#empty-result").html(result);
|
25 |
jQuery("#empty-table-submit").removeAttr("disabled");
|
26 |
});
|
45 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
46 |
jQuery("#delete-agents-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
47 |
|
48 |
+
jQuery.post("<?php echo parse_url(plugins_url('delete-agents.php', __FILE__), PHP_URL_PATH ); ?>", {agent_name:data['agent-name']})
|
49 |
+
.done(function(result){
|
50 |
+
jQuery("#delete-agents-result").html(result);
|
51 |
+
jQuery("#delete-agents-submit").removeAttr("disabled");
|
52 |
+
aid = data['agent-name'].replace(/[^a-zA-Z]/g, "");
|
53 |
+
jQuery("#agent-" + aid + "-id").remove();
|
54 |
});
|
55 |
});
|
56 |
|
73 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
74 |
jQuery("#delete-platforms-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
75 |
|
76 |
+
jQuery.post("<?php echo parse_url(plugins_url('delete-platforms.php', __FILE__), PHP_URL_PATH ); ?>", {platform_name:data['platform-name']})
|
77 |
+
.done(function(result){
|
78 |
jQuery("#delete-platforms-result").html(result);
|
79 |
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
80 |
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
85 |
});
|
86 |
</script>
|
87 |
<?php
|
|
|
|
|
88 |
|
89 |
if( $_GET['populate'] == 1 ) {
|
90 |
+
require_once( plugin_dir_path( __FILE__ ) . '../functions/geoip-populate.php' );
|
91 |
+
echo wp_statistics_populate_geoip_info();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
93 |
?>
|
94 |
<div class="wrap">
|
333 |
</th>
|
334 |
|
335 |
<td>
|
336 |
+
<input id="populate-submit" class="button button-primary" type="button" value="<?php _e('Update Now!', 'wp_statistics'); ?>" name="populate-submit" onclick="location.href=document.URL+'&populate=1'">
|
337 |
<p class="description"><?php _e('Get updates for the location and the countries, this may take a while', 'wp_statistics'); ?></p>
|
338 |
</td>
|
339 |
</tr>
|
includes/optimization/optimization.php
CHANGED
@@ -19,7 +19,8 @@
|
|
19 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
20 |
jQuery("#empty-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
21 |
|
22 |
-
jQuery.post("<?php echo parse_url(plugins_url('empty.php', __FILE__), PHP_URL_PATH ); ?>", {table_name:data['table-name']}
|
|
|
23 |
jQuery("#empty-result").html(result);
|
24 |
jQuery("#empty-table-submit").removeAttr("disabled");
|
25 |
});
|
@@ -44,11 +45,12 @@
|
|
44 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
45 |
jQuery("#delete-agents-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
46 |
|
47 |
-
jQuery.post("<?php echo parse_url(plugins_url('delete-agents.php', __FILE__), PHP_URL_PATH ); ?>", {agent_name:data['agent-name']}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
52 |
});
|
53 |
});
|
54 |
|
@@ -71,7 +73,8 @@
|
|
71 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
72 |
jQuery("#delete-platforms-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
73 |
|
74 |
-
jQuery.post("<?php echo parse_url(plugins_url('delete-platforms.php', __FILE__), PHP_URL_PATH ); ?>", {platform_name:data['platform-name']}
|
|
|
75 |
jQuery("#delete-platforms-result").html(result);
|
76 |
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
77 |
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
19 |
jQuery("#empty-table-submit").attr("disabled", "disabled");
|
20 |
jQuery("#empty-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
21 |
|
22 |
+
jQuery.post("<?php echo parse_url(plugins_url('empty.php', __FILE__), PHP_URL_PATH ); ?>", {table_name:data['table-name']})
|
23 |
+
.done(function(result){
|
24 |
jQuery("#empty-result").html(result);
|
25 |
jQuery("#empty-table-submit").removeAttr("disabled");
|
26 |
});
|
45 |
jQuery("#delete-agents-submit").attr("disabled", "disabled");
|
46 |
jQuery("#delete-agents-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
47 |
|
48 |
+
jQuery.post("<?php echo parse_url(plugins_url('delete-agents.php', __FILE__), PHP_URL_PATH ); ?>", {agent_name:data['agent-name']})
|
49 |
+
.done(function(result){
|
50 |
+
jQuery("#delete-agents-result").html(result);
|
51 |
+
jQuery("#delete-agents-submit").removeAttr("disabled");
|
52 |
+
aid = data['agent-name'].replace(/[^a-zA-Z]/g, "");
|
53 |
+
jQuery("#agent-" + aid + "-id").remove();
|
54 |
});
|
55 |
});
|
56 |
|
73 |
jQuery("#delete-platforms-submit").attr("disabled", "disabled");
|
74 |
jQuery("#delete-platforms-result").html("<img src='<?php echo plugins_url('wp-statistics'); ?>/images/loading.gif'/>");
|
75 |
|
76 |
+
jQuery.post("<?php echo parse_url(plugins_url('delete-platforms.php', __FILE__), PHP_URL_PATH ); ?>", {platform_name:data['platform-name']})
|
77 |
+
.done(function(result){
|
78 |
jQuery("#delete-platforms-result").html(result);
|
79 |
jQuery("#delete-platforms-submit").removeAttr("disabled");
|
80 |
pid = data['platform-name'].replace(/[^a-zA-Z]/g, "");
|
includes/setting/settings.php
CHANGED
@@ -96,18 +96,71 @@
|
|
96 |
|
97 |
<td>
|
98 |
<input type="text" class="small-text code" id="coefficient" name="wps_coefficient" value="<?php echo get_option('wps_coefficient'); ?>"/>
|
99 |
-
<p class="description"><?php echo sprintf(__('
|
100 |
</td>
|
101 |
</tr>
|
102 |
|
103 |
<tr valign="top">
|
104 |
-
<th scope="row" colspan="2"
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
</tr>
|
|
|
106 |
<?php
|
107 |
global $wp_roles;
|
108 |
-
|
109 |
$role_list = $wp_roles->get_names();
|
|
|
|
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
foreach( $role_list as $role ) {
|
112 |
$option_name = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
113 |
?>
|
@@ -130,17 +183,16 @@
|
|
130 |
<td>
|
131 |
<textarea name="wps_robotlist" class="code" dir="ltr" rows="10" cols="60" id="wps_robotlist"><?php
|
132 |
$robotlist = get_option('wps_robotlist');
|
133 |
-
|
134 |
-
|
135 |
-
if( $robotlist == "" )
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
echo $robotlist
|
141 |
-
?></textarea>
|
142 |
<p class="description"><?php echo __('A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored.', 'wp_statistics'); ?></p>
|
143 |
-
<a onclick="var wps_robotlist = getElementById('wps_robotlist'); wps_robotlist.value = '<?php echo implode('\n', $
|
144 |
</td>
|
145 |
</tr>
|
146 |
<tr valign="top">
|
@@ -256,12 +308,8 @@
|
|
256 |
</tr>
|
257 |
|
258 |
<tr valign="top">
|
259 |
-
<th scope="row" colspan=2>
|
260 |
-
IP location services provided by GeoLite2 data created by MaxMind, available from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.
|
261 |
</th>
|
262 |
-
|
263 |
-
<td>
|
264 |
-
</td>
|
265 |
</tr>
|
266 |
|
267 |
<tr valign="top">
|
@@ -289,6 +337,31 @@
|
|
289 |
</td>
|
290 |
</tr>
|
291 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
</tbody>
|
293 |
</table>
|
294 |
<?php submit_button(); ?>
|
96 |
|
97 |
<td>
|
98 |
<input type="text" class="small-text code" id="coefficient" name="wps_coefficient" value="<?php echo get_option('wps_coefficient'); ?>"/>
|
99 |
+
<p class="description"><?php echo sprintf(__('Exclude %s role from data collection.', 'wp_statistics'), $role); ?></p>
|
100 |
</td>
|
101 |
</tr>
|
102 |
|
103 |
<tr valign="top">
|
104 |
+
<th scope="row" colspan="2">
|
105 |
+
<h3><?php _e('Admin Levels', 'wp_statistics'); ?></h3>
|
106 |
+
<p class="description"><?php echo sprintf(__('See the %sWordPress Roles and Capabilities page%s for details on capability levels.', 'wp_statistics'), '<a target=_blank href="http://codex.wordpress.org/Roles_and_Capabilities">', '</a>'); ?></p>
|
107 |
+
<p class="description"><?php echo __('Hint: manage_network = Super Admin, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone.', 'wp_statistics'); ?></p>
|
108 |
+
<p class="description"><?php echo __('Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins.', 'wp_statistics'); ?></p>
|
109 |
+
<p class="description"><?php echo sprintf(__('If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory.', 'wp_statistics'), '<a href="http://wordpress.org/plugins/capability-manager-enhanced/" target=_blank>Capability Manager Enhanced</a>'); ?></p>
|
110 |
+
</th>
|
111 |
</tr>
|
112 |
+
|
113 |
<?php
|
114 |
global $wp_roles;
|
115 |
+
|
116 |
$role_list = $wp_roles->get_names();
|
117 |
+
|
118 |
+
foreach( $wp_roles->roles as $role ) {
|
119 |
|
120 |
+
$cap_list = $role['capabilities'];
|
121 |
+
|
122 |
+
foreach( $cap_list as $key => $cap ) {
|
123 |
+
if( substr($key,0,6) != 'level_' ) {
|
124 |
+
$all_caps[$key] = 1;
|
125 |
+
}
|
126 |
+
}
|
127 |
+
}
|
128 |
+
|
129 |
+
ksort( $all_caps );
|
130 |
+
|
131 |
+
$read_cap = get_option('wps_read_capability','manage_options');
|
132 |
+
|
133 |
+
foreach( $all_caps as $key => $cap ) {
|
134 |
+
if( $key == $read_cap ) { $selected = " SELECTED"; } else { $selected = ""; }
|
135 |
+
$option_list .= "<option value='{$key}'{$selected}>{$key}</option>";
|
136 |
+
}
|
137 |
+
?>
|
138 |
+
<tr valign="top">
|
139 |
+
<th scope="row"><label for="wps_read_capability"><?php _e('Required user level to view WP Statistics', 'wp_statistics')?>:</label></th>
|
140 |
+
<td>
|
141 |
+
<select id="wps_read_capability" name="wps_read_capability"><?php echo $option_list;?></select>
|
142 |
+
</td>
|
143 |
+
</tr>
|
144 |
+
|
145 |
+
<?php
|
146 |
+
$manage_cap = get_option('wps_manage_capability','manage_options');
|
147 |
+
|
148 |
+
foreach( $all_caps as $key => $cap ) {
|
149 |
+
if( $key == $manage_cap ) { $selected = " SELECTED"; } else { $selected = ""; }
|
150 |
+
$option_list .= "<option value='{$key}'{$selected}>{$key}</option>";
|
151 |
+
}
|
152 |
+
?>
|
153 |
+
<tr valign="top">
|
154 |
+
<th scope="row"><label for="wps_manage_capability"><?php _e('Required user level to manage WP Statistics', 'wp_statistics')?>:</label></th>
|
155 |
+
<td>
|
156 |
+
<select id="wps_manage_capability" name="wps_manage_capability"><?php echo $option_list;?></select>
|
157 |
+
</td>
|
158 |
+
</tr>
|
159 |
+
|
160 |
+
<tr valign="top">
|
161 |
+
<th scope="row" colspan="2"><h3><?php _e('Exclude User Roles', 'wp_statistics'); ?></h3></th>
|
162 |
+
</tr>
|
163 |
+
<?php
|
164 |
foreach( $role_list as $role ) {
|
165 |
$option_name = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
166 |
?>
|
183 |
<td>
|
184 |
<textarea name="wps_robotlist" class="code" dir="ltr" rows="10" cols="60" id="wps_robotlist"><?php
|
185 |
$robotlist = get_option('wps_robotlist');
|
186 |
+
|
187 |
+
include_once dirname( __FILE__ ) . '/../../robotslist.php';
|
188 |
+
if( $robotlist == "" ) {
|
189 |
+
$robotlist = $wps_robotlist;
|
190 |
+
update_option( 'wps_robotlist', $robotlist );
|
191 |
+
}
|
192 |
+
|
193 |
+
echo $robotlist;?></textarea>
|
|
|
194 |
<p class="description"><?php echo __('A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored.', 'wp_statistics'); ?></p>
|
195 |
+
<a onclick="var wps_robotlist = getElementById('wps_robotlist'); wps_robotlist.value = '<?php echo implode('\n', $wps_robotarray);?>';" class="button"><?php _e('Reset to Default', 'wp_statistics');?></a>
|
196 |
</td>
|
197 |
</tr>
|
198 |
<tr valign="top">
|
308 |
</tr>
|
309 |
|
310 |
<tr valign="top">
|
311 |
+
<th scope="row" colspan="2">IP location services provided by GeoLite2 data created by MaxMind, available from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.
|
|
|
312 |
</th>
|
|
|
|
|
|
|
313 |
</tr>
|
314 |
|
315 |
<tr valign="top">
|
337 |
</td>
|
338 |
</tr>
|
339 |
|
340 |
+
<tr valign="top">
|
341 |
+
<th scope="row">
|
342 |
+
<label for="geoip-schedule"><?php _e('Schedule monthly update of GeoIP DB', 'wp_statistics'); ?>:</label>
|
343 |
+
</th>
|
344 |
+
|
345 |
+
<td>
|
346 |
+
<input id="geoip-schedule" type="checkbox" name="wps_schedule_geoip" <?php echo get_option('wps_schedule_geoip')==true? "checked='checked'":'';?>>
|
347 |
+
<label for="geoip-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
|
348 |
+
<p class="description"><?php _e('Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month.', 'wp_statistics'); ?></p>
|
349 |
+
<p class="description"><?php _e('This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place).', 'wp_statistics'); ?></p>
|
350 |
+
</td>
|
351 |
+
</tr>
|
352 |
+
|
353 |
+
<tr valign="top">
|
354 |
+
<th scope="row">
|
355 |
+
<label for="geoip-schedule"><?php _e('Populate missing GeoIP after update of GeoIP DB', 'wp_statistics'); ?>:</label>
|
356 |
+
</th>
|
357 |
+
|
358 |
+
<td>
|
359 |
+
<input id="geoip-auto-pop" type="checkbox" name="wps_auto_pop" <?php echo get_option('wps_auto_pop')==true? "checked='checked'":'';?>>
|
360 |
+
<label for="geoip-auto-pop"><?php _e('Active', 'wp_statistics'); ?></label>
|
361 |
+
<p class="description"><?php _e('Update any missing GeoIP data after downloading a new database.', 'wp_statistics'); ?></p>
|
362 |
+
</td>
|
363 |
+
</tr>
|
364 |
+
|
365 |
</tbody>
|
366 |
</table>
|
367 |
<?php submit_button(); ?>
|
install.php
CHANGED
@@ -51,6 +51,8 @@
|
|
51 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
52 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
53 |
|
|
|
|
|
54 |
// If this is a first time install or an upgrade and we've added options, set some intelligent defaults.
|
55 |
if( get_option('wps_geoip') === FALSE ) { update_option('wps_geoip',FALSE); }
|
56 |
if( get_option('wps_useronline') === FALSE ) { update_option('wps_useronline',TRUE); }
|
@@ -66,7 +68,7 @@
|
|
66 |
if( get_option('wps_content_report') === FALSE ) { update_option('wps_content_report',''); }
|
67 |
if( get_option('wps_update_geoip') === FALSE ) { update_option('wps_update_geoip',TRUE); }
|
68 |
if( get_option('wps_store_ua') === FALSE ) { update_option('wps_store_ua',FALSE); }
|
69 |
-
if( get_option('wps_robotlist') === FALSE ) { update_option('wps_robotlist'
|
70 |
if( get_option('wps_exclude_administrator') === FALSE ) { update_option('wps_exclude_administrator',TRUE); }
|
71 |
|
72 |
|
51 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
52 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
53 |
|
54 |
+
include_once('robotslist.php');
|
55 |
+
|
56 |
// If this is a first time install or an upgrade and we've added options, set some intelligent defaults.
|
57 |
if( get_option('wps_geoip') === FALSE ) { update_option('wps_geoip',FALSE); }
|
58 |
if( get_option('wps_useronline') === FALSE ) { update_option('wps_useronline',TRUE); }
|
68 |
if( get_option('wps_content_report') === FALSE ) { update_option('wps_content_report',''); }
|
69 |
if( get_option('wps_update_geoip') === FALSE ) { update_option('wps_update_geoip',TRUE); }
|
70 |
if( get_option('wps_store_ua') === FALSE ) { update_option('wps_store_ua',FALSE); }
|
71 |
+
if( get_option('wps_robotlist') === FALSE ) { update_option('wps_robotlist',$wps_robotslist); }
|
72 |
if( get_option('wps_exclude_administrator') === FALSE ) { update_option('wps_exclude_administrator',TRUE); }
|
73 |
|
74 |
|
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-
|
6 |
-
"PO-Revision-Date: 2014-01-
|
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:20
|
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 ""
|
@@ -157,100 +157,105 @@ msgid ""
|
|
157 |
"\">setting page</a> and enable statistics"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
161 |
msgid "Overview"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
166 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
167 |
msgid "Browsers"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
171 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
172 |
msgid "Countries"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
176 |
msgid "Hits"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
180 |
msgid "Referers"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
184 |
msgid "Searches"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
188 |
msgid "Search Words"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
192 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
193 |
msgid "Visitors"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
197 |
msgid "Optimization"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
201 |
msgid "Settings"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
205 |
msgid "Today visitor"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
209 |
msgid "Today visit"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
213 |
msgid "Yesterday visitor"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
217 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
218 |
msgid "Yesterday visit"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
222 |
msgid "View Stats"
|
223 |
msgstr ""
|
224 |
|
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 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
228 |
msgid "You do not have sufficient permissions to access this page."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
232 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
236 |
#, php-format
|
237 |
msgid "Error downloading GeoIP database from: %s"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
241 |
#, php-format
|
242 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
246 |
#, php-format
|
247 |
msgid "Error could not open destination GeoIP database for writing %s"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
251 |
msgid "GeoIP Database updated successfully!"
|
252 |
msgstr ""
|
253 |
|
|
|
|
|
|
|
|
|
|
|
254 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
255 |
msgid "Browser Statistics"
|
256 |
msgstr ""
|
@@ -654,239 +659,234 @@ msgid "<code>%s</code> table data deleted successfully."
|
|
654 |
msgstr ""
|
655 |
|
656 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
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:10
|
660 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
661 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
662 |
msgid "Are you sure?"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
666 |
-
|
667 |
-
msgid "%s New records is updated."
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
|
671 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
672 |
msgid "Resources"
|
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 "Memory usage in PHP"
|
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.php:
|
684 |
msgid "Byte"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
688 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
689 |
#, php-format
|
690 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
691 |
msgstr ""
|
692 |
|
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-geoip.php:
|
695 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
696 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
697 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
698 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
699 |
msgid "Row"
|
700 |
msgstr ""
|
701 |
|
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-geoip.php:
|
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.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 "Number of rows"
|
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 |
#, php-format
|
714 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
719 |
#, php-format
|
720 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
721 |
msgstr ""
|
722 |
|
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.php:
|
725 |
msgid "Version Info"
|
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.php:
|
730 |
msgid "WP Statistics Version"
|
731 |
msgstr ""
|
732 |
|
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 |
msgid "The WP Statistics version you are running."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
739 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
740 |
msgid "PHP Version"
|
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 |
msgid "The PHP version you are running."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
750 |
msgid "jQuery Version"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
754 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
755 |
msgid "The jQuery version you are running."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
759 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
760 |
msgid "Client Info"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
764 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
765 |
msgid "Client IP"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
769 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
770 |
msgid "The client IP address."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
774 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
775 |
msgid "User Agent"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
780 |
msgid "The client user agent string."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
785 |
msgid "Export"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
790 |
msgid "Export from"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
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-geoip.php:
|
796 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
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 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
800 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
801 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
803 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
|
804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:205
|
805 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
|
|
|
|
806 |
msgid "Please select."
|
807 |
msgstr ""
|
808 |
|
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.php:
|
811 |
msgid "Select the table for the output file."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
816 |
msgid "Export To"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
820 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
821 |
msgid "Select the output file type."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
825 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
826 |
msgid "Start Now!"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
831 |
msgid "Empty"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
835 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
836 |
msgid "Empty Table"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
841 |
msgid "All data table will be lost."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
846 |
msgid "Clear now!"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
851 |
msgid "Delete User Agent Types"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
856 |
msgid "Delete Agents"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
860 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
861 |
msgid "All visitor data will be lost for this agent type."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
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.php:
|
867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
868 |
msgid "Delete now!"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
872 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
873 |
msgid "Delete Platforms"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
877 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
878 |
msgid "All visitor data will be lost for this platform type."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
882 |
msgid "GeoIP Options"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
886 |
-
msgid "
|
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 |
|
@@ -898,15 +898,17 @@ msgstr ""
|
|
898 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
899 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
900 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
902 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
903 |
msgid "Active"
|
904 |
msgstr ""
|
905 |
|
906 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
907 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
908 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
910 |
msgid "Enable or disable this feature"
|
911 |
msgstr ""
|
912 |
|
@@ -956,46 +958,82 @@ msgid "Coefficient per visitor"
|
|
956 |
msgstr ""
|
957 |
|
958 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
|
|
|
959 |
#, php-format
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
964 |
-
msgid "
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
968 |
-
|
|
|
|
|
|
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
#, php-format
|
973 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
msgid "IP/Robot Exclusions"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
981 |
msgid "Robot List"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
985 |
msgid ""
|
986 |
"A list of words (one per line) to match against to detect robots. Entries "
|
987 |
"must be at least 4 characters long or they will be ignored."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
991 |
msgid "Reset to Default"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
995 |
msgid "Excluded IP Address List"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
999 |
msgid ""
|
1000 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1001 |
"from statistics collection (both 192.168.0.0/24 and "
|
@@ -1003,147 +1041,172 @@ msgid ""
|
|
1003 |
"only, do not add any subnet value."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1007 |
msgid "Add 10.0.0.0"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1011 |
msgid "Add 172.16.0.0"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1015 |
msgid "Add 192.168.0.0"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1019 |
msgid "Charts"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1023 |
msgid "Chart type"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1027 |
msgid "Line"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1031 |
msgid "Spline"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1035 |
msgid "Area"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1039 |
msgid "Area Spline"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1043 |
msgid "Column"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1047 |
msgid "Bar"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1051 |
msgid "Scatter"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1055 |
msgid "Chart type in view stats."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1059 |
msgid "Statistical reporting settings"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1063 |
msgid "Time send"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1067 |
msgid "Hourly"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1071 |
msgid "Twice daily"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1075 |
msgid "daily"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1079 |
msgid "Select when receiving statistics report."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1083 |
msgid "Send Statistical reporting to"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1087 |
msgid "Email"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1091 |
msgid "SMS"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1095 |
msgid "Type Select Get Status Report."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1099 |
#, php-format
|
1100 |
msgid ""
|
1101 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1102 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1106 |
msgid "Send Content Report"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1110 |
msgid "Enter the contents of the reports received."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1114 |
msgid "Input data:"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1118 |
msgid "GeoIP settings"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1122 |
msgid "GeoIP collection"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1126 |
msgid ""
|
1127 |
"For get more information and location (country) from visitor, enable this "
|
1128 |
"feature."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1132 |
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1136 |
msgid "Update GeoIP Info"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1140 |
msgid "Download GeoIP Database"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1144 |
msgid "Save changes on this page to download the update."
|
1145 |
msgstr ""
|
1146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1148 |
msgid "Name"
|
1149 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-01-16 20:14+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-01-16 20:14+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:75
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:240
|
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:107
|
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:139
|
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:20
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:296
|
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:298
|
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:297
|
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:300
|
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:299
|
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:302
|
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:301
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr ""
|
157 |
"\">setting page</a> and enable statistics"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
|
161 |
msgid "Overview"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
166 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
167 |
msgid "Browsers"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
171 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:332
|
172 |
msgid "Countries"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
|
176 |
msgid "Hits"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
180 |
msgid "Referers"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:116
|
184 |
msgid "Searches"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:117
|
188 |
msgid "Search Words"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
|
192 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
193 |
msgid "Visitors"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:120
|
197 |
msgid "Optimization"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:121
|
201 |
msgid "Settings"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
|
205 |
msgid "Today visitor"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
209 |
msgid "Today visit"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
|
213 |
msgid "Yesterday visitor"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:159
|
217 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
218 |
msgid "Yesterday visit"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:164
|
222 |
msgid "View Stats"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:256
|
226 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:350
|
227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:421
|
228 |
msgid "You do not have sufficient permissions to access this page."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:266
|
232 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
|
236 |
#, php-format
|
237 |
msgid "Error downloading GeoIP database from: %s"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:383
|
241 |
#, php-format
|
242 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:389
|
246 |
#, php-format
|
247 |
msgid "Error could not open destination GeoIP database for writing %s"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:402
|
251 |
msgid "GeoIP Database updated successfully!"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
255 |
+
#, php-format
|
256 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
260 |
msgid "Browser Statistics"
|
261 |
msgstr ""
|
659 |
msgstr ""
|
660 |
|
661 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
662 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:36
|
663 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:64
|
664 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:36
|
666 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:64
|
667 |
msgid "Are you sure?"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:102
|
671 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:95
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "Resources"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:107
|
676 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:112
|
677 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:100
|
678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:105
|
679 |
msgid "Memory usage in PHP"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:111
|
683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:104
|
684 |
msgid "Byte"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:118
|
688 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:111
|
689 |
#, php-format
|
690 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:122
|
694 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:133
|
695 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:144
|
696 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:115
|
697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:126
|
698 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:137
|
699 |
msgid "Row"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:123
|
703 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:134
|
704 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:145
|
705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:116
|
706 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:127
|
707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:138
|
708 |
msgid "Number of rows"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:129
|
712 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:122
|
713 |
#, php-format
|
714 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:140
|
718 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:133
|
719 |
#, php-format
|
720 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:150
|
724 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:143
|
725 |
msgid "Version Info"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:155
|
729 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:148
|
730 |
msgid "WP Statistics Version"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:160
|
734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:153
|
735 |
msgid "The WP Statistics version you are running."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:166
|
739 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:159
|
740 |
msgid "PHP Version"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:171
|
744 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:164
|
745 |
msgid "The PHP version you are running."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:177
|
749 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:170
|
750 |
msgid "jQuery Version"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:182
|
754 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:175
|
755 |
msgid "The jQuery version you are running."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:187
|
759 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:180
|
760 |
msgid "Client Info"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:192
|
764 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:185
|
765 |
msgid "Client IP"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:197
|
769 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:190
|
770 |
msgid "The client IP address."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:203
|
774 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:196
|
775 |
msgid "User Agent"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:208
|
779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:201
|
780 |
msgid "The client user agent string."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:213
|
784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:206
|
785 |
msgid "Export"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:218
|
789 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:211
|
790 |
msgid "Export from"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:223
|
794 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
|
795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:261
|
796 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:284
|
797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:308
|
798 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:216
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:232
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:254
|
801 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:277
|
802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:301
|
|
|
|
|
803 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:258
|
805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:274
|
806 |
msgid "Please select."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:228
|
810 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:221
|
811 |
msgid "Select the table for the output file."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:234
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:227
|
816 |
msgid "Export To"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:245
|
820 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:238
|
821 |
msgid "Select the output file type."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:246
|
825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:239
|
826 |
msgid "Start Now!"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:251
|
830 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:244
|
831 |
msgid "Empty"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:256
|
835 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:249
|
836 |
msgid "Empty Table"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:266
|
840 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:259
|
841 |
msgid "All data table will be lost."
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:267
|
845 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:260
|
846 |
msgid "Clear now!"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:274
|
850 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:267
|
851 |
msgid "Delete User Agent Types"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:279
|
855 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:272
|
856 |
msgid "Delete Agents"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:294
|
860 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:287
|
861 |
msgid "All visitor data will be lost for this agent type."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:295
|
865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:319
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:288
|
867 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:312
|
868 |
msgid "Delete now!"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:303
|
872 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:296
|
873 |
msgid "Delete Platforms"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:318
|
877 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:311
|
878 |
msgid "All visitor data will be lost for this platform type."
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:327
|
882 |
msgid "GeoIP Options"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:336
|
886 |
+
msgid "Update Now!"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:337
|
890 |
msgid "Get updates for the location and the countries, this may take a while"
|
891 |
msgstr ""
|
892 |
|
898 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
899 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
900 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:245
|
902 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:323
|
903 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:348
|
904 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:361
|
905 |
msgid "Active"
|
906 |
msgstr ""
|
907 |
|
908 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
909 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
910 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
911 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:246
|
912 |
msgid "Enable or disable this feature"
|
913 |
msgstr ""
|
914 |
|
958 |
msgstr ""
|
959 |
|
960 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
|
961 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
|
962 |
#, php-format
|
963 |
+
msgid "Exclude %s role from data collection."
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
|
967 |
+
msgid "Admin Levels"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:106
|
971 |
+
#, php-format
|
972 |
+
msgid ""
|
973 |
+
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
974 |
+
"levels."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:107
|
978 |
+
msgid ""
|
979 |
+
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
980 |
+
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
981 |
+
"Contributor, read = Everyone."
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
|
985 |
+
msgid ""
|
986 |
+
"Each of the above casscades the rights upwards in the default WordPress "
|
987 |
+
"configuration. So for example selecting publish_posts grants the right to "
|
988 |
+
"Authors, Editors, Admins and Super Admins."
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
992 |
#, php-format
|
993 |
+
msgid ""
|
994 |
+
"If you need a more robust solution to delegate access you might want to look "
|
995 |
+
"at %s in the WordPress plugin directory."
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
|
999 |
+
msgid "Required user level to view WP Statistics"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:154
|
1003 |
+
msgid "Required user level to manage WP Statistics"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
|
1007 |
+
msgid "Exclude User Roles"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
1011 |
+
msgid "Exclude"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:178
|
1015 |
msgid "IP/Robot Exclusions"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:182
|
1019 |
msgid "Robot List"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:195
|
1023 |
msgid ""
|
1024 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1025 |
"must be at least 4 characters long or they will be ignored."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:196
|
1029 |
msgid "Reset to Default"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:200
|
1033 |
msgid "Excluded IP Address List"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:203
|
1037 |
msgid ""
|
1038 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1039 |
"from statistics collection (both 192.168.0.0/24 and "
|
1041 |
"only, do not add any subnet value."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:204
|
1045 |
msgid "Add 10.0.0.0"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:205
|
1049 |
msgid "Add 172.16.0.0"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:206
|
1053 |
msgid "Add 192.168.0.0"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:211
|
1057 |
msgid "Charts"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:216
|
1061 |
msgid "Chart type"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:222
|
1065 |
msgid "Line"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
1069 |
msgid "Spline"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:224
|
1073 |
msgid "Area"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:225
|
1077 |
msgid "Area Spline"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:226
|
1081 |
msgid "Column"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:227
|
1085 |
msgid "Bar"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:228
|
1089 |
msgid "Scatter"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:230
|
1093 |
msgid "Chart type in view stats."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:235
|
1097 |
msgid "Statistical reporting settings"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:253
|
1101 |
msgid "Time send"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:259
|
1105 |
msgid "Hourly"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
1109 |
msgid "Twice daily"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:261
|
1113 |
msgid "daily"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:263
|
1117 |
msgid "Select when receiving statistics report."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:269
|
1121 |
msgid "Send Statistical reporting to"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:275
|
1125 |
msgid "Email"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
1129 |
msgid "SMS"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:278
|
1133 |
msgid "Type Select Get Status Report."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:281
|
1137 |
#, php-format
|
1138 |
msgid ""
|
1139 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1140 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:288
|
1144 |
msgid "Send Content Report"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:293
|
1148 |
msgid "Enter the contents of the reports received."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:295
|
1152 |
msgid "Input data:"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:308
|
1156 |
msgid "GeoIP settings"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:318
|
1160 |
msgid "GeoIP collection"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:324
|
1164 |
msgid ""
|
1165 |
"For get more information and location (country) from visitor, enable this "
|
1166 |
"feature."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:325
|
1170 |
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:331
|
1174 |
msgid "Update GeoIP Info"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:336
|
1178 |
msgid "Download GeoIP Database"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:337
|
1182 |
msgid "Save changes on this page to download the update."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:343
|
1186 |
+
msgid "Schedule monthly update of GeoIP DB"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:349
|
1190 |
+
msgid ""
|
1191 |
+
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1192 |
+
"Tuesday of the month."
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:350
|
1196 |
+
msgid ""
|
1197 |
+
"This option will also download the database if the local filesize is less "
|
1198 |
+
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1199 |
+
"place)."
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:356
|
1203 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:362
|
1207 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1211 |
msgid "Name"
|
1212 |
msgstr ""
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-01-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: <mat404@gmail.com>\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:20
|
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 "کل بازدیدکنندهگان"
|
@@ -159,100 +159,105 @@ 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:113
|
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:44
|
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 |
|
|
|
|
|
|
|
|
|
|
|
256 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
257 |
msgid "Browser Statistics"
|
258 |
msgstr "آمار مرورگرها"
|
@@ -656,239 +661,234 @@ msgid "<code>%s</code> table data deleted successfully."
|
|
656 |
msgstr "دادههای جدول <code>%s</code> با موفقیت حذف شد."
|
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:
|
660 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
661 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
662 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
663 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
664 |
msgid "Are you sure?"
|
665 |
msgstr "آیا مطمئن هستید؟"
|
666 |
|
667 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
668 |
-
|
669 |
-
msgid "%s New records is updated."
|
670 |
-
msgstr "%s رکورد جدید بهروز شد."
|
671 |
-
|
672 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
|
673 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
674 |
msgid "Resources"
|
675 |
msgstr "منابع"
|
676 |
|
677 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
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.php:
|
680 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
681 |
msgid "Memory usage in PHP"
|
682 |
msgstr "حافظه استفاده شده در پیاچپی"
|
683 |
|
684 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
685 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
686 |
msgid "Byte"
|
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.php:
|
691 |
#, php-format
|
692 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
693 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_useronline</code>"
|
694 |
|
695 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
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 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
699 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
700 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
701 |
msgid "Row"
|
702 |
msgstr "ردیف"
|
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-geoip.php:
|
707 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
708 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
709 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
710 |
msgid "Number of rows"
|
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_visit</code> table"
|
717 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visit</code>"
|
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.php:
|
721 |
#, php-format
|
722 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
723 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</code>"
|
724 |
|
725 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
726 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
727 |
msgid "Version Info"
|
728 |
msgstr "اطلاعات نگارش"
|
729 |
|
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 |
msgid "WP Statistics Version"
|
733 |
msgstr "نگارش افزونه آماره"
|
734 |
|
735 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
737 |
msgid "The WP Statistics version you are running."
|
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 |
msgid "PHP Version"
|
743 |
msgstr "نگارش PHP"
|
744 |
|
745 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
747 |
msgid "The PHP version you are running."
|
748 |
msgstr "نگارش PHP در حال اجرای شما."
|
749 |
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
751 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
752 |
msgid "jQuery Version"
|
753 |
msgstr "نگارش جیکوئری"
|
754 |
|
755 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
756 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
757 |
msgid "The jQuery version you are running."
|
758 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
759 |
|
760 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
761 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
762 |
msgid "Client Info"
|
763 |
msgstr "اطلاعات کاربر"
|
764 |
|
765 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
766 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
767 |
msgid "Client IP"
|
768 |
msgstr "آیپی کاربر"
|
769 |
|
770 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
771 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
772 |
msgid "The client IP address."
|
773 |
msgstr "آدرس آیپی کاربر."
|
774 |
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
776 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
777 |
msgid "User Agent"
|
778 |
msgstr "عامل کاربر"
|
779 |
|
780 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
781 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
782 |
msgid "The client user agent string."
|
783 |
msgstr "رشتهی عامل کاربری"
|
784 |
|
785 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
786 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
787 |
msgid "Export"
|
788 |
msgstr "برونبری"
|
789 |
|
790 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
792 |
msgid "Export from"
|
793 |
msgstr "برونبری از"
|
794 |
|
795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
796 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
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-geoip.php:
|
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 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
803 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
805 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
806 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
807 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
808 |
msgid "Please select."
|
809 |
msgstr "لطفا انتخاب کنید."
|
810 |
|
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 |
msgid "Select the table for the output file."
|
814 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
815 |
|
816 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
817 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
818 |
msgid "Export To"
|
819 |
msgstr "برونبری به"
|
820 |
|
821 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
822 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
823 |
msgid "Select the output file type."
|
824 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
825 |
|
826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
827 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
828 |
msgid "Start Now!"
|
829 |
msgstr "شروع کن!"
|
830 |
|
831 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
832 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
833 |
msgid "Empty"
|
834 |
msgstr "خالی کردن"
|
835 |
|
836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
837 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
838 |
msgid "Empty Table"
|
839 |
msgstr "خالی کردن جدول"
|
840 |
|
841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
842 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
843 |
msgid "All data table will be lost."
|
844 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
845 |
|
846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
847 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
848 |
msgid "Clear now!"
|
849 |
msgstr "پاک کن!"
|
850 |
|
851 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
852 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
853 |
msgid "Delete User Agent Types"
|
854 |
msgstr "حذف نوع سیستم عامل کاربر"
|
855 |
|
856 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
857 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
858 |
msgid "Delete Agents"
|
859 |
msgstr "حذف سیستم عاملها"
|
860 |
|
861 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
862 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
863 |
msgid "All visitor data will be lost for this agent type."
|
864 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
865 |
|
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-geoip.php:
|
868 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
869 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
870 |
msgid "Delete now!"
|
871 |
msgstr "پاک کن!"
|
872 |
|
873 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
874 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
875 |
msgid "Delete Platforms"
|
876 |
msgstr "حذف سَکوها"
|
877 |
|
878 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
879 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
880 |
msgid "All visitor data will be lost for this platform type."
|
881 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
882 |
|
883 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
884 |
msgid "GeoIP Options"
|
885 |
msgstr "تنظیمات GeoIP"
|
886 |
|
887 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
888 |
-
msgid "
|
889 |
msgstr "بهروز رسانی کن!"
|
890 |
|
891 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
892 |
msgid "Get updates for the location and the countries, this may take a while"
|
893 |
msgstr ""
|
894 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
@@ -901,15 +901,17 @@ msgstr "تنظیمات عمومی"
|
|
901 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
902 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
903 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
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 "Active"
|
907 |
msgstr "فعال"
|
908 |
|
909 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
910 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
911 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
912 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
913 |
msgid "Enable or disable this feature"
|
914 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
915 |
|
@@ -959,32 +961,74 @@ msgid "Coefficient per visitor"
|
|
959 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
960 |
|
961 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
#, php-format
|
963 |
-
msgid "
|
964 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
965 |
|
966 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
967 |
msgid "Exclude User Roles"
|
968 |
msgstr "محرومکردن نقشهای کاربری"
|
969 |
|
970 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
971 |
msgid "Exclude"
|
972 |
msgstr "محروم"
|
973 |
|
974 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
975 |
-
#, php-format
|
976 |
-
msgid "Exclude %s role from data collection."
|
977 |
-
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
978 |
-
|
979 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
|
980 |
msgid "IP/Robot Exclusions"
|
981 |
msgstr "محرومیتهای آیپی/ربات"
|
982 |
|
983 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
984 |
msgid "Robot List"
|
985 |
msgstr "لیست روباتها"
|
986 |
|
987 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
988 |
msgid ""
|
989 |
"A list of words (one per line) to match against to detect robots. Entries "
|
990 |
"must be at least 4 characters long or they will be ignored."
|
@@ -992,15 +1036,15 @@ msgstr ""
|
|
992 |
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
993 |
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
994 |
|
995 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
996 |
msgid "Reset to Default"
|
997 |
msgstr "بازگشت به حالت پیشفرض"
|
998 |
|
999 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1000 |
msgid "Excluded IP Address List"
|
1001 |
msgstr "لیست آدرس آیپیهای محروم"
|
1002 |
|
1003 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1004 |
msgid ""
|
1005 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1006 |
"from statistics collection (both 192.168.0.0/24 and "
|
@@ -1012,99 +1056,99 @@ msgstr ""
|
|
1012 |
"هر خط یکی را اضافه کنید.) برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet "
|
1013 |
"Mask را اضافه کنید."
|
1014 |
|
1015 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1016 |
msgid "Add 10.0.0.0"
|
1017 |
msgstr "افزودن 10.0.0.0"
|
1018 |
|
1019 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1020 |
msgid "Add 172.16.0.0"
|
1021 |
msgstr "افزودن 172.16.0.0"
|
1022 |
|
1023 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1024 |
msgid "Add 192.168.0.0"
|
1025 |
msgstr "افزودن 192.168.0.0"
|
1026 |
|
1027 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1028 |
msgid "Charts"
|
1029 |
msgstr "نمودار"
|
1030 |
|
1031 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1032 |
msgid "Chart type"
|
1033 |
msgstr "نوع نمودار"
|
1034 |
|
1035 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1036 |
msgid "Line"
|
1037 |
msgstr "خطی"
|
1038 |
|
1039 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1040 |
msgid "Spline"
|
1041 |
msgstr "نوار باریک"
|
1042 |
|
1043 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1044 |
msgid "Area"
|
1045 |
msgstr "خطی توپُر"
|
1046 |
|
1047 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1048 |
msgid "Area Spline"
|
1049 |
msgstr "نوار توپُر"
|
1050 |
|
1051 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1052 |
msgid "Column"
|
1053 |
msgstr "ستونی"
|
1054 |
|
1055 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1056 |
msgid "Bar"
|
1057 |
msgstr "شِمشی"
|
1058 |
|
1059 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1060 |
msgid "Scatter"
|
1061 |
msgstr "پراکنده"
|
1062 |
|
1063 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1064 |
msgid "Chart type in view stats."
|
1065 |
msgstr "نوع نمودار در نمایش آمار."
|
1066 |
|
1067 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1068 |
msgid "Statistical reporting settings"
|
1069 |
msgstr "تنظیمات گزارش آماری"
|
1070 |
|
1071 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1072 |
msgid "Time send"
|
1073 |
msgstr "زمان ارسال"
|
1074 |
|
1075 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1076 |
msgid "Hourly"
|
1077 |
msgstr "هرساعت"
|
1078 |
|
1079 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1080 |
msgid "Twice daily"
|
1081 |
msgstr "2 بار در روز"
|
1082 |
|
1083 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1084 |
msgid "daily"
|
1085 |
msgstr "روزانه"
|
1086 |
|
1087 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1088 |
msgid "Select when receiving statistics report."
|
1089 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1090 |
|
1091 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1092 |
msgid "Send Statistical reporting to"
|
1093 |
msgstr "ارسال گزارش آمار به"
|
1094 |
|
1095 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1096 |
msgid "Email"
|
1097 |
msgstr "پست الکترونیک"
|
1098 |
|
1099 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1100 |
msgid "SMS"
|
1101 |
msgstr "پیامک"
|
1102 |
|
1103 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1104 |
msgid "Type Select Get Status Report."
|
1105 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1106 |
|
1107 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1108 |
#, php-format
|
1109 |
msgid ""
|
1110 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -1113,27 +1157,27 @@ msgstr ""
|
|
1113 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1114 |
"وردپرس</a> را نصب کنید."
|
1115 |
|
1116 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1117 |
msgid "Send Content Report"
|
1118 |
msgstr "محتوای ارسال گزارش"
|
1119 |
|
1120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1121 |
msgid "Enter the contents of the reports received."
|
1122 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1123 |
|
1124 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1125 |
msgid "Input data:"
|
1126 |
msgstr "دادههای ورودی:"
|
1127 |
|
1128 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1129 |
msgid "GeoIP settings"
|
1130 |
msgstr "تنظیمات GeoIP"
|
1131 |
|
1132 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1133 |
msgid "GeoIP collection"
|
1134 |
msgstr "مجموعه GeoIP"
|
1135 |
|
1136 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1137 |
msgid ""
|
1138 |
"For get more information and location (country) from visitor, enable this "
|
1139 |
"feature."
|
@@ -1141,22 +1185,50 @@ msgstr ""
|
|
1141 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1142 |
"کنید."
|
1143 |
|
1144 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1145 |
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1146 |
msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
1147 |
|
1148 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1149 |
msgid "Update GeoIP Info"
|
1150 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1151 |
|
1152 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1153 |
msgid "Download GeoIP Database"
|
1154 |
msgstr "دریافت پایگاهداده GeoIP"
|
1155 |
|
1156 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1157 |
msgid "Save changes on this page to download the update."
|
1158 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1160 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1161 |
msgid "Name"
|
1162 |
msgstr "نام"
|
@@ -1181,6 +1253,12 @@ msgstr "میلادی"
|
|
1181 |
msgid "Persian"
|
1182 |
msgstr "شمسی (فارسی)"
|
1183 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1184 |
#~ msgid "Populate Location"
|
1185 |
#~ msgstr "محل جمعیت"
|
1186 |
|
@@ -1339,9 +1417,6 @@ msgstr "شمسی (فارسی)"
|
|
1339 |
#~ msgid "low value"
|
1340 |
#~ msgstr "کم شد"
|
1341 |
|
1342 |
-
#~ msgid "Report a problem for WP Statistics"
|
1343 |
-
#~ msgstr "گزارش مشکل برای افزونه WP Statistics"
|
1344 |
-
|
1345 |
#~ msgid "Thanks for your report!"
|
1346 |
#~ msgstr "با تشکر از گزارش شما!"
|
1347 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-01-16 20:31+0330\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: <mat404@gmail.com>\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:75
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:242
|
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:107
|
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:139
|
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:20
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:298
|
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:300
|
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:299
|
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:302
|
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:301
|
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:304
|
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:303
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr "کل بازدیدکنندهگان"
|
159 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
160 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
161 |
|
162 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:109
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
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:113
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:112
|
173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:332
|
174 |
msgid "Countries"
|
175 |
msgstr "کشورها"
|
176 |
|
177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:114
|
178 |
msgid "Hits"
|
179 |
msgstr "بازدیدها"
|
180 |
|
181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
182 |
msgid "Referers"
|
183 |
msgstr "ارجاعدهندهها"
|
184 |
|
185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:116
|
186 |
msgid "Searches"
|
187 |
msgstr "جستجوها"
|
188 |
|
189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:117
|
190 |
msgid "Search Words"
|
191 |
msgstr "کلمات جستجو شده"
|
192 |
|
193 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
|
194 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
195 |
msgid "Visitors"
|
196 |
msgstr "بازدیدکنندهگان"
|
197 |
|
198 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:120
|
199 |
msgid "Optimization"
|
200 |
msgstr "بهینه سازی"
|
201 |
|
202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:121
|
203 |
msgid "Settings"
|
204 |
msgstr "تنظیمات"
|
205 |
|
206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
|
207 |
msgid "Today visitor"
|
208 |
msgstr "بازدید کننده امروز"
|
209 |
|
210 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:149
|
211 |
msgid "Today visit"
|
212 |
msgstr "بازدید امروز"
|
213 |
|
214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
|
215 |
msgid "Yesterday visitor"
|
216 |
msgstr "بازدید کننده دیروز"
|
217 |
|
218 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:159
|
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:164
|
224 |
msgid "View Stats"
|
225 |
msgstr "نمایش آمار"
|
226 |
|
227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:256
|
228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:350
|
229 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:421
|
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:266
|
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:375
|
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:383
|
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:389
|
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:402
|
253 |
msgid "GeoIP Database updated successfully!"
|
254 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
255 |
|
256 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
|
257 |
+
#, php-format
|
258 |
+
msgid "Updated %s GeoIP records in the visitors database."
|
259 |
+
msgstr "%s رکورد GeoIP در پایگاه داده بهروز شد."
|
260 |
+
|
261 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
262 |
msgid "Browser Statistics"
|
263 |
msgstr "آمار مرورگرها"
|
661 |
msgstr "دادههای جدول <code>%s</code> با موفقیت حذف شد."
|
662 |
|
663 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:10
|
664 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:36
|
665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:64
|
666 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:10
|
667 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:36
|
668 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:64
|
669 |
msgid "Are you sure?"
|
670 |
msgstr "آیا مطمئن هستید؟"
|
671 |
|
672 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:102
|
673 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:95
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "Resources"
|
675 |
msgstr "منابع"
|
676 |
|
677 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:107
|
678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:112
|
679 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:100
|
680 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:105
|
681 |
msgid "Memory usage in PHP"
|
682 |
msgstr "حافظه استفاده شده در پیاچپی"
|
683 |
|
684 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:111
|
685 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:104
|
686 |
msgid "Byte"
|
687 |
msgstr "بایت"
|
688 |
|
689 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:118
|
690 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:111
|
691 |
#, php-format
|
692 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
693 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_useronline</code>"
|
694 |
|
695 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:122
|
696 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:133
|
697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:144
|
698 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:115
|
699 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:126
|
700 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:137
|
701 |
msgid "Row"
|
702 |
msgstr "ردیف"
|
703 |
|
704 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:123
|
705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:134
|
706 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:145
|
707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:116
|
708 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:127
|
709 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:138
|
710 |
msgid "Number of rows"
|
711 |
msgstr "تعداد ردیفهای موجود"
|
712 |
|
713 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:129
|
714 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:122
|
715 |
#, php-format
|
716 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
717 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visit</code>"
|
718 |
|
719 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:140
|
720 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:133
|
721 |
#, php-format
|
722 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
723 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</code>"
|
724 |
|
725 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:150
|
726 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:143
|
727 |
msgid "Version Info"
|
728 |
msgstr "اطلاعات نگارش"
|
729 |
|
730 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:155
|
731 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:148
|
732 |
msgid "WP Statistics Version"
|
733 |
msgstr "نگارش افزونه آماره"
|
734 |
|
735 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:160
|
736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:153
|
737 |
msgid "The WP Statistics version you are running."
|
738 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
739 |
|
740 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:166
|
741 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:159
|
742 |
msgid "PHP Version"
|
743 |
msgstr "نگارش PHP"
|
744 |
|
745 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:171
|
746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:164
|
747 |
msgid "The PHP version you are running."
|
748 |
msgstr "نگارش PHP در حال اجرای شما."
|
749 |
|
750 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:177
|
751 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:170
|
752 |
msgid "jQuery Version"
|
753 |
msgstr "نگارش جیکوئری"
|
754 |
|
755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:182
|
756 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:175
|
757 |
msgid "The jQuery version you are running."
|
758 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
759 |
|
760 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:187
|
761 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:180
|
762 |
msgid "Client Info"
|
763 |
msgstr "اطلاعات کاربر"
|
764 |
|
765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:192
|
766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:185
|
767 |
msgid "Client IP"
|
768 |
msgstr "آیپی کاربر"
|
769 |
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:197
|
771 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:190
|
772 |
msgid "The client IP address."
|
773 |
msgstr "آدرس آیپی کاربر."
|
774 |
|
775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:203
|
776 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:196
|
777 |
msgid "User Agent"
|
778 |
msgstr "عامل کاربر"
|
779 |
|
780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:208
|
781 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:201
|
782 |
msgid "The client user agent string."
|
783 |
msgstr "رشتهی عامل کاربری"
|
784 |
|
785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:213
|
786 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:206
|
787 |
msgid "Export"
|
788 |
msgstr "برونبری"
|
789 |
|
790 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:218
|
791 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:211
|
792 |
msgid "Export from"
|
793 |
msgstr "برونبری از"
|
794 |
|
795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:223
|
796 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
|
797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:261
|
798 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:284
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:308
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:216
|
801 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:232
|
802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:254
|
803 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:277
|
804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:301
|
805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
806 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
808 |
msgid "Please select."
|
809 |
msgstr "لطفا انتخاب کنید."
|
810 |
|
811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:228
|
812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:221
|
813 |
msgid "Select the table for the output file."
|
814 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
815 |
|
816 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:234
|
817 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:227
|
818 |
msgid "Export To"
|
819 |
msgstr "برونبری به"
|
820 |
|
821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:245
|
822 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:238
|
823 |
msgid "Select the output file type."
|
824 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
825 |
|
826 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:246
|
827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:239
|
828 |
msgid "Start Now!"
|
829 |
msgstr "شروع کن!"
|
830 |
|
831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:251
|
832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:244
|
833 |
msgid "Empty"
|
834 |
msgstr "خالی کردن"
|
835 |
|
836 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:256
|
837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:249
|
838 |
msgid "Empty Table"
|
839 |
msgstr "خالی کردن جدول"
|
840 |
|
841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:266
|
842 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:259
|
843 |
msgid "All data table will be lost."
|
844 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
845 |
|
846 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:267
|
847 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:260
|
848 |
msgid "Clear now!"
|
849 |
msgstr "پاک کن!"
|
850 |
|
851 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:274
|
852 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:267
|
853 |
msgid "Delete User Agent Types"
|
854 |
msgstr "حذف نوع سیستم عامل کاربر"
|
855 |
|
856 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:279
|
857 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:272
|
858 |
msgid "Delete Agents"
|
859 |
msgstr "حذف سیستم عاملها"
|
860 |
|
861 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:294
|
862 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:287
|
863 |
msgid "All visitor data will be lost for this agent type."
|
864 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
865 |
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:295
|
867 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:319
|
868 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:288
|
869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:312
|
870 |
msgid "Delete now!"
|
871 |
msgstr "پاک کن!"
|
872 |
|
873 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:303
|
874 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:296
|
875 |
msgid "Delete Platforms"
|
876 |
msgstr "حذف سَکوها"
|
877 |
|
878 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:318
|
879 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:311
|
880 |
msgid "All visitor data will be lost for this platform type."
|
881 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
882 |
|
883 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:327
|
884 |
msgid "GeoIP Options"
|
885 |
msgstr "تنظیمات GeoIP"
|
886 |
|
887 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:336
|
888 |
+
msgid "Update Now!"
|
889 |
msgstr "بهروز رسانی کن!"
|
890 |
|
891 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:337
|
892 |
msgid "Get updates for the location and the countries, this may take a while"
|
893 |
msgstr ""
|
894 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
901 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
902 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
903 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
904 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:247
|
905 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:325
|
906 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:350
|
907 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:363
|
908 |
msgid "Active"
|
909 |
msgstr "فعال"
|
910 |
|
911 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
912 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
913 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
914 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:248
|
915 |
msgid "Enable or disable this feature"
|
916 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
917 |
|
961 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
962 |
|
963 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
|
964 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
|
965 |
+
#, php-format
|
966 |
+
msgid "Exclude %s role from data collection."
|
967 |
+
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
968 |
+
|
969 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
|
970 |
+
msgid "Admin Levels"
|
971 |
+
msgstr "سطح مدیریت"
|
972 |
+
|
973 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:106
|
974 |
+
#, php-format
|
975 |
+
msgid ""
|
976 |
+
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
977 |
+
"levels."
|
978 |
+
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
979 |
+
|
980 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:107
|
981 |
+
msgid ""
|
982 |
+
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
983 |
+
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
984 |
+
"Contributor, read = Everyone."
|
985 |
+
msgstr ""
|
986 |
+
"نکته: manage_network = سوپر مدیر، manage_options = مدیر، edit_others_posts = "
|
987 |
+
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
988 |
+
|
989 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
|
990 |
+
msgid ""
|
991 |
+
"Each of the above casscades the rights upwards in the default WordPress "
|
992 |
+
"configuration. So for example selecting publish_posts grants the right to "
|
993 |
+
"Authors, Editors, Admins and Super Admins."
|
994 |
+
msgstr ""
|
995 |
+
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
996 |
+
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
997 |
+
|
998 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
999 |
#, php-format
|
1000 |
+
msgid ""
|
1001 |
+
"If you need a more robust solution to delegate access you might want to look "
|
1002 |
+
"at %s in the WordPress plugin directory."
|
1003 |
+
msgstr ""
|
1004 |
+
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1005 |
+
"به افزونه %s بیندازید."
|
1006 |
+
|
1007 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
|
1008 |
+
msgid "Required user level to view WP Statistics"
|
1009 |
+
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
1010 |
+
|
1011 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:154
|
1012 |
+
msgid "Required user level to manage WP Statistics"
|
1013 |
+
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
1014 |
|
1015 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:161
|
1016 |
msgid "Exclude User Roles"
|
1017 |
msgstr "محرومکردن نقشهای کاربری"
|
1018 |
|
1019 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
1020 |
msgid "Exclude"
|
1021 |
msgstr "محروم"
|
1022 |
|
1023 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:178
|
|
|
|
|
|
|
|
|
|
|
1024 |
msgid "IP/Robot Exclusions"
|
1025 |
msgstr "محرومیتهای آیپی/ربات"
|
1026 |
|
1027 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:182
|
1028 |
msgid "Robot List"
|
1029 |
msgstr "لیست روباتها"
|
1030 |
|
1031 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:197
|
1032 |
msgid ""
|
1033 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1034 |
"must be at least 4 characters long or they will be ignored."
|
1036 |
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
1037 |
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
1038 |
|
1039 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:198
|
1040 |
msgid "Reset to Default"
|
1041 |
msgstr "بازگشت به حالت پیشفرض"
|
1042 |
|
1043 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:202
|
1044 |
msgid "Excluded IP Address List"
|
1045 |
msgstr "لیست آدرس آیپیهای محروم"
|
1046 |
|
1047 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:205
|
1048 |
msgid ""
|
1049 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1050 |
"from statistics collection (both 192.168.0.0/24 and "
|
1056 |
"هر خط یکی را اضافه کنید.) برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet "
|
1057 |
"Mask را اضافه کنید."
|
1058 |
|
1059 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:206
|
1060 |
msgid "Add 10.0.0.0"
|
1061 |
msgstr "افزودن 10.0.0.0"
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:207
|
1064 |
msgid "Add 172.16.0.0"
|
1065 |
msgstr "افزودن 172.16.0.0"
|
1066 |
|
1067 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:208
|
1068 |
msgid "Add 192.168.0.0"
|
1069 |
msgstr "افزودن 192.168.0.0"
|
1070 |
|
1071 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:213
|
1072 |
msgid "Charts"
|
1073 |
msgstr "نمودار"
|
1074 |
|
1075 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:218
|
1076 |
msgid "Chart type"
|
1077 |
msgstr "نوع نمودار"
|
1078 |
|
1079 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:224
|
1080 |
msgid "Line"
|
1081 |
msgstr "خطی"
|
1082 |
|
1083 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:225
|
1084 |
msgid "Spline"
|
1085 |
msgstr "نوار باریک"
|
1086 |
|
1087 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:226
|
1088 |
msgid "Area"
|
1089 |
msgstr "خطی توپُر"
|
1090 |
|
1091 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:227
|
1092 |
msgid "Area Spline"
|
1093 |
msgstr "نوار توپُر"
|
1094 |
|
1095 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:228
|
1096 |
msgid "Column"
|
1097 |
msgstr "ستونی"
|
1098 |
|
1099 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:229
|
1100 |
msgid "Bar"
|
1101 |
msgstr "شِمشی"
|
1102 |
|
1103 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:230
|
1104 |
msgid "Scatter"
|
1105 |
msgstr "پراکنده"
|
1106 |
|
1107 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:232
|
1108 |
msgid "Chart type in view stats."
|
1109 |
msgstr "نوع نمودار در نمایش آمار."
|
1110 |
|
1111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:237
|
1112 |
msgid "Statistical reporting settings"
|
1113 |
msgstr "تنظیمات گزارش آماری"
|
1114 |
|
1115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
1116 |
msgid "Time send"
|
1117 |
msgstr "زمان ارسال"
|
1118 |
|
1119 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:261
|
1120 |
msgid "Hourly"
|
1121 |
msgstr "هرساعت"
|
1122 |
|
1123 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:262
|
1124 |
msgid "Twice daily"
|
1125 |
msgstr "2 بار در روز"
|
1126 |
|
1127 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:263
|
1128 |
msgid "daily"
|
1129 |
msgstr "روزانه"
|
1130 |
|
1131 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:265
|
1132 |
msgid "Select when receiving statistics report."
|
1133 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1134 |
|
1135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:271
|
1136 |
msgid "Send Statistical reporting to"
|
1137 |
msgstr "ارسال گزارش آمار به"
|
1138 |
|
1139 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:277
|
1140 |
msgid "Email"
|
1141 |
msgstr "پست الکترونیک"
|
1142 |
|
1143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:278
|
1144 |
msgid "SMS"
|
1145 |
msgstr "پیامک"
|
1146 |
|
1147 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:280
|
1148 |
msgid "Type Select Get Status Report."
|
1149 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1150 |
|
1151 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:283
|
1152 |
#, php-format
|
1153 |
msgid ""
|
1154 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1157 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1158 |
"وردپرس</a> را نصب کنید."
|
1159 |
|
1160 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:290
|
1161 |
msgid "Send Content Report"
|
1162 |
msgstr "محتوای ارسال گزارش"
|
1163 |
|
1164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:295
|
1165 |
msgid "Enter the contents of the reports received."
|
1166 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1167 |
|
1168 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:297
|
1169 |
msgid "Input data:"
|
1170 |
msgstr "دادههای ورودی:"
|
1171 |
|
1172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:310
|
1173 |
msgid "GeoIP settings"
|
1174 |
msgstr "تنظیمات GeoIP"
|
1175 |
|
1176 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:320
|
1177 |
msgid "GeoIP collection"
|
1178 |
msgstr "مجموعه GeoIP"
|
1179 |
|
1180 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:326
|
1181 |
msgid ""
|
1182 |
"For get more information and location (country) from visitor, enable this "
|
1183 |
"feature."
|
1185 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1186 |
"کنید."
|
1187 |
|
1188 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:327
|
1189 |
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1190 |
msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
1191 |
|
1192 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:333
|
1193 |
msgid "Update GeoIP Info"
|
1194 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1195 |
|
1196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:338
|
1197 |
msgid "Download GeoIP Database"
|
1198 |
msgstr "دریافت پایگاهداده GeoIP"
|
1199 |
|
1200 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:339
|
1201 |
msgid "Save changes on this page to download the update."
|
1202 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1203 |
|
1204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:345
|
1205 |
+
msgid "Schedule monthly update of GeoIP DB"
|
1206 |
+
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1207 |
+
|
1208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:351
|
1209 |
+
msgid ""
|
1210 |
+
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1211 |
+
"Tuesday of the month."
|
1212 |
+
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1213 |
+
|
1214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:352
|
1215 |
+
msgid ""
|
1216 |
+
"This option will also download the database if the local filesize is less "
|
1217 |
+
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1218 |
+
"place)."
|
1219 |
+
msgstr ""
|
1220 |
+
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1221 |
+
"دادههای همراه افزونه است)."
|
1222 |
+
|
1223 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:358
|
1224 |
+
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1225 |
+
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1226 |
+
|
1227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:364
|
1228 |
+
msgid "Update any missing GeoIP data after downloading a new database."
|
1229 |
+
msgstr ""
|
1230 |
+
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1231 |
+
|
1232 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1233 |
msgid "Name"
|
1234 |
msgstr "نام"
|
1253 |
msgid "Persian"
|
1254 |
msgstr "شمسی (فارسی)"
|
1255 |
|
1256 |
+
#~ msgid "%s New records is updated."
|
1257 |
+
#~ msgstr "%s رکورد جدید بهروز شد."
|
1258 |
+
|
1259 |
+
#~ msgid "For each visit to account for several hits. Currently %s."
|
1260 |
+
#~ msgstr "تعداد محاسبه برای هربازدید. درحال حاضر %s است."
|
1261 |
+
|
1262 |
#~ msgid "Populate Location"
|
1263 |
#~ msgstr "محل جمعیت"
|
1264 |
|
1417 |
#~ msgid "low value"
|
1418 |
#~ msgstr "کم شد"
|
1419 |
|
|
|
|
|
|
|
1420 |
#~ msgid "Thanks for your report!"
|
1421 |
#~ msgstr "با تشکر از گزارش شما!"
|
1422 |
|
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.
|
@@ -159,6 +159,14 @@ The webcrawler detection code has be fixed and will now exclude them from your s
|
|
159 |
* 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.
|
160 |
|
161 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
= 4.3.1 =
|
163 |
* Fixed: Critical bug that caused only a single visitor to be recorded.
|
164 |
* Added: Version information to the optimization page.
|
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.4
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
159 |
* 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.
|
160 |
|
161 |
== Changelog ==
|
162 |
+
= 4.4 =
|
163 |
+
* Added: option to set the required capability level to view statistics in the admin interface.
|
164 |
+
* Added: option to set the required capability level to manage statistics in the admin interface.
|
165 |
+
* Fixed: 'See More' links on the overview page now update highlight the current page in the admin menu instead of the overview page.
|
166 |
+
* Added: Schedule downloads of the GeoIP database.
|
167 |
+
* Added: Auto populate missing GeoIP information after a download of the GeoIP database.
|
168 |
+
* Fixed: Unschedule of report event if reporting is disabled.
|
169 |
+
|
170 |
= 4.3.1 =
|
171 |
* Fixed: Critical bug that caused only a single visitor to be recorded.
|
172 |
* Added: Version information to the optimization page.
|
robotslist.php
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$wps_robotarray = array(
|
3 |
+
'A6-Indexer',
|
4 |
+
'AbachoBOT',
|
5 |
+
'accoona',
|
6 |
+
'AcoiRobot',
|
7 |
+
'AddThis.com',
|
8 |
+
'ADmantX',
|
9 |
+
'AhrefsBot',
|
10 |
+
'alexa',
|
11 |
+
'AltaVista',
|
12 |
+
'appie',
|
13 |
+
'Ask Jeeves',
|
14 |
+
'ASPSeek',
|
15 |
+
'Baiduspider',
|
16 |
+
'Benjojo',
|
17 |
+
'bingbot',
|
18 |
+
'Butterfly',
|
19 |
+
'ccbot',
|
20 |
+
'clamantivirus',
|
21 |
+
'crawler',
|
22 |
+
'CrocCrawler',
|
23 |
+
'Dumbot',
|
24 |
+
'eStyle',
|
25 |
+
'ezooms.bot',
|
26 |
+
'facebookexternalhit',
|
27 |
+
'FAST',
|
28 |
+
'Feedfetcher-Google',
|
29 |
+
'Firfly',
|
30 |
+
'froogle',
|
31 |
+
'GeonaBot',
|
32 |
+
'Gigabot',
|
33 |
+
'girafabot',
|
34 |
+
'Googlebot',
|
35 |
+
'ia_archiver',
|
36 |
+
'IDBot',
|
37 |
+
'InfoSeek',
|
38 |
+
'inktomi',
|
39 |
+
'linkdexbot',
|
40 |
+
'looksmart',
|
41 |
+
'Lycos',
|
42 |
+
'Mail.RU_Bot',
|
43 |
+
'Me.dium',
|
44 |
+
'Mediapartners-Google',
|
45 |
+
'MJ12bot',
|
46 |
+
'msnbot',
|
47 |
+
'MRBOT',
|
48 |
+
'NationalDirectory',
|
49 |
+
'nutch',
|
50 |
+
'Openbot',
|
51 |
+
'proximic',
|
52 |
+
'rabaz',
|
53 |
+
'Rambler',
|
54 |
+
'Rankivabot',
|
55 |
+
'Scooter',
|
56 |
+
'Scrubby',
|
57 |
+
'SeznamBot',
|
58 |
+
'Slurp',
|
59 |
+
'SocialSearch',
|
60 |
+
'Sogou web spider',
|
61 |
+
'Spade',
|
62 |
+
'TechnoratiSnoop',
|
63 |
+
'TECNOSEEK',
|
64 |
+
'Teoma',
|
65 |
+
'TweetmemeBot',
|
66 |
+
'Twiceler',
|
67 |
+
'Twitturls',
|
68 |
+
'URL_Spider_SQL',
|
69 |
+
'WebAlta Crawler',
|
70 |
+
'WebBug',
|
71 |
+
'WebFindBot',
|
72 |
+
'WeSEE:Search',
|
73 |
+
'www.galaxy.com',
|
74 |
+
'yandex',
|
75 |
+
'Yahoo',
|
76 |
+
'Yammybot',
|
77 |
+
'ZyBorg'
|
78 |
+
);
|
79 |
+
|
80 |
+
$wps_robotslist = implode("\n", $wps_robotarray);
|
81 |
+
?>
|
schedule.php
CHANGED
@@ -1,8 +1,51 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
3 |
|
4 |
wp_schedule_event(time(), get_option('wps_time_report'), 'report_hook');
|
5 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
function wp_statistics_send_report() {
|
8 |
|
1 |
<?php
|
2 |
+
|
3 |
+
// Add the report schedule if it doesn't exist and is enabled.
|
4 |
+
if( !wp_next_scheduled('report_hook') && get_option('wps_stats_report') ) {
|
5 |
|
6 |
wp_schedule_event(time(), get_option('wps_time_report'), 'report_hook');
|
7 |
}
|
8 |
+
|
9 |
+
// Remove the report schedule if it does exist and is disabled.
|
10 |
+
if( wp_next_scheduled('report_hook') && !get_option('wps_stats_report') ) {
|
11 |
+
|
12 |
+
wp_unschedule_event(wp_next_scheduled('report_hook'), 'report_hook');
|
13 |
+
}
|
14 |
+
|
15 |
+
// Add the GeoIP update schedule if it doesn't exist and it should be.
|
16 |
+
if( !wp_next_scheduled('wp_statistics_geoip_hook') && get_option('wps_schedule_geoip') && get_option('wps_geoip') ) {
|
17 |
+
|
18 |
+
wp_schedule_event(time(), 'daily', 'wp_statistics_geoip_hook');
|
19 |
+
}
|
20 |
+
|
21 |
+
// Remove the GeoIP update schedule if it does exist and it should shouldn't.
|
22 |
+
if( wp_next_scheduled('wp_statistics_geoip_hook') && (!get_option('wps_schedule_geoip') || !get_option('wps_geoip') ) ) {
|
23 |
+
|
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
|
30 |
+
// the update, download it two days later.
|
31 |
+
$thisupdate = strtotime('First Tuesday of this month') + (86400 * 2);
|
32 |
+
|
33 |
+
$lastupdate = get_option('wps_last_geoip_dl');
|
34 |
+
|
35 |
+
// We're also going to look to see if our filesize is to small, this means the plugin stub still exists and should
|
36 |
+
// be replaced with a proper file.
|
37 |
+
$dbsize = filesize(plugin_dir_path( __FILE__ ) . 'GeoIP2-db/GeoLite2-Country.mmdb');
|
38 |
+
|
39 |
+
if( $lastupdate < $thisupdate || $dbsize < 1024 ) {
|
40 |
+
|
41 |
+
// We can't fire the download function directly here as we rely on some functions that haven't been loaded yet
|
42 |
+
// in WordPress, so instead just set the flag in the options table and the shutdown hook will take care of the
|
43 |
+
// actual download at the end of the page.
|
44 |
+
update_option('wps_update_geoip',TRUE);
|
45 |
+
}
|
46 |
+
}
|
47 |
+
add_action('wp_statistics_geoip_hook', 'wp_statistics_geoip_event');
|
48 |
+
|
49 |
|
50 |
function wp_statistics_send_report() {
|
51 |
|
upgrade.php
CHANGED
@@ -53,13 +53,13 @@
|
|
53 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
54 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
55 |
|
56 |
-
$
|
57 |
|
58 |
-
if(trim($
|
59 |
-
|
60 |
}
|
61 |
|
62 |
-
update_option('wps_robotlist', $
|
63 |
|
64 |
// WP Statistics V4.2 and below automatically exclude the administrator for statistics collection
|
65 |
// newer versions allow the option to be set for any role in WordPress, however we should mimic
|
53 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
54 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
55 |
|
56 |
+
$wps_robotlist = get_option('wps_robotlist');
|
57 |
|
58 |
+
if(trim($wps_robotlist) == "") {
|
59 |
+
include_once('robotslist.php');
|
60 |
}
|
61 |
|
62 |
+
update_option('wps_robotlist', $wps_robotlist);
|
63 |
|
64 |
// WP Statistics V4.2 and below automatically exclude the administrator for statistics collection
|
65 |
// newer versions allow the option to be set for any role in WordPress, however we should mimic
|
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,7 +15,7 @@ License: GPL2
|
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
-
define('WP_STATISTICS_VERSION', '4.
|
19 |
|
20 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
21 |
__('Wordpress Statistics', 'wp_statistics');
|
@@ -51,7 +51,7 @@ License: GPL2
|
|
51 |
add_action('admin_notices', 'wp_statistics_not_enable');
|
52 |
}
|
53 |
|
54 |
-
// We can wait
|
55 |
// quickly.
|
56 |
add_action('shutdown', 'wp_statistics_shutdown_action');
|
57 |
|
@@ -68,31 +68,57 @@ License: GPL2
|
|
68 |
if( get_option('wps_visitors') )
|
69 |
$h->Visitors();
|
70 |
|
71 |
-
if( get_option('wps_check_online') )
|
72 |
$o->second = get_option('wps_check_online');
|
73 |
-
|
|
|
|
|
|
|
74 |
}
|
75 |
|
76 |
-
function
|
77 |
|
78 |
-
|
|
|
|
|
|
|
|
|
79 |
|
80 |
-
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
}
|
87 |
-
add_submenu_page(__FILE__, __('Hits', 'wp_statistics'), __('Hits', 'wp_statistics'), 'manage_options', 'wps_hits_menu', 'wp_statistics_log_hits');
|
88 |
-
add_submenu_page(__FILE__, __('Referers', 'wp_statistics'), __('Referers', 'wp_statistics'), 'manage_options', 'wps_referers_menu', 'wp_statistics_log_referers');
|
89 |
-
add_submenu_page(__FILE__, __('Searches', 'wp_statistics'), __('Searches', 'wp_statistics'), 'manage_options', 'wps_searches_menu', 'wp_statistics_log_searches');
|
90 |
-
add_submenu_page(__FILE__, __('Search Words', 'wp_statistics'), __('Search Words', 'wp_statistics'), 'manage_options', 'wps_words_menu', 'wp_statistics_log_words');
|
91 |
-
add_submenu_page(__FILE__, __('Visitors', 'wp_statistics'), __('Visitors', 'wp_statistics'), 'manage_options', 'wps_visitors_menu', 'wp_statistics_log_visitors');
|
92 |
-
add_submenu_page(__FILE__, '', '', 'manage_options', 'wps_break_menu', 'wp_statistics_log_overview');
|
93 |
-
add_submenu_page(__FILE__, __('Optimization', 'wp_statistics'), __('Optimization', 'wp_statistics'), 'manage_options', 'wp-statistics/optimization', 'wp_statistics_optimization');
|
94 |
-
add_submenu_page(__FILE__, __('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), 'manage_options', 'wp-statistics/settings', 'wp_statistics_settings');
|
95 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
}
|
97 |
add_action('admin_menu', 'wp_statistics_menu');
|
98 |
|
@@ -165,6 +191,10 @@ License: GPL2
|
|
165 |
register_setting('wps_settings', 'wps_store_ua');
|
166 |
register_setting('wps_settings', 'wps_robotlist');
|
167 |
register_setting('wps_settings', 'wps_exclude_ip');
|
|
|
|
|
|
|
|
|
168 |
|
169 |
$role_list = $wp_roles->get_names();
|
170 |
|
@@ -221,8 +251,8 @@ License: GPL2
|
|
221 |
|
222 |
if( $log_type == "" )
|
223 |
$log_type = $_GET['type'];
|
224 |
-
|
225 |
-
if (!current_user_can('
|
226 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
227 |
}
|
228 |
|
@@ -316,7 +346,7 @@ License: GPL2
|
|
316 |
|
317 |
function wp_statistics_optimization() {
|
318 |
|
319 |
-
if (!current_user_can('manage_options')) {
|
320 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
321 |
}
|
322 |
|
@@ -332,59 +362,73 @@ License: GPL2
|
|
332 |
include_once dirname( __FILE__ ) . '/includes/optimization/optimization.php';
|
333 |
}
|
334 |
}
|
335 |
-
|
336 |
-
function wp_statistics_settings() {
|
337 |
-
|
338 |
-
if (!current_user_can('manage_options')) {
|
339 |
-
wp_die(__('You do not have sufficient permissions to access this page.'));
|
340 |
-
}
|
341 |
-
|
342 |
-
wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/style.css', true, '1.0');
|
343 |
-
|
344 |
-
if( get_option('wps_update_geoip') == true ) {
|
345 |
-
|
346 |
-
$download_url = 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz';
|
347 |
|
348 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
}
|
355 |
else {
|
356 |
-
|
357 |
-
|
358 |
-
$DBfh = fopen( $DBFile, 'wb' );
|
359 |
-
|
360 |
-
if( ! $ZipHandle ) {
|
361 |
-
echo "<div class='updated settings-error'><p><strong>" . sprintf(__('Error could not open downloaded GeoIP database for reading: %s', 'wp_statistics'), $TempFile) . "</strong></p></div>";
|
362 |
-
|
363 |
unlink( $TempFile );
|
364 |
}
|
365 |
else {
|
366 |
-
|
367 |
-
|
368 |
-
unlink( $TempFile );
|
369 |
}
|
370 |
-
else {
|
371 |
-
while( ( $data = gzread( $ZipHandle, 4096 ) ) != false ) {
|
372 |
-
fwrite( $DBfh, $data );
|
373 |
-
}
|
374 |
|
375 |
-
|
376 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
update_option('wps_update_geoip', false);
|
383 |
}
|
384 |
}
|
385 |
}
|
386 |
}
|
387 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
include_once dirname( __FILE__ ) . '/includes/setting/settings.php';
|
389 |
|
390 |
}
|
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.4
|
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.4');
|
19 |
|
20 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
21 |
__('Wordpress Statistics', 'wp_statistics');
|
51 |
add_action('admin_notices', 'wp_statistics_not_enable');
|
52 |
}
|
53 |
|
54 |
+
// We can wait until the very end of the page to process the statistics, that way the page loads and displays
|
55 |
// quickly.
|
56 |
add_action('shutdown', 'wp_statistics_shutdown_action');
|
57 |
|
68 |
if( get_option('wps_visitors') )
|
69 |
$h->Visitors();
|
70 |
|
71 |
+
if( get_option('wps_check_online') )
|
72 |
$o->second = get_option('wps_check_online');
|
73 |
+
|
74 |
+
// Check to see if the GeoIP database needs to be downloaded and do so if required.
|
75 |
+
if( get_option('wps_update_geoip') )
|
76 |
+
wp_statistics_download_geoip();
|
77 |
}
|
78 |
|
79 |
+
function wp_statistics_validate_capability( $capability ) {
|
80 |
|
81 |
+
global $wp_roles;
|
82 |
+
|
83 |
+
$role_list = $wp_roles->get_names();
|
84 |
+
|
85 |
+
foreach( $wp_roles->roles as $role ) {
|
86 |
|
87 |
+
$cap_list = $role['capabilities'];
|
88 |
|
89 |
+
foreach( $cap_list as $key => $cap ) {
|
90 |
+
if( substr($key,0,6) != 'level_' ) {
|
91 |
+
$all_caps[$key] = 1;
|
92 |
+
}
|
93 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
+
|
96 |
+
if( $all_caps[$capability] == 1 ) { return $capability; }
|
97 |
+
|
98 |
+
return 'manage_options';
|
99 |
+
|
100 |
+
}
|
101 |
+
|
102 |
+
function wp_statistics_menu() {
|
103 |
+
|
104 |
+
$read_cap = wp_statistics_validate_capability( get_option('wps_read_capability', 'manage_options') );
|
105 |
+
$manage_cap = wp_statistics_validate_capability( get_option('wps_manage_capability', 'manage_options') );
|
106 |
+
|
107 |
+
add_menu_page(__('Statistics', 'wp_statistics'), __('Statistics', 'wp_statistics'), $read_cap, __FILE__, 'wp_statistics_log_overview', plugin_dir_url( __FILE__ ).'/images/icon.png');
|
108 |
+
|
109 |
+
add_submenu_page(__FILE__, __('Overview', 'wp_statistics'), __('Overview', 'wp_statistics'), $read_cap, __FILE__, 'wp_statistics_log_overview');
|
110 |
+
add_submenu_page(__FILE__, __('Browsers', 'wp_statistics'), __('Browsers', 'wp_statistics'), $read_cap, 'wps_browsers_menu', 'wp_statistics_log_browsers');
|
111 |
+
if( get_option('wps_geoip') ) {
|
112 |
+
add_submenu_page(__FILE__, __('Countries', 'wp_statistics'), __('Countries', 'wp_statistics'), $read_cap, 'wps_countries_menu', 'wp_statistics_log_countries');
|
113 |
+
}
|
114 |
+
add_submenu_page(__FILE__, __('Hits', 'wp_statistics'), __('Hits', 'wp_statistics'), $read_cap, 'wps_hits_menu', 'wp_statistics_log_hits');
|
115 |
+
add_submenu_page(__FILE__, __('Referers', 'wp_statistics'), __('Referers', 'wp_statistics'), $read_cap, 'wps_referers_menu', 'wp_statistics_log_referers');
|
116 |
+
add_submenu_page(__FILE__, __('Searches', 'wp_statistics'), __('Searches', 'wp_statistics'), $read_cap, 'wps_searches_menu', 'wp_statistics_log_searches');
|
117 |
+
add_submenu_page(__FILE__, __('Search Words', 'wp_statistics'), __('Search Words', 'wp_statistics'), $read_cap, 'wps_words_menu', 'wp_statistics_log_words');
|
118 |
+
add_submenu_page(__FILE__, __('Visitors', 'wp_statistics'), __('Visitors', 'wp_statistics'), $read_cap, 'wps_visitors_menu', 'wp_statistics_log_visitors');
|
119 |
+
add_submenu_page(__FILE__, '', '', $manage_cap, 'wps_break_menu', 'wp_statistics_log_overview');
|
120 |
+
add_submenu_page(__FILE__, __('Optimization', 'wp_statistics'), __('Optimization', 'wp_statistics'), $manage_cap, 'wp-statistics/optimization', 'wp_statistics_optimization');
|
121 |
+
add_submenu_page(__FILE__, __('Settings', 'wp_statistics'), __('Settings', 'wp_statistics'), $manage_cap, 'wp-statistics/settings', 'wp_statistics_settings');
|
122 |
}
|
123 |
add_action('admin_menu', 'wp_statistics_menu');
|
124 |
|
191 |
register_setting('wps_settings', 'wps_store_ua');
|
192 |
register_setting('wps_settings', 'wps_robotlist');
|
193 |
register_setting('wps_settings', 'wps_exclude_ip');
|
194 |
+
register_setting('wps_settings', 'wps_read_capability');
|
195 |
+
register_setting('wps_settings', 'wps_manage_capability');
|
196 |
+
register_setting('wps_settings', 'wps_schedule_geoip');
|
197 |
+
register_setting('wps_settings', 'wps_auto_pop');
|
198 |
|
199 |
$role_list = $wp_roles->get_names();
|
200 |
|
251 |
|
252 |
if( $log_type == "" )
|
253 |
$log_type = $_GET['type'];
|
254 |
+
|
255 |
+
if (!current_user_can(wp_statistics_validate_capability(get_option('wps_read_capability', 'manage_option')))) {
|
256 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
257 |
}
|
258 |
|
346 |
|
347 |
function wp_statistics_optimization() {
|
348 |
|
349 |
+
if (!current_user_can(wp_statistics_validate_capability(get_option('wps_manage_capability', 'manage_options')))) {
|
350 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
351 |
}
|
352 |
|
362 |
include_once dirname( __FILE__ ) . '/includes/optimization/optimization.php';
|
363 |
}
|
364 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
|
366 |
+
function wp_statistics_download_geoip() {
|
367 |
+
|
368 |
+
$download_url = 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz';
|
369 |
+
|
370 |
+
$DBFile = plugin_dir_path( __FILE__ ) . 'GeoIP2-db/GeoLite2-Country.mmdb';
|
371 |
+
|
372 |
+
// Download
|
373 |
+
$TempFile = download_url( $download_url );
|
374 |
+
if (is_wp_error( $TempFile ) ) {
|
375 |
+
$result = "<div class='updated settings-error'><p><strong>" . sprintf(__('Error downloading GeoIP database from: %s', 'wp_statistics'), $download_url) . "</strong></p></div>";
|
376 |
+
}
|
377 |
+
else {
|
378 |
+
// Ungzip File
|
379 |
+
$ZipHandle = gzopen( $TempFile, 'rb' );
|
380 |
+
$DBfh = fopen( $DBFile, 'wb' );
|
381 |
|
382 |
+
if( ! $ZipHandle ) {
|
383 |
+
$result = "<div class='updated settings-error'><p><strong>" . sprintf(__('Error could not open downloaded GeoIP database for reading: %s', 'wp_statistics'), $TempFile) . "</strong></p></div>";
|
384 |
+
|
385 |
+
unlink( $TempFile );
|
386 |
}
|
387 |
else {
|
388 |
+
if( !$DBfh ) {
|
389 |
+
$result = "<div class='updated settings-error'><p><strong>" . sprintf(__('Error could not open destination GeoIP database for writing %s', 'wp_statistics'), $DBFile) . "</strong></p></div>";
|
|
|
|
|
|
|
|
|
|
|
390 |
unlink( $TempFile );
|
391 |
}
|
392 |
else {
|
393 |
+
while( ( $data = gzread( $ZipHandle, 4096 ) ) != false ) {
|
394 |
+
fwrite( $DBfh, $data );
|
|
|
395 |
}
|
|
|
|
|
|
|
|
|
396 |
|
397 |
+
gzclose( $ZipHandle );
|
398 |
+
fclose( $DBfh );
|
399 |
+
|
400 |
+
unlink( $TempFile );
|
401 |
+
|
402 |
+
$result = "<div class='updated settings-error'><p><strong>" . __('GeoIP Database updated successfully!', 'wp_statistics') . "</strong></p></div>";
|
403 |
+
|
404 |
+
update_option('wps_last_geoip_dl', time());
|
405 |
+
update_option('wps_update_geoip', false);
|
406 |
|
407 |
+
if( get_option('wps_geoip') && version_compare(phpversion(), '5.3.0', '>') && get_option('wps_auto_pop')) {
|
408 |
+
include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
|
409 |
+
$result .= wp_statistics_populate_geoip_info();
|
|
|
|
|
410 |
}
|
411 |
}
|
412 |
}
|
413 |
}
|
414 |
|
415 |
+
return $result;
|
416 |
+
}
|
417 |
+
|
418 |
+
function wp_statistics_settings() {
|
419 |
+
|
420 |
+
if (!current_user_can(wp_statistics_validate_capability(get_option('wps_manage_capability', 'manage_options')))) {
|
421 |
+
wp_die(__('You do not have sufficient permissions to access this page.'));
|
422 |
+
}
|
423 |
+
|
424 |
+
wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/style.css', true, '1.0');
|
425 |
+
|
426 |
+
// We could let the download happen at the end of the page, but this way we get to give some
|
427 |
+
// feedback to the users about the result.
|
428 |
+
if( get_option('wps_update_geoip') == true ) {
|
429 |
+
echo wp_statistics_download_geoip();
|
430 |
+
}
|
431 |
+
|
432 |
include_once dirname( __FILE__ ) . '/includes/setting/settings.php';
|
433 |
|
434 |
}
|