Version Description
- Added: Show last visitor in Google Map.
- Added: Search visitor by IP in log pages.
- Added: Total line to charts with multiple values, like the search engine referrals.
- Added: Shortcodes. By Greg Ross
- Added: Dashicons to log pages.
- Fixes: Small bugs.
- Fixes: More debug warnings.
- Fixes: User access function level code always returned manage_options no matter what it was actaully set to.
- Updated: Hungarian (hu_HU) language.
- Updated: Turkish (tr_TR) language.
- Removed: Parameter from
wp_statistics_lastpostdate()
function and return date type became dynamic.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 5.0 |
Comparing to | |
See all releases |
Code changes from version 4.8.1 to 5.0
- assets/css/log.css +50 -27
- assets/images/icon_big.png +0 -0
- assets/images/marker.png +0 -0
- assets/images/visibility.png +0 -0
- includes/classes/hits.class.php +3 -1
- includes/classes/hits.geoip.class.php +3 -1
- includes/classes/statistics.class.php +11 -11
- includes/functions/country-codes.php +0 -2
- includes/functions/country-coordinates.php +245 -0
- includes/functions/functions.php +59 -10
- includes/log/exclusions.php +21 -1
- includes/log/last-search.php +15 -5
- includes/log/last-visitor.php +53 -50
- includes/log/log.php +164 -34
- includes/log/search-statistics.php +20 -2
- includes/log/top-countries.php +1 -1
- includes/log/top-referring.php +13 -5
- includes/optimization/templates/wps-optimization-updates.php +41 -0
- includes/settings/widget.php +0 -9
- includes/settings/wps-settings.php +53 -1
- languages/default.mo +0 -0
- languages/default.po +165 -98
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +185 -100
- readme.txt +67 -25
- screenshot-1.png +0 -0
- shortcode.php +73 -0
- widget.php +1 -5
- wp-statistics.php +14 -14
assets/css/log.css
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
#right-log {
|
2 |
width: 31%;
|
3 |
}
|
@@ -6,35 +7,32 @@
|
|
6 |
width: 68%;
|
7 |
}
|
8 |
@media screen and (max-width: 960px) {
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
}
|
17 |
-
|
18 |
@media screen and (max-width: 758px) {
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
}
|
27 |
-
|
28 |
@media screen and (max-width: 524px) {
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
}
|
37 |
-
|
38 |
#last-log {
|
39 |
width: 100%;
|
40 |
}
|
@@ -98,6 +96,25 @@
|
|
98 |
text-align: left;
|
99 |
white-space: nowrap;
|
100 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
.log-latest {
|
102 |
}
|
103 |
.log-item {
|
@@ -109,6 +126,9 @@
|
|
109 |
.log-item:hover {
|
110 |
background: none repeat scroll 0 0 #EEEEEE;
|
111 |
}
|
|
|
|
|
|
|
112 |
.log-referred {
|
113 |
float: left;
|
114 |
overflow: hidden;
|
@@ -127,13 +147,16 @@
|
|
127 |
float: left;
|
128 |
margin: 0 2px;
|
129 |
}
|
|
|
|
|
|
|
130 |
.log-url {
|
131 |
direction: ltr;
|
132 |
float: left;
|
133 |
font-size: 10px;
|
134 |
-
|
135 |
white-space: nowrap;
|
136 |
-
width:
|
137 |
}
|
138 |
.log-url img {
|
139 |
}
|
@@ -161,7 +184,7 @@
|
|
161 |
#visits-stats {
|
162 |
direction: ltr;
|
163 |
}
|
164 |
-
#exclusion-stats{
|
165 |
direction: ltr;
|
166 |
}
|
167 |
#search-stats {
|
1 |
+
|
2 |
#right-log {
|
3 |
width: 31%;
|
4 |
}
|
7 |
width: 68%;
|
8 |
}
|
9 |
@media screen and (max-width: 960px) {
|
10 |
+
#right-log {
|
11 |
+
width: 35%;
|
12 |
+
}
|
13 |
+
#left-log {
|
14 |
+
margin: 0 0 0 1%;
|
15 |
+
width: 63%;
|
16 |
+
}
|
17 |
}
|
|
|
18 |
@media screen and (max-width: 758px) {
|
19 |
+
#right-log {
|
20 |
+
width: 100%;
|
21 |
+
}
|
22 |
+
#left-log {
|
23 |
+
margin: 0 0 0 1%;
|
24 |
+
width: 100%;
|
25 |
+
}
|
26 |
}
|
|
|
27 |
@media screen and (max-width: 524px) {
|
28 |
+
#right-log {
|
29 |
+
width: 100%;
|
30 |
+
}
|
31 |
+
#left-log {
|
32 |
+
margin: 0 0 0 1%;
|
33 |
+
width: 100%;
|
34 |
+
}
|
35 |
}
|
|
|
36 |
#last-log {
|
37 |
width: 100%;
|
38 |
}
|
96 |
text-align: left;
|
97 |
white-space: nowrap;
|
98 |
}
|
99 |
+
#map_canvas {
|
100 |
+
direction: ltr;
|
101 |
+
height: 380px;
|
102 |
+
width: 100%;
|
103 |
+
}
|
104 |
+
.map-html-marker {
|
105 |
+
max-height: 170px;
|
106 |
+
width: 200px;
|
107 |
+
}
|
108 |
+
.map-html-marker p {
|
109 |
+
border-bottom: 1px dashed #EFEFEF;
|
110 |
+
font-size: 10px;
|
111 |
+
margin: 2px 0;
|
112 |
+
padding: 3px 0;
|
113 |
+
text-align: left;
|
114 |
+
}
|
115 |
+
.map-html-marker p:last-child {
|
116 |
+
border-bottom: 0 none;
|
117 |
+
}
|
118 |
.log-latest {
|
119 |
}
|
120 |
.log-item {
|
126 |
.log-item:hover {
|
127 |
background: none repeat scroll 0 0 #EEEEEE;
|
128 |
}
|
129 |
+
.show-map {
|
130 |
+
float: left;
|
131 |
+
}
|
132 |
.log-referred {
|
133 |
float: left;
|
134 |
overflow: hidden;
|
147 |
float: left;
|
148 |
margin: 0 2px;
|
149 |
}
|
150 |
+
.log-agent {
|
151 |
+
float: left;
|
152 |
+
}
|
153 |
.log-url {
|
154 |
direction: ltr;
|
155 |
float: left;
|
156 |
font-size: 10px;
|
157 |
+
margin: 0 0 0 2px;
|
158 |
white-space: nowrap;
|
159 |
+
width: 85%;
|
160 |
}
|
161 |
.log-url img {
|
162 |
}
|
184 |
#visits-stats {
|
185 |
direction: ltr;
|
186 |
}
|
187 |
+
#exclusion-stats {
|
188 |
direction: ltr;
|
189 |
}
|
190 |
#search-stats {
|
assets/images/icon_big.png
DELETED
Binary file
|
assets/images/marker.png
ADDED
Binary file
|
assets/images/visibility.png
ADDED
Binary file
|
includes/classes/hits.class.php
CHANGED
@@ -119,13 +119,15 @@
|
|
119 |
// determines if a network in the form of 192.168.17.1/16 or
|
120 |
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
121 |
$ip_arr = explode('/', $network);
|
|
|
|
|
|
|
122 |
$network_long = ip2long($ip_arr[0]);
|
123 |
|
124 |
$x = ip2long($ip_arr[1]);
|
125 |
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
|
126 |
$ip_long = ip2long($ip);
|
127 |
|
128 |
-
// echo ">".$ip_arr[1]."> ".decbin($mask)."\n";
|
129 |
return ($ip_long & $mask) == ($network_long & $mask);
|
130 |
}
|
131 |
|
119 |
// determines if a network in the form of 192.168.17.1/16 or
|
120 |
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
121 |
$ip_arr = explode('/', $network);
|
122 |
+
|
123 |
+
if( !isset( $ip_arr[1] ) ) { $ip_arr[1] = 0; }
|
124 |
+
|
125 |
$network_long = ip2long($ip_arr[0]);
|
126 |
|
127 |
$x = ip2long($ip_arr[1]);
|
128 |
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
|
129 |
$ip_long = ip2long($ip);
|
130 |
|
|
|
131 |
return ($ip_long & $mask) == ($network_long & $mask);
|
132 |
}
|
133 |
|
includes/classes/hits.geoip.class.php
CHANGED
@@ -123,13 +123,15 @@
|
|
123 |
// determines if a network in the form of 192.168.17.1/16 or
|
124 |
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
125 |
$ip_arr = explode('/', $network);
|
|
|
|
|
|
|
126 |
$network_long = ip2long($ip_arr[0]);
|
127 |
|
128 |
$x = ip2long($ip_arr[1]);
|
129 |
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
|
130 |
$ip_long = ip2long($ip);
|
131 |
|
132 |
-
// echo ">".$ip_arr[1]."> ".decbin($mask)."\n";
|
133 |
return ($ip_long & $mask) == ($network_long & $mask);
|
134 |
}
|
135 |
|
123 |
// determines if a network in the form of 192.168.17.1/16 or
|
124 |
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
125 |
$ip_arr = explode('/', $network);
|
126 |
+
|
127 |
+
if( !isset( $ip_arr[1] ) ) { $ip_arr[1] = 0; }
|
128 |
+
|
129 |
$network_long = ip2long($ip_arr[0]);
|
130 |
|
131 |
$x = ip2long($ip_arr[1]);
|
132 |
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
|
133 |
$ip_long = ip2long($ip);
|
134 |
|
|
|
135 |
return ($ip_long & $mask) == ($network_long & $mask);
|
136 |
}
|
137 |
|
includes/classes/statistics.class.php
CHANGED
@@ -107,16 +107,16 @@
|
|
107 |
}
|
108 |
|
109 |
public function get_Referred($default_referr = false) {
|
|
|
|
|
|
|
|
|
110 |
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
}
|
117 |
-
} else {
|
118 |
-
return esc_sql(strip_tags($_SERVER['HTTP_REFERER']));
|
119 |
-
}
|
120 |
}
|
121 |
|
122 |
public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
|
@@ -128,10 +128,10 @@
|
|
128 |
}
|
129 |
}
|
130 |
|
131 |
-
public function Current_Date_i18n($format = 'Y-m-d H:i:s', $strtotime = null) {
|
132 |
|
133 |
if( $strtotime ) {
|
134 |
-
return date_i18n($format, strtotime("{$strtotime}
|
135 |
} else {
|
136 |
return date_i18n($format) ;
|
137 |
}
|
107 |
}
|
108 |
|
109 |
public function get_Referred($default_referr = false) {
|
110 |
+
$referr = '';
|
111 |
+
|
112 |
+
if( isset($_SERVER['HTTP_REFERER']) ) { $referr = $_SERVER['HTTP_REFERER']; }
|
113 |
+
if( $default_referr ) { $referr = $default_referr; }
|
114 |
|
115 |
+
$referr = esc_sql(strip_tags($referr) );
|
116 |
+
|
117 |
+
if( !$referr ) { $referr = get_bloginfo('url'); }
|
118 |
+
|
119 |
+
return $referr;
|
|
|
|
|
|
|
|
|
120 |
}
|
121 |
|
122 |
public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
|
128 |
}
|
129 |
}
|
130 |
|
131 |
+
public function Current_Date_i18n($format = 'Y-m-d H:i:s', $strtotime = null, $day=' day') {
|
132 |
|
133 |
if( $strtotime ) {
|
134 |
+
return date_i18n($format, strtotime("{$strtotime}{$day}") ) ;
|
135 |
} else {
|
136 |
return date_i18n($format) ;
|
137 |
}
|
includes/functions/country-codes.php
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
$ISOCountryCode['000'] = "Unknown";
|
4 |
$ISOCountryCode['AF'] = "Afghanistan";
|
5 |
$ISOCountryCode['AX'] = "�land Islands";
|
@@ -281,5 +280,4 @@ $ISOCountryCode['YU'] = "Yugoslavia";
|
|
281 |
$ISOCountryCode['ZR'] = "Zaire";
|
282 |
$ISOCountryCode['ZM'] = "Zambia";
|
283 |
$ISOCountryCode['ZW'] = "Zimbabwe";
|
284 |
-
|
285 |
?>
|
1 |
<?php
|
|
|
2 |
$ISOCountryCode['000'] = "Unknown";
|
3 |
$ISOCountryCode['AF'] = "Afghanistan";
|
4 |
$ISOCountryCode['AX'] = "�land Islands";
|
280 |
$ISOCountryCode['ZR'] = "Zaire";
|
281 |
$ISOCountryCode['ZM'] = "Zambia";
|
282 |
$ISOCountryCode['ZW'] = "Zimbabwe";
|
|
|
283 |
?>
|
includes/functions/country-coordinates.php
ADDED
@@ -0,0 +1,245 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$CountryCoordinates["AF"] = array("lat" => "33", "lng" => "65");
|
3 |
+
$CountryCoordinates["AL"] = array("lat" => "41", "lng" => "20");
|
4 |
+
$CountryCoordinates["DZ"] = array("lat" => "28", "lng" => "3");
|
5 |
+
$CountryCoordinates["AS"] = array("lat" => "-14.3333", "lng" => "-170");
|
6 |
+
$CountryCoordinates["AD"] = array("lat" => "42.5", "lng" => "1.6");
|
7 |
+
$CountryCoordinates["AO"] = array("lat" => "-12.5", "lng" => "18.5");
|
8 |
+
$CountryCoordinates["AI"] = array("lat" => "18.25", "lng" => "-63.1667");
|
9 |
+
$CountryCoordinates["AQ"] = array("lat" => "-90", "lng" => "0");
|
10 |
+
$CountryCoordinates["AG"] = array("lat" => "17.05", "lng" => "-61.8");
|
11 |
+
$CountryCoordinates["AR"] = array("lat" => "-34", "lng" => "-64");
|
12 |
+
$CountryCoordinates["AM"] = array("lat" => "40", "lng" => "45");
|
13 |
+
$CountryCoordinates["AW"] = array("lat" => "12.5", "lng" => "-69.9667");
|
14 |
+
$CountryCoordinates["AU"] = array("lat" => "-27", "lng" => "133");
|
15 |
+
$CountryCoordinates["AT"] = array("lat" => "47.3333", "lng" => "13.3333");
|
16 |
+
$CountryCoordinates["AZ"] = array("lat" => "40.5", "lng" => "47.5");
|
17 |
+
$CountryCoordinates["BS"] = array("lat" => "24.25", "lng" => "-76");
|
18 |
+
$CountryCoordinates["BH"] = array("lat" => "26", "lng" => "50.55");
|
19 |
+
$CountryCoordinates["BD"] = array("lat" => "24", "lng" => "90");
|
20 |
+
$CountryCoordinates["BB"] = array("lat" => "13.1667", "lng" => "-59.5333");
|
21 |
+
$CountryCoordinates["BY"] = array("lat" => "53", "lng" => "28");
|
22 |
+
$CountryCoordinates["BE"] = array("lat" => "50.8333", "lng" => "4");
|
23 |
+
$CountryCoordinates["BZ"] = array("lat" => "17.25", "lng" => "-88.75");
|
24 |
+
$CountryCoordinates["BJ"] = array("lat" => "9.5", "lng" => "2.25");
|
25 |
+
$CountryCoordinates["BM"] = array("lat" => "32.3333", "lng" => "-64.75");
|
26 |
+
$CountryCoordinates["BT"] = array("lat" => "27.5", "lng" => "90.5");
|
27 |
+
$CountryCoordinates["BO"] = array("lat" => "-17", "lng" => "-65");
|
28 |
+
$CountryCoordinates["BA"] = array("lat" => "44", "lng" => "18");
|
29 |
+
$CountryCoordinates["BW"] = array("lat" => "-22", "lng" => "24");
|
30 |
+
$CountryCoordinates["BV"] = array("lat" => "-54.4333", "lng" => "3.4");
|
31 |
+
$CountryCoordinates["BR"] = array("lat" => "-10", "lng" => "-55");
|
32 |
+
$CountryCoordinates["IO"] = array("lat" => "-6", "lng" => "71.5");
|
33 |
+
$CountryCoordinates["BN"] = array("lat" => "4.5", "lng" => "114.6667");
|
34 |
+
$CountryCoordinates["BG"] = array("lat" => "43", "lng" => "25");
|
35 |
+
$CountryCoordinates["BF"] = array("lat" => "13", "lng" => "-2");
|
36 |
+
$CountryCoordinates["BI"] = array("lat" => "-3.5", "lng" => "30");
|
37 |
+
$CountryCoordinates["KH"] = array("lat" => "13", "lng" => "105");
|
38 |
+
$CountryCoordinates["CM"] = array("lat" => "6", "lng" => "12");
|
39 |
+
$CountryCoordinates["CA"] = array("lat" => "60", "lng" => "-95");
|
40 |
+
$CountryCoordinates["CV"] = array("lat" => "16", "lng" => "-24");
|
41 |
+
$CountryCoordinates["KY"] = array("lat" => "19.5", "lng" => "-80.5");
|
42 |
+
$CountryCoordinates["CF"] = array("lat" => "7", "lng" => "21");
|
43 |
+
$CountryCoordinates["TD"] = array("lat" => "15", "lng" => "19");
|
44 |
+
$CountryCoordinates["CL"] = array("lat" => "-30", "lng" => "-71");
|
45 |
+
$CountryCoordinates["CN"] = array("lat" => "35", "lng" => "105");
|
46 |
+
$CountryCoordinates["CX"] = array("lat" => "-10.5", "lng" => "105.6667");
|
47 |
+
$CountryCoordinates["CC"] = array("lat" => "-12.5", "lng" => "96.8333");
|
48 |
+
$CountryCoordinates["CO"] = array("lat" => "4", "lng" => "-72");
|
49 |
+
$CountryCoordinates["KM"] = array("lat" => "-12.1667", "lng" => "44.25");
|
50 |
+
$CountryCoordinates["CG"] = array("lat" => "-1", "lng" => "15");
|
51 |
+
$CountryCoordinates["CD"] = array("lat" => "0", "lng" => "25");
|
52 |
+
$CountryCoordinates["CK"] = array("lat" => "-21.2333", "lng" => "-159.7667");
|
53 |
+
$CountryCoordinates["CR"] = array("lat" => "10", "lng" => "-84");
|
54 |
+
$CountryCoordinates["CI"] = array("lat" => "8", "lng" => "-5");
|
55 |
+
$CountryCoordinates["HR"] = array("lat" => "45.1667", "lng" => "15.5");
|
56 |
+
$CountryCoordinates["CU"] = array("lat" => "21.5", "lng" => "-80");
|
57 |
+
$CountryCoordinates["CY"] = array("lat" => "35", "lng" => "33");
|
58 |
+
$CountryCoordinates["CZ"] = array("lat" => "49.75", "lng" => "15.5");
|
59 |
+
$CountryCoordinates["DK"] = array("lat" => "56", "lng" => "10");
|
60 |
+
$CountryCoordinates["DJ"] = array("lat" => "11.5", "lng" => "43");
|
61 |
+
$CountryCoordinates["DM"] = array("lat" => "15.4167", "lng" => "-61.3333");
|
62 |
+
$CountryCoordinates["DO"] = array("lat" => "19", "lng" => "-70.6667");
|
63 |
+
$CountryCoordinates["EC"] = array("lat" => "-2", "lng" => "-77.5");
|
64 |
+
$CountryCoordinates["EG"] = array("lat" => "27", "lng" => "30");
|
65 |
+
$CountryCoordinates["SV"] = array("lat" => "13.8333", "lng" => "-88.9167");
|
66 |
+
$CountryCoordinates["GQ"] = array("lat" => "2", "lng" => "10");
|
67 |
+
$CountryCoordinates["ER"] = array("lat" => "15", "lng" => "39");
|
68 |
+
$CountryCoordinates["EE"] = array("lat" => "59", "lng" => "26");
|
69 |
+
$CountryCoordinates["ET"] = array("lat" => "8", "lng" => "38");
|
70 |
+
$CountryCoordinates["FK"] = array("lat" => "-51.75", "lng" => "-59");
|
71 |
+
$CountryCoordinates["FO"] = array("lat" => "62", "lng" => "-7");
|
72 |
+
$CountryCoordinates["FJ"] = array("lat" => "-18", "lng" => "175");
|
73 |
+
$CountryCoordinates["FI"] = array("lat" => "64", "lng" => "26");
|
74 |
+
$CountryCoordinates["FR"] = array("lat" => "46", "lng" => "2");
|
75 |
+
$CountryCoordinates["GF"] = array("lat" => "4", "lng" => "-53");
|
76 |
+
$CountryCoordinates["PF"] = array("lat" => "-15", "lng" => "-140");
|
77 |
+
$CountryCoordinates["TF"] = array("lat" => "-43", "lng" => "67");
|
78 |
+
$CountryCoordinates["GA"] = array("lat" => "-1", "lng" => "11.75");
|
79 |
+
$CountryCoordinates["GM"] = array("lat" => "13.4667", "lng" => "-16.5667");
|
80 |
+
$CountryCoordinates["GE"] = array("lat" => "42", "lng" => "43.5");
|
81 |
+
$CountryCoordinates["DE"] = array("lat" => "51", "lng" => "9");
|
82 |
+
$CountryCoordinates["GH"] = array("lat" => "8", "lng" => "-2");
|
83 |
+
$CountryCoordinates["GI"] = array("lat" => "36.1833", "lng" => "-5.3667");
|
84 |
+
$CountryCoordinates["GR"] = array("lat" => "39", "lng" => "22");
|
85 |
+
$CountryCoordinates["GL"] = array("lat" => "72", "lng" => "-40");
|
86 |
+
$CountryCoordinates["GD"] = array("lat" => "12.1167", "lng" => "-61.6667");
|
87 |
+
$CountryCoordinates["GP"] = array("lat" => "16.25", "lng" => "-61.5833");
|
88 |
+
$CountryCoordinates["GU"] = array("lat" => "13.4667", "lng" => "144.7833");
|
89 |
+
$CountryCoordinates["GT"] = array("lat" => "15.5", "lng" => "-90.25");
|
90 |
+
$CountryCoordinates["GG"] = array("lat" => "49.5", "lng" => "-2.56");
|
91 |
+
$CountryCoordinates["GN"] = array("lat" => "11", "lng" => "-10");
|
92 |
+
$CountryCoordinates["GW"] = array("lat" => "12", "lng" => "-15");
|
93 |
+
$CountryCoordinates["GY"] = array("lat" => "5", "lng" => "-59");
|
94 |
+
$CountryCoordinates["HT"] = array("lat" => "19", "lng" => "-72.4167");
|
95 |
+
$CountryCoordinates["HM"] = array("lat" => "-53.1", "lng" => "72.5167");
|
96 |
+
$CountryCoordinates["VA"] = array("lat" => "41.9", "lng" => "12.45");
|
97 |
+
$CountryCoordinates["HN"] = array("lat" => "15", "lng" => "-86.5");
|
98 |
+
$CountryCoordinates["HK"] = array("lat" => "22.25", "lng" => "114.1667");
|
99 |
+
$CountryCoordinates["HU"] = array("lat" => "47", "lng" => "20");
|
100 |
+
$CountryCoordinates["IS"] = array("lat" => "65", "lng" => "-18");
|
101 |
+
$CountryCoordinates["IN"] = array("lat" => "20", "lng" => "77");
|
102 |
+
$CountryCoordinates["ID"] = array("lat" => "-5", "lng" => "120");
|
103 |
+
$CountryCoordinates["IR"] = array("lat" => "32", "lng" => "53");
|
104 |
+
$CountryCoordinates["IQ"] = array("lat" => "33", "lng" => "44");
|
105 |
+
$CountryCoordinates["IE"] = array("lat" => "53", "lng" => "-8");
|
106 |
+
$CountryCoordinates["IM"] = array("lat" => "54.23", "lng" => "-4.55");
|
107 |
+
$CountryCoordinates["IL"] = array("lat" => "31.5", "lng" => "34.75");
|
108 |
+
$CountryCoordinates["IT"] = array("lat" => "42.8333", "lng" => "12.8333");
|
109 |
+
$CountryCoordinates["JM"] = array("lat" => "18.25", "lng" => "-77.5");
|
110 |
+
$CountryCoordinates["JP"] = array("lat" => "36", "lng" => "138");
|
111 |
+
$CountryCoordinates["JE"] = array("lat" => "49.21", "lng" => "-2.13");
|
112 |
+
$CountryCoordinates["JO"] = array("lat" => "31", "lng" => "36");
|
113 |
+
$CountryCoordinates["KZ"] = array("lat" => "48", "lng" => "68");
|
114 |
+
$CountryCoordinates["KE"] = array("lat" => "1", "lng" => "38");
|
115 |
+
$CountryCoordinates["KI"] = array("lat" => "1.4167", "lng" => "173");
|
116 |
+
$CountryCoordinates["KP"] = array("lat" => "40", "lng" => "127");
|
117 |
+
$CountryCoordinates["KR"] = array("lat" => "37", "lng" => "127.5");
|
118 |
+
$CountryCoordinates["KW"] = array("lat" => "29.3375", "lng" => "47.6581");
|
119 |
+
$CountryCoordinates["KG"] = array("lat" => "41", "lng" => "75");
|
120 |
+
$CountryCoordinates["LA"] = array("lat" => "18", "lng" => "105");
|
121 |
+
$CountryCoordinates["LV"] = array("lat" => "57", "lng" => "25");
|
122 |
+
$CountryCoordinates["LB"] = array("lat" => "33.8333", "lng" => "35.8333");
|
123 |
+
$CountryCoordinates["LS"] = array("lat" => "-29.5", "lng" => "28.5");
|
124 |
+
$CountryCoordinates["LR"] = array("lat" => "6.5", "lng" => "-9.5");
|
125 |
+
$CountryCoordinates["LY"] = array("lat" => "25", "lng" => "17");
|
126 |
+
$CountryCoordinates["LI"] = array("lat" => "47.1667", "lng" => "9.5333");
|
127 |
+
$CountryCoordinates["LT"] = array("lat" => "56", "lng" => "24");
|
128 |
+
$CountryCoordinates["LU"] = array("lat" => "49.75", "lng" => "6.1667");
|
129 |
+
$CountryCoordinates["MO"] = array("lat" => "22.1667", "lng" => "113.55");
|
130 |
+
$CountryCoordinates["MK"] = array("lat" => "41.8333", "lng" => "22");
|
131 |
+
$CountryCoordinates["MG"] = array("lat" => "-20", "lng" => "47");
|
132 |
+
$CountryCoordinates["MW"] = array("lat" => "-13.5", "lng" => "34");
|
133 |
+
$CountryCoordinates["MY"] = array("lat" => "2.5", "lng" => "112.5");
|
134 |
+
$CountryCoordinates["MV"] = array("lat" => "3.25", "lng" => "73");
|
135 |
+
$CountryCoordinates["ML"] = array("lat" => "17", "lng" => "-4");
|
136 |
+
$CountryCoordinates["MT"] = array("lat" => "35.8333", "lng" => "14.5833");
|
137 |
+
$CountryCoordinates["MH"] = array("lat" => "9", "lng" => "168");
|
138 |
+
$CountryCoordinates["MQ"] = array("lat" => "14.6667", "lng" => "-61");
|
139 |
+
$CountryCoordinates["MR"] = array("lat" => "20", "lng" => "-12");
|
140 |
+
$CountryCoordinates["MU"] = array("lat" => "-20.2833", "lng" => "57.55");
|
141 |
+
$CountryCoordinates["YT"] = array("lat" => "-12.8333", "lng" => "45.1667");
|
142 |
+
$CountryCoordinates["MX"] = array("lat" => "23", "lng" => "-102");
|
143 |
+
$CountryCoordinates["FM"] = array("lat" => "6.9167", "lng" => "158.25");
|
144 |
+
$CountryCoordinates["MD"] = array("lat" => "47", "lng" => "29");
|
145 |
+
$CountryCoordinates["MC"] = array("lat" => "43.7333", "lng" => "7.4");
|
146 |
+
$CountryCoordinates["MN"] = array("lat" => "46", "lng" => "105");
|
147 |
+
$CountryCoordinates["ME"] = array("lat" => "42", "lng" => "19");
|
148 |
+
$CountryCoordinates["MS"] = array("lat" => "16.75", "lng" => "-62.2");
|
149 |
+
$CountryCoordinates["MA"] = array("lat" => "32", "lng" => "-5");
|
150 |
+
$CountryCoordinates["MZ"] = array("lat" => "-18.25", "lng" => "35");
|
151 |
+
$CountryCoordinates["MM"] = array("lat" => "22", "lng" => "98");
|
152 |
+
$CountryCoordinates["NA"] = array("lat" => "-22", "lng" => "17");
|
153 |
+
$CountryCoordinates["NR"] = array("lat" => "-0.5333", "lng" => "166.9167");
|
154 |
+
$CountryCoordinates["NP"] = array("lat" => "28", "lng" => "84");
|
155 |
+
$CountryCoordinates["NL"] = array("lat" => "52.5", "lng" => "5.75");
|
156 |
+
$CountryCoordinates["AN"] = array("lat" => "12.25", "lng" => "-68.75");
|
157 |
+
$CountryCoordinates["NC"] = array("lat" => "-21.5", "lng" => "165.5");
|
158 |
+
$CountryCoordinates["NZ"] = array("lat" => "-41", "lng" => "174");
|
159 |
+
$CountryCoordinates["NI"] = array("lat" => "13", "lng" => "-85");
|
160 |
+
$CountryCoordinates["NE"] = array("lat" => "16", "lng" => "8");
|
161 |
+
$CountryCoordinates["NG"] = array("lat" => "10", "lng" => "8");
|
162 |
+
$CountryCoordinates["NU"] = array("lat" => "-19.0333", "lng" => "-169.8667");
|
163 |
+
$CountryCoordinates["NF"] = array("lat" => "-29.0333", "lng" => "167.95");
|
164 |
+
$CountryCoordinates["MP"] = array("lat" => "15.2", "lng" => "145.75");
|
165 |
+
$CountryCoordinates["NO"] = array("lat" => "62", "lng" => "10");
|
166 |
+
$CountryCoordinates["OM"] = array("lat" => "21", "lng" => "57");
|
167 |
+
$CountryCoordinates["PK"] = array("lat" => "30", "lng" => "70");
|
168 |
+
$CountryCoordinates["PW"] = array("lat" => "7.5", "lng" => "134.5");
|
169 |
+
$CountryCoordinates["PS"] = array("lat" => "32", "lng" => "35.25");
|
170 |
+
$CountryCoordinates["PA"] = array("lat" => "9", "lng" => "-80");
|
171 |
+
$CountryCoordinates["PG"] = array("lat" => "-6", "lng" => "147");
|
172 |
+
$CountryCoordinates["PY"] = array("lat" => "-23", "lng" => "-58");
|
173 |
+
$CountryCoordinates["PE"] = array("lat" => "-10", "lng" => "-76");
|
174 |
+
$CountryCoordinates["PH"] = array("lat" => "13", "lng" => "122");
|
175 |
+
$CountryCoordinates["PN"] = array("lat" => "-24.7", "lng" => "-127.4");
|
176 |
+
$CountryCoordinates["PL"] = array("lat" => "52", "lng" => "20");
|
177 |
+
$CountryCoordinates["PT"] = array("lat" => "39.5", "lng" => "-8");
|
178 |
+
$CountryCoordinates["PR"] = array("lat" => "18.25", "lng" => "-66.5");
|
179 |
+
$CountryCoordinates["QA"] = array("lat" => "25.5", "lng" => "51.25");
|
180 |
+
$CountryCoordinates["RE"] = array("lat" => "-21.1", "lng" => "55.6");
|
181 |
+
$CountryCoordinates["RO"] = array("lat" => "46", "lng" => "25");
|
182 |
+
$CountryCoordinates["RU"] = array("lat" => "60", "lng" => "100");
|
183 |
+
$CountryCoordinates["RW"] = array("lat" => "-2", "lng" => "30");
|
184 |
+
$CountryCoordinates["SH"] = array("lat" => "-15.9333", "lng" => "-5.7");
|
185 |
+
$CountryCoordinates["KN"] = array("lat" => "17.3333", "lng" => "-62.75");
|
186 |
+
$CountryCoordinates["LC"] = array("lat" => "13.8833", "lng" => "-61.1333");
|
187 |
+
$CountryCoordinates["PM"] = array("lat" => "46.8333", "lng" => "-56.3333");
|
188 |
+
$CountryCoordinates["VC"] = array("lat" => "13.25", "lng" => "-61.2");
|
189 |
+
$CountryCoordinates["WS"] = array("lat" => "-13.5833", "lng" => "-172.3333");
|
190 |
+
$CountryCoordinates["SM"] = array("lat" => "43.7667", "lng" => "12.4167");
|
191 |
+
$CountryCoordinates["ST"] = array("lat" => "1", "lng" => "7");
|
192 |
+
$CountryCoordinates["SA"] = array("lat" => "25", "lng" => "45");
|
193 |
+
$CountryCoordinates["SN"] = array("lat" => "14", "lng" => "-14");
|
194 |
+
$CountryCoordinates["RS"] = array("lat" => "44", "lng" => "21");
|
195 |
+
$CountryCoordinates["SC"] = array("lat" => "-4.5833", "lng" => "55.6667");
|
196 |
+
$CountryCoordinates["SL"] = array("lat" => "8.5", "lng" => "-11.5");
|
197 |
+
$CountryCoordinates["SG"] = array("lat" => "1.3667", "lng" => "103.8");
|
198 |
+
$CountryCoordinates["SK"] = array("lat" => "48.6667", "lng" => "19.5");
|
199 |
+
$CountryCoordinates["SI"] = array("lat" => "46", "lng" => "15");
|
200 |
+
$CountryCoordinates["SB"] = array("lat" => "-8", "lng" => "159");
|
201 |
+
$CountryCoordinates["SO"] = array("lat" => "10", "lng" => "49");
|
202 |
+
$CountryCoordinates["ZA"] = array("lat" => "-29", "lng" => "24");
|
203 |
+
$CountryCoordinates["GS"] = array("lat" => "-54.5", "lng" => "-37");
|
204 |
+
$CountryCoordinates["ES"] = array("lat" => "40", "lng" => "-4");
|
205 |
+
$CountryCoordinates["LK"] = array("lat" => "7", "lng" => "81");
|
206 |
+
$CountryCoordinates["SD"] = array("lat" => "15", "lng" => "30");
|
207 |
+
$CountryCoordinates["SR"] = array("lat" => "4", "lng" => "-56");
|
208 |
+
$CountryCoordinates["SJ"] = array("lat" => "78", "lng" => "20");
|
209 |
+
$CountryCoordinates["SZ"] = array("lat" => "-26.5", "lng" => "31.5");
|
210 |
+
$CountryCoordinates["SE"] = array("lat" => "62", "lng" => "15");
|
211 |
+
$CountryCoordinates["CH"] = array("lat" => "47", "lng" => "8");
|
212 |
+
$CountryCoordinates["SY"] = array("lat" => "35", "lng" => "38");
|
213 |
+
$CountryCoordinates["TW"] = array("lat" => "23.5", "lng" => "121");
|
214 |
+
$CountryCoordinates["TJ"] = array("lat" => "39", "lng" => "71");
|
215 |
+
$CountryCoordinates["TZ"] = array("lat" => "-6", "lng" => "35");
|
216 |
+
$CountryCoordinates["TH"] = array("lat" => "15", "lng" => "100");
|
217 |
+
$CountryCoordinates["TL"] = array("lat" => "-8.55", "lng" => "125.5167");
|
218 |
+
$CountryCoordinates["TG"] = array("lat" => "8", "lng" => "1.1667");
|
219 |
+
$CountryCoordinates["TK"] = array("lat" => "-9", "lng" => "-172");
|
220 |
+
$CountryCoordinates["TO"] = array("lat" => "-20", "lng" => "-175");
|
221 |
+
$CountryCoordinates["TT"] = array("lat" => "11", "lng" => "-61");
|
222 |
+
$CountryCoordinates["TN"] = array("lat" => "34", "lng" => "9");
|
223 |
+
$CountryCoordinates["TR"] = array("lat" => "39", "lng" => "35");
|
224 |
+
$CountryCoordinates["TM"] = array("lat" => "40", "lng" => "60");
|
225 |
+
$CountryCoordinates["TC"] = array("lat" => "21.75", "lng" => "-71.5833");
|
226 |
+
$CountryCoordinates["TV"] = array("lat" => "-8", "lng" => "178");
|
227 |
+
$CountryCoordinates["UG"] = array("lat" => "1", "lng" => "32");
|
228 |
+
$CountryCoordinates["UA"] = array("lat" => "49", "lng" => "32");
|
229 |
+
$CountryCoordinates["AE"] = array("lat" => "24", "lng" => "54");
|
230 |
+
$CountryCoordinates["GB"] = array("lat" => "54", "lng" => "-2");
|
231 |
+
$CountryCoordinates["US"] = array("lat" => "38", "lng" => "-97");
|
232 |
+
$CountryCoordinates["UM"] = array("lat" => "19.2833", "lng" => "166.6");
|
233 |
+
$CountryCoordinates["UY"] = array("lat" => "-33", "lng" => "-56");
|
234 |
+
$CountryCoordinates["UZ"] = array("lat" => "41", "lng" => "64");
|
235 |
+
$CountryCoordinates["VU"] = array("lat" => "-16", "lng" => "167");
|
236 |
+
$CountryCoordinates["VE"] = array("lat" => "8", "lng" => "-66");
|
237 |
+
$CountryCoordinates["VN"] = array("lat" => "16", "lng" => "106");
|
238 |
+
$CountryCoordinates["VG"] = array("lat" => "18.5", "lng" => "-64.5");
|
239 |
+
$CountryCoordinates["VI"] = array("lat" => "18.3333", "lng" => "-64.8333");
|
240 |
+
$CountryCoordinates["WF"] = array("lat" => "-13.3", "lng" => "-176.2");
|
241 |
+
$CountryCoordinates["EH"] = array("lat" => "24.5", "lng" => "-13");
|
242 |
+
$CountryCoordinates["YE"] = array("lat" => "15", "lng" => "48");
|
243 |
+
$CountryCoordinates["ZM"] = array("lat" => "-15", "lng" => "30");
|
244 |
+
$CountryCoordinates["ZW"] = array("lat" => "-20", "lng" => "30");
|
245 |
+
?>
|
includes/functions/functions.php
CHANGED
@@ -432,23 +432,17 @@
|
|
432 |
return $result['total_users'];
|
433 |
}
|
434 |
|
435 |
-
function wp_statistics_lastpostdate(
|
436 |
|
437 |
global $wpdb;
|
438 |
|
|
|
|
|
439 |
$db_date = $wpdb->get_var("SELECT post_date FROM $wpdb->posts WHERE post_type='post' AND post_status='publish' ORDER BY ID DESC LIMIT 1");
|
440 |
|
441 |
$date_format = get_option('date_format');
|
442 |
|
443 |
-
|
444 |
-
|
445 |
-
return jdate($date_format, strtotime($db_date));
|
446 |
-
|
447 |
-
} else {
|
448 |
-
|
449 |
-
return date($date_format, strtotime($db_date));
|
450 |
-
|
451 |
-
}
|
452 |
}
|
453 |
|
454 |
function wp_statistics_average_post() {
|
@@ -506,4 +500,59 @@
|
|
506 |
// Return array
|
507 |
return $d;
|
508 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
}
|
432 |
return $result['total_users'];
|
433 |
}
|
434 |
|
435 |
+
function wp_statistics_lastpostdate() {
|
436 |
|
437 |
global $wpdb;
|
438 |
|
439 |
+
$wpstats = new WP_Statistics();
|
440 |
+
|
441 |
$db_date = $wpdb->get_var("SELECT post_date FROM $wpdb->posts WHERE post_type='post' AND post_status='publish' ORDER BY ID DESC LIMIT 1");
|
442 |
|
443 |
$date_format = get_option('date_format');
|
444 |
|
445 |
+
return $wpstats->Current_Date_i18n($date_format, $db_date, false);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
}
|
447 |
|
448 |
function wp_statistics_average_post() {
|
500 |
// Return array
|
501 |
return $d;
|
502 |
}
|
503 |
+
}
|
504 |
+
|
505 |
+
function wp_statistics_get_gmap_coordinate($country, $coordinate) {
|
506 |
+
|
507 |
+
global $CountryCoordinates;
|
508 |
+
|
509 |
+
if(get_option('wps_google_coordinates')) {
|
510 |
+
|
511 |
+
$api_url = "http://maps.google.com/maps/api/geocode/json?address={$country}&sensor=false";
|
512 |
+
|
513 |
+
if(function_exists('file_get_contents')) {
|
514 |
+
|
515 |
+
$json = file_get_contents($api_url);
|
516 |
+
$response = json_decode($json);
|
517 |
+
|
518 |
+
if($response->status != 'OK')
|
519 |
+
return false;
|
520 |
+
|
521 |
+
} elseif(function_exists('curl_version')) {
|
522 |
+
|
523 |
+
$ch = curl_init();
|
524 |
+
curl_setopt($ch, CURLOPT_URL, $api_url);
|
525 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
526 |
+
$response = json_decode(curl_exec($ch));
|
527 |
+
|
528 |
+
if($response->status != 'OK')
|
529 |
+
return false;
|
530 |
+
|
531 |
+
} else {
|
532 |
+
$response = false;
|
533 |
+
}
|
534 |
+
|
535 |
+
$result = $response->results[0]->geometry->location->{$coordinate};
|
536 |
+
|
537 |
+
} else {
|
538 |
+
|
539 |
+
include_once( dirname( __FILE__ ) . "/country-coordinates.php");
|
540 |
+
|
541 |
+
$result = $CountryCoordinates[$country][$coordinate];
|
542 |
+
}
|
543 |
+
|
544 |
+
if( $result == '' ) { $result = '0'; }
|
545 |
+
|
546 |
+
return $result;
|
547 |
+
}
|
548 |
+
|
549 |
+
function wp_statistics_icons($dashicons, $icon_name) {
|
550 |
+
|
551 |
+
global $wp_version;
|
552 |
+
|
553 |
+
if( version_compare( $wp_version, '3.8-RC', '>=' ) || version_compare( $wp_version, '3.8', '>=' ) ) {
|
554 |
+
return "<div class='dashicons {$dashicons}'></div>";
|
555 |
+
} else {
|
556 |
+
return "<img src='".plugins_url('wp-statistics/assets/images/')."{$icon_name}.png'/>";
|
557 |
+
}
|
558 |
}
|
includes/log/exclusions.php
CHANGED
@@ -9,21 +9,41 @@
|
|
9 |
}
|
10 |
|
11 |
$daysToDisplay = 20; if( array_key_exists('hitdays',$_GET) ) { if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; } }
|
|
|
|
|
12 |
|
13 |
$excluded_reasons = array('Robot','IP Match','Self Referral','Login Page','Admin Page','User Role');
|
14 |
$excluded_results = array();
|
15 |
$excluded_total = 0;
|
16 |
|
17 |
foreach( $excluded_reasons as $reason ) {
|
|
|
|
|
|
|
|
|
|
|
18 |
for( $i=$daysToDisplay; $i>=0; $i--) {
|
|
|
|
|
19 |
$thisdate = date('Y-m-d', strtotime('-'.$i." day") );
|
20 |
-
|
|
|
21 |
$query = "SELECT count FROM {$wpdb->prefix}statistics_exclusions WHERE reason = '{$thisreason}' AND date = '{$thisdate}'";
|
|
|
|
|
22 |
$excluded_results[$reason][$i] = $wpdb->get_var( $query );
|
|
|
|
|
23 |
if( $excluded_results[$reason][$i] < 1 ) { $excluded_results[$reason][$i] = 0; }
|
|
|
|
|
|
|
24 |
$excluded_total += $excluded_results[$reason][$i];
|
25 |
}
|
26 |
}
|
|
|
|
|
|
|
27 |
?>
|
28 |
<div class="wrap">
|
29 |
<?php screen_icon('options-general'); ?>
|
9 |
}
|
10 |
|
11 |
$daysToDisplay = 20; if( array_key_exists('hitdays',$_GET) ) { if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; } }
|
12 |
+
|
13 |
+
$total_stats = get_option( 'wps_chart_totals' );
|
14 |
|
15 |
$excluded_reasons = array('Robot','IP Match','Self Referral','Login Page','Admin Page','User Role');
|
16 |
$excluded_results = array();
|
17 |
$excluded_total = 0;
|
18 |
|
19 |
foreach( $excluded_reasons as $reason ) {
|
20 |
+
|
21 |
+
// The reasons array above is used both for display and internal purposes. Internally the values are all lower case but the array
|
22 |
+
// is created with mixed case so it looks nice to the user. Therefore we have to convert it to lower case here.
|
23 |
+
$thisreason = strtolower( $reason );
|
24 |
+
|
25 |
for( $i=$daysToDisplay; $i>=0; $i--) {
|
26 |
+
|
27 |
+
// We're looping through the days backwards, so let's fine out what date we want to look at.
|
28 |
$thisdate = date('Y-m-d', strtotime('-'.$i." day") );
|
29 |
+
|
30 |
+
// Create the SQL query string to get the data.
|
31 |
$query = "SELECT count FROM {$wpdb->prefix}statistics_exclusions WHERE reason = '{$thisreason}' AND date = '{$thisdate}'";
|
32 |
+
|
33 |
+
// Execute the query.
|
34 |
$excluded_results[$reason][$i] = $wpdb->get_var( $query );
|
35 |
+
|
36 |
+
// If we're returned an error or a FALSE value, then let's make sure it's set to a numerical 0.
|
37 |
if( $excluded_results[$reason][$i] < 1 ) { $excluded_results[$reason][$i] = 0; }
|
38 |
+
|
39 |
+
// We're totalling things up here for use later.
|
40 |
+
$excluded_results['total'][$i] += $excluded_results[$reason][$i];
|
41 |
$excluded_total += $excluded_results[$reason][$i];
|
42 |
}
|
43 |
}
|
44 |
+
|
45 |
+
// If the chart totals is enabled, cheat a little and just add another reason category to the list so it get's generated later.
|
46 |
+
if( $total_stats == 1 ) { $excluded_reasons[] = 'Total'; }
|
47 |
?>
|
48 |
<div class="wrap">
|
49 |
<?php screen_icon('options-general'); ?>
|
includes/log/last-search.php
CHANGED
@@ -94,20 +94,30 @@
|
|
94 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
95 |
|
96 |
foreach($result as $items) {
|
97 |
-
|
98 |
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
99 |
|
100 |
echo "<div class='log-item'>";
|
101 |
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
102 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
103 |
echo "<div class='clear'></div>";
|
104 |
-
echo "<a class='show-map'
|
|
|
|
|
|
|
|
|
105 |
|
106 |
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
107 |
-
echo "<a href='?page=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
|
109 |
-
echo "<a href='
|
110 |
-
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/assets/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
111 |
echo "</div>";
|
112 |
}
|
113 |
}
|
94 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
95 |
|
96 |
foreach($result as $items) {
|
|
|
97 |
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
98 |
|
99 |
echo "<div class='log-item'>";
|
100 |
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
101 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
102 |
echo "<div class='clear'></div>";
|
103 |
+
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'>".wp_statistics_icons('dashicons-location-alt', 'map')."</a>";
|
104 |
+
|
105 |
+
if(get_option('wps_geoip')) {
|
106 |
+
echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
|
107 |
+
}
|
108 |
|
109 |
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
110 |
+
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
|
111 |
+
|
112 |
+
if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
|
113 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
|
114 |
+
} else {
|
115 |
+
$agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
|
116 |
+
}
|
117 |
+
|
118 |
+
echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a></div>";
|
119 |
|
120 |
+
echo "<div class='log-url'><a href='{$items->referred}' title='{$items->referred}'>".wp_statistics_icons('dashicons-admin-links', 'link')." ".substr($items->referred, 0, 100)."[...]</a></div>";
|
|
|
121 |
echo "</div>";
|
122 |
}
|
123 |
}
|
includes/log/last-visitor.php
CHANGED
@@ -8,53 +8,60 @@
|
|
8 |
});
|
9 |
</script>
|
10 |
<?php
|
11 |
-
|
12 |
|
13 |
-
$
|
14 |
-
|
15 |
-
foreach(
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
$agent = $_GET['agent'];
|
21 |
-
}
|
22 |
-
else {
|
23 |
-
$agent = false;
|
24 |
}
|
25 |
|
26 |
-
if( $
|
27 |
-
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `
|
28 |
} else {
|
29 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
30 |
}
|
|
|
|
|
31 |
?>
|
32 |
<div class="wrap">
|
33 |
<?php screen_icon('options-general'); ?>
|
34 |
<h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
|
35 |
<ul class="subsubsub">
|
36 |
-
<li class="all"><a <?php if(!$
|
37 |
-
<?php
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
50 |
-
?>
|
51 |
</ul>
|
52 |
<div class="postbox-container" id="last-log">
|
53 |
<div class="metabox-holder">
|
54 |
<div class="meta-box-sortables">
|
55 |
<div class="postbox">
|
56 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
|
|
|
|
|
|
57 |
<h3 class="hndle"><span><?php _e('Recent Visitors', 'wp_statistics'); ?></span></h3>
|
|
|
58 |
<div class="inside">
|
59 |
<?php
|
60 |
// Instantiate pagination object with appropriate arguments
|
@@ -71,8 +78,8 @@
|
|
71 |
$end = $Pagination->getEntryEnd();
|
72 |
|
73 |
// Retrieve MySQL data
|
74 |
-
if( $
|
75 |
-
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `
|
76 |
} else {
|
77 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
78 |
}
|
@@ -83,30 +90,26 @@
|
|
83 |
echo "<div class='log-latest'>";
|
84 |
|
85 |
foreach($result as $items) {
|
86 |
-
|
87 |
echo "<div class='log-item'>";
|
88 |
-
echo "<div class='log-referred'><a href='
|
89 |
-
|
90 |
-
echo "</div>";
|
91 |
-
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a>";
|
92 |
-
echo "</div>";
|
93 |
echo "<div class='clear'></div>";
|
94 |
-
echo "<a class='show-map'
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
$
|
104 |
-
|
|
|
|
|
105 |
|
106 |
-
echo "<a href='
|
107 |
-
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/assets/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
108 |
echo "</div>";
|
109 |
-
|
110 |
}
|
111 |
|
112 |
echo "</div>";
|
8 |
});
|
9 |
</script>
|
10 |
<?php
|
11 |
+
include_once( dirname( __FILE__ ) . "/../functions/country-codes.php" );
|
12 |
|
13 |
+
$get = array('agent', 'ip');
|
14 |
+
|
15 |
+
foreach($get as $gets) {
|
16 |
+
if( array_key_exists($gets, $_GET) ) {
|
17 |
+
$_var = $gets;
|
18 |
+
$_get = $_GET[$gets];
|
19 |
+
}
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
|
22 |
+
if( $_get ) {
|
23 |
+
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE '%{$_get}%'");
|
24 |
} else {
|
25 |
$total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
26 |
}
|
27 |
+
|
28 |
+
$total_visitor = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
29 |
?>
|
30 |
<div class="wrap">
|
31 |
<?php screen_icon('options-general'); ?>
|
32 |
<h2><?php _e('Recent Visitors', 'wp_statistics'); ?></h2>
|
33 |
<ul class="subsubsub">
|
34 |
+
<li class="all"><a <?php if(!$_get) { echo 'class="current"'; } ?>href="?page=wps_visitors_menu"><?php _e('All', 'wp_statistics'); ?> <span class="count">(<?php echo $total_visitor; ?>)</span></a> |</li>
|
35 |
+
<?php
|
36 |
+
if($_var == 'agent') {
|
37 |
+
$Browsers = wp_statistics_ua_list();
|
38 |
+
$i = 0;
|
39 |
+
$Total = count( $Browsers );
|
40 |
+
$spacer = " |";
|
41 |
+
|
42 |
+
foreach( $Browsers as $Browser ) {
|
43 |
+
if($Browser == null) continue;
|
44 |
+
$i++;
|
45 |
+
if($_get == $Browser) { $current = 'class="current" '; } else { $current = ""; }
|
46 |
+
if( $i == $Total ) { $spacer = ""; }
|
47 |
+
echo "<li><a " . $current . "href='?page=wps_visitors_menu&agent=" . $Browser . "'> " . __($Browser, 'wp_statistics') ." <span class='count'>(" . wp_statistics_useragent($Browser) .")</span></a>" . $spacer . "</li>";
|
48 |
+
}
|
49 |
+
} elseif($_var) {
|
50 |
+
if($_get) { $current = 'class="current" '; } else { $current = ""; }
|
51 |
+
echo "<li><a {$current} href='?page=wps_visitors_menu&{$_var}={$_get}'>{$_get} <span class='count'>({$total})</span></a></li>";
|
52 |
}
|
53 |
+
?>
|
54 |
</ul>
|
55 |
<div class="postbox-container" id="last-log">
|
56 |
<div class="metabox-holder">
|
57 |
<div class="meta-box-sortables">
|
58 |
<div class="postbox">
|
59 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
60 |
+
<?php if($_var) { ?>
|
61 |
+
<h3 class="hndle"><span><?php _e('Search for', 'wp_statistics'); ?>: <?php echo $_get; ?></span></h3>
|
62 |
+
<?php } else { ?>
|
63 |
<h3 class="hndle"><span><?php _e('Recent Visitors', 'wp_statistics'); ?></span></h3>
|
64 |
+
<?php } ?>
|
65 |
<div class="inside">
|
66 |
<?php
|
67 |
// Instantiate pagination object with appropriate arguments
|
78 |
$end = $Pagination->getEntryEnd();
|
79 |
|
80 |
// Retrieve MySQL data
|
81 |
+
if( $_get ) {
|
82 |
+
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE '%{$_get}%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
83 |
} else {
|
84 |
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
85 |
}
|
90 |
echo "<div class='log-latest'>";
|
91 |
|
92 |
foreach($result as $items) {
|
|
|
93 |
echo "<div class='log-item'>";
|
94 |
+
echo "<div class='log-referred'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&ip={$items->ip}'>".wp_statistics_icons('dashicons-visibility', 'visibility')."{$items->ip}</a></div>";
|
95 |
+
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
|
|
|
|
|
|
96 |
echo "<div class='clear'></div>";
|
97 |
+
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'>".wp_statistics_icons('dashicons-location-alt', 'map')."</a>";
|
98 |
+
|
99 |
+
if(get_option('wps_geoip')) {
|
100 |
+
echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
|
101 |
+
}
|
102 |
+
|
103 |
+
if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
|
104 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
|
105 |
+
} else {
|
106 |
+
$agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
|
107 |
+
}
|
108 |
+
|
109 |
+
echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a></div>";
|
110 |
|
111 |
+
echo "<div class='log-url'><a href='{$items->referred}' title='{$items->referred}'>".wp_statistics_icons('dashicons-admin-links', 'link')." ".substr($items->referred, 0, 100)."[...]</a></div>";
|
|
|
112 |
echo "</div>";
|
|
|
113 |
}
|
114 |
|
115 |
echo "</div>";
|
includes/log/log.php
CHANGED
@@ -4,11 +4,11 @@
|
|
4 |
alert('<?php _e('To be added soon', 'wp_statistics'); ?>');
|
5 |
});
|
6 |
|
7 |
-
|
8 |
});
|
9 |
</script>
|
10 |
<?php
|
11 |
-
include_once( dirname( __FILE__ ) . "/../functions/country-codes.php"
|
12 |
|
13 |
$search_engines = wp_statistics_searchengine_list();
|
14 |
|
@@ -139,7 +139,7 @@
|
|
139 |
|
140 |
<div class="postbox">
|
141 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
142 |
-
<h3 class="hndle"><span><?php _e('Browsers', 'wp_statistics'); ?> <a href="?page=wps_browsers_menu"><?php
|
143 |
<div class="inside">
|
144 |
<script type="text/javascript">
|
145 |
jQuery(function () {
|
@@ -240,7 +240,7 @@
|
|
240 |
<div class="postbox">
|
241 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
242 |
<h3 class="hndle">
|
243 |
-
<span><?php _e('Top referring sites', 'wp_statistics'); ?></span> <a href="?page=wps_referers_menu"><?php
|
244 |
</h3>
|
245 |
<div class="inside">
|
246 |
<div class="inside">
|
@@ -285,7 +285,7 @@
|
|
285 |
<div class="postbox">
|
286 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
287 |
<h3 class="hndle">
|
288 |
-
<span><?php _e('Top 10 Countries', 'wp_statistics'); ?> <a href="?page=wps_countries_menu"><?php
|
289 |
</h3>
|
290 |
<div class="inside">
|
291 |
<div class="inside">
|
@@ -313,7 +313,7 @@
|
|
313 |
|
314 |
echo "<tr>";
|
315 |
echo "<td style='text-align: left'>$i</td>";
|
316 |
-
echo "<td style='text-align: left'><img src='".plugins_url('wp-statistics/assets/images/flags/' . $item . '.png')."' title='
|
317 |
echo "<td style='text-align: left'>{$ISOCountryCode[$item]}</td>";
|
318 |
echo "<td style='text-align: left'>{$value}</td>";
|
319 |
echo "</tr>";
|
@@ -336,7 +336,7 @@
|
|
336 |
<p><a href="http://teamwork.wp-parsi.com/projects/wp-statistics/" target="_blank"><?php _e('Translations', 'wp_statistics'); ?></a></p> |
|
337 |
<p><a href="http://wordpress.org/support/plugin/wp-statistics" target="_blank"><?php _e('Support', 'wp_statistics'); ?></a> / <a href="http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/" target="_blank"><?php _e('Farsi', 'wp_statistics'); ?></a></p> |
|
338 |
<p><a href="https://www.facebook.com/pages/Wordpress-Statistics/546922341997898?ref=stream" target="_blank"><?php _e('Facebook', 'wp_statistics'); ?></a></p> |
|
339 |
-
<p><a href="http://
|
340 |
</div>
|
341 |
|
342 |
<hr />
|
@@ -354,7 +354,7 @@
|
|
354 |
</div>
|
355 |
|
356 |
<div class="right-div">
|
357 |
-
<a href="http://
|
358 |
</div>
|
359 |
</div>
|
360 |
|
@@ -372,9 +372,10 @@
|
|
372 |
<div class="postbox-container" id="left-log">
|
373 |
<div class="metabox-holder">
|
374 |
<div class="meta-box-sortables">
|
|
|
375 |
<div class="postbox">
|
376 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
377 |
-
<h3 class="hndle"><span><?php _e('Hits Statistical Chart', 'wp_statistics'); ?> <a href="?page=wps_hits_menu"
|
378 |
<div class="inside">
|
379 |
<script type="text/javascript">
|
380 |
var visit_chart;
|
@@ -469,7 +470,7 @@
|
|
469 |
|
470 |
<div class="postbox">
|
471 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
472 |
-
<h3 class="hndle"><span><?php _e('Search Engine Referrers Statistical Chart', 'wp_statistics'); ?> <a href="?page=wps_searches_menu"><?php
|
473 |
<div class="inside">
|
474 |
<script type="text/javascript">
|
475 |
var visit_chart;
|
@@ -535,13 +536,31 @@
|
|
535 |
},
|
536 |
series: [
|
537 |
<?php
|
|
|
|
|
|
|
538 |
foreach( $search_engines as $se ) {
|
539 |
echo " {\n";
|
540 |
echo " name: '" . __($se['name'], 'wp_statistics') . "',\n";
|
541 |
echo " data: [";
|
542 |
|
543 |
for( $i=20; $i>=0; $i--) {
|
544 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
545 |
}
|
546 |
|
547 |
echo "]\n";
|
@@ -562,10 +581,9 @@
|
|
562 |
<div class="postbox">
|
563 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
564 |
<h3 class="hndle">
|
565 |
-
<span><?php _e('Latest search words', 'wp_statistics'); ?> <a href="?page=wps_words_menu"><?php
|
566 |
</h3>
|
567 |
<div class="inside">
|
568 |
-
|
569 |
<?php
|
570 |
// Retrieve MySQL data
|
571 |
$search_query = wp_statistics_searchword_query('all');
|
@@ -575,20 +593,30 @@
|
|
575 |
echo "<div class='log-latest'>";
|
576 |
|
577 |
foreach($result as $items) {
|
578 |
-
|
579 |
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
580 |
|
581 |
echo "<div class='log-item'>";
|
582 |
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
583 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
584 |
echo "<div class='clear'></div>";
|
585 |
-
echo "<a class='show-map'
|
|
|
|
|
|
|
|
|
586 |
|
587 |
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
588 |
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
|
589 |
|
590 |
-
|
591 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
echo "</div>";
|
593 |
}
|
594 |
|
@@ -596,11 +624,13 @@
|
|
596 |
?>
|
597 |
</div>
|
598 |
</div>
|
|
|
|
|
599 |
|
600 |
<div class="postbox">
|
601 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
602 |
<h3 class="hndle">
|
603 |
-
<span><?php _e('Recent Visitors', 'wp_statistics'); ?> <a href="?page=wps_visitors_menu"><?php
|
604 |
</h3>
|
605 |
<div class="inside">
|
606 |
|
@@ -610,27 +640,26 @@
|
|
610 |
echo "<div class='log-latest'>";
|
611 |
|
612 |
foreach($result as $items) {
|
613 |
-
|
614 |
echo "<div class='log-item'>";
|
615 |
-
echo "<div class='log-referred'><a href='
|
616 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
617 |
echo "<div class='clear'></div>";
|
618 |
-
echo "<a class='show-map'
|
619 |
-
echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='".__($ISOCountryCode[$items->location], 'wp_statistics')."' class='log-tools'/>";
|
620 |
|
621 |
-
if(
|
622 |
-
{
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
{
|
627 |
-
|
628 |
-
|
|
|
629 |
|
630 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'
|
631 |
-
|
|
|
632 |
echo "</div>";
|
633 |
-
|
634 |
}
|
635 |
|
636 |
echo "</div>";
|
@@ -640,4 +669,105 @@
|
|
640 |
</div>
|
641 |
</div>
|
642 |
</div>
|
643 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
alert('<?php _e('To be added soon', 'wp_statistics'); ?>');
|
5 |
});
|
6 |
|
7 |
+
postboxes.add_postbox_toggles(pagenow);
|
8 |
});
|
9 |
</script>
|
10 |
<?php
|
11 |
+
include_once( dirname( __FILE__ ) . "/../functions/country-codes.php");
|
12 |
|
13 |
$search_engines = wp_statistics_searchengine_list();
|
14 |
|
139 |
|
140 |
<div class="postbox">
|
141 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
142 |
+
<h3 class="hndle"><span><?php _e('Browsers', 'wp_statistics'); ?> <a href="?page=wps_browsers_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a></span></h3>
|
143 |
<div class="inside">
|
144 |
<script type="text/javascript">
|
145 |
jQuery(function () {
|
240 |
<div class="postbox">
|
241 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
242 |
<h3 class="hndle">
|
243 |
+
<span><?php _e('Top referring sites', 'wp_statistics'); ?></span> <a href="?page=wps_referers_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a>
|
244 |
</h3>
|
245 |
<div class="inside">
|
246 |
<div class="inside">
|
285 |
<div class="postbox">
|
286 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
287 |
<h3 class="hndle">
|
288 |
+
<span><?php _e('Top 10 Countries', 'wp_statistics'); ?> <a href="?page=wps_countries_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a></span>
|
289 |
</h3>
|
290 |
<div class="inside">
|
291 |
<div class="inside">
|
313 |
|
314 |
echo "<tr>";
|
315 |
echo "<td style='text-align: left'>$i</td>";
|
316 |
+
echo "<td style='text-align: left'><img src='".plugins_url('wp-statistics/assets/images/flags/' . $item . '.png')."' title='{$ISOCountryCode[$item]}'/></td>";
|
317 |
echo "<td style='text-align: left'>{$ISOCountryCode[$item]}</td>";
|
318 |
echo "<td style='text-align: left'>{$value}</td>";
|
319 |
echo "</tr>";
|
336 |
<p><a href="http://teamwork.wp-parsi.com/projects/wp-statistics/" target="_blank"><?php _e('Translations', 'wp_statistics'); ?></a></p> |
|
337 |
<p><a href="http://wordpress.org/support/plugin/wp-statistics" target="_blank"><?php _e('Support', 'wp_statistics'); ?></a> / <a href="http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/" target="_blank"><?php _e('Farsi', 'wp_statistics'); ?></a></p> |
|
338 |
<p><a href="https://www.facebook.com/pages/Wordpress-Statistics/546922341997898?ref=stream" target="_blank"><?php _e('Facebook', 'wp_statistics'); ?></a></p> |
|
339 |
+
<p><a href="http://mostafa-soufi.ir/blog/" target="_blank"><?php _e('Weblog', 'wp_statistics'); ?></a></p>
|
340 |
</div>
|
341 |
|
342 |
<hr />
|
354 |
</div>
|
355 |
|
356 |
<div class="right-div">
|
357 |
+
<a href="http://mostafa-soufi.ir/donate/" target="_blank"><img src="<?php echo plugins_url('wp-statistics/assets/images/donate/donate.png'); ?>" id="donate" alt="<?php _e('Donate', 'wp_statistics'); ?>"/><br /><img src="<?php echo plugins_url('wp-statistics/assets/images/donate/tdCflg.png'); ?>" id="donate" alt="<?php _e('Donate', 'wp_statistics'); ?>"/></a>
|
358 |
</div>
|
359 |
</div>
|
360 |
|
372 |
<div class="postbox-container" id="left-log">
|
373 |
<div class="metabox-holder">
|
374 |
<div class="meta-box-sortables">
|
375 |
+
<?php if( !get_option('wps_map_location') ) { generate_map_html($wpstats, $ISOCountryCode); } ?>
|
376 |
<div class="postbox">
|
377 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
378 |
+
<h3 class="hndle"><span><?php _e('Hits Statistical Chart', 'wp_statistics'); ?> <a href="?page=wps_hits_menu"> <?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a></span></h3>
|
379 |
<div class="inside">
|
380 |
<script type="text/javascript">
|
381 |
var visit_chart;
|
470 |
|
471 |
<div class="postbox">
|
472 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
473 |
+
<h3 class="hndle"><span><?php _e('Search Engine Referrers Statistical Chart', 'wp_statistics'); ?> <a href="?page=wps_searches_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a></span></h3>
|
474 |
<div class="inside">
|
475 |
<script type="text/javascript">
|
476 |
var visit_chart;
|
536 |
},
|
537 |
series: [
|
538 |
<?php
|
539 |
+
$total_stats = get_option( 'wps_chart_totals' );
|
540 |
+
$total_daily = array();
|
541 |
+
|
542 |
foreach( $search_engines as $se ) {
|
543 |
echo " {\n";
|
544 |
echo " name: '" . __($se['name'], 'wp_statistics') . "',\n";
|
545 |
echo " data: [";
|
546 |
|
547 |
for( $i=20; $i>=0; $i--) {
|
548 |
+
$result = wp_statistics_searchengine($se['tag'], '-'.$i) . ", ";
|
549 |
+
$total_daily[$i] += $result;
|
550 |
+
echo $result;
|
551 |
+
}
|
552 |
+
|
553 |
+
echo "]\n";
|
554 |
+
echo " },\n";
|
555 |
+
}
|
556 |
+
|
557 |
+
if( $total_stats == 1 ) {
|
558 |
+
echo " {\n";
|
559 |
+
echo " name: '" . __('Total', 'wp_statistics') . "',\n";
|
560 |
+
echo " data: [";
|
561 |
+
|
562 |
+
for( $i=20; $i>=0; $i--) {
|
563 |
+
echo $total_daily[$i] . ", ";
|
564 |
}
|
565 |
|
566 |
echo "]\n";
|
581 |
<div class="postbox">
|
582 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
583 |
<h3 class="hndle">
|
584 |
+
<span><?php _e('Latest search words', 'wp_statistics'); ?> <a href="?page=wps_words_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a></span>
|
585 |
</h3>
|
586 |
<div class="inside">
|
|
|
587 |
<?php
|
588 |
// Retrieve MySQL data
|
589 |
$search_query = wp_statistics_searchword_query('all');
|
593 |
echo "<div class='log-latest'>";
|
594 |
|
595 |
foreach($result as $items) {
|
|
|
596 |
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
597 |
|
598 |
echo "<div class='log-item'>";
|
599 |
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
600 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
601 |
echo "<div class='clear'></div>";
|
602 |
+
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'>".wp_statistics_icons('dashicons-location-alt', 'map')."</a>";
|
603 |
+
|
604 |
+
if(get_option('wps_geoip')) {
|
605 |
+
echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
|
606 |
+
}
|
607 |
|
608 |
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
609 |
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/assets/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
|
610 |
|
611 |
+
if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
|
612 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
|
613 |
+
} else {
|
614 |
+
$agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
|
615 |
+
}
|
616 |
+
|
617 |
+
echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a></div>";
|
618 |
+
|
619 |
+
echo "<div class='log-url'><a href='{$items->referred}' title='{$items->referred}'>".wp_statistics_icons('dashicons-admin-links', 'link')." ".substr($items->referred, 0, 100)."[...]</a></div>";
|
620 |
echo "</div>";
|
621 |
}
|
622 |
|
624 |
?>
|
625 |
</div>
|
626 |
</div>
|
627 |
+
|
628 |
+
<?php if( get_option('wps_map_location') ) { generate_map_html($wpstats, $ISOCountryCode); } ?>
|
629 |
|
630 |
<div class="postbox">
|
631 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
632 |
<h3 class="hndle">
|
633 |
+
<span><?php _e('Recent Visitors', 'wp_statistics'); ?> <a href="?page=wps_visitors_menu"><?php echo wp_statistics_icons('dashicons-visibility', 'visibility'); ?><?php _e('More', 'wp_statistics'); ?></a></span>
|
634 |
</h3>
|
635 |
<div class="inside">
|
636 |
|
640 |
echo "<div class='log-latest'>";
|
641 |
|
642 |
foreach($result as $items) {
|
|
|
643 |
echo "<div class='log-item'>";
|
644 |
+
echo "<div class='log-referred'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&ip={$items->ip}'>".wp_statistics_icons('dashicons-visibility', 'visibility')."{$items->ip}</a></div>";
|
645 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
646 |
echo "<div class='clear'></div>";
|
647 |
+
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'>".wp_statistics_icons('dashicons-location-alt', 'map')."</a>";
|
|
|
648 |
|
649 |
+
if(get_option('wps_geoip')) {
|
650 |
+
echo "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $items->location . '.png')."' title='{$ISOCountryCode[$items->location]}' class='log-tools'/>";
|
651 |
+
}
|
652 |
+
|
653 |
+
if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
|
654 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
|
655 |
+
} else {
|
656 |
+
$agent = wp_statistics_icons('dashicons-editor-help', 'unknown');
|
657 |
+
}
|
658 |
|
659 |
+
echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a></div>";
|
660 |
+
|
661 |
+
echo "<div class='log-url'><a href='{$items->referred}' title='{$items->referred}'>".wp_statistics_icons('dashicons-admin-links', 'link')." ".substr($items->referred, 0, 100)."[...]</a></div>";
|
662 |
echo "</div>";
|
|
|
663 |
}
|
664 |
|
665 |
echo "</div>";
|
669 |
</div>
|
670 |
</div>
|
671 |
</div>
|
672 |
+
</div>
|
673 |
+
<?php
|
674 |
+
function generate_map_html($wpstats, $ISOCountryCode) {
|
675 |
+
|
676 |
+
global $wpdb, $table_prefix;
|
677 |
+
|
678 |
+
if(get_option('wps_geoip') && !get_option('wps_disable_map') ) { ?>
|
679 |
+
<div class="postbox">
|
680 |
+
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
681 |
+
<h3 class="hndle"><span><?php _e('Today visitors on map', 'wp_statistics'); ?></span></h3>
|
682 |
+
<div class="inside">
|
683 |
+
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
|
684 |
+
<div id="map_canvas">Google Map</div>
|
685 |
+
|
686 |
+
<?php $result = $wpdb->get_row("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$wpstats->Current_Date('Y-m-d')}'"); ?>
|
687 |
+
<script type="text/javascript">
|
688 |
+
function initialize() {
|
689 |
+
var map_options = {
|
690 |
+
center: new google.maps.LatLng(<?php echo wp_statistics_get_gmap_coordinate($result->location, 'lat'); ?>, <?php echo wp_statistics_get_gmap_coordinate($result->location, 'lng'); ?>),
|
691 |
+
zoom: 2,
|
692 |
+
mapTypeId: google.maps.MapTypeId.ROADMAP
|
693 |
+
};
|
694 |
+
|
695 |
+
var google_map = new google.maps.Map(document.getElementById("map_canvas"), map_options);
|
696 |
+
|
697 |
+
var info_window = new google.maps.InfoWindow({
|
698 |
+
content: 'loading'
|
699 |
+
});
|
700 |
+
|
701 |
+
var t = [];
|
702 |
+
var x = [];
|
703 |
+
var y = [];
|
704 |
+
var h = [];
|
705 |
+
|
706 |
+
<?php
|
707 |
+
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$wpstats->Current_Date('Y-m-d')}'");
|
708 |
+
$final_result = array();
|
709 |
+
|
710 |
+
if( $result ) {
|
711 |
+
foreach($result as $new_r) {
|
712 |
+
$final_result[$new_r->location][] = array
|
713 |
+
(
|
714 |
+
'location' => $new_r->location,
|
715 |
+
'agent' => $new_r->agent,
|
716 |
+
'ip' => $new_r->ip
|
717 |
+
);
|
718 |
+
}
|
719 |
+
}
|
720 |
+
|
721 |
+
unset($final_result['000']);
|
722 |
+
|
723 |
+
foreach($final_result as $items) {
|
724 |
+
|
725 |
+
foreach($items as $markets) {
|
726 |
+
|
727 |
+
if($markets['location'] == '000') continue;
|
728 |
+
|
729 |
+
$flag = "<img src='".plugins_url('wp-statistics/assets/images/flags/' . $markets['location'] . '.png')."' title='{$ISOCountryCode[$markets['location']]}' class='log-tools'/> {$ISOCountryCode[$markets['location']]}";
|
730 |
+
|
731 |
+
if( array_search( strtolower( $markets['agent'] ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
|
732 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/').$markets['agent'].".png' class='log-tools' title='{$markets['agent']}'/>";
|
733 |
+
} else {
|
734 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/unknown.png')."' class='log-tools' title='{$markets['agent']}'/>";
|
735 |
+
}
|
736 |
+
|
737 |
+
$get_ipp[$markets['location']][] = "<p>{$agent} {$markets[ip]}</p>";
|
738 |
+
}
|
739 |
+
?>
|
740 |
+
t.push('<?php echo $ISOCountryCode[$markets['location']]; ?>');
|
741 |
+
x.push(<?php echo wp_statistics_get_gmap_coordinate($markets['location'], 'lat'); ?>);
|
742 |
+
y.push(<?php echo wp_statistics_get_gmap_coordinate($markets['location'], 'lng'); ?>);
|
743 |
+
h.push("<div class='map-html-marker'><?php echo $flag . '<hr />' . implode('', $get_ipp[$markets['location']]); ?></div>");
|
744 |
+
<?php
|
745 |
+
}
|
746 |
+
?>
|
747 |
+
var i = 0;
|
748 |
+
for ( item in t ) {
|
749 |
+
var m = new google.maps.Marker({
|
750 |
+
map: google_map,
|
751 |
+
animation: google.maps.Animation.DROP,
|
752 |
+
title: t[i],
|
753 |
+
position: new google.maps.LatLng(x[i],y[i]),
|
754 |
+
html: h[i],
|
755 |
+
icon: '<?php echo plugins_url('wp-statistics/assets/images/marker.png'); ?>'
|
756 |
+
});
|
757 |
+
|
758 |
+
google.maps.event.addListener(m, 'click', function() {
|
759 |
+
info_window.setContent(this.html);
|
760 |
+
info_window.open(google_map, this);
|
761 |
+
});
|
762 |
+
i++;
|
763 |
+
}
|
764 |
+
}
|
765 |
+
|
766 |
+
initialize();
|
767 |
+
</script>
|
768 |
+
</div>
|
769 |
+
</div>
|
770 |
+
<?php
|
771 |
+
}
|
772 |
+
}
|
773 |
+
?>
|
includes/log/search-statistics.php
CHANGED
@@ -100,13 +100,31 @@
|
|
100 |
},
|
101 |
series: [
|
102 |
<?php
|
|
|
|
|
|
|
103 |
foreach( $search_engines as $se ) {
|
104 |
echo " {\n";
|
105 |
echo " name: '" . __($se['name'], 'wp_statistics') . "',\n";
|
106 |
echo " data: [";
|
107 |
|
108 |
-
for( $i
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
echo "]\n";
|
100 |
},
|
101 |
series: [
|
102 |
<?php
|
103 |
+
$total_stats = get_option( 'wps_chart_totals' );
|
104 |
+
$total_daily = array();
|
105 |
+
|
106 |
foreach( $search_engines as $se ) {
|
107 |
echo " {\n";
|
108 |
echo " name: '" . __($se['name'], 'wp_statistics') . "',\n";
|
109 |
echo " data: [";
|
110 |
|
111 |
+
for( $i=20; $i>=0; $i--) {
|
112 |
+
$result = wp_statistics_searchengine($se['tag'], '-'.$i) . ", ";
|
113 |
+
$total_daily[$i] += $result;
|
114 |
+
echo $result;
|
115 |
+
}
|
116 |
+
|
117 |
+
echo "]\n";
|
118 |
+
echo " },\n";
|
119 |
+
}
|
120 |
+
|
121 |
+
if( $total_stats == 1 ) {
|
122 |
+
echo " {\n";
|
123 |
+
echo " name: '" . __('Total', 'wp_statistics') . "',\n";
|
124 |
+
echo " data: [";
|
125 |
+
|
126 |
+
for( $i=20; $i>=0; $i--) {
|
127 |
+
echo $total_daily[$i] . ", ";
|
128 |
}
|
129 |
|
130 |
echo "]\n";
|
includes/log/top-countries.php
CHANGED
@@ -47,7 +47,7 @@
|
|
47 |
|
48 |
echo "<tr>";
|
49 |
echo "<td style='text-align: center;'>$i</td>";
|
50 |
-
echo "<td style='text-align: center;'><img src='".plugins_url('wp-statistics/assets/images/flags/' . $item . '.png')."' title='
|
51 |
echo "<td style='text-align: left; direction: ltr;'>{$ISOCountryCode[$item]}</td>";
|
52 |
echo "<td style='text-align: center;'>{$value}</td>";
|
53 |
echo "</tr>";
|
47 |
|
48 |
echo "<tr>";
|
49 |
echo "<td style='text-align: center;'>$i</td>";
|
50 |
+
echo "<td style='text-align: center;'><img src='".plugins_url('wp-statistics/assets/images/flags/' . $item . '.png')."' title='{$ISOCountryCode[$item]}'/></td>";
|
51 |
echo "<td style='text-align: left; direction: ltr;'>{$ISOCountryCode[$item]}</td>";
|
52 |
echo "<td style='text-align: center;'>{$value}</td>";
|
53 |
echo "</tr>";
|
includes/log/top-referring.php
CHANGED
@@ -44,7 +44,7 @@
|
|
44 |
<div class="postbox">
|
45 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
46 |
<?php if($referr) { ?>
|
47 |
-
<h3 class="hndle"><span><?php _e('Referring sites from', 'wp_statistics'); ?>: referr
|
48 |
<?php } else { ?>
|
49 |
<h3 class="hndle"><span><?php _e('Top referring sites', 'wp_statistics'); ?></span></h3>
|
50 |
<?php } ?>
|
@@ -75,9 +75,17 @@
|
|
75 |
echo "<div class='log-referred'><a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
76 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
77 |
echo "<div class='clear'></div>";
|
78 |
-
echo "<a class='show-map'
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
echo "</div>";
|
82 |
|
83 |
}
|
@@ -108,7 +116,7 @@
|
|
108 |
echo "<div class='log-referred'>{$i} - <a href='?page=wps_referers_menu&referr={$items}'>{$items}</a></div>";
|
109 |
echo "<div class='log-ip'>".__('Reference', 'wp_statistics').": {$value}</div>";
|
110 |
echo "<div class='clear'></div>";
|
111 |
-
echo "<div class='log-url'><a href='http://{$items}/'
|
112 |
echo "</div>";
|
113 |
|
114 |
}
|
44 |
<div class="postbox">
|
45 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
46 |
<?php if($referr) { ?>
|
47 |
+
<h3 class="hndle"><span><?php _e('Referring sites from', 'wp_statistics'); ?>: <?php echo $referr; ?></span></h3>
|
48 |
<?php } else { ?>
|
49 |
<h3 class="hndle"><span><?php _e('Top referring sites', 'wp_statistics'); ?></span></h3>
|
50 |
<?php } ?>
|
75 |
echo "<div class='log-referred'><a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
76 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
77 |
echo "<div class='clear'></div>";
|
78 |
+
echo "<a class='show-map' title='".__('Map', 'wp_statistics')."'><div class='dashicons dashicons-location-alt'></div></a>";
|
79 |
+
|
80 |
+
if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
|
81 |
+
$agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
|
82 |
+
} else {
|
83 |
+
$agent = "<div class='dashicons dashicons-editor-help'></div>";
|
84 |
+
}
|
85 |
+
|
86 |
+
echo "<div class='log-agent'><a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'>{$agent}</a></div>";
|
87 |
+
|
88 |
+
echo "<div class='log-url'><a href='{$items->referred}'><div class='dashicons dashicons-admin-links'></div> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
89 |
echo "</div>";
|
90 |
|
91 |
}
|
116 |
echo "<div class='log-referred'>{$i} - <a href='?page=wps_referers_menu&referr={$items}'>{$items}</a></div>";
|
117 |
echo "<div class='log-ip'>".__('Reference', 'wp_statistics').": {$value}</div>";
|
118 |
echo "<div class='clear'></div>";
|
119 |
+
echo "<div class='log-url'><a href='http://{$items}/' title='{$items}'><div class='dashicons dashicons-admin-links'></div> http://{$items}/</a></div>";
|
120 |
echo "</div>";
|
121 |
|
122 |
}
|
includes/optimization/templates/wps-optimization-updates.php
CHANGED
@@ -18,6 +18,47 @@
|
|
18 |
|
19 |
<table class="form-table">
|
20 |
<tbody>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
<tr valign="top">
|
22 |
<th scope="row" colspan="2"><h3><?php _e('GeoIP Options', 'wp_statistics'); ?></h3></th>
|
23 |
</tr>
|
18 |
|
19 |
<table class="form-table">
|
20 |
<tbody>
|
21 |
+
<tr valign="top">
|
22 |
+
<th scope="row" colspan="2"><h3><?php _e('GeoIP File Info', 'wp_statistics'); ?></h3></th>
|
23 |
+
</tr>
|
24 |
+
|
25 |
+
<tr valign="top">
|
26 |
+
<th scope="row">
|
27 |
+
<?php _e('File Date', 'wp_statistics'); ?>:
|
28 |
+
</th>
|
29 |
+
|
30 |
+
<td>
|
31 |
+
<strong><?php $GeoIP_filename = realpath( dirname( __FILE__ ) . "/../../../GeoIP2-db/GeoLite2-Country.mmdb");
|
32 |
+
$GeoIP_filedate = filemtime( $GeoIP_filename );
|
33 |
+
|
34 |
+
echo date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $GeoIP_filedate); ?></strong>
|
35 |
+
<p class="description"><?php _e('The file date of the GeoIP database.', 'wp_statistics'); ?></p>
|
36 |
+
</td>
|
37 |
+
</tr>
|
38 |
+
|
39 |
+
<tr valign="top">
|
40 |
+
<th scope="row">
|
41 |
+
<?php _e('File Size', 'wp_statistics'); ?>:
|
42 |
+
</th>
|
43 |
+
|
44 |
+
<td>
|
45 |
+
<strong><?php echo formatSize( filesize( $GeoIP_filename ) );
|
46 |
+
|
47 |
+
/* format size of file
|
48 |
+
* @author Mike Zriel
|
49 |
+
* @date 7 March 2011
|
50 |
+
* @website www.zriel.com
|
51 |
+
*/
|
52 |
+
function formatSize($size) {
|
53 |
+
$sizes = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
|
54 |
+
if ($size == 0) { return('n/a'); } else {
|
55 |
+
return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]); }
|
56 |
+
}
|
57 |
+
?></strong>
|
58 |
+
<p class="description"><?php _e('The file size of the GeoIP database.', 'wp_statistics'); ?></p>
|
59 |
+
</td>
|
60 |
+
</tr>
|
61 |
+
|
62 |
<tr valign="top">
|
63 |
<th scope="row" colspan="2"><h3><?php _e('GeoIP Options', 'wp_statistics'); ?></h3></th>
|
64 |
</tr>
|
includes/settings/widget.php
CHANGED
@@ -81,15 +81,6 @@
|
|
81 |
|
82 |
<li><input type="checkbox" id="lpd_widget" class="lpd_widget" name="lpd_widget" <?php checked('on', get_option('lpd_widget')); ?>/>
|
83 |
<label for="lpd_widget"><?php _e('Last Post Date', 'wp_statistics'); ?></label></li>
|
84 |
-
|
85 |
-
<p id="lpd_option" style="<?php if(!get_option('lpd_widget')) { echo "display: none;"; } ?>">
|
86 |
-
<?php _e('Type date for last update', 'wp_statistics'); ?>:<br />
|
87 |
-
<input id="wp_statistics_widget_endate" name="select_lps" value="english" type="radio" <?php checked( 'english', get_option('select_lps') ); ?>/>
|
88 |
-
<label for="wp_statistics_widget_endate"><?php _e('English', 'wp_statistics'); ?></label>
|
89 |
-
|
90 |
-
<input id="wp_statistics_widget_jdate" name="select_lps" value="farsi" type="radio" <?php checked( 'farsi', get_option('select_lps') ); ?>/>
|
91 |
-
<label for="wp_statistics_widget_jdate"><?php _e('Persian', 'wp_statistics'); ?></label>
|
92 |
-
</p>
|
93 |
</ul>
|
94 |
|
95 |
<input type="hidden" id="wp_statistics_control_widget_submit" name="wp_statistics_control_widget_submit" value="1" />
|
81 |
|
82 |
<li><input type="checkbox" id="lpd_widget" class="lpd_widget" name="lpd_widget" <?php checked('on', get_option('lpd_widget')); ?>/>
|
83 |
<label for="lpd_widget"><?php _e('Last Post Date', 'wp_statistics'); ?></label></li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
</ul>
|
85 |
|
86 |
<input type="hidden" id="wp_statistics_control_widget_submit" name="wp_statistics_control_widget_submit" value="1" />
|
includes/settings/wps-settings.php
CHANGED
@@ -141,6 +141,58 @@
|
|
141 |
</td>
|
142 |
</tr>
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
<tr valign="top">
|
145 |
<th scope="row" colspan="2"><h3><?php _e('Statistical reporting', 'wp_statistics'); ?></h3></th>
|
146 |
</tr>
|
@@ -218,7 +270,7 @@
|
|
218 |
|
219 |
<p class="submit">
|
220 |
<input type="hidden" name="action" value="update" />
|
221 |
-
<input type="hidden" name="page_options" value="wps_useronline,wps_visits,wps_visitors,wps_check_online,wps_menu_bar,wps_coefficient,wps_chart_type,wps_stats_report,wps_time_report,wps_send_report,wps_content_report" />
|
222 |
<input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp-sms'); ?>" />
|
223 |
</p>
|
224 |
</form>
|
141 |
</td>
|
142 |
</tr>
|
143 |
|
144 |
+
<tr valign="top">
|
145 |
+
<th scope="row">
|
146 |
+
<label for="chart-totals"><?php _e('Include totals', 'wp_statistics'); ?>:</label>
|
147 |
+
</th>
|
148 |
+
|
149 |
+
<td>
|
150 |
+
<input id="chart-totals" type="checkbox" value="1" name="wps_chart_totals" <?php echo get_option('wps_chart_totals')==true? "checked='checked'":'';?>>
|
151 |
+
<label for="chart-totals"><?php _e('Active', 'wp_statistics'); ?></label>
|
152 |
+
<p class="description"><?php _e('Add a total line to charts with multiple values, like the search engine referrals', 'wp_statistics'); ?></p>
|
153 |
+
</td>
|
154 |
+
</tr>
|
155 |
+
|
156 |
+
<tr valign="top">
|
157 |
+
<th scope="row" colspan="2"><h3><?php _e('Map', 'wp_statistics'); ?></h3></th>
|
158 |
+
</tr>
|
159 |
+
|
160 |
+
<tr valign="top">
|
161 |
+
<th scope="row">
|
162 |
+
<label for="disable-map"><?php _e('Disable map', 'wp_statistics'); ?>:</label>
|
163 |
+
</th>
|
164 |
+
|
165 |
+
<td>
|
166 |
+
<input id="disable-map" type="checkbox" value="1" name="wps_disable_map" <?php echo get_option('wps_disable_map')==true? "checked='checked'":'';?>>
|
167 |
+
<label for="disable-map"><?php _e('Active', 'wp_statistics'); ?></label>
|
168 |
+
<p class="description"><?php _e('Disable the map display', 'wp_statistics'); ?></p>
|
169 |
+
</td>
|
170 |
+
</tr>
|
171 |
+
|
172 |
+
<tr valign="top">
|
173 |
+
<th scope="row">
|
174 |
+
<label for="map-location"><?php _e('Alternate map location', 'wp_statistics'); ?>:</label>
|
175 |
+
</th>
|
176 |
+
|
177 |
+
<td>
|
178 |
+
<input id="map-location" type="checkbox" value="1" name="wps_map_location" <?php echo get_option('wps_map_location')==true? "checked='checked'":'';?>>
|
179 |
+
<label for="map-location"><?php _e('Active', 'wp_statistics'); ?></label>
|
180 |
+
<p class="description"><?php _e('Place the map above the recent visitors area instead of at the top of the page.', 'wp_statistics'); ?></p>
|
181 |
+
</td>
|
182 |
+
</tr>
|
183 |
+
|
184 |
+
<tr valign="top">
|
185 |
+
<th scope="row">
|
186 |
+
<label for="google-coordinates"><?php _e('Get country location from Google', 'wp_statistics'); ?>:</label>
|
187 |
+
</th>
|
188 |
+
|
189 |
+
<td>
|
190 |
+
<input id="google-coordinates" type="checkbox" value="1" name="wps_google_coordinates" <?php echo get_option('wps_google_coordinates')==true? "checked='checked'":'';?>>
|
191 |
+
<label for="google-coordinates"><?php _e('Active', 'wp_statistics'); ?></label>
|
192 |
+
<p class="description"><?php _e('This feature may cause a performance degradation when viewing statistics.', 'wp_statistics'); ?></p>
|
193 |
+
</td>
|
194 |
+
</tr>
|
195 |
+
|
196 |
<tr valign="top">
|
197 |
<th scope="row" colspan="2"><h3><?php _e('Statistical reporting', 'wp_statistics'); ?></h3></th>
|
198 |
</tr>
|
270 |
|
271 |
<p class="submit">
|
272 |
<input type="hidden" name="action" value="update" />
|
273 |
+
<input type="hidden" name="page_options" value="wps_useronline,wps_visits,wps_visitors,wps_check_online,wps_menu_bar,wps_coefficient,wps_chart_type,wps_stats_report,wps_time_report,wps_send_report,wps_content_report,wps_chart_totals,wps_google_coordinates,wps_store_ua,wps_disable_map,wps_map_location" />
|
274 |
<input type="submit" class="button-primary" name="Submit" value="<?php _e('Update', 'wp-sms'); ?>" />
|
275 |
</p>
|
276 |
</form>
|
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-02
|
6 |
-
"PO-Revision-Date: 2014-02
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -18,8 +18,8 @@ msgstr ""
|
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
22 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr ""
|
25 |
|
@@ -38,30 +38,30 @@ msgstr ""
|
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
|
41 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
42 |
msgid "User Online"
|
43 |
msgstr ""
|
44 |
|
45 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
47 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
48 |
msgid "Today Visit"
|
49 |
msgstr ""
|
50 |
|
51 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
53 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
54 |
msgid "Today Visitor"
|
55 |
msgstr ""
|
56 |
|
57 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
58 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
59 |
msgid "Yesterday Visit"
|
60 |
msgstr ""
|
61 |
|
62 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
64 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
65 |
msgid "Yesterday Visitor"
|
66 |
msgstr ""
|
67 |
|
@@ -82,13 +82,13 @@ msgstr ""
|
|
82 |
|
83 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
85 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
86 |
msgid "Total Visit"
|
87 |
msgstr ""
|
88 |
|
89 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
91 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
92 |
msgid "Total Visitor"
|
93 |
msgstr ""
|
94 |
|
@@ -150,13 +150,20 @@ msgstr ""
|
|
150 |
msgid "Complete statistics for your blog."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
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:124
|
161 |
msgid "Overview"
|
162 |
msgstr ""
|
@@ -168,7 +175,7 @@ msgid "Browsers"
|
|
168 |
msgstr ""
|
169 |
|
170 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
171 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
172 |
msgid "Countries"
|
173 |
msgstr ""
|
174 |
|
@@ -268,19 +275,20 @@ msgstr ""
|
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
269 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
|
270 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
|
271 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
272 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
273 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
274 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
275 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
|
277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
|
278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
|
280 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
281 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
282 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
283 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
284 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
285 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
286 |
msgid "Click to toggle"
|
@@ -322,85 +330,85 @@ msgid ""
|
|
322 |
"may not reflect current statistics!"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
326 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
327 |
msgid "Hit Statistics"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
331 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
332 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
333 |
msgid "10 Days"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
337 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
338 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
339 |
msgid "20 Days"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
343 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
344 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
345 |
msgid "30 Days"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
349 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
350 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
351 |
msgid "2 Months"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
355 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
356 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
357 |
msgid "3 Months"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
361 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
362 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
363 |
msgid "6 Months"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
367 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
368 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
369 |
msgid "9 Months"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
374 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
375 |
msgid "1 Year"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
379 |
#, php-format
|
380 |
msgid "Total Exclusions: %s"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
384 |
msgid "Exclusions Statistical Chart"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
388 |
msgid "Excluded hits chart in the last"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
392 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
393 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
394 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
|
395 |
msgid "days"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
399 |
msgid "Number of excluded hits"
|
400 |
msgstr ""
|
401 |
|
402 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
404 |
msgid "Hits Statistical Chart"
|
405 |
msgstr ""
|
406 |
|
@@ -409,19 +417,19 @@ msgid "Hits chart in the last"
|
|
409 |
msgstr ""
|
410 |
|
411 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
412 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
413 |
msgid "Number of visits and visitors"
|
414 |
msgstr ""
|
415 |
|
416 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
|
417 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
|
418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
419 |
msgid "Visitor"
|
420 |
msgstr ""
|
421 |
|
422 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
|
423 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
|
424 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
425 |
msgid "Visit"
|
426 |
msgstr ""
|
427 |
|
@@ -434,47 +442,46 @@ msgstr ""
|
|
434 |
|
435 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
436 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
437 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
438 |
msgid "Latest search words"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
442 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
443 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
444 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
445 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
|
|
446 |
msgid "Map"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
450 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
451 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
452 |
msgid "Page"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
457 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
458 |
msgid "From"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
462 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
463 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
464 |
msgid "Recent Visitors"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
468 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
469 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
|
470 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
|
471 |
msgid "All"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
475 |
-
|
476 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
477 |
-
msgid "Country"
|
478 |
msgstr ""
|
479 |
|
480 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
@@ -505,6 +512,8 @@ msgstr ""
|
|
505 |
|
506 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
507 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
|
|
|
|
508 |
msgid "Total"
|
509 |
msgstr ""
|
510 |
|
@@ -537,11 +546,11 @@ msgstr ""
|
|
537 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
538 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
539 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
540 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
541 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
542 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
543 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
|
@@ -555,7 +564,7 @@ msgid "Top referring sites"
|
|
555 |
msgstr ""
|
556 |
|
557 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
558 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
559 |
msgid "Reference"
|
560 |
msgstr ""
|
561 |
|
@@ -577,6 +586,11 @@ msgstr ""
|
|
577 |
msgid "Flag"
|
578 |
msgstr ""
|
579 |
|
|
|
|
|
|
|
|
|
|
|
580 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
|
581 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
582 |
msgid "Visitor Count"
|
@@ -621,24 +635,28 @@ msgstr ""
|
|
621 |
msgid "Donate"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
625 |
msgid "Hits chart in the last 20 days"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
629 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
630 |
msgid "Search Engine Referrers Statistical Chart"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
634 |
msgid "Referrer search engine chart in the last 20 days"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
638 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
639 |
msgid "Number of referrer"
|
640 |
msgstr ""
|
641 |
|
|
|
|
|
|
|
|
|
642 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
643 |
msgid "Search Engine Referrers Statistics"
|
644 |
msgstr ""
|
@@ -746,8 +764,8 @@ msgstr ""
|
|
746 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
|
747 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
|
748 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
751 |
msgid "Please select."
|
752 |
msgstr ""
|
753 |
|
@@ -830,14 +848,34 @@ msgid "All visitor data will be lost for this platform type."
|
|
830 |
msgstr ""
|
831 |
|
832 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
msgid "GeoIP Options"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
837 |
msgid "Update Now!"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
841 |
msgid "Get updates for the location and the countries, this may take a while"
|
842 |
msgstr ""
|
843 |
|
@@ -941,18 +979,6 @@ msgstr ""
|
|
941 |
msgid "Select type of search engine"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
|
945 |
-
msgid "Type date for last update"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:88
|
949 |
-
msgid "English"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:91
|
953 |
-
msgid "Persian"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
|
957 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
958 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
@@ -1126,7 +1152,7 @@ msgstr ""
|
|
1126 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
|
1127 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
|
1128 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
1129 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1130 |
msgid "Update"
|
1131 |
msgstr ""
|
1132 |
|
@@ -1146,7 +1172,11 @@ msgstr ""
|
|
1146 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
|
1147 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
|
1148 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
1150 |
msgid "Active"
|
1151 |
msgstr ""
|
1152 |
|
@@ -1239,7 +1269,7 @@ msgstr ""
|
|
1239 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
|
1240 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
|
1241 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
|
1242 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1243 |
msgid "Enable or disable this feature"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1333,57 +1363,94 @@ msgstr ""
|
|
1333 |
msgid "Chart type in view stats."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1337 |
msgid "Time send"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1341 |
msgid "Hourly"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1345 |
msgid "Twice daily"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1349 |
msgid "daily"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1353 |
msgid "Select when receiving statistics report."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1357 |
msgid "Send Statistical reporting to"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1361 |
msgid "Email"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1365 |
msgid "SMS"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1369 |
msgid "Type Select Get Status Report."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1373 |
#, php-format
|
1374 |
msgid ""
|
1375 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1376 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1380 |
msgid "Send Content Report"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1384 |
msgid "Enter the contents of the reports received."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1388 |
msgid "Input data:"
|
1389 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-03-02 10:12+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-03-02 10:12+0330\n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
|
22 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr ""
|
25 |
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
|
41 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
|
42 |
msgid "User Online"
|
43 |
msgstr ""
|
44 |
|
45 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
47 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
|
48 |
msgid "Today Visit"
|
49 |
msgstr ""
|
50 |
|
51 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
53 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
|
54 |
msgid "Today Visitor"
|
55 |
msgstr ""
|
56 |
|
57 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
58 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
|
59 |
msgid "Yesterday Visit"
|
60 |
msgstr ""
|
61 |
|
62 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
64 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
|
65 |
msgid "Yesterday Visitor"
|
66 |
msgstr ""
|
67 |
|
82 |
|
83 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
85 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
|
86 |
msgid "Total Visit"
|
87 |
msgstr ""
|
88 |
|
89 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
91 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
|
92 |
msgid "Total Visitor"
|
93 |
msgstr ""
|
94 |
|
150 |
msgid "Complete statistics for your blog."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
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:67
|
161 |
+
#, php-format
|
162 |
+
msgid ""
|
163 |
+
"GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
|
164 |
+
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
|
168 |
msgid "Overview"
|
169 |
msgstr ""
|
175 |
msgstr ""
|
176 |
|
177 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
178 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
|
179 |
msgid "Countries"
|
180 |
msgstr ""
|
181 |
|
275 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
|
277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
|
278 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
|
279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
280 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
281 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
|
282 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
283 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
|
284 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
|
285 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
286 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
|
287 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
|
288 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
|
289 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
|
290 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:631
|
291 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:680
|
292 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
293 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
294 |
msgid "Click to toggle"
|
330 |
"may not reflect current statistics!"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
|
334 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
335 |
msgid "Hit Statistics"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:53
|
339 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
340 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
341 |
msgid "10 Days"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
345 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
346 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
347 |
msgid "20 Days"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
|
351 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
352 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
353 |
msgid "30 Days"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
|
357 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
358 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
359 |
msgid "2 Months"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
363 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
364 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
365 |
msgid "3 Months"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
369 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
370 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
371 |
msgid "6 Months"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
375 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
376 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
377 |
msgid "9 Months"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
381 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
382 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
383 |
msgid "1 Year"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
387 |
#, php-format
|
388 |
msgid "Total Exclusions: %s"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
|
392 |
msgid "Exclusions Statistical Chart"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
396 |
msgid "Excluded hits chart in the last"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
400 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
401 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
402 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
|
403 |
msgid "days"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
|
407 |
msgid "Number of excluded hits"
|
408 |
msgstr ""
|
409 |
|
410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
411 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
412 |
msgid "Hits Statistical Chart"
|
413 |
msgstr ""
|
414 |
|
417 |
msgstr ""
|
418 |
|
419 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
420 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
|
421 |
msgid "Number of visits and visitors"
|
422 |
msgstr ""
|
423 |
|
424 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
|
425 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
|
426 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
427 |
msgid "Visitor"
|
428 |
msgstr ""
|
429 |
|
430 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
|
431 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
|
432 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:453
|
433 |
msgid "Visit"
|
434 |
msgstr ""
|
435 |
|
442 |
|
443 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
444 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
445 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
446 |
msgid "Latest search words"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
|
450 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
451 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
|
452 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
|
453 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
|
455 |
msgid "Map"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
459 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
|
460 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
461 |
msgid "Page"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
465 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
|
466 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
467 |
msgid "From"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
471 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
|
472 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
|
473 |
msgid "Recent Visitors"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
|
477 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
478 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
|
479 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
|
480 |
msgid "All"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
484 |
+
msgid "Search for"
|
|
|
|
|
485 |
msgstr ""
|
486 |
|
487 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
512 |
|
513 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
514 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
515 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:559
|
516 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
|
517 |
msgid "Total"
|
518 |
msgstr ""
|
519 |
|
546 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
547 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
548 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
549 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
550 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
|
551 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
552 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
|
553 |
+
msgid "More"
|
554 |
msgstr ""
|
555 |
|
556 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
|
564 |
msgstr ""
|
565 |
|
566 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
567 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
568 |
msgid "Reference"
|
569 |
msgstr ""
|
570 |
|
586 |
msgid "Flag"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
|
590 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
591 |
+
msgid "Country"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
|
595 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
596 |
msgid "Visitor Count"
|
635 |
msgid "Donate"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:394
|
639 |
msgid "Hits chart in the last 20 days"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
|
643 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
644 |
msgid "Search Engine Referrers Statistical Chart"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
|
648 |
msgid "Referrer search engine chart in the last 20 days"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
|
652 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
653 |
msgid "Number of referrer"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:681
|
657 |
+
msgid "Today visitors on map"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
661 |
msgid "Search Engine Referrers Statistics"
|
662 |
msgstr ""
|
764 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
|
765 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
|
766 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
|
767 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
|
768 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
|
769 |
msgid "Please select."
|
770 |
msgstr ""
|
771 |
|
848 |
msgstr ""
|
849 |
|
850 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
851 |
+
msgid "GeoIP File Info"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
|
855 |
+
msgid "File Date"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:35
|
859 |
+
msgid "The file date of the GeoIP database."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:41
|
863 |
+
msgid "File Size"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:58
|
867 |
+
msgid "The file size of the GeoIP database."
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
|
871 |
msgid "GeoIP Options"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:72
|
875 |
msgid "Update Now!"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
|
879 |
msgid "Get updates for the location and the countries, this may take a while"
|
880 |
msgstr ""
|
881 |
|
979 |
msgid "Select type of search engine"
|
980 |
msgstr ""
|
981 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
982 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
|
983 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
984 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
1152 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
|
1153 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
|
1154 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
1155 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
|
1156 |
msgid "Update"
|
1157 |
msgstr ""
|
1158 |
|
1172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
|
1173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
|
1174 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1175 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
|
1176 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
|
1177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
|
1178 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
|
1179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
|
1180 |
msgid "Active"
|
1181 |
msgstr ""
|
1182 |
|
1269 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
|
1270 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
|
1271 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
|
1272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
|
1273 |
msgid "Enable or disable this feature"
|
1274 |
msgstr ""
|
1275 |
|
1363 |
msgid "Chart type in view stats."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
|
1367 |
+
msgid "Include totals"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
|
1371 |
+
msgid ""
|
1372 |
+
"Add a total line to charts with multiple values, like the search engine "
|
1373 |
+
"referrals"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
|
1377 |
+
msgid "Disable map"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
|
1381 |
+
msgid "Disable the map display"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
|
1385 |
+
msgid "Alternate map location"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
|
1389 |
+
msgid ""
|
1390 |
+
"Place the map above the recent visitors area instead of at the top of the "
|
1391 |
+
"page."
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
|
1395 |
+
msgid "Get country location from Google"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
|
1399 |
+
msgid ""
|
1400 |
+
"This feature may cause a performance degradation when viewing statistics."
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
|
1404 |
msgid "Time send"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
|
1408 |
msgid "Hourly"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
|
1412 |
msgid "Twice daily"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
|
1416 |
msgid "daily"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
|
1420 |
msgid "Select when receiving statistics report."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
|
1424 |
msgid "Send Statistical reporting to"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
|
1428 |
msgid "Email"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
|
1432 |
msgid "SMS"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
|
1436 |
msgid "Type Select Get Status Report."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
|
1440 |
#, php-format
|
1441 |
msgid ""
|
1442 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1443 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
|
1447 |
msgid "Send Content Report"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
|
1451 |
msgid "Enter the contents of the reports received."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
|
1455 |
msgid "Input data:"
|
1456 |
msgstr ""
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP Statistics\n"
|
6 |
-
"POT-Creation-Date: 2014-02
|
7 |
-
"PO-Revision-Date: 2014-02
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -19,8 +19,8 @@ msgstr ""
|
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
21 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
22 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
23 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
24 |
msgid "Statistical reporting"
|
25 |
msgstr "گزارش آماری"
|
26 |
|
@@ -39,30 +39,30 @@ msgstr "نمایش آمار سایت در ابزارک"
|
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
|
42 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
43 |
msgid "User Online"
|
44 |
msgstr "کاربران حاضر"
|
45 |
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
48 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
49 |
msgid "Today Visit"
|
50 |
msgstr "بازدید امروز"
|
51 |
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
53 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
54 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
55 |
msgid "Today Visitor"
|
56 |
msgstr "بازدیدکننده امروز"
|
57 |
|
58 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
59 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
60 |
msgid "Yesterday Visit"
|
61 |
msgstr "بازدید دیروز"
|
62 |
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
64 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
65 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
66 |
msgid "Yesterday Visitor"
|
67 |
msgstr "بازدید کننده دیروز"
|
68 |
|
@@ -83,13 +83,13 @@ msgstr "بازدید سال"
|
|
83 |
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
85 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
86 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
87 |
msgid "Total Visit"
|
88 |
msgstr "کل بازدیدها"
|
89 |
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
91 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
92 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
93 |
msgid "Total Visitor"
|
94 |
msgstr "کل بازدیدکنندهگان"
|
95 |
|
@@ -151,7 +151,7 @@ msgstr "آماره وردپرس"
|
|
151 |
msgid "Complete statistics for your blog."
|
152 |
msgstr "آماری کامل برای وبلاگ شما."
|
153 |
|
154 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
@@ -160,6 +160,16 @@ msgstr ""
|
|
160 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
161 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
|
164 |
msgid "Overview"
|
165 |
msgstr "مرور کلی"
|
@@ -171,7 +181,7 @@ msgid "Browsers"
|
|
171 |
msgstr "مرورگرها"
|
172 |
|
173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
174 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
175 |
msgid "Countries"
|
176 |
msgstr "کشورها"
|
177 |
|
@@ -271,19 +281,20 @@ msgstr "آمار مرورگرها"
|
|
271 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
272 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
|
273 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
|
274 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
275 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
277 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
|
280 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
|
281 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
282 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
|
283 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
284 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
285 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
286 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
287 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
288 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
289 |
msgid "Click to toggle"
|
@@ -327,85 +338,85 @@ msgstr ""
|
|
327 |
"توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشدهاند. نتایج زیر ممکن است "
|
328 |
"آمار فعلی را منعکس نکند."
|
329 |
|
330 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
331 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
332 |
msgid "Hit Statistics"
|
333 |
msgstr "آمار بازدیدها"
|
334 |
|
335 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
336 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
337 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
338 |
msgid "10 Days"
|
339 |
msgstr "10 روز"
|
340 |
|
341 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
342 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
343 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
344 |
msgid "20 Days"
|
345 |
msgstr "20 روز"
|
346 |
|
347 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
348 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
349 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
350 |
msgid "30 Days"
|
351 |
msgstr "30 روز"
|
352 |
|
353 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
354 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
355 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
356 |
msgid "2 Months"
|
357 |
msgstr "2 ماهه"
|
358 |
|
359 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
360 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
361 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
362 |
msgid "3 Months"
|
363 |
msgstr "3 ماهه"
|
364 |
|
365 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
367 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
368 |
msgid "6 Months"
|
369 |
msgstr "6 ماهه"
|
370 |
|
371 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
374 |
msgid "9 Months"
|
375 |
msgstr "9 ماهه"
|
376 |
|
377 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
379 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
380 |
msgid "1 Year"
|
381 |
msgstr "1 ساله"
|
382 |
|
383 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
384 |
#, php-format
|
385 |
msgid "Total Exclusions: %s"
|
386 |
msgstr "کل استثنائات %s"
|
387 |
|
388 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
389 |
msgid "Exclusions Statistical Chart"
|
390 |
msgstr "نمودار آمار استثنائات"
|
391 |
|
392 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
393 |
msgid "Excluded hits chart in the last"
|
394 |
msgstr "نمودار بازدید آخرین استثنائات"
|
395 |
|
396 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
397 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
398 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
399 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
|
400 |
msgid "days"
|
401 |
msgstr "روز"
|
402 |
|
403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:
|
404 |
msgid "Number of excluded hits"
|
405 |
msgstr "تعداد بازدید استثنائات"
|
406 |
|
407 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
409 |
msgid "Hits Statistical Chart"
|
410 |
msgstr "نمودار آمار بازدیدها"
|
411 |
|
@@ -414,19 +425,19 @@ msgid "Hits chart in the last"
|
|
414 |
msgstr "نمودار آخرین بازدیدها"
|
415 |
|
416 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
417 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
418 |
msgid "Number of visits and visitors"
|
419 |
msgstr "تعداد بازدید و بازدید کننده"
|
420 |
|
421 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
|
422 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
|
423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
424 |
msgid "Visitor"
|
425 |
msgstr "بازدیدکننده"
|
426 |
|
427 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
|
428 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
|
429 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
430 |
msgid "Visit"
|
431 |
msgstr "بازدید"
|
432 |
|
@@ -439,48 +450,47 @@ msgstr "به زودی اضافه می شود"
|
|
439 |
|
440 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
442 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
443 |
msgid "Latest search words"
|
444 |
msgstr "آخرین کلمات جستجو شده"
|
445 |
|
446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
447 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
448 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
449 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
|
|
451 |
msgid "Map"
|
452 |
msgstr "نقشه"
|
453 |
|
454 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
455 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
456 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
457 |
msgid "Page"
|
458 |
msgstr "صفحه"
|
459 |
|
460 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
461 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
462 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
463 |
msgid "From"
|
464 |
msgstr "از"
|
465 |
|
466 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
467 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
468 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
469 |
msgid "Recent Visitors"
|
470 |
msgstr "آخرین بازدیدکنندگان"
|
471 |
|
472 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
473 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
474 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
|
475 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
|
476 |
msgid "All"
|
477 |
msgstr "همه"
|
478 |
|
479 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:
|
480 |
-
|
481 |
-
|
482 |
-
msgid "Country"
|
483 |
-
msgstr "کشور"
|
484 |
|
485 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
486 |
msgid "Summary Statistics"
|
@@ -510,6 +520,8 @@ msgstr "سال"
|
|
510 |
|
511 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
512 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
|
|
|
|
513 |
msgid "Total"
|
514 |
msgstr "کل"
|
515 |
|
@@ -542,12 +554,12 @@ msgstr "ساعت: <code dir=\"ltr\">%s</code>"
|
|
542 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
543 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
544 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
545 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
546 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
547 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
548 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
549 |
-
msgid "
|
550 |
-
msgstr "
|
551 |
|
552 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
|
553 |
msgid "Graph of Browsers"
|
@@ -560,7 +572,7 @@ msgid "Top referring sites"
|
|
560 |
msgstr "بهترین سایت های ارجاع دهنده"
|
561 |
|
562 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
563 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:
|
564 |
msgid "Reference"
|
565 |
msgstr "ارجاع"
|
566 |
|
@@ -582,6 +594,11 @@ msgstr "رتبه"
|
|
582 |
msgid "Flag"
|
583 |
msgstr "پرچم"
|
584 |
|
|
|
|
|
|
|
|
|
|
|
585 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
|
586 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
587 |
msgid "Visitor Count"
|
@@ -626,24 +643,28 @@ msgstr "افزونه آماره را حمایت کنید. با حمایت شما
|
|
626 |
msgid "Donate"
|
627 |
msgstr "حمایت"
|
628 |
|
629 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
630 |
msgid "Hits chart in the last 20 days"
|
631 |
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
632 |
|
633 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
634 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
635 |
msgid "Search Engine Referrers Statistical Chart"
|
636 |
msgstr "نمودار آمار موتورهای جستجو"
|
637 |
|
638 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
639 |
msgid "Referrer search engine chart in the last 20 days"
|
640 |
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
641 |
|
642 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
643 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
644 |
msgid "Number of referrer"
|
645 |
msgstr "تعداد ورودی"
|
646 |
|
|
|
|
|
|
|
|
|
647 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
648 |
msgid "Search Engine Referrers Statistics"
|
649 |
msgstr "آمار موتورهای جستجو"
|
@@ -753,8 +774,8 @@ msgstr "برونبری از"
|
|
753 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
|
754 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
|
755 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
|
756 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
757 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
758 |
msgid "Please select."
|
759 |
msgstr "لطفا انتخاب کنید."
|
760 |
|
@@ -838,14 +859,34 @@ msgid "All visitor data will be lost for this platform type."
|
|
838 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
839 |
|
840 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
msgid "GeoIP Options"
|
842 |
msgstr "تنظیمات GeoIP"
|
843 |
|
844 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
845 |
msgid "Update Now!"
|
846 |
msgstr "بهروز رسانی کن!"
|
847 |
|
848 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:
|
849 |
msgid "Get updates for the location and the countries, this may take a while"
|
850 |
msgstr ""
|
851 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
@@ -950,18 +991,6 @@ msgstr "آیتمها"
|
|
950 |
msgid "Select type of search engine"
|
951 |
msgstr "انتخاب نوع موتورجستجو"
|
952 |
|
953 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
|
954 |
-
msgid "Type date for last update"
|
955 |
-
msgstr "نوع تقویم برای آخرین بهروزرسانی"
|
956 |
-
|
957 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:88
|
958 |
-
msgid "English"
|
959 |
-
msgstr "میلادی"
|
960 |
-
|
961 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:91
|
962 |
-
msgid "Persian"
|
963 |
-
msgstr "شمسی (فارسی)"
|
964 |
-
|
965 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
|
966 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
967 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
@@ -1152,7 +1181,7 @@ msgstr "نادیده گرفتن برگههای مدیریت برای نام
|
|
1152 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
|
1153 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
|
1154 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
1155 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1156 |
msgid "Update"
|
1157 |
msgstr "بهروز رسانی"
|
1158 |
|
@@ -1172,7 +1201,11 @@ msgstr "مجموعه GeoIP"
|
|
1172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
|
1173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
|
1174 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1175 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
1176 |
msgid "Active"
|
1177 |
msgstr "فعال"
|
1178 |
|
@@ -1276,7 +1309,7 @@ msgstr "عمومی"
|
|
1276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
|
1277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
|
1278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
|
1279 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1280 |
msgid "Enable or disable this feature"
|
1281 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
1282 |
|
@@ -1370,43 +1403,80 @@ msgstr "پراکنده"
|
|
1370 |
msgid "Chart type in view stats."
|
1371 |
msgstr "نوع نمودار در نمایش آمار."
|
1372 |
|
1373 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1374 |
msgid "Time send"
|
1375 |
msgstr "زمان ارسال"
|
1376 |
|
1377 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1378 |
msgid "Hourly"
|
1379 |
msgstr "هرساعت"
|
1380 |
|
1381 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1382 |
msgid "Twice daily"
|
1383 |
msgstr "2 بار در روز"
|
1384 |
|
1385 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1386 |
msgid "daily"
|
1387 |
msgstr "روزانه"
|
1388 |
|
1389 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1390 |
msgid "Select when receiving statistics report."
|
1391 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1392 |
|
1393 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1394 |
msgid "Send Statistical reporting to"
|
1395 |
msgstr "ارسال گزارش آمار به"
|
1396 |
|
1397 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1398 |
msgid "Email"
|
1399 |
msgstr "پست الکترونیک"
|
1400 |
|
1401 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1402 |
msgid "SMS"
|
1403 |
msgstr "پیامک"
|
1404 |
|
1405 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1406 |
msgid "Type Select Get Status Report."
|
1407 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1408 |
|
1409 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1410 |
#, php-format
|
1411 |
msgid ""
|
1412 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -1415,18 +1485,33 @@ msgstr ""
|
|
1415 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1416 |
"وردپرس</a> را نصب کنید."
|
1417 |
|
1418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1419 |
msgid "Send Content Report"
|
1420 |
msgstr "محتوای ارسال گزارش"
|
1421 |
|
1422 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1423 |
msgid "Enter the contents of the reports received."
|
1424 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1425 |
|
1426 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:
|
1427 |
msgid "Input data:"
|
1428 |
msgstr "دادههای ورودی:"
|
1429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1430 |
#~ msgid "Robot"
|
1431 |
#~ msgstr "روبات"
|
1432 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WP Statistics\n"
|
6 |
+
"POT-Creation-Date: 2014-03-02 10:12+0330\n"
|
7 |
+
"PO-Revision-Date: 2014-03-02 10:12+0330\n"
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
21 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
|
22 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
|
23 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
|
24 |
msgid "Statistical reporting"
|
25 |
msgstr "گزارش آماری"
|
26 |
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
|
42 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
|
43 |
msgid "User Online"
|
44 |
msgstr "کاربران حاضر"
|
45 |
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
47 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
|
48 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
|
49 |
msgid "Today Visit"
|
50 |
msgstr "بازدید امروز"
|
51 |
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
53 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
|
54 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
|
55 |
msgid "Today Visitor"
|
56 |
msgstr "بازدیدکننده امروز"
|
57 |
|
58 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
59 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
|
60 |
msgid "Yesterday Visit"
|
61 |
msgstr "بازدید دیروز"
|
62 |
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
64 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
|
65 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
|
66 |
msgid "Yesterday Visitor"
|
67 |
msgstr "بازدید کننده دیروز"
|
68 |
|
83 |
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
85 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
|
86 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
|
87 |
msgid "Total Visit"
|
88 |
msgstr "کل بازدیدها"
|
89 |
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
91 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
|
92 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
|
93 |
msgid "Total Visitor"
|
94 |
msgstr "کل بازدیدکنندهگان"
|
95 |
|
151 |
msgid "Complete statistics for your blog."
|
152 |
msgstr "آماری کامل برای وبلاگ شما."
|
153 |
|
154 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
160 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
161 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
162 |
|
163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
|
164 |
+
#, php-format
|
165 |
+
msgid ""
|
166 |
+
"GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
|
167 |
+
"GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
|
168 |
+
msgstr ""
|
169 |
+
"مجموعهی GeoIP فعال نیست! لطفا به <a href=\"%s\">صفحه تنظیمات » GeoIP</a> "
|
170 |
+
"مراجعه کنید و این ویژگی را فعال کنید. (این ویژگی میتواند کشور بازدیدکنندگان "
|
171 |
+
"را شناسایی کند.)"
|
172 |
+
|
173 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
|
174 |
msgid "Overview"
|
175 |
msgstr "مرور کلی"
|
181 |
msgstr "مرورگرها"
|
182 |
|
183 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
|
184 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
|
185 |
msgid "Countries"
|
186 |
msgstr "کشورها"
|
187 |
|
281 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
|
282 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
|
283 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
|
284 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
|
285 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
|
286 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
|
287 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
|
288 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
289 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
|
290 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
|
291 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
|
292 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
|
293 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
|
294 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
|
295 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
|
296 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:631
|
297 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:680
|
298 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
|
299 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
|
300 |
msgid "Click to toggle"
|
338 |
"توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشدهاند. نتایج زیر ممکن است "
|
339 |
"آمار فعلی را منعکس نکند."
|
340 |
|
341 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
|
342 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
|
343 |
msgid "Hit Statistics"
|
344 |
msgstr "آمار بازدیدها"
|
345 |
|
346 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:53
|
347 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
|
348 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
|
349 |
msgid "10 Days"
|
350 |
msgstr "10 روز"
|
351 |
|
352 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
|
353 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
|
354 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
|
355 |
msgid "20 Days"
|
356 |
msgstr "20 روز"
|
357 |
|
358 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
|
359 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
|
360 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
|
361 |
msgid "30 Days"
|
362 |
msgstr "30 روز"
|
363 |
|
364 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
|
365 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
|
366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
|
367 |
msgid "2 Months"
|
368 |
msgstr "2 ماهه"
|
369 |
|
370 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
|
371 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
|
372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
|
373 |
msgid "3 Months"
|
374 |
msgstr "3 ماهه"
|
375 |
|
376 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
|
377 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
379 |
msgid "6 Months"
|
380 |
msgstr "6 ماهه"
|
381 |
|
382 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
|
383 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
384 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
385 |
msgid "9 Months"
|
386 |
msgstr "9 ماهه"
|
387 |
|
388 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
|
389 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
|
390 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
|
391 |
msgid "1 Year"
|
392 |
msgstr "1 ساله"
|
393 |
|
394 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
|
395 |
#, php-format
|
396 |
msgid "Total Exclusions: %s"
|
397 |
msgstr "کل استثنائات %s"
|
398 |
|
399 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
|
400 |
msgid "Exclusions Statistical Chart"
|
401 |
msgstr "نمودار آمار استثنائات"
|
402 |
|
403 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
404 |
msgid "Excluded hits chart in the last"
|
405 |
msgstr "نمودار بازدید آخرین استثنائات"
|
406 |
|
407 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
|
408 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
|
409 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
|
410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
|
411 |
msgid "days"
|
412 |
msgstr "روز"
|
413 |
|
414 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
|
415 |
msgid "Number of excluded hits"
|
416 |
msgstr "تعداد بازدید استثنائات"
|
417 |
|
418 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
|
419 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
420 |
msgid "Hits Statistical Chart"
|
421 |
msgstr "نمودار آمار بازدیدها"
|
422 |
|
425 |
msgstr "نمودار آخرین بازدیدها"
|
426 |
|
427 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
|
428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
|
429 |
msgid "Number of visits and visitors"
|
430 |
msgstr "تعداد بازدید و بازدید کننده"
|
431 |
|
432 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
|
433 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
|
434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
435 |
msgid "Visitor"
|
436 |
msgstr "بازدیدکننده"
|
437 |
|
438 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
|
439 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
|
440 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:453
|
441 |
msgid "Visit"
|
442 |
msgstr "بازدید"
|
443 |
|
450 |
|
451 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
|
452 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
453 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
454 |
msgid "Latest search words"
|
455 |
msgstr "آخرین کلمات جستجو شده"
|
456 |
|
457 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
|
458 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
|
459 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
|
460 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
|
461 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
|
462 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
|
463 |
msgid "Map"
|
464 |
msgstr "نقشه"
|
465 |
|
466 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
467 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
|
468 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
469 |
msgid "Page"
|
470 |
msgstr "صفحه"
|
471 |
|
472 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
|
473 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
|
474 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
|
475 |
msgid "From"
|
476 |
msgstr "از"
|
477 |
|
478 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
|
479 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
|
480 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
|
481 |
msgid "Recent Visitors"
|
482 |
msgstr "آخرین بازدیدکنندگان"
|
483 |
|
484 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
|
485 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
|
486 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
|
487 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
|
488 |
msgid "All"
|
489 |
msgstr "همه"
|
490 |
|
491 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
492 |
+
msgid "Search for"
|
493 |
+
msgstr "جستجو برای"
|
|
|
|
|
494 |
|
495 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
496 |
msgid "Summary Statistics"
|
520 |
|
521 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
522 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
523 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:559
|
524 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
|
525 |
msgid "Total"
|
526 |
msgstr "کل"
|
527 |
|
554 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
555 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
|
556 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
557 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
|
558 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
|
559 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
|
560 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
|
561 |
+
msgid "More"
|
562 |
+
msgstr "بیشتر"
|
563 |
|
564 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
|
565 |
msgid "Graph of Browsers"
|
572 |
msgstr "بهترین سایت های ارجاع دهنده"
|
573 |
|
574 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
|
575 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
|
576 |
msgid "Reference"
|
577 |
msgstr "ارجاع"
|
578 |
|
594 |
msgid "Flag"
|
595 |
msgstr "پرچم"
|
596 |
|
597 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
|
598 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
|
599 |
+
msgid "Country"
|
600 |
+
msgstr "کشور"
|
601 |
+
|
602 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
|
603 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
|
604 |
msgid "Visitor Count"
|
643 |
msgid "Donate"
|
644 |
msgstr "حمایت"
|
645 |
|
646 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:394
|
647 |
msgid "Hits chart in the last 20 days"
|
648 |
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
649 |
|
650 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
|
651 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
|
652 |
msgid "Search Engine Referrers Statistical Chart"
|
653 |
msgstr "نمودار آمار موتورهای جستجو"
|
654 |
|
655 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
|
656 |
msgid "Referrer search engine chart in the last 20 days"
|
657 |
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
658 |
|
659 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
|
660 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
|
661 |
msgid "Number of referrer"
|
662 |
msgstr "تعداد ورودی"
|
663 |
|
664 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:681
|
665 |
+
msgid "Today visitors on map"
|
666 |
+
msgstr "بازدیدکنندگان امروز برروی نقشه"
|
667 |
+
|
668 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
|
669 |
msgid "Search Engine Referrers Statistics"
|
670 |
msgstr "آمار موتورهای جستجو"
|
774 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
|
775 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
|
776 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
|
777 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
|
778 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
|
779 |
msgid "Please select."
|
780 |
msgstr "لطفا انتخاب کنید."
|
781 |
|
859 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
860 |
|
861 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
|
862 |
+
msgid "GeoIP File Info"
|
863 |
+
msgstr "اطلاعات فایل GeoIP"
|
864 |
+
|
865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
|
866 |
+
msgid "File Date"
|
867 |
+
msgstr "تاریخ فایل"
|
868 |
+
|
869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:35
|
870 |
+
msgid "The file date of the GeoIP database."
|
871 |
+
msgstr "تاریخ فایل پایگاهداده GeoIP"
|
872 |
+
|
873 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:41
|
874 |
+
msgid "File Size"
|
875 |
+
msgstr "حجم فایل"
|
876 |
+
|
877 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:58
|
878 |
+
msgid "The file size of the GeoIP database."
|
879 |
+
msgstr "حجم فایل پایگاهداده GeoIP "
|
880 |
+
|
881 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
|
882 |
msgid "GeoIP Options"
|
883 |
msgstr "تنظیمات GeoIP"
|
884 |
|
885 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:72
|
886 |
msgid "Update Now!"
|
887 |
msgstr "بهروز رسانی کن!"
|
888 |
|
889 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
|
890 |
msgid "Get updates for the location and the countries, this may take a while"
|
891 |
msgstr ""
|
892 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
991 |
msgid "Select type of search engine"
|
992 |
msgstr "انتخاب نوع موتورجستجو"
|
993 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
994 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
|
995 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
|
996 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
|
1181 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
|
1182 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
|
1183 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
|
1184 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
|
1185 |
msgid "Update"
|
1186 |
msgstr "بهروز رسانی"
|
1187 |
|
1201 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
|
1202 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
|
1203 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
|
1204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
|
1205 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
|
1206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
|
1207 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
|
1208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
|
1209 |
msgid "Active"
|
1210 |
msgstr "فعال"
|
1211 |
|
1309 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
|
1310 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
|
1311 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
|
1312 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
|
1313 |
msgid "Enable or disable this feature"
|
1314 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
1315 |
|
1403 |
msgid "Chart type in view stats."
|
1404 |
msgstr "نوع نمودار در نمایش آمار."
|
1405 |
|
1406 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
|
1407 |
+
msgid "Include totals"
|
1408 |
+
msgstr "جمع کل"
|
1409 |
+
|
1410 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
|
1411 |
+
msgid ""
|
1412 |
+
"Add a total line to charts with multiple values, like the search engine "
|
1413 |
+
"referrals"
|
1414 |
+
msgstr "اضافه شدن جمع کل به نمودار آمار ورودی از موتورهای جستجو"
|
1415 |
+
|
1416 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
|
1417 |
+
msgid "Disable map"
|
1418 |
+
msgstr "غیرفعال کردن نقشه"
|
1419 |
+
|
1420 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
|
1421 |
+
msgid "Disable the map display"
|
1422 |
+
msgstr "غیرفعال کردن نمایش نقشه"
|
1423 |
+
|
1424 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
|
1425 |
+
msgid "Alternate map location"
|
1426 |
+
msgstr "محل نمایش نقشه"
|
1427 |
+
|
1428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
|
1429 |
+
msgid ""
|
1430 |
+
"Place the map above the recent visitors area instead of at the top of the "
|
1431 |
+
"page."
|
1432 |
+
msgstr "نمایش نقشه در بالای بازدیدکنندگان به جای نمایش آن در بالای برگه."
|
1433 |
+
|
1434 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
|
1435 |
+
msgid "Get country location from Google"
|
1436 |
+
msgstr "دریافت مختصات کشورها از گوگل"
|
1437 |
+
|
1438 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
|
1439 |
+
msgid ""
|
1440 |
+
"This feature may cause a performance degradation when viewing statistics."
|
1441 |
+
msgstr "این ویژگی ممکن است مشاهده آمار را با کندی مواجه کند."
|
1442 |
+
|
1443 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
|
1444 |
msgid "Time send"
|
1445 |
msgstr "زمان ارسال"
|
1446 |
|
1447 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
|
1448 |
msgid "Hourly"
|
1449 |
msgstr "هرساعت"
|
1450 |
|
1451 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
|
1452 |
msgid "Twice daily"
|
1453 |
msgstr "2 بار در روز"
|
1454 |
|
1455 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
|
1456 |
msgid "daily"
|
1457 |
msgstr "روزانه"
|
1458 |
|
1459 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
|
1460 |
msgid "Select when receiving statistics report."
|
1461 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1462 |
|
1463 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
|
1464 |
msgid "Send Statistical reporting to"
|
1465 |
msgstr "ارسال گزارش آمار به"
|
1466 |
|
1467 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
|
1468 |
msgid "Email"
|
1469 |
msgstr "پست الکترونیک"
|
1470 |
|
1471 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
|
1472 |
msgid "SMS"
|
1473 |
msgstr "پیامک"
|
1474 |
|
1475 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
|
1476 |
msgid "Type Select Get Status Report."
|
1477 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1478 |
|
1479 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
|
1480 |
#, php-format
|
1481 |
msgid ""
|
1482 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1485 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1486 |
"وردپرس</a> را نصب کنید."
|
1487 |
|
1488 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
|
1489 |
msgid "Send Content Report"
|
1490 |
msgstr "محتوای ارسال گزارش"
|
1491 |
|
1492 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
|
1493 |
msgid "Enter the contents of the reports received."
|
1494 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1495 |
|
1496 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
|
1497 |
msgid "Input data:"
|
1498 |
msgstr "دادههای ورودی:"
|
1499 |
|
1500 |
+
#~ msgid "Type date for last update"
|
1501 |
+
#~ msgstr "نوع تقویم برای آخرین بهروزرسانی"
|
1502 |
+
|
1503 |
+
#~ msgid "English"
|
1504 |
+
#~ msgstr "میلادی"
|
1505 |
+
|
1506 |
+
#~ msgid "Persian"
|
1507 |
+
#~ msgstr "شمسی (فارسی)"
|
1508 |
+
|
1509 |
+
#~ msgid "See more"
|
1510 |
+
#~ msgstr "مشاهده بیشتر"
|
1511 |
+
|
1512 |
+
#~ msgid "(See more)"
|
1513 |
+
#~ msgstr "(مشاهده بیشتر)"
|
1514 |
+
|
1515 |
#~ msgid "Robot"
|
1516 |
#~ msgstr "روبات"
|
1517 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Wordpress Statistics ===
|
2 |
Contributors: mostafa.s1990
|
3 |
-
Donate link: http://
|
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:
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
@@ -20,7 +20,7 @@ Lots of new features and bugfixes, please see the change log for a complete desc
|
|
20 |
|
21 |
This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com.
|
22 |
|
23 |
-
Features
|
24 |
|
25 |
* User Online
|
26 |
* Today visit/visitors
|
@@ -49,7 +49,7 @@ Features:
|
|
49 |
* Standard functions for development
|
50 |
* GeoIP location by Country [Thanks Greg Ross](http://profiles.wordpress.org/gregross)
|
51 |
|
52 |
-
|
53 |
|
54 |
* English
|
55 |
* Persian
|
@@ -59,7 +59,7 @@ Language Support:
|
|
59 |
* Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
|
60 |
* Spanish Thanks Jose
|
61 |
* Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
|
62 |
-
* Turkish [Thanks aidinMC](http://www.artadl.ir/) & [Manset27.com](http://www.manset27.com/)
|
63 |
* Italian [Thanks Tony Bellardi](http://www.tonybellardi.com/)
|
64 |
* German [Thanks Andreas Martin](http://www.andreasmartin.com/)
|
65 |
* Russian [Thanks Oleg](http://www.bestplugins.ru/)
|
@@ -73,10 +73,12 @@ Language Support:
|
|
73 |
|
74 |
[Percentage languages translation](http://teamwork.wp-parsi.com/projects/wp-statistics/)
|
75 |
To complete the language deficits of [this section](http://teamwork.wp-parsi.com/projects/wp-statistics/) apply.
|
76 |
-
Support Forum in [WordPress support forum Persian](http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/)
|
77 |
-
[Donate to this plugin](http://iran98.org/donate/)
|
78 |
|
79 |
-
|
|
|
|
|
|
|
|
|
80 |
|
81 |
== Installation ==
|
82 |
1. Upload `wp-statistics` to the `/wp-content/plugins/` directory.
|
@@ -84,6 +86,34 @@ Support Forum in [WordPress support forum Persian](http://forum.wp-parsi.com/for
|
|
84 |
3. Make sure the Date and Time is set correctly in Wordpress.
|
85 |
4. Go to the plugin settings page and configure as required (note this will also download the GeoIP database for the fist time).
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
== Function Reference ==
|
88 |
To display stats in your own pages you can use the following functions:
|
89 |
|
@@ -104,24 +134,23 @@ To display stats in your own pages you can use the following functions:
|
|
104 |
* Number of visits of 40 days to today: `<?php echo wp_statistics_visit('-45'); ?>`
|
105 |
* Number of visitors 45 days ago: `<?php echo wp_statistics_visitor('-45', true); ?>`
|
106 |
* Number of visits 45 days ago: `<?php echo wp_statistics_visit('-45', true); ?>`
|
107 |
-
* All Search Engine reffered `<?php echo wp_statistics_searchengine(); ?>`
|
108 |
-
* Google Search Engine reffered `<?php echo wp_statistics_searchengine('google'); ?>`
|
109 |
-
* Yahoo Search Engine reffered `<?php echo wp_statistics_searchengine('yahoo'); ?>`
|
110 |
-
* Bing Search Engine reffered `<?php echo wp_statistics_searchengine('bing'); ?>`
|
111 |
-
* Google Search Engine reffered in today
|
112 |
-
* Google Search Engine reffered in yesterday
|
113 |
-
* Google Search Engine reffered in 5 days ago `<?php echo wp_statistics_searchengine('google', '-5'); ?>`
|
114 |
* Total All Search Enginee reffered `<?php echo wp_statistics_searchengine('all', 'total'); ?>`
|
115 |
-
* Total posts `<?php echo wp_statistics_countposts(); ?>`
|
116 |
-
* Total pages `<?php echo wp_statistics_countpages(); ?>`
|
117 |
-
* Total comments `<?php echo wp_statistics_countcomment(); ?>`
|
118 |
-
* Total spams `<?php echo wp_statistics_countspam(); ?>`
|
119 |
-
* Total users `<?php echo wp_statistics_countusers(); ?>`
|
120 |
-
* Last post date `<?php echo wp_statistics_lastpostdate(); ?>`
|
121 |
-
*
|
122 |
-
* Average
|
123 |
-
* Average
|
124 |
-
* Average users `<?php echo wp_statistics_average_registeruser(); ?>`
|
125 |
|
126 |
== Frequently Asked Questions ==
|
127 |
= How to update to version 3.0? =
|
@@ -166,6 +195,19 @@ The webcrawler detection code has be Fixes and will now exclude them from your s
|
|
166 |
* 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.
|
167 |
|
168 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
= 4.8.1 =
|
170 |
* Fixes: Small bug in the `Current_Date`.
|
171 |
* Fixes: Small bug in the `exclusions.php` file.
|
1 |
=== Wordpress Statistics ===
|
2 |
Contributors: mostafa.s1990
|
3 |
+
Donate link: http://mostafa-soufi.ir/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: 5.0
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
20 |
|
21 |
This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com.
|
22 |
|
23 |
+
= Features =
|
24 |
|
25 |
* User Online
|
26 |
* Today visit/visitors
|
49 |
* Standard functions for development
|
50 |
* GeoIP location by Country [Thanks Greg Ross](http://profiles.wordpress.org/gregross)
|
51 |
|
52 |
+
= Translators =
|
53 |
|
54 |
* English
|
55 |
* Persian
|
59 |
* Russian [Thanks Igor Dubilej](http://www.iflexion.com/)
|
60 |
* Spanish Thanks Jose
|
61 |
* Arabic [Thanks Hammad Shammari](http://www.facebook.com/aboHatim)
|
62 |
+
* Turkish [Thanks aidinMC](http://www.artadl.ir/) & [Manset27.com](http://www.manset27.com/) & [Abdullah Manaz](http://www.manaz.net/)
|
63 |
* Italian [Thanks Tony Bellardi](http://www.tonybellardi.com/)
|
64 |
* German [Thanks Andreas Martin](http://www.andreasmartin.com/)
|
65 |
* Russian [Thanks Oleg](http://www.bestplugins.ru/)
|
73 |
|
74 |
[Percentage languages translation](http://teamwork.wp-parsi.com/projects/wp-statistics/)
|
75 |
To complete the language deficits of [this section](http://teamwork.wp-parsi.com/projects/wp-statistics/) apply.
|
|
|
|
|
76 |
|
77 |
+
= Support =
|
78 |
+
|
79 |
+
* [Donate to this plugin](http://mostafa-soufi.ir/donate/)
|
80 |
+
* [Plugin Facebook page](https://www.facebook.com/pages/Wordpress-Statistics/546922341997898?ref=stream)
|
81 |
+
* [Persian Support](http://forum.wp-parsi.com/forum/17-%D9%85%D8%B4%DA%A9%D9%84%D8%A7%D8%AA-%D8%AF%DB%8C%DA%AF%D8%B1/)
|
82 |
|
83 |
== Installation ==
|
84 |
1. Upload `wp-statistics` to the `/wp-content/plugins/` directory.
|
86 |
3. Make sure the Date and Time is set correctly in Wordpress.
|
87 |
4. Go to the plugin settings page and configure as required (note this will also download the GeoIP database for the fist time).
|
88 |
|
89 |
+
== Shortcode Reference ==
|
90 |
+
To display stats in your post, page or widget you can use the following shortcodes:
|
91 |
+
|
92 |
+
WP Statitics shortcode is in the format of:
|
93 |
+
`[wpstatistics stat=xxx time=xxxx provider=xxxx]`
|
94 |
+
|
95 |
+
Where:
|
96 |
+
|
97 |
+
stat = the statistic you want.
|
98 |
+
|
99 |
+
time = is the timeframe, strtotime() will be used to calculate it.
|
100 |
+
|
101 |
+
provider = the search provider to get stats on.
|
102 |
+
|
103 |
+
* User online: `[wpstatistics stat="usersonline"]`
|
104 |
+
* Today visit: `[wpstatistics stat="visits" time="today"]`
|
105 |
+
* Today vistors: `[wpstatistics stat="vistors" time="today"]`
|
106 |
+
* All Search Engine reffered: `[wpstatistics stat="searchs" provider="all"]`
|
107 |
+
* Total posts: `[wpstatistics stat="postcount"]`
|
108 |
+
* Total pages: `[wpstatistics stat="pagecount"]`
|
109 |
+
* Total comments: `[wpstatistics stat="commentcount"]`
|
110 |
+
* Total spams: `[wpstatistics stat="spamcount"]`
|
111 |
+
* Total users: `[wpstatistics stat="usercount"]`
|
112 |
+
* Average posts: `[wpstatistics stat="postaverage"]`
|
113 |
+
* Average comments: `[wpstatistics stat="commentaverage"]`
|
114 |
+
* Average users: `[wpstatistics stat="useraverage"]`
|
115 |
+
* Last post date: `[wpstatistics stat="lpd"]`
|
116 |
+
|
117 |
== Function Reference ==
|
118 |
To display stats in your own pages you can use the following functions:
|
119 |
|
134 |
* Number of visits of 40 days to today: `<?php echo wp_statistics_visit('-45'); ?>`
|
135 |
* Number of visitors 45 days ago: `<?php echo wp_statistics_visitor('-45', true); ?>`
|
136 |
* Number of visits 45 days ago: `<?php echo wp_statistics_visit('-45', true); ?>`
|
137 |
+
* All Search Engine reffered: `<?php echo wp_statistics_searchengine(); ?>`
|
138 |
+
* Google Search Engine reffered: `<?php echo wp_statistics_searchengine('google'); ?>`
|
139 |
+
* Yahoo Search Engine reffered: `<?php echo wp_statistics_searchengine('yahoo'); ?>`
|
140 |
+
* Bing Search Engine reffered: `<?php echo wp_statistics_searchengine('bing'); ?>`
|
141 |
+
* Google Search Engine reffered in today: `<?php echo wp_statistics_searchengine('google', 'today'); ?>`
|
142 |
+
* Google Search Engine reffered in yesterday: `<?php echo wp_statistics_searchengine('google', 'yesterday'); ?>`
|
143 |
+
* Google Search Engine reffered in 5 days ago: `<?php echo wp_statistics_searchengine('google', '-5'); ?>`
|
144 |
* Total All Search Enginee reffered `<?php echo wp_statistics_searchengine('all', 'total'); ?>`
|
145 |
+
* Total posts: `<?php echo wp_statistics_countposts(); ?>`
|
146 |
+
* Total pages: `<?php echo wp_statistics_countpages(); ?>`
|
147 |
+
* Total comments: `<?php echo wp_statistics_countcomment(); ?>`
|
148 |
+
* Total spams: `<?php echo wp_statistics_countspam(); ?>`
|
149 |
+
* Total users: `<?php echo wp_statistics_countusers(); ?>`
|
150 |
+
* Last post date: `<?php echo wp_statistics_lastpostdate(); ?>`
|
151 |
+
* Average posts: `<?php echo wp_statistics_average_post(); ?>`
|
152 |
+
* Average comments: `<?php echo wp_statistics_average_comment(); ?>`
|
153 |
+
* Average users: `<?php echo wp_statistics_average_registeruser(); ?>`
|
|
|
154 |
|
155 |
== Frequently Asked Questions ==
|
156 |
= How to update to version 3.0? =
|
195 |
* 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.
|
196 |
|
197 |
== Changelog ==
|
198 |
+
= 5.0 =
|
199 |
+
* Added: Show last visitor in Google Map.
|
200 |
+
* Added: Search visitor by IP in log pages.
|
201 |
+
* Added: Total line to charts with multiple values, like the search engine referrals.
|
202 |
+
* Added: Shortcodes. [By Greg Ross](http://profiles.wordpress.org/gregross)
|
203 |
+
* Added: Dashicons to log pages.
|
204 |
+
* Fixes: Small bugs.
|
205 |
+
* Fixes: More debug warnings.
|
206 |
+
* Fixes: User access function level code always returned manage_options no matter what it was actaully set to.
|
207 |
+
* Updated: Hungarian (hu_HU) language.
|
208 |
+
* Updated: Turkish (tr_TR) language.
|
209 |
+
* Removed: Parameter from `wp_statistics_lastpostdate()` function and return date type became dynamic.
|
210 |
+
|
211 |
= 4.8.1 =
|
212 |
* Fixes: Small bug in the `Current_Date`.
|
213 |
* Fixes: Small bug in the `exclusions.php` file.
|
screenshot-1.png
CHANGED
Binary file
|
shortcode.php
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
add_shortcode( 'wpstatistics', 'wp_statistics_shortcodes' );
|
3 |
+
add_filter('widget_text', 'do_shortcode');
|
4 |
+
|
5 |
+
function wp_statistics_shortcodes($atts) {
|
6 |
+
/*
|
7 |
+
WP Statitics shortcode is in the format of:
|
8 |
+
|
9 |
+
[wpstatistics stat=xxx time=xxxx provider=xxxx]
|
10 |
+
|
11 |
+
Where:
|
12 |
+
stat = the statistic you want.
|
13 |
+
time = is the timeframe, strtotime() will be used to calculate it.
|
14 |
+
provider = the search provider to get stats on.
|
15 |
+
*/
|
16 |
+
|
17 |
+
switch( $atts['stat'] ) {
|
18 |
+
case 'usersonline':
|
19 |
+
$result = wp_statistics_useronline();
|
20 |
+
break;
|
21 |
+
|
22 |
+
case 'visits':
|
23 |
+
$result = wp_statistics_visit($atts['time']);
|
24 |
+
break;
|
25 |
+
|
26 |
+
case 'vistors':
|
27 |
+
$result = wp_statistics_visitor($atts['time']);
|
28 |
+
break;
|
29 |
+
|
30 |
+
case 'searchs':
|
31 |
+
$result = wp_statistics_searchengine($attr['provider']);
|
32 |
+
break;
|
33 |
+
|
34 |
+
case 'postcount':
|
35 |
+
$result = wp_statistics_countposts();
|
36 |
+
break;
|
37 |
+
|
38 |
+
case 'pagecount':
|
39 |
+
$result = wp_statistics_countpages();
|
40 |
+
break;
|
41 |
+
|
42 |
+
case 'commentcount':
|
43 |
+
$result = wp_statistics_countcomment();
|
44 |
+
break;
|
45 |
+
|
46 |
+
case 'spamcount':
|
47 |
+
$result = wp_statistics_countspam();
|
48 |
+
break;
|
49 |
+
|
50 |
+
case 'usercount':
|
51 |
+
$result = wp_statistics_countusers();
|
52 |
+
break;
|
53 |
+
|
54 |
+
case 'postaverage':
|
55 |
+
$result = wp_statistics_average_post();
|
56 |
+
break;
|
57 |
+
|
58 |
+
case 'commentaverage':
|
59 |
+
$result = wp_statistics_average_comment();
|
60 |
+
break;
|
61 |
+
|
62 |
+
case 'useraverage':
|
63 |
+
$result = wp_statistics_average_registeruser();
|
64 |
+
break;
|
65 |
+
|
66 |
+
case 'lpd':
|
67 |
+
$result = wp_statistics_lastpostdate();
|
68 |
+
break;
|
69 |
+
}
|
70 |
+
|
71 |
+
return $result;
|
72 |
+
}
|
73 |
+
?>
|
widget.php
CHANGED
@@ -151,11 +151,7 @@
|
|
151 |
if(get_option('lpd_widget')) {
|
152 |
echo "<li>";
|
153 |
echo __('Last Post Date', 'wp_statistics'). ": ";
|
154 |
-
|
155 |
-
echo wp_statistics_lastpostdate("farsi");
|
156 |
-
} else {
|
157 |
-
echo wp_statistics_lastpostdate();
|
158 |
-
}
|
159 |
echo "</li>";
|
160 |
}
|
161 |
echo "</ul>";
|
151 |
if(get_option('lpd_widget')) {
|
152 |
echo "<li>";
|
153 |
echo __('Last Post Date', 'wp_statistics'). ": ";
|
154 |
+
echo wp_statistics_lastpostdate();
|
|
|
|
|
|
|
|
|
155 |
echo "</li>";
|
156 |
}
|
157 |
echo "</ul>";
|
wp-statistics.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
-
Plugin URI: http://
|
5 |
Description: Complete statistics for your blog.
|
6 |
-
Version:
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://mostafa-soufi.ir/
|
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', '
|
19 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
|
20 |
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
21 |
|
@@ -54,14 +54,20 @@ License: GPL2
|
|
54 |
|
55 |
include_once dirname( __FILE__ ) . '/includes/functions/functions.php';
|
56 |
include_once dirname( __FILE__ ) . '/widget.php';
|
|
|
57 |
include_once dirname( __FILE__ ) . '/schedule.php';
|
58 |
|
59 |
function wp_statistics_not_enable() {
|
60 |
$get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
|
64 |
-
if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') ) {
|
65 |
add_action('admin_notices', 'wp_statistics_not_enable');
|
66 |
}
|
67 |
|
@@ -95,23 +101,17 @@ License: GPL2
|
|
95 |
global $wp_roles;
|
96 |
|
97 |
$role_list = $wp_roles->get_names();
|
98 |
-
$all_caps = array();
|
99 |
|
100 |
foreach( $wp_roles->roles as $role ) {
|
101 |
|
102 |
$cap_list = $role['capabilities'];
|
103 |
|
104 |
foreach( $cap_list as $key => $cap ) {
|
105 |
-
if(
|
106 |
-
if( array_key_exists( $capability, $all_caps ) ) { return $capability; }
|
107 |
-
}
|
108 |
}
|
109 |
}
|
110 |
|
111 |
-
if( $all_caps[$capability] == 1 ) { return $capability; }
|
112 |
-
|
113 |
return 'manage_options';
|
114 |
-
|
115 |
}
|
116 |
|
117 |
function wp_statistics_menu() {
|
@@ -138,7 +138,7 @@ License: GPL2
|
|
138 |
}
|
139 |
add_action('admin_menu', 'wp_statistics_menu');
|
140 |
|
141 |
-
function
|
142 |
|
143 |
global $wp_version;
|
144 |
|
@@ -148,7 +148,7 @@ License: GPL2
|
|
148 |
wp_enqueue_style('wpstatistics-admin-css', plugin_dir_url(__FILE__) . 'assets/css/admin-old.css', true, '1.0');
|
149 |
}
|
150 |
}
|
151 |
-
add_action('admin_head', '
|
152 |
|
153 |
function wp_statistics_menubar() {
|
154 |
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
+
Plugin URI: http://mostafa-soufi.ir/
|
5 |
Description: Complete statistics for your blog.
|
6 |
+
Version: 5.0
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://mostafa-soufi.ir/
|
9 |
Text Domain: wp_statistics
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
+
define('WP_STATISTICS_VERSION', '5.0');
|
19 |
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
|
20 |
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
21 |
|
54 |
|
55 |
include_once dirname( __FILE__ ) . '/includes/functions/functions.php';
|
56 |
include_once dirname( __FILE__ ) . '/widget.php';
|
57 |
+
include_once dirname( __FILE__ ) . '/shortcode.php';
|
58 |
include_once dirname( __FILE__ ) . '/schedule.php';
|
59 |
|
60 |
function wp_statistics_not_enable() {
|
61 |
$get_bloginfo_url = get_admin_url() . "admin.php?page=wp-statistics/settings";
|
62 |
+
|
63 |
+
if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') )
|
64 |
+
echo '<div class="error"><p>'.sprintf(__('Facilities Wordpress Statistics not enabled! Please go to <a href="%s">setting page</a> and enable statistics', 'wp_statistics'), $get_bloginfo_url).'</p></div>';
|
65 |
+
|
66 |
+
if(!get_option('wps_geoip'))
|
67 |
+
echo '<div class="error"><p>'.sprintf(__('GeoIP collection is not active! Please go to <a href="%s">Setting page > GeoIP</a> and enable this feature (GeoIP can detect the visitors country)', 'wp_statistics'), $get_bloginfo_url . '&tab=geoip').'</p></div>';
|
68 |
}
|
69 |
|
70 |
+
if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') || !get_option('wps_geoip') ) {
|
71 |
add_action('admin_notices', 'wp_statistics_not_enable');
|
72 |
}
|
73 |
|
101 |
global $wp_roles;
|
102 |
|
103 |
$role_list = $wp_roles->get_names();
|
|
|
104 |
|
105 |
foreach( $wp_roles->roles as $role ) {
|
106 |
|
107 |
$cap_list = $role['capabilities'];
|
108 |
|
109 |
foreach( $cap_list as $key => $cap ) {
|
110 |
+
if( $capability == $key ) { return $capability; }
|
|
|
|
|
111 |
}
|
112 |
}
|
113 |
|
|
|
|
|
114 |
return 'manage_options';
|
|
|
115 |
}
|
116 |
|
117 |
function wp_statistics_menu() {
|
138 |
}
|
139 |
add_action('admin_menu', 'wp_statistics_menu');
|
140 |
|
141 |
+
function wp_statistics_menu_icon() {
|
142 |
|
143 |
global $wp_version;
|
144 |
|
148 |
wp_enqueue_style('wpstatistics-admin-css', plugin_dir_url(__FILE__) . 'assets/css/admin-old.css', true, '1.0');
|
149 |
}
|
150 |
}
|
151 |
+
add_action('admin_head', 'wp_statistics_menu_icon');
|
152 |
|
153 |
function wp_statistics_menubar() {
|
154 |
|