Version Description
- As of V4.3, the robots list is now stored in the database and is user configurable. Because of this updates to the default robots list will not automatically be added during upgrades. You can either go to "Statistics->Settings->IP/Robot Exclusions", "Reset to Default" and then save or manually make the changes which can be found in the change log details.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 4.5 |
Comparing to | |
See all releases |
Code changes from version 4.4 to 4.5
- images/Opera Next.png +0 -0
- images/baidu.png +0 -0
- images/{bing.com.png → bing.png} +0 -0
- images/duckduckgo.png +0 -0
- images/{google.com.png → google.png} +0 -0
- images/{yahoo.com.png → yahoo.png} +0 -0
- images/yandex.png +0 -0
- includes/class/statistics.class.php +43 -7
- includes/functions/functions.php +101 -18
- includes/log/all-browsers.php +1 -1
- includes/log/last-search.php +66 -48
- includes/log/log.php +59 -59
- includes/log/search-statistics.php +16 -30
- includes/optimization/optimization-geoip.php +11 -7
- includes/optimization/optimization.php +10 -6
- includes/setting/settings.php +44 -11
- includes/setting/widget.php +11 -9
- languages/default.mo +0 -0
- languages/default.po +385 -371
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +355 -762
- readme.txt +14 -1
- robotslist.php +5 -1
- widget.php +2 -10
- wp-statistics.php +15 -12
images/Opera Next.png
ADDED
Binary file
|
images/baidu.png
ADDED
Binary file
|
images/{bing.com.png → bing.png}
RENAMED
File without changes
|
images/duckduckgo.png
ADDED
Binary file
|
images/{google.com.png → google.png}
RENAMED
File without changes
|
images/{yahoo.com.png → yahoo.png}
RENAMED
File without changes
|
images/yandex.png
ADDED
Binary file
|
includes/class/statistics.class.php
CHANGED
@@ -135,6 +135,34 @@
|
|
135 |
}
|
136 |
}
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
public function Search_Engine_QueryString($url = false) {
|
139 |
|
140 |
if(!$url) {
|
@@ -148,14 +176,22 @@
|
|
148 |
$parts = parse_url($url);
|
149 |
parse_str($parts['query'], $query);
|
150 |
|
151 |
-
$search_engines =
|
152 |
-
'bing' => 'q',
|
153 |
-
'google' => 'q',
|
154 |
-
'yahoo' => 'p'
|
155 |
-
);
|
156 |
|
157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
-
return
|
160 |
}
|
161 |
}
|
135 |
}
|
136 |
}
|
137 |
|
138 |
+
public function Search_Engine_Info($url = false) {
|
139 |
+
|
140 |
+
if(!$url) {
|
141 |
+
$url = isset($_SERVER['HTTP_REFERER']) ? $this->get_Referred() : false;
|
142 |
+
}
|
143 |
+
|
144 |
+
if($url == false) {
|
145 |
+
return false;
|
146 |
+
}
|
147 |
+
|
148 |
+
$parts = parse_url($url);
|
149 |
+
|
150 |
+
$search_engines = wp_statistics_searchengine_list();
|
151 |
+
|
152 |
+
foreach( $search_engines as $key => $value ) {
|
153 |
+
$search_regex = wp_statistics_searchengine_regex($key);
|
154 |
+
|
155 |
+
preg_match( '/' . $search_regex . '/', $parts['host'], $matches);
|
156 |
+
|
157 |
+
if( isset($matches[1]) )
|
158 |
+
{
|
159 |
+
return $value;
|
160 |
+
}
|
161 |
+
}
|
162 |
+
|
163 |
+
return array('name' => 'Unknown', 'tag' => '', 'sqlpattern' => '', 'regexpattern' => '', 'querykey' => 'q', 'image' => 'unknown.png' );
|
164 |
+
}
|
165 |
+
|
166 |
public function Search_Engine_QueryString($url = false) {
|
167 |
|
168 |
if(!$url) {
|
176 |
$parts = parse_url($url);
|
177 |
parse_str($parts['query'], $query);
|
178 |
|
179 |
+
$search_engines = wp_statistics_searchengine_list();
|
|
|
|
|
|
|
|
|
180 |
|
181 |
+
foreach( $search_engines as $key => $value ) {
|
182 |
+
$search_regex = wp_statistics_searchengine_regex($key);
|
183 |
+
|
184 |
+
preg_match( '/' . $search_regex . '/', $parts['host'], $matches);
|
185 |
+
|
186 |
+
if( isset($matches[1]) )
|
187 |
+
{
|
188 |
+
$words = strip_tags($query[$search_engines[$key]['querykey']]);
|
189 |
+
|
190 |
+
if( $words == '' ) { $words = 'No search query found!'; }
|
191 |
+
return $words;
|
192 |
+
}
|
193 |
+
}
|
194 |
|
195 |
+
return '';
|
196 |
}
|
197 |
}
|
includes/functions/functions.php
CHANGED
@@ -175,54 +175,137 @@
|
|
175 |
return $result;
|
176 |
}
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
function wp_statistics_searchengine($search_engine = 'all', $time = 'total') {
|
179 |
|
180 |
global $wpdb, $table_prefix;
|
181 |
|
182 |
$s = new WP_Statistics();
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
} else if( $search_engine == 'yahoo' ) {
|
187 |
-
$search_engine = "`referred` LIKE '%yahoo.com%'";
|
188 |
-
} else if( $search_engine == 'bing' ) {
|
189 |
-
$search_engine = "`referred` LIKE '%bing.com%'";
|
190 |
-
} else {
|
191 |
-
$search_engine = "`referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%'";
|
192 |
-
}
|
193 |
-
|
194 |
switch($time) {
|
195 |
case 'today':
|
196 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d')}' AND {$
|
197 |
break;
|
198 |
|
199 |
case 'yesterday':
|
200 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -1)}' AND {$
|
201 |
|
202 |
break;
|
203 |
|
204 |
case 'week':
|
205 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -7)}' AND {$
|
206 |
|
207 |
break;
|
208 |
|
209 |
case 'month':
|
210 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -30)}' AND {$
|
211 |
|
212 |
break;
|
213 |
|
214 |
case 'year':
|
215 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -360)}' AND {$
|
216 |
|
217 |
break;
|
218 |
|
219 |
case 'total':
|
220 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$
|
221 |
|
222 |
break;
|
223 |
|
224 |
default:
|
225 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', $time)}' AND {$
|
226 |
|
227 |
break;
|
228 |
}
|
175 |
return $result;
|
176 |
}
|
177 |
|
178 |
+
function wp_statistics_searchengine_list() {
|
179 |
+
// This function returns an array or array's which define what search engines we should look for.
|
180 |
+
// Each sub array is made up of the following items:
|
181 |
+
// name = The proper name of the search engine
|
182 |
+
// tag = a short one word, all lower case, representation of the search engine
|
183 |
+
// sqlpattern = either a single SQL style search pattern OR an array or search patterns to match the hostname in a URL against
|
184 |
+
// regexpattern = either a single regex style search pattern OR an array or search patterns to match the hostname in a URL against
|
185 |
+
// querykey = the URL key that contains the search string for the search engine
|
186 |
+
// image = the name of the image file to associate with this search engine (just the filename, no path info)
|
187 |
+
//
|
188 |
+
return array(
|
189 |
+
'baidu' => array( 'name' => 'Baidu', 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
|
190 |
+
'bing' => array( 'name' => 'Bing', 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' =>'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
|
191 |
+
'duckduckgo' => array( 'name' => 'DuckDuckGo', 'tag' => 'duckduckgo', 'sqlpattern' => array('%duckduckgo.com%', '%ddg.gg%'), 'regexpattern' => array('duckduckgo\.com','ddg\.gg'), 'querykey' => 'q', 'image' => 'duckduckgo.png' ),
|
192 |
+
'google' => array( 'name' => 'Google', 'tag' => 'google', 'sqlpattern' => '%google.%', 'regexpattern' => 'google\.', 'querykey' => 'q', 'image' => 'google.png' ),
|
193 |
+
'yahoo' => array( 'name' => 'Yahoo!', 'tag' => 'yahoo', 'sqlpattern' => '%yahoo.com%', 'regexpattern' => 'yahoo\.com', 'querykey' => 'p', 'image' => 'yahoo.png' ),
|
194 |
+
'yandex' => array( 'name' => 'Yandex', 'tag' => 'yandex', 'sqlpattern' => '%yandex.ru%', 'regexpattern' => 'yandex\.ru', 'querykey' => 'text', 'image' => 'yandex.png' )
|
195 |
+
);
|
196 |
+
}
|
197 |
+
|
198 |
+
function wp_statistics_searchengine_query($search_engine = 'all') {
|
199 |
+
$searchengine_list = wp_statistics_searchengine_list();
|
200 |
+
|
201 |
+
if( strtolower($search_engine) == 'all' ) {
|
202 |
+
foreach( $searchengine_list as $se ) {
|
203 |
+
if( is_array( $se['sqlpattern'] ) ) {
|
204 |
+
foreach( $se['sqlpattern'] as $subse ) {
|
205 |
+
$search_query .= "`referred` LIKE '{$subse}' OR ";
|
206 |
+
}
|
207 |
+
}
|
208 |
+
else {
|
209 |
+
$search_query .= "`referred` LIKE '{$se['sqlpattern']}' OR ";
|
210 |
+
}
|
211 |
+
}
|
212 |
+
|
213 |
+
// Trim off the last ' OR ' for the loop above.
|
214 |
+
$search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
|
215 |
+
}
|
216 |
+
else {
|
217 |
+
if( is_array( $searchengine_list[$search_engine]['sqlpattern'] ) ) {
|
218 |
+
foreach( $searchengine_list[$search_engine]['sqlpattern'] as $se ) {
|
219 |
+
$search_query .= "`referred` LIKE '{$se}' OR ";
|
220 |
+
}
|
221 |
+
|
222 |
+
// Trim off the last ' OR ' for the loop above.
|
223 |
+
$search_query = substr( $search_query, 0, strlen( $search_query ) - 4 );
|
224 |
+
}
|
225 |
+
else {
|
226 |
+
$search_query .= "`referred` LIKE '{$searchengine_list[$search_engine]['sqlpattern']}'";
|
227 |
+
}
|
228 |
+
}
|
229 |
+
|
230 |
+
return $search_query;
|
231 |
+
}
|
232 |
+
|
233 |
+
function wp_statistics_searchengine_regex($search_engine = 'all') {
|
234 |
+
$searchengine_list = wp_statistics_searchengine_list();
|
235 |
+
|
236 |
+
if( strtolower($search_engine) == 'all' ) {
|
237 |
+
foreach( $searchengine_list as $se ) {
|
238 |
+
if( is_array( $se['regexpattern'] ) ) {
|
239 |
+
foreach( $se['regexpattern'] as $subse ) {
|
240 |
+
$search_query .= "{$subse}|";
|
241 |
+
}
|
242 |
+
}
|
243 |
+
else {
|
244 |
+
$search_query .= "{$se['regexpattern']}|";
|
245 |
+
}
|
246 |
+
}
|
247 |
+
|
248 |
+
// Trim off the last '|' for the loop above.
|
249 |
+
$search_query = substr( $search_query, 0, strlen( $search_query ) - 1 );
|
250 |
+
}
|
251 |
+
else {
|
252 |
+
if( is_array( $searchengine_list[$search_engine]['regexpattern'] ) ) {
|
253 |
+
foreach( $searchengine_list[$search_engine]['regexpattern'] as $se ) {
|
254 |
+
$search_query .= "{$se}|";
|
255 |
+
}
|
256 |
+
|
257 |
+
// Trim off the last '|' for the loop above.
|
258 |
+
$search_query = substr( $search_query, 0, strlen( $search_query ) - 1 );
|
259 |
+
}
|
260 |
+
else {
|
261 |
+
$search_query .= $searchengine_list[$search_engine]['regexpattern'];
|
262 |
+
}
|
263 |
+
}
|
264 |
+
|
265 |
+
// Add the brackets and return
|
266 |
+
return "({$search_query})";
|
267 |
+
}
|
268 |
+
|
269 |
function wp_statistics_searchengine($search_engine = 'all', $time = 'total') {
|
270 |
|
271 |
global $wpdb, $table_prefix;
|
272 |
|
273 |
$s = new WP_Statistics();
|
274 |
+
|
275 |
+
$search_query = wp_statistics_Searchengine_query($search_engine);
|
276 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
switch($time) {
|
278 |
case 'today':
|
279 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d')}' AND {$search_query}");
|
280 |
break;
|
281 |
|
282 |
case 'yesterday':
|
283 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -1)}' AND {$search_query}");
|
284 |
|
285 |
break;
|
286 |
|
287 |
case 'week':
|
288 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -7)}' AND {$search_query}");
|
289 |
|
290 |
break;
|
291 |
|
292 |
case 'month':
|
293 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -30)}' AND {$search_query}");
|
294 |
|
295 |
break;
|
296 |
|
297 |
case 'year':
|
298 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -360)}' AND {$search_query}");
|
299 |
|
300 |
break;
|
301 |
|
302 |
case 'total':
|
303 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query}");
|
304 |
|
305 |
break;
|
306 |
|
307 |
default:
|
308 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', $time)}' AND {$search_query}");
|
309 |
|
310 |
break;
|
311 |
}
|
includes/log/all-browsers.php
CHANGED
@@ -260,7 +260,7 @@
|
|
260 |
</div>
|
261 |
</div>
|
262 |
|
263 |
-
<?php function BrowserVersionStats($Browser) { $Browser_tag = strtolower(
|
264 |
<div class="postbox">
|
265 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
266 |
<h3 class="hndle"><span><?php echo sprintf(__('%s Version', 'wp_statistics'), $Browser); ?></span></h3>
|
260 |
</div>
|
261 |
</div>
|
262 |
|
263 |
+
<?php function BrowserVersionStats($Browser) { $Browser_tag = strtolower(preg_replace('/[^a-zA-Z]/', '', $Browser)); ?>
|
264 |
<div class="postbox">
|
265 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
266 |
<h3 class="hndle"><span><?php echo sprintf(__('%s Version', 'wp_statistics'), $Browser); ?></span></h3>
|
includes/log/last-search.php
CHANGED
@@ -12,10 +12,30 @@
|
|
12 |
<?php screen_icon('options-general'); ?>
|
13 |
<h2><?php _e('Latest search words', 'wp_statistics'); ?></h2>
|
14 |
<ul class="subsubsub">
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</ul>
|
20 |
<div class="postbox-container" id="last-log">
|
21 |
<div class="metabox-holder">
|
@@ -24,63 +44,61 @@
|
|
24 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
25 |
<h3 class="hndle"><span><?php _e('Latest search words', 'wp_statistics'); ?></span></h3>
|
26 |
<div class="inside">
|
|
|
27 |
<?php
|
28 |
-
$
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
|
|
|
|
42 |
|
43 |
-
|
44 |
-
if( $referred ) {
|
45 |
-
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%{$referred}%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
46 |
-
} else {
|
47 |
-
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
48 |
-
}
|
49 |
-
|
50 |
-
echo "<div class='log-latest'>";
|
51 |
-
|
52 |
-
foreach($result as $items) {
|
53 |
-
|
54 |
-
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
55 |
|
56 |
-
|
57 |
-
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
58 |
-
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
59 |
-
echo "<div class='clear'></div>";
|
60 |
-
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
61 |
-
|
62 |
-
if( $wpstats->Check_Search_Engines('google.com', $items->referred) ) {
|
63 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=google.com'><img src='".plugins_url('wp-statistics/images/google.com.png')."' class='log-tools' title='".__('Google', 'wp_statistics')."'/></a>";
|
64 |
-
} else if( $wpstats->Check_Search_Engines('yahoo.com', $items->referred) ) {
|
65 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com'><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' class='log-tools' title='".__('Yahoo!', 'wp_statistics')."'/></a>";
|
66 |
-
} else if( $wpstats->Check_Search_Engines('bing.com', $items->referred) ) {
|
67 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com'><img src='".plugins_url('wp-statistics/images/bing.com.png')."' class='log-tools' title='".__('Bing', 'wp_statistics')."'/></a>";
|
68 |
-
}
|
69 |
-
|
70 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
71 |
-
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
72 |
-
echo "</div>";
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
}
|
75 |
-
|
76 |
echo "</div>";
|
77 |
?>
|
78 |
</div>
|
79 |
</div>
|
80 |
|
81 |
<div class="pagination-log">
|
82 |
-
<?php echo $Pagination->display(); ?>
|
83 |
<p id="result-log"><?php echo ' ' . __('Page', 'wp_statistics') . ' ' . $Pagination->getCurrentPage() . ' ' . __('From', 'wp_statistics') . ' ' . $Pagination->getTotalPages(); ?></p>
|
|
|
84 |
</div>
|
85 |
</div>
|
86 |
</div>
|
12 |
<?php screen_icon('options-general'); ?>
|
13 |
<h2><?php _e('Latest search words', 'wp_statistics'); ?></h2>
|
14 |
<ul class="subsubsub">
|
15 |
+
<?php
|
16 |
+
$search_result_count = count( $search_result );
|
17 |
+
$i = 0;
|
18 |
+
$separator = '|';
|
19 |
+
|
20 |
+
foreach( $search_result as $key => $value ) {
|
21 |
+
$i++;
|
22 |
+
|
23 |
+
if( $i == $search_result_count ) { $separator = ''; }
|
24 |
+
|
25 |
+
if( $key == 'All' )
|
26 |
+
{
|
27 |
+
$tag = '';
|
28 |
+
$name = 'All';
|
29 |
+
}
|
30 |
+
else
|
31 |
+
{
|
32 |
+
$tag = $search_engines[$key]['tag'];
|
33 |
+
$name = $search_engines[$key]['name'];
|
34 |
+
}
|
35 |
+
|
36 |
+
echo "<li><a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$tag}'>" . __($name, 'wp_statistics') . " <span class='count'>({$value})</span></a>{$separator}</li>";
|
37 |
+
}
|
38 |
+
?>
|
39 |
</ul>
|
40 |
<div class="postbox-container" id="last-log">
|
41 |
<div class="metabox-holder">
|
44 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
45 |
<h3 class="hndle"><span><?php _e('Latest search words', 'wp_statistics'); ?></span></h3>
|
46 |
<div class="inside">
|
47 |
+
<div class='log-latest'>
|
48 |
<?php
|
49 |
+
if( $total > 0 ) {
|
50 |
+
$wpstats = new WP_Statistics();
|
51 |
+
|
52 |
+
// Instantiate pagination object with appropriate arguments
|
53 |
+
$pagesPerSection = 10;
|
54 |
+
$options = array(25, "All");
|
55 |
+
$stylePageOff = "pageOff";
|
56 |
+
$stylePageOn = "pageOn";
|
57 |
+
$styleErrors = "paginationErrors";
|
58 |
+
$styleSelect = "paginationSelect";
|
59 |
+
|
60 |
+
$Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
|
61 |
+
|
62 |
+
$start = $Pagination->getEntryStart();
|
63 |
+
$end = $Pagination->getEntryEnd();
|
64 |
|
65 |
+
// Retrieve MySQL data
|
66 |
+
if( $referred && $referred != "") {
|
67 |
+
$search_query = wp_statistics_Searchengine_query($referred);
|
68 |
+
} else {
|
69 |
+
$search_query = wp_statistics_Searchengine_query('all');
|
70 |
+
}
|
71 |
|
72 |
+
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
foreach($result as $items) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
+
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
77 |
+
|
78 |
+
echo "<div class='log-item'>";
|
79 |
+
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
80 |
+
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
81 |
+
echo "<div class='clear'></div>";
|
82 |
+
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
83 |
+
|
84 |
+
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
85 |
+
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
|
86 |
+
|
87 |
+
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
88 |
+
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
89 |
+
echo "</div>";
|
90 |
+
}
|
91 |
}
|
92 |
+
|
93 |
echo "</div>";
|
94 |
?>
|
95 |
</div>
|
96 |
</div>
|
97 |
|
98 |
<div class="pagination-log">
|
99 |
+
<?php if( $total > 0 ) { echo $Pagination->display(); ?>
|
100 |
<p id="result-log"><?php echo ' ' . __('Page', 'wp_statistics') . ' ' . $Pagination->getCurrentPage() . ' ' . __('From', 'wp_statistics') . ' ' . $Pagination->getTotalPages(); ?></p>
|
101 |
+
<?php }?>
|
102 |
</div>
|
103 |
</div>
|
104 |
</div>
|
includes/log/log.php
CHANGED
@@ -68,7 +68,11 @@
|
|
68 |
</tr>
|
69 |
|
70 |
<tr>
|
71 |
-
<th colspan="3"
|
|
|
|
|
|
|
|
|
72 |
</tr>
|
73 |
|
74 |
<tr>
|
@@ -77,34 +81,47 @@
|
|
77 |
<th class="th-center"><?php _e('Yesterday', 'wp_statistics'); ?></th>
|
78 |
</tr>
|
79 |
|
|
|
|
|
|
|
|
|
|
|
80 |
<tr>
|
81 |
-
<th
|
82 |
-
<th class="th-center"><span><?php
|
83 |
-
<th class="th-center"><span><?php
|
84 |
-
</tr>
|
85 |
-
|
86 |
-
<tr>
|
87 |
-
<th><?php _e('Yahoo!', 'wp_statistics'); ?>:</th>
|
88 |
-
<th class="th-center"><span><?php echo wp_statistics_searchengine('yahoo', 'today'); ?></span></th>
|
89 |
-
<th class="th-center"><span><?php echo wp_statistics_searchengine('yahoo', 'yesterday'); ?></span></th>
|
90 |
</tr>
|
91 |
|
|
|
|
|
|
|
92 |
<tr>
|
93 |
-
<th><?php _e('
|
94 |
-
<th class="th-center"><span><?php echo
|
95 |
-
<th class="th-center"><span><?php echo
|
96 |
</tr>
|
97 |
-
|
98 |
<tr>
|
99 |
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
100 |
<th colspan="2" id="th-colspan"><span><?php echo wp_statistics_searchengine('all'); ?></span></th>
|
101 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
</tbody>
|
103 |
</table>
|
104 |
-
|
105 |
-
<strong><?php $wpstats = new WP_Statistics(); echo sprintf(__('Today date: <code dir="ltr">%s</code>, Time: <code dir="ltr">%s</code>', 'wp_statistics'), $wpstats->Current_Date(get_option('date_format')), $wpstats->Current_Date(get_option('time_format'))); ?></strong>
|
106 |
-
|
107 |
-
<span id="time_zone"><a href="<?php echo admin_url('options-general.php'); ?>"><?php _e('(Adjustment)', 'wp_statistics'); ?></a></span>
|
108 |
</div>
|
109 |
</div>
|
110 |
|
@@ -504,36 +521,22 @@
|
|
504 |
},
|
505 |
useHTML: true
|
506 |
},
|
507 |
-
series: [
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
echo ", ";
|
524 |
-
}
|
525 |
-
?>]
|
526 |
-
},
|
527 |
-
{
|
528 |
-
name: '<?php _e('Bing', 'wp_statistics'); ?>',
|
529 |
-
data: [
|
530 |
-
<?php
|
531 |
-
for( $i=20; $i>=0; $i--) {
|
532 |
-
echo wp_statistics_searchengine('bing', '-'.$i);
|
533 |
-
echo ", ";
|
534 |
-
}
|
535 |
-
?>]
|
536 |
-
}]
|
537 |
});
|
538 |
});
|
539 |
|
@@ -552,7 +555,10 @@
|
|
552 |
<div class="inside">
|
553 |
|
554 |
<?php
|
555 |
-
|
|
|
|
|
|
|
556 |
|
557 |
echo "<div class='log-latest'>";
|
558 |
|
@@ -561,23 +567,17 @@
|
|
561 |
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
562 |
|
563 |
echo "<div class='log-item'>";
|
564 |
-
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0,
|
565 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
566 |
echo "<div class='clear'></div>";
|
567 |
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
568 |
|
569 |
-
|
570 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=
|
571 |
-
} else if( $wpstats->Check_Search_Engines('yahoo.com', $items->referred) ) {
|
572 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=yahoo.com'><img src='".plugins_url('wp-statistics/images/yahoo.com.png')."' class='log-tools' title='".__('Yahoo!', 'wp_statistics')."'/></a>";
|
573 |
-
} else if( $wpstats->Check_Search_Engines('bing.com', $items->referred) ) {
|
574 |
-
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred=bing.com'><img src='".plugins_url('wp-statistics/images/bing.com.png')."' class='log-tools' title='".__('Bing', 'wp_statistics')."'/></a>";
|
575 |
-
}
|
576 |
|
577 |
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
578 |
-
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0,
|
579 |
echo "</div>";
|
580 |
-
|
581 |
}
|
582 |
|
583 |
echo "</div>";
|
68 |
</tr>
|
69 |
|
70 |
<tr>
|
71 |
+
<th colspan="3"><br><hr></th>
|
72 |
+
</tr>
|
73 |
+
|
74 |
+
<tr>
|
75 |
+
<th colspan="3" style="text-align: center;"><?php _e('Search Engine Referrals', 'wp_statistics'); ?></th>
|
76 |
</tr>
|
77 |
|
78 |
<tr>
|
81 |
<th class="th-center"><?php _e('Yesterday', 'wp_statistics'); ?></th>
|
82 |
</tr>
|
83 |
|
84 |
+
<?php
|
85 |
+
$se_today_total = 0;
|
86 |
+
$se_yesterday_total = 0;
|
87 |
+
foreach( $search_engines as $se ) {
|
88 |
+
?>
|
89 |
<tr>
|
90 |
+
<th><img src='<?php echo plugins_url('wp-statistics/images/' . $se['image'] );?>'> <?php _e($se['name'], 'wp_statistics'); ?>:</th>
|
91 |
+
<th class="th-center"><span><?php $se_temp = wp_statistics_searchengine($se['tag'], 'today'); $se_today_total += $se_temp; echo $se_temp;?></span></th>
|
92 |
+
<th class="th-center"><span><?php $se_temp = wp_statistics_searchengine($se['tag'], 'yesterday'); $se_yesterday_total += $se_temp; echo $se_temp;?></span></th>
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
</tr>
|
94 |
|
95 |
+
<?php
|
96 |
+
}
|
97 |
+
?>
|
98 |
<tr>
|
99 |
+
<th><?php _e('Daily Total', 'wp_statistics'); ?>:</th>
|
100 |
+
<td id="th-colspan" class="th-center"><span><?php echo $se_today_total; ?></span></td>
|
101 |
+
<td id="th-colspan" class="th-center"><span><?php echo $se_yesterday_total; ?></span></td>
|
102 |
</tr>
|
103 |
+
|
104 |
<tr>
|
105 |
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
106 |
<th colspan="2" id="th-colspan"><span><?php echo wp_statistics_searchengine('all'); ?></span></th>
|
107 |
</tr>
|
108 |
+
<tr>
|
109 |
+
<th colspan="3"><br><hr></th>
|
110 |
+
</tr>
|
111 |
+
|
112 |
+
<tr>
|
113 |
+
<th colspan="3" style="text-align: center;"><?php _e('Current Time and Date', 'wp_statistics'); ?> <span id="time_zone"><a href="<?php echo admin_url('options-general.php'); ?>"><?php _e('(Adjustment)', 'wp_statistics'); ?></a></span></th>
|
114 |
+
</tr>
|
115 |
+
|
116 |
+
<tr>
|
117 |
+
<th colspan="3"><?php $wpstats = new WP_Statistics(); echo sprintf(__('Date: <code dir="ltr">%s</code></code>', 'wp_statistics'), $wpstats->Current_Date(get_option('date_format'))); ?></th>
|
118 |
+
</tr>
|
119 |
+
|
120 |
+
<tr>
|
121 |
+
<th colspan="3"><?php echo sprintf(__('Time: <code dir="ltr">%s</code>', 'wp_statistics'), $wpstats->Current_Date(get_option('time_format'))); ?></th>
|
122 |
+
</tr>
|
123 |
</tbody>
|
124 |
</table>
|
|
|
|
|
|
|
|
|
125 |
</div>
|
126 |
</div>
|
127 |
|
521 |
},
|
522 |
useHTML: true
|
523 |
},
|
524 |
+
series: [
|
525 |
+
<?php
|
526 |
+
foreach( $search_engines as $se ) {
|
527 |
+
echo " {\n";
|
528 |
+
echo " name: '" . __($se['name'], 'wp_statistics') . "',\n";
|
529 |
+
echo " data: [";
|
530 |
+
|
531 |
+
for( $i=20; $i>=0; $i--) {
|
532 |
+
echo wp_statistics_searchengine($se['tag'], '-'.$i) . ", ";
|
533 |
+
}
|
534 |
+
|
535 |
+
echo "]\n";
|
536 |
+
echo " },\n";
|
537 |
+
}
|
538 |
+
?>
|
539 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
});
|
541 |
});
|
542 |
|
555 |
<div class="inside">
|
556 |
|
557 |
<?php
|
558 |
+
// Retrieve MySQL data
|
559 |
+
$search_query = wp_statistics_Searchengine_query('all');
|
560 |
+
|
561 |
+
$result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, 10");
|
562 |
|
563 |
echo "<div class='log-latest'>";
|
564 |
|
567 |
if( !$wpstats->Search_Engine_QueryString($items->referred) ) continue;
|
568 |
|
569 |
echo "<div class='log-item'>";
|
570 |
+
echo "<div class='log-referred'>".substr($wpstats->Search_Engine_QueryString($items->referred), 0, 100)."</div>";
|
571 |
echo "<div class='log-ip'>{$items->last_counter} - <a href='http://www.geoiptool.com/en/?IP={$items->ip}' target='_blank'>{$items->ip}</a></div>";
|
572 |
echo "<div class='clear'></div>";
|
573 |
echo "<a class='show-map'><img src='".plugins_url('wp-statistics/images/map.png')."' class='log-tools' title='".__('Map', 'wp_statistics')."'/></a>";
|
574 |
|
575 |
+
$this_search_engine = $wpstats->Search_Engine_Info($items->referred);
|
576 |
+
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-search&referred={$this_search_engine['tag']}'><img src='".plugins_url('wp-statistics/images/' . $this_search_engine['image'])."' class='log-tools' title='".__($this_search_engine['name'], 'wp_statistics')."'/></a>";
|
|
|
|
|
|
|
|
|
|
|
577 |
|
578 |
echo "<a href='?page=wp-statistics/wp-statistics.php&type=last-all-visitor&agent={$items->agent}'><img src='".plugins_url('wp-statistics/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/></a>";
|
579 |
+
echo "<div class='log-url'><a href='{$items->referred}'><img src='".plugins_url('wp-statistics/images/link.png')."' title='{$items->referred}'/> ".substr($items->referred, 0, 100)."[...]</a></div>";
|
580 |
echo "</div>";
|
|
|
581 |
}
|
582 |
|
583 |
echo "</div>";
|
includes/log/search-statistics.php
CHANGED
@@ -89,36 +89,22 @@
|
|
89 |
},
|
90 |
useHTML: true
|
91 |
},
|
92 |
-
series: [
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
echo ", ";
|
109 |
-
}
|
110 |
-
?>]
|
111 |
-
},
|
112 |
-
{
|
113 |
-
name: '<?php _e('Bing', 'wp_statistics'); ?>',
|
114 |
-
data: [
|
115 |
-
<?php
|
116 |
-
for( $i=$daysToDisplay; $i>=0; $i--) {
|
117 |
-
echo wp_statistics_searchengine('bing', '-'.$i);
|
118 |
-
echo ", ";
|
119 |
-
}
|
120 |
-
?>]
|
121 |
-
}]
|
122 |
});
|
123 |
});
|
124 |
</script>
|
89 |
},
|
90 |
useHTML: true
|
91 |
},
|
92 |
+
series: [
|
93 |
+
<?php
|
94 |
+
foreach( $search_engines as $se ) {
|
95 |
+
echo " {\n";
|
96 |
+
echo " name: '" . __($se['name'], 'wp_statistics') . "',\n";
|
97 |
+
echo " data: [";
|
98 |
+
|
99 |
+
for( $i=$daysToDisplay; $i>=0; $i--) {
|
100 |
+
echo wp_statistics_searchengine($se['tag'], '-'.$i) . ", ";
|
101 |
+
}
|
102 |
+
|
103 |
+
echo "]\n";
|
104 |
+
echo " },\n";
|
105 |
+
}
|
106 |
+
?>
|
107 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
});
|
109 |
});
|
110 |
</script>
|
includes/optimization/optimization-geoip.php
CHANGED
@@ -91,15 +91,19 @@
|
|
91 |
echo wp_statistics_populate_geoip_info();
|
92 |
}
|
93 |
?>
|
|
|
94 |
<div class="wrap">
|
95 |
<?php screen_icon('options-general'); ?>
|
96 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
|
|
|
|
|
|
97 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
98 |
<table class="form-table">
|
99 |
<tbody>
|
100 |
<?php settings_fields('wps_settings'); ?>
|
101 |
<tr valign="top">
|
102 |
-
<th scope="row" colspan="2"><h3><?php _e('Resources', 'wp_statistics'); ?></h3></th>
|
103 |
</tr>
|
104 |
|
105 |
<tr valign="top">
|
@@ -147,7 +151,7 @@
|
|
147 |
</tr>
|
148 |
|
149 |
<tr valign="top">
|
150 |
-
<th scope="row" colspan="2"><h3><?php _e('Version Info', 'wp_statistics'); ?></h3></th>
|
151 |
</tr>
|
152 |
|
153 |
<tr valign="top">
|
@@ -184,7 +188,7 @@
|
|
184 |
</tr>
|
185 |
|
186 |
<tr valign="top">
|
187 |
-
<th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
|
188 |
</tr>
|
189 |
|
190 |
<tr valign="top">
|
@@ -210,7 +214,7 @@
|
|
210 |
</tr>
|
211 |
|
212 |
<tr valign="top">
|
213 |
-
<th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
|
214 |
</tr>
|
215 |
|
216 |
<tr valign="top">
|
@@ -248,7 +252,7 @@
|
|
248 |
</tr>
|
249 |
|
250 |
<tr valign="top">
|
251 |
-
<th scope="row" colspan="2"><h3><?php _e('Empty', 'wp_statistics'); ?></h3></th>
|
252 |
</tr>
|
253 |
|
254 |
<tr valign="top">
|
@@ -271,7 +275,7 @@
|
|
271 |
</tr>
|
272 |
|
273 |
<tr valign="top">
|
274 |
-
<th scope="row" colspan="2"><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></th>
|
275 |
</tr>
|
276 |
|
277 |
<tr valign="top">
|
@@ -324,7 +328,7 @@
|
|
324 |
|
325 |
|
326 |
<tr valign="top">
|
327 |
-
<th scope="row" colspan="2"><h3><?php _e('GeoIP Options', 'wp_statistics'); ?></h3></th>
|
328 |
</tr>
|
329 |
|
330 |
<tr valign="top">
|
91 |
echo wp_statistics_populate_geoip_info();
|
92 |
}
|
93 |
?>
|
94 |
+
<a name="top"></a>
|
95 |
<div class="wrap">
|
96 |
<?php screen_icon('options-general'); ?>
|
97 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
98 |
+
<br>
|
99 |
+
<a href="#resources"><?php _e('Resources', 'wp_statistics'); ?></a> | <a href="#versioninfo"><?php _e('Version Info', 'wp_statistics'); ?></a> | <a href="#clientinfo"><?php _e('Client Info', 'wp_statistics'); ?></a> | <a href="#export"><?php _e('Export', 'wp_statistics'); ?></a> | <a href="#empty"><?php _e('Empty', 'wp_statistics'); ?></a> | <a href="#deleteuseragenttypes"><?php _e('Delete User Agent Types', 'wp_statistics'); ?></a> | <a href="#geoipoptions"><?php _e('GeoIP Options', 'wp_statistics'); ?></a>
|
100 |
+
|
101 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
102 |
<table class="form-table">
|
103 |
<tbody>
|
104 |
<?php settings_fields('wps_settings'); ?>
|
105 |
<tr valign="top">
|
106 |
+
<th scope="row" colspan="2"><a name="resources" href="#top" style='text-decoration: none;'><h3><?php _e('Resources', 'wp_statistics'); ?></h3></a></th>
|
107 |
</tr>
|
108 |
|
109 |
<tr valign="top">
|
151 |
</tr>
|
152 |
|
153 |
<tr valign="top">
|
154 |
+
<th scope="row" colspan="2"><a name="versioninfo" href="#top" style='text-decoration: none;'><h3><?php _e('Version Info', 'wp_statistics'); ?></h3></a></th>
|
155 |
</tr>
|
156 |
|
157 |
<tr valign="top">
|
188 |
</tr>
|
189 |
|
190 |
<tr valign="top">
|
191 |
+
<th scope="row" colspan="2"><a name="clientinfo" href="#top" style='text-decoration: none;'><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></a></th>
|
192 |
</tr>
|
193 |
|
194 |
<tr valign="top">
|
214 |
</tr>
|
215 |
|
216 |
<tr valign="top">
|
217 |
+
<th scope="row" colspan="2"><a name="export" href="#top" style='text-decoration: none;'><h3><?php _e('Export', 'wp_statistics'); ?></h3></a></th>
|
218 |
</tr>
|
219 |
|
220 |
<tr valign="top">
|
252 |
</tr>
|
253 |
|
254 |
<tr valign="top">
|
255 |
+
<th scope="row" colspan="2"><a name="empty" href="#top" style='text-decoration: none;'><h3><?php _e('Empty', 'wp_statistics'); ?></h3></a></th>
|
256 |
</tr>
|
257 |
|
258 |
<tr valign="top">
|
275 |
</tr>
|
276 |
|
277 |
<tr valign="top">
|
278 |
+
<th scope="row" colspan="2"><a name="deleteuseragenttypes" href="#top" style='text-decoration: none;'><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></a></th>
|
279 |
</tr>
|
280 |
|
281 |
<tr valign="top">
|
328 |
|
329 |
|
330 |
<tr valign="top">
|
331 |
+
<th scope="row" colspan="2"><a name="geoipoptions" href="#top" style='text-decoration: none;'><h3><?php _e('GeoIP Options', 'wp_statistics'); ?></h3></a></th>
|
332 |
</tr>
|
333 |
|
334 |
<tr valign="top">
|
includes/optimization/optimization.php
CHANGED
@@ -84,15 +84,19 @@
|
|
84 |
|
85 |
});
|
86 |
</script>
|
|
|
87 |
<div class="wrap">
|
88 |
<?php screen_icon('options-general'); ?>
|
89 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
|
|
|
|
|
|
90 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
91 |
<table class="form-table">
|
92 |
<tbody>
|
93 |
<?php settings_fields('wps_settings'); ?>
|
94 |
<tr valign="top">
|
95 |
-
<th scope="row" colspan="2"><h3><?php _e('Resources', 'wp_statistics'); ?></h3></th>
|
96 |
</tr>
|
97 |
|
98 |
<tr valign="top">
|
@@ -140,7 +144,7 @@
|
|
140 |
</tr>
|
141 |
|
142 |
<tr valign="top">
|
143 |
-
<th scope="row" colspan="2"><h3><?php _e('Version Info', 'wp_statistics'); ?></h3></th>
|
144 |
</tr>
|
145 |
|
146 |
<tr valign="top">
|
@@ -177,7 +181,7 @@
|
|
177 |
</tr>
|
178 |
|
179 |
<tr valign="top">
|
180 |
-
<th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
|
181 |
</tr>
|
182 |
|
183 |
<tr valign="top">
|
@@ -203,7 +207,7 @@
|
|
203 |
</tr>
|
204 |
|
205 |
<tr valign="top">
|
206 |
-
<th scope="row" colspan="2"><h3><?php _e('Export', 'wp_statistics'); ?></h3></th>
|
207 |
</tr>
|
208 |
|
209 |
<tr valign="top">
|
@@ -241,7 +245,7 @@
|
|
241 |
</tr>
|
242 |
|
243 |
<tr valign="top">
|
244 |
-
<th scope="row" colspan="2"><h3><?php _e('Empty', 'wp_statistics'); ?></h3></th>
|
245 |
</tr>
|
246 |
|
247 |
<tr valign="top">
|
@@ -264,7 +268,7 @@
|
|
264 |
</tr>
|
265 |
|
266 |
<tr valign="top">
|
267 |
-
<th scope="row" colspan="2"><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></th>
|
268 |
</tr>
|
269 |
|
270 |
<tr valign="top">
|
84 |
|
85 |
});
|
86 |
</script>
|
87 |
+
<a name="top"></a>
|
88 |
<div class="wrap">
|
89 |
<?php screen_icon('options-general'); ?>
|
90 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
91 |
+
<br>
|
92 |
+
<a href="#resources"><?php _e('Resources', 'wp_statistics'); ?></a> | <a href="#versioninfo"><?php _e('Version Info', 'wp_statistics'); ?></a> | <a href="#clientinfo"><?php _e('Client Info', 'wp_statistics'); ?></a> | <a href="#export"><?php _e('Export', 'wp_statistics'); ?></a> | <a href="#empty"><?php _e('Empty', 'wp_statistics'); ?></a> | <a href="#deleteuseragenttypes"><?php _e('Delete User Agent Types', 'wp_statistics'); ?></a>
|
93 |
+
|
94 |
<form method="post" action="<?php echo plugins_url('export.php', __FILE__); ?>">
|
95 |
<table class="form-table">
|
96 |
<tbody>
|
97 |
<?php settings_fields('wps_settings'); ?>
|
98 |
<tr valign="top">
|
99 |
+
<th scope="row" colspan="2"><a name="resources" href="#top" style='text-decoration: none;'><h3><?php _e('Resources', 'wp_statistics'); ?></h3></a></th>
|
100 |
</tr>
|
101 |
|
102 |
<tr valign="top">
|
144 |
</tr>
|
145 |
|
146 |
<tr valign="top">
|
147 |
+
<th scope="row" colspan="2"><a name="versioninfo" href="#top" style='text-decoration: none;'><h3><?php _e('Version Info', 'wp_statistics'); ?></h3></a></th>
|
148 |
</tr>
|
149 |
|
150 |
<tr valign="top">
|
181 |
</tr>
|
182 |
|
183 |
<tr valign="top">
|
184 |
+
<th scope="row" colspan="2"><a name="clientinfo" href="#top" style='text-decoration: none;'><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></a></th>
|
185 |
</tr>
|
186 |
|
187 |
<tr valign="top">
|
207 |
</tr>
|
208 |
|
209 |
<tr valign="top">
|
210 |
+
<th scope="row" colspan="2"><a name="export" href="#top" style='text-decoration: none;'><h3><?php _e('Export', 'wp_statistics'); ?></h3></a></th>
|
211 |
</tr>
|
212 |
|
213 |
<tr valign="top">
|
245 |
</tr>
|
246 |
|
247 |
<tr valign="top">
|
248 |
+
<th scope="row" colspan="2"><a name="empty" href="#top" style='text-decoration: none;'><h3><?php _e('Empty', 'wp_statistics'); ?></h3></a></th>
|
249 |
</tr>
|
250 |
|
251 |
<tr valign="top">
|
268 |
</tr>
|
269 |
|
270 |
<tr valign="top">
|
271 |
+
<th scope="row" colspan="2"><a name="deleteuseragenttypes" href="#top" style='text-decoration: none;'><h3><?php _e('Delete User Agent Types', 'wp_statistics'); ?></h3></a></th>
|
272 |
</tr>
|
273 |
|
274 |
<tr valign="top">
|
includes/setting/settings.php
CHANGED
@@ -3,16 +3,19 @@
|
|
3 |
jQuery('[id^="wps_stats_report_option"]').fadeToggle();
|
4 |
}
|
5 |
</script>
|
6 |
-
|
7 |
<div class="wrap">
|
8 |
<?php screen_icon('options-general'); ?>
|
9 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
|
|
|
|
|
|
10 |
<form method="post" action="options.php">
|
11 |
<table class="form-table">
|
12 |
<tbody>
|
13 |
<?php settings_fields('wps_settings'); ?>
|
14 |
<tr valign="top">
|
15 |
-
<th scope="row" colspan="2"><h3><?php _e('General Settings', 'wp_statistics'); ?></h3></th>
|
16 |
</tr>
|
17 |
|
18 |
<tr valign="top">
|
@@ -102,7 +105,7 @@
|
|
102 |
|
103 |
<tr valign="top">
|
104 |
<th scope="row" colspan="2">
|
105 |
-
<h3><?php _e('Admin Levels', 'wp_statistics'); ?></h3>
|
106 |
<p class="description"><?php echo sprintf(__('See the %sWordPress Roles and Capabilities page%s for details on capability levels.', 'wp_statistics'), '<a target=_blank href="http://codex.wordpress.org/Roles_and_Capabilities">', '</a>'); ?></p>
|
107 |
<p class="description"><?php echo __('Hint: manage_network = Super Admin, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone.', 'wp_statistics'); ?></p>
|
108 |
<p class="description"><?php echo __('Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins.', 'wp_statistics'); ?></p>
|
@@ -158,7 +161,7 @@
|
|
158 |
</tr>
|
159 |
|
160 |
<tr valign="top">
|
161 |
-
<th scope="row" colspan="2"><h3><?php _e('Exclude User Roles', 'wp_statistics'); ?></h3></th>
|
162 |
</tr>
|
163 |
<?php
|
164 |
foreach( $role_list as $role ) {
|
@@ -175,7 +178,7 @@
|
|
175 |
<?php } ?>
|
176 |
|
177 |
<tr valign="top">
|
178 |
-
<th scope="row" colspan="2"><h3><?php _e('IP/Robot Exclusions', 'wp_statistics'); ?></h3></th>
|
179 |
</tr>
|
180 |
|
181 |
<tr valign="top">
|
@@ -207,7 +210,7 @@
|
|
207 |
</tr>
|
208 |
|
209 |
<tr valign="top">
|
210 |
-
<th scope="row" colspan="2"><h3><?php _e('Charts', 'wp_statistics'); ?></h3></th>
|
211 |
</tr>
|
212 |
|
213 |
<tr valign="top">
|
@@ -231,7 +234,7 @@
|
|
231 |
</tr>
|
232 |
|
233 |
<tr valign="top">
|
234 |
-
<th scope="row" colspan="2"><h3><?php _e('Statistical reporting settings', 'wp_statistics'); ?></h3></th>
|
235 |
</tr>
|
236 |
|
237 |
<tr valign="top">
|
@@ -304,14 +307,15 @@
|
|
304 |
</tr>
|
305 |
|
306 |
<tr valign="top">
|
307 |
-
<th scope="row" colspan="2"><h3><?php _e('GeoIP settings', 'wp_statistics'); ?></h3></th>
|
308 |
</tr>
|
309 |
|
310 |
<tr valign="top">
|
311 |
<th scope="row" colspan="2">IP location services provided by GeoLite2 data created by MaxMind, available from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.
|
312 |
</th>
|
313 |
</tr>
|
314 |
-
|
|
|
315 |
<tr valign="top">
|
316 |
<th scope="row">
|
317 |
<label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
|
@@ -321,7 +325,6 @@
|
|
321 |
<input id="geoip-enable" type="checkbox" name="wps_geoip" <?php echo get_option('wps_geoip')==true? "checked='checked'":'';?>>
|
322 |
<label for="geoip-enable"><?php _e('Active', 'wp_statistics'); ?></label>
|
323 |
<p class="description"><?php _e('For get more information and location (country) from visitor, enable this feature.', 'wp_statistics'); ?></p>
|
324 |
-
<p class="description"><?php _e('(NOTE: Requires PHP version is 5.3.0 and higher.)', 'wp_statistics'); ?></p>
|
325 |
</td>
|
326 |
</tr>
|
327 |
|
@@ -345,6 +348,27 @@
|
|
345 |
<td>
|
346 |
<input id="geoip-schedule" type="checkbox" name="wps_schedule_geoip" <?php echo get_option('wps_schedule_geoip')==true? "checked='checked'":'';?>>
|
347 |
<label for="geoip-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
<p class="description"><?php _e('Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month.', 'wp_statistics'); ?></p>
|
349 |
<p class="description"><?php _e('This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place).', 'wp_statistics'); ?></p>
|
350 |
</td>
|
@@ -361,7 +385,16 @@
|
|
361 |
<p class="description"><?php _e('Update any missing GeoIP data after downloading a new database.', 'wp_statistics'); ?></p>
|
362 |
</td>
|
363 |
</tr>
|
364 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
</tbody>
|
366 |
</table>
|
367 |
<?php submit_button(); ?>
|
3 |
jQuery('[id^="wps_stats_report_option"]').fadeToggle();
|
4 |
}
|
5 |
</script>
|
6 |
+
<a name="top"></a>
|
7 |
<div class="wrap">
|
8 |
<?php screen_icon('options-general'); ?>
|
9 |
<h2><?php echo get_admin_page_title(); ?></h2>
|
10 |
+
<br>
|
11 |
+
<a href="#generalsettings"><?php _e('General Settings', 'wp_statistics'); ?></a> | <a href="#adminlevels"><?php _e('Admin Levels', 'wp_statistics'); ?><a/> | <a href="#excludeuserroles"><?php _e('Exclude User Roles', 'wp_statistics'); ?><a/> | <a href="#iprobotexclusions"><?php _e('IP/Robot Exclusions', 'wp_statistics'); ?><a/> | <a href="#charts"><?php _e('Charts', 'wp_statistics'); ?><a/> | <a href="#statisticalreportingsettings"><?php _e('Statistical reporting settings', 'wp_statistics'); ?><a/> | <a href="#geoip"><?php _e('GeoIP', 'wp_statistics'); ?></a>
|
12 |
+
|
13 |
<form method="post" action="options.php">
|
14 |
<table class="form-table">
|
15 |
<tbody>
|
16 |
<?php settings_fields('wps_settings'); ?>
|
17 |
<tr valign="top">
|
18 |
+
<th scope="row" colspan="2"><a href="#top" name="generalsettings" style='text-decoration: none;'><h3><?php _e('General Settings', 'wp_statistics'); ?></h3></a></th>
|
19 |
</tr>
|
20 |
|
21 |
<tr valign="top">
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row" colspan="2">
|
108 |
+
<a name="adminlevels" href="#top" style='text-decoration: none;'><h3><?php _e('Admin Levels', 'wp_statistics'); ?></h3></a>
|
109 |
<p class="description"><?php echo sprintf(__('See the %sWordPress Roles and Capabilities page%s for details on capability levels.', 'wp_statistics'), '<a target=_blank href="http://codex.wordpress.org/Roles_and_Capabilities">', '</a>'); ?></p>
|
110 |
<p class="description"><?php echo __('Hint: manage_network = Super Admin, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone.', 'wp_statistics'); ?></p>
|
111 |
<p class="description"><?php echo __('Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins.', 'wp_statistics'); ?></p>
|
161 |
</tr>
|
162 |
|
163 |
<tr valign="top">
|
164 |
+
<th scope="row" colspan="2"><a name="excludeuserroles" href="#top" style='text-decoration: none;'><h3><?php _e('Exclude User Roles', 'wp_statistics'); ?></h3></a></th>
|
165 |
</tr>
|
166 |
<?php
|
167 |
foreach( $role_list as $role ) {
|
178 |
<?php } ?>
|
179 |
|
180 |
<tr valign="top">
|
181 |
+
<th scope="row" colspan="2"><a name="iprobotexclusions" href="#top" style='text-decoration: none;'><h3><?php _e('IP/Robot Exclusions', 'wp_statistics'); ?></h3></a></th>
|
182 |
</tr>
|
183 |
|
184 |
<tr valign="top">
|
210 |
</tr>
|
211 |
|
212 |
<tr valign="top">
|
213 |
+
<th scope="row" colspan="2"><a name="charts" href="#top" style='text-decoration: none;'><h3><?php _e('Charts', 'wp_statistics'); ?></h3></a></th>
|
214 |
</tr>
|
215 |
|
216 |
<tr valign="top">
|
234 |
</tr>
|
235 |
|
236 |
<tr valign="top">
|
237 |
+
<th scope="row" colspan="2"><a name="statisticalreportingsettings" href="#top" style='text-decoration: none;'><h3><?php _e('Statistical reporting settings', 'wp_statistics'); ?></h3></a></th>
|
238 |
</tr>
|
239 |
|
240 |
<tr valign="top">
|
307 |
</tr>
|
308 |
|
309 |
<tr valign="top">
|
310 |
+
<th scope="row" colspan="2"><a name="geoip" href="#top" style='text-decoration: none;'><h3><?php _e('GeoIP settings', 'wp_statistics'); ?></h3></a></th>
|
311 |
</tr>
|
312 |
|
313 |
<tr valign="top">
|
314 |
<th scope="row" colspan="2">IP location services provided by GeoLite2 data created by MaxMind, available from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.
|
315 |
</th>
|
316 |
</tr>
|
317 |
+
|
318 |
+
<?php if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {?>
|
319 |
<tr valign="top">
|
320 |
<th scope="row">
|
321 |
<label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
|
325 |
<input id="geoip-enable" type="checkbox" name="wps_geoip" <?php echo get_option('wps_geoip')==true? "checked='checked'":'';?>>
|
326 |
<label for="geoip-enable"><?php _e('Active', 'wp_statistics'); ?></label>
|
327 |
<p class="description"><?php _e('For get more information and location (country) from visitor, enable this feature.', 'wp_statistics'); ?></p>
|
|
|
328 |
</td>
|
329 |
</tr>
|
330 |
|
348 |
<td>
|
349 |
<input id="geoip-schedule" type="checkbox" name="wps_schedule_geoip" <?php echo get_option('wps_schedule_geoip')==true? "checked='checked'":'';?>>
|
350 |
<label for="geoip-schedule"><?php _e('Active', 'wp_statistics'); ?></label>
|
351 |
+
<?php
|
352 |
+
if( get_option('wps_schedule_geoip') ) {
|
353 |
+
echo ' <p class="description">' . __('Next update will be') .': <code>';
|
354 |
+
$last_update = get_option('wps_last_geoip_dl');
|
355 |
+
$this_month = strtotime('First Tuesday of this month');
|
356 |
+
|
357 |
+
if( $last_update > $this_month ) { $next_update = strtotime('First Tuesday of next month') + (86400 * 2);}
|
358 |
+
else { $next_update = $this_month + (86400 * 2); }
|
359 |
+
|
360 |
+
$next_schedule = wp_next_scheduled('wp_statistics_geoip_hook');
|
361 |
+
|
362 |
+
if( $next_schedule ) {
|
363 |
+
echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), $next_schedule );
|
364 |
+
}
|
365 |
+
else {
|
366 |
+
echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
|
367 |
+
}
|
368 |
+
|
369 |
+
echo '</code></p>';
|
370 |
+
}
|
371 |
+
?>
|
372 |
<p class="description"><?php _e('Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month.', 'wp_statistics'); ?></p>
|
373 |
<p class="description"><?php _e('This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place).', 'wp_statistics'); ?></p>
|
374 |
</td>
|
385 |
<p class="description"><?php _e('Update any missing GeoIP data after downloading a new database.', 'wp_statistics'); ?></p>
|
386 |
</td>
|
387 |
</tr>
|
388 |
+
<?php }
|
389 |
+
else {
|
390 |
+
?>
|
391 |
+
<tr valign="top">
|
392 |
+
<th scope="row" colspan="2">
|
393 |
+
<?php printf( __('GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being ', 'wp_statistics'), '<code>' . WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION . '</code>' ); echo '<code>' . phpversion() . '</code>.'; ?>
|
394 |
+
</th>
|
395 |
+
</tr>
|
396 |
+
<?php } ?>
|
397 |
+
|
398 |
</tbody>
|
399 |
</table>
|
400 |
<?php submit_button(); ?>
|
includes/setting/widget.php
CHANGED
@@ -40,15 +40,17 @@
|
|
40 |
|
41 |
<p id="ser_option" style="<?php if(!get_option('ser_widget')) { echo "display: none;"; } ?>">
|
42 |
<?php _e('Select type of search engine', 'wp_statistics'); ?>:<br />
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
<
|
48 |
-
|
49 |
-
|
50 |
-
<label for="
|
51 |
-
|
|
|
|
|
52 |
<input type="radio" id="select_all" name="select_se" value="all" <?php checked('all', get_option('select_se')); ?>/>
|
53 |
<label for="select_all"><?php _e('All', 'wp_statistics'); ?></label>
|
54 |
</p>
|
40 |
|
41 |
<p id="ser_option" style="<?php if(!get_option('ser_widget')) { echo "display: none;"; } ?>">
|
42 |
<?php _e('Select type of search engine', 'wp_statistics'); ?>:<br />
|
43 |
+
<?php
|
44 |
+
$search_engines = wp_statistics_searchengine_list();
|
45 |
+
|
46 |
+
foreach( $search_engines as $se ) {
|
47 |
+
echo ' <input type="radio" id="select_' .$se['tag'] . '" name="select_se" value="' . $se['tag'] . '" ';
|
48 |
+
checked($se['tag'], get_option('select_se'));
|
49 |
+
echo "/>\n";
|
50 |
+
echo ' <label for="' . $se['name'] . '">' . __($se['name'], 'wp_statistics') . "</label>\n";
|
51 |
+
echo "\n";
|
52 |
+
}
|
53 |
+
?>
|
54 |
<input type="radio" id="select_all" name="select_se" value="all" <?php checked('all', get_option('select_se')); ?>/>
|
55 |
<label for="select_all"><?php _e('All', 'wp_statistics'); ?></label>
|
56 |
</p>
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-01-
|
6 |
-
"PO-Revision-Date: 2014-01-
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -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:75
|
21 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr ""
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
28 |
msgid "Statistics"
|
29 |
msgstr ""
|
30 |
|
@@ -33,33 +33,33 @@ msgid "Show site stats in sidebar"
|
|
33 |
msgstr ""
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
39 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr ""
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr ""
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr ""
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr ""
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr ""
|
@@ -80,174 +80,173 @@ 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 ""
|
93 |
|
94 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
95 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
|
96 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
97 |
msgid "Search Engine reffered"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
101 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
102 |
msgid "Total Posts"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
106 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
107 |
msgid "Total Pages"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
112 |
msgid "Total Comments"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
116 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
117 |
msgid "Total Spams"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
121 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
122 |
msgid "Total Users"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
126 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
127 |
msgid "Average Posts"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
132 |
msgid "Average Comments"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
136 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
137 |
msgid "Average Users"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
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:
|
167 |
msgid "Browsers"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
171 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
172 |
msgid "Countries"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
176 |
msgid "Hits"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
180 |
msgid "Referers"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
184 |
msgid "Searches"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
188 |
msgid "Search Words"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
192 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
193 |
msgid "Visitors"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
197 |
msgid "Optimization"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
201 |
msgid "Settings"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
205 |
msgid "Today visitor"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
209 |
msgid "Today visit"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
213 |
msgid "Yesterday visitor"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
217 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
218 |
msgid "Yesterday visit"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
222 |
msgid "View Stats"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
227 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
228 |
msgid "You do not have sufficient permissions to access this page."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
232 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
236 |
#, php-format
|
237 |
msgid "Error downloading GeoIP database from: %s"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
241 |
#, php-format
|
242 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
246 |
#, php-format
|
247 |
msgid "Error could not open destination GeoIP database for writing %s"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
251 |
msgid "GeoIP Database updated successfully!"
|
252 |
msgstr ""
|
253 |
|
@@ -264,16 +263,16 @@ msgstr ""
|
|
264 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:120
|
265 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:265
|
266 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
267 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:35
|
269 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
270 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
271 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
272 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
273 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
274 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
275 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
276 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
|
278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
@@ -285,7 +284,7 @@ msgid "Browsers by Type"
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:90
|
288 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
289 |
msgid "Browser share"
|
290 |
msgstr ""
|
291 |
|
@@ -355,7 +354,7 @@ msgid "1 Year"
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
358 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
359 |
msgid "Hits Statistical Chart"
|
360 |
msgstr ""
|
361 |
|
@@ -369,19 +368,19 @@ msgid "days"
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
372 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
373 |
msgid "Number of visits and visitors"
|
374 |
msgstr ""
|
375 |
|
376 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
377 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
378 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
379 |
msgid "Visitor"
|
380 |
msgstr ""
|
381 |
|
382 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
383 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
384 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
385 |
msgid "Visit"
|
386 |
msgstr ""
|
387 |
|
@@ -393,63 +392,26 @@ msgid "To be added soon"
|
|
393 |
msgstr ""
|
394 |
|
395 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
396 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
397 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
398 |
msgid "Latest search words"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
402 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
|
405 |
-
msgid "All"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
409 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
410 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
411 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:508
|
412 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:570
|
413 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
414 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
415 |
-
msgid "Google"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
|
419 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
420 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
|
421 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:518
|
422 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:572
|
423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
|
424 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
425 |
-
msgid "Yahoo!"
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
|
429 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
430 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
431 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:528
|
432 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:574
|
433 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
|
434 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
435 |
-
msgid "Bing"
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
|
439 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
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/log.php:606
|
442 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
443 |
msgid "Map"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
447 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
448 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
449 |
msgid "Page"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
453 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
454 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
455 |
msgid "From"
|
@@ -461,8 +423,14 @@ msgstr ""
|
|
461 |
msgid "Recent Visitors"
|
462 |
msgstr ""
|
463 |
|
|
|
|
|
|
|
|
|
|
|
|
|
464 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
465 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
466 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
467 |
msgid "Country"
|
468 |
msgstr ""
|
@@ -472,12 +440,12 @@ msgid "Summary Statistics"
|
|
472 |
msgstr ""
|
473 |
|
474 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:35
|
475 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
476 |
msgid "Today"
|
477 |
msgstr ""
|
478 |
|
479 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:41
|
480 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
481 |
msgid "Yesterday"
|
482 |
msgstr ""
|
483 |
|
@@ -494,121 +462,137 @@ msgid "Year"
|
|
494 |
msgstr ""
|
495 |
|
496 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
|
497 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
498 |
msgid "Total"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
502 |
-
|
503 |
-
msgid ""
|
504 |
-
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
516 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
518 |
msgid "(See more)"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
522 |
msgid "Graph of Browsers"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
526 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
|
527 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:28
|
528 |
msgid "Top referring sites"
|
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-referring.php:88
|
533 |
msgid "Reference"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
537 |
msgid "Address"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
541 |
msgid "Top 10 Countries"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
545 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
546 |
msgid "Rank"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
550 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
551 |
msgid "Flag"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
555 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
556 |
msgid "Visitor Count"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
560 |
msgid "About plugin"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
564 |
#, php-format
|
565 |
msgid "Plugin version: %s"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
569 |
msgid "Translations"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
573 |
msgid "Support"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
577 |
msgid "Farsi"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
581 |
msgid "Facebook"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
585 |
msgid "Weblog"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
589 |
msgid ""
|
590 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
591 |
"world!"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
595 |
msgid "Donate"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
599 |
msgid "Hits chart in the last 20 days"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
603 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
604 |
msgid "Search Engine Referrers Statistical Chart"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
608 |
msgid "Referrer search engine chart in the last 20 days"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
612 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
613 |
msgid "Number of referrer"
|
614 |
msgstr ""
|
@@ -667,373 +651,404 @@ msgstr ""
|
|
667 |
msgid "Are you sure?"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
671 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
|
|
|
|
672 |
msgid "Resources"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
676 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
677 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
678 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
679 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
680 |
msgstr ""
|
681 |
|
682 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:111
|
|
|
683 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:104
|
|
|
|
|
|
|
|
|
|
|
|
|
684 |
msgid "Byte"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
688 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
689 |
#, php-format
|
690 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
694 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
695 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
696 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
697 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
698 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
699 |
msgid "Row"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
703 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
704 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
705 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
706 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
707 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
708 |
msgid "Number of rows"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
712 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
713 |
#, php-format
|
714 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
718 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
719 |
#, php-format
|
720 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
724 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
725 |
-
msgid "Version Info"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:155
|
729 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:148
|
730 |
msgid "WP Statistics Version"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
734 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
735 |
msgid "The WP Statistics version you are running."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
739 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
740 |
msgid "PHP Version"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
744 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
745 |
msgid "The PHP version you are running."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
749 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
750 |
msgid "jQuery Version"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
754 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
755 |
msgid "The jQuery version you are running."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
759 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
760 |
-
msgid "Client Info"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:192
|
764 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:185
|
765 |
msgid "Client IP"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
769 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
770 |
msgid "The client IP address."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
774 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
775 |
msgid "User Agent"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
779 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
780 |
msgid "The client user agent string."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
784 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
785 |
-
msgid "Export"
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:218
|
789 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:211
|
790 |
msgid "Export from"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
794 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
796 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
797 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
798 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
800 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
801 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
803 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
805 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
806 |
msgid "Please select."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
810 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
811 |
msgid "Select the table for the output file."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
815 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
816 |
msgid "Export To"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
820 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
821 |
msgid "Select the output file type."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
825 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
826 |
msgid "Start Now!"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
830 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
831 |
-
msgid "Empty"
|
832 |
-
msgstr ""
|
833 |
-
|
834 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:256
|
835 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:249
|
836 |
msgid "Empty Table"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
840 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
841 |
msgid "All data table will be lost."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
845 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
846 |
msgid "Clear now!"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
850 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
851 |
-
msgid "Delete User Agent Types"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:279
|
855 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:272
|
856 |
msgid "Delete Agents"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
860 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
861 |
msgid "All visitor data will be lost for this agent type."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
865 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
866 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
868 |
msgid "Delete now!"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
872 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
873 |
msgid "Delete Platforms"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
877 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
878 |
msgid "All visitor data will be lost for this platform type."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
882 |
-
msgid "GeoIP Options"
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:336
|
886 |
msgid "Update Now!"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
890 |
msgid "Get updates for the location and the countries, this may take a while"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
894 |
msgid "General Settings"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
898 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
903 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
904 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
905 |
msgid "Active"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
909 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
910 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
911 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
912 |
msgid "Enable or disable this feature"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
916 |
msgid "Visits"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
920 |
msgid "Store entire user agent string"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
924 |
msgid "Only enabled for debugging"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
928 |
msgid "Check for online users every"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
932 |
msgid "Second"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
936 |
#, php-format
|
937 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
941 |
msgid "Show stats in menu bar"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
945 |
msgid "No"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
949 |
msgid "Yes"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
953 |
msgid "Show stats in admin menu bar"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
957 |
msgid "Coefficient per visitor"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
961 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
962 |
#, php-format
|
963 |
msgid "Exclude %s role from data collection."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
967 |
-
msgid "Admin Levels"
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:106
|
971 |
#, php-format
|
972 |
msgid ""
|
973 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
974 |
"levels."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
978 |
msgid ""
|
979 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
980 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
981 |
"Contributor, read = Everyone."
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
985 |
msgid ""
|
986 |
"Each of the above casscades the rights upwards in the default WordPress "
|
987 |
"configuration. So for example selecting publish_posts grants the right to "
|
988 |
"Authors, Editors, Admins and Super Admins."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
992 |
#, php-format
|
993 |
msgid ""
|
994 |
"If you need a more robust solution to delegate access you might want to look "
|
995 |
"at %s in the WordPress plugin directory."
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
999 |
msgid "Required user level to view WP Statistics"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1003 |
msgid "Required user level to manage WP Statistics"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1007 |
-
msgid "Exclude User Roles"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
1011 |
msgid "Exclude"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1015 |
-
msgid "IP/Robot Exclusions"
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:182
|
1019 |
msgid "Robot List"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1023 |
msgid ""
|
1024 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1025 |
"must be at least 4 characters long or they will be ignored."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1029 |
msgid "Reset to Default"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1033 |
msgid "Excluded IP Address List"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1037 |
msgid ""
|
1038 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1039 |
"from statistics collection (both 192.168.0.0/24 and "
|
@@ -1041,172 +1056,171 @@ msgid ""
|
|
1041 |
"only, do not add any subnet value."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1045 |
msgid "Add 10.0.0.0"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1049 |
msgid "Add 172.16.0.0"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1053 |
msgid "Add 192.168.0.0"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1057 |
-
msgid "Charts"
|
1058 |
-
msgstr ""
|
1059 |
-
|
1060 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:216
|
1061 |
msgid "Chart type"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1065 |
msgid "Line"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1069 |
msgid "Spline"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1073 |
msgid "Area"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1077 |
msgid "Area Spline"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1081 |
msgid "Column"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1085 |
msgid "Bar"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1089 |
msgid "Scatter"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1093 |
msgid "Chart type in view stats."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1097 |
-
msgid "Statistical reporting settings"
|
1098 |
-
msgstr ""
|
1099 |
-
|
1100 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:253
|
1101 |
msgid "Time send"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1105 |
msgid "Hourly"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1109 |
msgid "Twice daily"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1113 |
msgid "daily"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1117 |
msgid "Select when receiving statistics report."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1121 |
msgid "Send Statistical reporting to"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1125 |
msgid "Email"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1129 |
msgid "SMS"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1133 |
msgid "Type Select Get Status Report."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1137 |
#, php-format
|
1138 |
msgid ""
|
1139 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1140 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1144 |
msgid "Send Content Report"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1148 |
msgid "Enter the contents of the reports received."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1152 |
msgid "Input data:"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1156 |
msgid "GeoIP settings"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1160 |
msgid "GeoIP collection"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1164 |
msgid ""
|
1165 |
"For get more information and location (country) from visitor, enable this "
|
1166 |
"feature."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1170 |
-
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1171 |
-
msgstr ""
|
1172 |
-
|
1173 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:331
|
1174 |
msgid "Update GeoIP Info"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1178 |
msgid "Download GeoIP Database"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1182 |
msgid "Save changes on this page to download the update."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1186 |
msgid "Schedule monthly update of GeoIP DB"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
1190 |
msgid ""
|
1191 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1192 |
"Tuesday of the month."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1196 |
msgid ""
|
1197 |
"This option will also download the database if the local filesize is less "
|
1198 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1199 |
"place)."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1203 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1207 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1208 |
msgstr ""
|
1209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1210 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1211 |
msgid "Name"
|
1212 |
msgstr ""
|
@@ -1219,14 +1233,14 @@ msgstr ""
|
|
1219 |
msgid "Select type of search engine"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
1223 |
msgid "Type date for last update"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
1227 |
msgid "English"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
1231 |
msgid "Persian"
|
1232 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-01-18 19:55+0330\n"
|
6 |
+
"PO-Revision-Date: 2014-01-18 19:55+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:75
|
21 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:242
|
22 |
msgid "Statistical reporting"
|
23 |
msgstr ""
|
24 |
|
25 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
27 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:108
|
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:140
|
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:23
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:298
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
42 |
msgstr ""
|
43 |
|
44 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
45 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:300
|
46 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
47 |
msgid "Today Visit"
|
48 |
msgstr ""
|
49 |
|
50 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
51 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:299
|
52 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
53 |
msgid "Today Visitor"
|
54 |
msgstr ""
|
55 |
|
56 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
57 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:302
|
58 |
msgid "Yesterday Visit"
|
59 |
msgstr ""
|
60 |
|
61 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
62 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:301
|
63 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
64 |
msgid "Yesterday Visitor"
|
65 |
msgstr ""
|
80 |
msgstr ""
|
81 |
|
82 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
83 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:304
|
84 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
85 |
msgid "Total Visit"
|
86 |
msgstr ""
|
87 |
|
88 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
89 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:303
|
90 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
91 |
msgid "Total Visitor"
|
92 |
msgstr ""
|
93 |
|
94 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
|
|
95 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
96 |
msgid "Search Engine reffered"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
|
100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:59
|
101 |
msgid "Total Posts"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
|
105 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:62
|
106 |
msgid "Total Pages"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
|
110 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:65
|
111 |
msgid "Total Comments"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
|
115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:68
|
116 |
msgid "Total Spams"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
|
120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:71
|
121 |
msgid "Total Users"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
|
125 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:74
|
126 |
msgid "Average Posts"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
|
130 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:77
|
131 |
msgid "Average Comments"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
|
135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:80
|
136 |
msgid "Average Users"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
|
140 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:83
|
141 |
msgid "Last Post Date"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:22
|
145 |
msgid "Wordpress Statistics"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:23
|
149 |
msgid "Complete statistics for your blog."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:48
|
153 |
#, php-format
|
154 |
msgid ""
|
155 |
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
156 |
"\">setting page</a> and enable statistics"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
160 |
msgid "Overview"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:111
|
164 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
165 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
166 |
msgid "Browsers"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:113
|
170 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:336
|
171 |
msgid "Countries"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
175 |
msgid "Hits"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:116
|
179 |
msgid "Referers"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:117
|
183 |
msgid "Searches"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
|
187 |
msgid "Search Words"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:119
|
191 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:47
|
192 |
msgid "Visitors"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:121
|
196 |
msgid "Optimization"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
|
200 |
msgid "Settings"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
|
204 |
msgid "Today visitor"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:150
|
208 |
msgid "Today visit"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
|
212 |
msgid "Yesterday visitor"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:160
|
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:165
|
221 |
msgid "View Stats"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:257
|
225 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
226 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:424
|
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:267
|
231 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
|
235 |
#, php-format
|
236 |
msgid "Error downloading GeoIP database from: %s"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:386
|
240 |
#, php-format
|
241 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
|
245 |
#, php-format
|
246 |
msgid "Error could not open destination GeoIP database for writing %s"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:405
|
250 |
msgid "GeoIP Database updated successfully!"
|
251 |
msgstr ""
|
252 |
|
263 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:120
|
264 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:265
|
265 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
266 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:44
|
267 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:35
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
269 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:129
|
270 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:229
|
271 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:274
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:319
|
273 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
|
274 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:459
|
275 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:551
|
276 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
|
277 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
278 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
284 |
msgstr ""
|
285 |
|
286 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:90
|
287 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:205
|
288 |
msgid "Browser share"
|
289 |
msgstr ""
|
290 |
|
354 |
msgstr ""
|
355 |
|
356 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
357 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
|
358 |
msgid "Hits Statistical Chart"
|
359 |
msgstr ""
|
360 |
|
368 |
msgstr ""
|
369 |
|
370 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
371 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:404
|
372 |
msgid "Number of visits and visitors"
|
373 |
msgstr ""
|
374 |
|
375 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
376 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
377 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:430
|
378 |
msgid "Visitor"
|
379 |
msgstr ""
|
380 |
|
381 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
382 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
383 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:440
|
384 |
msgid "Visit"
|
385 |
msgstr ""
|
386 |
|
392 |
msgstr ""
|
393 |
|
394 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
395 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:45
|
396 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:553
|
397 |
msgid "Latest search words"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
402 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:573
|
403 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:606
|
404 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
405 |
msgid "Map"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:100
|
409 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
410 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
411 |
msgid "Page"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:100
|
415 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
416 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
417 |
msgid "From"
|
423 |
msgid "Recent Visitors"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
427 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
428 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:55
|
429 |
+
msgid "All"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
433 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:284
|
434 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
435 |
msgid "Country"
|
436 |
msgstr ""
|
440 |
msgstr ""
|
441 |
|
442 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:35
|
443 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:80
|
444 |
msgid "Today"
|
445 |
msgstr ""
|
446 |
|
447 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:41
|
448 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
449 |
msgid "Yesterday"
|
450 |
msgstr ""
|
451 |
|
462 |
msgstr ""
|
463 |
|
464 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
|
465 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
|
466 |
msgid "Total"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
|
470 |
+
msgid "Search Engine Refferals"
|
|
|
|
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:99
|
474 |
+
msgid "Daily Total"
|
475 |
msgstr ""
|
476 |
|
477 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
478 |
+
msgid "Current Time and Date"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
482 |
+
msgid "(Adjustment)"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
486 |
+
#, php-format
|
487 |
+
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:121
|
491 |
+
#, php-format
|
492 |
+
msgid "Time: <code dir=\"ltr\">%s</code>"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
496 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
|
497 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:276
|
498 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
|
499 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:460
|
500 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:553
|
501 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
502 |
msgid "(See more)"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:161
|
506 |
msgid "Graph of Browsers"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
|
510 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
|
511 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:28
|
512 |
msgid "Top referring sites"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:237
|
516 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
517 |
msgid "Reference"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:238
|
521 |
msgid "Address"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:276
|
525 |
msgid "Top 10 Countries"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:282
|
529 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
530 |
msgid "Rank"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:283
|
534 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
535 |
msgid "Flag"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:285
|
539 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
540 |
msgid "Visitor Count"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:320
|
544 |
msgid "About plugin"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:323
|
548 |
#, php-format
|
549 |
msgid "Plugin version: %s"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
|
553 |
msgid "Translations"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:325
|
557 |
msgid "Support"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:325
|
561 |
msgid "Farsi"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:326
|
565 |
msgid "Facebook"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:327
|
569 |
msgid "Weblog"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
|
573 |
msgid ""
|
574 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
575 |
"world!"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
|
579 |
msgid "Donate"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:381
|
583 |
msgid "Hits 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:460
|
587 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
588 |
msgid "Search Engine Referrers Statistical Chart"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:476
|
592 |
msgid "Referrer search engine chart in the last 20 days"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
|
596 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
597 |
msgid "Number of referrer"
|
598 |
msgstr ""
|
651 |
msgid "Are you sure?"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
655 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:106
|
656 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
657 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:99
|
658 |
msgid "Resources"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
662 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:154
|
663 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
664 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:147
|
665 |
+
msgid "Version Info"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
669 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:191
|
670 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
671 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:184
|
672 |
+
msgid "Client Info"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
676 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:217
|
677 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:210
|
679 |
+
msgid "Export"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
683 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:255
|
684 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
685 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:248
|
686 |
+
msgid "Empty"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
690 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:278
|
691 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
692 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:271
|
693 |
+
msgid "Delete User Agent Types"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
697 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:331
|
698 |
+
msgid "GeoIP Options"
|
699 |
msgstr ""
|
700 |
|
701 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:111
|
702 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:116
|
703 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:104
|
704 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:109
|
705 |
+
msgid "Memory usage in PHP"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:115
|
709 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:108
|
710 |
msgid "Byte"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:122
|
714 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:115
|
715 |
#, php-format
|
716 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
720 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:137
|
721 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:148
|
722 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:119
|
723 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:130
|
724 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:141
|
725 |
msgid "Row"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:127
|
729 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:138
|
730 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:149
|
731 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:120
|
732 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:131
|
733 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:142
|
734 |
msgid "Number of rows"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:133
|
738 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:126
|
739 |
#, php-format
|
740 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:144
|
744 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:137
|
745 |
#, php-format
|
746 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:159
|
750 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:152
|
|
|
|
|
|
|
|
|
|
|
751 |
msgid "WP Statistics Version"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:164
|
755 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:157
|
756 |
msgid "The WP Statistics version you are running."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:170
|
760 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:163
|
761 |
msgid "PHP Version"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:175
|
765 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:168
|
766 |
msgid "The PHP version you are running."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:181
|
770 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:174
|
771 |
msgid "jQuery Version"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:186
|
775 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:179
|
776 |
msgid "The jQuery version you are running."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:196
|
780 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:189
|
|
|
|
|
|
|
|
|
|
|
781 |
msgid "Client IP"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:201
|
785 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:194
|
786 |
msgid "The client IP address."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:207
|
790 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:200
|
791 |
msgid "User Agent"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:212
|
795 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:205
|
796 |
msgid "The client user agent string."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:222
|
800 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:215
|
|
|
|
|
|
|
|
|
|
|
801 |
msgid "Export from"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:227
|
805 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:243
|
806 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:265
|
807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:288
|
808 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:312
|
809 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:220
|
810 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:236
|
811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:258
|
812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:281
|
813 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:305
|
814 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
816 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
817 |
msgid "Please select."
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:232
|
821 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:225
|
822 |
msgid "Select the table for the output file."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:238
|
826 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:231
|
827 |
msgid "Export To"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:249
|
831 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:242
|
832 |
msgid "Select the output file type."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:250
|
836 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:243
|
837 |
msgid "Start Now!"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:260
|
841 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:253
|
|
|
|
|
|
|
|
|
|
|
842 |
msgid "Empty Table"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:270
|
846 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:263
|
847 |
msgid "All data table will be lost."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:271
|
851 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:264
|
852 |
msgid "Clear now!"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:283
|
856 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:276
|
|
|
|
|
|
|
|
|
|
|
857 |
msgid "Delete Agents"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:298
|
861 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:291
|
862 |
msgid "All visitor data will be lost for this agent type."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:299
|
866 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:323
|
867 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:292
|
868 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:316
|
869 |
msgid "Delete now!"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:307
|
873 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:300
|
874 |
msgid "Delete Platforms"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:322
|
878 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:315
|
879 |
msgid "All visitor data will be lost for this platform type."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:340
|
|
|
|
|
|
|
|
|
883 |
msgid "Update Now!"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:341
|
887 |
msgid "Get updates for the location and the countries, this may take a while"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
891 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:18
|
892 |
msgid "General Settings"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
896 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
|
897 |
+
msgid "Admin Levels"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
901 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
|
902 |
+
msgid "Exclude User Roles"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
906 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:181
|
907 |
+
msgid "IP/Robot Exclusions"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
911 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:213
|
912 |
+
msgid "Charts"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
916 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:237
|
917 |
+
msgid "Statistical reporting settings"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
921 |
+
msgid "GeoIP"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:28
|
925 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:40
|
926 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:52
|
927 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:64
|
928 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:247
|
929 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:326
|
930 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:350
|
931 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:384
|
932 |
msgid "Active"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:29
|
936 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:41
|
937 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:53
|
938 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:248
|
939 |
msgid "Enable or disable this feature"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:35
|
943 |
msgid "Visits"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:59
|
947 |
msgid "Store entire user agent string"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:65
|
951 |
msgid "Only enabled for debugging"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:71
|
955 |
msgid "Check for online users every"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
|
959 |
msgid "Second"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:77
|
963 |
#, php-format
|
964 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:83
|
968 |
msgid "Show stats in menu bar"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:88
|
972 |
msgid "No"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:89
|
976 |
msgid "Yes"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
|
980 |
msgid "Show stats in admin menu bar"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
|
984 |
msgid "Coefficient per visitor"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
|
988 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
989 |
#, php-format
|
990 |
msgid "Exclude %s role from data collection."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
|
|
|
|
|
|
|
|
994 |
#, php-format
|
995 |
msgid ""
|
996 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
997 |
"levels."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
1001 |
msgid ""
|
1002 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
1003 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1004 |
"Contributor, read = Everyone."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
|
1008 |
msgid ""
|
1009 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1010 |
"configuration. So for example selecting publish_posts grants the right to "
|
1011 |
"Authors, Editors, Admins and Super Admins."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
|
1015 |
#, php-format
|
1016 |
msgid ""
|
1017 |
"If you need a more robust solution to delegate access you might want to look "
|
1018 |
"at %s in the WordPress plugin directory."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:142
|
1022 |
msgid "Required user level to view WP Statistics"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:157
|
1026 |
msgid "Required user level to manage WP Statistics"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
|
|
|
|
|
|
|
|
|
1030 |
msgid "Exclude"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:185
|
|
|
|
|
|
|
|
|
1034 |
msgid "Robot List"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:197
|
1038 |
msgid ""
|
1039 |
"A list of words (one per line) to match against to detect robots. Entries "
|
1040 |
"must be at least 4 characters long or they will be ignored."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:198
|
1044 |
msgid "Reset to Default"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:202
|
1048 |
msgid "Excluded IP Address List"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:205
|
1052 |
msgid ""
|
1053 |
"A list of IP addresses and (optional) subnet masks (one per line) to exclude "
|
1054 |
"from statistics collection (both 192.168.0.0/24 and "
|
1056 |
"only, do not add any subnet value."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:206
|
1060 |
msgid "Add 10.0.0.0"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:207
|
1064 |
msgid "Add 172.16.0.0"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:208
|
1068 |
msgid "Add 192.168.0.0"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:218
|
|
|
|
|
|
|
|
|
1072 |
msgid "Chart type"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:224
|
1076 |
msgid "Line"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:225
|
1080 |
msgid "Spline"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:226
|
1084 |
msgid "Area"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:227
|
1088 |
msgid "Area Spline"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:228
|
1092 |
msgid "Column"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:229
|
1096 |
msgid "Bar"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:230
|
1100 |
msgid "Scatter"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:232
|
1104 |
msgid "Chart type in view stats."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
|
|
|
|
|
|
|
|
1108 |
msgid "Time send"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:261
|
1112 |
msgid "Hourly"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:262
|
1116 |
msgid "Twice daily"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:263
|
1120 |
msgid "daily"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:265
|
1124 |
msgid "Select when receiving statistics report."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:271
|
1128 |
msgid "Send Statistical reporting to"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:277
|
1132 |
msgid "Email"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:278
|
1136 |
msgid "SMS"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:280
|
1140 |
msgid "Type Select Get Status Report."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:283
|
1144 |
#, php-format
|
1145 |
msgid ""
|
1146 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
1147 |
"\"_blank\">Wordpress SMS</a> plugin."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:290
|
1151 |
msgid "Send Content Report"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:295
|
1155 |
msgid "Enter the contents of the reports received."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:297
|
1159 |
msgid "Input data:"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:310
|
1163 |
msgid "GeoIP settings"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:321
|
1167 |
msgid "GeoIP collection"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:327
|
1171 |
msgid ""
|
1172 |
"For get more information and location (country) from visitor, enable this "
|
1173 |
"feature."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:333
|
|
|
|
|
|
|
|
|
1177 |
msgid "Update GeoIP Info"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:338
|
1181 |
msgid "Download GeoIP Database"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:339
|
1185 |
msgid "Save changes on this page to download the update."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:345
|
1189 |
msgid "Schedule monthly update of GeoIP DB"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:353
|
1193 |
+
msgid "Next update will be"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:372
|
1197 |
msgid ""
|
1198 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1199 |
"Tuesday of the month."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:373
|
1203 |
msgid ""
|
1204 |
"This option will also download the database if the local filesize is less "
|
1205 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1206 |
"place)."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:379
|
1210 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:385
|
1214 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:393
|
1218 |
+
#, php-format
|
1219 |
+
msgid ""
|
1220 |
+
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1221 |
+
"the installed PHP version being "
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1225 |
msgid "Name"
|
1226 |
msgstr ""
|
1233 |
msgid "Select type of search engine"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
|
1237 |
msgid "Type date for last update"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:88
|
1241 |
msgid "English"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:91
|
1245 |
msgid "Persian"
|
1246 |
msgstr ""
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -1,19 +1,20 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
-
"Language-Team:
|
9 |
-
"Language: fa_IR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
|
15 |
"\\plugins\\wp-statistics\n"
|
16 |
-
"X-Generator: Poedit 1.5.5\n"
|
17 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
18 |
"content\\plugins\\wp-statistics\n"
|
19 |
|
@@ -24,7 +25,7 @@ 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,9 +34,9 @@ msgid "Show site stats in sidebar"
|
|
33 |
msgstr "نمایش آمار سایت در ابزارک"
|
34 |
|
35 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
36 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
37 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
38 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
39 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:298
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
41 |
msgid "User Online"
|
@@ -92,65 +93,64 @@ msgid "Total Visitor"
|
|
92 |
msgstr "کل بازدیدکنندهگان"
|
93 |
|
94 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
95 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
|
96 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
97 |
msgid "Search Engine reffered"
|
98 |
msgstr "ورودی موتور جستجو"
|
99 |
|
100 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
101 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
102 |
msgid "Total Posts"
|
103 |
msgstr "کل نوشتهها"
|
104 |
|
105 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
106 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
107 |
msgid "Total Pages"
|
108 |
msgstr "کل برگهها"
|
109 |
|
110 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
112 |
msgid "Total Comments"
|
113 |
msgstr "کل دیدگاهها"
|
114 |
|
115 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
116 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
117 |
msgid "Total Spams"
|
118 |
msgstr "کل جفنگها"
|
119 |
|
120 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
121 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
122 |
msgid "Total Users"
|
123 |
msgstr "کل کاربرها"
|
124 |
|
125 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
126 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
127 |
msgid "Average Posts"
|
128 |
msgstr "میانگین نوشتهها"
|
129 |
|
130 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
131 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
132 |
msgid "Average Comments"
|
133 |
msgstr "میانگین دیدگاهها"
|
134 |
|
135 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
136 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
137 |
msgid "Average Users"
|
138 |
msgstr "میانگین کاربرها"
|
139 |
|
140 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:
|
141 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
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,97 +159,97 @@ msgstr ""
|
|
159 |
"امکانات افزونه آمارگیر غیرفعال است! برای فعال کردن آن به <a href=\"%s\">صفحه "
|
160 |
"تنظیمات</a> آمارگیر مراجعه کنید."
|
161 |
|
162 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
168 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
173 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
174 |
msgid "Countries"
|
175 |
msgstr "کشورها"
|
176 |
|
177 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
178 |
msgid "Hits"
|
179 |
msgstr "بازدیدها"
|
180 |
|
181 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
182 |
msgid "Referers"
|
183 |
msgstr "ارجاعدهندهها"
|
184 |
|
185 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
186 |
msgid "Searches"
|
187 |
msgstr "جستجوها"
|
188 |
|
189 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
190 |
msgid "Search Words"
|
191 |
msgstr "کلمات جستجو شده"
|
192 |
|
193 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
194 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
195 |
msgid "Visitors"
|
196 |
msgstr "بازدیدکنندهگان"
|
197 |
|
198 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
199 |
msgid "Optimization"
|
200 |
msgstr "بهینه سازی"
|
201 |
|
202 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
203 |
msgid "Settings"
|
204 |
msgstr "تنظیمات"
|
205 |
|
206 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
207 |
msgid "Today visitor"
|
208 |
msgstr "بازدید کننده امروز"
|
209 |
|
210 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
211 |
msgid "Today visit"
|
212 |
msgstr "بازدید امروز"
|
213 |
|
214 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
215 |
msgid "Yesterday visitor"
|
216 |
msgstr "بازدید کننده دیروز"
|
217 |
|
218 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
219 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
220 |
msgid "Yesterday visit"
|
221 |
msgstr "بازدید دیروز"
|
222 |
|
223 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
224 |
msgid "View Stats"
|
225 |
msgstr "نمایش آمار"
|
226 |
|
227 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
228 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
229 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
230 |
msgid "You do not have sufficient permissions to access this page."
|
231 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
232 |
|
233 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
234 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
235 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
236 |
|
237 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
238 |
#, php-format
|
239 |
msgid "Error downloading GeoIP database from: %s"
|
240 |
msgstr "خطای دریافت پایگاهداده GeoIP از: %s"
|
241 |
|
242 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
243 |
#, php-format
|
244 |
msgid "Error could not open downloaded GeoIP database for reading: %s"
|
245 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای خواندن: %s"
|
246 |
|
247 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
248 |
#, php-format
|
249 |
msgid "Error could not open destination GeoIP database for writing %s"
|
250 |
msgstr "خطای بازشدن در هنگام دریافت پایگاهداده GeoIP برای نوشتن: %s"
|
251 |
|
252 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
253 |
msgid "GeoIP Database updated successfully!"
|
254 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
255 |
|
@@ -266,16 +266,16 @@ msgstr "آمار مرورگرها"
|
|
266 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:120
|
267 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:265
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
269 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
270 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:35
|
271 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
272 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
273 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
274 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
275 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
276 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
277 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
278 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
|
280 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
281 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
@@ -287,7 +287,7 @@ msgid "Browsers by Type"
|
|
287 |
msgstr "نوع مرورگرها"
|
288 |
|
289 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:90
|
290 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
291 |
msgid "Browser share"
|
292 |
msgstr "سهم مرورگر"
|
293 |
|
@@ -357,7 +357,7 @@ msgid "1 Year"
|
|
357 |
msgstr "1 ساله"
|
358 |
|
359 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
360 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
361 |
msgid "Hits Statistical Chart"
|
362 |
msgstr "نمودار آمار بازدیدها"
|
363 |
|
@@ -371,19 +371,19 @@ msgid "days"
|
|
371 |
msgstr "روزه"
|
372 |
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
374 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
375 |
msgid "Number of visits and visitors"
|
376 |
msgstr "تعداد بازدید و بازدید کننده"
|
377 |
|
378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
379 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
380 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
381 |
msgid "Visitor"
|
382 |
msgstr "بازدیدکننده"
|
383 |
|
384 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
385 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
386 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
387 |
msgid "Visit"
|
388 |
msgstr "بازدید"
|
389 |
|
@@ -395,63 +395,26 @@ msgid "To be added soon"
|
|
395 |
msgstr "به زودی اضافه می شود"
|
396 |
|
397 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
398 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
399 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
400 |
msgid "Latest search words"
|
401 |
msgstr "آخرین کلمات جستجو شده"
|
402 |
|
403 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
404 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
405 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
406 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
|
407 |
-
msgid "All"
|
408 |
-
msgstr "همه"
|
409 |
-
|
410 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
411 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
412 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
413 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:508
|
414 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:570
|
415 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:93
|
416 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
417 |
-
msgid "Google"
|
418 |
-
msgstr "گوگل"
|
419 |
-
|
420 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:17
|
421 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
422 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
|
423 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:518
|
424 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:572
|
425 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:103
|
426 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
427 |
-
msgid "Yahoo!"
|
428 |
-
msgstr "یاهو!"
|
429 |
-
|
430 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:18
|
431 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
|
432 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
|
433 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:528
|
434 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:574
|
435 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:113
|
436 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
437 |
-
msgid "Bing"
|
438 |
-
msgstr "بینگ"
|
439 |
-
|
440 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:60
|
441 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
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/log.php:606
|
444 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
445 |
msgid "Map"
|
446 |
msgstr "نقشه"
|
447 |
|
448 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
449 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
451 |
msgid "Page"
|
452 |
msgstr "صفحه"
|
453 |
|
454 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
455 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
456 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
457 |
msgid "From"
|
@@ -463,8 +426,14 @@ msgstr "از"
|
|
463 |
msgid "Recent Visitors"
|
464 |
msgstr "آخرین بازدیدکنندگان"
|
465 |
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
467 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
468 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
469 |
msgid "Country"
|
470 |
msgstr "کشور"
|
@@ -474,12 +443,12 @@ msgid "Summary Statistics"
|
|
474 |
msgstr "خلاصه آمار"
|
475 |
|
476 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:35
|
477 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
478 |
msgid "Today"
|
479 |
msgstr "امروز"
|
480 |
|
481 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:41
|
482 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
483 |
msgid "Yesterday"
|
484 |
msgstr "دیروز"
|
485 |
|
@@ -496,121 +465,137 @@ msgid "Year"
|
|
496 |
msgstr "سال"
|
497 |
|
498 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
|
499 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
500 |
msgid "Total"
|
501 |
msgstr "کل"
|
502 |
|
503 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
504 |
-
|
505 |
-
|
506 |
-
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
507 |
-
msgstr "امروز: <code dir=\"ltr\">%s</code>, ساعت: <code dir=\"ltr\">%s</code>"
|
508 |
|
509 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
msgid "(Adjustment)"
|
511 |
msgstr "(تنظیم)"
|
512 |
|
513 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
520 |
msgid "(See more)"
|
521 |
msgstr "(مشاهده بیشتر)"
|
522 |
|
523 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
524 |
msgid "Graph of Browsers"
|
525 |
msgstr "نمودار سهم مرورگرها"
|
526 |
|
527 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
528 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
|
529 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:28
|
530 |
msgid "Top referring sites"
|
531 |
msgstr "بهترین سایت های ارجاع دهنده"
|
532 |
|
533 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
534 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
535 |
msgid "Reference"
|
536 |
msgstr "ارجاع"
|
537 |
|
538 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
539 |
msgid "Address"
|
540 |
msgstr "آدرس"
|
541 |
|
542 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
543 |
msgid "Top 10 Countries"
|
544 |
msgstr "10 کشور برتر"
|
545 |
|
546 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
547 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
548 |
msgid "Rank"
|
549 |
msgstr "رتبه"
|
550 |
|
551 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
552 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
553 |
msgid "Flag"
|
554 |
msgstr "پرچم"
|
555 |
|
556 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
557 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
558 |
msgid "Visitor Count"
|
559 |
msgstr "تعداد بازدیدکننده"
|
560 |
|
561 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
562 |
msgid "About plugin"
|
563 |
msgstr "درباره افزونه آماره"
|
564 |
|
565 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
566 |
#, php-format
|
567 |
msgid "Plugin version: %s"
|
568 |
msgstr "نگارش افزونه: %s"
|
569 |
|
570 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
571 |
msgid "Translations"
|
572 |
msgstr "ترجمهها"
|
573 |
|
574 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
575 |
msgid "Support"
|
576 |
msgstr "پشتیبانی"
|
577 |
|
578 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
579 |
msgid "Farsi"
|
580 |
msgstr "فارسی"
|
581 |
|
582 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
583 |
msgid "Facebook"
|
584 |
msgstr "فیسبوک"
|
585 |
|
586 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
587 |
msgid "Weblog"
|
588 |
msgstr "وبلاگ"
|
589 |
|
590 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
591 |
msgid ""
|
592 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
593 |
"world!"
|
594 |
msgstr "افزونه آماره را حمایت کنید. با حمایت شما، جهانی خواهیم شد."
|
595 |
|
596 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
597 |
msgid "Donate"
|
598 |
msgstr "حمایت"
|
599 |
|
600 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
601 |
msgid "Hits chart in the last 20 days"
|
602 |
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
603 |
|
604 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
605 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
606 |
msgid "Search Engine Referrers Statistical Chart"
|
607 |
msgstr "نمودار آمار موتورهای جستجو"
|
608 |
|
609 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
610 |
msgid "Referrer search engine chart in the last 20 days"
|
611 |
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
612 |
|
613 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
614 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
615 |
msgid "Number of referrer"
|
616 |
msgstr "تعداد ورودی"
|
@@ -669,315 +654,354 @@ msgstr "دادههای جدول <code>%s</code> با موفقیت حذف شد
|
|
669 |
msgid "Are you sure?"
|
670 |
msgstr "آیا مطمئن هستید؟"
|
671 |
|
672 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
673 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
|
|
|
|
674 |
msgid "Resources"
|
675 |
msgstr "منابع"
|
676 |
|
677 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
678 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
679 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
680 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
681 |
-
msgid "
|
682 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
683 |
|
684 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:111
|
|
|
685 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:104
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
msgid "Byte"
|
687 |
msgstr "بایت"
|
688 |
|
689 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
690 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
691 |
#, php-format
|
692 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
693 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_useronline</code>"
|
694 |
|
695 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
696 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
697 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
698 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
699 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
700 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
701 |
msgid "Row"
|
702 |
msgstr "ردیف"
|
703 |
|
704 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
705 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
706 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
707 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
708 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
709 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
710 |
msgid "Number of rows"
|
711 |
msgstr "تعداد ردیفهای موجود"
|
712 |
|
713 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
714 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
715 |
#, php-format
|
716 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
717 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visit</code>"
|
718 |
|
719 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
720 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
721 |
#, php-format
|
722 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
723 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</code>"
|
724 |
|
725 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
726 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
727 |
-
msgid "Version Info"
|
728 |
-
msgstr "اطلاعات نگارش"
|
729 |
-
|
730 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:155
|
731 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:148
|
732 |
msgid "WP Statistics Version"
|
733 |
msgstr "نگارش افزونه آماره"
|
734 |
|
735 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
736 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
737 |
msgid "The WP Statistics version you are running."
|
738 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
739 |
|
740 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
741 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
742 |
msgid "PHP Version"
|
743 |
msgstr "نگارش PHP"
|
744 |
|
745 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
746 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
747 |
msgid "The PHP version you are running."
|
748 |
msgstr "نگارش PHP در حال اجرای شما."
|
749 |
|
750 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
751 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
752 |
msgid "jQuery Version"
|
753 |
msgstr "نگارش جیکوئری"
|
754 |
|
755 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
756 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
757 |
msgid "The jQuery version you are running."
|
758 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
759 |
|
760 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
761 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
762 |
-
msgid "Client Info"
|
763 |
-
msgstr "اطلاعات کاربر"
|
764 |
-
|
765 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:192
|
766 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:185
|
767 |
msgid "Client IP"
|
768 |
msgstr "آیپی کاربر"
|
769 |
|
770 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
771 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
772 |
msgid "The client IP address."
|
773 |
msgstr "آدرس آیپی کاربر."
|
774 |
|
775 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
776 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
777 |
msgid "User Agent"
|
778 |
msgstr "عامل کاربر"
|
779 |
|
780 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
781 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
782 |
msgid "The client user agent string."
|
783 |
msgstr "رشتهی عامل کاربری"
|
784 |
|
785 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
786 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
787 |
-
msgid "Export"
|
788 |
-
msgstr "برونبری"
|
789 |
-
|
790 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:218
|
791 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:211
|
792 |
msgid "Export from"
|
793 |
msgstr "برونبری از"
|
794 |
|
795 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
796 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
797 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
798 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
799 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
800 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
801 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
802 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
803 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
804 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
805 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
806 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
807 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
808 |
msgid "Please select."
|
809 |
msgstr "لطفا انتخاب کنید."
|
810 |
|
811 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
812 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
813 |
msgid "Select the table for the output file."
|
814 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
815 |
|
816 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
817 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
818 |
msgid "Export To"
|
819 |
msgstr "برونبری به"
|
820 |
|
821 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
822 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
823 |
msgid "Select the output file type."
|
824 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
825 |
|
826 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
827 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
828 |
msgid "Start Now!"
|
829 |
msgstr "شروع کن!"
|
830 |
|
831 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
832 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
833 |
-
msgid "Empty"
|
834 |
-
msgstr "خالی کردن"
|
835 |
-
|
836 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:256
|
837 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:249
|
838 |
msgid "Empty Table"
|
839 |
msgstr "خالی کردن جدول"
|
840 |
|
841 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
842 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
843 |
msgid "All data table will be lost."
|
844 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
845 |
|
846 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
847 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
848 |
msgid "Clear now!"
|
849 |
msgstr "پاک کن!"
|
850 |
|
851 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
852 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
853 |
-
msgid "Delete User Agent Types"
|
854 |
-
msgstr "حذف نوع سیستم عامل کاربر"
|
855 |
-
|
856 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:279
|
857 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:272
|
858 |
msgid "Delete Agents"
|
859 |
msgstr "حذف سیستم عاملها"
|
860 |
|
861 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
862 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
863 |
msgid "All visitor data will be lost for this agent type."
|
864 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
865 |
|
866 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
867 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
868 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
869 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
870 |
msgid "Delete now!"
|
871 |
msgstr "پاک کن!"
|
872 |
|
873 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
874 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
875 |
msgid "Delete Platforms"
|
876 |
msgstr "حذف سَکوها"
|
877 |
|
878 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
879 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:
|
880 |
msgid "All visitor data will be lost for this platform type."
|
881 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
882 |
|
883 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
884 |
-
msgid "GeoIP Options"
|
885 |
-
msgstr "تنظیمات GeoIP"
|
886 |
-
|
887 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:336
|
888 |
msgid "Update Now!"
|
889 |
msgstr "بهروز رسانی کن!"
|
890 |
|
891 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:
|
892 |
msgid "Get updates for the location and the countries, this may take a while"
|
893 |
msgstr ""
|
894 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
895 |
|
896 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
897 |
msgid "General Settings"
|
898 |
msgstr "تنظیمات عمومی"
|
899 |
|
900 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
901 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
902 |
-
|
903 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:247
|
905 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
906 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:350
|
907 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
908 |
msgid "Active"
|
909 |
msgstr "فعال"
|
910 |
|
911 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
912 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
913 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
914 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:248
|
915 |
msgid "Enable or disable this feature"
|
916 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
917 |
|
918 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
919 |
msgid "Visits"
|
920 |
msgstr "بازدیدها"
|
921 |
|
922 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
923 |
msgid "Store entire user agent string"
|
924 |
msgstr "ذخیره تمامی مرورگرهای کاربر"
|
925 |
|
926 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
927 |
msgid "Only enabled for debugging"
|
928 |
msgstr "فعال فقط برای اشکال زدایی"
|
929 |
|
930 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
931 |
msgid "Check for online users every"
|
932 |
msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
|
933 |
|
934 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
935 |
msgid "Second"
|
936 |
msgstr "ثانیه"
|
937 |
|
938 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
939 |
#, php-format
|
940 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
941 |
msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. فعلا %s ثانیه است"
|
942 |
|
943 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
944 |
msgid "Show stats in menu bar"
|
945 |
msgstr "نمایش آمار در منوبار"
|
946 |
|
947 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
948 |
msgid "No"
|
949 |
msgstr "خیر"
|
950 |
|
951 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
952 |
msgid "Yes"
|
953 |
msgstr "بله"
|
954 |
|
955 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
956 |
msgid "Show stats in admin menu bar"
|
957 |
msgstr "نمایش آمار در منوبار مدیریت"
|
958 |
|
959 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
960 |
msgid "Coefficient per visitor"
|
961 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
962 |
|
963 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
964 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
965 |
#, php-format
|
966 |
msgid "Exclude %s role from data collection."
|
967 |
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
968 |
|
969 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
970 |
-
msgid "Admin Levels"
|
971 |
-
msgstr "سطح مدیریت"
|
972 |
-
|
973 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:106
|
974 |
#, php-format
|
975 |
msgid ""
|
976 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
977 |
"levels."
|
978 |
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
979 |
|
980 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
981 |
msgid ""
|
982 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
983 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
@@ -986,7 +1010,7 @@ msgstr ""
|
|
986 |
"نکته: manage_network = سوپر مدیر، manage_options = مدیر، edit_others_posts = "
|
987 |
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
988 |
|
989 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
990 |
msgid ""
|
991 |
"Each of the above casscades the rights upwards in the default WordPress "
|
992 |
"configuration. So for example selecting publish_posts grants the right to "
|
@@ -995,7 +1019,7 @@ msgstr ""
|
|
995 |
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
996 |
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
997 |
|
998 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
999 |
#, php-format
|
1000 |
msgid ""
|
1001 |
"If you need a more robust solution to delegate access you might want to look "
|
@@ -1004,27 +1028,19 @@ msgstr ""
|
|
1004 |
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1005 |
"به افزونه %s بیندازید."
|
1006 |
|
1007 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1008 |
msgid "Required user level to view WP Statistics"
|
1009 |
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
1010 |
|
1011 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1012 |
msgid "Required user level to manage WP Statistics"
|
1013 |
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
1014 |
|
1015 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1016 |
-
msgid "Exclude User Roles"
|
1017 |
-
msgstr "محرومکردن نقشهای کاربری"
|
1018 |
-
|
1019 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
1020 |
msgid "Exclude"
|
1021 |
msgstr "محروم"
|
1022 |
|
1023 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1024 |
-
msgid "IP/Robot Exclusions"
|
1025 |
-
msgstr "محرومیتهای آیپی/ربات"
|
1026 |
-
|
1027 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:182
|
1028 |
msgid "Robot List"
|
1029 |
msgstr "لیست روباتها"
|
1030 |
|
@@ -1068,10 +1084,6 @@ msgstr "افزودن 172.16.0.0"
|
|
1068 |
msgid "Add 192.168.0.0"
|
1069 |
msgstr "افزودن 192.168.0.0"
|
1070 |
|
1071 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:213
|
1072 |
-
msgid "Charts"
|
1073 |
-
msgstr "نمودار"
|
1074 |
-
|
1075 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:218
|
1076 |
msgid "Chart type"
|
1077 |
msgstr "نوع نمودار"
|
@@ -1108,10 +1120,6 @@ msgstr "پراکنده"
|
|
1108 |
msgid "Chart type in view stats."
|
1109 |
msgstr "نوع نمودار در نمایش آمار."
|
1110 |
|
1111 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:237
|
1112 |
-
msgid "Statistical reporting settings"
|
1113 |
-
msgstr "تنظیمات گزارش آماری"
|
1114 |
-
|
1115 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
1116 |
msgid "Time send"
|
1117 |
msgstr "زمان ارسال"
|
@@ -1173,11 +1181,11 @@ msgstr "دادههای ورودی:"
|
|
1173 |
msgid "GeoIP settings"
|
1174 |
msgstr "تنظیمات GeoIP"
|
1175 |
|
1176 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1177 |
msgid "GeoIP collection"
|
1178 |
msgstr "مجموعه GeoIP"
|
1179 |
|
1180 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1181 |
msgid ""
|
1182 |
"For get more information and location (country) from visitor, enable this "
|
1183 |
"feature."
|
@@ -1185,10 +1193,6 @@ msgstr ""
|
|
1185 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1186 |
"کنید."
|
1187 |
|
1188 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:327
|
1189 |
-
msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1190 |
-
msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
1191 |
-
|
1192 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:333
|
1193 |
msgid "Update GeoIP Info"
|
1194 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
@@ -1205,13 +1209,17 @@ msgstr "ذخیرهی تغییرات در این برگه و دریافت به
|
|
1205 |
msgid "Schedule monthly update of GeoIP DB"
|
1206 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1207 |
|
1208 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
|
|
|
|
|
|
1209 |
msgid ""
|
1210 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1211 |
"Tuesday of the month."
|
1212 |
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1213 |
|
1214 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1215 |
msgid ""
|
1216 |
"This option will also download the database if the local filesize is less "
|
1217 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
@@ -1220,15 +1228,24 @@ msgstr ""
|
|
1220 |
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1221 |
"دادههای همراه افزونه است)."
|
1222 |
|
1223 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1224 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1225 |
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1226 |
|
1227 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
1228 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1229 |
msgstr ""
|
1230 |
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1232 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1233 |
msgid "Name"
|
1234 |
msgstr "نام"
|
@@ -1241,450 +1258,26 @@ msgstr "آیتمها"
|
|
1241 |
msgid "Select type of search engine"
|
1242 |
msgstr "انتخاب نوع موتورجستجو"
|
1243 |
|
1244 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
1245 |
msgid "Type date for last update"
|
1246 |
msgstr "نوع تقویم برای آخرین بهروزرسانی"
|
1247 |
|
1248 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
1249 |
msgid "English"
|
1250 |
msgstr "میلادی"
|
1251 |
|
1252 |
-
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:
|
1253 |
msgid "Persian"
|
1254 |
msgstr "شمسی (فارسی)"
|
1255 |
|
1256 |
-
#~ msgid "
|
1257 |
-
#~ msgstr "
|
1258 |
-
|
1259 |
-
#~ msgid "For each visit to account for several hits. Currently %s."
|
1260 |
-
#~ msgstr "تعداد محاسبه برای هربازدید. درحال حاضر %s است."
|
1261 |
-
|
1262 |
-
#~ msgid "Populate Location"
|
1263 |
-
#~ msgstr "محل جمعیت"
|
1264 |
-
|
1265 |
-
#~ msgid "Populate now!"
|
1266 |
-
#~ msgstr "جمعیت در حال حاضر!"
|
1267 |
-
|
1268 |
-
#~ msgid "Chart Settings"
|
1269 |
-
#~ msgstr "تنظیمات نمودار"
|
1270 |
-
|
1271 |
-
#~ msgid "<code>"
|
1272 |
-
#~ msgstr "<code>"
|
1273 |
-
|
1274 |
-
#~ msgid "Disable"
|
1275 |
-
#~ msgstr "غیرفعال"
|
1276 |
-
|
1277 |
-
#~ msgid "Firefox"
|
1278 |
-
#~ msgstr "فایرفاکس"
|
1279 |
-
|
1280 |
-
#~ msgid "IE"
|
1281 |
-
#~ msgstr "اینترنت اکسپلورر"
|
1282 |
-
|
1283 |
-
#~ msgid "Ipad"
|
1284 |
-
#~ msgstr "آیپَد"
|
1285 |
-
|
1286 |
-
#~ msgid "Android"
|
1287 |
-
#~ msgstr "اندروید"
|
1288 |
-
|
1289 |
-
#~ msgid "Chrome"
|
1290 |
-
#~ msgstr "کروم"
|
1291 |
-
|
1292 |
-
#~ msgid "Safari"
|
1293 |
-
#~ msgstr "سافاری"
|
1294 |
-
|
1295 |
-
#~ msgid "Opera"
|
1296 |
-
#~ msgstr "اوپِرا"
|
1297 |
-
|
1298 |
-
#~ msgid "Other"
|
1299 |
-
#~ msgstr "بقیه"
|
1300 |
-
|
1301 |
-
#~ msgid ""
|
1302 |
-
#~ "Please donate to the plugin. With the help of plug-ins you can quickly "
|
1303 |
-
#~ "spread."
|
1304 |
-
#~ msgstr ""
|
1305 |
-
#~ "کمک مالی خود را به افزونه اعلام کنید. با کمک های شما پلاگین می تواند "
|
1306 |
-
#~ "سریعتر گسترش یابد."
|
1307 |
-
|
1308 |
-
#~ msgid "Empty Now!"
|
1309 |
-
#~ msgstr "پاک کن!"
|
1310 |
-
|
1311 |
-
#~ msgid "Export Settings"
|
1312 |
-
#~ msgstr "تنظیمات برونبری"
|
1313 |
-
|
1314 |
-
#~ msgid "Backup Settings"
|
1315 |
-
#~ msgstr "تنظیمات نسخه پشتیبان"
|
1316 |
-
|
1317 |
-
#~ msgid "Pie"
|
1318 |
-
#~ msgstr "ترکیبی"
|
1319 |
-
|
1320 |
-
#~ msgid "area"
|
1321 |
-
#~ msgstr "مسطح"
|
1322 |
-
|
1323 |
-
#~ msgid "Display IP Information On-screen statistics"
|
1324 |
-
#~ msgstr "نمایش اطلاعات آی پی در صفحه نمایش آمار"
|
1325 |
-
|
1326 |
-
#~ msgid ""
|
1327 |
-
#~ "Showing the flag country and Visitor province name (May be a bit slow)"
|
1328 |
-
#~ msgstr "نمایش پرچم کشور و نام استان بازدید کننده (ممکن است کمی سرعت بگیرد)"
|
1329 |
-
|
1330 |
-
#~ msgid "IP"
|
1331 |
-
#~ msgstr "آیپی"
|
1332 |
-
|
1333 |
-
#~ msgid "Province"
|
1334 |
-
#~ msgstr "استان"
|
1335 |
-
|
1336 |
-
#~ msgid "Date"
|
1337 |
-
#~ msgstr "تاریخ"
|
1338 |
-
|
1339 |
-
#~ msgid "Browser"
|
1340 |
-
#~ msgstr "مرورگر"
|
1341 |
-
|
1342 |
-
#~ msgid "Unknown"
|
1343 |
-
#~ msgstr "نا معلوم"
|
1344 |
-
|
1345 |
-
#~ msgid "Result: "
|
1346 |
-
#~ msgstr "نتیجه:"
|
1347 |
-
|
1348 |
-
#~ msgid "Word"
|
1349 |
-
#~ msgstr "کلمه"
|
1350 |
-
|
1351 |
-
#~ msgid "Site"
|
1352 |
-
#~ msgstr "سایت"
|
1353 |
-
|
1354 |
-
#~ msgid "Access to Show statistics"
|
1355 |
-
#~ msgstr "دسترسی برای نمایش آمار"
|
1356 |
-
|
1357 |
-
#~ msgid "Contributors"
|
1358 |
-
#~ msgstr "مشارکت کنندهها"
|
1359 |
-
|
1360 |
-
#~ msgid "Authors"
|
1361 |
-
#~ msgstr "نویسندهها"
|
1362 |
-
|
1363 |
-
#~ msgid "Editors"
|
1364 |
-
#~ msgstr "ویرایشگرها"
|
1365 |
-
|
1366 |
-
#~ msgid "Only administrators"
|
1367 |
-
#~ msgstr "فقط مدیرها"
|
1368 |
-
|
1369 |
-
#~ msgid "Donate to this Wordpress Statistics plugin:"
|
1370 |
-
#~ msgstr "حمایت به افزونه آمارهی وردپرس:"
|
1371 |
-
|
1372 |
-
#~ msgid "Advertising is the only way to donate the plugin."
|
1373 |
-
#~ msgstr "تبلیغات تنها راه کمک مالی به افزونه میباشد."
|
1374 |
-
|
1375 |
-
#~ msgid "Forums plugins"
|
1376 |
-
#~ msgstr "انجمن پشتیبانی افزونه"
|
1377 |
-
|
1378 |
-
#~ msgid "http://wordpress.org/extend/plugins/wp-statistics/"
|
1379 |
-
#~ msgstr ""
|
1380 |
-
#~ "http://forum.wp-parsi.com/forum/13-%D8%A7%D9%81%D8%B2%D9%88%D9%86%D9%87-"
|
1381 |
-
#~ "%D9%87%D8%A7/"
|
1382 |
-
|
1383 |
-
#~ msgid "Chart Stats in 1 month"
|
1384 |
-
#~ msgstr "نمودار آمار در ۱ ماه گذشته"
|
1385 |
-
|
1386 |
-
#~ msgid "Words"
|
1387 |
-
#~ msgstr "کلمات"
|
1388 |
-
|
1389 |
-
#~ msgid "Recent references"
|
1390 |
-
#~ msgstr "آخرین ورودیها"
|
1391 |
-
|
1392 |
-
#~ msgid "(Correction)"
|
1393 |
-
#~ msgstr "(اصلاح)"
|
1394 |
-
|
1395 |
-
#~ msgid "If not set time! Check your <a href=\"%s\">time zone.</a>"
|
1396 |
-
#~ msgstr "اگر زمان درست نیست! <a href=\"%s\">منطقه زمانی</a> را بررسی کنید."
|
1397 |
-
|
1398 |
-
#~ msgid "Today date: %s, Time: %s"
|
1399 |
-
#~ msgstr "تاریخ امروز: %s، ساعت: %s"
|
1400 |
-
|
1401 |
-
#~ msgid "General configuration"
|
1402 |
-
#~ msgstr "پیکربندی عمومی"
|
1403 |
-
|
1404 |
-
#, fuzzy
|
1405 |
-
#~ msgid "Coefficient"
|
1406 |
-
#~ msgstr "ضریب محاسبه هر بازدیدکننده"
|
1407 |
-
|
1408 |
-
#~ msgid "Added"
|
1409 |
-
#~ msgstr "مقدار"
|
1410 |
-
|
1411 |
-
#~ msgid "value"
|
1412 |
-
#~ msgstr "افزوده شد"
|
1413 |
-
|
1414 |
-
#~ msgid "Was"
|
1415 |
-
#~ msgstr "مقدار"
|
1416 |
-
|
1417 |
-
#~ msgid "low value"
|
1418 |
-
#~ msgstr "کم شد"
|
1419 |
-
|
1420 |
-
#~ msgid "Thanks for your report!"
|
1421 |
-
#~ msgstr "با تشکر از گزارش شما!"
|
1422 |
-
|
1423 |
-
#~ msgid "An error has occurred!"
|
1424 |
-
#~ msgstr "خطایی رخ داده است!"
|
1425 |
-
|
1426 |
-
#~ msgid "Error! Please Enter all field"
|
1427 |
-
#~ msgstr "خطا! لطفا همه فیلدها را پرکنید"
|
1428 |
-
|
1429 |
-
#~ msgid "deleted!"
|
1430 |
-
#~ msgstr "پاکشد!"
|
1431 |
-
|
1432 |
-
#~ msgid "All plugin data is deleted"
|
1433 |
-
#~ msgstr "تمامی اطلاعات افزونه پاک شد"
|
1434 |
-
|
1435 |
-
#~ msgid "Disable plugin"
|
1436 |
-
#~ msgstr "افزونه را غیرفعال کنید."
|
1437 |
-
|
1438 |
-
#~ msgid "plugin options have been deleted"
|
1439 |
-
#~ msgstr "گزینههای افزونه قبلا پاک شدهاند"
|
1440 |
-
|
1441 |
-
#~ msgid "Plugin home page"
|
1442 |
-
#~ msgstr "خانهی افزونه"
|
1443 |
-
|
1444 |
-
#~ msgid "Stats Log"
|
1445 |
-
#~ msgstr "گزارش آمارها"
|
1446 |
-
|
1447 |
-
#~ msgid "Users Online"
|
1448 |
-
#~ msgstr "کاربران حاضر"
|
1449 |
-
|
1450 |
-
#~ msgid "Configuration"
|
1451 |
-
#~ msgstr "پیکربندی"
|
1452 |
-
|
1453 |
-
#~ msgid "Enable Statistics"
|
1454 |
-
#~ msgstr "آمارگیر فعال شود"
|
1455 |
-
|
1456 |
-
#~ msgid "Statistics are enabled."
|
1457 |
-
#~ msgstr "آمارگیر فعال است."
|
1458 |
-
|
1459 |
-
#~ msgid "Statistics are disabled!"
|
1460 |
-
#~ msgstr "آمارگیر غیرفعال است!"
|
1461 |
-
|
1462 |
-
#~ msgid "Show decimals number"
|
1463 |
-
#~ msgstr "نمایش اعداد بهصورت اعشاری"
|
1464 |
-
|
1465 |
-
#~ msgid "Show number stats with decimal. For examle: 3,500"
|
1466 |
-
#~ msgstr "نمایش اعداد آمارگیر بهصورت اعشاری. برای مثال: 3،500"
|
1467 |
-
|
1468 |
-
#~ msgid "Daily referer of search engines"
|
1469 |
-
#~ msgstr "روزانه بودن ورودی موتورهای جستجو"
|
1470 |
-
|
1471 |
-
#~ msgid "Can be calculated daily or total search engines"
|
1472 |
-
#~ msgstr "ورودی موتور جستجو را روزانه یا کلی محاسبه میکند"
|
1473 |
-
|
1474 |
-
#~ msgid "Increase value of the total hits by"
|
1475 |
-
#~ msgstr "افزایش مقدار به بازدیدهای کل"
|
1476 |
-
|
1477 |
-
#~ msgid "Done"
|
1478 |
-
#~ msgstr "انجام"
|
1479 |
-
|
1480 |
-
#~ msgid "Your total visit sum with this value"
|
1481 |
-
#~ msgstr "کل بازدیدها با این مقدار جمع میشود"
|
1482 |
-
|
1483 |
-
#~ msgid "Reduce value of the total hits by"
|
1484 |
-
#~ msgstr "کاهش مقدار از بازدیدهای کل"
|
1485 |
-
|
1486 |
-
#~ msgid "Your total visit minus with this value"
|
1487 |
-
#~ msgstr "کل بازدیدها از این مقدار کم میشود"
|
1488 |
-
|
1489 |
-
#~ msgid "Default 5"
|
1490 |
-
#~ msgstr "پیشفرض 5 است"
|
1491 |
-
|
1492 |
-
#~ msgid "Number for submit item in Database and show that"
|
1493 |
-
#~ msgstr "تعداد برای ثبت آیتمهای آمار در پایگاهداده و نمایش آن"
|
1494 |
-
|
1495 |
-
#~ msgid "Default 1"
|
1496 |
-
#~ msgstr "پیشفرض 1 است"
|
1497 |
-
|
1498 |
-
#~ msgid "Live Statistics configuration"
|
1499 |
-
#~ msgstr "پیکربندی بازدید لحظهای"
|
1500 |
-
|
1501 |
-
#~ msgid "Refresh Stats every"
|
1502 |
-
#~ msgstr "تازهکردن آمار هر"
|
1503 |
-
|
1504 |
-
#~ msgid "Second(s)"
|
1505 |
-
#~ msgstr "ثانیه"
|
1506 |
-
|
1507 |
-
#~ msgid "Recommended"
|
1508 |
-
#~ msgstr "پیشنهاد میشود"
|
1509 |
-
|
1510 |
-
#~ msgid "To reduce pressure on the server, this defaults to 10 sec"
|
1511 |
-
#~ msgstr ""
|
1512 |
-
#~ "بهدلیل فشار برروی سرور، پیشنهاد میشود برروی زمان بالا تعیین شود. پیشفرض "
|
1513 |
-
#~ "10 ثانیه است."
|
1514 |
-
|
1515 |
-
#~ msgid "Pagerank configuration"
|
1516 |
-
#~ msgstr "تنظیمات رتبهبندی"
|
1517 |
-
|
1518 |
-
#~ msgid "Your url for Google pagerank check"
|
1519 |
-
#~ msgstr "آدرس شما برای بررسی رتبهبندی گوگل"
|
1520 |
-
|
1521 |
-
#~ msgid "If empty. you website url is used"
|
1522 |
-
#~ msgstr "اگراین قسمت خالی باشد، از آدرس اصلی سایت استفاده میکند"
|
1523 |
-
|
1524 |
-
#~ msgid "Your url for Alexa pagerank check"
|
1525 |
-
#~ msgstr "آدرس شما برای بررسی رتبهبندی الکسا"
|
1526 |
-
|
1527 |
-
#~ msgid "Update"
|
1528 |
-
#~ msgstr "بهروز رسانی"
|
1529 |
-
|
1530 |
-
#~ msgid "This plugin created by %s from %s and %s."
|
1531 |
-
#~ msgstr "این افزونه توسط %s از گروه %s و %s ساخته شده است."
|
1532 |
-
|
1533 |
-
#~ msgid "Plugin translators"
|
1534 |
-
#~ msgstr "مترجمهای افزونه"
|
1535 |
-
|
1536 |
-
#~ msgid "Language"
|
1537 |
-
#~ msgstr "زبان"
|
1538 |
-
|
1539 |
-
#~ msgid "by"
|
1540 |
-
#~ msgstr "توسط"
|
1541 |
-
|
1542 |
-
#~ msgid "for translate language files. please send files for"
|
1543 |
-
#~ msgstr "لطفا فایلهای ترجمه را به ایمیل روبرو ارسال کنید"
|
1544 |
-
|
1545 |
-
#~ msgid "Show Functions"
|
1546 |
-
#~ msgstr "نمایش تابعها"
|
1547 |
-
|
1548 |
-
#~ msgid "Report Problem"
|
1549 |
-
#~ msgstr "گزارش مشکل"
|
1550 |
-
|
1551 |
-
#~ msgid "User Online Live"
|
1552 |
-
#~ msgstr "کاربران آنلاین زنده"
|
1553 |
-
|
1554 |
-
#~ msgid "Total Feedburner Subscribe"
|
1555 |
-
#~ msgstr "تعداد مشترکهای فیدبرنر"
|
1556 |
-
|
1557 |
-
#~ msgid "Google Pagerank"
|
1558 |
-
#~ msgstr "رتبه گوگل"
|
1559 |
-
|
1560 |
-
#~ msgid "Alexa Pagerank"
|
1561 |
-
#~ msgstr "رتبه الکسا"
|
1562 |
-
|
1563 |
-
#~ msgid "Hide"
|
1564 |
-
#~ msgstr "مخفی"
|
1565 |
-
|
1566 |
-
#~ msgid "Your Name"
|
1567 |
-
#~ msgstr "نام شما"
|
1568 |
-
|
1569 |
-
#~ msgid "Description Problem"
|
1570 |
-
#~ msgstr "توضیحات مشکل"
|
1571 |
-
|
1572 |
-
#~ msgid "Send Problem"
|
1573 |
-
#~ msgstr "ارسال گزارش"
|
1574 |
-
|
1575 |
-
#~ msgid "Unistall plugin"
|
1576 |
-
#~ msgstr "پاکسازی پلاگین"
|
1577 |
-
|
1578 |
-
#~ msgid "Delete all data, including tables and plugin options"
|
1579 |
-
#~ msgstr ""
|
1580 |
-
#~ "پاککردن تمامی اطلاعات از قبیل جدول افزونه در پایگاهداده و گزینههای افزونه"
|
1581 |
-
|
1582 |
-
#~ msgid "Uninstall"
|
1583 |
-
#~ msgstr "پاککردن"
|
1584 |
-
|
1585 |
-
#~ msgid "Stats weblog"
|
1586 |
-
#~ msgstr "آمار سایت"
|
1587 |
-
|
1588 |
-
#~ msgid "Not Found!"
|
1589 |
-
#~ msgstr "چیزی یافت نشد!"
|
1590 |
-
|
1591 |
-
#~ msgid "from"
|
1592 |
-
#~ msgstr "از گروه"
|
1593 |
-
|
1594 |
-
#~ msgid "group"
|
1595 |
-
#~ msgstr "ساخته شدهاست"
|
1596 |
-
|
1597 |
-
#~ msgid "The CSS Class for the containing widget"
|
1598 |
-
#~ msgstr "کلاس CSS برای ابزارک"
|
1599 |
-
|
1600 |
-
#~ msgid "If empty. class=\"widget\" will be used"
|
1601 |
-
#~ msgstr "اگراین قسمت خالی باشد، از class=\"widget\" استفاده میکند"
|
1602 |
-
|
1603 |
-
#, fuzzy
|
1604 |
-
#~ msgid "Statisticsd"
|
1605 |
-
#~ msgstr "آماره"
|
1606 |
-
|
1607 |
-
#~ msgid "Free!"
|
1608 |
-
#~ msgstr "رایگان!"
|
1609 |
-
|
1610 |
-
#~ msgid "Get Premium version"
|
1611 |
-
#~ msgstr "دریافت نسخهی ویژه"
|
1612 |
-
|
1613 |
-
#~ msgid "Sorry! this feature is for Premium version"
|
1614 |
-
#~ msgstr "متاسفم! این امکان برای نسخهی ویژه است."
|
1615 |
-
|
1616 |
-
#~ msgid "Minute(s)"
|
1617 |
-
#~ msgstr "دقیقه"
|
1618 |
-
|
1619 |
-
#~ msgid "Minute s)"
|
1620 |
-
#~ msgstr "دقیقه"
|
1621 |
-
|
1622 |
-
#~ msgid "Online user check time"
|
1623 |
-
#~ msgstr "زمان بررسی کاربران آنلاین"
|
1624 |
-
|
1625 |
-
#~ msgid "Each"
|
1626 |
-
#~ msgstr "هر"
|
1627 |
-
|
1628 |
-
#~ msgid "Compute min"
|
1629 |
-
#~ msgstr "دقیقه محاسبه کن"
|
1630 |
-
|
1631 |
-
#~ msgid "Database check time"
|
1632 |
-
#~ msgstr "زمان بررسی پایگاهداده"
|
1633 |
-
|
1634 |
-
#~ msgid "Thanks"
|
1635 |
-
#~ msgstr "تشکر از"
|
1636 |
-
|
1637 |
-
#~ msgid "Deactive plugin"
|
1638 |
-
#~ msgstr "غیرفعالسازی افزونه"
|
1639 |
-
|
1640 |
-
#~ msgid "Plugin URI"
|
1641 |
-
#~ msgstr "آدرس افزونه"
|
1642 |
-
|
1643 |
-
#~ msgid "mm"
|
1644 |
-
#~ msgstr "آمار بازدید"
|
1645 |
-
|
1646 |
-
#~ msgid "and"
|
1647 |
-
#~ msgstr "و"
|
1648 |
-
|
1649 |
-
#~ msgid "d"
|
1650 |
-
#~ msgstr "ططظط"
|
1651 |
-
|
1652 |
-
#~ msgid ""
|
1653 |
-
#~ "This plugin created by <a href=\"http://profile.wordpress.org/mostafa."
|
1654 |
-
#~ "s1990\">Mostafa Soufi</a> from <a href=\"http://wpbazar.com\">WPBazar</a> "
|
1655 |
-
#~ "and <a href=\"http://wp-persian.com\">WP-Persian</a> group.\n"
|
1656 |
-
#~ "\t\t\tfor translate language files. please send files for mst404@gmail.com"
|
1657 |
-
#~ msgstr "یبیبیب"
|
1658 |
-
|
1659 |
-
#~ msgid "Your Report"
|
1660 |
-
#~ msgstr "گزارش شما"
|
1661 |
-
|
1662 |
-
#~ msgid "Hide Functions"
|
1663 |
-
#~ msgstr "مخفیکردن تابعها"
|
1664 |
-
|
1665 |
-
#~ msgid "Title Widget"
|
1666 |
-
#~ msgstr "عنوان ابزارک"
|
1667 |
-
|
1668 |
-
#~ msgid "Show items"
|
1669 |
-
#~ msgstr "نمایش عناوین"
|
1670 |
-
|
1671 |
-
#~ msgid "Total Blog Hits: "
|
1672 |
-
#~ msgstr "Total Blog Hits: "
|
1673 |
-
|
1674 |
-
#~ msgid "Be set up on time"
|
1675 |
-
#~ msgstr "برروی زمان بالا محاسبه شود"
|
1676 |
-
|
1677 |
-
#~ msgid "Updates to"
|
1678 |
-
#~ msgstr "دقیقه"
|
1679 |
-
|
1680 |
-
#~ msgid "Ban IP"
|
1681 |
-
#~ msgstr "محروم کردن آیپی"
|
1682 |
|
1683 |
-
#~ msgid "
|
1684 |
-
#~ msgstr "
|
1685 |
|
1686 |
-
#~ msgid "
|
1687 |
-
#~ msgstr "
|
1688 |
|
1689 |
-
#~ msgid "
|
1690 |
-
#~ msgstr "
|
1 |
+
# Translation of WP Statistics in Persian
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Statistics\n"
|
6 |
+
"POT-Creation-Date: 2014-01-18 20:04+0330\n"
|
7 |
+
"PO-Revision-Date: 2014-01-18 20:04+0330\n"
|
|
|
8 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
9 |
+
"Language-Team: \n"
|
|
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
14 |
+
"X-Generator: Poedit 1.5.5\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
|
17 |
"\\plugins\\wp-statistics\n"
|
|
|
18 |
"X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
19 |
"content\\plugins\\wp-statistics\n"
|
20 |
|
25 |
|
26 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
27 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
28 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:108
|
29 |
msgid "Statistics"
|
30 |
msgstr "آماره"
|
31 |
|
34 |
msgstr "نمایش آمار سایت در ابزارک"
|
35 |
|
36 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
37 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:140
|
38 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:24
|
39 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:23
|
40 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:298
|
41 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
42 |
msgid "User Online"
|
93 |
msgstr "کل بازدیدکنندهگان"
|
94 |
|
95 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
|
|
96 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
97 |
msgid "Search Engine reffered"
|
98 |
msgstr "ورودی موتور جستجو"
|
99 |
|
100 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
|
101 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:59
|
102 |
msgid "Total Posts"
|
103 |
msgstr "کل نوشتهها"
|
104 |
|
105 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
|
106 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:62
|
107 |
msgid "Total Pages"
|
108 |
msgstr "کل برگهها"
|
109 |
|
110 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
|
111 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:65
|
112 |
msgid "Total Comments"
|
113 |
msgstr "کل دیدگاهها"
|
114 |
|
115 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
|
116 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:68
|
117 |
msgid "Total Spams"
|
118 |
msgstr "کل جفنگها"
|
119 |
|
120 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
|
121 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:71
|
122 |
msgid "Total Users"
|
123 |
msgstr "کل کاربرها"
|
124 |
|
125 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
|
126 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:74
|
127 |
msgid "Average Posts"
|
128 |
msgstr "میانگین نوشتهها"
|
129 |
|
130 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
|
131 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:77
|
132 |
msgid "Average Comments"
|
133 |
msgstr "میانگین دیدگاهها"
|
134 |
|
135 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
|
136 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:80
|
137 |
msgid "Average Users"
|
138 |
msgstr "میانگین کاربرها"
|
139 |
|
140 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
|
141 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:83
|
142 |
msgid "Last Post Date"
|
143 |
msgstr "تاریخ بهروزشدن سایت"
|
144 |
|
145 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:22
|
146 |
msgid "Wordpress Statistics"
|
147 |
msgstr "آماره وردپرس"
|
148 |
|
149 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:23
|
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:48
|
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:110
|
163 |
msgid "Overview"
|
164 |
msgstr "مرور کلی"
|
165 |
|
166 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:111
|
167 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
|
168 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
169 |
msgid "Browsers"
|
170 |
msgstr "مرورگرها"
|
171 |
|
172 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:113
|
173 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:336
|
174 |
msgid "Countries"
|
175 |
msgstr "کشورها"
|
176 |
|
177 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
178 |
msgid "Hits"
|
179 |
msgstr "بازدیدها"
|
180 |
|
181 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:116
|
182 |
msgid "Referers"
|
183 |
msgstr "ارجاعدهندهها"
|
184 |
|
185 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:117
|
186 |
msgid "Searches"
|
187 |
msgstr "جستجوها"
|
188 |
|
189 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:118
|
190 |
msgid "Search Words"
|
191 |
msgstr "کلمات جستجو شده"
|
192 |
|
193 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:119
|
194 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:47
|
195 |
msgid "Visitors"
|
196 |
msgstr "بازدیدکنندهگان"
|
197 |
|
198 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:121
|
199 |
msgid "Optimization"
|
200 |
msgstr "بهینه سازی"
|
201 |
|
202 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
|
203 |
msgid "Settings"
|
204 |
msgstr "تنظیمات"
|
205 |
|
206 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
|
207 |
msgid "Today visitor"
|
208 |
msgstr "بازدید کننده امروز"
|
209 |
|
210 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:150
|
211 |
msgid "Today visit"
|
212 |
msgstr "بازدید امروز"
|
213 |
|
214 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
|
215 |
msgid "Yesterday visitor"
|
216 |
msgstr "بازدید کننده دیروز"
|
217 |
|
218 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:160
|
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:165
|
224 |
msgid "View Stats"
|
225 |
msgstr "نمایش آمار"
|
226 |
|
227 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:257
|
228 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
|
229 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:424
|
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:267
|
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:378
|
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:386
|
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:392
|
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:405
|
253 |
msgid "GeoIP Database updated successfully!"
|
254 |
msgstr "پایگاهداده GeoIP با موفقیت بهروز شد!"
|
255 |
|
266 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:120
|
267 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:265
|
268 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
|
269 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:44
|
270 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:35
|
271 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:18
|
272 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:129
|
273 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:229
|
274 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:274
|
275 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:319
|
276 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
|
277 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:459
|
278 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:551
|
279 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:589
|
280 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
|
281 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
287 |
msgstr "نوع مرورگرها"
|
288 |
|
289 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:90
|
290 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:205
|
291 |
msgid "Browser share"
|
292 |
msgstr "سهم مرورگر"
|
293 |
|
357 |
msgstr "1 ساله"
|
358 |
|
359 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
|
360 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
|
361 |
msgid "Hits Statistical Chart"
|
362 |
msgstr "نمودار آمار بازدیدها"
|
363 |
|
371 |
msgstr "روزه"
|
372 |
|
373 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:67
|
374 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:404
|
375 |
msgid "Number of visits and visitors"
|
376 |
msgstr "تعداد بازدید و بازدید کننده"
|
377 |
|
378 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:93
|
379 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
|
380 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:430
|
381 |
msgid "Visitor"
|
382 |
msgstr "بازدیدکننده"
|
383 |
|
384 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:103
|
385 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
|
386 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:440
|
387 |
msgid "Visit"
|
388 |
msgstr "بازدید"
|
389 |
|
395 |
msgstr "به زودی اضافه می شود"
|
396 |
|
397 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
398 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:45
|
399 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:553
|
400 |
msgid "Latest search words"
|
401 |
msgstr "آخرین کلمات جستجو شده"
|
402 |
|
403 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:82
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:73
|
405 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:573
|
406 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:606
|
407 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
408 |
msgid "Map"
|
409 |
msgstr "نقشه"
|
410 |
|
411 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:100
|
412 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
413 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
414 |
msgid "Page"
|
415 |
msgstr "صفحه"
|
416 |
|
417 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:100
|
418 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
|
419 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
420 |
msgid "From"
|
426 |
msgid "Recent Visitors"
|
427 |
msgstr "آخرین بازدیدکنندگان"
|
428 |
|
429 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
430 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:15
|
431 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:55
|
432 |
+
msgid "All"
|
433 |
+
msgstr "همه"
|
434 |
+
|
435 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:74
|
436 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:284
|
437 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
|
438 |
msgid "Country"
|
439 |
msgstr "کشور"
|
443 |
msgstr "خلاصه آمار"
|
444 |
|
445 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:35
|
446 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:80
|
447 |
msgid "Today"
|
448 |
msgstr "امروز"
|
449 |
|
450 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:41
|
451 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:81
|
452 |
msgid "Yesterday"
|
453 |
msgstr "دیروز"
|
454 |
|
465 |
msgstr "سال"
|
466 |
|
467 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
|
468 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
|
469 |
msgid "Total"
|
470 |
msgstr "کل"
|
471 |
|
472 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
|
473 |
+
msgid "Search Engine Referrals"
|
474 |
+
msgstr "ورودی موتورهای جستجوگر"
|
|
|
|
|
475 |
|
476 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:99
|
477 |
+
msgid "Daily Total"
|
478 |
+
msgstr "کل روزانهها"
|
479 |
+
|
480 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
481 |
+
msgid "Current Time and Date"
|
482 |
+
msgstr "تاریخ و زمان امروز"
|
483 |
+
|
484 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:113
|
485 |
msgid "(Adjustment)"
|
486 |
msgstr "(تنظیم)"
|
487 |
|
488 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
|
489 |
+
#, php-format
|
490 |
+
msgid "Date: <code dir=\"ltr\">%s</code></code>"
|
491 |
+
msgstr "تاریخ: <code dir=\"ltr\">%s</code></code>"
|
492 |
+
|
493 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:121
|
494 |
+
#, php-format
|
495 |
+
msgid "Time: <code dir=\"ltr\">%s</code>"
|
496 |
+
msgstr "ساعت: <code dir=\"ltr\">%s</code>"
|
497 |
+
|
498 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:130
|
499 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
|
500 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:276
|
501 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:365
|
502 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:460
|
503 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:553
|
504 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:591
|
505 |
msgid "(See more)"
|
506 |
msgstr "(مشاهده بیشتر)"
|
507 |
|
508 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:161
|
509 |
msgid "Graph of Browsers"
|
510 |
msgstr "نمودار سهم مرورگرها"
|
511 |
|
512 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:231
|
513 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
|
514 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:28
|
515 |
msgid "Top referring sites"
|
516 |
msgstr "بهترین سایت های ارجاع دهنده"
|
517 |
|
518 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:237
|
519 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
520 |
msgid "Reference"
|
521 |
msgstr "ارجاع"
|
522 |
|
523 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:238
|
524 |
msgid "Address"
|
525 |
msgstr "آدرس"
|
526 |
|
527 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:276
|
528 |
msgid "Top 10 Countries"
|
529 |
msgstr "10 کشور برتر"
|
530 |
|
531 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:282
|
532 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:18
|
533 |
msgid "Rank"
|
534 |
msgstr "رتبه"
|
535 |
|
536 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:283
|
537 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:19
|
538 |
msgid "Flag"
|
539 |
msgstr "پرچم"
|
540 |
|
541 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:285
|
542 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
|
543 |
msgid "Visitor Count"
|
544 |
msgstr "تعداد بازدیدکننده"
|
545 |
|
546 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:320
|
547 |
msgid "About plugin"
|
548 |
msgstr "درباره افزونه آماره"
|
549 |
|
550 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:323
|
551 |
#, php-format
|
552 |
msgid "Plugin version: %s"
|
553 |
msgstr "نگارش افزونه: %s"
|
554 |
|
555 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
|
556 |
msgid "Translations"
|
557 |
msgstr "ترجمهها"
|
558 |
|
559 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:325
|
560 |
msgid "Support"
|
561 |
msgstr "پشتیبانی"
|
562 |
|
563 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:325
|
564 |
msgid "Farsi"
|
565 |
msgstr "فارسی"
|
566 |
|
567 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:326
|
568 |
msgid "Facebook"
|
569 |
msgstr "فیسبوک"
|
570 |
|
571 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:327
|
572 |
msgid "Weblog"
|
573 |
msgstr "وبلاگ"
|
574 |
|
575 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
|
576 |
msgid ""
|
577 |
"Please donate to WP Statistics. With your help WP Statistics will rule the "
|
578 |
"world!"
|
579 |
msgstr "افزونه آماره را حمایت کنید. با حمایت شما، جهانی خواهیم شد."
|
580 |
|
581 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
|
582 |
msgid "Donate"
|
583 |
msgstr "حمایت"
|
584 |
|
585 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:381
|
586 |
msgid "Hits chart in the last 20 days"
|
587 |
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
588 |
|
589 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:460
|
590 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
|
591 |
msgid "Search Engine Referrers Statistical Chart"
|
592 |
msgstr "نمودار آمار موتورهای جستجو"
|
593 |
|
594 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:476
|
595 |
msgid "Referrer search engine chart in the last 20 days"
|
596 |
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
597 |
|
598 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
|
599 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:67
|
600 |
msgid "Number of referrer"
|
601 |
msgstr "تعداد ورودی"
|
654 |
msgid "Are you sure?"
|
655 |
msgstr "آیا مطمئن هستید؟"
|
656 |
|
657 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
658 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:106
|
659 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
660 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:99
|
661 |
msgid "Resources"
|
662 |
msgstr "منابع"
|
663 |
|
664 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
665 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:154
|
666 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
667 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:147
|
668 |
+
msgid "Version Info"
|
669 |
+
msgstr "اطلاعات نگارش"
|
670 |
+
|
671 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
672 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:191
|
673 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
674 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:184
|
675 |
+
msgid "Client Info"
|
676 |
+
msgstr "اطلاعات کاربر"
|
677 |
+
|
678 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
679 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:217
|
680 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
681 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:210
|
682 |
+
msgid "Export"
|
683 |
+
msgstr "برونبری"
|
684 |
+
|
685 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
686 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:255
|
687 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
688 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:248
|
689 |
+
msgid "Empty"
|
690 |
+
msgstr "خالی کردن"
|
691 |
+
|
692 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
693 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:278
|
694 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:92
|
695 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:271
|
696 |
+
msgid "Delete User Agent Types"
|
697 |
+
msgstr "حذف نوع سیستم عامل کاربر"
|
698 |
+
|
699 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:99
|
700 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:331
|
701 |
+
msgid "GeoIP Options"
|
702 |
+
msgstr "تنظیمات GeoIP"
|
703 |
|
704 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:111
|
705 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:116
|
706 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:104
|
707 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:109
|
708 |
+
msgid "Memory usage in PHP"
|
709 |
+
msgstr "حافظه استفاده شده در پیاچپی"
|
710 |
+
|
711 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:115
|
712 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:108
|
713 |
msgid "Byte"
|
714 |
msgstr "بایت"
|
715 |
|
716 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:122
|
717 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:115
|
718 |
#, php-format
|
719 |
msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
|
720 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_useronline</code>"
|
721 |
|
722 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:126
|
723 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:137
|
724 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:148
|
725 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:119
|
726 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:130
|
727 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:141
|
728 |
msgid "Row"
|
729 |
msgstr "ردیف"
|
730 |
|
731 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:127
|
732 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:138
|
733 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:149
|
734 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:120
|
735 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:131
|
736 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:142
|
737 |
msgid "Number of rows"
|
738 |
msgstr "تعداد ردیفهای موجود"
|
739 |
|
740 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:133
|
741 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:126
|
742 |
#, php-format
|
743 |
msgid "Number of rows in the <code>%sstatistics_visit</code> table"
|
744 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visit</code>"
|
745 |
|
746 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:144
|
747 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:137
|
748 |
#, php-format
|
749 |
msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
|
750 |
msgstr "تعداد ردیفها در جدول <code>%sstatistics_visitor</code>"
|
751 |
|
752 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:159
|
753 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:152
|
|
|
|
|
|
|
|
|
|
|
754 |
msgid "WP Statistics Version"
|
755 |
msgstr "نگارش افزونه آماره"
|
756 |
|
757 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:164
|
758 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:157
|
759 |
msgid "The WP Statistics version you are running."
|
760 |
msgstr "نگارش افزونه آماره در حال اجرای شما."
|
761 |
|
762 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:170
|
763 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:163
|
764 |
msgid "PHP Version"
|
765 |
msgstr "نگارش PHP"
|
766 |
|
767 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:175
|
768 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:168
|
769 |
msgid "The PHP version you are running."
|
770 |
msgstr "نگارش PHP در حال اجرای شما."
|
771 |
|
772 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:181
|
773 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:174
|
774 |
msgid "jQuery Version"
|
775 |
msgstr "نگارش جیکوئری"
|
776 |
|
777 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:186
|
778 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:179
|
779 |
msgid "The jQuery version you are running."
|
780 |
msgstr "نگارش جیکوئری در حال اجرای شما."
|
781 |
|
782 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:196
|
783 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:189
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "Client IP"
|
785 |
msgstr "آیپی کاربر"
|
786 |
|
787 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:201
|
788 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:194
|
789 |
msgid "The client IP address."
|
790 |
msgstr "آدرس آیپی کاربر."
|
791 |
|
792 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:207
|
793 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:200
|
794 |
msgid "User Agent"
|
795 |
msgstr "عامل کاربر"
|
796 |
|
797 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:212
|
798 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:205
|
799 |
msgid "The client user agent string."
|
800 |
msgstr "رشتهی عامل کاربری"
|
801 |
|
802 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:222
|
803 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:215
|
|
|
|
|
|
|
|
|
|
|
804 |
msgid "Export from"
|
805 |
msgstr "برونبری از"
|
806 |
|
807 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:227
|
808 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:243
|
809 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:265
|
810 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:288
|
811 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:312
|
812 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:220
|
813 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:236
|
814 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:258
|
815 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:281
|
816 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:305
|
817 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:223
|
818 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:260
|
819 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:276
|
820 |
msgid "Please select."
|
821 |
msgstr "لطفا انتخاب کنید."
|
822 |
|
823 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:232
|
824 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:225
|
825 |
msgid "Select the table for the output file."
|
826 |
msgstr "جدول مورد نظر برای تهیه فایل خروجی را انتخاب کنید."
|
827 |
|
828 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:238
|
829 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:231
|
830 |
msgid "Export To"
|
831 |
msgstr "برونبری به"
|
832 |
|
833 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:249
|
834 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:242
|
835 |
msgid "Select the output file type."
|
836 |
msgstr "نوع فایل خروجی را انتخاب کنید."
|
837 |
|
838 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:250
|
839 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:243
|
840 |
msgid "Start Now!"
|
841 |
msgstr "شروع کن!"
|
842 |
|
843 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:260
|
844 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:253
|
|
|
|
|
|
|
|
|
|
|
845 |
msgid "Empty Table"
|
846 |
msgstr "خالی کردن جدول"
|
847 |
|
848 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:270
|
849 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:263
|
850 |
msgid "All data table will be lost."
|
851 |
msgstr "تمامی دادههای جدول از بین خواهد رفت."
|
852 |
|
853 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:271
|
854 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:264
|
855 |
msgid "Clear now!"
|
856 |
msgstr "پاک کن!"
|
857 |
|
858 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:283
|
859 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:276
|
|
|
|
|
|
|
|
|
|
|
860 |
msgid "Delete Agents"
|
861 |
msgstr "حذف سیستم عاملها"
|
862 |
|
863 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:298
|
864 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:291
|
865 |
msgid "All visitor data will be lost for this agent type."
|
866 |
msgstr "تمامی دادههای مرورگر بازدیدکننده از بین خواهد رفت."
|
867 |
|
868 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:299
|
869 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:323
|
870 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:292
|
871 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:316
|
872 |
msgid "Delete now!"
|
873 |
msgstr "پاک کن!"
|
874 |
|
875 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:307
|
876 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:300
|
877 |
msgid "Delete Platforms"
|
878 |
msgstr "حذف سَکوها"
|
879 |
|
880 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:322
|
881 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization.php:315
|
882 |
msgid "All visitor data will be lost for this platform type."
|
883 |
msgstr "تمامی دادههای سَکوی بازدیدکننده از بین خواهد رفت."
|
884 |
|
885 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:340
|
|
|
|
|
|
|
|
|
886 |
msgid "Update Now!"
|
887 |
msgstr "بهروز رسانی کن!"
|
888 |
|
889 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/optimization-geoip.php:341
|
890 |
msgid "Get updates for the location and the countries, this may take a while"
|
891 |
msgstr ""
|
892 |
"دریافت بهروز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
|
893 |
|
894 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
895 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:18
|
896 |
msgid "General Settings"
|
897 |
msgstr "تنظیمات عمومی"
|
898 |
|
899 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
900 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:108
|
901 |
+
msgid "Admin Levels"
|
902 |
+
msgstr "سطح مدیریت"
|
903 |
+
|
904 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
905 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:164
|
906 |
+
msgid "Exclude User Roles"
|
907 |
+
msgstr "محرومکردن نقشهای کاربری"
|
908 |
+
|
909 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
910 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:181
|
911 |
+
msgid "IP/Robot Exclusions"
|
912 |
+
msgstr "محرومیتهای آیپی/ربات"
|
913 |
+
|
914 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
915 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:213
|
916 |
+
msgid "Charts"
|
917 |
+
msgstr "نمودار"
|
918 |
+
|
919 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
920 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:237
|
921 |
+
msgid "Statistical reporting settings"
|
922 |
+
msgstr "تنظیمات گزارش آماری"
|
923 |
+
|
924 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:11
|
925 |
+
msgid "GeoIP"
|
926 |
+
msgstr "GeoIP"
|
927 |
+
|
928 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:28
|
929 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:40
|
930 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:52
|
931 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:64
|
932 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:247
|
933 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:326
|
934 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:350
|
935 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:384
|
936 |
msgid "Active"
|
937 |
msgstr "فعال"
|
938 |
|
939 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:29
|
940 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:41
|
941 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:53
|
942 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:248
|
943 |
msgid "Enable or disable this feature"
|
944 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
945 |
|
946 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:35
|
947 |
msgid "Visits"
|
948 |
msgstr "بازدیدها"
|
949 |
|
950 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:59
|
951 |
msgid "Store entire user agent string"
|
952 |
msgstr "ذخیره تمامی مرورگرهای کاربر"
|
953 |
|
954 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:65
|
955 |
msgid "Only enabled for debugging"
|
956 |
msgstr "فعال فقط برای اشکال زدایی"
|
957 |
|
958 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:71
|
959 |
msgid "Check for online users every"
|
960 |
msgstr "زمان بررسی برای محاسبه کاربران آنلاین هر"
|
961 |
|
962 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
|
963 |
msgid "Second"
|
964 |
msgstr "ثانیه"
|
965 |
|
966 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:77
|
967 |
#, php-format
|
968 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
969 |
msgstr "زمان برای بررسی دقیق کاربران حاضر در سایت. فعلا %s ثانیه است"
|
970 |
|
971 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:83
|
972 |
msgid "Show stats in menu bar"
|
973 |
msgstr "نمایش آمار در منوبار"
|
974 |
|
975 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:88
|
976 |
msgid "No"
|
977 |
msgstr "خیر"
|
978 |
|
979 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:89
|
980 |
msgid "Yes"
|
981 |
msgstr "بله"
|
982 |
|
983 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
|
984 |
msgid "Show stats in admin menu bar"
|
985 |
msgstr "نمایش آمار در منوبار مدیریت"
|
986 |
|
987 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
|
988 |
msgid "Coefficient per visitor"
|
989 |
msgstr "ضریب محاسبه هر بازدیدکننده"
|
990 |
|
991 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
|
992 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
993 |
#, php-format
|
994 |
msgid "Exclude %s role from data collection."
|
995 |
msgstr "محروم کردن نقش کاربری %s از محاسبه در آمار"
|
996 |
|
997 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
|
|
|
|
|
|
|
|
998 |
#, php-format
|
999 |
msgid ""
|
1000 |
"See the %sWordPress Roles and Capabilities page%s for details on capability "
|
1001 |
"levels."
|
1002 |
msgstr "مشاهده اطلاعات بیشتر درمورد %s نقشهای کاربری وردپرس%s"
|
1003 |
|
1004 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
1005 |
msgid ""
|
1006 |
"Hint: manage_network = Super Admin, manage_options = Administrator, "
|
1007 |
"edit_others_posts = Editor, publish_posts = Author, edit_posts = "
|
1010 |
"نکته: manage_network = سوپر مدیر، manage_options = مدیر، edit_others_posts = "
|
1011 |
"ویرایشگر، publish_posts = نویسنده، edit_posts = مشارکتکننده، read = همه."
|
1012 |
|
1013 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
|
1014 |
msgid ""
|
1015 |
"Each of the above casscades the rights upwards in the default WordPress "
|
1016 |
"configuration. So for example selecting publish_posts grants the right to "
|
1019 |
"هریک از موارد بهصورت پیشفرض در وردپرس تعریف شدهاند. بهعنوان مثال با انتخاب "
|
1020 |
"publish_posts به نویسندهگاه، ویرایشگرها، مدیر و مدیرکلی دسترسی اعطا میگردد."
|
1021 |
|
1022 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"If you need a more robust solution to delegate access you might want to look "
|
1028 |
"اگر نیاز به راهحلهای بیشتری در رابطه با نقشهای کاربری وردپرس داشتید، نگاهی "
|
1029 |
"به افزونه %s بیندازید."
|
1030 |
|
1031 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:142
|
1032 |
msgid "Required user level to view WP Statistics"
|
1033 |
msgstr "سطح کاربری مورد نیاز برای مشاهده آمارگیر وردپرس"
|
1034 |
|
1035 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:157
|
1036 |
msgid "Required user level to manage WP Statistics"
|
1037 |
msgstr "سطح کاربری مورد نیاز برای مدیریت آمارگیر وردپرس"
|
1038 |
|
1039 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
|
|
|
|
|
|
|
|
|
1040 |
msgid "Exclude"
|
1041 |
msgstr "محروم"
|
1042 |
|
1043 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:185
|
|
|
|
|
|
|
|
|
1044 |
msgid "Robot List"
|
1045 |
msgstr "لیست روباتها"
|
1046 |
|
1084 |
msgid "Add 192.168.0.0"
|
1085 |
msgstr "افزودن 192.168.0.0"
|
1086 |
|
|
|
|
|
|
|
|
|
1087 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:218
|
1088 |
msgid "Chart type"
|
1089 |
msgstr "نوع نمودار"
|
1120 |
msgid "Chart type in view stats."
|
1121 |
msgstr "نوع نمودار در نمایش آمار."
|
1122 |
|
|
|
|
|
|
|
|
|
1123 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:255
|
1124 |
msgid "Time send"
|
1125 |
msgstr "زمان ارسال"
|
1181 |
msgid "GeoIP settings"
|
1182 |
msgstr "تنظیمات GeoIP"
|
1183 |
|
1184 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:321
|
1185 |
msgid "GeoIP collection"
|
1186 |
msgstr "مجموعه GeoIP"
|
1187 |
|
1188 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:327
|
1189 |
msgid ""
|
1190 |
"For get more information and location (country) from visitor, enable this "
|
1191 |
"feature."
|
1193 |
"برای دریافت اطلاعات بیشتر و موقعیت (کشور) بازدیدکننده، این امکان را فعال "
|
1194 |
"کنید."
|
1195 |
|
|
|
|
|
|
|
|
|
1196 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:333
|
1197 |
msgid "Update GeoIP Info"
|
1198 |
msgstr "به روز رسانی اطلاعات GeoIP"
|
1209 |
msgid "Schedule monthly update of GeoIP DB"
|
1210 |
msgstr "برنامهریزی بهروزرسانی ماهیانه پایگاهدادهی GeoIP"
|
1211 |
|
1212 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:353
|
1213 |
+
msgid "Next update will be"
|
1214 |
+
msgstr "بهروز رسانی بعدی خواهد بود"
|
1215 |
+
|
1216 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:372
|
1217 |
msgid ""
|
1218 |
"Download of the GeoIP database will be scheduled for 2 days after the first "
|
1219 |
"Tuesday of the month."
|
1220 |
msgstr "دریافت پایگاهدادهی GeoIP در 2 روز بعد از اولین سهشنبه در هرماه."
|
1221 |
|
1222 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:373
|
1223 |
msgid ""
|
1224 |
"This option will also download the database if the local filesize is less "
|
1225 |
"than 1k (which usually means the stub that comes with the plugin is still in "
|
1228 |
"این امکان حتی دادههای کمتر از 1 کیلوبایت را نیز دریافت میکند (که به معنای "
|
1229 |
"دادههای همراه افزونه است)."
|
1230 |
|
1231 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:379
|
1232 |
msgid "Populate missing GeoIP after update of GeoIP DB"
|
1233 |
msgstr "جمعیتهای از دست رفته GeoIP بعد از بهروز سانی پایگاهدادهی GeoIP"
|
1234 |
|
1235 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:385
|
1236 |
msgid "Update any missing GeoIP data after downloading a new database."
|
1237 |
msgstr ""
|
1238 |
"بهروز رسانی هر دادهی از دسترفتهی GeoIP بعد از دریافت پایگاه دادهی جدید."
|
1239 |
|
1240 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:393
|
1241 |
+
#, php-format
|
1242 |
+
msgid ""
|
1243 |
+
"GeoIP collection requires PHP %s or above, it is currently disabled due to "
|
1244 |
+
"the installed PHP version being "
|
1245 |
+
msgstr ""
|
1246 |
+
"مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
|
1247 |
+
"بودن نسخه PHP شما، غیرفعال است"
|
1248 |
+
|
1249 |
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
1250 |
msgid "Name"
|
1251 |
msgstr "نام"
|
1258 |
msgid "Select type of search engine"
|
1259 |
msgstr "انتخاب نوع موتورجستجو"
|
1260 |
|
1261 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
|
1262 |
msgid "Type date for last update"
|
1263 |
msgstr "نوع تقویم برای آخرین بهروزرسانی"
|
1264 |
|
1265 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:88
|
1266 |
msgid "English"
|
1267 |
msgstr "میلادی"
|
1268 |
|
1269 |
+
#: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:91
|
1270 |
msgid "Persian"
|
1271 |
msgstr "شمسی (فارسی)"
|
1272 |
|
1273 |
+
#~ msgid "(NOTE: Requires PHP version is 5.3.0 and higher.)"
|
1274 |
+
#~ msgstr "(نکته: نیازمند نسخه 5.3.0 PHP و بالاتر است.)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
|
1276 |
+
#~ msgid "Google"
|
1277 |
+
#~ msgstr "گوگل"
|
1278 |
|
1279 |
+
#~ msgid "Yahoo!"
|
1280 |
+
#~ msgstr "یاهو!"
|
1281 |
|
1282 |
+
#~ msgid "Bing"
|
1283 |
+
#~ msgstr "بینگ"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://iran98.org/donate/
|
|
4 |
Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.8
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
@@ -151,6 +151,9 @@ The webcrawler detection code has be fixed and will now exclude them from your s
|
|
151 |
10. View latest search engine referrers Statistics page.
|
152 |
|
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!
|
@@ -159,6 +162,16 @@ The webcrawler detection code has be fixed and will now exclude them from your s
|
|
159 |
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
160 |
|
161 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
= 4.4 =
|
163 |
* Added: option to set the required capability level to view statistics in the admin interface.
|
164 |
* Added: option to set the required capability level to manage statistics in the admin interface.
|
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.5
|
8 |
License: GPL2
|
9 |
|
10 |
Complete statistics for your blog.
|
151 |
10. View latest search engine referrers Statistics page.
|
152 |
|
153 |
== Upgrade Notice ==
|
154 |
+
= 4.5 =
|
155 |
+
* As of V4.3, the robots list is now stored in the database and is user configurable. Because of this updates to the default robots list will not automatically be added during upgrades. You can either go to "Statistics->Settings->IP/Robot Exclusions", "Reset to Default" and then save or manually make the changes which can be found in the change log details.
|
156 |
+
|
157 |
= 4.0 =
|
158 |
* BACKUP YOUR DATABASE BEFORE INSTALLING!
|
159 |
* IF YOU ARE NOT RUNNING V3.2 ALL OF YOUR DATA WILL BE LOST IF YOU UPGRADE TO V4.0 or above!
|
162 |
* As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
|
163 |
|
164 |
== Changelog ==
|
165 |
+
= 4.5 =
|
166 |
+
* Added: Support for more search engines: DuckDuckGo, Baidu and Yandex.
|
167 |
+
* Added: Support for Google local sites like google.ca, google.fr, etc.
|
168 |
+
* Added: Anchor links in the optimization and settings page to the main sections.
|
169 |
+
* Added: Icon for Opera Next.
|
170 |
+
* Updated: Added new bot match strings: 'archive.org_bot', 'meanpathbot', 'moreover', 'spbot'.
|
171 |
+
* Updated: Replaced bot match string 'ezooms.bot' with 'ezooms'.
|
172 |
+
* Updated: Overview summary statistics layout.
|
173 |
+
* Fixed: Bug in widget code that didn't allow you to edit the settings after adding the widget to your site.
|
174 |
+
|
175 |
= 4.4 =
|
176 |
* Added: option to set the required capability level to view statistics in the admin interface.
|
177 |
* Added: option to set the required capability level to manage statistics in the admin interface.
|
robotslist.php
CHANGED
@@ -10,6 +10,7 @@ $wps_robotarray = array(
|
|
10 |
'alexa',
|
11 |
'AltaVista',
|
12 |
'appie',
|
|
|
13 |
'Ask Jeeves',
|
14 |
'ASPSeek',
|
15 |
'Baiduspider',
|
@@ -22,7 +23,7 @@ $wps_robotarray = array(
|
|
22 |
'CrocCrawler',
|
23 |
'Dumbot',
|
24 |
'eStyle',
|
25 |
-
'ezooms
|
26 |
'facebookexternalhit',
|
27 |
'FAST',
|
28 |
'Feedfetcher-Google',
|
@@ -41,9 +42,11 @@ $wps_robotarray = array(
|
|
41 |
'Lycos',
|
42 |
'Mail.RU_Bot',
|
43 |
'Me.dium',
|
|
|
44 |
'Mediapartners-Google',
|
45 |
'MJ12bot',
|
46 |
'msnbot',
|
|
|
47 |
'MRBOT',
|
48 |
'NationalDirectory',
|
49 |
'nutch',
|
@@ -59,6 +62,7 @@ $wps_robotarray = array(
|
|
59 |
'SocialSearch',
|
60 |
'Sogou web spider',
|
61 |
'Spade',
|
|
|
62 |
'TechnoratiSnoop',
|
63 |
'TECNOSEEK',
|
64 |
'Teoma',
|
10 |
'alexa',
|
11 |
'AltaVista',
|
12 |
'appie',
|
13 |
+
'archive.org_bot',
|
14 |
'Ask Jeeves',
|
15 |
'ASPSeek',
|
16 |
'Baiduspider',
|
23 |
'CrocCrawler',
|
24 |
'Dumbot',
|
25 |
'eStyle',
|
26 |
+
'ezooms',
|
27 |
'facebookexternalhit',
|
28 |
'FAST',
|
29 |
'Feedfetcher-Google',
|
42 |
'Lycos',
|
43 |
'Mail.RU_Bot',
|
44 |
'Me.dium',
|
45 |
+
'meanpathbot',
|
46 |
'Mediapartners-Google',
|
47 |
'MJ12bot',
|
48 |
'msnbot',
|
49 |
+
'moreover',
|
50 |
'MRBOT',
|
51 |
'NationalDirectory',
|
52 |
'nutch',
|
62 |
'SocialSearch',
|
63 |
'Sogou web spider',
|
64 |
'Spade',
|
65 |
+
'spbot',
|
66 |
'TechnoratiSnoop',
|
67 |
'TECNOSEEK',
|
68 |
'Teoma',
|
widget.php
CHANGED
@@ -88,15 +88,7 @@
|
|
88 |
|
89 |
echo "<li>";
|
90 |
echo __('Search Engine reffered', 'wp_statistics'). ": ";
|
91 |
-
|
92 |
-
echo wp_statistics_searchengine("google");
|
93 |
-
} else if(get_option('select_se') == "yahoo"){
|
94 |
-
echo wp_statistics_searchengine("yahoo");
|
95 |
-
} else if(get_option('select_se') == "bing"){
|
96 |
-
echo wp_statistics_searchengine("bing");
|
97 |
-
} else {
|
98 |
-
echo wp_statistics_searchengine('all');
|
99 |
-
}
|
100 |
echo "</li>";
|
101 |
}
|
102 |
|
@@ -197,6 +189,6 @@
|
|
197 |
update_option('select_lps', $_POST['select_lps']);
|
198 |
}
|
199 |
|
200 |
-
|
201 |
}
|
202 |
?>
|
88 |
|
89 |
echo "<li>";
|
90 |
echo __('Search Engine reffered', 'wp_statistics'). ": ";
|
91 |
+
echo wp_statistics_searchengine(get_option('select_se'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
echo "</li>";
|
93 |
}
|
94 |
|
189 |
update_option('select_lps', $_POST['select_lps']);
|
190 |
}
|
191 |
|
192 |
+
include dirname( __FILE__ ) . '/includes/setting/widget.php';
|
193 |
}
|
194 |
?>
|
wp-statistics.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
|
5 |
Description: Complete statistics for your blog.
|
6 |
-
Version: 4.
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
Text Domain: wp_statistics
|
@@ -15,7 +15,8 @@ License: GPL2
|
|
15 |
date_default_timezone_set( get_option('timezone_string') );
|
16 |
}
|
17 |
|
18 |
-
define('WP_STATISTICS_VERSION', '4.
|
|
|
19 |
|
20 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
21 |
__('Wordpress Statistics', 'wp_statistics');
|
@@ -32,7 +33,7 @@ License: GPL2
|
|
32 |
|
33 |
include_once dirname( __FILE__ ) . '/upgrade.php';
|
34 |
|
35 |
-
if( get_option('wps_geoip') && version_compare(phpversion(),
|
36 |
include_once dirname( __FILE__ ) . '/includes/class/hits.geoip.class.php';
|
37 |
} else {
|
38 |
include_once dirname( __FILE__ ) . '/includes/class/hits.class.php';
|
@@ -273,20 +274,22 @@ License: GPL2
|
|
273 |
wp_enqueue_style('rtl-css', plugin_dir_url(__FILE__) . 'styles/rtl.css', true, '1.1');
|
274 |
|
275 |
include_once dirname( __FILE__ ) . '/includes/class/pagination.class.php';
|
|
|
|
|
276 |
|
277 |
-
$
|
278 |
-
|
279 |
-
$
|
|
|
|
|
280 |
|
281 |
if( $log_type == 'last-all-search' ) {
|
282 |
|
283 |
-
$result['all'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%'");
|
284 |
-
|
285 |
$referred = $_GET['referred'];
|
286 |
if( $referred ) {
|
287 |
-
$total = $
|
288 |
} else {
|
289 |
-
$total = $
|
290 |
}
|
291 |
|
292 |
include_once dirname( __FILE__ ) . '/includes/log/last-search.php';
|
@@ -356,7 +359,7 @@ License: GPL2
|
|
356 |
$result['visit'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visit`");
|
357 |
$result['visitor'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
358 |
|
359 |
-
if( version_compare(phpversion(),
|
360 |
include_once dirname( __FILE__ ) . '/includes/optimization/optimization-geoip.php';
|
361 |
} else {
|
362 |
include_once dirname( __FILE__ ) . '/includes/optimization/optimization.php';
|
@@ -404,7 +407,7 @@ License: GPL2
|
|
404 |
update_option('wps_last_geoip_dl', time());
|
405 |
update_option('wps_update_geoip', false);
|
406 |
|
407 |
-
if( get_option('wps_geoip') && version_compare(phpversion(),
|
408 |
include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
|
409 |
$result .= wp_statistics_populate_geoip_info();
|
410 |
}
|
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.5
|
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.5');
|
19 |
+
define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0' );
|
20 |
|
21 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
22 |
__('Wordpress Statistics', 'wp_statistics');
|
33 |
|
34 |
include_once dirname( __FILE__ ) . '/upgrade.php';
|
35 |
|
36 |
+
if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
|
37 |
include_once dirname( __FILE__ ) . '/includes/class/hits.geoip.class.php';
|
38 |
} else {
|
39 |
include_once dirname( __FILE__ ) . '/includes/class/hits.class.php';
|
274 |
wp_enqueue_style('rtl-css', plugin_dir_url(__FILE__) . 'styles/rtl.css', true, '1.1');
|
275 |
|
276 |
include_once dirname( __FILE__ ) . '/includes/class/pagination.class.php';
|
277 |
+
|
278 |
+
$search_engines = wp_statistics_searchengine_list();
|
279 |
|
280 |
+
$search_result['All'] = wp_statistics_searchengine('all','total');
|
281 |
+
|
282 |
+
foreach( $search_engines as $key => $se ) {
|
283 |
+
$search_result[$key] = wp_statistics_searchengine($key,'total');
|
284 |
+
}
|
285 |
|
286 |
if( $log_type == 'last-all-search' ) {
|
287 |
|
|
|
|
|
288 |
$referred = $_GET['referred'];
|
289 |
if( $referred ) {
|
290 |
+
$total = $search_result[$referred];
|
291 |
} else {
|
292 |
+
$total = $search_result['All'];
|
293 |
}
|
294 |
|
295 |
include_once dirname( __FILE__ ) . '/includes/log/last-search.php';
|
359 |
$result['visit'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visit`");
|
360 |
$result['visitor'] = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
|
361 |
|
362 |
+
if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
|
363 |
include_once dirname( __FILE__ ) . '/includes/optimization/optimization-geoip.php';
|
364 |
} else {
|
365 |
include_once dirname( __FILE__ ) . '/includes/optimization/optimization.php';
|
407 |
update_option('wps_last_geoip_dl', time());
|
408 |
update_option('wps_update_geoip', false);
|
409 |
|
410 |
+
if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && get_option('wps_auto_pop')) {
|
411 |
include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
|
412 |
$result .= wp_statistics_populate_geoip_info();
|
413 |
}
|