Version Description
- Added: Definable robots list to exclude based upon the user agent string from the client.
- Added: IP address and subnet exclusion support.
- Added: Client IP and user agent information to the optimization page.
- Added: Support to exclude users from data collection based on their WordPress role.
- Fixed: A bug when the GeoIP code was disabled with optimization page.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 4.3 |
Comparing to | |
See all releases |
Code changes from version 4.2 to 4.3
- includes/class/hits.class.php +98 -19
- includes/class/hits.geoip.class.php +98 -19
- includes/class/statistics.class.php +0 -12
- includes/log/log.php +3 -1
- includes/log/top-countries.php +10 -10
- includes/optimization/optimization-geoip.php +30 -4
- includes/optimization/optimization.php +27 -1
- includes/setting/settings.php +57 -2
- install.php +3 -0
- languages/default.mo +0 -0
- languages/default.po +270 -160
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +292 -167
- readme.txt +12 -5
- upgrade.php +15 -0
- wp-statistics.php +27 -12
includes/class/hits.class.php
CHANGED
@@ -2,18 +2,102 @@
|
|
2 |
class Hits extends WP_Statistics {
|
3 |
|
4 |
public $result = null;
|
|
|
5 |
|
6 |
public function __construct() {
|
7 |
-
|
|
|
|
|
8 |
parent::__construct();
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
public function Visits() {
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
// If we're a webcrawler or referral from ourselves, don't record the visit.
|
16 |
-
if( !$this->Check_Spiders() && !( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url("/") || $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url() ) ) {
|
17 |
|
18 |
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
|
19 |
|
@@ -48,29 +132,24 @@
|
|
48 |
|
49 |
public function Visitors() {
|
50 |
|
51 |
-
|
|
|
52 |
|
53 |
-
|
54 |
-
if( !$this->Check_Spiders() && !( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url("/") || $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url() ) ) {
|
55 |
-
|
56 |
-
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visitor WHERE `last_counter` = '{$this->Current_Date('Y-m-d')}' AND `ip` = '{$this->get_IP()}'");
|
57 |
|
58 |
if( !$this->result ) {
|
59 |
|
60 |
-
$agent = $this->get_UserAgent();
|
61 |
-
$ip = $this->get_IP();
|
62 |
-
|
63 |
if( get_option('wps_store_ua') == true ) { $ua = $_SERVER['HTTP_USER_AGENT']; } else { $ua = ''; }
|
64 |
-
|
65 |
$this->db->insert(
|
66 |
$this->tb_prefix . "statistics_visitor",
|
67 |
array(
|
68 |
'last_counter' => $this->Current_date('Y-m-d'),
|
69 |
'referred' => $this->get_Referred(true),
|
70 |
-
'agent' => $agent['browser'],
|
71 |
-
'platform' => $agent['platform'],
|
72 |
-
'version' => $agent['version'],
|
73 |
-
'ip' => $ip,
|
74 |
'location' => '000',
|
75 |
'UAString' => $ua
|
76 |
)
|
2 |
class Hits extends WP_Statistics {
|
3 |
|
4 |
public $result = null;
|
5 |
+
private $exclusion_match = FALSE;
|
6 |
|
7 |
public function __construct() {
|
8 |
+
|
9 |
+
global $wp_version;
|
10 |
+
|
11 |
parent::__construct();
|
12 |
+
|
13 |
+
// The follow exclusion checks are done during the class construction so we don't have to execute them twice if we're tracking visits and visitors.
|
14 |
+
//
|
15 |
+
// Order of exclusion checks is:
|
16 |
+
// 1 - robots
|
17 |
+
// 2 - IP/Subnets
|
18 |
+
// 3 - Self Referrals
|
19 |
+
// 4 - User roles
|
20 |
+
//
|
21 |
+
|
22 |
+
// Pull the robots from the database.
|
23 |
+
$robots = explode( "\n", get_option('wps_robotlist') );
|
24 |
+
|
25 |
+
// Check to see if we match any of the robots.
|
26 |
+
foreach($robots as $robot) {
|
27 |
+
$robot = trim($robot);
|
28 |
+
|
29 |
+
// If the match case is less than 5 characters long, it might match too much so don't execute it.
|
30 |
+
if(strlen($robot) > 3) {
|
31 |
+
if(stripos($_SERVER['HTTP_USER_AGENT'], $robot) !== FALSE) {
|
32 |
+
$this->exclusion_match = TRUE;
|
33 |
+
break;
|
34 |
+
}
|
35 |
+
}
|
36 |
+
}
|
37 |
|
38 |
+
if( !$this->exclusion_match ) {
|
39 |
+
// Pull the subnets from the database.
|
40 |
+
$subnets = explode( "\n", get_option('wps_exclude_ip') );
|
41 |
+
|
42 |
+
// Check to see if we match any of the excluded addresses.
|
43 |
+
foreach($subnets as $subnet ) {
|
44 |
+
$subnet = trim($subnet);
|
45 |
+
|
46 |
+
// The shortest ip address is 1.1.1.1, anything less must be a malformed entry.
|
47 |
+
if(strlen($subnet) > 6) {
|
48 |
+
if( $this->net_match( $subnet, $this->ip ) ) {
|
49 |
+
$this->exclusion_match = TRUE;
|
50 |
+
break;
|
51 |
+
}
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
// Check to see if we are being referred to ourselves.
|
56 |
+
if( !$this->exclusion_match ) {
|
57 |
+
if( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url("/") ) { $this->exclusion_match = TRUE; }
|
58 |
+
if( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url() ) { $this->exclusion_match = TRUE; }
|
59 |
+
|
60 |
+
// Finally check to see if we are excluding based on the user role.
|
61 |
+
if( !$this->exclusion_match ) {
|
62 |
+
|
63 |
+
if( is_user_logged_in() ) {
|
64 |
+
$current_user = wp_get_current_user();
|
65 |
+
|
66 |
+
foreach( $current_user->roles as $role ) {
|
67 |
+
$option_name = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
68 |
+
if( get_option($option_name) == TRUE ) {
|
69 |
+
$this->exclusion_match = TRUE;
|
70 |
+
break;
|
71 |
+
}
|
72 |
+
}
|
73 |
+
}
|
74 |
+
}
|
75 |
+
}
|
76 |
+
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
// From: http://www.php.net/manual/en/function.ip2long.php
|
81 |
+
//
|
82 |
+
|
83 |
+
private function net_match($network, $ip) {
|
84 |
+
// determines if a network in the form of 192.168.17.1/16 or
|
85 |
+
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
86 |
+
$ip_arr = explode('/', $network);
|
87 |
+
$network_long = ip2long($ip_arr[0]);
|
88 |
+
|
89 |
+
$x = ip2long($ip_arr[1]);
|
90 |
+
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
|
91 |
+
$ip_long = ip2long($ip);
|
92 |
+
|
93 |
+
// echo ">".$ip_arr[1]."> ".decbin($mask)."\n";
|
94 |
+
return ($ip_long & $mask) == ($network_long & $mask);
|
95 |
+
}
|
96 |
+
|
97 |
public function Visits() {
|
98 |
|
99 |
+
// If we're a webcrawler or referral from ourselves or an excluded address don't record the visit.
|
100 |
+
if( !$this->exclusion_match ) {
|
|
|
|
|
101 |
|
102 |
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
|
103 |
|
132 |
|
133 |
public function Visitors() {
|
134 |
|
135 |
+
// If we're a webcrawler or referral from ourselves or an excluded address don't record the visit.
|
136 |
+
if( !$this->exclusion_match ) {
|
137 |
|
138 |
+
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visitor WHERE `last_counter` = '{$this->Current_Date('Y-m-d')}' AND `ip` = '{$this->ip}'");
|
|
|
|
|
|
|
139 |
|
140 |
if( !$this->result ) {
|
141 |
|
|
|
|
|
|
|
142 |
if( get_option('wps_store_ua') == true ) { $ua = $_SERVER['HTTP_USER_AGENT']; } else { $ua = ''; }
|
143 |
+
|
144 |
$this->db->insert(
|
145 |
$this->tb_prefix . "statistics_visitor",
|
146 |
array(
|
147 |
'last_counter' => $this->Current_date('Y-m-d'),
|
148 |
'referred' => $this->get_Referred(true),
|
149 |
+
'agent' => $this->agent['browser'],
|
150 |
+
'platform' => $this->agent['platform'],
|
151 |
+
'version' => $this->agent['version'],
|
152 |
+
'ip' => $this->ip,
|
153 |
'location' => '000',
|
154 |
'UAString' => $ua
|
155 |
)
|
includes/class/hits.geoip.class.php
CHANGED
@@ -6,18 +6,102 @@
|
|
6 |
class Hits extends WP_Statistics {
|
7 |
|
8 |
public $result = null;
|
|
|
9 |
|
10 |
public function __construct() {
|
11 |
-
|
|
|
|
|
12 |
parent::__construct();
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
public function Visits() {
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
// If we're a webcrawler or referral from ourselves, don't record the visit.
|
20 |
-
if( !$this->Check_Spiders() && !( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url("/") || $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url() ) ) {
|
21 |
|
22 |
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
|
23 |
|
@@ -52,20 +136,15 @@
|
|
52 |
|
53 |
public function Visitors() {
|
54 |
|
55 |
-
|
|
|
56 |
|
57 |
-
|
58 |
-
if( !$this->Check_Spiders() && !( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url("/") || $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url() ) ) {
|
59 |
-
|
60 |
-
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visitor WHERE `last_counter` = '{$this->Current_Date('Y-m-d')}' AND `ip` = '{$this->get_IP()}'");
|
61 |
|
62 |
if( !$this->result ) {
|
63 |
|
64 |
-
$agent = $this->get_UserAgent();
|
65 |
-
$ip = $this->get_IP();
|
66 |
-
|
67 |
if( get_option('wps_store_ua') == true ) { $ua = $_SERVER['HTTP_USER_AGENT']; } else { $ua = ''; }
|
68 |
-
|
69 |
try
|
70 |
{
|
71 |
$reader = new Reader( plugin_dir_path( __FILE__ ) . '../../GeoIP2-db/GeoLite2-Country.mmdb' );
|
@@ -82,10 +161,10 @@
|
|
82 |
array(
|
83 |
'last_counter' => $this->Current_date('Y-m-d'),
|
84 |
'referred' => $this->get_Referred(true),
|
85 |
-
'agent' => $agent['browser'],
|
86 |
-
'platform' => $agent['platform'],
|
87 |
-
'version' => $agent['version'],
|
88 |
-
'ip' => $ip,
|
89 |
'location' => $location,
|
90 |
'UAString' => $ua
|
91 |
)
|
6 |
class Hits extends WP_Statistics {
|
7 |
|
8 |
public $result = null;
|
9 |
+
private $exclusion_match = FALSE;
|
10 |
|
11 |
public function __construct() {
|
12 |
+
|
13 |
+
global $wp_version;
|
14 |
+
|
15 |
parent::__construct();
|
16 |
+
|
17 |
+
// The follow exclusion checks are done during the class construction so we don't have to execute them twice if we're tracking visits and visitors.
|
18 |
+
//
|
19 |
+
// Order of exclusion checks is:
|
20 |
+
// 1 - robots
|
21 |
+
// 2 - IP/Subnets
|
22 |
+
// 3 - Self Referrals
|
23 |
+
// 4 - User roles
|
24 |
+
//
|
25 |
+
|
26 |
+
// Pull the robots from the database.
|
27 |
+
$robots = explode( "\n", get_option('wps_robotlist') );
|
28 |
+
|
29 |
+
// Check to see if we match any of the robots.
|
30 |
+
foreach($robots as $robot) {
|
31 |
+
$robot = trim($robot);
|
32 |
+
|
33 |
+
// If the match case is less than 5 characters long, it might match too much so don't execute it.
|
34 |
+
if(strlen($robot) > 3) {
|
35 |
+
if(stripos($_SERVER['HTTP_USER_AGENT'], $robot) !== FALSE) {
|
36 |
+
$this->exclusion_match = TRUE;
|
37 |
+
break;
|
38 |
+
}
|
39 |
+
}
|
40 |
+
}
|
41 |
|
42 |
+
if( !$this->exclusion_match ) {
|
43 |
+
// Pull the subnets from the database.
|
44 |
+
$subnets = explode( "\n", get_option('wps_exclude_ip') );
|
45 |
+
|
46 |
+
// Check to see if we match any of the excluded addresses.
|
47 |
+
foreach($subnets as $subnet ) {
|
48 |
+
$subnet = trim($subnet);
|
49 |
+
|
50 |
+
// The shortest ip address is 1.1.1.1, anything less must be a malformed entry.
|
51 |
+
if(strlen($subnet) > 6) {
|
52 |
+
if( $this->net_match( $subnet, $this->ip ) ) {
|
53 |
+
$this->exclusion_match = TRUE;
|
54 |
+
break;
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
// Check to see if we are being referred to ourselves.
|
60 |
+
if( !$this->exclusion_match ) {
|
61 |
+
if( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url("/") ) { $this->exclusion_match = TRUE; }
|
62 |
+
if( $_SERVER['HTTP_USER_AGENT'] == "WordPress/" . $wp_version . "; " . get_home_url() ) { $this->exclusion_match = TRUE; }
|
63 |
+
|
64 |
+
// Finally check to see if we are excluding based on the user role.
|
65 |
+
if( !$this->exclusion_match ) {
|
66 |
+
|
67 |
+
if( is_user_logged_in() ) {
|
68 |
+
$current_user = wp_get_current_user();
|
69 |
+
|
70 |
+
foreach( $current_user->roles as $role ) {
|
71 |
+
$option_name = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
72 |
+
if( get_option($option_name) == TRUE ) {
|
73 |
+
$this->exclusion_match = TRUE;
|
74 |
+
break;
|
75 |
+
}
|
76 |
+
}
|
77 |
+
}
|
78 |
+
}
|
79 |
+
}
|
80 |
+
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
// From: http://www.php.net/manual/en/function.ip2long.php
|
85 |
+
//
|
86 |
+
|
87 |
+
private function net_match($network, $ip) {
|
88 |
+
// determines if a network in the form of 192.168.17.1/16 or
|
89 |
+
// 127.0.0.1/255.255.255.255 or 10.0.0.1 matches a given ip
|
90 |
+
$ip_arr = explode('/', $network);
|
91 |
+
$network_long = ip2long($ip_arr[0]);
|
92 |
+
|
93 |
+
$x = ip2long($ip_arr[1]);
|
94 |
+
$mask = long2ip($x) == $ip_arr[1] ? $x : 0xffffffff << (32 - $ip_arr[1]);
|
95 |
+
$ip_long = ip2long($ip);
|
96 |
+
|
97 |
+
// echo ">".$ip_arr[1]."> ".decbin($mask)."\n";
|
98 |
+
return ($ip_long & $mask) == ($network_long & $mask);
|
99 |
+
}
|
100 |
+
|
101 |
public function Visits() {
|
102 |
|
103 |
+
// If we're a webcrawler or referral from ourselves or an excluded address don't record the visit.
|
104 |
+
if( !$this->exclusion_match ) {
|
|
|
|
|
105 |
|
106 |
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visit ORDER BY `{$this->tb_prefix}statistics_visit`.`ID` DESC");
|
107 |
|
136 |
|
137 |
public function Visitors() {
|
138 |
|
139 |
+
// If we're a webcrawler or referral from ourselves or an excluded address don't record the visit.
|
140 |
+
if( !$this->exclusion_match ) {
|
141 |
|
142 |
+
$this->result = $this->db->get_row("SELECT * FROM {$this->tb_prefix}statistics_visitor WHERE `last_counter` = '{$this->Current_Date('Y-m-d')}' AND `ip` = '{$this->ip}'");
|
|
|
|
|
|
|
143 |
|
144 |
if( !$this->result ) {
|
145 |
|
|
|
|
|
|
|
146 |
if( get_option('wps_store_ua') == true ) { $ua = $_SERVER['HTTP_USER_AGENT']; } else { $ua = ''; }
|
147 |
+
|
148 |
try
|
149 |
{
|
150 |
$reader = new Reader( plugin_dir_path( __FILE__ ) . '../../GeoIP2-db/GeoLite2-Country.mmdb' );
|
161 |
array(
|
162 |
'last_counter' => $this->Current_date('Y-m-d'),
|
163 |
'referred' => $this->get_Referred(true),
|
164 |
+
'agent' => $this->agent['browser'],
|
165 |
+
'platform' => $this->agent['platform'],
|
166 |
+
'version' => $this->agent['version'],
|
167 |
+
'ip' => $this->ip,
|
168 |
'location' => $location,
|
169 |
'UAString' => $ua
|
170 |
)
|
includes/class/statistics.class.php
CHANGED
@@ -119,18 +119,6 @@
|
|
119 |
}
|
120 |
}
|
121 |
|
122 |
-
public function Check_Spiders() {
|
123 |
-
|
124 |
-
$spiders = array("A6-Indexer","AbachoBOT","accoona","AcoiRobot","AddThis.com","ADmantX","AhrefsBot","alexa","AltaVista","appie","Ask Jeeves","ASPSeek","Baiduspider","Benjojo","bingbot","Butterfly","ccbot","clam antivirus","crawler","CrocCrawler","Dumbot","eStyle","ezooms.bot","facebookexternalhit","FAST","Feedfetcher-Google","Firefly","froogle","GeonaBot","Gigabot","girafabot","Googlebot","ia_archiver","IDBot","InfoSeek","inktomi","linkdexbot","looksmart","Lycos","Mail.RU_Bot","Me.dium","Mediapartners-Google","MJ12bot","msnbot","MSRBOT","NationalDirectory","nutch","Openbot","proximic","rabaz","Rambler","Rankivabot","Scooter","Scrubby","SeznamBot","Slurp","SocialSearch","Sogou web spider","Spade","TechnoratiSnoop","TECNOSEEK","Teoma","TweetmemeBot","Twiceler","Twitturls","URL_Spider_SQL","WebAlta Crawler","WebBug","WebFindBot","WeSEE:Search","www.galaxy.com","yandex","Yahoo","Yammybot","ZyBorg");
|
125 |
-
|
126 |
-
foreach($spiders as $spider) {
|
127 |
-
if(stripos($_SERVER['HTTP_USER_AGENT'], $spider) !== FALSE)
|
128 |
-
return true;
|
129 |
-
}
|
130 |
-
|
131 |
-
return false;
|
132 |
-
}
|
133 |
-
|
134 |
public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
|
135 |
|
136 |
if( $strtotime ) {
|
119 |
}
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
|
123 |
|
124 |
if( $strtotime ) {
|
includes/log/log.php
CHANGED
@@ -251,7 +251,8 @@
|
|
251 |
</div>
|
252 |
</div>
|
253 |
</div>
|
254 |
-
|
|
|
255 |
<div class="postbox">
|
256 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
257 |
<h3 class="hndle">
|
@@ -295,6 +296,7 @@
|
|
295 |
</div>
|
296 |
</div>
|
297 |
</div>
|
|
|
298 |
|
299 |
<div class="postbox">
|
300 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
251 |
</div>
|
252 |
</div>
|
253 |
</div>
|
254 |
+
|
255 |
+
<?php if( get_option('wps_geoip') ) { ?>
|
256 |
<div class="postbox">
|
257 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
258 |
<h3 class="hndle">
|
296 |
</div>
|
297 |
</div>
|
298 |
</div>
|
299 |
+
<?php } ?>
|
300 |
|
301 |
<div class="postbox">
|
302 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
includes/log/top-countries.php
CHANGED
@@ -7,18 +7,18 @@
|
|
7 |
<div class="wrap">
|
8 |
<?php screen_icon('options-general'); ?>
|
9 |
<h2><?php _e('Top Countries', 'wp_statistics'); ?></h2>
|
10 |
-
<div class="postbox-container" id="last-log" style="width:
|
11 |
<div class="metabox-holder">
|
12 |
<div class="meta-box-sortables">
|
13 |
<div class="postbox">
|
14 |
<div class="inside">
|
15 |
<div class="inside">
|
16 |
-
<table class="widefat table-stats" id="last-referrer" style="width:
|
17 |
<tr>
|
18 |
-
<td
|
19 |
-
<td
|
20 |
-
<td
|
21 |
-
<td
|
22 |
</tr>
|
23 |
|
24 |
<?php
|
@@ -36,10 +36,10 @@
|
|
36 |
$i++;
|
37 |
|
38 |
echo "<tr>";
|
39 |
-
echo "<td style='text-align:
|
40 |
-
echo "<td style='text-align:
|
41 |
-
echo "<td style='text-align: left'>{$ISOCountryCode[$item]}</td>";
|
42 |
-
echo "<td style='text-align:
|
43 |
echo "</tr>";
|
44 |
}
|
45 |
?>
|
7 |
<div class="wrap">
|
8 |
<?php screen_icon('options-general'); ?>
|
9 |
<h2><?php _e('Top Countries', 'wp_statistics'); ?></h2>
|
10 |
+
<div class="postbox-container" id="last-log" style="width: 100%;">
|
11 |
<div class="metabox-holder">
|
12 |
<div class="meta-box-sortables">
|
13 |
<div class="postbox">
|
14 |
<div class="inside">
|
15 |
<div class="inside">
|
16 |
+
<table class="widefat table-stats" id="last-referrer" style="width: 100%;">
|
17 |
<tr>
|
18 |
+
<td><?php _e('Rank', 'wp_statistics'); ?></td>
|
19 |
+
<td><?php _e('Flag', 'wp_statistics'); ?></td>
|
20 |
+
<td><?php _e('Country', 'wp_statistics'); ?></td>
|
21 |
+
<td><?php _e('Visitor Count', 'wp_statistics'); ?></td>
|
22 |
</tr>
|
23 |
|
24 |
<?php
|
36 |
$i++;
|
37 |
|
38 |
echo "<tr>";
|
39 |
+
echo "<td style='text-align: center;'>$i</td>";
|
40 |
+
echo "<td style='text-align: center;'><img src='".plugins_url('wp-statistics/images/flags/' . $item . '.png')."' title='".__($ISOCountryCode[$item], 'wp_statistics')."'/></td>";
|
41 |
+
echo "<td style='text-align: left; direction: ltr;'>{$ISOCountryCode[$item]}</td>";
|
42 |
+
echo "<td style='text-align: center;'>{$value}</td>";
|
43 |
echo "</tr>";
|
44 |
}
|
45 |
?>
|
includes/optimization/optimization-geoip.php
CHANGED
@@ -106,7 +106,7 @@
|
|
106 |
$wpdb->update( $table_prefix . "statistics_visitor", array( 'location' => $location ), array( 'id' => $item->id) );
|
107 |
}
|
108 |
|
109 |
-
|
110 |
}
|
111 |
?>
|
112 |
<div class="wrap">
|
@@ -164,6 +164,32 @@
|
|
164 |
</td>
|
165 |
</tr>
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
<tr valign="top">
|
168 |
<th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
|
169 |
</tr>
|
@@ -284,12 +310,12 @@
|
|
284 |
|
285 |
<tr valign="top">
|
286 |
<th scope="row">
|
287 |
-
<label for="populate-submit"><?php _e('
|
288 |
</th>
|
289 |
|
290 |
<td>
|
291 |
-
<input id="populate-submit" class="button button-primary" type="button" value="<?php _e('
|
292 |
-
<p class="description"><?php _e('
|
293 |
</td>
|
294 |
</tr>
|
295 |
</tbody>
|
106 |
$wpdb->update( $table_prefix . "statistics_visitor", array( 'location' => $location ), array( 'id' => $item->id) );
|
107 |
}
|
108 |
|
109 |
+
echo "<div class='updated settings-error'><p><strong>" . sprintf(__('%s New records is updated.', 'wp_statistics'), $count) . "</strong></p></div>";
|
110 |
}
|
111 |
?>
|
112 |
<div class="wrap">
|
164 |
</td>
|
165 |
</tr>
|
166 |
|
167 |
+
<tr valign="top">
|
168 |
+
<th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
|
169 |
+
</tr>
|
170 |
+
|
171 |
+
<tr valign="top">
|
172 |
+
<th scope="row">
|
173 |
+
<?php _e('Client IP', 'wp_statistics'); ?>:
|
174 |
+
</th>
|
175 |
+
|
176 |
+
<td>
|
177 |
+
<strong><?php $wpstats = new WP_Statistics(); echo $wpstats->get_IP(); ?></strong>
|
178 |
+
<p class="description"><?php _e('The client IP address.', 'wp_statistics'); ?></p>
|
179 |
+
</td>
|
180 |
+
</tr>
|
181 |
+
|
182 |
+
<tr valign="top">
|
183 |
+
<th scope="row">
|
184 |
+
<?php _e('User Agent', 'wp_statistics'); ?>:
|
185 |
+
</th>
|
186 |
+
|
187 |
+
<td>
|
188 |
+
<strong><?php echo $_SERVER['HTTP_USER_AGENT']; ?></strong>
|
189 |
+
<p class="description"><?php _e('The client user agent string.', 'wp_statistics'); ?></p>
|
190 |
+
</td>
|
191 |
+
</tr>
|
192 |
+
|
193 |
<tr valign="top">
|
194 |
<th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
|
195 |
</tr>
|
310 |
|
311 |
<tr valign="top">
|
312 |
<th scope="row">
|
313 |
+
<label for="populate-submit"><?php _e('Countries', 'wp_statistics'); ?>:</label>
|
314 |
</th>
|
315 |
|
316 |
<td>
|
317 |
+
<input id="populate-submit" class="button button-primary" type="button" value="<?php _e('Upgrade Now!', 'wp_statistics'); ?>" name="populate-submit" onclick="location.href=document.URL+'&populate=1'">
|
318 |
+
<p class="description"><?php _e('Get updates for the location and the countries, this may take a while', 'wp_statistics'); ?></p>
|
319 |
</td>
|
320 |
</tr>
|
321 |
</tbody>
|
includes/optimization/optimization.php
CHANGED
@@ -136,6 +136,32 @@
|
|
136 |
</td>
|
137 |
</tr>
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
<tr valign="top">
|
140 |
<th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
|
141 |
</tr>
|
@@ -191,7 +217,7 @@
|
|
191 |
<option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
|
192 |
</select>
|
193 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
194 |
-
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"
|
195 |
|
196 |
<span id="empty-result"></span>
|
197 |
</td>
|
136 |
</td>
|
137 |
</tr>
|
138 |
|
139 |
+
<tr valign="top">
|
140 |
+
<th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
|
141 |
+
</tr>
|
142 |
+
|
143 |
+
<tr valign="top">
|
144 |
+
<th scope="row">
|
145 |
+
<?php _e('Client IP', 'wp_statistics'); ?>:
|
146 |
+
</th>
|
147 |
+
|
148 |
+
<td>
|
149 |
+
<strong><?php $wpstats = new WP_Statistics(); echo $wpstats->get_IP(); ?></strong>
|
150 |
+
<p class="description"><?php _e('The client IP address.', 'wp_statistics'); ?></p>
|
151 |
+
</td>
|
152 |
+
</tr>
|
153 |
+
|
154 |
+
<tr valign="top">
|
155 |
+
<th scope="row">
|
156 |
+
<?php _e('User Agent', 'wp_statistics'); ?>:
|
157 |
+
</th>
|
158 |
+
|
159 |
+
<td>
|
160 |
+
<strong><?php echo $_SERVER['HTTP_USER_AGENT']; ?></strong>
|
161 |
+
<p class="description"><?php _e('The client user agent string.', 'wp_statistics'); ?></p>
|
162 |
+
</td>
|
163 |
+
</tr>
|
164 |
+
|
165 |
<tr valign="top">
|
166 |
<th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
|
167 |
</tr>
|
217 |
<option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
|
218 |
</select>
|
219 |
<p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
|
220 |
+
<input id="empty-table-submit" class="button button-primary" type="submit" value="<?php _e('Clear now!', 'wp_statistics'); ?>" name="empty-table-submit" Onclick="return false;"/>
|
221 |
|
222 |
<span id="empty-result"></span>
|
223 |
</td>
|
includes/setting/settings.php
CHANGED
@@ -101,9 +101,63 @@
|
|
101 |
</tr>
|
102 |
|
103 |
<tr valign="top">
|
104 |
-
<th scope="row" colspan="2"><h3><?php _e('
|
105 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
<tr valign="top">
|
108 |
<th scope="row">
|
109 |
<label for="chart-type"><?php _e('Chart type', 'wp_statistics'); ?>:</label>
|
@@ -218,7 +272,8 @@
|
|
218 |
<td>
|
219 |
<input id="geoip-enable" type="checkbox" name="wps_geoip" <?php echo get_option('wps_geoip')==true? "checked='checked'":'';?>>
|
220 |
<label for="geoip-enable"><?php _e('Active', 'wp_statistics'); ?></label>
|
221 |
-
<p class="description"><?php _e('
|
|
|
222 |
</td>
|
223 |
</tr>
|
224 |
|
101 |
</tr>
|
102 |
|
103 |
<tr valign="top">
|
104 |
+
<th scope="row" colspan="2"><h3><?php _e('Exclude User Roles', 'wp_statistics'); ?></h3></th>
|
105 |
</tr>
|
106 |
+
<?php
|
107 |
+
global $wp_roles;
|
108 |
+
|
109 |
+
$role_list = $wp_roles->get_names();
|
110 |
+
|
111 |
+
foreach( $role_list as $role ) {
|
112 |
+
$option_name = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
113 |
+
?>
|
114 |
+
|
115 |
+
<tr valign="top">
|
116 |
+
<th scope="row"><label for="<?php echo $option_name;?>"><?php _e($role, 'wp_statistics'); ?>:</label></th>
|
117 |
+
<td>
|
118 |
+
<input id="<?php echo $option_name;?>" type="checkbox" value="1" name="<?php echo $option_name;?>" <?php echo get_option($option_name)==true? "checked='checked'":'';?>><label for="<?php echo $option_name;?>"><?php _e('Exclude', 'wp_statistics'); ?></label>
|
119 |
+
<p class="description"><?php echo sprintf(__('Exclude %s role from data collection.', 'wp_statistics'), $role); ?></p>
|
120 |
+
</td>
|
121 |
+
</tr>
|
122 |
+
<?php } ?>
|
123 |
|
124 |
+
<tr valign="top">
|
125 |
+
<th scope="row" colspan="2"><h3><?php _e('IP/Robot Exclusions', 'wp_statistics'); ?></h3></th>
|
126 |
+
</tr>
|
127 |
+
|
128 |
+
<tr valign="top">
|
129 |
+
<th scope="row"><?php _e('Robot List', 'wp_statistics'); ?>:</th>
|
130 |
+
<td>
|
131 |
+
<textarea name="wps_robotlist" class="code" dir="ltr" rows="10" cols="60" id="wps_robotlist"><?php
|
132 |
+
$robotlist = get_option('wps_robotlist');
|
133 |
+
$robotarray = array('A6-Indexer','AbachoBOT','accoona','AcoiRobot','AddThis.com','ADmantX','AhrefsBot','alexa','AltaVista','appie','Ask Jeeves','ASPSeek','Baiduspider','Benjojo','bingbot','Butterfly','ccbot','clamantivirus','crawler','CrocCrawler','Dumbot','eStyle','ezooms.bot','facebookexternalhit','FAST','Feedfetcher-Google','Firfly','froogle','GeonaBot','Gigabot','girafabot','Googlebot','ia_archiver','IDBot','InfoSeek','inktomi','linkdexbot','looksmart','Lycos','Mail.RU_Bot','Me.dium','Mediapartners-Google','MJ12bot','msnbot','MRBOT','NationalDirectory','nutch','Openbot','proximic','rabaz','Rambler','Rankivabot','Scooter','Scrubby','SeznamBot','Slurp','SocialSearch','Sogou web spider','Spade','TechnoratiSnoop','TECNOSEEK','Teoma','TweetmemeBot','Twiceler','Twitturls','URL_Spider_SQL','WebAlta Crawler','WebBug','WebFindBot','WeSEE:Search','www.galaxy.com','yandex','Yahoo','Yammybot','ZyBorg');
|
134 |
+
|
135 |
+
if( $robotlist == "" )
|
136 |
+
{
|
137 |
+
$robotlist = implode("\n", $robotarray);
|
138 |
+
}
|
139 |
+
update_option( 'wps_robotlist', $robotlist );
|
140 |
+
echo $robotlist;
|
141 |
+
?></textarea>
|
142 |
+
<p class="description"><?php echo __('A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored.', 'wp_statistics'); ?></p>
|
143 |
+
<a onclick="var wps_robotlist = getElementById('wps_robotlist'); wps_robotlist.value = '<?php echo implode('\n', $robotarray);?>';" class="button"><?php _e('Reset to Default', 'wp_statistics');?></a>
|
144 |
+
</td>
|
145 |
+
</tr>
|
146 |
+
<tr valign="top">
|
147 |
+
<th scope="row"><?php _e('Excluded IP Address List', 'wp_statistics'); ?>:</th>
|
148 |
+
<td>
|
149 |
+
<textarea id="wps_exclude_ip" name="wps_exclude_ip" rows="5" cols="60" class="code" dir="ltr"><?php echo get_option('wps_exclude_ip');?></textarea>
|
150 |
+
<p class="description"><?php echo __('A list of IP addresses and (optional) subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, do not add any subnet value.', 'wp_statistics'); ?></p>
|
151 |
+
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n10.0.0.0/8' ); }" class="button"><?php _e('Add 10.0.0.0', 'wp_statistics');?></a>
|
152 |
+
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n172.16.0.0/12' ); }" class="button"><?php _e('Add 172.16.0.0', 'wp_statistics');?></a>
|
153 |
+
<a onclick="var wps_exclude_ip = getElementById('wps_exclude_ip'); if( wps_exclude_ip != null ) { wps_exclude_ip.value = jQuery.trim( wps_exclude_ip.value + '\n192.168.0.0/16' ); }" class="button"><?php _e('Add 192.168.0.0', 'wp_statistics');?></a>
|
154 |
+
</td>
|
155 |
+
</tr>
|
156 |
+
|
157 |
+
<tr valign="top">
|
158 |
+
<th scope="row" colspan="2"><h3><?php _e('Charts', 'wp_statistics'); ?></h3></th>
|
159 |
+
</tr>
|
160 |
+
|
161 |
<tr valign="top">
|
162 |
<th scope="row">
|
163 |
<label for="chart-type"><?php _e('Chart type', 'wp_statistics'); ?>:</label>
|
272 |
<td>
|
273 |
<input id="geoip-enable" type="checkbox" name="wps_geoip" <?php echo get_option('wps_geoip')==true? "checked='checked'":'';?>>
|
274 |
<label for="geoip-enable"><?php _e('Active', 'wp_statistics'); ?></label>
|
275 |
+
<p class="description"><?php _e('For get more information and location (country) from visitor, enable this feature.', 'wp_statistics'); ?></p>
|
276 |
+
<p class="description"><?php _e('(NOTE: Requires PHP version is 5.3.0 and higher.)', 'wp_statistics'); ?></p>
|
277 |
</td>
|
278 |
</tr>
|
279 |
|
install.php
CHANGED
@@ -66,6 +66,9 @@
|
|
66 |
if( get_option('wps_content_report') === FALSE ) { update_option('wps_content_report',''); }
|
67 |
if( get_option('wps_update_geoip') === FALSE ) { update_option('wps_update_geoip',TRUE); }
|
68 |
if( get_option('wps_store_ua') === FALSE ) { update_option('wps_store_ua',FALSE); }
|
|
|
|
|
|
|
69 |
|
70 |
$s = new WP_Statistics();
|
71 |
$s->Primary_Values();
|
66 |
if( get_option('wps_content_report') === FALSE ) { update_option('wps_content_report',''); }
|
67 |
if( get_option('wps_update_geoip') === FALSE ) { update_option('wps_update_geoip',TRUE); }
|
68 |
if( get_option('wps_store_ua') === FALSE ) { update_option('wps_store_ua',FALSE); }
|
69 |
+
if( get_option('wps_robotlist') === FALSE ) { update_option('wps_robotlist',"A6-Indexer\nAbachoBOT\naccoona\nAcoiRobot\nAddThis.com\nADmantX\nAhrefsBot\nalexa\nAltaVista\nappie\nAsk Jeeves\nASPSeek\nBaiduspider\nBenjojo\nbingbot\nButterfly\nccbot\nclamantivirus\ncrawler\nCrocCrawler\nDumbot\neStyle\nezooms.bot\nfacebookexternalhit\nFAST\nFeedfetcher-Google\nFirfly\nfroogle\nGeonaBot\nGigabot\ngirafabot\nGooglebot\nia_archiver\nIDBot\nInfoSeek\ninktomi\nlinkdexbot\nlooksmart\nLycos\nMail.RU_Bot\nMe.dium\nMediapartners-Google\nMJ12bot\nmsnbot\nMRBOT\nNationalDirectory\nnutch\nOpenbot\nproximic\nrabaz\nRambler\nRankivabot\nScooter\nScrubby\nSeznamBot\nSlurp\nSocialSearch\nSogou web spider\nSpade\nTechnoratiSnoop\nTECNOSEEK\nTeoma\nTweetmemeBot\nTwiceler\nTwitturls\nURL_Spider_SQL\nWebAlta Crawler\nWebBug\nWebFindBot\nWeSEE:Search\nwww.galaxy.com\nyandex\nYahoo\nYammybot\nZyBorg"); }
|
70 |
+
if( get_option('wps_exclude_administrator') === FALSE ) { update_option('wps_exclude_administrator',TRUE); }
|
71 |
+
|
72 |
|
73 |
$s = new WP_Statistics();
|
74 |
$s->Primary_Values();
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -18,13 +18,13 @@ msgstr ""
|
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr ""
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
28 |
msgid "Statistics"
|
29 |
msgstr ""
|
30 |
|
@@ -33,33 +33,33 @@ msgid "Show site stats in sidebar"
|
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
39 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr ""
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr ""
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr ""
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr ""
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr ""
|
@@ -80,13 +80,13 @@ msgid "Years Visit"
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr ""
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr ""
|
@@ -142,95 +142,115 @@ msgstr ""
|
|
142 |
msgid "Last Post Date"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
146 |
msgid "Wordpress Statistics"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
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:
|
161 |
msgid "Overview"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
166 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
167 |
msgid "Browsers"
|
168 |
msgstr ""
|
169 |
|
170 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
|
|
|
171 |
msgid "Countries"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
175 |
msgid "Hits"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
179 |
msgid "Referers"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
183 |
msgid "Searches"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
187 |
msgid "Search Words"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
191 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
192 |
msgid "Visitors"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
196 |
msgid "Optimization"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
200 |
msgid "Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
204 |
msgid "Today visitor"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
208 |
msgid "Today visit"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
212 |
msgid "Yesterday visitor"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
216 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
217 |
msgid "Yesterday visit"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
221 |
msgid "View Stats"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
225 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
227 |
msgid "You do not have sufficient permissions to access this page."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
231 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
232 |
msgstr ""
|
233 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
235 |
msgid "Browser Statistics"
|
236 |
msgstr ""
|
@@ -244,12 +264,12 @@ msgstr ""
|
|
244 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
245 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:112
|
246 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
|
247 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
248 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
250 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
251 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
252 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
253 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
254 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
255 |
msgid "Click to toggle"
|
@@ -330,7 +350,7 @@ msgid "1 Year"
|
|
330 |
msgstr ""
|
331 |
|
332 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
333 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
334 |
msgid "Hits Statistical Chart"
|
335 |
msgstr ""
|
336 |
|
@@ -344,19 +364,19 @@ msgid "days"
|
|
344 |
msgstr ""
|
345 |
|
346 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
347 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
348 |
msgid "Number of visits and visitors"
|
349 |
msgstr ""
|
350 |
|
351 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
352 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
353 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
354 |
msgid "Visitor"
|
355 |
msgstr ""
|
356 |
|
357 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
358 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
359 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
360 |
msgid "Visit"
|
361 |
msgstr ""
|
362 |
|
@@ -369,7 +389,7 @@ msgstr ""
|
|
369 |
|
370 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
371 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:25
|
372 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
373 |
msgid "Latest search words"
|
374 |
msgstr ""
|
375 |
|
@@ -383,8 +403,8 @@ msgstr ""
|
|
383 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
384 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
385 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
386 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
387 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
388 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
389 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
390 |
msgid "Google"
|
@@ -393,8 +413,8 @@ msgstr ""
|
|
393 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
|
394 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
395 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
|
396 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
397 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
398 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
|
399 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
400 |
msgid "Yahoo!"
|
@@ -403,8 +423,8 @@ msgstr ""
|
|
403 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
|
404 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
405 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
406 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
407 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
408 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
|
409 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
410 |
msgid "Bing"
|
@@ -412,8 +432,8 @@ msgstr ""
|
|
412 |
|
413 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
|
414 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
415 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
416 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
417 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
418 |
msgid "Map"
|
419 |
msgstr ""
|
@@ -432,12 +452,12 @@ msgstr ""
|
|
432 |
|
433 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
|
434 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
|
435 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
436 |
msgid "Recent Visitors"
|
437 |
msgstr ""
|
438 |
|
439 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
442 |
msgid "Country"
|
443 |
msgstr ""
|
@@ -485,11 +505,11 @@ msgstr ""
|
|
485 |
|
486 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
487 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
|
488 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
489 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
490 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
491 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
492 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
493 |
msgid "(See more)"
|
494 |
msgstr ""
|
495 |
|
@@ -512,78 +532,78 @@ msgstr ""
|
|
512 |
msgid "Address"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
516 |
msgid "Top 10 Countries"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
520 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
521 |
msgid "Rank"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
525 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
526 |
msgid "Flag"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
530 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
531 |
msgid "Visitor Count"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
535 |
msgid "About plugin"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
539 |
#, php-format
|
540 |
msgid "Plugin version: %s"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
544 |
msgid "Translations"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
548 |
msgid "Support"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
552 |
msgid "Farsi"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
556 |
msgid "Facebook"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
560 |
msgid "Weblog"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
564 |
msgid ""
|
565 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
566 |
"world!"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
570 |
msgid "Donate"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
574 |
msgid "Hits chart in the last 20 days"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
578 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
579 |
msgid "Search Engine Referrers Statistical Chart"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
583 |
msgid "Referrer search engine chart in the last 20 days"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
587 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
588 |
msgid "Number of referrer"
|
589 |
msgstr ""
|
@@ -642,6 +662,11 @@ msgstr ""
|
|
642 |
msgid "Are you sure?"
|
643 |
msgstr ""
|
644 |
|
|
|
|
|
|
|
|
|
|
|
645 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
|
646 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
647 |
msgid "Resources"
|
@@ -697,116 +722,137 @@ msgstr ""
|
|
697 |
|
698 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:168
|
699 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:140
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:173
|
704 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
|
705 |
-
msgid "
|
706 |
msgstr ""
|
707 |
|
708 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:178
|
709 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:194
|
710 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:216
|
711 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
|
712 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:263
|
713 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:150
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
714 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:166
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
719 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
720 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
msgid "Please select."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
725 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
726 |
msgid "Select the table for the output file."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
731 |
msgid "Export To"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
735 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
736 |
msgid "Select the output file type."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
740 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
741 |
msgid "Start Now!"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
745 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
746 |
msgid "Empty"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
751 |
msgid "Empty Table"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
755 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
756 |
msgid "All data table will be lost."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
760 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
761 |
msgid "Clear now!"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
765 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
766 |
msgid "Delete User Agent Types"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
770 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
771 |
msgid "Delete Agents"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
776 |
msgid "All visitor data will be lost for this agent type."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
780 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
781 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
782 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
783 |
msgid "Delete now!"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
787 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
788 |
msgid "Delete Platforms"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
792 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
793 |
msgid "All visitor data will be lost for this platform type."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
797 |
msgid "GeoIP Options"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
801 |
-
msgid "
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:291
|
805 |
-
msgid "Populate now!"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
809 |
-
msgid "
|
810 |
msgstr ""
|
811 |
|
812 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:15
|
@@ -817,16 +863,15 @@ msgstr ""
|
|
817 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
818 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
819 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
820 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
821 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
822 |
msgid "Active"
|
823 |
msgstr ""
|
824 |
|
825 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
826 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
827 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
828 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
829 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
830 |
msgid "Enable or disable this feature"
|
831 |
msgstr ""
|
832 |
|
@@ -881,121 +926,186 @@ msgid "For each visit to account for several hits. Currently %s."
|
|
881 |
msgstr ""
|
882 |
|
883 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
|
884 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
msgid "Chart type"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
892 |
msgid "Line"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
896 |
msgid "Spline"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
900 |
msgid "Area"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
904 |
msgid "Area Spline"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
908 |
msgid "Column"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
912 |
msgid "Bar"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
916 |
msgid "Scatter"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
920 |
msgid "Chart type in view stats."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
924 |
msgid "Statistical reporting settings"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
928 |
msgid "Time send"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
932 |
msgid "Hourly"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
936 |
msgid "Twice daily"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
940 |
msgid "daily"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
944 |
msgid "Select when receiving statistics report."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
948 |
msgid "Send Statistical reporting to"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
952 |
msgid "Email"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
956 |
msgid "SMS"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
960 |
msgid "Type Select Get Status Report."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
964 |
#, php-format
|
965 |
msgid ""
|
966 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
967 |
"\"_blank\">Wordpress SMS</a> plugin."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
971 |
msgid "Send Content Report"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
975 |
msgid "Enter the contents of the reports received."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
979 |
msgid "Input data:"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
983 |
msgid "GeoIP settings"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
987 |
msgid "GeoIP collection"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
991 |
msgid "Update GeoIP Info"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
995 |
msgid "Download GeoIP Database"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
999 |
msgid "Save changes on this page to download the update."
|
1000 |
msgstr ""
|
1001 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-01-12 19:12+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-01-12 19: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:32
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:187
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr ""
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
|
28 |
msgid "Statistics"
|
29 |
msgstr ""
|
30 |
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:113
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:243
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr ""
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:245
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr ""
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:244
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr ""
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:247
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr ""
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:246
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr ""
|
80 |
msgstr ""
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:249
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr ""
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:248
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr ""
|
142 |
msgid "Last Post Date"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:21
|
146 |
msgid "Wordpress Statistics"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:22
|
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:47
|
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:82
|
161 |
msgid "Overview"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:83
|
165 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
166 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
167 |
msgid "Browsers"
|
168 |
msgstr ""
|
169 |
|
170 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
|
171 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:313
|
172 |
msgid "Countries"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:87
|
176 |
msgid "Hits"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:88
|
180 |
msgid "Referers"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
|
184 |
msgid "Searches"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
188 |
msgid "Search Words"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:91
|
192 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
193 |
msgid "Visitors"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:93
|
197 |
msgid "Optimization"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
|
201 |
msgid "Settings"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
|
205 |
msgid "Today visitor"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:123
|
209 |
msgid "Today visit"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
|
213 |
msgid "Yesterday visitor"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
|
217 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
218 |
msgid "Yesterday visit"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:138
|
222 |
msgid "View Stats"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:226
|
226 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:320
|
227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:339
|
228 |
msgid "You do not have sufficient permissions to access this page."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
232 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
236 |
+
#, php-format
|
237 |
+
msgid "Error downloading GeoIP database from: %s"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:361
|
241 |
+
#, php-format
|
242 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
246 |
+
#, php-format
|
247 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:380
|
251 |
+
msgid "GeoIP Database updated successfully!"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
255 |
msgid "Browser Statistics"
|
256 |
msgstr ""
|
264 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
265 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:112
|
266 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
|
267 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
268 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:302
|
269 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
|
270 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:442
|
271 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:548
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
|
273 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
274 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
275 |
msgid "Click to toggle"
|
350 |
msgstr ""
|
351 |
|
352 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
353 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:348
|
354 |
msgid "Hits Statistical Chart"
|
355 |
msgstr ""
|
356 |
|
364 |
msgstr ""
|
365 |
|
366 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
367 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:387
|
368 |
msgid "Number of visits and visitors"
|
369 |
msgstr ""
|
370 |
|
371 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
373 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:413
|
374 |
msgid "Visitor"
|
375 |
msgstr ""
|
376 |
|
377 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
379 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:423
|
380 |
msgid "Visit"
|
381 |
msgstr ""
|
382 |
|
389 |
|
390 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
391 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:25
|
392 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:550
|
393 |
msgid "Latest search words"
|
394 |
msgstr ""
|
395 |
|
403 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
404 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
405 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
406 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:508
|
407 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:570
|
408 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
409 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
410 |
msgid "Google"
|
413 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
|
414 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
415 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
|
416 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:518
|
417 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:572
|
418 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
|
419 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
420 |
msgid "Yahoo!"
|
423 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
|
424 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
425 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
426 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:528
|
427 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:574
|
428 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
|
429 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
430 |
msgid "Bing"
|
432 |
|
433 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
|
434 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
435 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:567
|
436 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:606
|
437 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
438 |
msgid "Map"
|
439 |
msgstr ""
|
452 |
|
453 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
|
454 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
|
455 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
456 |
msgid "Recent Visitors"
|
457 |
msgstr ""
|
458 |
|
459 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
460 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
|
461 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
462 |
msgid "Country"
|
463 |
msgstr ""
|
505 |
|
506 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
507 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
|
508 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
|
509 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:348
|
510 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
511 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:550
|
512 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
513 |
msgid "(See more)"
|
514 |
msgstr ""
|
515 |
|
532 |
msgid "Address"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
|
536 |
msgid "Top 10 Countries"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
|
540 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
541 |
msgid "Rank"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:266
|
545 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
546 |
msgid "Flag"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
|
550 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
551 |
msgid "Visitor Count"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:303
|
555 |
msgid "About plugin"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:306
|
559 |
#, php-format
|
560 |
msgid "Plugin version: %s"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:307
|
564 |
msgid "Translations"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:308
|
568 |
msgid "Support"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:308
|
572 |
msgid "Farsi"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:309
|
576 |
msgid "Facebook"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:310
|
580 |
msgid "Weblog"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:315
|
584 |
msgid ""
|
585 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
586 |
"world!"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:318
|
590 |
msgid "Donate"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
|
594 |
msgid "Hits chart in the last 20 days"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
598 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
599 |
msgid "Search Engine Referrers Statistical Chart"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:459
|
603 |
msgid "Referrer search engine chart in the last 20 days"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
|
607 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
608 |
msgid "Number of referrer"
|
609 |
msgstr ""
|
662 |
msgid "Are you sure?"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:109
|
666 |
+
#, php-format
|
667 |
+
msgid "%s New records is updated."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
|
671 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
672 |
msgid "Resources"
|
722 |
|
723 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:168
|
724 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:140
|
725 |
+
msgid "Client Info"
|
726 |
msgstr ""
|
727 |
|
728 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:173
|
729 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
|
730 |
+
msgid "Client IP"
|
731 |
msgstr ""
|
732 |
|
733 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:178
|
|
|
|
|
|
|
|
|
734 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:150
|
735 |
+
msgid "The client IP address."
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:184
|
739 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:156
|
740 |
+
msgid "User Agent"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:189
|
744 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:161
|
745 |
+
msgid "The client user agent string."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:194
|
749 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:166
|
750 |
+
msgid "Export"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:199
|
754 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:171
|
755 |
+
msgid "Export from"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:204
|
759 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:220
|
760 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:242
|
761 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:265
|
762 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:289
|
763 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:176
|
764 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:192
|
765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:214
|
766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:237
|
767 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:261
|
768 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
|
769 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:205
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
771 |
msgid "Please select."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:209
|
775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:181
|
776 |
msgid "Select the table for the output file."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:215
|
780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:187
|
781 |
msgid "Export To"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:226
|
785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:198
|
786 |
msgid "Select the output file type."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:227
|
790 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:199
|
791 |
msgid "Start Now!"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:232
|
795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:204
|
796 |
msgid "Empty"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:237
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:209
|
801 |
msgid "Empty Table"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:247
|
805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:219
|
806 |
msgid "All data table will be lost."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:248
|
810 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:220
|
811 |
msgid "Clear now!"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:255
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:227
|
816 |
msgid "Delete User Agent Types"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:260
|
820 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:232
|
821 |
msgid "Delete Agents"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:275
|
825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:247
|
826 |
msgid "All visitor data will be lost for this agent type."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:276
|
830 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:300
|
831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:248
|
832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:272
|
833 |
msgid "Delete now!"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:284
|
837 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:256
|
838 |
msgid "Delete Platforms"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:299
|
842 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:271
|
843 |
msgid "All visitor data will be lost for this platform type."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:308
|
847 |
msgid "GeoIP Options"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:317
|
851 |
+
msgid "Upgrade Now!"
|
|
|
|
|
|
|
|
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:318
|
855 |
+
msgid "Get updates for the location and the countries, this may take a while"
|
856 |
msgstr ""
|
857 |
|
858 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:15
|
863 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
864 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
865 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:192
|
867 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:274
|
868 |
msgid "Active"
|
869 |
msgstr ""
|
870 |
|
871 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
872 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
873 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
874 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:193
|
|
|
875 |
msgid "Enable or disable this feature"
|
876 |
msgstr ""
|
877 |
|
926 |
msgstr ""
|
927 |
|
928 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
|
929 |
+
msgid "Exclude User Roles"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:118
|
933 |
+
msgid "Exclude"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:119
|
937 |
+
#, php-format
|
938 |
+
msgid "Exclude %s role from data collection."
|
939 |
+
msgstr ""
|
940 |
+
|
941 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
|
942 |
+
msgid "IP/Robot Exclusions"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
|
946 |
+
msgid "Robot List"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:142
|
950 |
+
msgid ""
|
951 |
+
"A list of words (one per line) to match against to detect robots. Entries "
|
952 |
+
"must be at least 4 characters long or they will be ignored."
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:143
|
956 |
+
msgid "Reset to Default"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
|
960 |
+
msgid "Excluded IP Address List"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
|
964 |
+
msgid ""
|
965 |
+
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
966 |
+
"from statistics collection (both 192.168.0.0/24 and "
|
967 |
+
"192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
|
968 |
+
"only, do not add any subnet value."
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
|
972 |
+
msgid "Add 10.0.0.0"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
|
976 |
+
msgid "Add 172.16.0.0"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
|
980 |
+
msgid "Add 192.168.0.0"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
|
984 |
+
msgid "Charts"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
|
988 |
msgid "Chart type"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:169
|
992 |
msgid "Line"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
|
996 |
msgid "Spline"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
1000 |
msgid "Area"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
|
1004 |
msgid "Area Spline"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
|
1008 |
msgid "Column"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
|
1012 |
msgid "Bar"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
1016 |
msgid "Scatter"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
|
1020 |
msgid "Chart type in view stats."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:182
|
1024 |
msgid "Statistical reporting settings"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:200
|
1028 |
msgid "Time send"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:206
|
1032 |
msgid "Hourly"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:207
|
1036 |
msgid "Twice daily"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:208
|
1040 |
msgid "daily"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:210
|
1044 |
msgid "Select when receiving statistics report."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:216
|
1048 |
msgid "Send Statistical reporting to"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:222
|
1052 |
msgid "Email"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
1056 |
msgid "SMS"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:225
|
1060 |
msgid "Type Select Get Status Report."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:228
|
1064 |
#, php-format
|
1065 |
msgid ""
|
1066 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1067 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:235
|
1071 |
msgid "Send Content Report"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:240
|
1075 |
msgid "Enter the contents of the reports received."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:242
|
1079 |
msgid "Input data:"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
1083 |
msgid "GeoIP settings"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:269
|
1087 |
msgid "GeoIP collection"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:275
|
1091 |
+
msgid ""
|
1092 |
+
"For get more information and location (country) from visitor, enable this "
|
1093 |
+
"feature."
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
1097 |
+
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:282
|
1101 |
msgid "Update GeoIP Info"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:287
|
1105 |
msgid "Download GeoIP Database"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:288
|
1109 |
msgid "Save changes on this page to download the update."
|
1110 |
msgstr ""
|
1111 |
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: <mat404@gmail.com>\n"
|
@@ -18,13 +18,13 @@ msgstr ""
|
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr "گزارش آماری"
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
28 |
msgid "Statistics"
|
29 |
msgstr "آماره"
|
30 |
|
@@ -33,33 +33,33 @@ msgid "Show site stats in sidebar"
|
|
33 |
msgstr "نمایش آمار سایت در ابزارک"
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
39 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr "کاربران حاضر"
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr "بازدید امروز"
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr "بازدیدکننده امروز"
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr "بازدید دیروز"
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr "بازدید کننده دیروز"
|
@@ -80,13 +80,13 @@ msgid "Years Visit"
|
|
80 |
msgstr "بازدید سال"
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr "کل بازدیدها"
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr "کل بازدیدکنندهگان"
|
@@ -142,15 +142,15 @@ msgstr "میانگین کاربرها"
|
|
142 |
msgid "Last Post Date"
|
143 |
msgstr "تاریخ بهروزشدن سایت"
|
144 |
|
145 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
146 |
msgid "Wordpress Statistics"
|
147 |
msgstr "آماره وردپرس"
|
148 |
|
149 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
150 |
msgid "Complete statistics for your blog."
|
151 |
msgstr "آماری کامل برای وبلاگ شما."
|
152 |
|
153 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
@@ -159,80 +159,100 @@ msgstr ""
|
|
159 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
160 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
161 |
|
162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
168 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
|
|
|
173 |
msgid "Countries"
|
174 |
msgstr "کشورها"
|
175 |
|
176 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
177 |
msgid "Hits"
|
178 |
msgstr "بازدیدها"
|
179 |
|
180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
181 |
msgid "Referers"
|
182 |
msgstr "ارجاعدهندهها"
|
183 |
|
184 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
185 |
msgid "Searches"
|
186 |
msgstr "جستجوها"
|
187 |
|
188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
189 |
msgid "Search Words"
|
190 |
msgstr "کلمات جستجو شده"
|
191 |
|
192 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
193 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
194 |
msgid "Visitors"
|
195 |
msgstr "بازدیدکنندهگان"
|
196 |
|
197 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
198 |
msgid "Optimization"
|
199 |
msgstr "بهینه سازی"
|
200 |
|
201 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
202 |
msgid "Settings"
|
203 |
msgstr "تنظیمات"
|
204 |
|
205 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
206 |
msgid "Today visitor"
|
207 |
msgstr "بازدید کننده امروز"
|
208 |
|
209 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
210 |
msgid "Today visit"
|
211 |
msgstr "بازدید امروز"
|
212 |
|
213 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
214 |
msgid "Yesterday visitor"
|
215 |
msgstr "بازدید کننده دیروز"
|
216 |
|
217 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
218 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
219 |
msgid "Yesterday visit"
|
220 |
msgstr "بازدید دیروز"
|
221 |
|
222 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
223 |
msgid "View Stats"
|
224 |
msgstr "نمایش آمار"
|
225 |
|
226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
227 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
228 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
229 |
msgid "You do not have sufficient permissions to access this page."
|
230 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
231 |
|
232 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
233 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
234 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
235 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
237 |
msgid "Browser Statistics"
|
238 |
msgstr "آمار مرورگرها"
|
@@ -246,12 +266,12 @@ msgstr "آمار مرورگرها"
|
|
246 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
247 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:112
|
248 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
|
249 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
250 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
251 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
252 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
253 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
254 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
255 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
256 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
257 |
msgid "Click to toggle"
|
@@ -332,7 +352,7 @@ msgid "1 Year"
|
|
332 |
msgstr "1 ساله"
|
333 |
|
334 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
335 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
336 |
msgid "Hits Statistical Chart"
|
337 |
msgstr "نمودار آمار بازدیدها"
|
338 |
|
@@ -346,19 +366,19 @@ msgid "days"
|
|
346 |
msgstr "روزه"
|
347 |
|
348 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
349 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
350 |
msgid "Number of visits and visitors"
|
351 |
msgstr "تعداد بازدید و بازدید کننده"
|
352 |
|
353 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
354 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
355 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
356 |
msgid "Visitor"
|
357 |
msgstr "بازدیدکننده"
|
358 |
|
359 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
360 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
361 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
362 |
msgid "Visit"
|
363 |
msgstr "بازدید"
|
364 |
|
@@ -371,7 +391,7 @@ msgstr "به زودی اضافه می شود"
|
|
371 |
|
372 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:25
|
374 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
375 |
msgid "Latest search words"
|
376 |
msgstr "آخرین کلمات جستجو شده"
|
377 |
|
@@ -385,8 +405,8 @@ msgstr "همه"
|
|
385 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
386 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
387 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
388 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
389 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
390 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
391 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
392 |
msgid "Google"
|
@@ -395,8 +415,8 @@ msgstr "گوگل"
|
|
395 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
|
396 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
397 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
|
398 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
399 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
400 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
|
401 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
402 |
msgid "Yahoo!"
|
@@ -405,8 +425,8 @@ msgstr "یاهو!"
|
|
405 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
|
406 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
407 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
409 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
|
411 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
412 |
msgid "Bing"
|
@@ -414,8 +434,8 @@ msgstr "بینگ"
|
|
414 |
|
415 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
|
416 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
417 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
419 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
420 |
msgid "Map"
|
421 |
msgstr "نقشه"
|
@@ -434,12 +454,12 @@ msgstr "از"
|
|
434 |
|
435 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
|
436 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
|
437 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
438 |
msgid "Recent Visitors"
|
439 |
msgstr "آخرین بازدیدکنندگان"
|
440 |
|
441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
442 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
443 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
444 |
msgid "Country"
|
445 |
msgstr "کشور"
|
@@ -487,11 +507,11 @@ msgstr "(تنظیم)"
|
|
487 |
|
488 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
489 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
|
490 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
491 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
492 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
493 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
494 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
495 |
msgid "(See more)"
|
496 |
msgstr "(مشاهده بیشتر)"
|
497 |
|
@@ -514,78 +534,78 @@ msgstr "ارجاع"
|
|
514 |
msgid "Address"
|
515 |
msgstr "آدرس"
|
516 |
|
517 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
518 |
msgid "Top 10 Countries"
|
519 |
msgstr "10 کشور برتر"
|
520 |
|
521 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
522 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
523 |
msgid "Rank"
|
524 |
msgstr "رتبه"
|
525 |
|
526 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
527 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
528 |
msgid "Flag"
|
529 |
msgstr "پرچم"
|
530 |
|
531 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
532 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
533 |
msgid "Visitor Count"
|
534 |
msgstr "تعداد بازدیدکننده"
|
535 |
|
536 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
537 |
msgid "About plugin"
|
538 |
msgstr "درباره افزونه آماره"
|
539 |
|
540 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
541 |
#, php-format
|
542 |
msgid "Plugin version: %s"
|
543 |
msgstr "نگارش افزونه: %s"
|
544 |
|
545 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
546 |
msgid "Translations"
|
547 |
msgstr "ترجمهها"
|
548 |
|
549 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
550 |
msgid "Support"
|
551 |
msgstr "پشتیبانی"
|
552 |
|
553 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
554 |
msgid "Farsi"
|
555 |
msgstr "فارسی"
|
556 |
|
557 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
558 |
msgid "Facebook"
|
559 |
msgstr "فیسبوک"
|
560 |
|
561 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
562 |
msgid "Weblog"
|
563 |
msgstr "وبلاگ"
|
564 |
|
565 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
566 |
msgid ""
|
567 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
568 |
"world!"
|
569 |
msgstr "افزونه آماره را حمایت کنید. با حمایت شما، جهانی خواهیم شد."
|
570 |
|
571 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
572 |
msgid "Donate"
|
573 |
msgstr "حمایت"
|
574 |
|
575 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
576 |
msgid "Hits chart in the last 20 days"
|
577 |
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
578 |
|
579 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
580 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
581 |
msgid "Search Engine Referrers Statistical Chart"
|
582 |
msgstr "نمودار آمار موتورهای جستجو"
|
583 |
|
584 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
585 |
msgid "Referrer search engine chart in the last 20 days"
|
586 |
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
587 |
|
588 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
589 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
590 |
msgid "Number of referrer"
|
591 |
msgstr "تعداد ورودی"
|
@@ -644,6 +664,11 @@ msgstr "دادههای جدول <code>%s</code> با موفقیت حذف شد
|
|
644 |
msgid "Are you sure?"
|
645 |
msgstr "آیا مطمئن هستید؟"
|
646 |
|
|
|
|
|
|
|
|
|
|
|
647 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
|
648 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
649 |
msgid "Resources"
|
@@ -699,117 +724,139 @@ msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</cod
|
|
699 |
|
700 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:168
|
701 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:140
|
702 |
-
msgid "
|
703 |
-
msgstr "
|
704 |
|
705 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:173
|
706 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
|
707 |
-
msgid "
|
708 |
-
msgstr "
|
709 |
|
710 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:178
|
711 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:194
|
712 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:216
|
713 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:239
|
714 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:263
|
715 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:150
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:166
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
721 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/
|
722 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
msgid "Please select."
|
724 |
msgstr "لطفا انتخاب کنید."
|
725 |
|
726 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
727 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
728 |
msgid "Select the table for the output file."
|
729 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
730 |
|
731 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
732 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
733 |
msgid "Export To"
|
734 |
msgstr "برونبری به"
|
735 |
|
736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
737 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
738 |
msgid "Select the output file type."
|
739 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
740 |
|
741 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
742 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
743 |
msgid "Start Now!"
|
744 |
msgstr "شروع کن!"
|
745 |
|
746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
747 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
748 |
msgid "Empty"
|
749 |
msgstr "خالی کردن"
|
750 |
|
751 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
752 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
753 |
msgid "Empty Table"
|
754 |
msgstr "خالی کردن جدول"
|
755 |
|
756 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
757 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
758 |
msgid "All data table will be lost."
|
759 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
760 |
|
761 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
762 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
763 |
msgid "Clear now!"
|
764 |
msgstr "پاک کن!"
|
765 |
|
766 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
767 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
768 |
msgid "Delete User Agent Types"
|
769 |
msgstr "حذف نوع سیستم عامل کاربر"
|
770 |
|
771 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
772 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
773 |
msgid "Delete Agents"
|
774 |
msgstr "حذف سیستم عاملها"
|
775 |
|
776 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
777 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
778 |
msgid "All visitor data will be lost for this agent type."
|
779 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
780 |
|
781 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
782 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
785 |
msgid "Delete now!"
|
786 |
msgstr "پاک کن!"
|
787 |
|
788 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
790 |
msgid "Delete Platforms"
|
791 |
msgstr "حذف سَکوها"
|
792 |
|
793 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
794 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
795 |
msgid "All visitor data will be lost for this platform type."
|
796 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
797 |
|
798 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
799 |
msgid "GeoIP Options"
|
800 |
msgstr "تنظیمات GeoIP"
|
801 |
|
802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
803 |
-
msgid "
|
804 |
-
msgstr "
|
805 |
|
806 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
807 |
-
msgid "
|
808 |
-
msgstr "
|
809 |
-
|
810 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:292
|
811 |
-
msgid "Populate any missing location fields, this may take a while."
|
812 |
-
msgstr "محل از دست رفته، ممکن است کمی طول بکشد."
|
813 |
|
814 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:15
|
815 |
msgid "General Settings"
|
@@ -819,16 +866,15 @@ msgstr "تنظیمات عمومی"
|
|
819 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
820 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
821 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
822 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
823 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
824 |
msgid "Active"
|
825 |
msgstr "فعال"
|
826 |
|
827 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
828 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
829 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
831 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
832 |
msgid "Enable or disable this feature"
|
833 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
834 |
|
@@ -883,86 +929,147 @@ msgid "For each visit to account for several hits. Currently %s."
|
|
883 |
msgstr "تعداد محاسبه برای هربازدید. درحال حاضر %s است."
|
884 |
|
885 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
|
889 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
msgid "Chart type"
|
891 |
msgstr "نوع نمودار"
|
892 |
|
893 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
894 |
msgid "Line"
|
895 |
msgstr "خطی"
|
896 |
|
897 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
898 |
msgid "Spline"
|
899 |
msgstr "نوار باریک"
|
900 |
|
901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
902 |
msgid "Area"
|
903 |
msgstr "خطی توپُر"
|
904 |
|
905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
906 |
msgid "Area Spline"
|
907 |
msgstr "نوار توپُر"
|
908 |
|
909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
910 |
msgid "Column"
|
911 |
msgstr "ستونی"
|
912 |
|
913 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
914 |
msgid "Bar"
|
915 |
msgstr "شِمشی"
|
916 |
|
917 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
918 |
msgid "Scatter"
|
919 |
msgstr "پراکنده"
|
920 |
|
921 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
922 |
msgid "Chart type in view stats."
|
923 |
msgstr "نوع نمودار در نمایش آمار."
|
924 |
|
925 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
926 |
msgid "Statistical reporting settings"
|
927 |
msgstr "تنظیمات گزارش آماری"
|
928 |
|
929 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
930 |
msgid "Time send"
|
931 |
msgstr "زمان ارسال"
|
932 |
|
933 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
934 |
msgid "Hourly"
|
935 |
msgstr "هرساعت"
|
936 |
|
937 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
938 |
msgid "Twice daily"
|
939 |
msgstr "2 بار در روز"
|
940 |
|
941 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
942 |
msgid "daily"
|
943 |
msgstr "روزانه"
|
944 |
|
945 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
946 |
msgid "Select when receiving statistics report."
|
947 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
948 |
|
949 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
950 |
msgid "Send Statistical reporting to"
|
951 |
msgstr "ارسال گزارش آمار به"
|
952 |
|
953 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
954 |
msgid "Email"
|
955 |
msgstr "پست الکترونیک"
|
956 |
|
957 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
958 |
msgid "SMS"
|
959 |
msgstr "پیامک"
|
960 |
|
961 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
962 |
msgid "Type Select Get Status Report."
|
963 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
964 |
|
965 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
966 |
#, php-format
|
967 |
msgid ""
|
968 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -971,35 +1078,47 @@ msgstr ""
|
|
971 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
972 |
"وردپرس</a> را نصب کنید."
|
973 |
|
974 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
975 |
msgid "Send Content Report"
|
976 |
msgstr "محتوای ارسال گزارش"
|
977 |
|
978 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
979 |
msgid "Enter the contents of the reports received."
|
980 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
981 |
|
982 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
983 |
msgid "Input data:"
|
984 |
msgstr "دادههای ورودی:"
|
985 |
|
986 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
987 |
msgid "GeoIP settings"
|
988 |
msgstr "تنظیمات GeoIP"
|
989 |
|
990 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
991 |
msgid "GeoIP collection"
|
992 |
msgstr "مجموعه GeoIP"
|
993 |
|
994 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
995 |
msgid "Update GeoIP Info"
|
996 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
997 |
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
999 |
msgid "Download GeoIP Database"
|
1000 |
msgstr "دریافت پایگاهداده GeoIP"
|
1001 |
|
1002 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1003 |
msgid "Save changes on this page to download the update."
|
1004 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1005 |
|
@@ -1027,6 +1146,15 @@ msgstr "میلادی"
|
|
1027 |
msgid "Persian"
|
1028 |
msgstr "شمسی (فارسی)"
|
1029 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1030 |
#~ msgid "<code>"
|
1031 |
#~ msgstr "<code>"
|
1032 |
|
@@ -1350,9 +1478,6 @@ msgstr "شمسی (فارسی)"
|
|
1350 |
#~ msgid "Stats weblog"
|
1351 |
#~ msgstr "آمار سایت"
|
1352 |
|
1353 |
-
#~ msgid "Agent"
|
1354 |
-
#~ msgstr "مشخصات مرورگر"
|
1355 |
-
|
1356 |
#~ msgid "Not Found!"
|
1357 |
#~ msgstr "چیزی یافت نشد!"
|
1358 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-01-12 19:07+0330\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: <mat404@gmail.com>\n"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
20 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:187
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr "گزارش آماری"
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:80
|
28 |
msgid "Statistics"
|
29 |
msgstr "آماره"
|
30 |
|
33 |
msgstr "نمایش آمار سایت در ابزارک"
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:113
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:243
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr "کاربران حاضر"
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:245
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr "بازدید امروز"
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:244
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr "بازدیدکننده امروز"
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:247
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr "بازدید دیروز"
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:246
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr "بازدید کننده دیروز"
|
80 |
msgstr "بازدید سال"
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:249
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr "کل بازدیدها"
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:248
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr "کل بازدیدکنندهگان"
|
142 |
msgid "Last Post Date"
|
143 |
msgstr "تاریخ بهروزشدن سایت"
|
144 |
|
145 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:21
|
146 |
msgid "Wordpress Statistics"
|
147 |
msgstr "آماره وردپرس"
|
148 |
|
149 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:22
|
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:47
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
159 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
160 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
161 |
|
162 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:82
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:83
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
168 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:85
|
173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:313
|
174 |
msgid "Countries"
|
175 |
msgstr "کشورها"
|
176 |
|
177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:87
|
178 |
msgid "Hits"
|
179 |
msgstr "بازدیدها"
|
180 |
|
181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:88
|
182 |
msgid "Referers"
|
183 |
msgstr "ارجاعدهندهها"
|
184 |
|
185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:89
|
186 |
msgid "Searches"
|
187 |
msgstr "جستجوها"
|
188 |
|
189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
190 |
msgid "Search Words"
|
191 |
msgstr "کلمات جستجو شده"
|
192 |
|
193 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:91
|
194 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
195 |
msgid "Visitors"
|
196 |
msgstr "بازدیدکنندهگان"
|
197 |
|
198 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:93
|
199 |
msgid "Optimization"
|
200 |
msgstr "بهینه سازی"
|
201 |
|
202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:94
|
203 |
msgid "Settings"
|
204 |
msgstr "تنظیمات"
|
205 |
|
206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
|
207 |
msgid "Today visitor"
|
208 |
msgstr "بازدید کننده امروز"
|
209 |
|
210 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:123
|
211 |
msgid "Today visit"
|
212 |
msgstr "بازدید امروز"
|
213 |
|
214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:128
|
215 |
msgid "Yesterday visitor"
|
216 |
msgstr "بازدید کننده دیروز"
|
217 |
|
218 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
|
219 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
220 |
msgid "Yesterday visit"
|
221 |
msgstr "بازدید دیروز"
|
222 |
|
223 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:138
|
224 |
msgid "View Stats"
|
225 |
msgstr "نمایش آمار"
|
226 |
|
227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:226
|
228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:320
|
229 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:339
|
230 |
msgid "You do not have sufficient permissions to access this page."
|
231 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
232 |
|
233 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:236
|
234 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
235 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
236 |
|
237 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
238 |
+
#, php-format
|
239 |
+
msgid "Error downloading GeoIP database from: %s"
|
240 |
+
msgstr "خطای دریافت پایگاهداده GeoIP از: %s"
|
241 |
+
|
242 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:361
|
243 |
+
#, php-format
|
244 |
+
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
245 |
+
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای خواندن: %s"
|
246 |
+
|
247 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
|
248 |
+
#, php-format
|
249 |
+
msgid "Error could not open destination GeoIP database for writing %s"
|
250 |
+
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای نوشتن: %s"
|
251 |
+
|
252 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:380
|
253 |
+
msgid "GeoIP Database updated successfully!"
|
254 |
+
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
255 |
+
|
256 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
|
257 |
msgid "Browser Statistics"
|
258 |
msgstr "آمار مرورگرها"
|
266 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
267 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:112
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:212
|
269 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
270 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:302
|
271 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:442
|
273 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:548
|
274 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
|
275 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
277 |
msgid "Click to toggle"
|
352 |
msgstr "1 ساله"
|
353 |
|
354 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
355 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:348
|
356 |
msgid "Hits Statistical Chart"
|
357 |
msgstr "نمودار آمار بازدیدها"
|
358 |
|
366 |
msgstr "روزه"
|
367 |
|
368 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
369 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:387
|
370 |
msgid "Number of visits and visitors"
|
371 |
msgstr "تعداد بازدید و بازدید کننده"
|
372 |
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
374 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
375 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:413
|
376 |
msgid "Visitor"
|
377 |
msgstr "بازدیدکننده"
|
378 |
|
379 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
380 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
381 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:423
|
382 |
msgid "Visit"
|
383 |
msgstr "بازدید"
|
384 |
|
391 |
|
392 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
393 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:25
|
394 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:550
|
395 |
msgid "Latest search words"
|
396 |
msgstr "آخرین کلمات جستجو شده"
|
397 |
|
405 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
406 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
407 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
408 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:508
|
409 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:570
|
410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
411 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
412 |
msgid "Google"
|
415 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
|
416 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
417 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
|
418 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:518
|
419 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:572
|
420 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
|
421 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
422 |
msgid "Yahoo!"
|
425 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
|
426 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
427 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:528
|
429 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:574
|
430 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
|
431 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
432 |
msgid "Bing"
|
434 |
|
435 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
|
436 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
437 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:567
|
438 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:606
|
439 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
440 |
msgid "Map"
|
441 |
msgstr "نقشه"
|
454 |
|
455 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
|
456 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
|
457 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
458 |
msgid "Recent Visitors"
|
459 |
msgstr "آخرین بازدیدکنندگان"
|
460 |
|
461 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
462 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:267
|
463 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
464 |
msgid "Country"
|
465 |
msgstr "کشور"
|
507 |
|
508 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
509 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:214
|
510 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
|
511 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:348
|
512 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
513 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:550
|
514 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
515 |
msgid "(See more)"
|
516 |
msgstr "(مشاهده بیشتر)"
|
517 |
|
534 |
msgid "Address"
|
535 |
msgstr "آدرس"
|
536 |
|
537 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
|
538 |
msgid "Top 10 Countries"
|
539 |
msgstr "10 کشور برتر"
|
540 |
|
541 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
|
542 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
543 |
msgid "Rank"
|
544 |
msgstr "رتبه"
|
545 |
|
546 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:266
|
547 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
548 |
msgid "Flag"
|
549 |
msgstr "پرچم"
|
550 |
|
551 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
|
552 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
553 |
msgid "Visitor Count"
|
554 |
msgstr "تعداد بازدیدکننده"
|
555 |
|
556 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:303
|
557 |
msgid "About plugin"
|
558 |
msgstr "درباره افزونه آماره"
|
559 |
|
560 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:306
|
561 |
#, php-format
|
562 |
msgid "Plugin version: %s"
|
563 |
msgstr "نگارش افزونه: %s"
|
564 |
|
565 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:307
|
566 |
msgid "Translations"
|
567 |
msgstr "ترجمهها"
|
568 |
|
569 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:308
|
570 |
msgid "Support"
|
571 |
msgstr "پشتیبانی"
|
572 |
|
573 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:308
|
574 |
msgid "Farsi"
|
575 |
msgstr "فارسی"
|
576 |
|
577 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:309
|
578 |
msgid "Facebook"
|
579 |
msgstr "فیسبوک"
|
580 |
|
581 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:310
|
582 |
msgid "Weblog"
|
583 |
msgstr "وبلاگ"
|
584 |
|
585 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:315
|
586 |
msgid ""
|
587 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
588 |
"world!"
|
589 |
msgstr "افزونه آماره را حمایت کنید. با حمایت شما، جهانی خواهیم شد."
|
590 |
|
591 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:318
|
592 |
msgid "Donate"
|
593 |
msgstr "حمایت"
|
594 |
|
595 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
|
596 |
msgid "Hits chart in the last 20 days"
|
597 |
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
598 |
|
599 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
|
600 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
601 |
msgid "Search Engine Referrers Statistical Chart"
|
602 |
msgstr "نمودار آمار موتورهای جستجو"
|
603 |
|
604 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:459
|
605 |
msgid "Referrer search engine chart in the last 20 days"
|
606 |
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
607 |
|
608 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
|
609 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
610 |
msgid "Number of referrer"
|
611 |
msgstr "تعداد ورودی"
|
664 |
msgid "Are you sure?"
|
665 |
msgstr "آیا مطمئن هستید؟"
|
666 |
|
667 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:109
|
668 |
+
#, php-format
|
669 |
+
msgid "%s New records is updated."
|
670 |
+
msgstr "%s رکورد جدید بهروز شد."
|
671 |
+
|
672 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:120
|
673 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
674 |
msgid "Resources"
|
724 |
|
725 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:168
|
726 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:140
|
727 |
+
msgid "Client Info"
|
728 |
+
msgstr "اطلاعات کاربر"
|
729 |
|
730 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:173
|
731 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:145
|
732 |
+
msgid "Client IP"
|
733 |
+
msgstr "آیپی کاربر"
|
734 |
|
735 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:178
|
|
|
|
|
|
|
|
|
736 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:150
|
737 |
+
msgid "The client IP address."
|
738 |
+
msgstr "آدرس آیپی کاربر."
|
739 |
+
|
740 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:184
|
741 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:156
|
742 |
+
msgid "User Agent"
|
743 |
+
msgstr "عامل کاربر"
|
744 |
+
|
745 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:189
|
746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:161
|
747 |
+
msgid "The client user agent string."
|
748 |
+
msgstr "رشتهی عامل کاربری"
|
749 |
+
|
750 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:194
|
751 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:166
|
752 |
+
msgid "Export"
|
753 |
+
msgstr "برونبری"
|
754 |
+
|
755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:199
|
756 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:171
|
757 |
+
msgid "Export from"
|
758 |
+
msgstr "برونبری از"
|
759 |
+
|
760 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:204
|
761 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:220
|
762 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:242
|
763 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:265
|
764 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:289
|
765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:176
|
766 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:192
|
767 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:214
|
768 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:237
|
769 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:261
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
|
771 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:205
|
772 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:221
|
773 |
msgid "Please select."
|
774 |
msgstr "لطفا انتخاب کنید."
|
775 |
|
776 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:209
|
777 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:181
|
778 |
msgid "Select the table for the output file."
|
779 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
780 |
|
781 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:215
|
782 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:187
|
783 |
msgid "Export To"
|
784 |
msgstr "برونبری به"
|
785 |
|
786 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:226
|
787 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:198
|
788 |
msgid "Select the output file type."
|
789 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
790 |
|
791 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:227
|
792 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:199
|
793 |
msgid "Start Now!"
|
794 |
msgstr "شروع کن!"
|
795 |
|
796 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:232
|
797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:204
|
798 |
msgid "Empty"
|
799 |
msgstr "خالی کردن"
|
800 |
|
801 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:237
|
802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:209
|
803 |
msgid "Empty Table"
|
804 |
msgstr "خالی کردن جدول"
|
805 |
|
806 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:247
|
807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:219
|
808 |
msgid "All data table will be lost."
|
809 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
810 |
|
811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:248
|
812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:220
|
813 |
msgid "Clear now!"
|
814 |
msgstr "پاک کن!"
|
815 |
|
816 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:255
|
817 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:227
|
818 |
msgid "Delete User Agent Types"
|
819 |
msgstr "حذف نوع سیستم عامل کاربر"
|
820 |
|
821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:260
|
822 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:232
|
823 |
msgid "Delete Agents"
|
824 |
msgstr "حذف سیستم عاملها"
|
825 |
|
826 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:275
|
827 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:247
|
828 |
msgid "All visitor data will be lost for this agent type."
|
829 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
830 |
|
831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:276
|
832 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:300
|
833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:248
|
834 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:272
|
835 |
msgid "Delete now!"
|
836 |
msgstr "پاک کن!"
|
837 |
|
838 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:284
|
839 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:256
|
840 |
msgid "Delete Platforms"
|
841 |
msgstr "حذف سَکوها"
|
842 |
|
843 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:299
|
844 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:271
|
845 |
msgid "All visitor data will be lost for this platform type."
|
846 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
847 |
|
848 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:308
|
849 |
msgid "GeoIP Options"
|
850 |
msgstr "تنظیمات GeoIP"
|
851 |
|
852 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:317
|
853 |
+
msgid "Upgrade Now!"
|
854 |
+
msgstr "بهروز رسانی کن!"
|
855 |
|
856 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:318
|
857 |
+
msgid "Get updates for the location and the countries, this may take a while"
|
858 |
+
msgstr ""
|
859 |
+
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
|
|
|
|
|
|
860 |
|
861 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:15
|
862 |
msgid "General Settings"
|
866 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:37
|
867 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:49
|
868 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:61
|
869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:192
|
870 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:274
|
871 |
msgid "Active"
|
872 |
msgstr "فعال"
|
873 |
|
874 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
875 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
876 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
877 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:193
|
|
|
878 |
msgid "Enable or disable this feature"
|
879 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
880 |
|
929 |
msgstr "تعداد محاسبه برای هربازدید. درحال حاضر %s است."
|
930 |
|
931 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
|
932 |
+
msgid "Exclude User Roles"
|
933 |
+
msgstr "محرومکردن نقشهای کاربری"
|
934 |
+
|
935 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:118
|
936 |
+
msgid "Exclude"
|
937 |
+
msgstr "محروم"
|
938 |
+
|
939 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:119
|
940 |
+
#, php-format
|
941 |
+
msgid "Exclude %s role from data collection."
|
942 |
+
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
943 |
+
|
944 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
|
945 |
+
msgid "IP/Robot Exclusions"
|
946 |
+
msgstr "محرومیتهای آیپی/ربات"
|
947 |
+
|
948 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
|
949 |
+
msgid "Robot List"
|
950 |
+
msgstr "لیست روباتها"
|
951 |
+
|
952 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:142
|
953 |
+
msgid ""
|
954 |
+
"A list of words (one per line) to match against to detect robots. Entries "
|
955 |
+
"must be at least 4 characters long or they will be ignored."
|
956 |
+
msgstr ""
|
957 |
+
"یک لیست از کلمات برای مقایسه و شناسایی رباتها (در هر خط یک کلمه وارد شود). "
|
958 |
+
"ورودیها باید حداقل دارای 4 کارکتر باشد."
|
959 |
+
|
960 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:143
|
961 |
+
msgid "Reset to Default"
|
962 |
+
msgstr "بازگشت به حالت پیشفرض"
|
963 |
+
|
964 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
|
965 |
+
msgid "Excluded IP Address List"
|
966 |
+
msgstr "لیست آدرس آیپیهای محروم"
|
967 |
|
968 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
|
969 |
+
msgid ""
|
970 |
+
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
971 |
+
"from statistics collection (both 192.168.0.0/24 and "
|
972 |
+
"192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
|
973 |
+
"only, do not add any subnet value."
|
974 |
+
msgstr ""
|
975 |
+
"یک لیست از آدرس آیپی و Subnet Maskهای (اختیاری) برای جلوگیری در محاسبه "
|
976 |
+
"آمارگیر (هردو فرمت 192.168.0.0/24 و 192.168.0.0/255.255.255.0 قابل قبول و در "
|
977 |
+
"هر خط یکی را اضافه کنید.) برای مشخص کردن تنها یک آدرس آیپی نیازی نیست Subnet "
|
978 |
+
"Mask را اضافه کنید."
|
979 |
+
|
980 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
|
981 |
+
msgid "Add 10.0.0.0"
|
982 |
+
msgstr "افزودن 10.0.0.0"
|
983 |
+
|
984 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
|
985 |
+
msgid "Add 172.16.0.0"
|
986 |
+
msgstr "افزودن 172.16.0.0"
|
987 |
+
|
988 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
|
989 |
+
msgid "Add 192.168.0.0"
|
990 |
+
msgstr "افزودن 192.168.0.0"
|
991 |
+
|
992 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:158
|
993 |
+
msgid "Charts"
|
994 |
+
msgstr "نمودار"
|
995 |
+
|
996 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
|
997 |
msgid "Chart type"
|
998 |
msgstr "نوع نمودار"
|
999 |
|
1000 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:169
|
1001 |
msgid "Line"
|
1002 |
msgstr "خطی"
|
1003 |
|
1004 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
|
1005 |
msgid "Spline"
|
1006 |
msgstr "نوار باریک"
|
1007 |
|
1008 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
1009 |
msgid "Area"
|
1010 |
msgstr "خطی توپُر"
|
1011 |
|
1012 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
|
1013 |
msgid "Area Spline"
|
1014 |
msgstr "نوار توپُر"
|
1015 |
|
1016 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
|
1017 |
msgid "Column"
|
1018 |
msgstr "ستونی"
|
1019 |
|
1020 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
|
1021 |
msgid "Bar"
|
1022 |
msgstr "شِمشی"
|
1023 |
|
1024 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
1025 |
msgid "Scatter"
|
1026 |
msgstr "پراکنده"
|
1027 |
|
1028 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
|
1029 |
msgid "Chart type in view stats."
|
1030 |
msgstr "نوع نمودار در نمایش آمار."
|
1031 |
|
1032 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:182
|
1033 |
msgid "Statistical reporting settings"
|
1034 |
msgstr "تنظیمات گزارش آماری"
|
1035 |
|
1036 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:200
|
1037 |
msgid "Time send"
|
1038 |
msgstr "زمان ارسال"
|
1039 |
|
1040 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:206
|
1041 |
msgid "Hourly"
|
1042 |
msgstr "هرساعت"
|
1043 |
|
1044 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:207
|
1045 |
msgid "Twice daily"
|
1046 |
msgstr "2 بار در روز"
|
1047 |
|
1048 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:208
|
1049 |
msgid "daily"
|
1050 |
msgstr "روزانه"
|
1051 |
|
1052 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:210
|
1053 |
msgid "Select when receiving statistics report."
|
1054 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
1055 |
|
1056 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:216
|
1057 |
msgid "Send Statistical reporting to"
|
1058 |
msgstr "ارسال گزارش آمار به"
|
1059 |
|
1060 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:222
|
1061 |
msgid "Email"
|
1062 |
msgstr "پست الکترونیک"
|
1063 |
|
1064 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
1065 |
msgid "SMS"
|
1066 |
msgstr "پیامک"
|
1067 |
|
1068 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:225
|
1069 |
msgid "Type Select Get Status Report."
|
1070 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
1071 |
|
1072 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:228
|
1073 |
#, php-format
|
1074 |
msgid ""
|
1075 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1078 |
"نکته: برای ارسال پیامک، افزونه <a href=\"%s\" target=\"_blank\">پیامک "
|
1079 |
"وردپرس</a> را نصب کنید."
|
1080 |
|
1081 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:235
|
1082 |
msgid "Send Content Report"
|
1083 |
msgstr "محتوای ارسال گزارش"
|
1084 |
|
1085 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:240
|
1086 |
msgid "Enter the contents of the reports received."
|
1087 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
1088 |
|
1089 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:242
|
1090 |
msgid "Input data:"
|
1091 |
msgstr "دادههای ورودی:"
|
1092 |
|
1093 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
1094 |
msgid "GeoIP settings"
|
1095 |
msgstr "تنظیمات GeoIP"
|
1096 |
|
1097 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:269
|
1098 |
msgid "GeoIP collection"
|
1099 |
msgstr "مجموعه GeoIP"
|
1100 |
|
1101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:275
|
1102 |
+
msgid ""
|
1103 |
+
"For get more information and location (country) from visitor, enable this "
|
1104 |
+
"feature."
|
1105 |
+
msgstr ""
|
1106 |
+
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1107 |
+
"کنید."
|
1108 |
+
|
1109 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
1110 |
+
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1111 |
+
msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
1112 |
+
|
1113 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:282
|
1114 |
msgid "Update GeoIP Info"
|
1115 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1116 |
|
1117 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:287
|
1118 |
msgid "Download GeoIP Database"
|
1119 |
msgstr "دریافت پایگاهداده GeoIP"
|
1120 |
|
1121 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:288
|
1122 |
msgid "Save changes on this page to download the update."
|
1123 |
msgstr "ذخیرهی تغییرات در این برگه و دریافت بهروز رسانی"
|
1124 |
|
1146 |
msgid "Persian"
|
1147 |
msgstr "شمسی (فارسی)"
|
1148 |
|
1149 |
+
#~ msgid "Populate Location"
|
1150 |
+
#~ msgstr "محل جمعیت"
|
1151 |
+
|
1152 |
+
#~ msgid "Populate now!"
|
1153 |
+
#~ msgstr "جمعیت در حال حاضر!"
|
1154 |
+
|
1155 |
+
#~ msgid "Chart Settings"
|
1156 |
+
#~ msgstr "تنظیمات نمودار"
|
1157 |
+
|
1158 |
#~ msgid "<code>"
|
1159 |
#~ msgstr "<code>"
|
1160 |
|
1478 |
#~ msgid "Stats weblog"
|
1479 |
#~ msgstr "آمار سایت"
|
1480 |
|
|
|
|
|
|
|
1481 |
#~ msgid "Not Found!"
|
1482 |
#~ msgstr "چیزی یافت نشد!"
|
1483 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: mostafa.s1990
|
|
3 |
Donate link: http://iran98.org/donate/
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
@@ -136,7 +136,7 @@ Make sure you've downloaded the GeoIP database and the GeoIP code is enabled.
|
|
136 |
Also, if your running an internal test site with non-routable IP addresses (like 192.168.x.x or 172.28.x.x or 10.x.x.x), these addresses will come up as unknown always.
|
137 |
|
138 |
= I was using V3.2 and now that I've upgraded my visitors and visits have gone way down? =
|
139 |
-
The webcrawler detection code has be fixed and will now exclude them from your stats, don't worry, it now
|
140 |
|
141 |
== Screenshots ==
|
142 |
1. View stats page.
|
@@ -153,12 +153,19 @@ The webcrawler detection code has be fixed and will now exclude them from your s
|
|
153 |
== Upgrade Notice ==
|
154 |
= 4.0 =
|
155 |
* BACKUP YOUR DATABASE BEFORE INSTALLING!
|
156 |
-
* IF YOU ARE NOT RUNNING V3.2 ALL OF YOUR DATA WILL BE LOST IF YOU UPGRADE TO
|
157 |
* GeoIP is enabled by default but you must download the GeoIP database before any Countries will be detected correctly. Go to the settings page and it will download automatically, if it does not or it fails, simply go to the bottom of the page and re-download it.
|
158 |
* The new browser detection code uses "MSIE" instead of "IE", your database will be updated automatically during install to reflect this.
|
159 |
-
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser
|
160 |
|
161 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
= 4.2 =
|
163 |
* Added: Statistical menus.
|
164 |
* Fixed: Small bug in the geoip version.
|
3 |
Donate link: http://iran98.org/donate/
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.8
|
7 |
+
Stable tag: 4.3
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
136 |
Also, if your running an internal test site with non-routable IP addresses (like 192.168.x.x or 172.28.x.x or 10.x.x.x), these addresses will come up as unknown always.
|
137 |
|
138 |
= I was using V3.2 and now that I've upgraded my visitors and visits have gone way down? =
|
139 |
+
The webcrawler detection code has be fixed and will now exclude them from your stats, don't worry, it now reflects a more accurate view of actual visitors to your site.
|
140 |
|
141 |
== Screenshots ==
|
142 |
1. View stats page.
|
153 |
== Upgrade Notice ==
|
154 |
= 4.0 =
|
155 |
* BACKUP YOUR DATABASE BEFORE INSTALLING!
|
156 |
+
* IF YOU ARE NOT RUNNING V3.2 ALL OF YOUR DATA WILL BE LOST IF YOU UPGRADE TO V4.0 or above!
|
157 |
* GeoIP is enabled by default but you must download the GeoIP database before any Countries will be detected correctly. Go to the settings page and it will download automatically, if it does not or it fails, simply go to the bottom of the page and re-download it.
|
158 |
* The new browser detection code uses "MSIE" instead of "IE", your database will be updated automatically during install to reflect this.
|
159 |
+
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
160 |
|
161 |
== Changelog ==
|
162 |
+
= 4.3 =
|
163 |
+
* Added: Definable robots list to exclude based upon the user agent string from the client.
|
164 |
+
* Added: IP address and subnet exclusion support.
|
165 |
+
* Added: Client IP and user agent information to the optimization page.
|
166 |
+
* Added: Support to exclude users from data collection based on their WordPress role.
|
167 |
+
* Fixed: A bug when the GeoIP code was disabled with optimization page.
|
168 |
+
|
169 |
= 4.2 =
|
170 |
* Added: Statistical menus.
|
171 |
* Fixed: Small bug in the geoip version.
|
upgrade.php
CHANGED
@@ -53,6 +53,21 @@
|
|
53 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
54 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
57 |
}
|
58 |
?>
|
53 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
54 |
update_option('wp_statistics_db_version', WP_STATISTICS_VERSION);
|
55 |
|
56 |
+
$robotlist = get_option('wps_robotlist');
|
57 |
+
|
58 |
+
if(trim($robotlist) == "") {
|
59 |
+
$robotlist = "A6-Indexer\nAbachoBOT\naccoona\nAcoiRobot\nAddThis.com\nADmantX\nAhrefsBot\nalexa\nAltaVista\nappie\nAsk Jeeves\nASPSeek\nBaiduspider\nBenjojo\nbingbot\nButterfly\nccbot\nclamantivirus\ncrawler\nCrocCrawler\nDumbot\neStyle\nezooms.bot\nfacebookexternalhit\nFAST\nFeedfetcher-Google\nFirfly\nfroogle\nGeonaBot\nGigabot\ngirafabot\nGooglebot\nia_archiver\nIDBot\nInfoSeek\ninktomi\nlinkdexbot\nlooksmart\nLycos\nMail.RU_Bot\nMe.dium\nMediapartners-Google\nMJ12bot\nmsnbot\nMRBOT\nNationalDirectory\nnutch\nOpenbot\nproximic\nrabaz\nRambler\nRankivabot\nScooter\nScrubby\nSeznamBot\nSlurp\nSocialSearch\nSogou web spider\nSpade\nTechnoratiSnoop\nTECNOSEEK\nTeoma\nTweetmemeBot\nTwiceler\nTwitturls\nURL_Spider_SQL\nWebAlta Crawler\nWebBug\nWebFindBot\nWeSEE:Search\nwww.galaxy.com\nyandex\nYahoo\nYammybot\nZyBorg";
|
60 |
+
}
|
61 |
+
|
62 |
+
update_option('wps_robotlist', $robotlist);
|
63 |
+
|
64 |
+
// WP Statistics V4.2 and below automatically exclude the administrator for statistics collection
|
65 |
+
// newer versions allow the option to be set for any role in WordPress, however we should mimic
|
66 |
+
// 4.2 behaviour when we upgrade, so see if the option exists in the database and if not, set it.
|
67 |
+
// This will not work correctly on a WordPress install that has removed the administrator role.
|
68 |
+
// However that seems VERY unlikely.
|
69 |
+
$exclude_admins = get_option('wps_exclude_administrator', '2');
|
70 |
+
if( $exclude_admins == '2' ) { update_option('wps_exclude_administrator', '1'); }
|
71 |
}
|
72 |
}
|
73 |
?>
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
|
5 |
Description: Complete statistics for your blog.
|
6 |
-
Version: 4.
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
Text Domain: wp_statistics
|
@@ -15,8 +15,7 @@ License: GPL2
|
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
-
define('WP_STATISTICS_VERSION', '4.
|
19 |
-
define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
|
20 |
|
21 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
22 |
__('Wordpress Statistics', 'wp_statistics');
|
@@ -60,13 +59,13 @@ License: GPL2
|
|
60 |
$o = new Useronline();
|
61 |
$h = new Hits();
|
62 |
|
63 |
-
if( get_option('wps_useronline')
|
64 |
$o->Check_online();
|
65 |
|
66 |
-
if( get_option('wps_visits')
|
67 |
$h->Visits();
|
68 |
|
69 |
-
if( get_option('wps_visitors')
|
70 |
$h->Visitors();
|
71 |
|
72 |
if( get_option('wps_check_online') ) {
|
@@ -82,7 +81,9 @@ License: GPL2
|
|
82 |
|
83 |
add_submenu_page(__FILE__, __('Overview', 'wp_statistics'), __('Overview', 'wp_statistics'), 'manage_options', __FILE__, 'wp_statistics_log_overview');
|
84 |
add_submenu_page(__FILE__, __('Browsers', 'wp_statistics'), __('Browsers', 'wp_statistics'), 'manage_options', 'wps_browsers_menu', 'wp_statistics_log_browsers');
|
85 |
-
|
|
|
|
|
86 |
add_submenu_page(__FILE__, __('Hits', 'wp_statistics'), __('Hits', 'wp_statistics'), 'manage_options', 'wps_hits_menu', 'wp_statistics_log_hits');
|
87 |
add_submenu_page(__FILE__, __('Referers', 'wp_statistics'), __('Referers', 'wp_statistics'), 'manage_options', 'wps_referers_menu', 'wp_statistics_log_referers');
|
88 |
add_submenu_page(__FILE__, __('Searches', 'wp_statistics'), __('Searches', 'wp_statistics'), 'manage_options', 'wps_searches_menu', 'wp_statistics_log_searches');
|
@@ -146,6 +147,8 @@ License: GPL2
|
|
146 |
|
147 |
function wp_statistics_register() {
|
148 |
|
|
|
|
|
149 |
register_setting('wps_settings', 'wps_useronline');
|
150 |
register_setting('wps_settings', 'wps_visits');
|
151 |
register_setting('wps_settings', 'wps_visitors');
|
@@ -160,6 +163,17 @@ License: GPL2
|
|
160 |
register_setting('wps_settings', 'wps_geoip');
|
161 |
register_setting('wps_settings', 'wps_update_geoip');
|
162 |
register_setting('wps_settings', 'wps_store_ua');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
}
|
164 |
add_action('admin_init', 'wp_statistics_register');
|
165 |
|
@@ -336,7 +350,7 @@ License: GPL2
|
|
336 |
// Download
|
337 |
$TempFile = download_url( $download_url );
|
338 |
if (is_wp_error( $TempFile ) ) {
|
339 |
-
|
340 |
}
|
341 |
else {
|
342 |
// Ungzip File
|
@@ -344,12 +358,13 @@ License: GPL2
|
|
344 |
$DBfh = fopen( $DBFile, 'wb' );
|
345 |
|
346 |
if( ! $ZipHandle ) {
|
347 |
-
|
|
|
348 |
unlink( $TempFile );
|
349 |
}
|
350 |
else {
|
351 |
if( !$DBfh ) {
|
352 |
-
|
353 |
unlink( $TempFile );
|
354 |
}
|
355 |
else {
|
@@ -361,8 +376,8 @@ License: GPL2
|
|
361 |
fclose( $DBfh );
|
362 |
|
363 |
unlink( $TempFile );
|
364 |
-
|
365 |
-
|
366 |
|
367 |
update_option('wps_update_geoip', false);
|
368 |
}
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
|
5 |
Description: Complete statistics for your blog.
|
6 |
+
Version: 4.3
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
Text Domain: wp_statistics
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
+
define('WP_STATISTICS_VERSION', '4.3');
|
|
|
19 |
|
20 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
21 |
__('Wordpress Statistics', 'wp_statistics');
|
59 |
$o = new Useronline();
|
60 |
$h = new Hits();
|
61 |
|
62 |
+
if( get_option('wps_useronline') )
|
63 |
$o->Check_online();
|
64 |
|
65 |
+
if( get_option('wps_visits') )
|
66 |
$h->Visits();
|
67 |
|
68 |
+
if( get_option('wps_visitors') )
|
69 |
$h->Visitors();
|
70 |
|
71 |
if( get_option('wps_check_online') ) {
|
81 |
|
82 |
add_submenu_page(__FILE__, __('Overview', 'wp_statistics'), __('Overview', 'wp_statistics'), 'manage_options', __FILE__, 'wp_statistics_log_overview');
|
83 |
add_submenu_page(__FILE__, __('Browsers', 'wp_statistics'), __('Browsers', 'wp_statistics'), 'manage_options', 'wps_browsers_menu', 'wp_statistics_log_browsers');
|
84 |
+
if( get_option('wps_geoip') ) {
|
85 |
+
add_submenu_page(__FILE__, __('Countries', 'wp_statistics'), __('Countries', 'wp_statistics'), 'manage_options', 'wps_countries_menu', 'wp_statistics_log_countries');
|
86 |
+
}
|
87 |
add_submenu_page(__FILE__, __('Hits', 'wp_statistics'), __('Hits', 'wp_statistics'), 'manage_options', 'wps_hits_menu', 'wp_statistics_log_hits');
|
88 |
add_submenu_page(__FILE__, __('Referers', 'wp_statistics'), __('Referers', 'wp_statistics'), 'manage_options', 'wps_referers_menu', 'wp_statistics_log_referers');
|
89 |
add_submenu_page(__FILE__, __('Searches', 'wp_statistics'), __('Searches', 'wp_statistics'), 'manage_options', 'wps_searches_menu', 'wp_statistics_log_searches');
|
147 |
|
148 |
function wp_statistics_register() {
|
149 |
|
150 |
+
GLOBAL $wp_roles;
|
151 |
+
|
152 |
register_setting('wps_settings', 'wps_useronline');
|
153 |
register_setting('wps_settings', 'wps_visits');
|
154 |
register_setting('wps_settings', 'wps_visitors');
|
163 |
register_setting('wps_settings', 'wps_geoip');
|
164 |
register_setting('wps_settings', 'wps_update_geoip');
|
165 |
register_setting('wps_settings', 'wps_store_ua');
|
166 |
+
register_setting('wps_settings', 'wps_robotlist');
|
167 |
+
register_setting('wps_settings', 'wps_exclude_ip');
|
168 |
+
|
169 |
+
$role_list = $wp_roles->get_names();
|
170 |
+
|
171 |
+
foreach( $role_list as $role ) {
|
172 |
+
$option_name = 'wps_exclude_' . str_replace(" ", "_", strtolower($role) );
|
173 |
+
|
174 |
+
register_setting('wps_settings', $option_name );
|
175 |
+
}
|
176 |
+
|
177 |
}
|
178 |
add_action('admin_init', 'wp_statistics_register');
|
179 |
|
350 |
// Download
|
351 |
$TempFile = download_url( $download_url );
|
352 |
if (is_wp_error( $TempFile ) ) {
|
353 |
+
echo "<div class='updated settings-error'><p><strong>" . sprintf(__('Error downloading GeoIP database from: %s', 'wp_statistics'), $download_url) . "</strong></p></div>";
|
354 |
}
|
355 |
else {
|
356 |
// Ungzip File
|
358 |
$DBfh = fopen( $DBFile, 'wb' );
|
359 |
|
360 |
if( ! $ZipHandle ) {
|
361 |
+
echo "<div class='updated settings-error'><p><strong>" . sprintf(__('Error could not open downloaded GeoIP database for reading: %s', 'wp_statistics'), $TempFile) . "</strong></p></div>";
|
362 |
+
|
363 |
unlink( $TempFile );
|
364 |
}
|
365 |
else {
|
366 |
if( !$DBfh ) {
|
367 |
+
echo "<div class='updated settings-error'><p><strong>" . sprintf(__('Error could not open destination GeoIP database for writing %s', 'wp_statistics'), $DBFile) . "</strong></p></div>";
|
368 |
unlink( $TempFile );
|
369 |
}
|
370 |
else {
|
376 |
fclose( $DBfh );
|
377 |
|
378 |
unlink( $TempFile );
|
379 |
+
|
380 |
+
echo "<div class='updated settings-error'><p><strong>" . __('GeoIP Database updated successfully!', 'wp_statistics') . "</strong></p></div>";
|
381 |
|
382 |
update_option('wps_update_geoip', false);
|
383 |
}
|