Version Description
- Added: Chart Type in the settings plugin.
- Added: Search Engine referrer chart in the view stats page.
- Added: Search Engine stats in Summary Statistics.
- Optimized: 'wp_statistics_searchengine()' and add second parameter in the function.
- Language: Chinese (China) was added.
- Language: Russian was updated.
- Language: updated.
Download this release
Release Info
Developer | mostafa.s1990 |
Plugin | WP Statistics |
Version | 3.1.4 |
Comparing to | |
See all releases |
Code changes from version 3.1.3 to 3.1.4
- includes/functions/functions.php +40 -12
- includes/log/log.php +139 -4
- includes/setting/settings.php +24 -0
- languages/default.mo +0 -0
- languages/default.po +150 -77
- languages/wp_statistics-fa_IR.mo +0 -0
- languages/wp_statistics-fa_IR.po +168 -88
- languages/wp_statistics-ru_RU.mo +0 -0
- languages/wp_statistics-ru_RU.po +396 -301
- languages/wp_statistics-zh_CN.mo +0 -0
- languages/wp_statistics-zh_CN.po +711 -0
- readme.txt +28 -5
- screenshot-1.png +0 -0
- screenshot-5.png +0 -0
- styles/log.css +5 -4
- widget.php +1 -1
- wp-statistics.php +4 -2
includes/functions/functions.php
CHANGED
@@ -115,28 +115,56 @@
|
|
115 |
return $result;
|
116 |
}
|
117 |
|
118 |
-
function wp_statistics_searchengine($search_engine = 'all') {
|
119 |
|
120 |
global $wpdb, $table_prefix;
|
121 |
|
122 |
$s = new WP_Statistics();
|
123 |
|
124 |
if( $search_engine == 'google' ) {
|
125 |
-
|
126 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%google.com%' AND `last_counter` = '{$s->Current_Date('Y-m-d')}'");
|
127 |
-
|
128 |
} else if( $search_engine == 'yahoo' ) {
|
129 |
-
|
130 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%yahoo.com%' AND `last_counter` = '{$s->Current_Date('Y-m-d')}'");
|
131 |
-
|
132 |
} else if( $search_engine == 'bing' ) {
|
133 |
-
|
134 |
-
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%bing.com%' AND `last_counter` = '{$s->Current_Date('Y-m-d')}'");
|
135 |
-
|
136 |
} else {
|
|
|
|
|
137 |
|
138 |
-
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
}
|
141 |
|
142 |
return $result;
|
115 |
return $result;
|
116 |
}
|
117 |
|
118 |
+
function wp_statistics_searchengine($search_engine = 'all', $time = 'total') {
|
119 |
|
120 |
global $wpdb, $table_prefix;
|
121 |
|
122 |
$s = new WP_Statistics();
|
123 |
|
124 |
if( $search_engine == 'google' ) {
|
125 |
+
$search_engine = "`referred` LIKE '%google.com%'";
|
|
|
|
|
126 |
} else if( $search_engine == 'yahoo' ) {
|
127 |
+
$search_engine = "`referred` LIKE '%yahoo.com%'";
|
|
|
|
|
128 |
} else if( $search_engine == 'bing' ) {
|
129 |
+
$search_engine = "`referred` LIKE '%bing.com%'";
|
|
|
|
|
130 |
} else {
|
131 |
+
$search_engine = "`referred` LIKE '%google.com%' OR `referred` LIKE '%yahoo.com%' OR `referred` LIKE '%bing.com%'";
|
132 |
+
}
|
133 |
|
134 |
+
switch($time) {
|
135 |
+
case 'today':
|
136 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d')}' AND {$search_engine}");
|
137 |
+
break;
|
138 |
+
|
139 |
+
case 'yesterday':
|
140 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -1)}' AND {$search_engine}");
|
141 |
+
|
142 |
+
break;
|
143 |
+
|
144 |
+
case 'week':
|
145 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -7)}' AND {$search_engine}");
|
146 |
+
|
147 |
+
break;
|
148 |
+
|
149 |
+
case 'month':
|
150 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -30)}' AND {$search_engine}");
|
151 |
+
|
152 |
+
break;
|
153 |
+
|
154 |
+
case 'year':
|
155 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', -360)}' AND {$search_engine}");
|
156 |
+
|
157 |
+
break;
|
158 |
+
|
159 |
+
case 'total':
|
160 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_engine}");
|
161 |
+
|
162 |
+
break;
|
163 |
+
|
164 |
+
default:
|
165 |
+
$result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$s->Current_Date('Y-m-d', $time)}' AND {$search_engine}");
|
166 |
+
|
167 |
+
break;
|
168 |
}
|
169 |
|
170 |
return $result;
|
includes/log/log.php
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
<tbody>
|
21 |
<tr>
|
22 |
<th><?php _e('User Online', 'wp_statistics'); ?>:</th>
|
23 |
-
<th colspan="2" id="
|
24 |
</tr>
|
25 |
|
26 |
<tr>
|
@@ -64,6 +64,39 @@
|
|
64 |
<th class="th-center"><span><?php echo wp_statistics_visitor('total'); ?></span></th>
|
65 |
<th class="th-center"><span><?php echo wp_statistics_visit('total'); ?></span></th>
|
66 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
</tbody>
|
68 |
</table>
|
69 |
|
@@ -261,14 +294,15 @@
|
|
261 |
visit_chart = new Highcharts.Chart({
|
262 |
chart: {
|
263 |
renderTo: 'visits-log',
|
264 |
-
type: '
|
265 |
-
backgroundColor: '#F8F8F8'
|
|
|
266 |
},
|
267 |
credits: {
|
268 |
enabled: false
|
269 |
},
|
270 |
title: {
|
271 |
-
text: '<?php _e('
|
272 |
style: {
|
273 |
fontSize: '12px',
|
274 |
fontFamily: 'Tahoma',
|
@@ -340,6 +374,107 @@
|
|
340 |
|
341 |
</div>
|
342 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
|
344 |
<div class="postbox">
|
345 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
20 |
<tbody>
|
21 |
<tr>
|
22 |
<th><?php _e('User Online', 'wp_statistics'); ?>:</th>
|
23 |
+
<th colspan="2" id="th-colspan"><span><?php echo wp_statistics_useronline(); ?></span></th>
|
24 |
</tr>
|
25 |
|
26 |
<tr>
|
64 |
<th class="th-center"><span><?php echo wp_statistics_visitor('total'); ?></span></th>
|
65 |
<th class="th-center"><span><?php echo wp_statistics_visit('total'); ?></span></th>
|
66 |
</tr>
|
67 |
+
|
68 |
+
<tr>
|
69 |
+
<th colspan="3"><?php _e('Search Engine reffered', 'wp_statistics'); ?>:</th>
|
70 |
+
</tr>
|
71 |
+
|
72 |
+
<tr>
|
73 |
+
<th width="60%"></th>
|
74 |
+
<th class="th-center"><?php _e('Today', 'wp_statistics'); ?></th>
|
75 |
+
<th class="th-center"><?php _e('Yesterday', 'wp_statistics'); ?></th>
|
76 |
+
</tr>
|
77 |
+
|
78 |
+
<tr>
|
79 |
+
<th><?php _e('Google', 'wp_statistics'); ?>:</th>
|
80 |
+
<th class="th-center"><span><?php echo wp_statistics_searchengine('google', 'today'); ?></span></th>
|
81 |
+
<th class="th-center"><span><?php echo wp_statistics_searchengine('google', 'yesterday'); ?></span></th>
|
82 |
+
</tr>
|
83 |
+
|
84 |
+
<tr>
|
85 |
+
<th><?php _e('Yahoo!', 'wp_statistics'); ?>:</th>
|
86 |
+
<th class="th-center"><span><?php echo wp_statistics_searchengine('yahoo', 'today'); ?></span></th>
|
87 |
+
<th class="th-center"><span><?php echo wp_statistics_searchengine('yahoo', 'yesterday'); ?></span></th>
|
88 |
+
</tr>
|
89 |
+
|
90 |
+
<tr>
|
91 |
+
<th><?php _e('Bing', 'wp_statistics'); ?>:</th>
|
92 |
+
<th class="th-center"><span><?php echo wp_statistics_searchengine('bing', 'today'); ?></span></th>
|
93 |
+
<th class="th-center"><span><?php echo wp_statistics_searchengine('bing', 'yesterday'); ?></span></th>
|
94 |
+
</tr>
|
95 |
+
|
96 |
+
<tr>
|
97 |
+
<th><?php _e('Total', 'wp_statistics'); ?>:</th>
|
98 |
+
<th colspan="2" id="th-colspan"><span><?php echo wp_statistics_searchengine('all'); ?></span></th>
|
99 |
+
</tr>
|
100 |
</tbody>
|
101 |
</table>
|
102 |
|
294 |
visit_chart = new Highcharts.Chart({
|
295 |
chart: {
|
296 |
renderTo: 'visits-log',
|
297 |
+
type: '<?php echo get_option('wps_chart_type'); ?>',
|
298 |
+
backgroundColor: '#F8F8F8',
|
299 |
+
height: '300'
|
300 |
},
|
301 |
credits: {
|
302 |
enabled: false
|
303 |
},
|
304 |
title: {
|
305 |
+
text: '<?php _e('Hits chart in the last 20 days', 'wp_statistics'); ?>',
|
306 |
style: {
|
307 |
fontSize: '12px',
|
308 |
fontFamily: 'Tahoma',
|
374 |
|
375 |
</div>
|
376 |
</div>
|
377 |
+
|
378 |
+
<div class="postbox">
|
379 |
+
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
380 |
+
<h3 class="hndle"><span><?php _e('Statistical Chart', 'wp_statistics'); ?></span></h3>
|
381 |
+
<div class="inside">
|
382 |
+
<script type="text/javascript">
|
383 |
+
var visit_chart;
|
384 |
+
jQuery(document).ready(function() {
|
385 |
+
visit_chart = new Highcharts.Chart({
|
386 |
+
chart: {
|
387 |
+
renderTo: 'search-engine-log',
|
388 |
+
type: '<?php echo get_option('wps_chart_type'); ?>',
|
389 |
+
backgroundColor: '#F8F8F8',
|
390 |
+
height: '300'
|
391 |
+
},
|
392 |
+
credits: {
|
393 |
+
enabled: false
|
394 |
+
},
|
395 |
+
title: {
|
396 |
+
text: '<?php _e('Referrer search engine chart in the last 20 days', 'wp_statistics'); ?>',
|
397 |
+
style: {
|
398 |
+
fontSize: '12px',
|
399 |
+
fontFamily: 'Tahoma',
|
400 |
+
fontWeight: 'bold'
|
401 |
+
}
|
402 |
+
},
|
403 |
+
xAxis: {
|
404 |
+
type: 'datetime',
|
405 |
+
categories: [
|
406 |
+
<?php
|
407 |
+
for( $i=20; $i>=0; $i--) {
|
408 |
+
echo '"'.$s->Current_Date('m/d', '-'.$i).'"';
|
409 |
+
echo ", ";
|
410 |
+
}
|
411 |
+
?>]
|
412 |
+
},
|
413 |
+
yAxis: {
|
414 |
+
title: {
|
415 |
+
text: '<?php _e('Number of referrer', 'wp_statistics'); ?>',
|
416 |
+
style: {
|
417 |
+
fontSize: '12px',
|
418 |
+
fontFamily: 'Tahoma'
|
419 |
+
}
|
420 |
+
}
|
421 |
+
},
|
422 |
+
<?php if( is_rtl() ) { ?>
|
423 |
+
legend: {
|
424 |
+
rtl: true,
|
425 |
+
itemStyle: {
|
426 |
+
fontSize: '11px',
|
427 |
+
fontFamily: 'Tahoma'
|
428 |
+
}
|
429 |
+
},
|
430 |
+
<?php } ?>
|
431 |
+
tooltip: {
|
432 |
+
crosshairs: true,
|
433 |
+
shared: true,
|
434 |
+
style: {
|
435 |
+
fontSize: '12px',
|
436 |
+
fontFamily: 'Tahoma'
|
437 |
+
},
|
438 |
+
useHTML: true
|
439 |
+
},
|
440 |
+
series: [{
|
441 |
+
name: '<?php _e('Google', 'wp_statistics'); ?>',
|
442 |
+
data: [
|
443 |
+
<?php
|
444 |
+
for( $i=20; $i>=0; $i--) {
|
445 |
+
echo wp_statistics_searchengine('google', '-'.$i);
|
446 |
+
echo ", ";
|
447 |
+
}
|
448 |
+
?>]
|
449 |
+
},
|
450 |
+
{
|
451 |
+
name: '<?php _e('Yahoo!', 'wp_statistics'); ?>',
|
452 |
+
data: [
|
453 |
+
<?php
|
454 |
+
for( $i=20; $i>=0; $i--) {
|
455 |
+
echo wp_statistics_searchengine('yahoo', '-'.$i);
|
456 |
+
echo ", ";
|
457 |
+
}
|
458 |
+
?>]
|
459 |
+
},
|
460 |
+
{
|
461 |
+
name: '<?php _e('Bing', 'wp_statistics'); ?>',
|
462 |
+
data: [
|
463 |
+
<?php
|
464 |
+
for( $i=20; $i>=0; $i--) {
|
465 |
+
echo wp_statistics_searchengine('bing', '-'.$i);
|
466 |
+
echo ", ";
|
467 |
+
}
|
468 |
+
?>]
|
469 |
+
}]
|
470 |
+
});
|
471 |
+
});
|
472 |
+
</script>
|
473 |
+
|
474 |
+
<div id="search-engine-log"></div>
|
475 |
+
|
476 |
+
</div>
|
477 |
+
</div>
|
478 |
|
479 |
<div class="postbox">
|
480 |
<div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
|
includes/setting/settings.php
CHANGED
@@ -82,6 +82,30 @@
|
|
82 |
</th>
|
83 |
</tr>
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
<tr valign="top">
|
86 |
<th scope="row" colspan="2"><h3><?php _e('Statistical reporting settings', 'wp_statistics'); ?></h3></th>
|
87 |
</tr>
|
82 |
</th>
|
83 |
</tr>
|
84 |
|
85 |
+
<tr valign="top">
|
86 |
+
<th scope="row" colspan="2"><h3><?php _e('Chart Settings', 'wp_statistics'); ?></h3></th>
|
87 |
+
</tr>
|
88 |
+
|
89 |
+
<tr valign="top">
|
90 |
+
<th scope="row">
|
91 |
+
<label for="chart-type"><?php _e('Chart type', 'wp_statistics'); ?>:</label>
|
92 |
+
</th>
|
93 |
+
|
94 |
+
<th>
|
95 |
+
<select name="wps_chart_type" id="chart-type">
|
96 |
+
<option value="0" <?php selected(get_option('wps_chart_type'), '0'); ?>><?php _e('Please select.', 'wp_statistics'); ?></option>
|
97 |
+
<option value="line" <?php selected(get_option('wps_chart_type'), 'line'); ?>><?php _e('Line', 'wp_statistics'); ?></option>
|
98 |
+
<option value="spline" <?php selected(get_option('wps_chart_type'), 'spline'); ?>><?php _e('Spline', 'wp_statistics'); ?></option>
|
99 |
+
<option value="area" <?php selected(get_option('wps_chart_type'), 'area'); ?>><?php _e('Area', 'wp_statistics'); ?></option>
|
100 |
+
<option value="areaspline" <?php selected(get_option('wps_chart_type'), 'areaspline'); ?>><?php _e('Area Spline', 'wp_statistics'); ?></option>
|
101 |
+
<option value="column" <?php selected(get_option('wps_chart_type'), 'column'); ?>><?php _e('Column', 'wp_statistics'); ?></option>
|
102 |
+
<option value="bar" <?php selected(get_option('wps_chart_type'), 'bar'); ?>><?php _e('Bar', 'wp_statistics'); ?></option>
|
103 |
+
<option value="scatter" <?php selected(get_option('wps_chart_type'), 'scatter'); ?>><?php _e('Scatter', 'wp_statistics'); ?></option>
|
104 |
+
</select>
|
105 |
+
<p class="description"><?php _e('Chart type in view stats.', 'wp_statistics'); ?></p>
|
106 |
+
</th>
|
107 |
+
</tr>
|
108 |
+
|
109 |
<tr valign="top">
|
110 |
<th scope="row" colspan="2"><h3><?php _e('Statistical reporting settings', 'wp_statistics'); ?></h3></th>
|
111 |
</tr>
|
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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
|
20 |
#: F:\Program
|
21 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
22 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr ""
|
25 |
|
@@ -40,34 +40,34 @@ msgstr ""
|
|
40 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
41 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
|
42 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
43 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
44 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
45 |
msgid "User Online"
|
46 |
msgstr ""
|
47 |
|
48 |
#: F:\Program
|
49 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
50 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
51 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
52 |
msgid "Today Visit"
|
53 |
msgstr ""
|
54 |
|
55 |
#: F:\Program
|
56 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
57 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
58 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
59 |
msgid "Today Visitor"
|
60 |
msgstr ""
|
61 |
|
62 |
#: F:\Program
|
63 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
64 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
65 |
msgid "Yesterday Visit"
|
66 |
msgstr ""
|
67 |
|
68 |
#: F:\Program
|
69 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
70 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
71 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
72 |
msgid "Yesterday Visitor"
|
73 |
msgstr ""
|
@@ -92,20 +92,21 @@ msgstr ""
|
|
92 |
|
93 |
#: F:\Program
|
94 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
95 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
96 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
97 |
msgid "Total Visit"
|
98 |
msgstr ""
|
99 |
|
100 |
#: F:\Program
|
101 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
102 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
103 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
104 |
msgid "Total Visitor"
|
105 |
msgstr ""
|
106 |
|
107 |
#: F:\Program
|
108 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
|
|
109 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
110 |
msgid "Search Engine reffered"
|
111 |
msgstr ""
|
@@ -205,13 +206,13 @@ msgid "Yesterday visit"
|
|
205 |
msgstr ""
|
206 |
|
207 |
#: F:\Program
|
208 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
209 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
210 |
msgid "You do not have sufficient permissions to access this page."
|
211 |
msgstr ""
|
212 |
|
213 |
#: F:\Program
|
214 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
215 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
216 |
msgstr ""
|
217 |
|
@@ -226,7 +227,7 @@ msgstr ""
|
|
226 |
#: F:\Program
|
227 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
|
228 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
|
229 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
230 |
msgid "Latest search words"
|
231 |
msgstr ""
|
232 |
|
@@ -241,7 +242,9 @@ msgstr ""
|
|
241 |
#: F:\Program
|
242 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
|
243 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
244 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
245 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
246 |
msgid "Google"
|
247 |
msgstr ""
|
@@ -249,7 +252,9 @@ msgstr ""
|
|
249 |
#: F:\Program
|
250 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
|
251 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
252 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
253 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
254 |
msgid "Yahoo!"
|
255 |
msgstr ""
|
@@ -257,7 +262,9 @@ msgstr ""
|
|
257 |
#: F:\Program
|
258 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
259 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
260 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
261 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
262 |
msgid "Bing"
|
263 |
msgstr ""
|
@@ -266,12 +273,13 @@ msgstr ""
|
|
266 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
|
267 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
268 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
|
269 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
270 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
271 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
272 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
273 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
274 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
275 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
|
276 |
msgid "Click to toggle"
|
277 |
msgstr ""
|
@@ -279,8 +287,8 @@ msgstr ""
|
|
279 |
#: F:\Program
|
280 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
|
281 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
282 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
283 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
284 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
285 |
msgid "Map"
|
286 |
msgstr ""
|
@@ -302,43 +310,43 @@ msgstr ""
|
|
302 |
#: F:\Program
|
303 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
|
304 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
|
305 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
306 |
msgid "Recent Visitors"
|
307 |
msgstr ""
|
308 |
|
309 |
#: F:\Program
|
310 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
|
311 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
312 |
msgid "Firefox"
|
313 |
msgstr ""
|
314 |
|
315 |
#: F:\Program
|
316 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
317 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
318 |
msgid "IE"
|
319 |
msgstr ""
|
320 |
|
321 |
#: F:\Program
|
322 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
|
323 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
324 |
msgid "Ipad"
|
325 |
msgstr ""
|
326 |
|
327 |
#: F:\Program
|
328 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
|
329 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
330 |
msgid "Android"
|
331 |
msgstr ""
|
332 |
|
333 |
#: F:\Program
|
334 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
|
335 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
336 |
msgid "Chrome"
|
337 |
msgstr ""
|
338 |
|
339 |
#: F:\Program
|
340 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
|
341 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
342 |
msgid "Safari"
|
343 |
msgstr ""
|
344 |
|
@@ -349,7 +357,7 @@ msgstr ""
|
|
349 |
|
350 |
#: F:\Program
|
351 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
|
352 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
353 |
msgid "Other"
|
354 |
msgstr ""
|
355 |
|
@@ -360,23 +368,25 @@ msgstr ""
|
|
360 |
|
361 |
#: F:\Program
|
362 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
|
363 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
364 |
msgid "Visitor"
|
365 |
msgstr ""
|
366 |
|
367 |
#: F:\Program
|
368 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
|
369 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
370 |
msgid "Visit"
|
371 |
msgstr ""
|
372 |
|
373 |
#: F:\Program
|
374 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
|
|
|
375 |
msgid "Today"
|
376 |
msgstr ""
|
377 |
|
378 |
#: F:\Program
|
379 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
|
|
|
380 |
msgid "Yesterday"
|
381 |
msgstr ""
|
382 |
|
@@ -397,124 +407,136 @@ msgstr ""
|
|
397 |
|
398 |
#: F:\Program
|
399 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
|
|
|
400 |
msgid "Total"
|
401 |
msgstr ""
|
402 |
|
403 |
#: F:\Program
|
404 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
405 |
#, php-format
|
406 |
msgid ""
|
407 |
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
408 |
msgstr ""
|
409 |
|
410 |
#: F:\Program
|
411 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
412 |
msgid "(Adjustment)"
|
413 |
msgstr ""
|
414 |
|
415 |
#: F:\Program
|
416 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
417 |
msgid "Browsers"
|
418 |
msgstr ""
|
419 |
|
420 |
#: F:\Program
|
421 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
422 |
msgid "Graph of Browsers"
|
423 |
msgstr ""
|
424 |
|
425 |
#: F:\Program
|
426 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
427 |
msgid "Browser share"
|
428 |
msgstr ""
|
429 |
|
430 |
#: F:\Program
|
431 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
432 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
|
433 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
|
434 |
msgid "Top referring sites"
|
435 |
msgstr ""
|
436 |
|
437 |
#: F:\Program
|
438 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
439 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
440 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
441 |
msgid "(See more)"
|
442 |
msgstr ""
|
443 |
|
444 |
#: F:\Program
|
445 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
446 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
447 |
msgid "Reference"
|
448 |
msgstr ""
|
449 |
|
450 |
#: F:\Program
|
451 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
452 |
msgid "Address"
|
453 |
msgstr ""
|
454 |
|
455 |
#: F:\Program
|
456 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
457 |
msgid "About plugin"
|
458 |
msgstr ""
|
459 |
|
460 |
#: F:\Program
|
461 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
462 |
#, php-format
|
463 |
msgid "Plugin version: %s"
|
464 |
msgstr ""
|
465 |
|
466 |
#: F:\Program
|
467 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
468 |
msgid "Translations"
|
469 |
msgstr ""
|
470 |
|
471 |
#: F:\Program
|
472 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
473 |
msgid "Support"
|
474 |
msgstr ""
|
475 |
|
476 |
#: F:\Program
|
477 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
478 |
msgid "Farsi"
|
479 |
msgstr ""
|
480 |
|
481 |
#: F:\Program
|
482 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
483 |
msgid "Facebook"
|
484 |
msgstr ""
|
485 |
|
486 |
#: F:\Program
|
487 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
488 |
msgid "Weblog"
|
489 |
msgstr ""
|
490 |
|
491 |
#: F:\Program
|
492 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
493 |
msgid ""
|
494 |
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
495 |
"spread."
|
496 |
msgstr ""
|
497 |
|
498 |
#: F:\Program
|
499 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
500 |
msgid "Donate"
|
501 |
msgstr ""
|
502 |
|
503 |
#: F:\Program
|
504 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
505 |
msgid "Statistical Chart"
|
506 |
msgstr ""
|
507 |
|
508 |
#: F:\Program
|
509 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
510 |
-
msgid "
|
511 |
msgstr ""
|
512 |
|
513 |
#: F:\Program
|
514 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
515 |
msgid "Number of visits and visitors"
|
516 |
msgstr ""
|
517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: F:\Program
|
519 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
520 |
msgid "Referring sites from"
|
@@ -529,7 +551,7 @@ msgstr ""
|
|
529 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
|
530 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
|
531 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
532 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
533 |
msgid "Active"
|
534 |
msgstr ""
|
535 |
|
@@ -537,7 +559,7 @@ msgstr ""
|
|
537 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
538 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
|
539 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
540 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
541 |
msgid "Enable or disable this feature"
|
542 |
msgstr ""
|
543 |
|
@@ -600,62 +622,113 @@ msgstr ""
|
|
600 |
|
601 |
#: F:\Program
|
602 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
|
603 |
-
msgid "
|
604 |
msgstr ""
|
605 |
|
606 |
#: F:\Program
|
607 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
608 |
-
msgid "
|
609 |
msgstr ""
|
610 |
|
611 |
#: F:\Program
|
612 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
613 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
614 |
msgid "Please select."
|
615 |
msgstr ""
|
616 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
617 |
#: F:\Program
|
618 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
msgid "Hourly"
|
620 |
msgstr ""
|
621 |
|
622 |
#: F:\Program
|
623 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
624 |
msgid "Twice daily"
|
625 |
msgstr ""
|
626 |
|
627 |
#: F:\Program
|
628 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
629 |
msgid "daily"
|
630 |
msgstr ""
|
631 |
|
632 |
#: F:\Program
|
633 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
634 |
msgid "Select when receiving statistics report."
|
635 |
msgstr ""
|
636 |
|
637 |
#: F:\Program
|
638 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
639 |
msgid "Send Statistical reporting to"
|
640 |
msgstr ""
|
641 |
|
642 |
#: F:\Program
|
643 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
644 |
msgid "Email"
|
645 |
msgstr ""
|
646 |
|
647 |
#: F:\Program
|
648 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
649 |
msgid "SMS"
|
650 |
msgstr ""
|
651 |
|
652 |
#: F:\Program
|
653 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
654 |
msgid "Type Select Get Status Report."
|
655 |
msgstr ""
|
656 |
|
657 |
#: F:\Program
|
658 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
659 |
#, php-format
|
660 |
msgid ""
|
661 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -663,17 +736,17 @@ msgid ""
|
|
663 |
msgstr ""
|
664 |
|
665 |
#: F:\Program
|
666 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
667 |
msgid "Send Content Report"
|
668 |
msgstr ""
|
669 |
|
670 |
#: F:\Program
|
671 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
672 |
msgid "Enter the contents of the reports received."
|
673 |
msgstr ""
|
674 |
|
675 |
#: F:\Program
|
676 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
677 |
msgid "Input data:"
|
678 |
msgstr ""
|
679 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-16 17:25+0330\n"
|
6 |
+
"PO-Revision-Date: 2013-07-16 17:25+0330\n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: en\n"
|
19 |
|
20 |
#: F:\Program
|
21 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
22 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr ""
|
25 |
|
40 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
41 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
|
42 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
43 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
44 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
45 |
msgid "User Online"
|
46 |
msgstr ""
|
47 |
|
48 |
#: F:\Program
|
49 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
50 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
|
51 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
52 |
msgid "Today Visit"
|
53 |
msgstr ""
|
54 |
|
55 |
#: F:\Program
|
56 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
57 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
|
58 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
59 |
msgid "Today Visitor"
|
60 |
msgstr ""
|
61 |
|
62 |
#: F:\Program
|
63 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
64 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
65 |
msgid "Yesterday Visit"
|
66 |
msgstr ""
|
67 |
|
68 |
#: F:\Program
|
69 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
70 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
|
71 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
72 |
msgid "Yesterday Visitor"
|
73 |
msgstr ""
|
92 |
|
93 |
#: F:\Program
|
94 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
95 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
|
96 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
97 |
msgid "Total Visit"
|
98 |
msgstr ""
|
99 |
|
100 |
#: F:\Program
|
101 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
102 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:176
|
103 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
104 |
msgid "Total Visitor"
|
105 |
msgstr ""
|
106 |
|
107 |
#: F:\Program
|
108 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
109 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
|
110 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
111 |
msgid "Search Engine reffered"
|
112 |
msgstr ""
|
206 |
msgstr ""
|
207 |
|
208 |
#: F:\Program
|
209 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
|
210 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
|
211 |
msgid "You do not have sufficient permissions to access this page."
|
212 |
msgstr ""
|
213 |
|
214 |
#: F:\Program
|
215 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
|
216 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
217 |
msgstr ""
|
218 |
|
227 |
#: F:\Program
|
228 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
|
229 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
|
230 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
|
231 |
msgid "Latest search words"
|
232 |
msgstr ""
|
233 |
|
242 |
#: F:\Program
|
243 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
|
244 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
245 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:79
|
246 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
|
247 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:502
|
248 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
249 |
msgid "Google"
|
250 |
msgstr ""
|
252 |
#: F:\Program
|
253 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
|
254 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
255 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:85
|
256 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:451
|
257 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:504
|
258 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
259 |
msgid "Yahoo!"
|
260 |
msgstr ""
|
262 |
#: F:\Program
|
263 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
264 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
265 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:91
|
266 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:461
|
267 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
|
268 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
269 |
msgid "Bing"
|
270 |
msgstr ""
|
273 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
|
274 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
275 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
|
276 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:110
|
277 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
|
278 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
|
279 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
280 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
|
281 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
|
282 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:521
|
283 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
|
284 |
msgid "Click to toggle"
|
285 |
msgstr ""
|
287 |
#: F:\Program
|
288 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
|
289 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
290 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
|
291 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:538
|
292 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
293 |
msgid "Map"
|
294 |
msgstr ""
|
310 |
#: F:\Program
|
311 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
|
312 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
|
313 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
|
314 |
msgid "Recent Visitors"
|
315 |
msgstr ""
|
316 |
|
317 |
#: F:\Program
|
318 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
|
319 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
|
320 |
msgid "Firefox"
|
321 |
msgstr ""
|
322 |
|
323 |
#: F:\Program
|
324 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
325 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:189
|
326 |
msgid "IE"
|
327 |
msgstr ""
|
328 |
|
329 |
#: F:\Program
|
330 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
|
331 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:190
|
332 |
msgid "Ipad"
|
333 |
msgstr ""
|
334 |
|
335 |
#: F:\Program
|
336 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
|
337 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:191
|
338 |
msgid "Android"
|
339 |
msgstr ""
|
340 |
|
341 |
#: F:\Program
|
342 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
|
343 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:192
|
344 |
msgid "Chrome"
|
345 |
msgstr ""
|
346 |
|
347 |
#: F:\Program
|
348 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
|
349 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:193
|
350 |
msgid "Safari"
|
351 |
msgstr ""
|
352 |
|
357 |
|
358 |
#: F:\Program
|
359 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
|
360 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:194
|
361 |
msgid "Other"
|
362 |
msgstr ""
|
363 |
|
368 |
|
369 |
#: F:\Program
|
370 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
|
371 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:350
|
372 |
msgid "Visitor"
|
373 |
msgstr ""
|
374 |
|
375 |
#: F:\Program
|
376 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
|
377 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
|
378 |
msgid "Visit"
|
379 |
msgstr ""
|
380 |
|
381 |
#: F:\Program
|
382 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
|
383 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:74
|
384 |
msgid "Today"
|
385 |
msgstr ""
|
386 |
|
387 |
#: F:\Program
|
388 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
|
389 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
|
390 |
msgid "Yesterday"
|
391 |
msgstr ""
|
392 |
|
407 |
|
408 |
#: F:\Program
|
409 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
|
410 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:97
|
411 |
msgid "Total"
|
412 |
msgstr ""
|
413 |
|
414 |
#: F:\Program
|
415 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:103
|
416 |
#, php-format
|
417 |
msgid ""
|
418 |
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
419 |
msgstr ""
|
420 |
|
421 |
#: F:\Program
|
422 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
|
423 |
msgid "(Adjustment)"
|
424 |
msgstr ""
|
425 |
|
426 |
#: F:\Program
|
427 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
|
428 |
msgid "Browsers"
|
429 |
msgstr ""
|
430 |
|
431 |
#: F:\Program
|
432 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
433 |
msgid "Graph of Browsers"
|
434 |
msgstr ""
|
435 |
|
436 |
#: F:\Program
|
437 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:186
|
438 |
msgid "Browser share"
|
439 |
msgstr ""
|
440 |
|
441 |
#: F:\Program
|
442 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
|
443 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
|
444 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
|
445 |
msgid "Top referring sites"
|
446 |
msgstr ""
|
447 |
|
448 |
#: F:\Program
|
449 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
|
450 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
|
451 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
|
452 |
msgid "(See more)"
|
453 |
msgstr ""
|
454 |
|
455 |
#: F:\Program
|
456 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
|
457 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
458 |
msgid "Reference"
|
459 |
msgstr ""
|
460 |
|
461 |
#: F:\Program
|
462 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
|
463 |
msgid "Address"
|
464 |
msgstr ""
|
465 |
|
466 |
#: F:\Program
|
467 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:253
|
468 |
msgid "About plugin"
|
469 |
msgstr ""
|
470 |
|
471 |
#: F:\Program
|
472 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
|
473 |
#, php-format
|
474 |
msgid "Plugin version: %s"
|
475 |
msgstr ""
|
476 |
|
477 |
#: F:\Program
|
478 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
479 |
msgid "Translations"
|
480 |
msgstr ""
|
481 |
|
482 |
#: F:\Program
|
483 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
|
484 |
msgid "Support"
|
485 |
msgstr ""
|
486 |
|
487 |
#: F:\Program
|
488 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
|
489 |
msgid "Farsi"
|
490 |
msgstr ""
|
491 |
|
492 |
#: F:\Program
|
493 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
|
494 |
msgid "Facebook"
|
495 |
msgstr ""
|
496 |
|
497 |
#: F:\Program
|
498 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
|
499 |
msgid "Weblog"
|
500 |
msgstr ""
|
501 |
|
502 |
#: F:\Program
|
503 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
|
504 |
msgid ""
|
505 |
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
506 |
"spread."
|
507 |
msgstr ""
|
508 |
|
509 |
#: F:\Program
|
510 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
|
511 |
msgid "Donate"
|
512 |
msgstr ""
|
513 |
|
514 |
#: F:\Program
|
515 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:289
|
516 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
|
517 |
msgid "Statistical Chart"
|
518 |
msgstr ""
|
519 |
|
520 |
#: F:\Program
|
521 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
|
522 |
+
msgid "Hits chart in the last 20 days"
|
523 |
msgstr ""
|
524 |
|
525 |
#: F:\Program
|
526 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
|
527 |
msgid "Number of visits and visitors"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: F:\Program
|
531 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:396
|
532 |
+
msgid "Referrer search engine chart in the last 20 days"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: F:\Program
|
536 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:415
|
537 |
+
msgid "Number of referrer"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
#: F:\Program
|
541 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
542 |
msgid "Referring sites from"
|
551 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
|
552 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
|
553 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
554 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
|
555 |
msgid "Active"
|
556 |
msgstr ""
|
557 |
|
559 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
560 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
|
561 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
562 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
|
563 |
msgid "Enable or disable this feature"
|
564 |
msgstr ""
|
565 |
|
622 |
|
623 |
#: F:\Program
|
624 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
|
625 |
+
msgid "Chart Settings"
|
626 |
msgstr ""
|
627 |
|
628 |
#: F:\Program
|
629 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
|
630 |
+
msgid "Chart type"
|
631 |
msgstr ""
|
632 |
|
633 |
#: F:\Program
|
634 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
|
635 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
|
636 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
|
637 |
msgid "Please select."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: F:\Program
|
641 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
|
642 |
+
msgid "Line"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: F:\Program
|
646 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
|
647 |
+
msgid "Spline"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: F:\Program
|
651 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
|
652 |
+
msgid "Area"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: F:\Program
|
656 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
|
657 |
+
msgid "Area Spline"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: F:\Program
|
661 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
|
662 |
+
msgid "Column"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: F:\Program
|
666 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
|
667 |
+
msgid "Bar"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: F:\Program
|
671 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
|
672 |
+
msgid "Scatter"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: F:\Program
|
676 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
|
677 |
+
msgid "Chart type in view stats."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
#: F:\Program
|
681 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
682 |
+
msgid "Statistical reporting settings"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: F:\Program
|
686 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
|
687 |
+
msgid "Time send"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: F:\Program
|
691 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:134
|
692 |
msgid "Hourly"
|
693 |
msgstr ""
|
694 |
|
695 |
#: F:\Program
|
696 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:135
|
697 |
msgid "Twice daily"
|
698 |
msgstr ""
|
699 |
|
700 |
#: F:\Program
|
701 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:136
|
702 |
msgid "daily"
|
703 |
msgstr ""
|
704 |
|
705 |
#: F:\Program
|
706 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
|
707 |
msgid "Select when receiving statistics report."
|
708 |
msgstr ""
|
709 |
|
710 |
#: F:\Program
|
711 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
|
712 |
msgid "Send Statistical reporting to"
|
713 |
msgstr ""
|
714 |
|
715 |
#: F:\Program
|
716 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
|
717 |
msgid "Email"
|
718 |
msgstr ""
|
719 |
|
720 |
#: F:\Program
|
721 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
|
722 |
msgid "SMS"
|
723 |
msgstr ""
|
724 |
|
725 |
#: F:\Program
|
726 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
|
727 |
msgid "Type Select Get Status Report."
|
728 |
msgstr ""
|
729 |
|
730 |
#: F:\Program
|
731 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
|
732 |
#, php-format
|
733 |
msgid ""
|
734 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
736 |
msgstr ""
|
737 |
|
738 |
#: F:\Program
|
739 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
|
740 |
msgid "Send Content Report"
|
741 |
msgstr ""
|
742 |
|
743 |
#: F:\Program
|
744 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
|
745 |
msgid "Enter the contents of the reports received."
|
746 |
msgstr ""
|
747 |
|
748 |
#: F:\Program
|
749 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
|
750 |
msgid "Input data:"
|
751 |
msgstr ""
|
752 |
|
languages/wp_statistics-fa_IR.mo
CHANGED
Binary file
|
languages/wp_statistics-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: <mat404@gmail.com>\n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
|
20 |
#: F:\Program
|
21 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
22 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr "گزارش آماری"
|
25 |
|
@@ -40,34 +40,34 @@ msgstr "نمایش آمار سایت در ابزارک"
|
|
40 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
41 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
|
42 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
43 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
44 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
45 |
msgid "User Online"
|
46 |
msgstr "کاربران حاضر"
|
47 |
|
48 |
#: F:\Program
|
49 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
50 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
51 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
52 |
msgid "Today Visit"
|
53 |
msgstr "بازدید امروز"
|
54 |
|
55 |
#: F:\Program
|
56 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
57 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
58 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
59 |
msgid "Today Visitor"
|
60 |
msgstr "بازدیدکننده امروز"
|
61 |
|
62 |
#: F:\Program
|
63 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
64 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
65 |
msgid "Yesterday Visit"
|
66 |
msgstr "بازدید دیروز"
|
67 |
|
68 |
#: F:\Program
|
69 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
70 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
71 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
72 |
msgid "Yesterday Visitor"
|
73 |
msgstr "بازدید کننده دیروز"
|
@@ -92,20 +92,21 @@ msgstr "بازدید سال"
|
|
92 |
|
93 |
#: F:\Program
|
94 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
95 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
96 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
97 |
msgid "Total Visit"
|
98 |
msgstr "کل بازدیدها"
|
99 |
|
100 |
#: F:\Program
|
101 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
102 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
103 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
104 |
msgid "Total Visitor"
|
105 |
msgstr "کل بازدیدکنندهگان"
|
106 |
|
107 |
#: F:\Program
|
108 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
|
|
109 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
110 |
msgid "Search Engine reffered"
|
111 |
msgstr "ورودی موتور جستجو"
|
@@ -207,13 +208,13 @@ msgid "Yesterday visit"
|
|
207 |
msgstr "بازدید دیروز"
|
208 |
|
209 |
#: F:\Program
|
210 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
211 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
212 |
msgid "You do not have sufficient permissions to access this page."
|
213 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
214 |
|
215 |
#: F:\Program
|
216 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:
|
217 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
218 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
219 |
|
@@ -228,7 +229,7 @@ msgstr "به زودی اضافه می شود"
|
|
228 |
#: F:\Program
|
229 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
|
230 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
|
231 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
232 |
msgid "Latest search words"
|
233 |
msgstr "آخرین کلمات جستجو شده"
|
234 |
|
@@ -242,24 +243,30 @@ msgstr "همه"
|
|
242 |
|
243 |
#: F:\Program
|
244 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
|
245 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
246 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
247 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
248 |
msgid "Google"
|
249 |
msgstr "گوگل"
|
250 |
|
251 |
#: F:\Program
|
252 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
|
253 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
254 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
255 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
256 |
msgid "Yahoo!"
|
257 |
msgstr "یاهو!"
|
258 |
|
259 |
#: F:\Program
|
260 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
261 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
262 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
|
|
263 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
264 |
msgid "Bing"
|
265 |
msgstr "بینگ"
|
@@ -268,34 +275,35 @@ msgstr "بینگ"
|
|
268 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
|
269 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
270 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
|
271 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
272 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
273 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
274 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
275 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
276 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
277 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
|
278 |
msgid "Click to toggle"
|
279 |
msgstr "برای باز و بستن کلیک کنید"
|
280 |
|
281 |
#: F:\Program
|
282 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
283 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
284 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
285 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
286 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
287 |
msgid "Map"
|
288 |
msgstr "نقشه"
|
289 |
|
290 |
#: F:\Program
|
291 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
292 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
293 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
294 |
msgid "Page"
|
295 |
msgstr "صفحه"
|
296 |
|
297 |
#: F:\Program
|
298 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:
|
299 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
300 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
301 |
msgid "From"
|
@@ -304,43 +312,43 @@ msgstr "از"
|
|
304 |
#: F:\Program
|
305 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
|
306 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
|
307 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
308 |
msgid "Recent Visitors"
|
309 |
msgstr "آخرین بازدیدکنندگان"
|
310 |
|
311 |
#: F:\Program
|
312 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
|
313 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
314 |
msgid "Firefox"
|
315 |
msgstr "فایرفاکس"
|
316 |
|
317 |
#: F:\Program
|
318 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
319 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
320 |
msgid "IE"
|
321 |
msgstr "اینترنت اکسپلورر"
|
322 |
|
323 |
#: F:\Program
|
324 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
|
325 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
326 |
msgid "Ipad"
|
327 |
msgstr "آیپَد"
|
328 |
|
329 |
#: F:\Program
|
330 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
|
331 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
332 |
msgid "Android"
|
333 |
msgstr "اندروید"
|
334 |
|
335 |
#: F:\Program
|
336 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
|
337 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
338 |
msgid "Chrome"
|
339 |
msgstr "کروم"
|
340 |
|
341 |
#: F:\Program
|
342 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
|
343 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
344 |
msgid "Safari"
|
345 |
msgstr "سافاری"
|
346 |
|
@@ -351,7 +359,7 @@ msgstr "اوپِرا"
|
|
351 |
|
352 |
#: F:\Program
|
353 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
|
354 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
355 |
msgid "Other"
|
356 |
msgstr "بقیه"
|
357 |
|
@@ -362,23 +370,25 @@ msgstr "خلاصه آمار"
|
|
362 |
|
363 |
#: F:\Program
|
364 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
|
365 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
366 |
msgid "Visitor"
|
367 |
msgstr "بازدیدکننده"
|
368 |
|
369 |
#: F:\Program
|
370 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
|
371 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
372 |
msgid "Visit"
|
373 |
msgstr "بازدید"
|
374 |
|
375 |
#: F:\Program
|
376 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
|
|
|
377 |
msgid "Today"
|
378 |
msgstr "امروز"
|
379 |
|
380 |
#: F:\Program
|
381 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
|
|
|
382 |
msgid "Yesterday"
|
383 |
msgstr "دیروز"
|
384 |
|
@@ -399,99 +409,100 @@ msgstr "سال"
|
|
399 |
|
400 |
#: F:\Program
|
401 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
|
|
|
402 |
msgid "Total"
|
403 |
msgstr "کل"
|
404 |
|
405 |
#: F:\Program
|
406 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
410 |
msgstr "امروز: <code dir=\"ltr\">%s</code>, ساعت: <code dir=\"ltr\">%s</code>"
|
411 |
|
412 |
#: F:\Program
|
413 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
414 |
msgid "(Adjustment)"
|
415 |
msgstr "(تنظیم)"
|
416 |
|
417 |
#: F:\Program
|
418 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
419 |
msgid "Browsers"
|
420 |
msgstr "مرورگرها"
|
421 |
|
422 |
#: F:\Program
|
423 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
424 |
msgid "Graph of Browsers"
|
425 |
msgstr "نمودار سهم مرورگرها"
|
426 |
|
427 |
#: F:\Program
|
428 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
429 |
msgid "Browser share"
|
430 |
msgstr "سهم مرورگر"
|
431 |
|
432 |
#: F:\Program
|
433 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
434 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
|
435 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
|
436 |
msgid "Top referring sites"
|
437 |
msgstr "بهترین سایت های ارجاع دهنده"
|
438 |
|
439 |
#: F:\Program
|
440 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
441 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
442 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
443 |
msgid "(See more)"
|
444 |
msgstr "(مشاهده بیشتر)"
|
445 |
|
446 |
#: F:\Program
|
447 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
448 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
449 |
msgid "Reference"
|
450 |
msgstr "ارجاع"
|
451 |
|
452 |
#: F:\Program
|
453 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
454 |
msgid "Address"
|
455 |
msgstr "آدرس"
|
456 |
|
457 |
#: F:\Program
|
458 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
459 |
msgid "About plugin"
|
460 |
msgstr "درباره افزونه آماره"
|
461 |
|
462 |
#: F:\Program
|
463 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
464 |
#, php-format
|
465 |
msgid "Plugin version: %s"
|
466 |
msgstr "نگارش افزونه: %s"
|
467 |
|
468 |
#: F:\Program
|
469 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
470 |
msgid "Translations"
|
471 |
msgstr "ترجمهها"
|
472 |
|
473 |
#: F:\Program
|
474 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
475 |
msgid "Support"
|
476 |
msgstr "پشتیبانی"
|
477 |
|
478 |
#: F:\Program
|
479 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
480 |
msgid "Farsi"
|
481 |
msgstr "فارسی"
|
482 |
|
483 |
#: F:\Program
|
484 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
485 |
msgid "Facebook"
|
486 |
msgstr "فیسبوک"
|
487 |
|
488 |
#: F:\Program
|
489 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
490 |
msgid "Weblog"
|
491 |
msgstr "وبلاگ"
|
492 |
|
493 |
#: F:\Program
|
494 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
495 |
msgid ""
|
496 |
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
497 |
"spread."
|
@@ -500,25 +511,36 @@ msgstr ""
|
|
500 |
"گسترش یابد."
|
501 |
|
502 |
#: F:\Program
|
503 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
504 |
msgid "Donate"
|
505 |
msgstr "حمایت"
|
506 |
|
507 |
#: F:\Program
|
508 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
|
|
509 |
msgid "Statistical Chart"
|
510 |
msgstr "نمودارهای آماری"
|
511 |
|
512 |
#: F:\Program
|
513 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
514 |
-
msgid "
|
515 |
-
msgstr "نمودار آمار در 20 روز گذشته"
|
516 |
|
517 |
#: F:\Program
|
518 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:
|
519 |
msgid "Number of visits and visitors"
|
520 |
msgstr "تعداد بازدید و بازدید کننده"
|
521 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
#: F:\Program
|
523 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
524 |
msgid "Referring sites from"
|
@@ -533,7 +555,7 @@ msgstr "تنظیمات عمومی"
|
|
533 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
|
534 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
|
535 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
536 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
537 |
msgid "Active"
|
538 |
msgstr "فعال"
|
539 |
|
@@ -541,7 +563,7 @@ msgstr "فعال"
|
|
541 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
542 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
|
543 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
544 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
545 |
msgid "Enable or disable this feature"
|
546 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
547 |
|
@@ -604,62 +626,113 @@ msgstr "تعداد محاسبه برای هربازدید. درحال حاضر %
|
|
604 |
|
605 |
#: F:\Program
|
606 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
|
607 |
-
msgid "
|
608 |
-
msgstr "تنظیمات
|
609 |
|
610 |
#: F:\Program
|
611 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
612 |
-
msgid "
|
613 |
-
msgstr "
|
614 |
|
615 |
#: F:\Program
|
616 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
617 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
|
|
618 |
msgid "Please select."
|
619 |
msgstr "لطفا انتخاب کنید."
|
620 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
621 |
#: F:\Program
|
622 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
msgid "Hourly"
|
624 |
msgstr "هرساعت"
|
625 |
|
626 |
#: F:\Program
|
627 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
628 |
msgid "Twice daily"
|
629 |
msgstr "2 بار در روز"
|
630 |
|
631 |
#: F:\Program
|
632 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
633 |
msgid "daily"
|
634 |
msgstr "روزانه"
|
635 |
|
636 |
#: F:\Program
|
637 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
638 |
msgid "Select when receiving statistics report."
|
639 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
640 |
|
641 |
#: F:\Program
|
642 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
643 |
msgid "Send Statistical reporting to"
|
644 |
msgstr "ارسال گزارش آمار به"
|
645 |
|
646 |
#: F:\Program
|
647 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
648 |
msgid "Email"
|
649 |
msgstr "پست الکترونیک"
|
650 |
|
651 |
#: F:\Program
|
652 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
653 |
msgid "SMS"
|
654 |
msgstr "پیامک"
|
655 |
|
656 |
#: F:\Program
|
657 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
658 |
msgid "Type Select Get Status Report."
|
659 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
660 |
|
661 |
#: F:\Program
|
662 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
663 |
#, php-format
|
664 |
msgid ""
|
665 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
@@ -669,17 +742,17 @@ msgstr ""
|
|
669 |
"وردپرس</a> را نصب کنید."
|
670 |
|
671 |
#: F:\Program
|
672 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
673 |
msgid "Send Content Report"
|
674 |
msgstr "محتوای ارسال گزارش"
|
675 |
|
676 |
#: F:\Program
|
677 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
678 |
msgid "Enter the contents of the reports received."
|
679 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
680 |
|
681 |
#: F:\Program
|
682 |
-
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:
|
683 |
msgid "Input data:"
|
684 |
msgstr "دادههای ورودی:"
|
685 |
|
@@ -713,6 +786,16 @@ msgstr "میلادی"
|
|
713 |
msgid "Persian"
|
714 |
msgstr "شمسی (فارسی)"
|
715 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
#~ msgid "Display IP Information On-screen statistics"
|
717 |
#~ msgstr "نمایش اطلاعات آی پی در صفحه نمایش آمار"
|
718 |
|
@@ -1051,9 +1134,6 @@ msgstr "شمسی (فارسی)"
|
|
1051 |
#~ msgid "(Disable)"
|
1052 |
#~ msgstr "(غیرفعال)"
|
1053 |
|
1054 |
-
#~ msgid "useronline"
|
1055 |
-
#~ msgstr "کاربران حاضر"
|
1056 |
-
|
1057 |
#~ msgid "Deactive plugin"
|
1058 |
#~ msgstr "غیرفعالسازی افزونه"
|
1059 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wp-statistics\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-07-16 17:20+0330\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
"Language-Team: <mat404@gmail.com>\n"
|
19 |
|
20 |
#: F:\Program
|
21 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
22 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:115
|
23 |
msgid "Statistical reporting"
|
24 |
msgstr "گزارش آماری"
|
25 |
|
40 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
41 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
|
42 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
43 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:171
|
44 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
45 |
msgid "User Online"
|
46 |
msgstr "کاربران حاضر"
|
47 |
|
48 |
#: F:\Program
|
49 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
50 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:173
|
51 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
52 |
msgid "Today Visit"
|
53 |
msgstr "بازدید امروز"
|
54 |
|
55 |
#: F:\Program
|
56 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
57 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:172
|
58 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
59 |
msgid "Today Visitor"
|
60 |
msgstr "بازدیدکننده امروز"
|
61 |
|
62 |
#: F:\Program
|
63 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
64 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:175
|
65 |
msgid "Yesterday Visit"
|
66 |
msgstr "بازدید دیروز"
|
67 |
|
68 |
#: F:\Program
|
69 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
70 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:174
|
71 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
72 |
msgid "Yesterday Visitor"
|
73 |
msgstr "بازدید کننده دیروز"
|
92 |
|
93 |
#: F:\Program
|
94 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
95 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:177
|
96 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
97 |
msgid "Total Visit"
|
98 |
msgstr "کل بازدیدها"
|
99 |
|
100 |
#: F:\Program
|
101 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
102 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:176
|
103 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
104 |
msgid "Total Visitor"
|
105 |
msgstr "کل بازدیدکنندهگان"
|
106 |
|
107 |
#: F:\Program
|
108 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
109 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:69
|
110 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
111 |
msgid "Search Engine reffered"
|
112 |
msgstr "ورودی موتور جستجو"
|
208 |
msgstr "بازدید دیروز"
|
209 |
|
210 |
#: F:\Program
|
211 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:145
|
212 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:218
|
213 |
msgid "You do not have sufficient permissions to access this page."
|
214 |
msgstr "شما مجوز کافی برای مشاهدهی این قسمت را ندارید."
|
215 |
|
216 |
#: F:\Program
|
217 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:155
|
218 |
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
219 |
msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
|
220 |
|
229 |
#: F:\Program
|
230 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
|
231 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
|
232 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
|
233 |
msgid "Latest search words"
|
234 |
msgstr "آخرین کلمات جستجو شده"
|
235 |
|
243 |
|
244 |
#: F:\Program
|
245 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
|
246 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
247 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:79
|
248 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:441
|
249 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:502
|
250 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
251 |
msgid "Google"
|
252 |
msgstr "گوگل"
|
253 |
|
254 |
#: F:\Program
|
255 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
|
256 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
257 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:85
|
258 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:451
|
259 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:504
|
260 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
261 |
msgid "Yahoo!"
|
262 |
msgstr "یاهو!"
|
263 |
|
264 |
#: F:\Program
|
265 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
266 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
267 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:91
|
268 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:461
|
269 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:506
|
270 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
271 |
msgid "Bing"
|
272 |
msgstr "بینگ"
|
275 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
|
276 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
277 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
|
278 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:110
|
279 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:208
|
280 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:252
|
281 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
|
282 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:379
|
283 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:480
|
284 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:521
|
285 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
|
286 |
msgid "Click to toggle"
|
287 |
msgstr "برای باز و بستن کلیک کنید"
|
288 |
|
289 |
#: F:\Program
|
290 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
|
291 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
292 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:499
|
293 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:538
|
294 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
295 |
msgid "Map"
|
296 |
msgstr "نقشه"
|
297 |
|
298 |
#: F:\Program
|
299 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
|
300 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
301 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
302 |
msgid "Page"
|
303 |
msgstr "صفحه"
|
304 |
|
305 |
#: F:\Program
|
306 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
|
307 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
308 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
309 |
msgid "From"
|
312 |
#: F:\Program
|
313 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
|
314 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
|
315 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
|
316 |
msgid "Recent Visitors"
|
317 |
msgstr "آخرین بازدیدکنندگان"
|
318 |
|
319 |
#: F:\Program
|
320 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
|
321 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:188
|
322 |
msgid "Firefox"
|
323 |
msgstr "فایرفاکس"
|
324 |
|
325 |
#: F:\Program
|
326 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
327 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:189
|
328 |
msgid "IE"
|
329 |
msgstr "اینترنت اکسپلورر"
|
330 |
|
331 |
#: F:\Program
|
332 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
|
333 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:190
|
334 |
msgid "Ipad"
|
335 |
msgstr "آیپَد"
|
336 |
|
337 |
#: F:\Program
|
338 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
|
339 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:191
|
340 |
msgid "Android"
|
341 |
msgstr "اندروید"
|
342 |
|
343 |
#: F:\Program
|
344 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
|
345 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:192
|
346 |
msgid "Chrome"
|
347 |
msgstr "کروم"
|
348 |
|
349 |
#: F:\Program
|
350 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
|
351 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:193
|
352 |
msgid "Safari"
|
353 |
msgstr "سافاری"
|
354 |
|
359 |
|
360 |
#: F:\Program
|
361 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
|
362 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:194
|
363 |
msgid "Other"
|
364 |
msgstr "بقیه"
|
365 |
|
370 |
|
371 |
#: F:\Program
|
372 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
|
373 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:350
|
374 |
msgid "Visitor"
|
375 |
msgstr "بازدیدکننده"
|
376 |
|
377 |
#: F:\Program
|
378 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
|
379 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:360
|
380 |
msgid "Visit"
|
381 |
msgstr "بازدید"
|
382 |
|
383 |
#: F:\Program
|
384 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
|
385 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:74
|
386 |
msgid "Today"
|
387 |
msgstr "امروز"
|
388 |
|
389 |
#: F:\Program
|
390 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
|
391 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:75
|
392 |
msgid "Yesterday"
|
393 |
msgstr "دیروز"
|
394 |
|
409 |
|
410 |
#: F:\Program
|
411 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
|
412 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:97
|
413 |
msgid "Total"
|
414 |
msgstr "کل"
|
415 |
|
416 |
#: F:\Program
|
417 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:103
|
418 |
#, php-format
|
419 |
msgid ""
|
420 |
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
421 |
msgstr "امروز: <code dir=\"ltr\">%s</code>, ساعت: <code dir=\"ltr\">%s</code>"
|
422 |
|
423 |
#: F:\Program
|
424 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:105
|
425 |
msgid "(Adjustment)"
|
426 |
msgstr "(تنظیم)"
|
427 |
|
428 |
#: F:\Program
|
429 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
|
430 |
msgid "Browsers"
|
431 |
msgstr "مرورگرها"
|
432 |
|
433 |
#: F:\Program
|
434 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
|
435 |
msgid "Graph of Browsers"
|
436 |
msgstr "نمودار سهم مرورگرها"
|
437 |
|
438 |
#: F:\Program
|
439 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:186
|
440 |
msgid "Browser share"
|
441 |
msgstr "سهم مرورگر"
|
442 |
|
443 |
#: F:\Program
|
444 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
|
445 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
|
446 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
|
447 |
msgid "Top referring sites"
|
448 |
msgstr "بهترین سایت های ارجاع دهنده"
|
449 |
|
450 |
#: F:\Program
|
451 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:210
|
452 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:482
|
453 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:523
|
454 |
msgid "(See more)"
|
455 |
msgstr "(مشاهده بیشتر)"
|
456 |
|
457 |
#: F:\Program
|
458 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:216
|
459 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
460 |
msgid "Reference"
|
461 |
msgstr "ارجاع"
|
462 |
|
463 |
#: F:\Program
|
464 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
|
465 |
msgid "Address"
|
466 |
msgstr "آدرس"
|
467 |
|
468 |
#: F:\Program
|
469 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:253
|
470 |
msgid "About plugin"
|
471 |
msgstr "درباره افزونه آماره"
|
472 |
|
473 |
#: F:\Program
|
474 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
|
475 |
#, php-format
|
476 |
msgid "Plugin version: %s"
|
477 |
msgstr "نگارش افزونه: %s"
|
478 |
|
479 |
#: F:\Program
|
480 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:257
|
481 |
msgid "Translations"
|
482 |
msgstr "ترجمهها"
|
483 |
|
484 |
#: F:\Program
|
485 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
|
486 |
msgid "Support"
|
487 |
msgstr "پشتیبانی"
|
488 |
|
489 |
#: F:\Program
|
490 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:258
|
491 |
msgid "Farsi"
|
492 |
msgstr "فارسی"
|
493 |
|
494 |
#: F:\Program
|
495 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:259
|
496 |
msgid "Facebook"
|
497 |
msgstr "فیسبوک"
|
498 |
|
499 |
#: F:\Program
|
500 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:260
|
501 |
msgid "Weblog"
|
502 |
msgstr "وبلاگ"
|
503 |
|
504 |
#: F:\Program
|
505 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:265
|
506 |
msgid ""
|
507 |
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
508 |
"spread."
|
511 |
"گسترش یابد."
|
512 |
|
513 |
#: F:\Program
|
514 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:268
|
515 |
msgid "Donate"
|
516 |
msgstr "حمایت"
|
517 |
|
518 |
#: F:\Program
|
519 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:289
|
520 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:380
|
521 |
msgid "Statistical Chart"
|
522 |
msgstr "نمودارهای آماری"
|
523 |
|
524 |
#: F:\Program
|
525 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:305
|
526 |
+
msgid "Hits chart in the last 20 days"
|
527 |
+
msgstr "نمودار آمار بازدید در 20 روز گذشته"
|
528 |
|
529 |
#: F:\Program
|
530 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:324
|
531 |
msgid "Number of visits and visitors"
|
532 |
msgstr "تعداد بازدید و بازدید کننده"
|
533 |
|
534 |
+
#: F:\Program
|
535 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:396
|
536 |
+
msgid "Referrer search engine chart in the last 20 days"
|
537 |
+
msgstr "نمودار آمار ورودی از موتورهای جستجو در 20 روز گذشته"
|
538 |
+
|
539 |
+
#: F:\Program
|
540 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:415
|
541 |
+
msgid "Number of referrer"
|
542 |
+
msgstr "تعداد ورودی"
|
543 |
+
|
544 |
#: F:\Program
|
545 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
546 |
msgid "Referring sites from"
|
555 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
|
556 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
|
557 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
558 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
|
559 |
msgid "Active"
|
560 |
msgstr "فعال"
|
561 |
|
563 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
564 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
|
565 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
566 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:121
|
567 |
msgid "Enable or disable this feature"
|
568 |
msgstr "فعال یا غیرفعال کردن این امکان"
|
569 |
|
626 |
|
627 |
#: F:\Program
|
628 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
|
629 |
+
msgid "Chart Settings"
|
630 |
+
msgstr "تنظیمات نمودار"
|
631 |
|
632 |
#: F:\Program
|
633 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
|
634 |
+
msgid "Chart type"
|
635 |
+
msgstr "نوع نمودار"
|
636 |
|
637 |
#: F:\Program
|
638 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
|
639 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:133
|
640 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
|
641 |
msgid "Please select."
|
642 |
msgstr "لطفا انتخاب کنید."
|
643 |
|
644 |
+
#: F:\Program
|
645 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
|
646 |
+
msgid "Line"
|
647 |
+
msgstr "خطی"
|
648 |
+
|
649 |
+
#: F:\Program
|
650 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:98
|
651 |
+
msgid "Spline"
|
652 |
+
msgstr "نوار باریک"
|
653 |
+
|
654 |
+
#: F:\Program
|
655 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:99
|
656 |
+
msgid "Area"
|
657 |
+
msgstr "خطی توپُر"
|
658 |
+
|
659 |
+
#: F:\Program
|
660 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:100
|
661 |
+
msgid "Area Spline"
|
662 |
+
msgstr "نوار توپُر"
|
663 |
+
|
664 |
+
#: F:\Program
|
665 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:101
|
666 |
+
msgid "Column"
|
667 |
+
msgstr "ستونی"
|
668 |
+
|
669 |
+
#: F:\Program
|
670 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:102
|
671 |
+
msgid "Bar"
|
672 |
+
msgstr "شِمشی"
|
673 |
+
|
674 |
+
#: F:\Program
|
675 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:103
|
676 |
+
msgid "Scatter"
|
677 |
+
msgstr "پراکنده"
|
678 |
+
|
679 |
+
#: F:\Program
|
680 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:105
|
681 |
+
msgid "Chart type in view stats."
|
682 |
+
msgstr "نوع نمودار در نمایش آمار."
|
683 |
+
|
684 |
#: F:\Program
|
685 |
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
686 |
+
msgid "Statistical reporting settings"
|
687 |
+
msgstr "تنظیمات گزارش آماری"
|
688 |
+
|
689 |
+
#: F:\Program
|
690 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:128
|
691 |
+
msgid "Time send"
|
692 |
+
msgstr "زمان ارسال"
|
693 |
+
|
694 |
+
#: F:\Program
|
695 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:134
|
696 |
msgid "Hourly"
|
697 |
msgstr "هرساعت"
|
698 |
|
699 |
#: F:\Program
|
700 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:135
|
701 |
msgid "Twice daily"
|
702 |
msgstr "2 بار در روز"
|
703 |
|
704 |
#: F:\Program
|
705 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:136
|
706 |
msgid "daily"
|
707 |
msgstr "روزانه"
|
708 |
|
709 |
#: F:\Program
|
710 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:138
|
711 |
msgid "Select when receiving statistics report."
|
712 |
msgstr "زمان دریافت گزارش آماری را انتخاب کنید."
|
713 |
|
714 |
#: F:\Program
|
715 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
|
716 |
msgid "Send Statistical reporting to"
|
717 |
msgstr "ارسال گزارش آمار به"
|
718 |
|
719 |
#: F:\Program
|
720 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
|
721 |
msgid "Email"
|
722 |
msgstr "پست الکترونیک"
|
723 |
|
724 |
#: F:\Program
|
725 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
|
726 |
msgid "SMS"
|
727 |
msgstr "پیامک"
|
728 |
|
729 |
#: F:\Program
|
730 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
|
731 |
msgid "Type Select Get Status Report."
|
732 |
msgstr "نوع دریافت گزارش آماری را انتخاب کنید."
|
733 |
|
734 |
#: F:\Program
|
735 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:156
|
736 |
#, php-format
|
737 |
msgid ""
|
738 |
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
742 |
"وردپرس</a> را نصب کنید."
|
743 |
|
744 |
#: F:\Program
|
745 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:163
|
746 |
msgid "Send Content Report"
|
747 |
msgstr "محتوای ارسال گزارش"
|
748 |
|
749 |
#: F:\Program
|
750 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:168
|
751 |
msgid "Enter the contents of the reports received."
|
752 |
msgstr "محتوای دریافت گزارش را وارد کنید."
|
753 |
|
754 |
#: F:\Program
|
755 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:170
|
756 |
msgid "Input data:"
|
757 |
msgstr "دادههای ورودی:"
|
758 |
|
786 |
msgid "Persian"
|
787 |
msgstr "شمسی (فارسی)"
|
788 |
|
789 |
+
#, fuzzy
|
790 |
+
#~ msgid "Search engine"
|
791 |
+
#~ msgstr "ورودی موتور جستجو"
|
792 |
+
|
793 |
+
#~ msgid "Pie"
|
794 |
+
#~ msgstr "ترکیبی"
|
795 |
+
|
796 |
+
#~ msgid "area"
|
797 |
+
#~ msgstr "مسطح"
|
798 |
+
|
799 |
#~ msgid "Display IP Information On-screen statistics"
|
800 |
#~ msgstr "نمایش اطلاعات آی پی در صفحه نمایش آمار"
|
801 |
|
1134 |
#~ msgid "(Disable)"
|
1135 |
#~ msgstr "(غیرفعال)"
|
1136 |
|
|
|
|
|
|
|
1137 |
#~ msgid "Deactive plugin"
|
1138 |
#~ msgstr "غیرفعالسازی افزونه"
|
1139 |
|
languages/wp_statistics-ru_RU.mo
CHANGED
Binary file
|
languages/wp_statistics-ru_RU.po
CHANGED
@@ -1,593 +1,688 @@
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-01-28 19:13+0330\n"
|
6 |
-
"PO-Revision-Date: 2013-01-28 19:13+0330\n"
|
7 |
-
"Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: ru\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=
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
#:
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "Statistical reporting"
|
26 |
-
msgstr "
|
27 |
|
28 |
-
|
29 |
-
#:
|
|
|
|
|
30 |
msgid "Statistics"
|
31 |
msgstr "Статистика"
|
32 |
|
33 |
-
|
34 |
-
#: widget.php:5
|
35 |
msgid "Show site stats in sidebar"
|
36 |
msgstr "Показать статистику в сайдбаре"
|
37 |
|
38 |
-
|
39 |
-
#:
|
40 |
-
#:
|
41 |
-
#: includes/
|
|
|
|
|
|
|
42 |
msgid "User Online"
|
43 |
msgstr "Посетителей онлайн"
|
44 |
|
45 |
-
|
46 |
-
#: widget.php:26
|
47 |
-
#: includes/setting/
|
|
|
48 |
msgid "Today Visit"
|
49 |
msgstr "Сегодня посетителей"
|
50 |
|
51 |
-
|
52 |
-
#: widget.php:33
|
53 |
-
#: includes/setting/
|
54 |
-
|
55 |
msgid "Today Visitor"
|
56 |
-
msgstr "
|
57 |
|
58 |
-
|
59 |
-
#: widget.php:40
|
|
|
60 |
msgid "Yesterday Visit"
|
61 |
msgstr "Вчера посетителей"
|
62 |
|
63 |
-
|
64 |
-
#: widget.php:47
|
65 |
-
#: includes/setting/
|
66 |
-
|
67 |
msgid "Yesterday Visitor"
|
68 |
-
msgstr "
|
69 |
|
70 |
-
|
71 |
-
#: widget.php:54
|
|
|
72 |
msgid "Week Visit"
|
73 |
msgstr "Посетителей за неделю"
|
74 |
|
75 |
-
|
76 |
-
#: widget.php:61
|
|
|
77 |
msgid "Month Visit"
|
78 |
msgstr "Посетителей за месяц"
|
79 |
|
80 |
-
|
81 |
-
#: widget.php:68
|
|
|
82 |
msgid "Years Visit"
|
83 |
msgstr "Посетителей за год"
|
84 |
|
85 |
-
|
86 |
-
#: widget.php:75
|
87 |
-
#: includes/setting/
|
|
|
88 |
msgid "Total Visit"
|
89 |
msgstr "Всего визитов"
|
90 |
|
91 |
-
|
92 |
-
#: widget.php:82
|
93 |
-
#: includes/setting/
|
94 |
-
|
95 |
msgid "Total Visitor"
|
96 |
-
msgstr "
|
97 |
|
98 |
-
|
99 |
-
#: widget.php:90
|
|
|
100 |
msgid "Search Engine reffered"
|
101 |
msgstr "Через какой поиск вы зашли"
|
102 |
|
103 |
-
|
104 |
-
#: widget.php:105
|
|
|
105 |
msgid "Total Posts"
|
106 |
msgstr "Всего записей"
|
107 |
|
108 |
-
|
109 |
-
#: widget.php:112
|
|
|
110 |
msgid "Total Pages"
|
111 |
msgstr "Всего страниц"
|
112 |
|
113 |
-
|
114 |
-
#: widget.php:119
|
|
|
115 |
msgid "Total Comments"
|
116 |
msgstr "Всего комментариев"
|
117 |
|
118 |
-
|
119 |
-
#: widget.php:126
|
|
|
120 |
msgid "Total Spams"
|
121 |
msgstr "Всего спама"
|
122 |
|
123 |
-
|
124 |
-
#: widget.php:133
|
|
|
125 |
msgid "Total Users"
|
126 |
msgstr "Всего участников"
|
127 |
|
128 |
-
|
129 |
-
#: widget.php:140
|
|
|
130 |
msgid "Average Posts"
|
131 |
msgstr "Среднее число записей"
|
132 |
|
133 |
-
|
134 |
-
#: widget.php:147
|
|
|
135 |
msgid "Average Comments"
|
136 |
msgstr "Среднее число комментариев"
|
137 |
|
138 |
-
|
139 |
-
#: widget.php:154
|
|
|
140 |
msgid "Average Users"
|
141 |
msgstr "Среднее число участников"
|
142 |
|
143 |
-
|
144 |
-
#: widget.php:161
|
|
|
145 |
msgid "Last Post Date"
|
146 |
msgstr "Последняя запись на сайте"
|
147 |
|
148 |
-
#:
|
|
|
|
|
149 |
msgid "View Stats"
|
150 |
msgstr ""
|
151 |
|
152 |
-
|
153 |
-
#: wp-statistics.php:
|
154 |
msgid "Settings"
|
155 |
msgstr "Настройки"
|
156 |
|
157 |
-
|
158 |
-
#: wp-statistics.php:
|
159 |
-
#, fuzzy
|
160 |
msgid "Today visitor"
|
161 |
-
msgstr "
|
162 |
|
163 |
-
|
164 |
-
#: wp-statistics.php:
|
165 |
-
#, fuzzy
|
166 |
msgid "Today visit"
|
167 |
-
msgstr "
|
168 |
|
169 |
-
|
170 |
-
#: wp-statistics.php:
|
171 |
-
#, fuzzy
|
172 |
msgid "Yesterday visitor"
|
173 |
-
msgstr "
|
174 |
|
175 |
-
|
176 |
-
#: wp-statistics
|
|
|
177 |
msgid "Yesterday visit"
|
178 |
msgstr "Вчера посетителей"
|
179 |
|
180 |
-
|
181 |
-
#: wp-statistics
|
|
|
182 |
msgid "You do not have sufficient permissions to access this page."
|
183 |
msgstr "У вас нет достаточных прав для доступа к этой странице."
|
184 |
|
185 |
-
#:
|
186 |
-
#:
|
187 |
-
#: includes/log/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
msgid "Click to toggle"
|
189 |
msgstr ""
|
190 |
|
191 |
-
|
192 |
-
#: includes/log/log.php:
|
193 |
-
#, fuzzy
|
194 |
msgid "Summary Statistics"
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#:
|
|
|
|
|
198 |
msgid "Visitor"
|
199 |
msgstr ""
|
200 |
|
201 |
-
|
202 |
-
#:
|
203 |
-
|
204 |
msgid "Visit"
|
205 |
-
msgstr "
|
206 |
|
207 |
-
|
208 |
-
#: includes/log/log.php:
|
209 |
-
#, fuzzy
|
210 |
msgid "Today"
|
211 |
-
msgstr "
|
212 |
|
213 |
-
|
214 |
-
#: includes/log/log.php:
|
215 |
-
#, fuzzy
|
216 |
msgid "Yesterday"
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#:
|
|
|
220 |
msgid "Week"
|
221 |
msgstr ""
|
222 |
|
223 |
-
|
224 |
-
#: includes/log/log.php:
|
225 |
-
#, fuzzy
|
226 |
msgid "Month"
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#:
|
|
|
230 |
msgid "Year"
|
231 |
msgstr ""
|
232 |
|
233 |
-
|
234 |
-
#: includes/log/log.php:
|
235 |
-
#, fuzzy
|
236 |
msgid "Total"
|
237 |
-
msgstr "
|
238 |
|
239 |
-
#:
|
240 |
-
|
241 |
-
msgid ""
|
242 |
-
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
|
|
246 |
msgid "(Adjustment)"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#:
|
|
|
250 |
msgid "Browsers"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
|
|
254 |
msgid "Graph of Browsers"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
|
|
258 |
msgid "Browser share"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
|
|
|
|
262 |
msgid "Firefox"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
|
|
|
|
266 |
msgid "IE"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
|
|
|
|
270 |
msgid "Ipad"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
|
|
|
|
274 |
msgid "Android"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
|
|
|
|
278 |
msgid "Chrome"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#:
|
|
|
|
|
282 |
msgid "Safari"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#:
|
|
|
|
|
286 |
msgid "Other"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#:
|
|
|
|
|
|
|
290 |
msgid "Top referring sites"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
|
|
|
|
294 |
msgid "Reference"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
|
|
298 |
msgid "Address"
|
299 |
msgstr ""
|
300 |
|
301 |
-
|
302 |
-
#: includes/log/log.php:
|
303 |
-
#, fuzzy
|
304 |
msgid "About plugin"
|
305 |
-
msgstr "Отключить плагин"
|
306 |
-
|
307 |
-
# @ wp_statistics
|
308 |
-
#: includes/log/log.php:213
|
309 |
-
#, fuzzy, php-format
|
310 |
-
msgid "Plugin version: %s"
|
311 |
-
msgstr "Переводчики плагина"
|
312 |
-
|
313 |
-
#: includes/log/log.php:214
|
314 |
-
msgid "Translation plugin languages"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#:
|
318 |
-
|
|
|
319 |
msgstr ""
|
320 |
|
321 |
-
#:
|
|
|
322 |
msgid "Weblog"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#:
|
326 |
-
|
327 |
-
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
328 |
-
"spread."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#:
|
|
|
332 |
msgid "Donate"
|
333 |
msgstr ""
|
334 |
|
335 |
-
|
336 |
-
#: includes/log/log.php:
|
337 |
-
#, fuzzy
|
338 |
msgid "Statistical Chart"
|
339 |
-
msgstr "
|
340 |
|
341 |
-
#:
|
|
|
342 |
msgid "Chart hit in the last 20 days"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#:
|
|
|
346 |
msgid "Number of visits and visitors"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#:
|
|
|
|
|
|
|
350 |
msgid "Latest search words"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#:
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
#:
|
358 |
-
msgid "Date"
|
359 |
-
msgstr ""
|
360 |
-
|
361 |
-
#: includes/log/log.php:341
|
362 |
-
msgid "Site"
|
363 |
-
msgstr ""
|
364 |
-
|
365 |
-
# @ wp_statistics
|
366 |
-
#: includes/log/log.php:354 includes/setting/widget.php:44
|
367 |
msgid "Google"
|
368 |
msgstr ""
|
369 |
|
370 |
-
|
371 |
-
#: includes/log/
|
|
|
|
|
|
|
372 |
msgid "Yahoo!"
|
373 |
msgstr ""
|
374 |
|
375 |
-
|
376 |
-
#: includes/log/
|
|
|
|
|
|
|
377 |
msgid "Bing"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#:
|
381 |
-
#: includes/log/
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
# @ wp_statistics
|
386 |
-
#: includes/log/log.php:375
|
387 |
-
#, fuzzy
|
388 |
msgid "Recent Visitors"
|
389 |
-
msgstr "Посетителей за неделю"
|
390 |
-
|
391 |
-
# @ wp_statistics
|
392 |
-
#: includes/log/log.php:379
|
393 |
-
msgid "IP"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: includes/log/log.php:381
|
397 |
-
msgid "Country"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#:
|
401 |
-
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: includes/log/log.php:385
|
405 |
-
msgid "Browser"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
# @ wp_statistics
|
409 |
-
#: includes/setting/settings.php:9
|
410 |
-
#, fuzzy
|
411 |
msgid "General Settings"
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#:
|
415 |
-
#:
|
416 |
-
#: includes/setting/settings.php:
|
|
|
|
|
417 |
msgid "Active"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#:
|
421 |
-
#:
|
|
|
|
|
|
|
422 |
msgid "Enable or disable this feature"
|
423 |
msgstr ""
|
424 |
|
425 |
-
|
426 |
-
#: includes/setting/settings.php:26
|
427 |
-
#, fuzzy
|
428 |
msgid "Visits"
|
429 |
-
msgstr "
|
430 |
|
431 |
-
#:
|
|
|
432 |
msgid "Visitors"
|
433 |
msgstr ""
|
434 |
|
435 |
-
|
436 |
-
#: includes/setting/settings.php:50
|
437 |
msgid "Check for online users every"
|
438 |
msgstr "Отметить каждого юзера онлайн"
|
439 |
|
440 |
-
|
441 |
-
#: includes/setting/settings.php:55
|
442 |
-
#, fuzzy
|
443 |
msgid "Secound"
|
444 |
-
msgstr "
|
445 |
|
446 |
-
|
447 |
-
#: includes/setting/settings.php:56
|
448 |
-
#, fuzzy, php-format
|
449 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
450 |
msgstr ""
|
451 |
-
"Время для проверки точного количества онлайн посетителей. По умолчанию: 60 "
|
452 |
-
"секунд"
|
453 |
|
454 |
-
|
455 |
-
#: includes/setting/settings.php:62
|
456 |
msgid "Show stats in menu bar"
|
457 |
msgstr "Показать статистику в меню баре"
|
458 |
|
459 |
-
|
460 |
-
#: includes/setting/settings.php:67
|
461 |
msgid "No"
|
462 |
msgstr ""
|
463 |
|
464 |
-
|
465 |
-
#: includes/setting/settings.php:68
|
466 |
msgid "Yes"
|
467 |
msgstr "Да"
|
468 |
|
469 |
-
|
470 |
-
#: includes/setting/settings.php:70
|
471 |
msgid "Show stats in admin menu bar"
|
472 |
msgstr "Показать статистику в админ-баре"
|
473 |
|
474 |
-
|
475 |
-
#: includes/setting/settings.php:76
|
476 |
msgid "Coefficient per visitor"
|
477 |
msgstr "Коэффициент на посетителя"
|
478 |
|
479 |
-
|
480 |
-
#: includes/setting/settings.php:81
|
481 |
-
#, fuzzy, php-format
|
482 |
msgid "For each visit to account for several hits. Currently %s."
|
483 |
-
msgstr "Для каждого посетителя приходится несколько хитов."
|
484 |
-
|
485 |
-
#: includes/setting/settings.php:87
|
486 |
-
msgid "Display IP Information On-screen statistics"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#:
|
490 |
-
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: includes/setting/settings.php:98
|
494 |
msgid "Statistical reporting settings"
|
495 |
msgstr ""
|
496 |
|
497 |
-
|
498 |
-
#: includes/setting/settings.php:
|
499 |
-
#, fuzzy
|
500 |
msgid "Time send"
|
501 |
-
msgstr "
|
502 |
|
503 |
-
|
504 |
-
#:
|
505 |
-
|
506 |
msgid "Please select."
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#:
|
|
|
510 |
msgid "Hourly"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#:
|
|
|
514 |
msgid "Twice daily"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#:
|
|
|
518 |
msgid "daily"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#:
|
|
|
522 |
msgid "Select when receiving statistics report."
|
523 |
msgstr ""
|
524 |
|
525 |
-
#:
|
|
|
526 |
msgid "Send Statistical reporting to"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#:
|
|
|
530 |
msgid "Email"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#:
|
|
|
534 |
msgid "SMS"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#:
|
|
|
538 |
msgid "Type Select Get Status Report."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#:
|
542 |
-
|
543 |
-
msgid ""
|
544 |
-
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
545 |
-
"\"_blank\">Wordpress SMS</a> plugin."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#:
|
|
|
549 |
msgid "Send Content Report"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#:
|
|
|
553 |
msgid "Enter the contents of the reports received."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#:
|
|
|
557 |
msgid "Input data:"
|
558 |
msgstr ""
|
559 |
|
560 |
-
|
561 |
-
#: includes/setting/widget.php:2
|
562 |
msgid "Name"
|
563 |
msgstr "Имя"
|
564 |
|
565 |
-
|
566 |
-
#: includes/setting/widget.php:6
|
567 |
msgid "Items"
|
568 |
msgstr "Пункты"
|
569 |
|
570 |
-
|
571 |
-
#: includes/setting/widget.php:42
|
572 |
msgid "Select type of search engine"
|
573 |
msgstr "Выберите тип поискового движка"
|
574 |
|
575 |
-
|
576 |
-
#: includes/
|
|
|
|
|
|
|
577 |
msgid "All"
|
578 |
msgstr "Все"
|
579 |
|
580 |
-
|
581 |
-
#: includes/setting/widget.php:84
|
582 |
msgid "Type date for last update"
|
583 |
msgstr "Дата последнего обновления"
|
584 |
|
585 |
-
|
586 |
-
#: includes/setting/widget.php:86
|
587 |
msgid "English"
|
588 |
msgstr ""
|
589 |
|
590 |
-
|
591 |
-
#: includes/setting/widget.php:89
|
592 |
msgid "Persian"
|
593 |
-
msgstr ""
|
1 |
+
# Translation of WP Statistics in Russian
|
2 |
+
# This file is distributed under the same license as the WP Statistics package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2013-06-11 14:37:40+0000\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: WP Statistics\n"
|
12 |
+
|
13 |
+
#: F:\Program
|
14 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:225
|
15 |
+
msgid "Support"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: F:\Program
|
19 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:225
|
20 |
+
msgid "Farsi"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: F:\Program
|
24 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
25 |
+
msgid "Referring sites from"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: F:\Program
|
29 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:224
|
30 |
+
msgid "Translations"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: F:\Program
|
34 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:226
|
35 |
+
msgid "Facebook"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: F:\Program
|
39 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:177
|
40 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
|
41 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:388
|
42 |
+
msgid "(See more)"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: F:\Program
|
46 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
|
47 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
|
48 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
|
49 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
50 |
+
msgid "To be added soon"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: F:\Program
|
54 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
|
55 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
56 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
|
57 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:403
|
58 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
59 |
+
msgid "Map"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: F:\Program
|
63 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
|
64 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
65 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
66 |
+
msgid "Page"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: F:\Program
|
70 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
|
71 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
72 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
73 |
+
msgid "From"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: F:\Program
|
77 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
|
78 |
+
msgid "Opera"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: F:\Program
|
82 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
|
83 |
+
msgid "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s\">setting page</a> and enable statistics"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: F:\Program
|
87 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
|
88 |
+
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: F:\Program
|
92 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
93 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
|
94 |
msgid "Statistical reporting"
|
95 |
+
msgstr ""
|
96 |
|
97 |
+
#: F:\Program
|
98 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
99 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
100 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
|
101 |
msgid "Statistics"
|
102 |
msgstr "Статистика"
|
103 |
|
104 |
+
#: F:\Program
|
105 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
|
106 |
msgid "Show site stats in sidebar"
|
107 |
msgstr "Показать статистику в сайдбаре"
|
108 |
|
109 |
+
#: F:\Program
|
110 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
111 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
112 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
|
113 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
114 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
|
115 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
116 |
msgid "User Online"
|
117 |
msgstr "Посетителей онлайн"
|
118 |
|
119 |
+
#: F:\Program
|
120 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
121 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
|
122 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
123 |
msgid "Today Visit"
|
124 |
msgstr "Сегодня посетителей"
|
125 |
|
126 |
+
#: F:\Program
|
127 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
128 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:148
|
129 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
130 |
msgid "Today Visitor"
|
131 |
+
msgstr ""
|
132 |
|
133 |
+
#: F:\Program
|
134 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
135 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
|
136 |
msgid "Yesterday Visit"
|
137 |
msgstr "Вчера посетителей"
|
138 |
|
139 |
+
#: F:\Program
|
140 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
141 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
|
142 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
143 |
msgid "Yesterday Visitor"
|
144 |
+
msgstr ""
|
145 |
|
146 |
+
#: F:\Program
|
147 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
|
148 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
|
149 |
msgid "Week Visit"
|
150 |
msgstr "Посетителей за неделю"
|
151 |
|
152 |
+
#: F:\Program
|
153 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
|
154 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
|
155 |
msgid "Month Visit"
|
156 |
msgstr "Посетителей за месяц"
|
157 |
|
158 |
+
#: F:\Program
|
159 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
|
160 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
|
161 |
msgid "Years Visit"
|
162 |
msgstr "Посетителей за год"
|
163 |
|
164 |
+
#: F:\Program
|
165 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
166 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
|
167 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
168 |
msgid "Total Visit"
|
169 |
msgstr "Всего визитов"
|
170 |
|
171 |
+
#: F:\Program
|
172 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
173 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
|
174 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
175 |
msgid "Total Visitor"
|
176 |
+
msgstr ""
|
177 |
|
178 |
+
#: F:\Program
|
179 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
180 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
181 |
msgid "Search Engine reffered"
|
182 |
msgstr "Через какой поиск вы зашли"
|
183 |
|
184 |
+
#: F:\Program
|
185 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
|
186 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
|
187 |
msgid "Total Posts"
|
188 |
msgstr "Всего записей"
|
189 |
|
190 |
+
#: F:\Program
|
191 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
|
192 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
|
193 |
msgid "Total Pages"
|
194 |
msgstr "Всего страниц"
|
195 |
|
196 |
+
#: F:\Program
|
197 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
|
198 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
|
199 |
msgid "Total Comments"
|
200 |
msgstr "Всего комментариев"
|
201 |
|
202 |
+
#: F:\Program
|
203 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
|
204 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
|
205 |
msgid "Total Spams"
|
206 |
msgstr "Всего спама"
|
207 |
|
208 |
+
#: F:\Program
|
209 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
|
210 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
|
211 |
msgid "Total Users"
|
212 |
msgstr "Всего участников"
|
213 |
|
214 |
+
#: F:\Program
|
215 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
|
216 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
|
217 |
msgid "Average Posts"
|
218 |
msgstr "Среднее число записей"
|
219 |
|
220 |
+
#: F:\Program
|
221 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
|
222 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
|
223 |
msgid "Average Comments"
|
224 |
msgstr "Среднее число комментариев"
|
225 |
|
226 |
+
#: F:\Program
|
227 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
|
228 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
|
229 |
msgid "Average Users"
|
230 |
msgstr "Среднее число участников"
|
231 |
|
232 |
+
#: F:\Program
|
233 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
|
234 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
|
235 |
msgid "Last Post Date"
|
236 |
msgstr "Последняя запись на сайте"
|
237 |
|
238 |
+
#: F:\Program
|
239 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
240 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
241 |
msgid "View Stats"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: F:\Program
|
245 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
|
246 |
msgid "Settings"
|
247 |
msgstr "Настройки"
|
248 |
|
249 |
+
#: F:\Program
|
250 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
|
|
|
251 |
msgid "Today visitor"
|
252 |
+
msgstr ""
|
253 |
|
254 |
+
#: F:\Program
|
255 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
|
|
256 |
msgid "Today visit"
|
257 |
+
msgstr ""
|
258 |
|
259 |
+
#: F:\Program
|
260 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
|
|
|
261 |
msgid "Yesterday visitor"
|
262 |
+
msgstr ""
|
263 |
|
264 |
+
#: F:\Program
|
265 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
266 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
267 |
msgid "Yesterday visit"
|
268 |
msgstr "Вчера посетителей"
|
269 |
|
270 |
+
#: F:\Program
|
271 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
|
272 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:217
|
273 |
msgid "You do not have sufficient permissions to access this page."
|
274 |
msgstr "У вас нет достаточных прав для доступа к этой странице."
|
275 |
|
276 |
+
#: F:\Program
|
277 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
|
278 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
279 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
|
280 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
281 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:175
|
282 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
|
283 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:255
|
284 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:345
|
285 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:386
|
286 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
|
287 |
msgid "Click to toggle"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: F:\Program
|
291 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
|
|
|
292 |
msgid "Summary Statistics"
|
293 |
+
msgstr ""
|
294 |
|
295 |
+
#: F:\Program
|
296 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
|
297 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:316
|
298 |
msgid "Visitor"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: F:\Program
|
302 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
|
303 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:326
|
304 |
msgid "Visit"
|
305 |
+
msgstr ""
|
306 |
|
307 |
+
#: F:\Program
|
308 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
|
|
|
309 |
msgid "Today"
|
310 |
+
msgstr ""
|
311 |
|
312 |
+
#: F:\Program
|
313 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
|
|
|
314 |
msgid "Yesterday"
|
315 |
+
msgstr ""
|
316 |
|
317 |
+
#: F:\Program
|
318 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
|
319 |
msgid "Week"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: F:\Program
|
323 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
|
|
|
324 |
msgid "Month"
|
325 |
+
msgstr ""
|
326 |
|
327 |
+
#: F:\Program
|
328 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
|
329 |
msgid "Year"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: F:\Program
|
333 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
|
|
|
334 |
msgid "Total"
|
335 |
+
msgstr ""
|
336 |
|
337 |
+
#: F:\Program
|
338 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
|
339 |
+
msgid "Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
|
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: F:\Program
|
343 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:72
|
344 |
msgid "(Adjustment)"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: F:\Program
|
348 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:78
|
349 |
msgid "Browsers"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: F:\Program
|
353 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:109
|
354 |
msgid "Graph of Browsers"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: F:\Program
|
358 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:153
|
359 |
msgid "Browser share"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: F:\Program
|
363 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
|
364 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:155
|
365 |
msgid "Firefox"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: F:\Program
|
369 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
370 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:156
|
371 |
msgid "IE"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: F:\Program
|
375 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
|
376 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:157
|
377 |
msgid "Ipad"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: F:\Program
|
381 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
|
382 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
383 |
msgid "Android"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: F:\Program
|
387 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
|
388 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
|
389 |
msgid "Chrome"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: F:\Program
|
393 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
|
394 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:160
|
395 |
msgid "Safari"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: F:\Program
|
399 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
|
400 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:161
|
401 |
msgid "Other"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: F:\Program
|
405 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:177
|
406 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
|
407 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
|
408 |
msgid "Top referring sites"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: F:\Program
|
412 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:183
|
413 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
414 |
msgid "Reference"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: F:\Program
|
418 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:184
|
419 |
msgid "Address"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: F:\Program
|
423 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
|
|
|
424 |
msgid "About plugin"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: F:\Program
|
428 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:223
|
429 |
+
msgid "Plugin version: %s"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: F:\Program
|
433 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:227
|
434 |
msgid "Weblog"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: F:\Program
|
438 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:232
|
439 |
+
msgid "Please donate to the plugin. With the help of plug-ins you can quickly spread."
|
|
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: F:\Program
|
443 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:235
|
444 |
msgid "Donate"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: F:\Program
|
448 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
|
|
|
449 |
msgid "Statistical Chart"
|
450 |
+
msgstr ""
|
451 |
|
452 |
+
#: F:\Program
|
453 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:271
|
454 |
msgid "Chart hit in the last 20 days"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: F:\Program
|
458 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:290
|
459 |
msgid "Number of visits and visitors"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: F:\Program
|
463 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
|
464 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
|
465 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
|
466 |
msgid "Latest search words"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: F:\Program
|
470 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
|
471 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
472 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:367
|
473 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
474 |
msgid "Google"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: F:\Program
|
478 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
|
479 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
480 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:369
|
481 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
482 |
msgid "Yahoo!"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: F:\Program
|
486 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
487 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
488 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:371
|
489 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
490 |
msgid "Bing"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: F:\Program
|
494 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
|
495 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
|
496 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:388
|
|
|
|
|
|
|
|
|
497 |
msgid "Recent Visitors"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: F:\Program
|
501 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
msgid "General Settings"
|
503 |
+
msgstr ""
|
504 |
|
505 |
+
#: F:\Program
|
506 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
|
507 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
|
508 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
509 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
|
510 |
msgid "Active"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: F:\Program
|
514 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
515 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
|
516 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
517 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
|
518 |
msgid "Enable or disable this feature"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: F:\Program
|
522 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
|
|
523 |
msgid "Visits"
|
524 |
+
msgstr ""
|
525 |
|
526 |
+
#: F:\Program
|
527 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
528 |
msgid "Visitors"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: F:\Program
|
532 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
533 |
msgid "Check for online users every"
|
534 |
msgstr "Отметить каждого юзера онлайн"
|
535 |
|
536 |
+
#: F:\Program
|
537 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
|
|
|
538 |
msgid "Secound"
|
539 |
+
msgstr ""
|
540 |
|
541 |
+
#: F:\Program
|
542 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
|
|
|
543 |
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
544 |
msgstr ""
|
|
|
|
|
545 |
|
546 |
+
#: F:\Program
|
547 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
|
548 |
msgid "Show stats in menu bar"
|
549 |
msgstr "Показать статистику в меню баре"
|
550 |
|
551 |
+
#: F:\Program
|
552 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
|
553 |
msgid "No"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: F:\Program
|
557 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
|
558 |
msgid "Yes"
|
559 |
msgstr "Да"
|
560 |
|
561 |
+
#: F:\Program
|
562 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
|
563 |
msgid "Show stats in admin menu bar"
|
564 |
msgstr "Показать статистику в админ-баре"
|
565 |
|
566 |
+
#: F:\Program
|
567 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
|
568 |
msgid "Coefficient per visitor"
|
569 |
msgstr "Коэффициент на посетителя"
|
570 |
|
571 |
+
#: F:\Program
|
572 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
|
|
|
573 |
msgid "For each visit to account for several hits. Currently %s."
|
|
|
|
|
|
|
|
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: F:\Program
|
577 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
|
|
|
|
|
|
|
578 |
msgid "Statistical reporting settings"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: F:\Program
|
582 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
|
|
|
583 |
msgid "Time send"
|
584 |
+
msgstr ""
|
585 |
|
586 |
+
#: F:\Program
|
587 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
588 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
|
589 |
msgid "Please select."
|
590 |
+
msgstr ""
|
591 |
|
592 |
+
#: F:\Program
|
593 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
594 |
msgid "Hourly"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: F:\Program
|
598 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
|
599 |
msgid "Twice daily"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: F:\Program
|
603 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
|
604 |
msgid "daily"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: F:\Program
|
608 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
|
609 |
msgid "Select when receiving statistics report."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: F:\Program
|
613 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
|
614 |
msgid "Send Statistical reporting to"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: F:\Program
|
618 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
|
619 |
msgid "Email"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: F:\Program
|
623 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:127
|
624 |
msgid "SMS"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: F:\Program
|
628 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
|
629 |
msgid "Type Select Get Status Report."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: F:\Program
|
633 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
|
634 |
+
msgid "Note: To send SMS text messages please install the <a href=\"%s\" target=\"_blank\">Wordpress SMS</a> plugin."
|
|
|
|
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: F:\Program
|
638 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
|
639 |
msgid "Send Content Report"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: F:\Program
|
643 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
|
644 |
msgid "Enter the contents of the reports received."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: F:\Program
|
648 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
|
649 |
msgid "Input data:"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: F:\Program
|
653 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
654 |
msgid "Name"
|
655 |
msgstr "Имя"
|
656 |
|
657 |
+
#: F:\Program
|
658 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
|
659 |
msgid "Items"
|
660 |
msgstr "Пункты"
|
661 |
|
662 |
+
#: F:\Program
|
663 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
|
664 |
msgid "Select type of search engine"
|
665 |
msgstr "Выберите тип поискового движка"
|
666 |
|
667 |
+
#: F:\Program
|
668 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
669 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
|
670 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
|
671 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
|
672 |
msgid "All"
|
673 |
msgstr "Все"
|
674 |
|
675 |
+
#: F:\Program
|
676 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
|
677 |
msgid "Type date for last update"
|
678 |
msgstr "Дата последнего обновления"
|
679 |
|
680 |
+
#: F:\Program
|
681 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
|
682 |
msgid "English"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: F:\Program
|
686 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
|
687 |
msgid "Persian"
|
688 |
+
msgstr ""
|
languages/wp_statistics-zh_CN.mo
ADDED
Binary file
|
languages/wp_statistics-zh_CN.po
ADDED
@@ -0,0 +1,711 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wp-statistics\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-04 13:37+0330\n"
|
6 |
+
"PO-Revision-Date: 2013-06-10 06:28+0800\n"
|
7 |
+
"Last-Translator: Toine Cheung <toine.etoilefilante@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: en\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: gettext;gettext_noop;_e;__\n"
|
14 |
+
"X-Poedit-Basepath: F:\\Program Files\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
15 |
+
"content\\plugins\\wp-statistics\n"
|
16 |
+
"X-Generator: Poedit 1.5.5\n"
|
17 |
+
"X-Poedit-SearchPath-0: F:\\Program Files\\xampp\\htdocs\\cms\\wordpress\\wp-"
|
18 |
+
"content\\plugins\\wp-statistics\n"
|
19 |
+
|
20 |
+
#: F:\Program
|
21 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:32
|
22 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:91
|
23 |
+
msgid "Statistical reporting"
|
24 |
+
msgstr "统计报告"
|
25 |
+
|
26 |
+
#: F:\Program
|
27 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
|
28 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
|
29 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:68
|
30 |
+
msgid "Statistics"
|
31 |
+
msgstr "统计"
|
32 |
+
|
33 |
+
#: F:\Program
|
34 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
|
35 |
+
msgid "Show site stats in sidebar"
|
36 |
+
msgstr "在边栏显示站点统计"
|
37 |
+
|
38 |
+
#: F:\Program
|
39 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
|
40 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:90
|
41 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:22
|
42 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:14
|
43 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:147
|
44 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:9
|
45 |
+
msgid "User Online"
|
46 |
+
msgstr "在线用户"
|
47 |
+
|
48 |
+
#: F:\Program
|
49 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
|
50 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:149
|
51 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:12
|
52 |
+
msgid "Today Visit"
|
53 |
+
msgstr "累计点击"
|
54 |
+
|
55 |
+
#: F:\Program
|
56 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
|
57 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:148
|
58 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:15
|
59 |
+
msgid "Today Visitor"
|
60 |
+
msgstr "累计访客"
|
61 |
+
|
62 |
+
#: F:\Program
|
63 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
|
64 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:151
|
65 |
+
msgid "Yesterday Visit"
|
66 |
+
msgstr "昨日点击"
|
67 |
+
|
68 |
+
#: F:\Program
|
69 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
|
70 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:150
|
71 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:21
|
72 |
+
msgid "Yesterday Visitor"
|
73 |
+
msgstr "昨日访客"
|
74 |
+
|
75 |
+
#: F:\Program
|
76 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
|
77 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:24
|
78 |
+
msgid "Week Visit"
|
79 |
+
msgstr "本周点击"
|
80 |
+
|
81 |
+
#: F:\Program
|
82 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
|
83 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:27
|
84 |
+
msgid "Month Visit"
|
85 |
+
msgstr "本月点击"
|
86 |
+
|
87 |
+
#: F:\Program
|
88 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
|
89 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:30
|
90 |
+
msgid "Years Visit"
|
91 |
+
msgstr "本年点击"
|
92 |
+
|
93 |
+
#: F:\Program
|
94 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
|
95 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:153
|
96 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:33
|
97 |
+
msgid "Total Visit"
|
98 |
+
msgstr "累计点击"
|
99 |
+
|
100 |
+
#: F:\Program
|
101 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
|
102 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:152
|
103 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:36
|
104 |
+
msgid "Total Visitor"
|
105 |
+
msgstr "累计访客"
|
106 |
+
|
107 |
+
#: F:\Program
|
108 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
|
109 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:39
|
110 |
+
msgid "Search Engine reffered"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: F:\Program
|
114 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:105
|
115 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:57
|
116 |
+
msgid "Total Posts"
|
117 |
+
msgstr "总计文章"
|
118 |
+
|
119 |
+
#: F:\Program
|
120 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:112
|
121 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:60
|
122 |
+
msgid "Total Pages"
|
123 |
+
msgstr "总计页面"
|
124 |
+
|
125 |
+
#: F:\Program
|
126 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:119
|
127 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:63
|
128 |
+
msgid "Total Comments"
|
129 |
+
msgstr "总计回响"
|
130 |
+
|
131 |
+
#: F:\Program
|
132 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:126
|
133 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:66
|
134 |
+
msgid "Total Spams"
|
135 |
+
msgstr "总计垃圾"
|
136 |
+
|
137 |
+
#: F:\Program
|
138 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:133
|
139 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:69
|
140 |
+
msgid "Total Users"
|
141 |
+
msgstr "总计用户"
|
142 |
+
|
143 |
+
#: F:\Program
|
144 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:140
|
145 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:72
|
146 |
+
msgid "Average Posts"
|
147 |
+
msgstr "平均文章"
|
148 |
+
|
149 |
+
#: F:\Program
|
150 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:147
|
151 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:75
|
152 |
+
msgid "Average Comments"
|
153 |
+
msgstr "平均回响"
|
154 |
+
|
155 |
+
#: F:\Program
|
156 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:154
|
157 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:78
|
158 |
+
msgid "Average Users"
|
159 |
+
msgstr "平均用户"
|
160 |
+
|
161 |
+
#: F:\Program
|
162 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:161
|
163 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:81
|
164 |
+
msgid "Last Post Date"
|
165 |
+
msgstr "上次发表日期"
|
166 |
+
|
167 |
+
#: F:\Program
|
168 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:40
|
169 |
+
#, php-format
|
170 |
+
msgid ""
|
171 |
+
"Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
|
172 |
+
"\">setting page</a> and enable statistics"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: F:\Program
|
176 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:70
|
177 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:115
|
178 |
+
msgid "View Stats"
|
179 |
+
msgstr "检阅统计数据"
|
180 |
+
|
181 |
+
#: F:\Program
|
182 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:71
|
183 |
+
msgid "Settings"
|
184 |
+
msgstr "设定"
|
185 |
+
|
186 |
+
#: F:\Program
|
187 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:95
|
188 |
+
msgid "Today visitor"
|
189 |
+
msgstr "累计访客"
|
190 |
+
|
191 |
+
#: F:\Program
|
192 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
|
193 |
+
msgid "Today visit"
|
194 |
+
msgstr "累计点击"
|
195 |
+
|
196 |
+
#: F:\Program
|
197 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:105
|
198 |
+
msgid "Yesterday visitor"
|
199 |
+
msgstr "昨日访客"
|
200 |
+
|
201 |
+
#: F:\Program
|
202 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
|
203 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:18
|
204 |
+
msgid "Yesterday visit"
|
205 |
+
msgstr "昨日点击"
|
206 |
+
|
207 |
+
#: F:\Program
|
208 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:144
|
209 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:217
|
210 |
+
msgid "You do not have sufficient permissions to access this page."
|
211 |
+
msgstr "你没有足够权限访问此页"
|
212 |
+
|
213 |
+
#: F:\Program
|
214 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:154
|
215 |
+
msgid "Table plugin does not exist! Please disable and re-enable the plugin."
|
216 |
+
msgstr "插件表并不存在!请停用插件,然后再启用它"
|
217 |
+
|
218 |
+
#: F:\Program
|
219 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
|
220 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
|
221 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
|
222 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
|
223 |
+
msgid "To be added soon"
|
224 |
+
msgstr "功能快将加入"
|
225 |
+
|
226 |
+
#: F:\Program
|
227 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:11
|
228 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:23
|
229 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
|
230 |
+
msgid "Latest search words"
|
231 |
+
msgstr "最新搜寻关键词"
|
232 |
+
|
233 |
+
#: F:\Program
|
234 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:13
|
235 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:13
|
236 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:13
|
237 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:53
|
238 |
+
msgid "All"
|
239 |
+
msgstr "全部"
|
240 |
+
|
241 |
+
#: F:\Program
|
242 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:14
|
243 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
|
244 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:367
|
245 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:44
|
246 |
+
msgid "Google"
|
247 |
+
msgstr "谷歌 (Google)"
|
248 |
+
|
249 |
+
#: F:\Program
|
250 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:15
|
251 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
|
252 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:369
|
253 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:47
|
254 |
+
msgid "Yahoo!"
|
255 |
+
msgstr "雅虎 (Yahoo!)"
|
256 |
+
|
257 |
+
#: F:\Program
|
258 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:16
|
259 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:65
|
260 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:371
|
261 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:50
|
262 |
+
msgid "Bing"
|
263 |
+
msgstr "Bing"
|
264 |
+
|
265 |
+
#: F:\Program
|
266 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:22
|
267 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:27
|
268 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:16
|
269 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
|
270 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:175
|
271 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:219
|
272 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:255
|
273 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:345
|
274 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:386
|
275 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:22
|
276 |
+
msgid "Click to toggle"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: F:\Program
|
280 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:58
|
281 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
|
282 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:364
|
283 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:403
|
284 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:57
|
285 |
+
msgid "Map"
|
286 |
+
msgstr "地图"
|
287 |
+
|
288 |
+
#: F:\Program
|
289 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
|
290 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
291 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
292 |
+
msgid "Page"
|
293 |
+
msgstr "页面"
|
294 |
+
|
295 |
+
#: F:\Program
|
296 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:81
|
297 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:75
|
298 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:103
|
299 |
+
msgid "From"
|
300 |
+
msgstr "由"
|
301 |
+
|
302 |
+
#: F:\Program
|
303 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:11
|
304 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:28
|
305 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:388
|
306 |
+
msgid "Recent Visitors"
|
307 |
+
msgstr "最近访客"
|
308 |
+
|
309 |
+
#: F:\Program
|
310 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:14
|
311 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:155
|
312 |
+
msgid "Firefox"
|
313 |
+
msgstr "Firefox"
|
314 |
+
|
315 |
+
#: F:\Program
|
316 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:15
|
317 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:156
|
318 |
+
msgid "IE"
|
319 |
+
msgstr "IE"
|
320 |
+
|
321 |
+
#: F:\Program
|
322 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:16
|
323 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:157
|
324 |
+
msgid "Ipad"
|
325 |
+
msgstr "Ipad"
|
326 |
+
|
327 |
+
#: F:\Program
|
328 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:17
|
329 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:158
|
330 |
+
msgid "Android"
|
331 |
+
msgstr "Android"
|
332 |
+
|
333 |
+
#: F:\Program
|
334 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:18
|
335 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:159
|
336 |
+
msgid "Chrome"
|
337 |
+
msgstr "Chrome"
|
338 |
+
|
339 |
+
#: F:\Program
|
340 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:19
|
341 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:160
|
342 |
+
msgid "Safari"
|
343 |
+
msgstr "Safari"
|
344 |
+
|
345 |
+
#: F:\Program
|
346 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:20
|
347 |
+
msgid "Opera"
|
348 |
+
msgstr "Opera"
|
349 |
+
|
350 |
+
#: F:\Program
|
351 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:21
|
352 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:161
|
353 |
+
msgid "Other"
|
354 |
+
msgstr "其他"
|
355 |
+
|
356 |
+
#: F:\Program
|
357 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:17
|
358 |
+
msgid "Summary Statistics"
|
359 |
+
msgstr "统计小结"
|
360 |
+
|
361 |
+
#: F:\Program
|
362 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:28
|
363 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:316
|
364 |
+
msgid "Visitor"
|
365 |
+
msgstr "访客"
|
366 |
+
|
367 |
+
#: F:\Program
|
368 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:29
|
369 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:326
|
370 |
+
msgid "Visit"
|
371 |
+
msgstr "点击"
|
372 |
+
|
373 |
+
#: F:\Program
|
374 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:33
|
375 |
+
msgid "Today"
|
376 |
+
msgstr "今天"
|
377 |
+
|
378 |
+
#: F:\Program
|
379 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:39
|
380 |
+
msgid "Yesterday"
|
381 |
+
msgstr "昨日"
|
382 |
+
|
383 |
+
#: F:\Program
|
384 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:45
|
385 |
+
msgid "Week"
|
386 |
+
msgstr "本周"
|
387 |
+
|
388 |
+
#: F:\Program
|
389 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:51
|
390 |
+
msgid "Month"
|
391 |
+
msgstr "本月"
|
392 |
+
|
393 |
+
#: F:\Program
|
394 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:57
|
395 |
+
msgid "Year"
|
396 |
+
msgstr "本年"
|
397 |
+
|
398 |
+
#: F:\Program
|
399 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:63
|
400 |
+
msgid "Total"
|
401 |
+
msgstr "总计"
|
402 |
+
|
403 |
+
#: F:\Program
|
404 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:70
|
405 |
+
#, php-format
|
406 |
+
msgid ""
|
407 |
+
"Today date: <code dir=\"ltr\">%s</code>, Time: <code dir=\"ltr\">%s</code>"
|
408 |
+
msgstr ""
|
409 |
+
"今天日期: <code dir=\"ltr\">%s</code>,时间: <code dir=\"ltr\">%s</code>"
|
410 |
+
|
411 |
+
#: F:\Program
|
412 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:72
|
413 |
+
msgid "(Adjustment)"
|
414 |
+
msgstr "(调整)"
|
415 |
+
|
416 |
+
#: F:\Program
|
417 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:78
|
418 |
+
msgid "Browsers"
|
419 |
+
msgstr "浏览器"
|
420 |
+
|
421 |
+
#: F:\Program
|
422 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:109
|
423 |
+
msgid "Graph of Browsers"
|
424 |
+
msgstr "图表(浏览器)"
|
425 |
+
|
426 |
+
#: F:\Program
|
427 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:153
|
428 |
+
msgid "Browser share"
|
429 |
+
msgstr "浏览器占百分比"
|
430 |
+
|
431 |
+
#: F:\Program
|
432 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:177
|
433 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:11
|
434 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:26
|
435 |
+
msgid "Top referring sites"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: F:\Program
|
439 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:177
|
440 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:347
|
441 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:388
|
442 |
+
msgid "(See more)"
|
443 |
+
msgstr "(查看更多)"
|
444 |
+
|
445 |
+
#: F:\Program
|
446 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:183
|
447 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:88
|
448 |
+
msgid "Reference"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: F:\Program
|
452 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:184
|
453 |
+
msgid "Address"
|
454 |
+
msgstr "网址"
|
455 |
+
|
456 |
+
#: F:\Program
|
457 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:220
|
458 |
+
msgid "About plugin"
|
459 |
+
msgstr "关于插件"
|
460 |
+
|
461 |
+
#: F:\Program
|
462 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:223
|
463 |
+
#, php-format
|
464 |
+
msgid "Plugin version: %s"
|
465 |
+
msgstr "插件版本: %s"
|
466 |
+
|
467 |
+
#: F:\Program
|
468 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:224
|
469 |
+
msgid "Translations"
|
470 |
+
msgstr "翻译"
|
471 |
+
|
472 |
+
#: F:\Program
|
473 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:225
|
474 |
+
msgid "Support"
|
475 |
+
msgstr "帮助"
|
476 |
+
|
477 |
+
#: F:\Program
|
478 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:225
|
479 |
+
msgid "Farsi"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: F:\Program
|
483 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:226
|
484 |
+
msgid "Facebook"
|
485 |
+
msgstr "Facebook"
|
486 |
+
|
487 |
+
#: F:\Program
|
488 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:227
|
489 |
+
msgid "Weblog"
|
490 |
+
msgstr "Weblog"
|
491 |
+
|
492 |
+
#: F:\Program
|
493 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:232
|
494 |
+
msgid ""
|
495 |
+
"Please donate to the plugin. With the help of plug-ins you can quickly "
|
496 |
+
"spread."
|
497 |
+
msgstr "请赞助这件插件"
|
498 |
+
|
499 |
+
#: F:\Program
|
500 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:235
|
501 |
+
msgid "Donate"
|
502 |
+
msgstr "赞助"
|
503 |
+
|
504 |
+
#: F:\Program
|
505 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:256
|
506 |
+
msgid "Statistical Chart"
|
507 |
+
msgstr "统计图表"
|
508 |
+
|
509 |
+
#: F:\Program
|
510 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:271
|
511 |
+
msgid "Chart hit in the last 20 days"
|
512 |
+
msgstr "最近20天的点击或访问"
|
513 |
+
|
514 |
+
#: F:\Program
|
515 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:290
|
516 |
+
msgid "Number of visits and visitors"
|
517 |
+
msgstr "访客或点击数量"
|
518 |
+
|
519 |
+
#: F:\Program
|
520 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:24
|
521 |
+
msgid "Referring sites from"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: F:\Program
|
525 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:9
|
526 |
+
msgid "General Settings"
|
527 |
+
msgstr "一般设置"
|
528 |
+
|
529 |
+
#: F:\Program
|
530 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:19
|
531 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:31
|
532 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:43
|
533 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:96
|
534 |
+
msgid "Active"
|
535 |
+
msgstr "启动"
|
536 |
+
|
537 |
+
#: F:\Program
|
538 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:20
|
539 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:32
|
540 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:44
|
541 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:97
|
542 |
+
msgid "Enable or disable this feature"
|
543 |
+
msgstr "启用或停用这功能"
|
544 |
+
|
545 |
+
#: F:\Program
|
546 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:26
|
547 |
+
msgid "Visits"
|
548 |
+
msgstr "点击"
|
549 |
+
|
550 |
+
#: F:\Program
|
551 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:38
|
552 |
+
msgid "Visitors"
|
553 |
+
msgstr "访客"
|
554 |
+
|
555 |
+
#: F:\Program
|
556 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:50
|
557 |
+
msgid "Check for online users every"
|
558 |
+
msgstr "检查在线用户间隔"
|
559 |
+
|
560 |
+
#: F:\Program
|
561 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:55
|
562 |
+
msgid "Secound"
|
563 |
+
msgstr "秒"
|
564 |
+
|
565 |
+
#: F:\Program
|
566 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:56
|
567 |
+
#, php-format
|
568 |
+
msgid "Time for the check accurate online user in the site. Now: %s Second"
|
569 |
+
msgstr "检查有效在线用户的间隔。现在:每 %s 秒"
|
570 |
+
|
571 |
+
#: F:\Program
|
572 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:62
|
573 |
+
msgid "Show stats in menu bar"
|
574 |
+
msgstr "在菜单中显示"
|
575 |
+
|
576 |
+
#: F:\Program
|
577 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:67
|
578 |
+
msgid "No"
|
579 |
+
msgstr "否"
|
580 |
+
|
581 |
+
#: F:\Program
|
582 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:68
|
583 |
+
msgid "Yes"
|
584 |
+
msgstr "是"
|
585 |
+
|
586 |
+
#: F:\Program
|
587 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:70
|
588 |
+
msgid "Show stats in admin menu bar"
|
589 |
+
msgstr "在管理菜单中显示"
|
590 |
+
|
591 |
+
#: F:\Program
|
592 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:76
|
593 |
+
msgid "Coefficient per visitor"
|
594 |
+
msgstr "访客系数"
|
595 |
+
|
596 |
+
#: F:\Program
|
597 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:81
|
598 |
+
#, php-format
|
599 |
+
msgid "For each visit to account for several hits. Currently %s."
|
600 |
+
msgstr "每一个访问计算多少位访客,现时 %s "
|
601 |
+
|
602 |
+
#: F:\Program
|
603 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:86
|
604 |
+
msgid "Statistical reporting settings"
|
605 |
+
msgstr "统计报告设定"
|
606 |
+
|
607 |
+
#: F:\Program
|
608 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:104
|
609 |
+
msgid "Time send"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: F:\Program
|
613 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:109
|
614 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:125
|
615 |
+
msgid "Please select."
|
616 |
+
msgstr "请选择"
|
617 |
+
|
618 |
+
#: F:\Program
|
619 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:110
|
620 |
+
msgid "Hourly"
|
621 |
+
msgstr "每小时"
|
622 |
+
|
623 |
+
#: F:\Program
|
624 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:111
|
625 |
+
msgid "Twice daily"
|
626 |
+
msgstr "每天两次"
|
627 |
+
|
628 |
+
#: F:\Program
|
629 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:112
|
630 |
+
msgid "daily"
|
631 |
+
msgstr "每天"
|
632 |
+
|
633 |
+
#: F:\Program
|
634 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:114
|
635 |
+
msgid "Select when receiving statistics report."
|
636 |
+
msgstr "选择何时接收统计报告"
|
637 |
+
|
638 |
+
#: F:\Program
|
639 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:120
|
640 |
+
msgid "Send Statistical reporting to"
|
641 |
+
msgstr "发送统计报告至"
|
642 |
+
|
643 |
+
#: F:\Program
|
644 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:126
|
645 |
+
msgid "Email"
|
646 |
+
msgstr "电子邮件"
|
647 |
+
|
648 |
+
#: F:\Program
|
649 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:127
|
650 |
+
msgid "SMS"
|
651 |
+
msgstr "SMS"
|
652 |
+
|
653 |
+
#: F:\Program
|
654 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:129
|
655 |
+
msgid "Type Select Get Status Report."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: F:\Program
|
659 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:132
|
660 |
+
#, php-format
|
661 |
+
msgid ""
|
662 |
+
"Note: To send SMS text messages please install the <a href=\"%s\" target="
|
663 |
+
"\"_blank\">Wordpress SMS</a> plugin."
|
664 |
+
msgstr ""
|
665 |
+
"注意:要发送SMS文字短讯,请安装 <a href=\"%s\" target=\"_blank\">Wordpress "
|
666 |
+
"SMS</a> 插件"
|
667 |
+
|
668 |
+
#: F:\Program
|
669 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:139
|
670 |
+
msgid "Send Content Report"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: F:\Program
|
674 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:144
|
675 |
+
msgid "Enter the contents of the reports received."
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: F:\Program
|
679 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/settings.php:146
|
680 |
+
msgid "Input data:"
|
681 |
+
msgstr "输入数据:"
|
682 |
+
|
683 |
+
#: F:\Program
|
684 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:2
|
685 |
+
msgid "Name"
|
686 |
+
msgstr "名称"
|
687 |
+
|
688 |
+
#: F:\Program
|
689 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:6
|
690 |
+
msgid "Items"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: F:\Program
|
694 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:42
|
695 |
+
msgid "Select type of search engine"
|
696 |
+
msgstr "选择搜寻引擎种类"
|
697 |
+
|
698 |
+
#: F:\Program
|
699 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:84
|
700 |
+
msgid "Type date for last update"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: F:\Program
|
704 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:86
|
705 |
+
msgid "English"
|
706 |
+
msgstr "英语"
|
707 |
+
|
708 |
+
#: F:\Program
|
709 |
+
#: Files\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/setting/widget.php:89
|
710 |
+
msgid "Persian"
|
711 |
+
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.6
|
7 |
-
Stable tag: 3.1.
|
8 |
|
9 |
Complete statistics for your blog.
|
10 |
|
@@ -62,6 +62,7 @@ Language Support:
|
|
62 |
* Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
|
63 |
* Hungarian [Thanks ZSIMI](http://www.zsimi.hu/)
|
64 |
* Chinese (Taiwan) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
|
|
|
65 |
|
66 |
[Percentage languages translation](http://teamwork.wp-parsi.com/projects/wp-statistics/)
|
67 |
To complete the language deficits of [this section](http://teamwork.wp-parsi.com/projects/wp-statistics/) apply.
|
@@ -90,14 +91,18 @@ Support Forum in [WordPress support forum Persian](http://forum.wp-parsi.com/for
|
|
90 |
* Years visit: `<?php echo wp_statistics_visit('year'); ?>`
|
91 |
* Total visitor: `<?php echo wp_statistics_visitor('total'); ?>`
|
92 |
* Total visit: `<?php echo wp_statistics_visit('total'); ?>`
|
93 |
-
* Number of visitors of 40 days to today: `<?php echo wp_statistics_visitor(45); ?>`
|
94 |
-
* Number of visits of 40 days to today: `<?php echo wp_statistics_visit(45); ?>`
|
95 |
-
* Number of visitors 45 days ago: `<?php echo wp_statistics_visitor(45, true); ?>`
|
96 |
-
* Number of visits 45 days ago: `<?php echo wp_statistics_visit(45, true); ?>`
|
97 |
* All Search Engine reffered `<?php echo wp_statistics_searchengine(); ?>`
|
98 |
* Google Search Engine reffered `<?php echo wp_statistics_searchengine('google'); ?>`
|
99 |
* Yahoo Search Engine reffered `<?php echo wp_statistics_searchengine('yahoo'); ?>`
|
100 |
* Bing Search Engine reffered `<?php echo wp_statistics_searchengine('bing'); ?>`
|
|
|
|
|
|
|
|
|
101 |
* Total posts `<?php echo wp_statistics_countposts(); ?>`
|
102 |
* Total pages `<?php echo wp_statistics_countpages(); ?>`
|
103 |
* Total comments `<?php echo wp_statistics_countcomment(); ?>`
|
@@ -125,6 +130,15 @@ Disable / Enable the plugin.
|
|
125 |
1. Screen shot (screenshot-6.png) in widget page.
|
126 |
|
127 |
== Upgrade Notice ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
= 3.1.3 =
|
129 |
* Optimized: View statistics.
|
130 |
* Added: Chinese (Taiwan) language.
|
@@ -307,6 +321,15 @@ Disable / Enable the plugin.
|
|
307 |
* Start plugin
|
308 |
|
309 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
= 3.1.3 =
|
311 |
* Optimized: View statistics.
|
312 |
* Added: Chinese (Taiwan) language.
|
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.6
|
7 |
+
Stable tag: 3.1.4
|
8 |
|
9 |
Complete statistics for your blog.
|
10 |
|
62 |
* Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
|
63 |
* Hungarian [Thanks ZSIMI](http://www.zsimi.hu/)
|
64 |
* Chinese (Taiwan) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
|
65 |
+
* Chinese (China) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
|
66 |
|
67 |
[Percentage languages translation](http://teamwork.wp-parsi.com/projects/wp-statistics/)
|
68 |
To complete the language deficits of [this section](http://teamwork.wp-parsi.com/projects/wp-statistics/) apply.
|
91 |
* Years visit: `<?php echo wp_statistics_visit('year'); ?>`
|
92 |
* Total visitor: `<?php echo wp_statistics_visitor('total'); ?>`
|
93 |
* Total visit: `<?php echo wp_statistics_visit('total'); ?>`
|
94 |
+
* Number of visitors of 40 days to today: `<?php echo wp_statistics_visitor('-45'); ?>`
|
95 |
+
* Number of visits of 40 days to today: `<?php echo wp_statistics_visit('-45'); ?>`
|
96 |
+
* Number of visitors 45 days ago: `<?php echo wp_statistics_visitor('-45', true); ?>`
|
97 |
+
* Number of visits 45 days ago: `<?php echo wp_statistics_visit('-45', true); ?>`
|
98 |
* All Search Engine reffered `<?php echo wp_statistics_searchengine(); ?>`
|
99 |
* Google Search Engine reffered `<?php echo wp_statistics_searchengine('google'); ?>`
|
100 |
* Yahoo Search Engine reffered `<?php echo wp_statistics_searchengine('yahoo'); ?>`
|
101 |
* Bing Search Engine reffered `<?php echo wp_statistics_searchengine('bing'); ?>`
|
102 |
+
* Google Search Engine reffered in today `<?php echo wp_statistics_searchengine('google', 'today'); ?>`
|
103 |
+
* Google Search Engine reffered in yesterday `<?php echo wp_statistics_searchengine('google', 'yesterday'); ?>`
|
104 |
+
* Google Search Engine reffered in 5 days ago `<?php echo wp_statistics_searchengine('google', '-5'); ?>`
|
105 |
+
* Total All Search Enginee reffered `<?php echo wp_statistics_searchengine('all', 'total'); ?>`
|
106 |
* Total posts `<?php echo wp_statistics_countposts(); ?>`
|
107 |
* Total pages `<?php echo wp_statistics_countpages(); ?>`
|
108 |
* Total comments `<?php echo wp_statistics_countcomment(); ?>`
|
130 |
1. Screen shot (screenshot-6.png) in widget page.
|
131 |
|
132 |
== Upgrade Notice ==
|
133 |
+
= 3.1.4 =
|
134 |
+
* Added: Chart Type in the settings plugin.
|
135 |
+
* Added: Search Engine referrer chart in the view stats page.
|
136 |
+
* Added: Search Engine stats in Summary Statistics.
|
137 |
+
* Optimized: 'wp_statistics_searchengine()' and add second parameter in the function.
|
138 |
+
* Language: Chinese (China) was added.
|
139 |
+
* Language: Russian was updated.
|
140 |
+
* Language: updated.
|
141 |
+
|
142 |
= 3.1.3 =
|
143 |
* Optimized: View statistics.
|
144 |
* Added: Chinese (Taiwan) language.
|
321 |
* Start plugin
|
322 |
|
323 |
== Changelog ==
|
324 |
+
= 3.1.4 =
|
325 |
+
* Added: Chart Type in the settings plugin.
|
326 |
+
* Added: Search Engine referrer chart in the view stats page.
|
327 |
+
* Added: Search Engine stats in Summary Statistics.
|
328 |
+
* Optimized: 'wp_statistics_searchengine()' and add second parameter in the function.
|
329 |
+
* Language: Chinese (China) was added.
|
330 |
+
* Language: Russian was updated.
|
331 |
+
* Language: updated.
|
332 |
+
|
333 |
= 3.1.3 =
|
334 |
* Optimized: View statistics.
|
335 |
* Added: Chinese (Taiwan) language.
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-5.png
CHANGED
Binary file
|
styles/log.css
CHANGED
@@ -25,11 +25,12 @@
|
|
25 |
font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
|
26 |
font-size: 21px;
|
27 |
}
|
28 |
-
#
|
29 |
text-align: center;
|
30 |
}
|
31 |
-
#
|
32 |
-
|
|
|
33 |
}
|
34 |
#last-visitor tr {
|
35 |
text-align: center;
|
@@ -112,7 +113,7 @@
|
|
112 |
text-decoration: none;
|
113 |
}
|
114 |
#visits-log {
|
115 |
-
height:
|
116 |
width: 100%;
|
117 |
}
|
118 |
#browsers-log {
|
25 |
font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
|
26 |
font-size: 21px;
|
27 |
}
|
28 |
+
#th-colspan {
|
29 |
text-align: center;
|
30 |
}
|
31 |
+
#th-colspan span {
|
32 |
+
color: #459605 !important;
|
33 |
+
font-size: 30px;
|
34 |
}
|
35 |
#last-visitor tr {
|
36 |
text-align: center;
|
113 |
text-decoration: none;
|
114 |
}
|
115 |
#visits-log {
|
116 |
+
height: 290px;
|
117 |
width: 100%;
|
118 |
}
|
119 |
#browsers-log {
|
widget.php
CHANGED
@@ -95,7 +95,7 @@
|
|
95 |
} else if(get_option('select_se') == "bing"){
|
96 |
echo wp_statistics_searchengine("bing");
|
97 |
} else {
|
98 |
-
echo wp_statistics_searchengine();
|
99 |
}
|
100 |
echo "</li>";
|
101 |
}
|
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 |
}
|
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: Summary statistics of blog.
|
6 |
-
Version: 3.1.
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
License: GPL2
|
@@ -13,7 +13,7 @@ License: GPL2
|
|
13 |
date_default_timezone_set( get_option('timezone_string') );
|
14 |
}
|
15 |
|
16 |
-
define('WP_STATISTICS_VERSION', '3.1.
|
17 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
18 |
|
19 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
@@ -131,6 +131,7 @@ License: GPL2
|
|
131 |
register_setting('wps_settings', 'wps_menu_bar');
|
132 |
register_setting('wps_settings', 'wps_coefficient');
|
133 |
register_setting('wps_settings', 'wps_ip_information');
|
|
|
134 |
register_setting('wps_settings', 'wps_stats_report');
|
135 |
register_setting('wps_settings', 'wps_time_report');
|
136 |
register_setting('wps_settings', 'wps_send_report');
|
@@ -222,4 +223,5 @@ License: GPL2
|
|
222 |
wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/style.css', true, '1.0');
|
223 |
|
224 |
include_once dirname( __FILE__ ) . '/includes/setting/settings.php';
|
|
|
225 |
}
|
3 |
Plugin Name: Wordpress Statistics
|
4 |
Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
|
5 |
Description: Summary statistics of blog.
|
6 |
+
Version: 3.1.4
|
7 |
Author: Mostafa Soufi
|
8 |
Author URI: http://iran98.org/
|
9 |
License: GPL2
|
13 |
date_default_timezone_set( get_option('timezone_string') );
|
14 |
}
|
15 |
|
16 |
+
define('WP_STATISTICS_VERSION', '3.1.4');
|
17 |
update_option('wp_statistics_plugin_version', WP_STATISTICS_VERSION);
|
18 |
|
19 |
load_plugin_textdomain('wp_statistics', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
|
131 |
register_setting('wps_settings', 'wps_menu_bar');
|
132 |
register_setting('wps_settings', 'wps_coefficient');
|
133 |
register_setting('wps_settings', 'wps_ip_information');
|
134 |
+
register_setting('wps_settings', 'wps_chart_type');
|
135 |
register_setting('wps_settings', 'wps_stats_report');
|
136 |
register_setting('wps_settings', 'wps_time_report');
|
137 |
register_setting('wps_settings', 'wps_send_report');
|
223 |
wp_enqueue_style('log-css', plugin_dir_url(__FILE__) . 'styles/style.css', true, '1.0');
|
224 |
|
225 |
include_once dirname( __FILE__ ) . '/includes/setting/settings.php';
|
226 |
+
|
227 |
}
|